diff --git a/examples/data/groupchat/fetch_arxiv_gpt4.py b/examples/data/groupchat/fetch_arxiv_gpt4.py new file mode 100644 index 00000000..5d60ab4e --- /dev/null +++ b/examples/data/groupchat/fetch_arxiv_gpt4.py @@ -0,0 +1,44 @@ +# filename: fetch_arxiv_gpt4.py +import urllib.request +import urllib.parse +import xml.etree.ElementTree as ET + +def search_arxiv(query): + url = 'http://export.arxiv.org/api/query?' + params = { + 'search_query': query, + 'start': 0, + 'max_results': 5, + 'sortBy': 'submittedDate', + 'sortOrder': 'descending' + } + query_string = urllib.parse.urlencode(params) + url += query_string + with urllib.request.urlopen(url) as response: + response_text = response.read() + return response_text + +def parse_response(response): + root = ET.fromstring(response) + papers = [] + for entry in root.findall('{http://www.w3.org/2005/Atom}entry'): + title = entry.find('{http://www.w3.org/2005/Atom}title').text + published = entry.find('{http://www.w3.org/2005/Atom}published').text + summary = entry.find('{http://www.w3.org/2005/Atom}summary').text + papers.append({'title': title, 'published': published, 'summary': summary}) + return papers + +def main(): + query = 'all:"GPT-4"' + response = search_arxiv(query) + papers = parse_response(response) + if papers: + print("Most Recent Paper on GPT-4:") + print("Title:", papers[0]['title']) + print("Published Date:", papers[0]['published']) + print("Summary:", papers[0]['summary']) + else: + print("No papers found.") + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/examples/data/groupchat/fetch_latest_gpt4_paper.py b/examples/data/groupchat/fetch_latest_gpt4_paper.py new file mode 100644 index 00000000..997a22f0 --- /dev/null +++ b/examples/data/groupchat/fetch_latest_gpt4_paper.py @@ -0,0 +1,44 @@ +# filename: fetch_latest_gpt4_paper.py +import requests +from datetime import datetime + +def fetch_latest_paper(): + # Define the API endpoint + url = "http://export.arxiv.org/api/query" + + # Set the search parameters to find papers related to GPT-4 + params = { + "search_query": "all:GPT-4", + "sortBy": "submittedDate", + "sortOrder": "descending", + "max_results": 1 + } + + # Send a GET request to the API + response = requests.get(url, params=params) + + if response.status_code == 200: + # Parse the response XML + from xml.etree import ElementTree as ET + root = ET.fromstring(response.content) + + # Navigate to the entry element + entry = root.find('{http://www.w3.org/2005/Atom}entry') + if entry is not None: + # Extract title and summary (abstract) + title = entry.find('{http://www.w3.org/2005/Atom}title').text + summary = entry.find('{http://www.w3.org/2005/Atom}summary').text + published_date = entry.find('{http://www.w3.org/2005/Atom}published').text + + # Convert published date to a readable format + published_datetime = datetime.strptime(published_date, '%Y-%m-%dT%H:%M:%SZ') + + print("Title:", title) + print("Published Date:", published_datetime.strftime('%Y-%m-%d')) + print("Abstract:", summary.strip()) + else: + print("No GPT-4 papers found.") + else: + print("Failed to fetch data from arXiv. Status code:", response.status_code) + +fetch_latest_paper() \ No newline at end of file diff --git a/examples/data/research_agent_storage/default__vector_store.json b/examples/data/research_agent_storage/default__vector_store.json new file mode 100644 index 00000000..a38c024f --- /dev/null +++ b/examples/data/research_agent_storage/default__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"394c9dac-edf6-460f-8d10-7fe768e2faa0": [-0.008804631419479847, -0.0076374271884560585, -0.009128479287028313, 0.008345846086740494, -0.016043994575738907, 0.03332940861582756, -0.0063386596739292145, -0.004237018059939146, 0.0032064374536275864, -0.02852565608918667, 0.0101539995521307, -0.012130824849009514, 0.020645342767238617, -0.00114443339407444, -0.01353416871279478, -0.0010584110859781504, 0.0357852578163147, -0.009796417318284512, 0.0425860770046711, -0.009297151118516922, 0.00024267553817480803, 0.0020965817384421825, -0.01370958611369133, 0.020132582634687424, -0.014222346246242523, 0.025260183960199356, 0.017406856641173363, -0.01646229811012745, 0.004547372926026583, -0.01469462551176548, 0.002098268363624811, -0.0006810095510445535, -0.0006966115906834602, 0.009243176318705082, -0.0007063102093525231, -0.006743470206856728, 0.009189201518893242, -0.018283946439623833, 0.008467288687825203, -4.6384549932554364e-05, 0.010680253617465496, 0.007340565789490938, -0.010983861982822418, 0.009647986851632595, -0.0208477471023798, 0.025044284760951996, -0.020645342767238617, -0.014235840179026127, -0.030225859954953194, 0.022952763363718987, 0.018904656171798706, 0.018945137038826942, -0.03816014900803566, 0.007576705422252417, -0.02017306350171566, 0.0023360946215689182, -0.007974768988788128, 0.02893046662211418, -0.011813723482191563, 0.022939268499612808, 0.010889405384659767, 0.014438245445489883, 0.002024053130298853, 0.004169549327343702, -0.03619007021188736, -0.006325166206806898, -0.01370958611369133, -0.010403633117675781, -0.007758870255202055, -0.016583742573857307, 0.044664107263088226, 0.026596058160066605, -0.010579051449894905, -0.007961275987327099, 0.015652677044272423, -0.029011428356170654, -0.04120972007513046, -0.012252268381416798, -0.025584030896425247, 0.03281664848327637, -0.0032300513703376055, -0.02314167469739914, 0.0007008283864706755, 0.005215310025960207, 0.015477259643375874, -0.004371954593807459, 0.0026144019793719053, 0.013547662645578384, -0.026029324159026146, -0.01930946670472622, 0.009863886050879955, 0.014100903645157814, 0.020577874034643173, 0.011476381681859493, 0.002762832446023822, 0.02314167469739914, -0.03362626954913139, 0.024706941097974777, -0.014883537776768208, -0.025638006627559662, -0.031116442754864693, -0.00784657895565033, -0.025368131697177887, -0.005633614491671324, -0.01589556410908699, 0.01321706734597683, 0.00010605194984236732, -0.0032165576703846455, 0.03246581181883812, -0.00023234443506225944, -0.014708119444549084, -0.00382208707742393, -0.0030833075288683176, -0.047551754862070084, -0.021009670570492744, 0.0002968611370306462, 0.04838836193084717, 0.001084555173292756, -0.002051040530204773, -0.014708119444549084, -0.00622396357357502, 0.03254677355289459, 0.00023065772256813943, -0.029875023290514946, 0.0025250061880797148, 0.019565846771001816, 0.0005848670261912048, -0.04201934114098549, -0.013257548213005066, -0.015220879577100277, 0.041722480207681656, 0.00308499438688159, 0.02754061669111252, -0.004243764560669661, 0.004567613359540701, 0.013594890013337135, -0.028903478756546974, 0.010322671383619308, -0.01031592395156622, -0.02992899902164936, 0.03246581181883812, 0.014154878444969654, -0.0021758570801466703, -0.008622466586530209, -0.013628624379634857, 0.0213874951004982, 0.02686593122780323, -0.0035218524280935526, -0.01518039871007204, 0.005714576691389084, 0.004931943025439978, -0.006638894323259592, 0.013311523012816906, -0.0038895553443580866, 0.01875622570514679, -0.010821937583386898, 0.009162213653326035, 0.016286881640553474, -0.0038389540277421474, 0.007279844488948584, 0.006146374624222517, 0.02706833742558956, 0.008082718588411808, -0.004240391310304403, 0.023951295763254166, 0.026933399960398674, -0.008028743788599968, -0.0208477471023798, -0.03637898340821266, -0.00933088455349207, 0.013831029646098614, 0.007704895455390215, -0.011746254749596119, -0.0042066569440066814, -0.026555577293038368, 0.02467995509505272, 0.03654090687632561, 0.035488396883010864, -0.026447627693414688, 0.013594890013337135, -0.02543560042977333, -0.018499845638871193, 0.027149299159646034, 0.018297439441084862, -0.03235786408185959, -0.015045461244881153, -0.016813134774565697, 0.01408740971237421, 0.001258286414667964, -0.006922261789441109, 0.004992664325982332, 0.023303598165512085, -0.01754179410636425, -0.010322671383619308, -0.6299932599067688, -0.008784390985965729, -0.0004029130795970559, -0.021009670570492744, -0.008845112286508083, 0.004398941993713379, 0.012960687279701233, 0.00753622455522418, -0.004871221259236336, -0.0015273167518898845, -0.03516454994678497, 0.013230560347437859, -0.004274125676602125, -0.014060422778129578, -0.009701961651444435, -0.007300084922462702, -0.003442577086389065, -0.030306821689009666, -0.009202694520354271, -0.028201807290315628, -0.01381753571331501, -0.007907301187515259, 0.005643734708428383, 0.00308499438688159, 0.00545482337474823, -0.01260310411453247, 0.024207675829529762, 0.0076104397885501385, -0.001098048873245716, 0.0282827690243721, -0.03413902968168259, 0.03934759274125099, 0.03772835060954094, 0.019255492836236954, 0.04137164726853371, 0.013885004445910454, -0.03867290914058685, 0.034597814083099365, -0.0006207096157595515, 0.013756814412772655, -0.02049691043794155, -0.028876490890979767, 0.003285713028162718, -0.002368142129853368, 0.015544728375971317, 0.022332053631544113, 0.019390428438782692, -0.003596067661419511, 0.004675562959164381, -0.014816069044172764, 0.009567024186253548, 0.013507180847227573, 0.004493398126214743, -0.007907301187515259, 0.0009504616027697921, -0.008379579521715641, 0.026569070294499397, -0.013257548213005066, 0.02095569670200348, -0.005360367242246866, 0.026056310161948204, 0.012299495749175549, -0.012589610181748867, -0.008521263487637043, -0.01414138451218605, 0.023991776630282402, 0.002452477812767029, -0.002224771771579981, 0.028336744755506516, -0.03718860447406769, 0.011692279949784279, 0.010430620051920414, 0.002740905387327075, -0.019161036238074303, 0.005343500059098005, -0.004624961409717798, 0.03297857195138931, -0.024302130565047264, -0.0038828086107969284, 0.0013325016479939222, 0.004543999210000038, 0.005410968791693449, -0.02401876449584961, -0.035812247544527054, 0.03511057421565056, -0.009162213653326035, -0.01657024770975113, 0.009897619485855103, 0.006962742656469345, -0.004904955625534058, 0.016070982441306114, 0.0014775587478652596, -0.01167203951627016, -0.021873267367482185, 0.03440890461206436, 0.007569958921521902, -0.026501601561903954, -0.007529477588832378, 0.013783802278339863, -0.005444702692329884, 0.00844030175358057, -0.0156661719083786, 0.01260310411453247, -0.011226748116314411, -0.0054784370586276054, -0.004004251677542925, -0.035272497683763504, -0.011759748682379723, 0.024868866428732872, -0.01909356750547886, -0.003623055061325431, -0.0208477471023798, -0.007057198788970709, 0.0018722491804510355, 0.017366375774145126, -0.022116154432296753, 0.005879874341189861, 0.003933409694582224, 0.01260310411453247, -0.009594012051820755, 0.016867108643054962, -0.014762094244360924, 0.012832497246563435, -0.005245671141892672, 0.012474914081394672, 0.03556935861706734, -0.0027122311294078827, -0.002013932913541794, -0.019336454570293427, -0.013338509947061539, 0.002697050804272294, -0.007232616655528545, 0.0028083736542612314, 0.007502490188926458, 0.028147831559181213, -0.024598991498351097, 0.022952763363718987, 0.005667348857969046, 0.016165437176823616, -0.03772835060954094, -0.0076981489546597, 0.004176296293735504, 0.016867108643054962, 0.0008555841050110757, -0.029200339689850807, -0.03619007021188736, -0.012630091980099678, 0.0033616148866713047, -0.020766785368323326, 0.0165567547082901, -0.0068581667728722095, -0.00029095762874931097, 0.005896741524338722, 0.027594590559601784, 0.022440003231167793, -0.02126605063676834, -0.0254221074283123, -0.00021210389968473464, 0.03125138208270073, -0.0035083587281405926, 0.011334697715938091, 0.019053086638450623, -0.021657368168234825, -0.007981516420841217, 0.0194174163043499, -0.01963331550359726, -0.03805219754576683, 0.03605513274669647, -0.011395419016480446, -0.023856839165091515, -0.010133759118616581, -0.008123199455440044, -0.0005574579699896276, 0.04693104699254036, -0.010518329218029976, 0.0013932231813669205, 0.0010010629193857312, -0.010606038384139538, -0.019687289372086525, -1.6814399714348838e-05, 0.0010457608150318265, 0.016637716442346573, -0.0011570836650207639, 0.0005473376950249076, 0.032168950885534286, 0.004803752992302179, -0.00032743276096880436, 0.0031170418951660395, -0.003953650593757629, 0.03710763901472092, -0.015207385644316673, 0.015841588377952576, -0.009175707586109638, -0.0022197116632014513, -0.0034459505695849657, -0.0020594741217792034, 0.02117159590125084, 0.02445056103169918, 0.004942063242197037, 0.01654326170682907, 0.018823694437742233, 0.005242297425866127, 0.035056598484516144, 0.003095114603638649, 0.004807126242667437, -0.043692559003829956, -0.0153962979093194, -0.01743384450674057, 0.022952763363718987, -0.017029033973813057, 0.0035151056945323944, -0.012157812714576721, -0.0033514946699142456, -0.016475792974233627, 0.024059245362877846, 0.008737162686884403, 0.027904946357011795, 0.007414781488478184, -0.01074097491800785, -0.01381753571331501, 0.018445871770381927, 0.0075834523886442184, -0.006460102740675211, -0.002142122946679592, -0.028363730758428574, 0.010383392684161663, -0.004078466910868883, 0.02620474062860012, 0.010484594851732254, -0.009128479287028313, 0.028471680358052254, -0.006234083790332079, -0.004618214443325996, -0.00294499727897346, 0.00518494937568903, 0.005566146224737167, 0.03165619075298309, -0.019930176436901093, 0.04482603073120117, -0.030090922489762306, -0.0017626129556447268, 0.026231728494167328, 0.02017306350171566, -0.016961565241217613, -0.00366016267798841, 0.01446523331105709, 0.011314457282423973, 0.019700784236192703, -0.007131414022296667, 0.030900543555617332, -0.025611018761992455, -0.00761718675494194, -0.013244054280221462, -0.0016200859099626541, 0.013513928279280663, -0.032087989151477814, 0.004344967193901539, 0.022062178701162338, 0.016070982441306114, 0.026933399960398674, -0.0013535855105146766, 0.009526543319225311, 0.008345846086740494, 0.023438535630702972, 0.06136929243803024, 0.01392548531293869, 0.006915514823049307, 0.009162213653326035, -0.031170418485999107, -0.02041594870388508, -0.019255492836236954, -0.016597235575318336, -0.016151944175362587, 0.007178641855716705, 0.02235903963446617, -0.0029028295539319515, -0.007866819389164448, -0.009310644119977951, 0.04145260900259018, 0.01984921470284462, -0.01414138451218605, -0.04477205500006676, 0.0331135094165802, 0.0014767154352739453, 0.0013105743564665318, -0.009486062452197075, -0.018068047240376472, 0.010410379618406296, -0.04066997393965721, 0.04231620579957962, -0.004992664325982332, 0.04083189740777016, 0.03662186861038208, -0.007785857655107975, -0.009074504487216473, 0.0006363117136061192, 0.024963321164250374, -0.011813723482191563, 0.023775877431035042, -0.0023242877796292305, 0.0043618343770504, 0.004773391876369715, -0.025732461363077164, 0.040535036474466324, 0.015990018844604492, -0.016138451173901558, -0.020915215834975243, -0.00865620095282793, 0.006456729490309954, -0.011469634249806404, 0.0023732022382318974, -0.04002227634191513, -0.011759748682379723, 0.0017162284348160028, 0.0030833075288683176, 0.00030634886934421957, -0.026042817160487175, 0.0008079345570877194, 0.010133759118616581, -0.008980048820376396, -0.018068047240376472, -0.01623290590941906, -0.023222636431455612, 0.019228504970669746, 0.06833203136920929, -0.003994131460785866, -0.01162481214851141, 0.008379579521715641, -0.012980927713215351, 0.008156933821737766, -0.017744198441505432, -0.008156933821737766, 0.009897619485855103, -0.006530944723635912, 0.002503079129382968, -0.011145785450935364, 0.030333809554576874, -0.004908328875899315, 0.009634492918848991, -0.0013839462772011757, -0.032276902347803116, -0.01387151051312685, -0.0013831029646098614, -0.025489576160907745, -0.009533289819955826, -0.00947931595146656, 0.010923139750957489, 0.011705773882567883, -0.0213874951004982, -0.013938979245722294, 0.047632716596126556, -0.010133759118616581, 0.000776308705098927, -0.032276902347803116, -0.031089456751942635, 0.025853905826807022, 0.016705185174942017, 0.015976525843143463, -0.015760626643896103, 0.000542277586646378, 0.005367114208638668, 0.022979749366641045, 0.0013831029646098614, 0.00625095097348094, 0.019255492836236954, 0.027985908091068268, 0.00034345651511102915, -0.0011191327357664704, 0.005046639125794172, -0.00987063255161047, -0.016799641773104668, 0.01677265390753746, -2.925389344454743e-05, -0.009904366917908192, 0.024598991498351097, 0.0013173212064430118, 0.0017777932807803154, -0.02169784903526306, 0.030171886086463928, -0.0021471830550581217, -0.00688515417277813, -0.0020662208553403616, -0.004952183458954096, 0.001823334489017725, -0.004210030660033226, 0.019579339772462845, 0.0013586456188932061, -0.0288225170224905, -0.026137271896004677, -0.04609443619847298, -0.01984921470284462, -0.007232616655528545, -0.018810199573636055, 0.017528299242258072, -0.007192135322839022, -0.008339098654687405, -0.021454963833093643, 0.004179669544100761, 0.010005569085478783, 0.005441329441964626, 0.009121732786297798, -0.011132292449474335, 0.0005207720096223056, 0.008305364288389683, -0.009013783186674118, -0.032735686749219894, 0.005410968791693449, -0.028660591691732407, -0.009087998420000076, -0.00861571915447712, 0.0067873247899115086, 0.01787913590669632, -0.010120266117155552, -0.004277498926967382, -0.00943883415311575, -0.003724257694557309, 0.0042066569440066814, 0.0075632119551301, 0.019565846771001816, 0.011429153382778168, 0.0024541644379496574, -0.012879724614322186, -0.016300374642014503, -0.022129647433757782, -0.008986796252429485, -0.03486768901348114, -0.004807126242667437, -0.009351125918328762, 0.004290992859750986, -0.00854825135320425, 0.01975475810468197, 0.02083425410091877, -0.008905833587050438, -0.023816358298063278, -0.028660591691732407, -0.023883827030658722, 0.005670722108334303, -0.00660515995696187, 0.005549279041588306, -0.009573771618306637, 0.003626428544521332, 0.00045077348477207124, -0.005994570907205343, -0.011004102416336536, -0.01611146330833435, -0.023640939965844154, -0.00764417415484786, 0.010761215351521969, -0.011786735616624355, 0.003316073678433895, 0.005805659107863903, -0.0034037826117128134, 0.020227037370204926, -0.0013164778938516974, 0.0036432957276701927, 0.024059245362877846, -0.003064753720536828, -0.018513338640332222, -0.022655900567770004, 0.0064196218736469746, -0.020456429570913315, 0.006554558873176575, -0.020766785368323326, -0.006257697474211454, -0.00899354275316, -0.015369310043752193, -0.013911992311477661, -0.0029062030371278524, -0.012852737680077553, -0.030090922489762306, -0.013675852678716183, 0.017960097640752792, -0.0009985328651964664, 0.0199571643024683, -0.004790259059518576, -0.019997645169496536, -0.02740567922592163, 0.007036957889795303, -0.024639474228024483, -0.01228600274771452, -0.006942502222955227, -0.013527422212064266, 0.017838655039668083, -0.0013721393188461661, 0.029794061556458473, -0.016286881640553474, 0.017190957441926003, 0.02358696609735489, 0.0024372972548007965, 0.014019940979778767, -0.014046928845345974, -0.017838655039668083, -0.04185741767287254, -0.01376356091350317, 0.023303598165512085, 0.024491043761372566, 0.012650332413613796, -0.013007914647459984, 0.0011790109565481544, 0.029254315420985222, 1.9344466636539437e-05, -0.01634085550904274, -0.007974768988788128, -0.03621705621480942, -0.03287062421441078, 0.018837187439203262, -0.0034510106779634953, -0.00391654297709465, -0.0288225170224905, -0.006895274389535189, 0.05580989271402359, 0.00625095097348094, 0.00767116155475378, -0.01854032650589943, 0.03289761021733284, -0.020550886169075966, 0.01731240190565586, 0.01809503510594368, 0.04110177233815193, -0.011591077782213688, 0.019484885036945343, 0.001532376860268414, 0.0015197265893220901, -0.0031676432117819786, 0.01124698854982853, 0.018472857773303986, -0.024760916829109192, -0.017136983573436737, -0.005714576691389084, 0.01217130571603775, 0.0015163531061261892, -0.004277498926967382, 0.029443226754665375, -0.023762384429574013, -0.026042817160487175, -0.00788706075400114, -0.015976525843143463, -0.04374653473496437, -0.006888527423143387, -0.0015374369686469436, 0.007623933255672455, 0.0282827690243721, -0.021778810769319534, -0.0031305355951189995, 0.0043854485265910625, -0.017919616773724556, 0.044691093266010284, 0.006298178806900978, 0.024315625429153442, 0.007657667621970177, -0.012029622681438923, -0.014883537776768208, -0.007684655021876097, -0.008804631419479847, -0.012528888881206512, 0.021657368168234825, 0.012326483614742756, 0.004493398126214743, -0.004517011810094118, -0.000736249319743365, -0.015423284843564034, -0.03386915475130081, -0.022561445832252502, 0.026164259761571884, 0.00035779355675913393, -0.010558810085058212, -0.006345406640321016, -0.00534687377512455, -0.035137563943862915, 0.0025604271795600653, 0.006051918957382441, 0.029362263157963753, -0.004176296293735504, -0.01250190194696188, -0.009614252485334873, 0.007623933255672455, 0.02269638329744339, 0.013675852678716183, 0.02708183042705059, -0.01732589490711689, -0.008575238287448883, 0.00012091609096387401, -0.035461410880088806, -0.023276610299944878, -0.010653266683220863, 0.0174473375082016, -0.010956874117255211, -0.004267378710210323, 0.01590905711054802, 0.00676708435639739, -0.003176076803356409, 0.015058955177664757, -0.0036567894276231527, 0.029335277155041695, -0.017744198441505432, 0.004105454310774803, 0.007961275987327099, 0.02392430789768696, 0.012839243747293949, 0.02389732003211975, 0.0003801424754783511, -0.0018823693972080946, -0.027243755757808685, -0.0018655023304745555, 0.007529477588832378, 0.00860222615301609, 0.0018317680805921555, -0.00991785991936922, -0.02389732003211975, 0.00022538674238603562, 0.008676441386342049, -0.005330006591975689, 0.0046317083761096, -0.028687579557299614, -0.019822226837277412, -0.006348779890686274, -0.029362263157963753, 0.003349808044731617, 0.004078466910868883, 0.023168660700321198, -0.02326311729848385, 0.023546485230326653, -0.03314049541950226, 0.024841878563165665, -0.027108818292617798, 0.010491342283785343, -0.011105304583907127, 0.01447872631251812, 0.012690813280642033, -0.02072630450129509, 0.005340126808732748, -0.0019953791052103043, -0.02357347123324871, 0.002747652120888233, 0.012933699414134026, 0.03430095314979553, 0.007340565789490938, -0.0021792305633425713, -0.0024136833380907774, -0.00044824343058280647, -0.00017362581274937838, -0.015747133642435074, -0.036459945142269135, 0.02720327489078045, 0.019026098772883415, 0.0044562905095517635, 0.013885004445910454, -0.014937511645257473, 0.030522720888257027, 0.0032604122534394264, 0.012036369182169437, -0.004237018059939146, -0.055647969245910645, -0.013176585547626019, -0.0005001098033972085, 0.02422116883099079, 0.00234284158796072, 0.004193163476884365, -0.010356404818594456, -0.03397710621356964, -0.013729827478528023, -0.0005110733909532428, 0.008258136920630932, -0.008824871852993965, 0.007232616655528545, 0.013554409146308899, -0.007974768988788128, -0.00022201333194971085, -0.006635521072894335, -0.01677265390753746, 0.01567966490983963, -0.01666470430791378, -0.054784372448921204, -0.0007316108676604927, -0.00665913475677371, 0.038430023938417435, -0.0076644145883619785, -0.015031968243420124, -0.008075972087681293, 0.0002856866631191224, -0.02454501762986183, -0.01162481214851141, -0.002312480704858899, 0.027823984622955322, 0.03529948741197586, 0.025395119562745094, 0.0003727631119545549, 0.023114686831831932, -0.015450271777808666, 0.009162213653326035, -0.01507244911044836, 0.012839243747293949, 0.0058562601916491985, 0.027985908091068268, -0.001288647181354463, -0.019889695569872856, -0.02312817983329296, -0.02181929349899292, 0.015112929977476597, -0.004105454310774803, 0.008730416186153889, 0.02347901649773121, -0.01453270111232996, 0.009418593719601631, -0.027796996757388115, 0.02369491569697857, 0.0034442637115716934, 0.00361968157812953, 0.001629362814128399, -0.018122022971510887, -0.011314457282423973, -0.0005372174200601876, -0.009904366917908192, -0.010950127616524696, -0.017960097640752792, -0.001241419231519103, -0.0055324118584394455, 0.02303372509777546, -0.013358750380575657, -0.017190957441926003, -0.016381336376070976, -0.010518329218029976, 0.04706598073244095, -0.0038726883940398693, -0.01250190194696188, 0.027662059292197227, -0.015531234443187714, -0.02368142083287239, 0.0063217924907803535, 7.447882671840489e-05, 0.009897619485855103, -0.021994709968566895, 0.009243176318705082, -0.021036658436059952, 0.007947782054543495, -0.02446405589580536, 0.022520964965224266, -0.020564379170536995, 0.010093278251588345, 0.010666759684681892, 0.011753002181649208, -0.01755528710782528, 0.018567314371466637, 0.005188322626054287, -0.003609561361372471, -0.010504835285246372, 0.025489576160907745, 0.020105594769120216, 0.002013932913541794, -0.01464065071195364, -0.01392548531293869, 0.01233997754752636, 0.00981665775179863, 0.010983861982822418, 0.010592544451355934, -0.012859484180808067, -0.015490753576159477, 0.015585209242999554, -0.04450218006968498, -0.004068346694111824, 0.17908822000026703, -0.02412671409547329, 0.0032317382283508778, 0.020793773233890533, -0.039860352873802185, 0.00384907447732985, 0.019795238971710205, 0.006723229773342609, -0.0011655172565951943, 0.000665829167701304, -0.015450271777808666, 0.029848037287592888, -0.0013223814312368631, 0.008318858221173286, -0.001362019102089107, -0.02095569670200348, -0.043827496469020844, 0.022426508367061615, -0.019781745970249176, -0.04844233766198158, -0.0035859474446624517, -0.031089456751942635, -0.008581985719501972, 0.0023479016963392496, 0.01898561790585518, -0.006379141006618738, -0.011840710416436195, 0.0002964394516311586, 0.029794061556458473, -0.01058579795062542, -0.020011138170957565, -0.009540037252008915, 0.004928569309413433, -0.011118798516690731, -0.01305514294654131, -0.004614841192960739, 0.009128479287028313, 0.0021859772969037294, 0.014843055978417397, 0.0023580219130963087, -0.026137271896004677, -0.0035049852449446917, -0.0075834523886442184, 0.0030664405785501003, -0.0151264239102602, 0.02315516769886017, -0.015868576243519783, -0.027796996757388115, -0.0056032538414001465, 0.018175996840000153, -0.024936335161328316, 0.02554355002939701, 0.03983336687088013, 0.025044284760951996, -0.006756964139640331, -0.0016521334182471037, 0.0051647089421749115, 0.008959808386862278, -0.0030327062122523785, 0.009411847218871117, -0.0015340636018663645, 0.023168660700321198, -0.003724257694557309, 0.036244045943021774, -0.002196097746491432, 0.014991486445069313, 0.003731004660949111, -0.019498378038406372, 0.029713099822402, -0.022966256365180016, 0.011827217414975166, 0.002251759171485901, -0.014100903645157814, 0.016732173040509224, -0.0060249315574765205, -0.006976236589252949, 0.04299088940024376, 0.005610000807791948, 0.00111744599416852, -0.004098707810044289, 0.017136983573436737, -0.005623494274914265, 0.0068581667728722095, -0.0018941763555631042, -0.007556464988738298, -0.015747133642435074, -0.0067502171732485294, -0.0123939523473382, -0.023438535630702972, -0.000736249319743365, -0.03516454994678497, -0.01530184131115675, 0.009715454652905464, -0.020969189703464508, -0.005087119992822409, -0.007111173123121262, 0.005171455908566713, -0.0043618343770504, 0.0052085635252296925, -0.00290451617911458, -0.006372394040226936, 0.008177174255251884, 0.032735686749219894, 0.015139917843043804, -0.03249279782176018, -0.008851858787238598, -0.004365208093076944, 0.0025486203376203775, 0.010882658883929253, -0.014991486445069313, 0.021090634167194366, -0.0074282749556005, 0.00212694238871336, -0.014708119444549084, 0.020658835768699646, 0.007219122722744942, -0.03276267275214195, -0.012717800214886665, -0.002449104329571128, -0.0007476346218027174, 0.008035491220653057, -0.030657658353447914, -0.001555990893393755, -0.013844523578882217, -0.0054784370586276054, -0.015598703175783157, -0.03950951620936394, 0.032411836087703705, 0.010471101850271225, -0.02598884142935276, 0.033815182745456696, -0.039401568472385406, 0.017244933173060417, 0.0058292727917432785, -0.02006511390209198, 0.0131563451141119, -0.018621288239955902, -0.0311434306204319, 0.010147253051400185, 0.003670282894745469, -0.0024912720546126366, 0.00997183471918106, 0.013689345680177212, 0.012454673647880554, 0.013432965613901615, -0.010552063584327698, 0.02029450610280037, -0.006318419240415096, -0.00027430136105977, -0.030873557552695274, -0.03651391714811325, 0.002737531904131174, 0.015058955177664757, -0.005815779324620962, 0.025840410962700844, 0.009128479287028313, -0.005451449658721685, -0.008824871852993965, 0.004857727326452732, 0.02555704489350319, -0.01778467930853367, 0.014235840179026127, 0.035272497683763504, -0.004732911009341478, -0.01621941290795803, -0.009803163819015026, -0.17153175175189972, 0.02806686982512474, 0.024248156696558, -0.0019363441970199347, 0.011692279949784279, 0.01635434851050377, 0.02380286529660225, -0.008575238287448883, -0.006234083790332079, -0.014829562976956367, 0.022305065765976906, 0.003371735103428364, -0.03950951620936394, -0.01644880510866642, -0.007394540589302778, 0.003731004660949111, -0.015814602375030518, 0.022628914564847946, 0.04339569807052612, 0.015558221377432346, -0.0028488547541201115, -0.007475502789020538, 0.006372394040226936, 0.0032401718199253082, -0.006976236589252949, 0.017366375774145126, -0.013352003879845142, 0.024976816028356552, 0.01173276174813509, -0.008966555818915367, -0.011361684650182724, -0.001853695372119546, 0.013750067912042141, -0.00498591735959053, 0.023762384429574013, 0.0038895553443580866, -0.011935167014598846, 0.005485184025019407, 0.00471267057582736, 0.027122311294078827, 0.014181865379214287, 0.005893367808312178, 0.028903478756546974, 0.007354059722274542, -0.0018149010138586164, 0.01353416871279478, 0.0055054244585335255, -0.01590905711054802, 0.02071280963718891, -0.03357229381799698, 0.004668815992772579, 0.0001211269263876602, 0.01832442730665207, -0.003024272620677948, 0.03478672727942467, 0.03135932981967926, 0.010761215351521969, 0.0022028444800525904, 0.0026515095960348845, -0.045014940202236176, 0.0019262238638475537, 0.005255791358649731, 0.008912581019103527, -0.02129303850233555, 0.00583601975813508, -0.016475792974233627, -0.015558221377432346, 0.012110584415495396, -0.039752405136823654, 0.0023107940796762705, 0.01644880510866642, 0.008096212521195412, 0.026285704225301743, -0.0248823594301939, -0.0058832475915551186, -0.010761215351521969, -0.03003694862127304, 0.023425040766596794, 0.008905833587050438, -0.005387354642152786, -0.029713099822402, 0.039428554475307465, -0.007927541621029377, -0.009081251919269562, 0.008143440820276737, 0.009715454652905464, -0.01047784835100174, -0.03516454994678497, -0.0277430210262537, -0.00012028357741655782, 0.025745956227183342, -0.02501729689538479, -0.0016310494393110275, -0.004290992859750986, 0.015855083242058754, 0.012434433214366436, 0.005930475890636444, -0.016853615641593933, 0.021441468968987465, -0.012414192780852318, 0.010646519251167774, -0.006908767856657505, -0.004776765592396259, 0.026515096426010132, 0.021684356033802032, 0.007111173123121262, 0.01058579795062542, 0.020038126036524773, 0.03214196488261223, 0.02226458489894867, -0.02654208429157734, 0.009728948585689068, 0.0131563451141119, 0.007711642421782017, -0.014573182910680771, 0.02620474062860012, -0.03551538661122322, -0.024598991498351097, 0.01732589490711689, -0.027365198358893394, 0.05823875591158867, -0.010612784884870052, 0.02806686982512474, 0.00227537308819592, -0.014330295845866203, -0.03967143967747688, -0.1055746078491211, -0.012758282013237476, 0.022116154432296753, 0.016313867643475533, -0.022507470101118088, 0.00970870815217495, -0.013898498378694057, 0.003623055061325431, 0.009040771052241325, 0.013804042711853981, -0.026784969493746758, -0.03135932981967926, -0.004395568743348122, -0.009114986285567284, 0.004594600759446621, 0.004921822343021631, -0.00016624644922558218, -0.015868576243519783, -0.006345406640321016, 0.01821647770702839, -0.003704017261043191, -0.01451920811086893, 0.02041594870388508, 0.018945137038826942, -0.010558810085058212, 0.014235840179026127, -0.04299088940024376, 0.013439713045954704, 0.036244045943021774, 0.008136693388223648, -0.010201227851212025, -0.010552063584327698, 0.007381047122180462, -0.014397764578461647, -0.02839071862399578, 0.0005536628887057304, -0.03988733887672424, -0.0005481810658238828, 0.020321493968367577, -0.008899087086319923, 0.012427685782313347, -0.002799940062686801, 0.0429638996720314, -0.012906712479889393, 0.013190079480409622, 0.002499705646187067, -0.003717510960996151, -0.0001285062899114564, 0.010700494050979614, -0.04261306673288345, -0.005556026007980108, -0.0026093418709933758, -0.049305934458971024, -0.014856549911201, 0.02841770648956299, -0.01524786651134491, 0.03135932981967926, 0.014262828044593334, -0.018229972571134567, -0.009533289819955826, -0.021239064633846283, -0.010498088784515858, -0.003707390744239092, 0.029470212757587433, 0.011004102416336536, -0.009351125918328762, -0.004648575559258461, -0.03235786408185959, 0.028093857690691948, 0.0035285993944853544, -0.018837187439203262, 0.011044583283364773, -0.028444692492485046, -0.011651799082756042, -0.015949537977576256, 0.017298907041549683, -0.017825162038207054, -9.350703476229683e-05, 0.021981216967105865, -0.005802285857498646, -0.010180987417697906, -0.02269638329744339, 0.009688467718660831, 0.013965966179966927, 0.01666470430791378, 0.01590905711054802, 0.022777345031499863, -0.02181929349899292, 0.018391896039247513, -0.03389614447951317, 0.01305514294654131, 0.015139917843043804, -0.0048239934258162975, -0.036783792078495026, 0.008190668188035488, 0.025611018761992455, 0.022939268499612808, -0.006581546273082495, -0.018041059374809265, 0.012205040082335472, -0.0010938320774585009, -0.005117481108754873, -0.07211026549339294, 0.038106173276901245, 0.0023360946215689182, 0.008878846652805805, 0.008501023054122925, -0.018891163170337677, 0.014762094244360924, -0.02038896270096302, -0.020888227969408035, 0.022534457966685295, -0.028903478756546974, 0.02906540222465992, -0.031224392354488373, -0.008480782620608807, -0.0010584110859781504, -0.002118509029969573, 0.02565149962902069, -0.013736573979258537, 0.006112640257924795, -0.0145866759121418, 0.0021083885803818703, 0.017514806240797043, 0.018904656171798706, 0.020483417436480522, -0.03845700994133949, 0.006955996155738831, 0.00608902657404542, -0.006352153606712818, -0.0033801686950027943, -0.011935167014598846, 0.018499845638871193, -0.02698737569153309, 0.015828095376491547, 0.02161688730120659, 0.004324726760387421, 0.022534457966685295, -0.003639922244474292, -0.011327950283885002, 0.010525076650083065, 0.04220825433731079, -0.0009420280694030225, -0.011341444216668606, 0.01207010354846716, -0.02609679102897644, 0.00938485935330391, 0.012130824849009514, -0.0026127153541892767, 0.008608972653746605, 0.026623046025633812, -0.029119377955794334, 0.014573182910680771, 0.014262828044593334, -0.0023276610299944878, -0.036810778081417084, 0.018337922170758247, -0.02619124762713909, 0.04506891593337059, -0.0021994709968566895, 0.002368142129853368, -0.006783951539546251, 0.020550886169075966, -0.00038457009941339493, 0.018513338640332222, -0.015139917843043804, 0.01688060350716114, -0.01557171531021595, -0.017622755840420723, -0.0014800888020545244, -0.004668815992772579, -0.03368024528026581, -0.004088587127625942, -0.013911992311477661, 0.005090493708848953, 0.02225109003484249, 0.019012605771422386, 0.02248048409819603, 0.016408324241638184, -0.0014471979811787605, -0.022062178701162338, 0.00397051777690649, 0.002391756046563387, -0.01003255695104599, -0.036891743540763855, 0.004321353510022163, 0.013885004445910454, -0.012353470548987389, -0.0208477471023798, 0.007711642421782017, -0.002737531904131174, 0.0048239934258162975, 0.013540915213525295, -0.0078330859541893, -0.00942534115165472, -0.002551993587985635, 0.007354059722274542, -0.004226897843182087, 0.000850102340336889, -0.011186267249286175, 0.022197116166353226, 0.045554690062999725, -0.005866380874067545, 0.0015003293519839644, -0.00045288188266567886, -0.02248048409819603, -0.0016006886726245284, -0.014991486445069313, -0.0233575738966465, -0.02577294409275055, -0.012960687279701233, 0.025260183960199356, 0.016043994575738907, 0.010133759118616581, 0.013028155080974102, 0.01392548531293869, -0.02303372509777546, -0.003693897044286132, -0.0016985179390758276, -0.019781745970249176, -0.02949720062315464, 0.03135932981967926, 0.012744788080453873, 0.022453496232628822, 0.022939268499612808, -0.010383392684161663, 0.026811957359313965, 0.04409737139940262, 0.008905833587050438, 0.0026076550129801035, 0.00021885074966121465, 0.007421527989208698, 0.005832646507769823, -0.015612196177244186, -0.03737751394510269, 0.011651799082756042, -0.012576117180287838, -0.0388348326086998, 0.010302430018782616, 0.009216188453137875, -0.009715454652905464, 0.058508630841970444, -0.0009841958526521921, -0.010410379618406296, 0.003997504711151123, 0.011199760250747204, 0.03038778342306614, 0.010646519251167774, 0.011847457848489285, -0.005748311057686806, -0.0026447628624737263, -0.008096212521195412, -0.02982104942202568, 0.017163971439003944, -0.007070692256093025, 0.0011747941607609391, 0.004267378710210323, -0.0035926944110542536, 0.03654090687632561, -0.014073915779590607, -0.016178932040929794, 0.02161688730120659, 0.00024330805172212422, 0.041398633271455765, 0.0011115424567833543, -0.013702839612960815, 0.010464354418218136, 0.00058571039699018, 0.012987674213945866, -0.01020797435194254, -0.04280197620391846, 0.010073037818074226, 0.02358696609735489, -0.02752712182700634, -0.007947782054543495, 0.017568781971931458, -0.00877764355391264, -0.004051479510962963, -0.013304775580763817, 0.009513049386441708, 0.023856839165091515, -0.0008412470924668014, 0.00647022295743227, -0.020766785368323326, -0.002142122946679592, 0.02675798162817955, -0.017244933173060417, -0.02806686982512474, -0.00915546715259552, -0.03675680607557297], "00f48ac0-7d0e-4932-94d5-dcac9fa2f464": [0.007128330413252115, 0.001966852694749832, -0.009753103367984295, 0.00826803408563137, -0.013489950448274612, 0.03511669486761093, -0.012806127779185772, -0.008433809503912926, 0.008744637481868267, -0.03577979654073715, 0.012391690164804459, -0.0010196897201240063, 0.010360945016145706, 0.016163073480129242, -0.005708880722522736, -0.006399610545486212, 0.035917941480875015, -0.008185146376490593, 0.03879137709736824, -0.008033186197280884, 0.0003138502943329513, 0.009835990145802498, -0.010160633362829685, 0.020818592980504036, -0.012288080528378487, 0.006865852978080511, 0.01743401773273945, -0.013255102559924126, 0.002932147355750203, -0.02155076526105404, -0.0037195791956037283, -0.015665749087929726, 0.007252661511301994, 0.014422435313463211, -0.009269592352211475, -0.0029373278375715017, 0.0044759283773601055, -0.012274266220629215, 0.01554141752421856, 0.007888132706284523, 0.012067046947777271, 0.005418774206191301, 0.006668995134532452, 0.011445390991866589, -0.037990130484104156, 0.027463411912322044, -0.009062373079359531, -0.01072012446820736, -0.02470049262046814, 0.02533596381545067, 0.02184087224304676, 0.02014167793095112, -0.054567642509937286, -0.002222422743216157, -0.017848454415798187, 0.0015895416727289557, 0.005902285221964121, 0.02870672568678856, 0.0005663983174599707, 0.020114047452807426, 0.004634796176105738, 0.006627551279962063, -0.01092043612152338, 0.0038370033726096153, -0.03271295875310898, -0.00268003111705184, -0.014097793027758598, 0.0021257204934954643, -0.0021585302893072367, -0.023830173537135124, 0.04033861309289932, 0.02069426141679287, -0.0072181252762675285, -0.013213658705353737, 0.009269592352211475, -0.019796311855316162, -0.04973253607749939, -0.02472812309861183, -0.0159420408308506, 0.027946922928094864, -0.0024710854049772024, -0.017641235142946243, -0.000108789921796415, 0.0012044598115608096, 0.016978135332465172, -0.013103141449391842, -0.007936484180390835, 0.011652609333395958, -0.02903827466070652, -0.030502622947096825, 0.011231264099478722, -0.004517372231930494, 0.015513788908720016, 0.00806772243231535, 0.004175460897386074, 0.018193820491433144, -0.027380524203181267, 0.02659309282898903, -0.01990683004260063, -0.01898125186562538, -0.00025578582426533103, 0.0007727538468316197, -0.02414790913462639, -0.0039440663531422615, -0.018511556088924408, 0.030032925307750702, -0.0044759283773601055, -0.004641703329980373, 0.022462528198957443, -0.01342087797820568, -0.01297881081700325, -0.0043723187409341335, -0.001397864194586873, -0.05713715776801109, -0.0013054790906608105, -0.004862736910581589, 0.04553290084004402, -0.015776265412569046, 0.004323967732489109, -0.014001090079545975, -0.0137247983366251, 0.01101713813841343, 0.007763801608234644, -0.020625188946723938, 0.010340223088860512, 0.015734821557998657, -0.005211555399000645, -0.03323791176080704, -0.019671980291604996, -0.016660399734973907, 0.0355863943696022, -0.0029235132969915867, 0.02106725424528122, -0.010499090887606144, 0.002058374462649226, 0.028126511722803116, -0.025308335199952126, 0.004696961957961321, -0.027325265109539032, -0.010347130708396435, 0.02633061446249485, 0.017475461587309837, 0.0017458192305639386, -0.00786050409078598, -0.013462320901453495, 0.016715658828616142, 0.014139236882328987, -0.0053324331529438496, -0.01012609712779522, -0.0018684237729758024, 0.0006229518330655992, -0.0008698877063579857, 0.009780731983482838, -0.004507011268287897, 0.011542093008756638, -0.004648610483855009, 7.78150133555755e-05, 0.015403271652758121, -0.01008465327322483, -0.008164424449205399, 0.009283406659960747, 0.010816826485097408, 0.0015282394597306848, -0.000935938733164221, 0.0028872499242424965, 0.033541832119226456, -0.0176136065274477, -0.017226798459887505, -0.03500618040561676, -0.0103816669434309, 0.022517787292599678, 0.00425489479675889, -0.018967436626553535, 0.000872477947268635, -0.020086418837308884, 0.013607374392449856, 0.028734354302287102, 0.04614074155688286, -0.04044913128018379, 0.019893014803528786, -0.025902362540364265, -0.01580389402806759, 0.017047207802534103, 0.0035261749289929867, -0.0333760567009449, 0.003092742059379816, 0.002624772721901536, 0.010022487491369247, 0.013413970358669758, -0.005215009208768606, 0.004510464612394571, 0.02747722715139389, -0.006852038204669952, -0.014007997699081898, -0.6286192536354065, -0.01672947220504284, 0.001746682683005929, -0.020569929853081703, 0.013047883287072182, 0.00750132417306304, 0.016080187633633614, 0.019091768190264702, -0.0057261488400399685, -0.001766541157849133, -0.0318840816617012, -0.0019288626499474049, -0.005315165035426617, -0.008143702521920204, -0.02989478036761284, -0.02021075040102005, -0.0015023370506241918, -0.023346662521362305, 0.013469228520989418, -0.023830173537135124, -0.021274473518133163, 0.004617528058588505, -0.01219828613102436, -0.012260451912879944, -0.005166657734662294, -0.004482835531234741, 0.014615840278565884, 0.005739963613450527, 0.005391145125031471, 0.0318840816617012, -0.057689741253852844, 0.03774147108197212, 0.03887426480650902, 0.025570811703801155, 0.037023112177848816, 0.005256452597677708, -0.03727177157998085, 0.0341220460832119, 0.0015757270157337189, 0.010934250429272652, -0.023871617391705513, -0.007542768027633429, 0.01229498814791441, -0.001064587151631713, 0.009476810693740845, 0.017406387254595757, 0.018345780670642853, -0.01386985182762146, 0.01248148549348116, -0.0019374967087060213, 0.02851332165300846, -0.0019893015269190073, 0.005563827697187662, -0.01092043612152338, 0.002065281616523862, 0.003146273549646139, 0.03713362663984299, -0.00953206978738308, 0.02239345572888851, 0.01587296836078167, 0.011424669064581394, 0.026358244940638542, -0.026634536683559418, -0.021675096824765205, -0.008178239688277245, 0.008468345738947392, -0.004465567413717508, 0.0030841080006211996, 0.01249529980123043, -0.019975902512669563, 0.013110049068927765, 0.021495508030056953, 0.00575723173096776, -0.013966553844511509, 0.010961879976093769, 0.004938717000186443, 0.03564165160059929, -0.02503204345703125, 0.0019996624905616045, 0.019589094445109367, 0.011963438242673874, -0.012094676494598389, -0.009835990145802498, -0.026123397052288055, 0.04343308135867119, -0.03323791176080704, -0.002225876320153475, 0.009525162167847157, -0.001659478060901165, -0.004361957777291536, 0.00895876344293356, -0.0007723221206106246, -0.005204648245126009, -0.001996208680793643, 0.02322233095765114, 0.010388574562966824, -0.013282731175422668, -0.007625655736774206, 0.011991066858172417, -0.0002300993219250813, 0.010499090887606144, -0.00609914306551218, 0.01954765059053898, 0.007266476284712553, -0.022932225838303566, -0.007370085455477238, -0.03296162188053131, -0.009608049876987934, 0.026897013187408447, -0.027062788605690002, -0.005722695495933294, -0.012087768875062466, -0.0076463776640594006, 0.0025626071728765965, 0.015348013490438461, -0.02128828875720501, 0.011735497042536736, -0.009690937586128712, 0.003160088323056698, -0.013655725866556168, 0.025501739233732224, -0.008192053996026516, 0.00958732794970274, 0.0024451829958707094, 0.019934458658099174, 0.029204050078988075, -0.01957527920603752, 0.008274941705167294, -0.009069280698895454, -0.014201401732861996, -4.1632651118561625e-05, -0.006465229671448469, 0.006648273207247257, 0.00388535438105464, 0.02273881994187832, -0.03964788466691971, 0.004931809846311808, 0.008281848393380642, 0.0165084395557642, -0.04249368980526924, -0.014809244312345982, -0.00345364841632545, 0.014975019730627537, 0.011127655394375324, -0.037216514348983765, -0.05202575773000717, -0.02273881994187832, 0.006769150961190462, -0.015928225591778755, 0.006631005089730024, 0.013987275771796703, -0.014339547604322433, 0.004482835531234741, 0.03033684752881527, 0.024976784363389015, -0.019202284514904022, -0.03216037526726723, -0.006793326232582331, 0.019202284514904022, -0.01820763386785984, -0.007494417019188404, 0.011383225210011005, -0.015900596976280212, -0.01713009551167488, 0.00017311412375420332, -0.006627551279962063, -0.020901480689644814, 0.03768621012568474, -0.00312037137337029, -0.035503506660461426, 0.00039954393287189305, -0.009062373079359531, -0.010312594473361969, 0.0330168791115284, -0.014118514955043793, 0.008426901884377003, -0.004541547503322363, -0.03144201636314392, -0.009704751893877983, 0.006157855037599802, -0.014643468894064426, 0.010347130708396435, -0.007874318398535252, -0.016563696786761284, 0.02510111592710018, 0.003483004402369261, 0.012046325951814651, -0.011424669064581394, 0.0024831732735037804, 0.03304450586438179, -0.02091529406607151, 0.01757216267287731, -0.008675565011799335, 0.007000545039772987, -0.013296546414494514, -0.0019064139341935515, 0.003868086263537407, 0.01891217939555645, 0.00033932094811461866, 0.007908854633569717, 0.02124684490263462, -0.011134562082588673, 0.020611373707652092, -0.00666554132476449, 0.010319501161575317, -0.0326300710439682, -0.004776395857334137, -0.012909737415611744, 0.014740170910954475, -0.028872501105070114, 0.005522383842617273, -0.030502622947096825, -0.0127923134714365, -0.01544471550732851, 0.01043692510575056, 0.01238478347659111, 0.022794079035520554, 0.00412710988894105, -0.010388574562966824, -0.013890573754906654, 0.010837548412382603, -0.004714230075478554, -0.008109166286885738, -0.0015731367748230696, -0.015707192942500114, 0.018552999943494797, 0.007694728672504425, 0.02769825980067253, 0.021081069484353065, -0.010098467580974102, 0.02851332165300846, -0.012032510712742805, -0.011058581992983818, 0.0019219552632421255, 0.01661895588040352, 0.014422435313463211, 0.03815590590238571, -0.008585769683122635, 0.037658583372831345, -0.024534717202186584, 0.011839106678962708, 0.014975019730627537, 0.006513580679893494, -0.01175621896982193, -0.012612723745405674, 0.008074630051851273, 0.022531602531671524, 0.020155491307377815, 0.004420669749379158, 0.020348895341157913, -0.01008465327322483, -0.005736509803682566, -0.006624097470194101, 0.0011846013367176056, 0.017337314784526825, -0.04779849201440811, 0.008848247118294239, 0.027021344751119614, 0.01824907772243023, 0.03586268424987793, 0.01776556670665741, 0.008495975285768509, 0.002757738111540675, 0.029065905138850212, 0.050450894981622696, 0.016605140641331673, -0.006492858752608299, 0.012806127779185772, -0.032326146960258484, -0.03793487325310707, -0.018497740849852562, -0.015237496234476566, -0.009359386749565601, -0.0023899246007204056, 0.017102466896176338, 0.004306699614971876, 0.01348304282873869, 0.009614957496523857, 0.02655164897441864, 0.018566813319921494, -0.013738613575696945, -0.03492329269647598, 0.009545884095132351, -0.010637236759066582, 0.003736847545951605, -0.004620981402695179, -0.024562347680330276, -0.0008858608198352158, -0.045781563967466354, 0.0389295257627964, -0.01657751202583313, 0.024424200877547264, 0.024603791534900665, -0.013040976598858833, -0.004268709570169449, -0.0007904537487775087, 0.015997299924492836, -0.02173035591840744, 0.015624305233359337, -0.0038093740586191416, 0.007998649962246418, -0.005691612605005503, -0.024009764194488525, 0.03616660460829735, 0.01283375732600689, 0.01002939511090517, -0.02714567631483078, -0.00025319558335468173, -0.0005206374917179346, -0.01754453405737877, 0.0041720070876181126, -0.0385703444480896, -0.008868969045579433, -0.0059782653115689754, 0.01092043612152338, -0.00207736948505044, -0.02065281756222248, -0.00312037137337029, 0.018511556088924408, -0.013116956688463688, -0.0029235132969915867, -0.01264725998044014, -0.026524020358920097, 0.012667981907725334, 0.08664513379335403, -0.002250051824375987, -0.014574396423995495, 0.017516905441880226, -0.0001507733395555988, 0.008924227207899094, -0.007135237567126751, 0.013545208610594273, 0.017931342124938965, -0.004261801950633526, 0.004734952002763748, -0.015748636797070503, 0.021426433697342873, -0.00418236805126071, 0.004931809846311808, 0.012398597784340382, -0.035503506660461426, -0.01898125186562538, -0.004382679704576731, -0.01107239630073309, -0.00934557244181633, 0.002811269834637642, 0.01794515736401081, 0.032657697796821594, -0.013282731175422668, -0.021302103996276855, 0.036912593990564346, -0.012039418332278728, 0.002515982836484909, -0.021854687482118607, -0.01683998852968216, 0.012405505403876305, 0.016991950571537018, 0.0023640224244445562, -0.0211363285779953, 0.003764476627111435, -0.003051298437640071, 0.034398335963487625, 0.000856504775583744, 0.0034035705029964447, 0.011203635483980179, 0.020114047452807426, 0.008461438119411469, -0.007832874543964863, 0.006800233852118254, -0.0067829652689397335, -0.008717008866369724, 0.005425681360065937, -0.0050526876002550125, -0.01375933550298214, 0.020625188946723938, -0.008198961615562439, -0.003681589150801301, -0.02510111592710018, 0.03566928207874298, 0.003940613009035587, -0.0007459880434907973, -0.002614411758258939, -0.003305141581222415, -0.002208608202636242, 0.005967904347926378, 0.01954765059053898, 0.010354037396609783, -0.011079303920269012, -0.025087302550673485, -0.04649992287158966, -0.02421698160469532, -0.008944949135184288, -0.011984160169959068, 0.00044141942635178566, -0.01327582448720932, -0.002424461068585515, -0.024935340508818626, 0.002073915908113122, 0.013441599905490875, -0.0019616722129285336, 0.000733468565158546, -0.01395964715629816, 0.0019167748978361487, 0.007660191971808672, -0.008848247118294239, -0.02796073630452156, 0.009055466391146183, -0.04094645380973816, -0.013448506593704224, -0.004741859156638384, -0.0062580108642578125, 0.01134868897497654, -0.016632771119475365, 0.013565930537879467, -0.0006035250262357295, -0.008060815744102001, 0.012723241001367569, -0.012446948327124119, 0.006282186601310968, 0.014823058620095253, 0.007055803667753935, -0.006496312562376261, -0.00943536777049303, -0.025501739233732224, -0.01327582448720932, -0.030281588435173035, -0.014394806697964668, -0.02054230123758316, 0.0027870943304151297, -0.009918877854943275, 0.010816826485097408, 0.018000414595007896, -0.003063386073336005, -0.015292755328118801, -0.032464295625686646, -0.022200051695108414, 0.008060815744102001, -0.008116073906421661, -0.009304128587245941, -0.008979485370218754, 0.000699795491527766, 0.016411736607551575, -0.01802804507315159, -0.008482160046696663, -0.024493273347616196, -0.01591441221535206, -0.007383900228887796, 0.008047000505030155, -0.01787608303129673, 0.004009685944765806, 0.01554141752421856, 0.005588002968579531, 0.011528278701007366, 0.0031687223818153143, -0.003362126648426056, 0.007535860873758793, 0.002812996506690979, -0.020196935161948204, -0.02454853244125843, 0.0052011944353580475, -0.024797195568680763, -0.0023761100601404905, -0.00699018407613039, -0.0002572968078311533, -0.006838223896920681, -0.019188471138477325, -0.019851570948958397, 0.0032429757993668318, -0.02472812309861183, -0.027352895587682724, -0.01156972162425518, 0.00856504775583744, 0.003239522222429514, 0.013510672375559807, -0.0061613088473677635, -0.016342664137482643, -0.030723655596375465, 0.005688158795237541, -0.02369202859699726, -0.01820763386785984, -0.00609914306551218, -0.0209567379206419, 0.02684175595641136, 0.0026524020358920097, 0.02254541590809822, -0.014809244312345982, 0.008613399229943752, 0.031248610466718674, 0.0008599584689363837, 0.014215216971933842, -0.00977382529526949, -0.018180005252361298, -0.04987068101763725, -0.008792988955974579, 0.012654167599976063, 0.03251955285668373, 0.007598026189953089, -0.0010145092383027077, -0.007376993075013161, 0.03193933889269829, -0.004261801950633526, -0.007522046100348234, -0.009766917675733566, -0.04365411400794983, -0.02536359429359436, 0.019119396805763245, -0.01950620673596859, 0.006769150961190462, -0.017047207802534103, 0.009877434000372887, 0.05956852808594704, -0.007584211882203817, 0.0031497273594141006, -0.01538945734500885, 0.0355863943696022, -0.014836873859167099, 0.00836473610252142, 0.011797662824392319, 0.043958038091659546, -0.011542093008756638, 0.021053440868854523, 0.009932693094015121, -0.008495975285768509, -0.00747369509190321, 0.003089288482442498, 0.011065489612519741, -0.018677329644560814, -0.020224565640091896, -0.011100025847554207, 0.018442481756210327, -0.024562347680330276, -0.001915047992952168, 0.02796073630452156, -0.009870527312159538, -0.023705841973423958, -0.005121760535985231, -0.028761982917785645, -0.039592623710632324, -0.009684029966592789, -0.0011284796055406332, 0.0024020124692469835, 0.032685328274965286, -0.016770916059613228, -0.006299454718828201, 0.005470579024404287, -0.02992240898311138, 0.04688673093914986, 0.019602907821536064, 0.03207748755812645, 0.01932661607861519, -0.005273721180856228, -0.007584211882203817, 0.0006687126588076353, -0.02025219425559044, -0.01194271631538868, 0.011555907316505909, 0.02217242307960987, -0.0072181252762675285, -0.0060058943927288055, -0.00832329224795103, -0.007950298488140106, -0.03912292793393135, -0.03329316899180412, 0.02295985445380211, 0.0039958711713552475, 0.0018390677869319916, -0.01411160733550787, 0.005843573249876499, -0.02525307610630989, -0.002610958181321621, 0.009076188318431377, 0.02562607079744339, -0.02109488472342491, -0.025239262729883194, -0.012046325951814651, 0.003667774610221386, 0.0226144902408123, 0.030917059630155563, 0.02269737794995308, -0.0007062710938043892, -0.01348304282873869, -0.004472474567592144, -0.021011997014284134, -0.02157839573919773, 0.0007313100504688919, 0.033956270664930344, -0.014532952569425106, -0.017005763947963715, 0.013849129900336266, 0.00038572936318814754, -0.00321189290843904, 0.008198961615562439, -0.0011846013367176056, 0.038404569029808044, -0.01824907772243023, 0.0016922877402976155, 0.006416878663003445, 0.02362295426428318, 0.024520903825759888, 0.033652350306510925, 0.0067311604507267475, 0.0005633764085359871, -0.02532215043902397, 0.004703869111835957, 0.018304336816072464, 0.0179866012185812, -0.002303583547472954, -0.020086418837308884, -0.019381875172257423, -0.010803012177348137, 0.018925992771983147, -0.003982056397944689, 9.335642971564084e-05, -0.04442773386836052, -0.006969462614506483, -0.006150947883725166, -0.02347099408507347, 0.008654843084514141, 0.003909530118107796, 0.018787847831845284, -0.022421084344387054, 0.015610490925610065, -0.03160778805613518, 0.02450708858668804, -0.03014344349503517, 0.013172214850783348, -0.025087302550673485, -0.007197403348982334, 0.02692464180290699, -0.033320799469947815, 0.00889659859240055, -0.004731498192995787, -0.016895247623324394, 0.0028406258206814528, 0.0034294729121029377, 0.013413970358669758, 0.008689379319548607, 0.00538769131526351, 0.0027646454982459545, -0.008337107487022877, 0.0030702934600412846, -0.025943806394934654, -0.03627712279558182, 0.03326554223895073, 0.01565193384885788, 0.005311711225658655, 0.007964112795889378, -0.01924372836947441, 0.026012878865003586, 0.004140924196690321, 0.0089933006092906, 8.62872475408949e-05, -0.03652578592300415, -0.005947182420641184, -0.008247312158346176, 0.023857802152633667, 0.0008413950563408434, 0.012702519074082375, -0.008226590231060982, -0.019257543608546257, -0.008779173716902733, -0.0022379641886800528, 0.01721298322081566, -0.0036574136465787888, 0.0021585302893072367, 0.011196727864444256, -0.004064944107085466, -0.00880680326372385, -0.029756633564829826, -0.01675710268318653, 0.0018304336117580533, -0.01746164634823799, -0.05036800727248192, -0.007155959494411945, -0.007984834723174572, 0.04531186819076538, 0.010464554652571678, -0.01862207241356373, 0.0007693001534789801, -0.006320176646113396, -0.02117777243256569, -0.0003408319316804409, -0.0003790378978010267, 0.04072542116045952, 0.03315502405166626, 0.036691561341285706, 0.009124538861215115, 0.01184601429849863, -0.02532215043902397, -0.004265255760401487, -0.015486159361898899, 0.018373409286141396, -0.0015645027160644531, 0.02351243793964386, -0.005912646185606718, -0.007584211882203817, -0.028734354302287102, -0.0006246786215342581, 0.028844870626926422, -0.011859828606247902, -0.008116073906421661, 0.014215216971933842, 0.00412710988894105, 0.011977252550423145, -0.011355595663189888, 0.01425666082650423, 0.014270475134253502, -0.0029545961879193783, -0.0007451246492564678, -0.03879137709736824, -0.010215891525149345, -0.01018135529011488, -0.004403401631861925, -0.033541832119226456, -0.0008301706984639168, 0.0072112176567316055, 0.0002484468277543783, 0.014339547604322433, -0.002987405750900507, -0.006717346142977476, 0.0018494287505745888, -0.022835522890090942, 0.04995356872677803, 0.005028511863201857, 0.014781614765524864, 0.025087302550673485, 0.007024720776826143, -0.01746164634823799, 0.006848584860563278, 0.013413970358669758, 0.017958970740437508, -0.021081069484353065, 0.00298567907884717, -0.019630536437034607, 0.01357283815741539, -0.01679854653775692, 0.023319033905863762, -0.014394806697964668, 0.018041858449578285, 0.009608049876987934, 0.01739257387816906, -0.019008880481123924, 0.013317268341779709, 0.007570397108793259, -0.0065550245344638824, -0.004665879067033529, 0.023388106375932693, 0.01864970102906227, 0.014118514955043793, -0.011721682734787464, -0.020528485998511314, 0.010050117038190365, 0.01898125186562538, -0.0004524279502220452, 0.015527603216469288, -0.018069488927721977, -0.0012951181270182133, 0.007805245462805033, -0.044372472912073135, -0.006558478344231844, 0.16920113563537598, -0.01555523183196783, -0.004966346547007561, 0.013614282011985779, -0.020487042143940926, -0.004168553743511438, 0.036691561341285706, 0.0002937759563792497, -0.0020152039360255003, 0.013241288252174854, -0.009276499971747398, 0.02507348731160164, -0.0055776420049369335, 0.009670215658843517, -0.0024175539147108793, -0.009179797023534775, -0.048710256814956665, 0.020818592980504036, -0.025487925857305527, -0.04039387032389641, 0.013621189631521702, -0.02736670896410942, 0.0015990391839295626, -0.017447831109166145, 0.015361827798187733, -0.003401843598112464, -0.005771046504378319, 0.007321734447032213, 0.03293399140238762, -0.01043692510575056, -0.025612255558371544, -0.01794515736401081, 0.008689379319548607, -0.010464554652571678, -0.01721298322081566, -0.002465904923155904, 0.010443832725286484, 0.009863619692623615, 0.02036271058022976, -0.008247312158346176, -0.02347099408507347, -0.0017561801942065358, -0.026938457041978836, -0.005277174524962902, -0.015845337882637978, 0.038625601679086685, -0.020680446177721024, -0.02217242307960987, -0.0031963514629751444, 0.01876021735370159, -0.029452713206410408, 0.015140794217586517, 0.033873382955789566, 0.04105697199702263, -0.001901233452372253, 0.012661075219511986, -0.0028406258206814528, 0.006081874947994947, -0.015997299924492836, 0.0015498247230425477, -0.006188937928527594, 0.02914879284799099, -0.024976784363389015, 0.013448506593704224, 0.0012657621409744024, 0.007328642066568136, 0.0007662782445549965, -0.016038743779063225, 0.009393923915922642, -0.019298987463116646, 0.00786050409078598, -0.009138353168964386, -0.027325265109539032, 0.025225447490811348, -0.0015696831978857517, 0.008143702521920204, 0.012398597784340382, -0.005411867052316666, -0.003141093300655484, 0.0025090754497796297, 0.005166657734662294, -0.012032510712742805, 0.0015014735981822014, 0.020860036835074425, -0.004130563233047724, -0.016522252932190895, -0.008938041515648365, -0.014657284133136272, -0.01664658449590206, 0.010664866305887699, -0.020155491307377815, -0.02128828875720501, 0.013600467704236507, -0.022421084344387054, -0.0036366917192935944, -0.01199797447770834, 0.00506304856389761, -0.012971903197467327, -0.0007028174586594105, 0.0035399894695729017, -0.020556114614009857, 0.01429810468107462, 0.02959086000919342, 0.03531010076403618, -0.01876021735370159, 0.0002555699902586639, -0.010982601903378963, -0.0005784861277788877, 0.022559231147170067, -0.014380991458892822, 0.02232438325881958, -0.003306868253275752, -0.00782596692442894, -0.015513788908720016, -0.00605424540117383, 0.01375933550298214, -0.03467462956905365, -0.007238847203552723, 0.005891924258321524, 0.002529797377064824, 0.03577979654073715, -0.030696026980876923, 0.011659516952931881, -0.011631887406110764, -0.0035019994247704744, -0.016881432384252548, -0.04216213896870613, 0.02514255978167057, 0.014380991458892822, -0.03359709307551384, 0.03713362663984299, -0.049677278846502304, 0.022517787292599678, 0.01505790650844574, -0.02670360915362835, 0.003082381095737219, 0.003398390021175146, -0.03608371689915657, 0.021122513338923454, -0.010803012177348137, -0.006568839307874441, 0.01283375732600689, -0.0018632432911545038, 0.019520020112395287, 0.02014167793095112, -0.02925930917263031, 0.008813710883259773, 0.007197403348982334, 0.01235024631023407, -0.006475590635091066, -0.026745053008198738, -0.0077154505997896194, 0.005056141410022974, 0.0026334067806601524, 0.009621864184737206, 0.007487509865313768, -0.0009532069670967758, -0.011783848516643047, 0.005888470448553562, 0.023830173537135124, -0.015997299924492836, 0.015624305233359337, 0.030861802399158478, -0.00875154510140419, -0.023719657212495804, -0.0036366917192935944, -0.17704783380031586, 0.02199283242225647, 0.01757216267287731, -0.008316385559737682, 0.01188745815306902, 0.014325733296573162, 0.033541832119226456, -0.001653434126637876, 0.0030288496054708958, -0.02236582711338997, 0.013179122470319271, 0.026358244940638542, -0.027504855766892433, -0.011245079338550568, -0.0025228902231901884, 0.007335549220442772, -0.015486159361898899, 0.03318265452980995, 0.03823879361152649, 0.007535860873758793, 0.0024089196231216192, -0.010823734104633331, 0.010492184199392796, -0.019450947642326355, -0.009324850514531136, 0.0228078942745924, -0.0024693585000932217, 0.023429550230503082, 0.011452297680079937, -0.009041651152074337, -0.0019202284747734666, 0.0009955140994861722, 0.008710101246833801, -0.023747285827994347, 0.02399594895541668, 0.010892806574702263, -0.002246598247438669, -0.005929914303123951, -0.022338198497891426, 0.02139880508184433, 0.023153258487582207, 0.012004882097244263, 0.022669747471809387, -0.006430693436414003, 0.01283375732600689, 0.020569929853081703, 0.0016171708703041077, -0.010644144378602505, 0.011866736225783825, -0.027325265109539032, 0.00578486081212759, 0.003089288482442498, 0.013289638794958591, -0.002512529259547591, 0.035917941480875015, 0.01587296836078167, 0.02476956695318222, 0.013593560084700584, 0.014615840278565884, -0.03956499695777893, -0.0036159697920084, -0.005743417423218489, 0.0023899246007204056, -0.018594441935420036, 0.013172214850783348, -0.011479927226901054, -0.032132744789123535, 0.018069488927721977, -0.030640767887234688, 0.012260451912879944, 0.001653434126637876, 0.015403271652758121, 0.026385873556137085, -0.009221240878105164, -0.010961879976093769, -0.016107816249132156, -0.03022633120417595, 0.03111046366393566, 0.003909530118107796, -0.0029148792382329702, -0.02588854730129242, 0.03351420536637306, -0.01368335448205471, 7.058394112391397e-05, 0.006337444763630629, -0.0015688197454437613, -0.005560373887419701, -0.02106725424528122, -0.027794962748885155, -0.0009989677928388119, 0.011597351171076298, -0.016397923231124878, -0.0003794696240220219, -0.008889690972864628, 0.006289093755185604, 0.016370292752981186, 0.00826803408563137, -0.015168423764407635, 0.019630536437034607, -0.005591456778347492, 0.01012609712779522, -0.015513788908720016, -0.016784731298685074, 0.02117777243256569, 0.0192851722240448, 0.01690906286239624, 0.0037195791956037283, 0.025902362540364265, 0.035503506660461426, 0.03099994733929634, -0.020196935161948204, 0.02051467075943947, 0.0024261879734694958, 0.002180978888645768, -0.0026195922400802374, 0.023636769503355026, -0.031911712139844894, -0.016715658828616142, 0.017102466896176338, -0.04475928470492363, 0.06691788882017136, -0.004244533833116293, 0.018525369465351105, -0.0051044924184679985, -0.018552999943494797, -0.05213627591729164, -0.10073601454496384, -0.005287535488605499, 0.022725006565451622, 0.01735113002359867, -0.030944690108299255, 0.01405634917318821, -0.009953415021300316, -0.008261126466095448, -0.0008474389906041324, 0.02870672568678856, -0.018594441935420036, -0.0356140211224556, -0.003438106970861554, 0.008192053996026516, -0.00720431050285697, 0.0027646454982459545, 0.0051044924184679985, -0.007252661511301994, 0.017530718818306923, 0.03426019102334976, 0.0023502076510339975, -0.009117631241679192, 0.0070109060034155846, 0.002479719463735819, -0.011908179149031639, 0.02051467075943947, -0.035171955823898315, 0.015845337882637978, 0.03356946259737015, 0.004662425257265568, -0.01554141752421856, -0.012225915677845478, 0.0037921059411019087, -0.006441054400056601, -0.021495508030056953, 0.004652064293622971, -0.04312916100025177, -0.009076188318431377, 0.011991066858172417, -0.011721682734787464, 0.011728589423000813, -0.011991066858172417, 0.031911712139844894, -0.005467125214636326, -0.005204648245126009, 0.006928018759936094, -0.021039625629782677, 0.008143702521920204, -0.0019374967087060213, -0.03066839836537838, 0.0001381459296680987, -0.004762581083923578, -0.04705250635743141, -0.025391222909092903, 0.02465904876589775, 0.005363516043871641, 0.02978426404297352, 0.017668865621089935, -0.01754453405737877, -0.00750132417306304, 0.007756894454360008, -0.0005707154050469398, -0.023484809324145317, 0.020445598289370537, 0.01342087797820568, -0.015969669446349144, -0.01314458530396223, -0.018110932782292366, 0.03193933889269829, -0.008005556650459766, -0.012301895767450333, 0.016149260103702545, -0.025943806394934654, 0.0022241496481001377, -0.028540950268507004, 0.0010248702019453049, -0.016342664137482643, -0.017751753330230713, 0.024203168228268623, -0.0033569461666047573, -0.0019064139341935515, -0.015278940089046955, 0.013303453102707863, 0.007763801608234644, 0.023636769503355026, 0.005215009208768606, 0.028900129720568657, -0.003320682793855667, 0.009739288128912449, -0.0400623194873333, 0.022338198497891426, 0.008951856754720211, -0.005159750580787659, -0.03260244056582451, 0.023415736854076385, 0.011977252550423145, 0.02837517485022545, -0.0019599455408751965, -0.006827862933278084, 0.011210542172193527, 0.007487509865313768, -0.012619631364941597, -0.0652601420879364, 0.02840280346572399, -0.010257335379719734, 0.0053048040717840195, 0.0007516002515330911, -0.019630536437034607, 0.016121631488204002, -0.023167073726654053, -0.022075720131397247, 0.02992240898311138, -0.021757984533905983, 0.029867151752114296, -0.02347099408507347, -0.020445598289370537, -0.01479543000459671, -0.01333108264952898, 0.01092043612152338, -0.015016462653875351, 0.010091560892760754, -0.016439367085695267, -0.00011148808698635548, 0.0031894443091005087, 0.04354359954595566, 0.01957527920603752, -0.0172406118363142, 0.002920059720054269, 0.019602907821536064, -0.016370292752981186, -0.01646699570119381, -0.0037057646550238132, 0.014781614765524864, -0.038432199507951736, 0.004313606768846512, 0.02562607079744339, 0.002635133685544133, 0.013489950448274612, -0.015030277892947197, -0.011949623003602028, 0.013745520263910294, 0.04252132028341293, -0.012971903197467327, -0.022559231147170067, 0.010706310160458088, -0.004907634109258652, 0.0011984159937128425, 0.010899714194238186, -0.013738613575696945, 0.011659516952931881, 0.026897013187408447, -0.024106465280056, 0.03442596644163132, 0.012785405851900578, -0.0011802843073382974, -0.03735465928912163, 0.010727032087743282, -0.01605255715548992, 0.03453648462891579, -0.0071145156398415565, 0.0054464032873511314, -0.01835959404706955, 0.021744169294834137, 0.014823058620095253, 0.010443832725286484, -0.014284289442002773, 0.018345780670642853, -0.014657284133136272, -0.0070799789391458035, -0.0077430796809494495, -0.015168423764407635, -0.038432199507951736, -0.013538301922380924, -0.010036301799118519, 0.008198961615562439, 0.02791929431259632, 0.03763095289468765, 0.0022276032250374556, 0.01175621896982193, -0.014367177151143551, -0.02555699832737446, 0.004237626679241657, 0.0065101273357868195, -0.012370968237519264, -0.03171830624341965, 0.02662072144448757, 0.020860036835074425, -0.011576629243791103, -0.01943713240325451, 0.022048091515898705, -0.008040093816816807, 0.0010222799610346556, 0.008544325828552246, -0.0032861463259905577, -0.0037057646550238132, -0.004489742685109377, 0.014007997699081898, 0.010202077217400074, -0.012716333381831646, -0.0070350817404687405, 0.03426019102334976, 0.02959086000919342, -0.006185484118759632, 0.0031238249503076077, 0.012391690164804459, -0.008938041515648365, -0.014450064860284328, 0.00285098678432405, -0.022048091515898705, -0.011963438242673874, -0.004507011268287897, 0.008440716192126274, 0.023719657212495804, 0.016964320093393326, 0.015513788908720016, 0.01555523183196783, -0.020790962502360344, -0.006530849263072014, -0.0030875615775585175, -0.020721890032291412, -0.013179122470319271, 0.029839521273970604, 0.0038646324537694454, 0.03111046366393566, 0.018829291686415672, -0.00017289827519562095, 0.019160840660333633, 0.02655164897441864, 0.012654167599976063, -0.012053232640028, 0.007729264907538891, 0.011362503282725811, 0.004389586858451366, -0.0069314721040427685, -0.03904004022479057, 0.01549997366964817, -0.007390807382762432, -0.03423256427049637, 0.003101376350969076, 0.005470579024404287, -0.024645235389471054, 0.06034214422106743, 0.010174447670578957, -0.013372526504099369, -0.0007904537487775087, 0.012364061549305916, 0.02599906548857689, 0.002343300497159362, 0.004493196494877338, -0.0012459036661311984, -0.005318618379533291, -0.008019371889531612, -0.028043624013662338, 0.02859620936214924, -0.0008837023051455617, -0.005967904347926378, 0.011037860065698624, -0.008972578682005405, 0.05274411663413048, -0.013469228520989418, -0.024797195568680763, 0.021329732611775398, 0.004051129333674908, 0.04473165422677994, -0.00078700011363253, 0.002531524281948805, -0.0038888079579919577, -4.983506732969545e-05, 0.0028268112801015377, -0.004289431497454643, -0.03555876389145851, 0.000616476230788976, 0.009704751893877983, -0.027242379263043404, -0.0058815632946789265, 0.020569929853081703, -0.015472345054149628, 0.0022431446705013514, -0.014753986150026321, 0.027601556852459908, 0.013268916867673397, -0.007349363528192043, 0.0032619708217680454, -0.011065489612519741, -0.01023661345243454, 0.027228564023971558, -0.023913061246275902, -0.0228078942745924, 0.005560373887419701, -0.04174770042300224], "b2e27a96-7e05-480c-af42-4c8d46f176a5": [-0.0067994315177202225, -0.005291465669870377, -0.0027832838241010904, 0.011595034971833229, -0.012634308077394962, 0.035973817110061646, -0.0088236378505826, 0.0038718043360859156, -0.013870568946003914, -0.03418055921792984, -0.0032927317079156637, 0.009285537526011467, 0.005885821767151356, 0.020391501486301422, -0.008354946039617062, -0.004153698682785034, 0.03374582901597023, -0.004384648520499468, 0.04841792955994606, -0.017185376957058907, 0.002277232240885496, -0.011758058331906796, -0.00903420988470316, 0.026301098987460136, -0.0205001849681139, 0.011595034971833229, 0.025255031883716583, -0.008558725006878376, 0.002554032253101468, -0.018041249364614487, -0.008633444085717201, 0.010134617798030376, -0.001717688632197678, 0.0037834998220205307, -0.0009246479603461921, -0.0005748270777985454, 0.004639372229576111, -0.01594911701977253, -0.000602422165684402, 0.0025693157222121954, 0.004972211550921202, 0.009258367121219635, -0.005865443963557482, 0.01738915592432022, -0.023190069943666458, 0.016900084912776947, 0.004765036050230265, -0.007118685636669397, -0.0205001849681139, 0.012233543209731579, 0.019168827682733536, 0.025173520669341087, -0.030947262421250343, 0.009862911887466908, -0.013055452145636082, -0.0001239656558027491, 0.01863900199532509, 0.01382302027195692, -0.01877485401928425, 0.03722366318106651, 0.01516117062419653, 0.003494812874123454, -0.012593552470207214, 0.006643200758844614, -0.03488699346780777, 0.0016837253933772445, -0.017728786915540695, -0.004832962527871132, -0.0005472319899126887, -0.007105100434273481, 0.05257502570748329, 0.029941951856017113, -0.0031127268448472023, -0.0059503517113626, 0.015405705198645592, -0.02321724034845829, -0.03632703423500061, -0.01950845867395401, -0.014794367365539074, 0.014767196960747242, 0.0038106704596430063, -0.02234778180718422, -0.0010936148464679718, -0.003005742793902755, 0.03005063533782959, -0.002477615140378475, -9.090461389860138e-05, 0.015745338052511215, -0.025322958827018738, -0.04186982661485672, 0.008558725006878376, 0.008789675310254097, 0.007152648642659187, 0.007757193874567747, -0.0005680344183929265, 0.011520315892994404, -0.031137457117438316, 0.03803877905011177, 0.0012039953144267201, -0.035892304033041, -0.019603556022047997, -0.0004801546747330576, -0.02452142722904682, -0.0014604174066334963, -0.022307027131319046, 0.020907742902636528, -0.005967333447188139, -0.018421636894345284, 0.014970975928008556, -0.0062594166956841946, -0.02206249162554741, 0.00014731535338796675, -0.0163702592253685, -0.05580832064151764, -0.0003213767195120454, -0.004388044588267803, 0.04119056463241577, -0.015460046008229256, 0.006514140870422125, -0.009387427009642124, 0.006493763066828251, 0.010501420125365257, 0.008015314117074013, -0.03659873828291893, 0.013232060708105564, 0.015038902871310711, -0.008667407557368279, -0.027537358924746513, -0.0013109793653711677, 0.006218661088496447, 0.03917994350194931, -0.009733851999044418, 0.008497591130435467, -0.012478077784180641, -0.008259848691523075, 0.002978572156280279, -0.02804001420736313, 0.004917870741337538, -0.019997529685497284, -0.035973817110061646, 0.0352945514023304, 0.024290477856993675, 0.0019240149995312095, -0.023149313405156136, -0.009876497089862823, 0.016261577606201172, 0.010949733667075634, 0.0051046679727733135, -0.01437322422862053, 0.009774607606232166, 2.2168944269651547e-05, -0.004048412665724754, 0.023312337696552277, 0.0013806038768962026, 0.021437568590044975, -0.024711620062589645, 0.024942569434642792, 0.010304433293640614, 0.005352599546313286, -0.006126960273832083, 0.012118067592382431, 0.015867603942751884, 0.016737062484025955, -0.004748054780066013, 0.01196862943470478, 0.029289858415722847, -0.014998147264122963, -0.013564900495111942, -0.025255031883716583, -0.007702852599322796, 0.012573175132274628, 0.012070519849658012, -0.030023464933037758, 0.013558107428252697, -0.019331850111484528, 0.022877607494592667, 0.041217733174562454, 0.023991601541638374, -0.01925033889710903, 0.013136963360011578, -0.024005185812711716, -0.021899467334151268, 0.02009262703359127, 0.01751142367720604, -0.03515870124101639, 0.003630665596574545, -0.00616092374548316, 0.009455353021621704, 0.014509077183902264, -0.0004309080250095576, 0.007105100434273481, 0.0238014068454504, 0.005243917461484671, -0.007974558509886265, -0.6220970749855042, -0.019848091527819633, -0.014413979835808277, -0.013619241304695606, -0.006069222930818796, 0.003262164769694209, 0.02276892587542534, 0.004357478115707636, 0.012987526133656502, -0.004228417761623859, -0.02689884975552559, 0.020839815959334373, -0.017701616510748863, -0.028692107647657394, -0.023244410753250122, -0.009197233244776726, 0.009849326685070992, -0.029806099832057953, 0.011425218544900417, -0.03390885517001152, -0.01559589896351099, -0.006697542034089565, -0.00861306581646204, 0.010657650418579578, 0.0038752006366848946, -0.002241570968180895, 0.019195998087525368, 0.017063109204173088, 0.0030498949345201254, 0.03863653168082237, -0.02549956738948822, 0.04727676883339882, 0.040212422609329224, 0.019698653370141983, 0.041951339691877365, 0.013558107428252697, -0.030947262421250343, 0.04135358706116676, 0.0018051437800750136, -0.0019834504928439856, -0.026599973440170288, -0.02590712532401085, 0.016302334144711494, -0.0015079658478498459, 0.03143633157014847, 0.024548597633838654, 0.0266543161123991, -0.00862665195018053, 0.01067802868783474, 0.004958626348525286, 0.01510682888329029, 0.005559775047004223, 0.01089539285749197, 0.012763368897140026, -0.0067790537141263485, -0.0198209211230278, 0.03233296051621437, -0.014142273925244808, 0.018340125679969788, -0.023896504193544388, 0.01950845867395401, 0.029697418212890625, 0.0005603927420452237, -0.0037631220184266567, 0.002284024842083454, 0.009903667494654655, -0.02649129182100296, -0.00015368346066679806, 0.03437075391411781, -0.026464121416211128, -0.002751018851995468, 0.011289365589618683, 0.011133135296404362, -0.02251080609858036, 0.007730023004114628, 0.0083345677703619, 0.036245521157979965, -0.01967148296535015, 0.0035695317201316357, 0.016614794731140137, 0.0050978753715753555, -0.019576385617256165, -0.0058178952895104885, -0.031979743391275406, 0.04341854900121689, -0.013863775879144669, -0.00491107814013958, 0.011628997512161732, 0.006215264555066824, 0.006130356807261705, 0.005461281631141901, 0.011425218544900417, 0.004941645078361034, -0.010542175732553005, 0.035810790956020355, 0.012247128412127495, -0.012070519849658012, -0.006653389893472195, 0.010154995135962963, 0.002294213743880391, 0.0020615658722817898, -0.01168333925306797, 0.011058416217565536, -0.0022364764008671045, -0.013272816315293312, 0.0083345677703619, -0.029289858415722847, -0.00811720360070467, 0.04428800567984581, -0.022157588973641396, 0.00497900415211916, -0.00897307600826025, -0.021451154723763466, 0.006480177398771048, 0.00413332087919116, -0.01809559017419815, -0.0029106459114700556, -0.008130788803100586, 0.02279609628021717, -0.010902185924351215, 0.010868222452700138, -0.016193650662899017, 0.007268123794347048, -0.0068130167201161385, 0.02536371350288391, 0.03472397103905678, 0.005457885563373566, -0.0026915832422673702, -0.012050141580402851, -0.010915771126747131, -0.004099357407540083, -0.012213164940476418, 0.014386809431016445, 0.00551222637295723, 0.026273926720023155, -0.02165493369102478, 0.00430653290823102, 0.00136956584174186, 0.014712856151163578, -0.032387301325798035, -0.0031314066145569086, 0.005108064506202936, 0.02804001420736313, 0.006476781331002712, -0.038391996175050735, -0.03515870124101639, -0.003708780976012349, 0.003318204078823328, -0.02207607589662075, -0.011004075407981873, -0.01452266238629818, -0.008531554602086544, 0.012097690254449844, 0.015921946614980698, 0.024602938443422318, -0.024385573342442513, -0.0128788435831666, 0.003255372168496251, 0.014984562061727047, -0.015772508457303047, 0.011730887927114964, 0.01294676959514618, -0.01923675276339054, -0.005936766508966684, 0.010861429385840893, -0.028963813558220863, -0.03331110253930092, 0.02366555482149124, -0.011221439577639103, -0.0393429659307003, -0.005464678164571524, 0.0010970111470669508, 0.003987279254943132, 0.034560948610305786, -0.011724094860255718, -0.004639372229576111, -0.0038208593614399433, -0.029154006391763687, -0.012403358705341816, 0.00477182911708951, -0.029154006391763687, 0.01488946471363306, -0.013775471597909927, -0.019902432337403297, 0.03673459216952324, 0.002907249378040433, -0.007023588754236698, -0.009149684570729733, 0.011302951723337173, 0.022578731179237366, -0.00427256990224123, 0.011635790579020977, -0.007682474795728922, -0.008246263489127159, 0.00494504114612937, 0.004975608084350824, 0.025553908199071884, 0.02221192978322506, 0.005012967623770237, -0.0028325305320322514, 0.02593429572880268, 0.005033345427364111, 0.03420773148536682, -0.0056039271876215935, 0.008429665118455887, -0.04953192174434662, 0.0034014140255749226, -0.0011437105713412166, 0.018054833635687828, -0.0025744102895259857, -0.005692231468856335, -0.027007533237338066, -0.013116586022078991, -0.01593553088605404, 0.010650858283042908, 0.008714956231415272, 0.023271581158041954, -0.000215666281292215, -0.004099357407540083, -0.002949703484773636, 0.031246138736605644, -0.006680560298264027, -0.005451092962175608, 0.0017491045873612165, -0.027550943195819855, 0.007974558509886265, -0.000651668815407902, 0.007716437801718712, 0.0032604667358100414, 0.0034676422365009785, 0.036979127675294876, -0.008090033195912838, -0.004632579628378153, -0.0033385821152478456, -0.005746572744101286, 0.005332221742719412, 0.025852784514427185, -0.011092379689216614, 0.03744102641940117, -0.038228973746299744, 0.008986661210656166, 0.03157218545675278, 0.006069222930818796, -0.011133135296404362, -0.014753611758351326, 0.012464492581784725, 0.01418303046375513, 0.008151167072355747, 0.01664196513593197, 0.03545757383108139, -0.01725330390036106, -0.0001224797742906958, -0.028529083356261253, -0.008633444085717201, 0.024467086419463158, -0.04447820037603378, -0.0019376003183424473, 0.03662591055035591, 0.006126960273832083, 0.01425095647573471, 0.007471902761608362, 0.0205001849681139, 0.00741076935082674, 0.030376682057976723, 0.07053476572036743, 0.003445566166192293, -0.0012226749677211046, 0.02119303308427334, -0.039044089615345, -0.043527230620384216, -0.013544522225856781, -0.01853031851351261, -0.004958626348525286, -0.004367666784673929, 0.014047177508473396, -0.001724481233395636, -0.003459151368588209, 0.004235210362821817, 0.02948005311191082, 0.012396566569805145, -0.021125108003616333, -0.025241445749998093, 0.024684449657797813, 0.0035899097565561533, -0.005953748244792223, 0.007064344361424446, -0.007077930029481649, -0.011214646510779858, -0.02793133072555065, 0.04015808179974556, -0.01622082106769085, 0.027442261576652527, 0.022320611402392387, 0.00014689081581309438, -0.006734901573508978, 0.0019172223983332515, 0.024698035791516304, -0.003943127114325762, 0.022714585065841675, 0.008850808255374432, 0.0192231684923172, 0.006021674256771803, -0.022252684459090233, 0.026287512853741646, 0.014984562061727047, -0.01865258626639843, -0.032523155212402344, -0.00032923070830293, 0.01753859408199787, -0.006962454877793789, -0.004897492937743664, -0.04105471074581146, -0.016913671046495438, -0.002268741372972727, 0.003501605475321412, 0.0023842162918299437, -0.008341360837221146, 0.005223539192229509, 0.022700998932123184, -0.016777819022536278, -0.010419907979667187, -0.002689884975552559, -0.02877361886203289, -0.007125478237867355, 0.07971841096878052, 0.004741262178868055, -0.016152895987033844, 0.010331603698432446, -0.009835741482675076, 0.013537729158997536, -0.019182411953806877, -0.0008694577845744789, 0.010759539902210236, -0.020568110048770905, 0.006293380167335272, -0.01906014420092106, 0.014685685746371746, -0.005502037703990936, -0.009346671402454376, -0.0051997653208673, -0.015854019671678543, -0.009163269773125648, 0.0023553476203233004, -0.01289922185242176, 0.00124475103802979, -0.013592070899903774, 0.009985179640352726, 0.014767196960747242, -0.029561564326286316, -0.00982894841581583, 0.04241323843598366, -0.004337099846452475, 0.011669754050672054, -0.007336050271987915, -0.024942569434642792, 0.018598245456814766, 0.011676546186208725, 0.020975669845938683, -0.027089044451713562, -0.008103618398308754, -0.006432629190385342, 0.019413361325860023, -0.0008176639094017446, 0.011364084668457508, 0.014712856151163578, 0.028094355016946793, 0.005254106130450964, 0.0032995243091136217, 0.0027883783914148808, -0.01836729608476162, -0.028393231332302094, 0.0007102552917785943, -0.006989625748246908, 0.0006465743063017726, 0.03545757383108139, 0.006123564206063747, 0.0032774482388049364, -0.02533654309809208, 0.021260960027575493, -0.011554279364645481, 0.02092132717370987, 0.0008779485942795873, -0.027849819511175156, 0.013510558754205704, 0.0026491291355341673, 0.005991107784211636, -0.003956712316721678, -0.004727676510810852, -0.013483388349413872, -0.018014078959822655, -0.02180437184870243, -0.0036102875601500273, -0.015201926231384277, 0.0016208934830501676, -0.02365196868777275, 0.008422872051596642, -0.03102877549827099, 0.0007191706681624055, 0.018856365233659744, 0.0007586528663523495, 0.015473631210625172, -0.009421390481293201, 0.010990490205585957, 0.009149684570729733, -0.023747066035866737, -0.04173397272825241, 0.023597627878189087, -0.0202013086527586, -0.0011284271022304893, 0.0013576786732301116, 0.0006580369081348181, 0.029860440641641617, -0.03276769071817398, 0.01488946471363306, -0.0012328639859333634, -0.0028325305320322514, -0.005318636540323496, 0.00925157405436039, 0.010800296440720558, 0.013347535394132137, 0.007356428075581789, -0.02579844370484352, 0.002988761058077216, -0.013646411709487438, -0.011493145488202572, -0.03643571585416794, -0.014984562061727047, -0.002696677576750517, 0.02162776328623295, -0.0032774482388049364, 0.017457082867622375, 0.016574040055274963, -0.006748486775904894, -0.03442509472370148, -0.007614548318088055, -0.017715202644467354, 0.008320982567965984, -0.0006860565626993775, -0.0010588025907054543, 0.0037699146196246147, 0.000869033276103437, 0.009380634874105453, -0.008069654926657677, -0.007804742082953453, -0.0006936982390470803, -0.025812027975916862, 0.010868222452700138, 0.007159441709518433, -0.016261577606201172, -0.0006049693911336362, 0.010494627058506012, -0.021423982456326485, 0.013836605474352837, 0.006096393335610628, 0.004486538004130125, 0.024983325973153114, -0.003977090120315552, -0.027238482609391212, -0.03515870124101639, 0.000826154719106853, -0.015310607850551605, 0.011989007703959942, -0.01537853479385376, 0.004951833747327328, -0.008918735198676586, -0.012056934647262096, -0.009645547717809677, -0.010277262888848782, -0.004486538004130125, -0.03219711035490036, -0.015731751918792725, -0.010657650418579578, 0.01925033889710903, 0.010059898719191551, -0.013911324553191662, -0.03507718816399574, -0.031680867075920105, -0.002290817443281412, -0.01196183729916811, -0.023828577250242233, -0.011051624082028866, -0.013476596213877201, 0.011133135296404362, -0.008307397365570068, 0.025268616154789925, -0.017049523070454597, 0.01638384535908699, 0.022021735087037086, 0.01738915592432022, 0.011364084668457508, -0.013632826507091522, -0.03793009743094444, -0.04298381879925728, -0.004703902639448643, 0.023692725226283073, 0.020554525777697563, 0.016696305945515633, 0.002007224829867482, -0.00591638870537281, 0.04817339405417442, -0.0046291835606098175, -0.005485055968165398, -0.007465110160410404, -0.048907000571489334, -0.036816101521253586, 0.0035763243213295937, 0.0006890282966196537, -0.0007161988760344684, -0.018448807299137115, 0.00024665769888088107, 0.056623440235853195, 0.007383598480373621, 0.006568481680005789, -0.022728169336915016, 0.041109051555395126, -0.03257749602198601, 0.020391501486301422, 0.0169680118560791, 0.03271334990859032, -0.009305915795266628, 0.008993454277515411, 0.002409688662737608, -0.004177473019808531, -0.011486352421343327, -0.010508212260901928, 0.008891564793884754, -0.015066073276102543, -0.028311720117926598, -0.02918117679655552, 0.011982215568423271, -0.010202543810009956, -0.003627269295975566, 0.028012843802571297, -0.014930220320820808, -0.02236136794090271, -0.00686735799536109, -0.02760528400540352, -0.03787575662136078, -8.374050230486318e-05, 0.006286587566137314, -0.0057975174859166145, 0.03306656703352928, -0.014549832791090012, -0.002756113186478615, -0.004914474207907915, -0.024847473949193954, 0.0473039373755455, 0.012783746235072613, 0.03985920548439026, 0.0003602221258915961, -0.026844508945941925, -0.017049523070454597, 0.0006151583511382341, -0.01232863962650299, -0.02122020348906517, 0.03045819327235222, 0.015473631210625172, -0.006863961927592754, 0.001993639627471566, -0.006921699270606041, -0.0067654685117304325, -0.02817586623132229, -0.02476596087217331, 0.001968167256563902, 0.009210818447172642, -0.016614794731140137, -0.0015342873521149158, 0.0032468815334141254, -0.027442261576652527, -0.004357478115707636, 0.010426701046526432, 0.03322958946228027, -0.014169445261359215, -0.024833887815475464, -0.011133135296404362, -0.005332221742719412, -0.002034395467489958, 0.037794243544340134, 0.023828577250242233, -0.016777819022536278, -0.014644929207861423, -0.0016599511727690697, -0.031083116307854652, -0.013075830414891243, 0.0012778652599081397, 0.022687414661049843, -0.016777819022536278, -0.01979375071823597, 0.006262813229113817, 0.0018119364976882935, -0.01552797295153141, 0.007193404715508223, -0.0015843830769881606, 0.02861059457063675, 0.008796467445790768, 0.004228417761623859, 0.008022106252610683, 0.012627515941858292, 0.018163517117500305, 0.0244806706905365, 0.002409688662737608, -0.0017406137194484472, -0.027265653014183044, 0.0013118283823132515, 0.002287421142682433, 0.0001509239518782124, -0.002182135358452797, -0.0222255140542984, -0.021872296929359436, -0.014563417993485928, 0.00020876750932075083, 0.002389310859143734, 0.007628133520483971, -0.035946644842624664, -0.013320364989340305, 0.006602445151656866, -0.0232036542147398, 0.009197233244776726, 0.0010774823604151607, 0.01937260664999485, -0.015881190076470375, 0.03132764995098114, -0.033691488206386566, 0.04480424523353577, -0.03676176071166992, 0.0027663023211061954, -0.04075583443045616, -0.005729591008275747, 0.018910706043243408, -0.02180437184870243, -0.001040122820995748, -0.01102445274591446, -0.01710386574268341, 0.012124860659241676, 0.011330122128129005, 0.016560453921556473, -0.001240505720488727, -0.0048839072696864605, -0.011662960983812809, -0.011934666894376278, 0.017905395478010178, -0.015745338052511215, -0.04284796491265297, 0.024684449657797813, 0.022442879155278206, -0.004887303803116083, -0.017715202644467354, -0.015188341028988361, 0.021396812051534653, 0.004568049684166908, 0.006646597292274237, -0.0050707049667835236, -0.029099665582180023, 0.016139309853315353, -0.013653204776346684, 0.015840433537960052, 0.009414597414433956, 0.006004692986607552, -0.02393725886940956, -0.03064838796854019, -0.0198209211230278, 0.009020624682307243, -0.0005149669595994055, -0.0173483993858099, 0.0014867389108985662, 0.013727923855185509, -0.0011555977398529649, -0.001145408721640706, 5.227147994446568e-05, -0.027116214856505394, -0.008069654926657677, -0.007193404715508223, -0.03651722893118858, -0.007702852599322796, -0.011126342229545116, 0.04618994519114494, 0.0007140761590562761, -0.013965665362775326, -0.0011496541555970907, -0.018272198736667633, -0.02264665812253952, -0.018027663230895996, 0.025553908199071884, 0.01679140329360962, 0.03078423999249935, 0.03236013278365135, -0.005318636540323496, 0.017035938799381256, -0.033691488206386566, 0.006456403527408838, -0.018557488918304443, 0.008932320401072502, 0.013041866943240166, 0.010569346137344837, -0.010501420125365257, -0.009000246413052082, -0.022864023223519325, -0.0058314804919064045, 0.034126218408346176, -0.0013245645677670836, 0.00288347527384758, 0.010657650418579578, -0.013646411709487438, 0.026545632630586624, -0.012464492581784725, 0.004880511201918125, 0.0038752006366848946, 0.005260898731648922, 0.007370013277977705, -0.029860440641641617, -0.011642583645880222, -0.011343707330524921, -0.016750648617744446, -0.030295168980956078, -0.024725206196308136, -0.007641718722879887, -0.014047177508473396, 0.0229047778993845, -0.0072341603226959705, -0.007763986475765705, -0.006942077074199915, -0.016601210460066795, 0.027985673397779465, -0.010093861259520054, 0.004364270716905594, 0.03773990273475647, -0.003521983278915286, -0.033555638045072556, -0.0018017474794760346, 0.008497591130435467, 0.01920958235859871, -0.03143633157014847, -0.0010621988913044333, -0.015609484165906906, 0.011262195184826851, -0.01395208016037941, 0.011615412309765816, -0.018299369141459465, 0.027550943195819855, -0.025526737794280052, 0.006368099246174097, -0.023434603586792946, 0.011459182016551495, 0.022823266685009003, -0.00580091355368495, -0.015541558153927326, 0.012518833391368389, 0.014481906779110432, 0.009027416817843914, -0.016438186168670654, -0.01979375071823597, -0.002209305763244629, 0.0056039271876215935, 0.0017491045873612165, 0.017701616510748863, -0.018014078959822655, -0.011432011611759663, 0.020568110048770905, -0.032985053956508636, 0.01046745665371418, 0.17204396426677704, -0.008565518073737621, 0.004360874183475971, 0.02533654309809208, -0.020839815959334373, 0.010426701046526432, 0.030865751206874847, 8.448345033684745e-05, 0.013442632742226124, -0.00039843074046075344, -0.005294862203299999, 0.015582313761115074, 0.0010409719543531537, 0.013659996911883354, -0.005491848569363356, -0.00416728388518095, -0.046923551708459854, 0.01877485401928425, -0.006232246290892363, -0.054911695420742035, -0.0029751758556813, -0.01623440720140934, -0.009278744459152222, -0.012681856751441956, 0.014305297285318375, -0.0036884029395878315, 0.00019889695977326483, 0.005464678164571524, 0.04214153066277504, -0.0068333949893713, -0.030431022867560387, -0.01639742963016033, 0.007485487964004278, -0.008382116444408894, -0.005447696428745985, 0.006225453689694405, 0.004714091308414936, -0.010263677686452866, 0.01920958235859871, -0.008585895411670208, -0.015283437445759773, 0.007431147154420614, -0.011425218544900417, -0.0032604667358100414, -0.012838087975978851, 0.04029393568634987, -0.015582313761115074, -0.0195220448076725, -0.005712609272450209, 0.022864023223519325, -0.027700381353497505, 0.03521304205060005, 0.04412498325109482, 0.031137457117438316, -0.005043534561991692, -0.003448962466791272, -0.0075194514356553555, 0.027564529329538345, -0.002202513162046671, -0.01737556979060173, -0.013320364989340305, 0.027550943195819855, -0.015052488073706627, 0.035376064479351044, -0.0011963535798713565, -0.007240953389555216, -0.013789056800305843, -0.022537976503372192, 0.019399777054786682, -0.03189823403954506, 0.0035457576159387827, -0.005284673068672419, -0.010059898719191551, 0.009951216168701649, 0.008076447993516922, 0.00192231684923172, 0.01683215983211994, -0.01980733498930931, 0.00847721379250288, 0.0037767072208225727, 0.0015351363690569997, -0.009801778011023998, -0.007200197316706181, -0.010970111936330795, 0.0006346871959976852, -0.020011113956570625, 0.01281770970672369, -0.022157588973641396, -0.016696305945515633, 0.007111893035471439, -0.028692107647657394, -0.009944423101842403, 0.01767444610595703, -0.018312955275177956, -0.00350839807651937, -0.009285537526011467, 0.004554464481770992, 0.001738066552206874, -0.005862047430127859, 0.008287020027637482, -0.01104483101516962, 0.012491662986576557, 0.03570210933685303, 0.017973322421312332, -0.03562059998512268, -0.016411015763878822, -0.005875632632523775, -0.00021290677250362933, 0.017307644709944725, -0.021043594926595688, 0.022714585065841675, 0.003861615201458335, -0.012097690254449844, -0.024548597633838654, 0.015555143356323242, 0.02589353919029236, -0.026572803035378456, -0.010148203000426292, 0.0026779978070408106, 0.008008521050214767, 0.016845744103193283, -0.017552178353071213, 0.004941645078361034, -0.0019359021680429578, -0.004445782396942377, -0.00772323040291667, -0.01836729608476162, 0.031218968331813812, -0.0020089230965822935, -0.012267505750060081, 0.045809555798769, -0.048064712435007095, 0.010277262888848782, 0.0006469988729804754, -0.029670247808098793, 0.011669754050672054, -0.003044800367206335, -0.026246756315231323, 0.00867419969290495, -0.0063307397067546844, -0.006897924933582544, 0.0036102875601500273, -0.001333055435679853, 0.006938680540770292, -0.00017395523900631815, -0.021858712658286095, 0.01375509425997734, -0.020989254117012024, -0.008388909511268139, -0.014604173600673676, -0.028284547850489616, -0.0037699146196246147, 0.010182165540754795, -0.0037597257178276777, 0.00955045036971569, -0.005396751686930656, -0.013639618642628193, -0.019263925030827522, 0.008816845715045929, 0.02649129182100296, -0.01779671385884285, 0.013442632742226124, 0.03575645014643669, -0.0007442185305990279, -0.012939977459609509, 0.0017728788079693913, -0.17237000167369843, 0.028529083356261253, 0.028882300481200218, -0.0027866801247000694, 0.0065718782134354115, 0.020418671891093254, 0.03246881440281868, -0.001817030948586762, 0.006768864579498768, -0.018611831590533257, 0.02420896477997303, 0.019888846203684807, -0.03931579366326332, -0.029996294528245926, -0.02378782257437706, -0.001484191627241671, -0.01375509425997734, 0.029425712302327156, 0.03912559896707535, 0.002533654449507594, 0.011038037948310375, -0.011778435669839382, 0.006137149408459663, -0.007641718722879887, 0.013340743258595467, 0.009536865167319775, 0.013680375181138515, 0.03390885517001152, 0.015555143356323242, -0.007560207042843103, -0.01910090073943138, -0.0038887858390808105, 0.000997668830677867, -0.012647894211113453, 0.026885265484452248, 0.012362603098154068, -0.012063726782798767, -0.006843583658337593, -0.015215511433780193, 0.01653328351676464, -0.00026576200616545975, 0.005946955643594265, 0.021573420614004135, -0.00229761004447937, 0.010915771126747131, 0.024385573342442513, 0.0010723879095166922, -0.010881807655096054, 0.009204025380313396, -0.015133999288082123, 0.016750648617744446, 0.003729158779606223, 0.007770779076963663, -0.0009034209651872516, 0.031218968331813812, 0.01935902051627636, 0.007342842873185873, 0.01836729608476162, 0.0055903419852256775, -0.028664937242865562, -0.007600963115692139, -0.013877361081540585, 0.01681857369840145, -0.015011732466518879, 0.0027000741101801395, -0.00011536872625583783, -0.010915771126747131, 0.012165616266429424, -0.027129800990223885, 0.0005803460953757167, 0.0038785969372838736, 0.007288501597940922, 0.038690872490406036, -0.01566382497549057, -0.013897739350795746, 0.002419877564534545, -0.019195998087525368, 0.022035321220755577, 0.009509694762527943, -0.002241570968180895, -0.031816720962524414, 0.032088425010442734, -0.02135605737566948, -0.015269852243363857, 0.0068062241189181805, 0.004286155104637146, -0.011493145488202572, -0.030566874891519547, -0.015256267040967941, 0.0018781647086143494, 0.011146720498800278, -0.009856118820607662, 0.005206557922065258, 0.007933801971375942, 0.02208966203033924, 0.007566999644041061, 0.0008889866294339299, -0.02833889052271843, 0.007030381355434656, -0.018312955275177956, -0.0021142088808119297, -0.005080894101411104, 0.0016973107121884823, 0.03926145285367966, 0.02533654309809208, 0.010372359305620193, 0.009407805278897285, 0.030376682057976723, 0.04034827649593353, 0.02067679353058338, -0.0179461520165205, 0.0010970111470669508, 0.010542175732553005, -0.004564653616398573, -0.0005875632632523775, 0.02760528400540352, -0.03092009201645851, -0.00860627368092537, 0.006656786426901817, -0.019549215212464333, 0.07721871882677078, -0.01132332906126976, 0.02037791721522808, 0.006395269650965929, -0.010902185924351215, -0.0352945514023304, -0.10487834364175797, -0.006748486775904894, 0.02790416032075882, 0.018448807299137115, -0.0005468074232339859, 0.024100283160805702, -0.007777571678161621, 0.0035729280207306147, 0.0005319485208019614, 0.011628997512161732, -0.01994318887591362, -0.035539086908102036, -0.009367048740386963, 0.0036102875601500273, -0.007193404715508223, -0.013795849867165089, -0.004992589820176363, -0.012104482389986515, 0.001606459147296846, 0.02961590513586998, 0.005665061064064503, -0.024874644353985786, 0.003623872995376587, -0.00768926739692688, 0.021410398185253143, 0.0058111026883125305, -0.03771273046731949, -0.0060454485937952995, 0.03227861970663071, -0.003238390665501356, -0.03130048140883446, -0.013225268572568893, 0.014509077183902264, -0.0029276274144649506, -0.010637273080646992, -0.013469803147017956, -0.04056563973426819, -0.0217772014439106, 0.015324193984270096, -0.015704581514000893, 0.01217240933328867, -0.009706680662930012, 0.03860935941338539, -0.01737556979060173, -0.0036646288353949785, -0.008429665118455887, -0.01923675276339054, 0.007370013277977705, -0.0001488012494519353, -0.03790292516350746, -0.012675064615905285, 0.0009237988851964474, -0.040212422609329224, -0.014848709106445312, 0.012063726782798767, -0.008932320401072502, 0.03317524865269661, 0.0029904593247920275, -0.015337779186666012, -0.019141657277941704, -0.02520069107413292, -0.0004166859434917569, -0.015514387749135494, 0.033419784158468246, 0.005162405781447887, -0.0018968444783240557, -0.01823144219815731, -0.039397306740283966, 0.032088425010442734, -0.017321228981018066, -0.012613930739462376, 0.023597627878189087, -0.0229047778993845, -0.003735951380804181, -0.017198961228132248, 0.02920834720134735, -0.014074347913265228, 0.00768926739692688, 0.007580585312098265, -0.021994564682245255, 0.000219699417357333, -0.01866617240011692, 0.021274546161293983, 0.011948252096772194, 0.02067679353058338, 0.0015665523242205381, 0.017688032239675522, -0.012416943907737732, 0.006853772792965174, -0.03178954869508743, 0.021858712658286095, 0.012844880111515522, -0.012084105052053928, -0.03187106177210808, 0.01752500794827938, 0.0260565634816885, 0.022415708750486374, -0.007886254228651524, -0.006364702712744474, -0.007831912487745285, -0.006137149408459663, -0.007872669026255608, -0.07531677931547165, 0.023719895631074905, 0.0007858234457671642, 0.019576385617256165, 0.012593552470207214, -0.02305421605706215, 0.012355810031294823, -0.023896504193544388, -0.01978016458451748, 0.014155860058963299, -0.01925033889710903, 0.023325921967625618, -0.014115103520452976, -0.012695441953837872, -0.015405705198645592, 0.0016582530224695802, 0.027523772791028023, -0.017565764486789703, 0.010127824731171131, -0.00648357393220067, 0.006690749432891607, 0.0006283191032707691, 0.031110286712646484, 0.012804124504327774, -0.01778312958776951, 0.003854822600260377, 0.016927257180213928, -0.0008384663960896432, -0.013992836698889732, -0.027428675442934036, 0.0032825428061187267, -0.02251080609858036, -0.0014595682732760906, 0.007349635474383831, 0.013021488673985004, 0.007145856041461229, -0.02092132717370987, -0.022293440997600555, 0.019413361325860023, 0.04018525406718254, 0.005960540845990181, -0.017158206552267075, 0.0034676422365009785, -0.025581078603863716, 0.0022432690020650625, 0.01578609272837639, -0.01738915592432022, -0.0014527756720781326, 0.018272198736667633, -0.02877361886203289, 0.027279237285256386, 0.01516117062419653, 0.00860627368092537, -0.02707545831799507, 0.020473014563322067, -0.015758922323584557, 0.010392737574875355, -0.0023485550191253424, 0.0021515684202313423, -0.02420896477997303, 0.016628380864858627, 0.0011581449070945382, 0.001250694622285664, -0.009020624682307243, 0.022388538345694542, -0.01707669533789158, -0.0074990736320614815, -0.0026015806943178177, -0.025418054312467575, -0.030947262421250343, 0.002290817443281412, -0.00325876846909523, 0.02092132717370987, 0.020717548206448555, 0.02363838441669941, 0.012512041255831718, 0.016207236796617508, -0.01679140329360962, -0.02351611666381359, 0.012804124504327774, 0.006154131144285202, -0.000773511768784374, -0.03920711204409599, 0.024711620062589645, 0.02219834364950657, -0.012349017895758152, -0.008090033195912838, -0.004438989795744419, 0.008871186524629593, 0.007668889593333006, 0.025404470041394234, 0.00015145461657084525, 0.015079658478498459, -0.0034031120594590902, 0.006711127236485481, 0.013911324553191662, -0.00526769133284688, -0.009591205976903439, 0.018272198736667633, 0.03556625917553902, -0.021260960027575493, 0.023461775854229927, 0.018122760578989983, -0.01582684926688671, -0.009142892435193062, -0.0013084320817142725, -0.023543287068605423, -0.01567741110920906, -0.0031212177127599716, 0.015460046008229256, 0.00608960073441267, 0.010521797463297844, 0.009367048740386963, 0.025744101032614708, -0.02437198907136917, -0.009557243436574936, -0.00370538467541337, -0.011561071500182152, -0.006969247478991747, 0.04135358706116676, -0.0025812028907239437, 0.024439914152026176, 0.026396194472908974, 0.00608960073441267, 0.033120907843112946, 0.02348894625902176, 0.019983943551778793, 0.0065854634158313274, 0.0004071338044013828, 0.01579967886209488, 0.003111028578132391, -0.005430714692920446, -0.056895144283771515, 0.01281770970672369, 0.0015784394927322865, -0.049205876886844635, 0.0015954211121425033, 0.017131036147475243, -0.033256761729717255, 0.05852537602186203, 0.014386809431016445, -0.0025693157222121954, -0.002735735382884741, 0.008164752274751663, 0.0381474606692791, 0.018421636894345284, 0.01622082106769085, -0.0023128935135900974, 0.0030634801369160414, 0.011771643534302711, -0.018054833635687828, 0.015256267040967941, -0.005919784773141146, 0.003841237397864461, 0.012804124504327774, -0.01850314810872078, 0.04203284904360771, -0.02847474254667759, -0.014427565038204193, 0.015215511433780193, -0.010168580338358879, 0.041924167424440384, -0.009027416817843914, -0.006133752875030041, 0.014495491981506348, -0.003939730580896139, 0.005994503851979971, -0.0013381498865783215, -0.02207607589662075, 0.015555143356323242, 0.01395208016037941, -0.01639742963016033, 0.00011653621186269447, 0.02251080609858036, -0.005206557922065258, 0.00016185584536287934, -0.021111521869897842, 0.015147584490478039, 0.008531554602086544, -0.0007756344857625663, 0.001589477527886629, -0.01920958235859871, -0.01565024070441723, 0.03570210933685303, -0.013870568946003914, -0.019440533593297005, -0.006605841219425201, -0.033854514360427856], "4a08a25c-d4af-497c-a9c9-1242f8a70288": [-0.005218746140599251, -0.002950994996353984, -0.015889709815382957, -0.0013381621101871133, -0.017070794478058815, 0.031202610582113266, 0.001699525979347527, -0.0005720878834836185, -0.004188730847090483, -0.03304290398955345, 0.010952500626444817, 0.015615038573741913, 0.0019450130639597774, 0.02108098939061165, -0.011646044440567493, 0.0026969246100634336, 0.04413960874080658, -0.016109446063637733, 0.03746510669589043, -0.026945210993289948, -0.009812616743147373, -0.008130257949233055, -0.01207865122705698, 0.022962484508752823, -0.010066687129437923, 0.027714289724826813, 0.027618154883384705, -0.009531078860163689, -0.003684022929519415, -0.006550900172442198, -0.009270141832530499, 0.008095923811197281, 0.011680378578603268, 0.0020771983545273542, 0.0020754816941916943, -0.0007334570400416851, 0.004453101195394993, -0.016040777787566185, 0.006842738017439842, 0.0027020745910704136, 0.005417882930487394, -0.0029887622222304344, -0.005304581020027399, 0.009290741756558418, -0.01635665073990822, 0.02476157806813717, 0.004494301974773407, -0.024995047599077225, -0.01889735460281372, 0.019556565210223198, 0.0231822207570076, 0.028648171573877335, -0.04243664816021919, -0.01547770295292139, -0.012415123172104359, 0.007670183666050434, 0.013197935186326504, 0.019254427403211594, -0.004442801233381033, 0.02886790782213211, 0.0010634912177920341, -0.00083688780432567, -0.001829994609579444, 0.006063359323889017, -0.028812972828745842, -0.01073963101953268, -0.029774321243166924, 0.0041475300677120686, -0.0019209793535992503, -0.002487488090991974, 0.028538303449749947, 0.01885615475475788, 0.002732975175604224, 0.011343906633555889, 0.01727679744362831, -0.026505738496780396, -0.026492005214095116, -0.017633870244026184, -0.013101800344884396, 0.011391974054276943, -0.0035878880880773067, -0.00893366988748312, 0.00868646614253521, -0.00603589229285717, 0.03095540590584278, -0.009640946984291077, 0.0009433227241970599, 0.02673920802772045, -0.02256421186029911, -0.03609175235033035, -0.005891690030694008, 0.01185204740613699, 0.004521769005805254, 0.006317429710179567, -0.005692553706467152, 0.015601305291056633, -0.015889709815382957, 0.02620360068976879, 0.0078006526455283165, -0.03054339997470379, -0.02147926203906536, 0.005417882930487394, -0.023731563240289688, -0.010382558219134808, -0.014104348607361317, 0.008720800280570984, -0.0038728590589016676, -0.010787698440253735, 0.003050563158467412, -0.02742588520050049, -0.022165939211845398, 0.005095144268125296, -0.0015089730732142925, -0.05155571922659874, -0.009984285570681095, -0.0010377408470958471, 0.033866915851831436, -0.0168785247951746, -0.006544033065438271, -0.01735919900238514, -0.0041818637400865555, 0.015161831863224506, -0.001498672878369689, -0.01943296380341053, 0.01133017335087061, 0.004192164167761803, 0.009386876598000526, -0.03147727996110916, 0.003495186800137162, -0.004240231588482857, 0.03414158895611763, -0.004590436816215515, 0.011755912564694881, 0.0031878987792879343, -0.010300157591700554, 0.010300157591700554, -0.03427892178297043, 0.012772195041179657, -0.01951536536216736, -0.029170045629143715, 0.025393320247530937, 0.017524000257253647, 0.003021379467099905, -0.033372510224580765, -0.006578367203474045, 0.01940549723803997, 0.013774743303656578, 0.021273259073495865, -0.009675281122326851, 0.00969588104635477, 0.02522851899266243, -0.0020411477889865637, 0.011158503592014313, -0.0007789494120515883, 0.007381779607385397, -0.0008969720220193267, 0.020627781748771667, -0.007265044376254082, 0.013307803310453892, 0.019721368327736855, 0.00736804585903883, 0.001953596482053399, 0.01076709758490324, 0.003752690739929676, 0.015326634049415588, 0.03169701620936394, -0.009476144798099995, -0.0037664242554455996, -0.02687654457986355, -0.013850278221070766, -0.0026076564099639654, 0.03092793934047222, -0.023965032771229744, 0.0032926169224083424, -0.0022523009683936834, 0.018169477581977844, 0.040266748517751694, 0.018293078988790512, -0.027673089876770973, 0.01686479151248932, -0.03133994713425636, -0.021918734535574913, 0.026176132261753082, 0.011185971088707447, -0.0199960395693779, -0.015573837794363499, -0.003275450086221099, 0.0063826641999185085, -0.0035741545725613832, 0.012147318571805954, 0.005761221516877413, 0.022838881239295006, -0.007278777658939362, -0.004635070916265249, -0.6280074715614319, -0.011481242254376411, -0.01448888797312975, -0.02778295800089836, -0.014214216731488705, 0.0019604633562266827, 0.018183210864663124, 0.006674502044916153, -0.01160484366118908, 0.0034162187948822975, -0.03326264023780823, 0.01845788210630417, -0.01678238995373249, -0.024596774950623512, -0.020270708948373795, -0.008507929742336273, 0.013259735889732838, -0.023292088881134987, 0.0005188704235479236, -0.020929919555783272, -0.013197935186326504, 0.00711397547274828, -0.021396860480308533, 0.002331268973648548, -0.006980073172599077, -0.005218746140599251, 0.021383127197623253, 0.011254638433456421, 0.008803200908005238, 0.027975227683782578, -0.030268728733062744, 0.026656806468963623, 0.030076459050178528, 0.021190857514739037, 0.036036815494298935, -0.0008351710857823491, -0.03686083108186722, 0.027714289724826813, 0.0012008267221972346, 0.011900114826858044, -0.039744872599840164, -0.013218535110354424, 0.017455333843827248, 0.008624665439128876, 0.009483011439442635, 0.017221862450242043, 0.02884044125676155, -0.010451226495206356, 0.013458872213959694, 0.015958376228809357, -0.00021286991250235587, -0.017771204933524132, -0.008363727480173111, -0.010300157591700554, -0.001805960899218917, -0.007251310627907515, 0.026958944275975227, -0.018663885071873665, 0.019707635045051575, 0.012792794965207577, 0.01447515469044447, 0.019611500203609467, -0.006986939813941717, 0.0007038440671749413, -0.021891267970204353, 0.005452216602861881, -0.019117092713713646, 0.005555218085646629, 0.023470625281333923, -0.023978766053915024, -0.0013364454498514533, 0.01690599136054516, 0.011185971088707447, -0.02322342060506344, 0.011508708819746971, -0.006897672079503536, 0.04716098681092262, -0.030680734664201736, 0.00018797787197399884, 0.025365853682160378, 0.017688803374767303, -0.013452005572617054, -0.006104560103267431, -0.028538303449749947, 0.053313612937927246, -0.03169701620936394, -0.0019673299975693226, 0.027206148952245712, -0.0005510584451258183, 0.0004922616644762456, 0.01001861970871687, 0.008281326852738857, 0.008171457797288895, -0.009064138866961002, 0.018622685223817825, 0.0041578300297260284, -0.02266034670174122, -0.011433174833655357, 0.003752690739929676, 0.0019638966768980026, -0.007477913983166218, -0.013232268393039703, 0.003284033387899399, 0.0011613427195698023, -0.007546581793576479, 0.004394733812659979, -0.045018553733825684, -0.005332048051059246, 0.021795133128762245, -0.022948751226067543, 0.006540599744766951, -0.02103978767991066, -0.02941724844276905, 0.015299166552722454, 0.0081165237352252, -0.016384117305278778, 0.021369393914937973, -0.005520884413272142, 0.029554584994912148, 6.6790082200896e-05, 0.012682926841080189, -0.00895426981151104, 0.003982727415859699, -0.012016850523650646, 0.022797681391239166, 0.03147727996110916, 0.006176661234349012, -0.0025235386565327644, -0.00919460691511631, -0.006969773210585117, 0.01315673440694809, -0.004549236036837101, 0.0015312900068238378, -0.005222179926931858, 0.023388223722577095, -0.011872648261487484, 0.011234038509428501, -0.0035672879312187433, 0.027522020041942596, -0.02936231531202793, -0.016686255112290382, -0.0071483091451227665, 0.019350562244653702, -0.002465171040967107, -0.027686823159456253, -0.02728855051100254, -0.013321536593139172, 9.951453830581158e-05, -0.03677842766046524, -0.013836544938385487, -0.009716481901705265, -0.014392753131687641, 0.002492638071998954, 0.038591254502534866, 0.005246213637292385, -0.021135922521352768, -0.022756481543183327, 0.025915196165442467, 0.01793600805103779, -0.008521663025021553, 0.007745718117803335, 0.01317733433097601, -0.030186327174305916, 0.011254638433456421, 0.01000488642603159, -0.022866349667310715, -0.022495543584227562, 0.014626223593950272, 0.005174112506210804, -0.034910667687654495, -0.0038453920278698206, -0.0004006332019343972, -0.008617797866463661, 0.051308516412973404, 0.002763875527307391, 0.010183421894907951, 0.006544033065438271, -0.022852616384625435, -0.007594649214297533, 0.005283980630338192, -0.00968901440501213, 0.012779061682522297, -0.010911299847066402, -0.009915618225932121, 0.04142036661505699, -0.0071757761761546135, -0.004559536464512348, -0.0002686624357011169, 0.026011331006884575, 0.03886592760682106, -0.02834603376686573, 0.007731984835118055, -0.007086508441716433, -0.003275450086221099, -0.003093480598181486, -0.013232268393039703, 0.02895030938088894, 0.019213227555155754, -0.004514902364462614, 0.009908751584589481, 0.029527118429541588, -0.016123179346323013, 0.030708203092217445, 0.0020480146631598473, 0.003635955508798361, -0.03930540010333061, 0.0037492571864277124, -0.006083959713578224, 0.012284654192626476, -0.013362737372517586, -0.011735312640666962, -0.030378596857190132, -0.014543822035193443, -0.015024496242403984, 0.008521663025021553, 0.010856365785002708, 0.00817832536995411, 0.022948751226067543, -0.02410236746072769, 0.009132806211709976, 0.02469290979206562, 0.009098472073674202, 0.004343233071267605, 0.004974976181983948, -0.019790034741163254, -0.0028016427531838417, -0.015422768890857697, 0.014530088752508163, 0.0018248445121571422, -0.018306812271475792, 0.02793402597308159, -0.0030591466929763556, -0.026176132261753082, -0.003428235650062561, -0.003581021446734667, -0.0036943231243640184, 0.012373922392725945, -0.013864011503756046, 0.03529520705342293, -0.03535014018416405, 0.014063147827982903, 0.019886169582605362, 0.015958376228809357, -0.010224622674286366, -0.02260541170835495, -0.0037217901553958654, 0.007924254052340984, 0.009963685646653175, 0.005102011375129223, 0.023745296522974968, -0.015299166552722454, -0.003859125543385744, -0.002001663902774453, -0.022921282798051834, 0.025640524923801422, -0.030103925615549088, -0.00024977882276289165, 0.023745296522974968, 0.007663317024707794, 0.019295627251267433, -0.007265044376254082, 0.031889285892248154, 0.011199704371392727, 0.005895123351365328, 0.057625945657491684, 0.010938767343759537, 0.016521451994776726, 0.018293078988790512, -0.04249158129096031, -0.026121199131011963, -0.013870878145098686, -0.0094212107360363, 0.00020771984418388456, -0.0031020641326904297, 0.004267698619514704, 0.006513132713735104, -0.001828277949243784, -0.00539041543379426, 0.017125727608799934, 0.009009203873574734, -0.040211815387010574, -0.028112562373280525, 0.03254849836230278, 0.0055655185133218765, -0.013383337296545506, 9.136695666711603e-07, -0.006544033065438271, 0.004923474974930286, -0.03106527402997017, 0.0534784160554409, -0.02051791362464428, 0.012758461758494377, 0.03713550046086311, -0.010396292433142662, 0.0002033208147622645, -0.0031312478240579367, 0.020380577072501183, 0.0033166506327688694, 0.026162398979067802, 0.011989383026957512, 0.007210110314190388, -0.0008785175741650164, -0.017565201967954636, 0.02109472267329693, 0.017757471650838852, -0.0026540071703493595, -0.022962484508752823, 0.007752585224807262, 0.030763136222958565, -0.01680985651910305, -0.003787024412304163, -0.0251461174339056, -0.008301926776766777, -0.007271911017596722, -0.007780052255839109, 0.008185192011296749, -0.019350562244653702, 0.023525558412075043, 0.025970129296183586, -0.01577984169125557, -0.005441916640847921, -0.007807519286870956, -0.0038385253865271807, -0.0006501974421553314, 0.07624863088130951, 0.01729053072631359, -0.021135922521352768, 0.003611921798437834, -0.02005097270011902, 0.012524991296231747, -0.012360189110040665, 0.0026986412703990936, 0.017743738368153572, 0.0006956898141652346, 0.019075891003012657, -0.021795133128762245, 0.01685105822980404, 0.006495966110378504, -0.00646163197234273, -0.014763559214770794, -0.017757471650838852, 0.008288193494081497, -0.0022265505976974964, -0.017166929319500923, 0.005483116954565048, -0.013767876662313938, 0.003093480598181486, -0.004353533033281565, -0.015944642946124077, -0.007402379531413317, 0.032795701175928116, -0.01731799729168415, 0.004562969785183668, -0.006485665682703257, -0.028675638139247894, 0.03455359488725662, 0.019886169582605362, 0.025613058358430862, -0.029719388112425804, -0.0001689869532128796, 0.00944867730140686, 0.01184518076479435, -0.005984391551464796, 0.0007338862051256001, 0.008837535046041012, 0.03224635869264603, 0.009558546356856823, -0.014433953911066055, 0.015656238421797752, -0.007484781090170145, -0.019185759127140045, 0.005476250313222408, -0.002815376268699765, -0.004868540912866592, 0.027247348800301552, 0.0029595785308629274, -0.012490657158195972, -0.01685105822980404, 0.027082547545433044, -0.01889735460281372, 0.03139488026499748, 0.0038247916381806135, -0.007992922328412533, -0.00869333278387785, -0.0009750815806910396, 0.0022746180184185505, 0.005345781799405813, -0.009915618225932121, -0.018210677430033684, -0.0063345967791974545, -0.020147107541561127, -0.01363740861415863, -0.003752690739929676, 0.02418476901948452, -0.021383127197623253, 0.0006004133610986173, -0.013994480483233929, 0.006883938331156969, -0.002595639554783702, -0.0028909107204526663, 0.01568370684981346, -0.014186750166118145, 0.018128277733922005, -0.002466887701302767, -0.017771204933524132, -0.026162398979067802, -0.0023226854391396046, -0.01363054197281599, -0.0005527751054614782, -0.007031573913991451, 0.003196482080966234, 0.022193405777215958, -0.027055079117417336, -0.003526087151840329, -0.00472433865070343, 3.183928856742568e-05, -0.00711397547274828, 0.003962127026170492, 0.002290068194270134, 0.013747276738286018, 0.0034402525052428246, -0.024885179474949837, -0.004247098229825497, -0.014708624221384525, 0.0008866718853823841, -0.04191477224230766, -0.011508708819746971, -0.009105338715016842, 0.027137480676174164, -0.008027255535125732, 0.02109472267329693, 0.01994110457599163, 0.005074544344097376, -0.01881495490670204, -0.0006716561038047075, -0.02099858783185482, -0.00048625326598994434, 0.006798103917390108, 0.01233272161334753, -0.004844507202506065, 0.017139460891485214, 0.004700304940342903, 0.00017681936151348054, -0.02095738612115383, -0.0032685832120478153, -0.03252103179693222, -0.0009965401841327548, 0.008638398721814156, -0.009235807694494724, -0.0040960293263196945, 0.009970552287995815, -0.013246002607047558, 0.01895228959619999, -0.0038453920278698206, 0.015930909663438797, 0.007896787486970425, 0.0004154396883677691, -0.014914628118276596, -0.032795701175928116, -0.002660874044522643, -0.020655248314142227, 0.006746603175997734, -0.022165939211845398, 0.007780052255839109, -0.005229046568274498, -0.005071110557764769, -0.007759451866149902, -0.026546938344836235, -0.010574827902019024, -0.03397678583860397, -0.008226391859352589, -0.005201579537242651, 0.00033132173120975494, 0.021946201100945473, 0.00023840572976041585, -0.023401957005262375, -0.02886790782213211, -0.00870706606656313, -0.01586224138736725, -0.02147926203906536, -0.006176661234349012, -0.01233272161334753, 0.007196376565843821, 0.005301147699356079, 0.019048424437642097, -0.02157539688050747, 0.021396860480308533, 0.017208129167556763, 0.016178114339709282, 0.01102116797119379, -0.007381779607385397, -0.03925046697258949, -0.03455359488725662, -0.011900114826858044, 0.019103357568383217, 0.006650468334555626, 0.01899348944425583, -0.008130257949233055, -0.003019662806764245, 0.029636986553668976, 0.005445349961519241, -0.007182642817497253, -0.011996249668300152, -0.04614470526576042, -0.03721790015697479, 0.0010222906712442636, -0.0024136702995747328, 0.007944854907691479, -0.017578935250639915, 0.0031638650689274073, 0.05342348292469978, -0.009290741756558418, -0.0024806212168186903, -0.025324653834104538, 0.034361325204372406, -0.03845392167568207, 0.01342453807592392, 0.00538354879245162, 0.033399976789951324, -0.031092742457985878, 0.007292511407285929, -0.0027861925773322582, -0.00514321168884635, -0.0002611519012134522, -0.008240126073360443, 0.015436502173542976, -0.009249540977180004, -0.01575237326323986, -0.014955827966332436, -0.006104560103267431, -0.00024656002642586827, -0.02311355248093605, 0.020614048466086388, -0.03458106145262718, -0.020284442231059074, -0.0023656028788536787, -0.023374490439891815, -0.033454909920692444, -0.004528635647147894, 0.01161171030253172, -0.005926023703068495, 0.03892086073756218, -0.009956819005310535, 0.0010634912177920341, -0.013136133551597595, -0.020902452990412712, 0.04784766584634781, 0.0035672879312187433, 0.03719043359160423, 0.020682716742157936, -0.03249356150627136, -0.013767876662313938, -0.001191384857520461, -0.012772195041179657, -0.026038797572255135, 0.02461051009595394, 0.0020291309338063, -0.014763559214770794, -0.0007416113512590528, 0.0008188625215552747, -0.00471060536801815, -0.025942662730813026, -0.013287203386425972, 0.021946201100945473, 0.019597765058279037, -0.007381779607385397, 0.0005986966425552964, 0.015958376228809357, -0.040733687579631805, -0.0018986623035743833, 0.02205607108771801, 0.026986412703990936, -0.0019484463846310973, -0.019020957872271538, -0.012421989813446999, 0.008384328335523605, -0.0005798130296170712, 0.022852616384625435, 0.01900722272694111, -0.006554333493113518, -0.0389757938683033, -0.01207865122705698, -0.027467086911201477, -0.01316360104829073, -0.005263380240648985, 0.03002152591943741, -0.0120992511510849, -0.013294070027768612, 0.016054511070251465, 0.000736032088752836, -0.020792584866285324, 0.006722569465637207, -0.011687245219945908, 0.03002152591943741, -0.009524212218821049, -0.0011501841945573688, 0.008803200908005238, 0.014928361400961876, 0.021767666563391685, 0.019130825996398926, 0.00018776328943204135, -0.0009004054008983076, -0.048561807721853256, -0.012126718647778034, -0.0012918113498017192, -0.0042333644814789295, -0.006870205048471689, -0.008878735825419426, -0.01635665073990822, -0.0138777457177639, 0.005328614730387926, -0.011309572495520115, 0.032768234610557556, -0.029307380318641663, -0.03241116181015968, 0.0012514691334217787, -0.026066264137625694, 0.006255629006773233, -0.017111994326114655, 0.012676060199737549, 0.0019879303872585297, 0.026464536786079407, -0.01778493821620941, 0.0421619787812233, -0.03562480956315994, 0.009558546356856823, -0.04205210879445076, 0.007560315541923046, 0.009544812142848969, -0.032768234610557556, 0.01001861970871687, -0.019556565210223198, -0.024500640109181404, -0.0022660347167402506, 0.013046866282820702, 0.018554016947746277, 0.006513132713735104, 0.007168909534811974, 0.0013621958205476403, -0.008823801763355732, 0.01450262125581503, -0.007731984835118055, -0.04482628405094147, 0.031806886196136475, 0.01365800853818655, 0.0027964927721768618, -0.0028411266393959522, -0.020188309252262115, 0.021836332976818085, 0.015010762959718704, -0.008576598018407822, -0.01547770295292139, -0.05034716799855232, 0.008047856390476227, -0.0002373327879467979, 0.04422200843691826, 0.005534617695957422, 0.017469067126512527, -0.01582104153931141, -0.028730571269989014, -0.017015859484672546, 0.028263632208108902, -0.0035604210570454597, -0.011975649744272232, 0.014420220628380775, 0.01341080479323864, -0.004030794836580753, 0.009867550805211067, -0.010382558219134808, -0.0220286026597023, -0.001752743381075561, -0.0031569981947541237, -0.04614470526576042, 0.002714091446250677, -0.00760151632130146, 0.039195530116558075, 0.0037492571864277124, -0.028785506263375282, 0.0024205369409173727, -0.013479472137987614, -0.016521451994776726, -0.03252103179693222, 0.005774954799562693, 0.023429425433278084, 0.041310496628284454, 0.01946043036878109, -0.0033406843431293964, 0.00784872006624937, -0.0226740799844265, 0.012806529179215431, -0.004439367912709713, 0.012174786068499088, -0.008803200908005238, 0.006392964161932468, -0.003581021446734667, 0.00472090533003211, -0.022426875308156013, 0.0035741545725613832, 0.02264661341905594, -0.009077872149646282, 0.008466728962957859, 0.012936997227370739, -0.005328614730387926, 0.013960146345198154, -0.0251461174339056, 0.018636418506503105, 0.014282885007560253, 0.0019879303872585297, 0.0006802395801059902, -0.01363740861415863, -0.011700978502631187, 0.00023497233632951975, -0.0024205369409173727, -0.030625801533460617, -0.022495543584227562, 0.005211879499256611, -0.010320757515728474, 0.02197366952896118, -0.015120631083846092, -0.003381884889677167, -0.013534407131373882, -0.021328192204236984, 0.03002152591943741, -0.006722569465637207, -0.006317429710179567, 0.022426875308156013, 0.011419440619647503, -0.02513238415122032, 0.005338914692401886, 0.0028033594135195017, 0.016562653705477715, -0.029746854677796364, 0.013726675882935524, -0.026931477710604668, 0.008061589673161507, -0.011309572495520115, 0.018595216795802116, -0.019666433334350586, 0.022715279832482338, -0.028648171573877335, 0.0009304475388489664, -0.027522020041942596, 0.02580532804131508, 0.014639956876635551, -0.029527118429541588, -0.013369604013860226, -0.0033149339724332094, 0.005960357841104269, 0.01210611779242754, -0.018183210864663124, -0.014516355469822884, 0.0037938912864774466, 0.01233958825469017, -0.0071757761761546135, -7.510531577281654e-05, -0.018293078988790512, -0.01547770295292139, 0.019268160685896873, -0.04460654780268669, 0.009112206287682056, 0.1744709312915802, -0.008329394273459911, 0.019831236451864243, 0.022399408742785454, -0.010444359853863716, 0.011089836247265339, 0.03573467954993248, -0.005448783282190561, 0.001999947242438793, 0.0007261611171998084, -0.012470057234168053, 0.020339377224445343, -0.0037732908967882395, 0.015051962807774544, -0.008658998645842075, -0.008171457797288895, -0.049056217074394226, 0.007422979921102524, -0.01472235843539238, -0.051720522344112396, -0.00043346494203433394, -0.012243453413248062, -0.01422795094549656, -0.017070794478058815, 0.02095738612115383, 0.004003327805548906, -0.002358736004680395, -0.005871089641004801, 0.040156878530979156, -0.00015836491365917027, -0.033921852707862854, -0.012950731441378593, 0.014063147827982903, 0.004786139819771051, -0.010485559701919556, 0.004597303457558155, 0.002387919696047902, -0.00016619733651168644, 0.026134932413697243, -0.007402379531413317, -0.0006017008563503623, -0.005771521478891373, -0.020147107541561127, 0.0033887517638504505, -0.006962906569242477, 0.03458106145262718, -0.019226960837841034, -0.0226740799844265, -0.011460641399025917, 0.015875976532697678, -0.02628600224852562, 0.023882631212472916, 0.04482628405094147, 0.03315277397632599, -0.013953279703855515, -0.009915618225932121, -0.00646163197234273, 0.01730426400899887, -0.008549130521714687, 0.009153406135737896, -0.017661336809396744, 0.0289777759462595, -0.01049929391592741, 0.045348159968853, -0.009901884943246841, -0.0002686624357011169, -0.01781240478157997, -0.01843041554093361, 0.020366843789815903, -0.035432539880275726, 0.009826350025832653, -0.010135354474186897, -0.02467917650938034, 0.017496533691883087, 0.0020874985493719578, -0.002571605844423175, 0.031202610582113266, -0.015518903732299805, -0.004247098229825497, 0.010204022750258446, 0.010066687129437923, -0.022275807335972786, 0.001648883568122983, -0.024061167612671852, 0.0006806687451899052, -0.022234605625271797, -0.0016334332758560777, -0.005050510633736849, -0.02160286344587803, 0.016631320118904114, -0.02363542839884758, -0.009071005508303642, 0.0024445706512778997, 0.006592100486159325, 0.003201632294803858, -0.005105444695800543, 0.015257966704666615, 0.010478693060576916, -0.009963685646653175, -0.0018952289829030633, -0.017990941181778908, 0.008480463176965714, 0.04672151431441307, 0.025613058358430862, -0.021355658769607544, 0.007052174303680658, -0.0009244391112588346, 0.002264317823573947, 0.006063359323889017, -0.016178114339709282, 0.018677618354558945, -0.008892469108104706, 0.0009167140233330429, -0.02462424337863922, 0.007072774693369865, 0.022893816232681274, -0.029060177505016327, -0.026986412703990936, -0.012009983882308006, 0.014626223593950272, -0.0023759028408676386, -0.015422768890857697, -0.007450446952134371, 0.0023965032305568457, -0.008748266845941544, -0.012360189110040665, -0.0344986617565155, 0.027576955035328865, 0.0016299998387694359, -0.027576955035328865, 0.039058197289705276, -0.04768286272883415, 0.0138777457177639, 0.005665086675435305, -0.00968901440501213, 0.017166929319500923, 0.0032325326465070248, -0.025352120399475098, -0.006925139110535383, 0.013465738855302334, -0.01233958825469017, 0.0056204525753855705, -0.0021235491149127483, 0.011652911081910133, -0.003476303070783615, -0.012181652709841728, 0.007162042893469334, -0.012284654192626476, -0.004518335685133934, -0.011632311157882214, -0.03353731334209442, -0.004315766040235758, 0.016040777787566185, -0.02213847078382969, 0.009846949949860573, -0.012270920909941196, -0.021795133128762245, -0.010382558219134808, 0.014269151724874973, 0.038206715136766434, -0.02988418936729431, 0.014420220628380775, 0.028703104704618454, -0.001341595547273755, 0.00023411399160977453, -0.003114080987870693, -0.1753498762845993, 0.02520105242729187, 0.014118081890046597, 0.004847940523177385, 0.015642505139112473, 0.029115110635757446, 0.02936231531202793, 0.012277787551283836, 0.013060599565505981, -0.008631532080471516, 0.038179248571395874, 0.0173866655677557, -0.04111822694540024, -0.015958376228809357, -0.017139460891485214, 0.008171457797288895, -0.020119640976190567, 0.030048992484807968, 0.03191675245761871, 0.0057062869891524315, 0.012545591220259666, -0.011639177799224854, 0.01132330670952797, 0.005864222999662161, -0.008061589673161507, 0.013349004089832306, 0.012264054268598557, 0.031257543712854385, 0.007663317024707794, -0.008219525218009949, -0.017098261043429375, 0.0055140177719295025, 0.03048846498131752, 0.0027982094325125217, 0.01847161538898945, 0.008720800280570984, -0.01415928266942501, -0.009888150729238987, -0.016095712780952454, 0.008583464659750462, -0.001878062030300498, -0.0032891836017370224, 0.025352120399475098, -0.006815270986407995, 0.0021458661649376154, 0.02581906132400036, -0.008192058652639389, -0.01678238995373249, -0.001499531208537519, -0.02528345212340355, 0.027027612552046776, 0.0036153551191091537, -0.0021046653855592012, -0.006423864979296923, 0.03257596492767334, 0.01473609171807766, 0.00447026826441288, 0.008219525218009949, -0.003023096127435565, -0.03513040393590927, -0.008027255535125732, -0.009606613777577877, 0.009510478936135769, -0.014200483448803425, 0.012023717164993286, -0.009846949949860573, -0.026492005214095116, 0.0029132277704775333, -0.026560671627521515, 0.007107108365744352, 0.0017106845043599606, -0.005984391551464796, 0.02837350033223629, -0.02043551206588745, -0.010183421894907951, -0.002053164644166827, -0.037108033895492554, 0.020737649872899055, -0.01159797701984644, -0.009002337232232094, -0.029582051560282707, 0.026395870372653008, -0.021355658769607544, -0.014653690159320831, 0.02320968732237816, 0.007889920845627785, -0.0128957973793149, -0.019844969734549522, -0.011137903667986393, -0.0035947549622505903, 0.02411610074341297, -0.010162821970880032, 0.0024308371357619762, 0.0010806581703945994, 0.013472605496644974, 0.006231595296412706, 0.004985276143997908, -0.013747276738286018, -0.00043818584526889026, -0.02900524251163006, -0.0016162663232535124, 0.001927846111357212, -0.013520672917366028, 0.025104917585849762, 0.03738270327448845, 0.02884044125676155, -0.0010531911393627524, 0.016960926353931427, 0.03930540010333061, 0.020696450024843216, -0.020284442231059074, 0.01678238995373249, 0.02996659092605114, -0.0032393995206803083, 0.01683732308447361, 0.020778851583600044, -0.0178948063403368, -0.01790853962302208, 0.004549236036837101, -0.015312900766730309, 0.056527264416217804, -0.022371942177414894, 0.022907549515366554, 0.0055414848029613495, -0.012353322468698025, -0.0450734868645668, -0.10948380827903748, -0.0006519141024909914, 0.0326034314930439, 0.005459083244204521, -0.01841668039560318, 0.01682358980178833, -0.014667424373328686, -0.004308898933231831, 0.003629088867455721, 0.004566403105854988, -0.023772763088345528, -0.02675294131040573, -0.016054511070251465, -0.009991152212023735, 0.010609162040054798, -0.015985844656825066, -0.004851374309509993, -0.019309362396597862, -0.00223170081153512, 0.03101034089922905, 0.01207178458571434, -0.02204233594238758, 0.009840083308517933, -0.011975649744272232, 0.013575606979429722, 0.0021939335856586695, -0.04512842372059822, 0.00019226961012464017, 0.03210902214050293, 0.0032359662000089884, -0.030845537781715393, -0.018155744299292564, 0.01947416365146637, -0.0019192626932635903, -0.007086508441716433, -0.01290266402065754, -0.02043551206588745, -0.023374490439891815, 0.029801787808537483, -0.01579357497394085, -0.0009613480069674551, -0.0018883622251451015, 0.04150276631116867, 0.00870019942522049, 0.002592206234112382, 0.004793006461113691, -0.013520672917366028, 0.01546396967023611, 0.009503611363470554, -0.02522851899266243, -0.020586581900715828, -0.001067782985046506, -0.033482376486063004, -0.018636418506503105, 0.00628996267914772, -0.016109446063637733, 0.029609518125653267, -0.004679705016314983, -0.008356860838830471, -0.01621931418776512, -0.02480277791619301, 0.014296618290245533, -0.004587003495544195, 0.03801444545388222, 0.015889709815382957, -0.011865781620144844, -0.021218324080109596, -0.041228096932172775, 0.02521478570997715, 0.004868540912866592, -0.019158292561769485, 0.022797681391239166, -0.019831236451864243, -0.005187845788896084, -0.022989951074123383, 0.02730228379368782, -0.027151213958859444, 0.011357639916241169, 0.023415690287947655, -0.014804759062826633, -0.0056170192547142506, -0.01779867149889469, 0.020737649872899055, -0.00604619225487113, 0.026533205062150955, 0.009139672853052616, 0.015573837794363499, -0.015587571077048779, 0.014571289531886578, -0.023388223722577095, -0.0020462980028241873, 0.012662326917052269, -0.0011304422514513135, -0.02097111940383911, 0.020696450024843216, 0.03609175235033035, 0.034471191465854645, 0.0006506266072392464, -0.004930342081934214, -0.006221294868737459, -0.007450446952134371, -0.008487329818308353, -0.07179896533489227, 0.025873994454741478, 0.0008673591073602438, 0.020655248314142227, 0.011893248185515404, -0.023415690287947655, 0.011048635467886925, -0.0013484623050317168, -0.010588562116026878, 0.01724933087825775, -0.02584652788937092, 0.018059609457850456, -0.02042177878320217, -0.01624678075313568, -0.032768234610557556, -0.01937802881002426, 0.02635466866195202, -0.014447687193751335, 0.02575039304792881, 0.007704517804086208, 0.02261914499104023, 0.004435934592038393, 0.02411610074341297, 0.01363740861415863, -0.04567776247859001, 0.007642716635018587, 0.012724127620458603, 0.009771415963768959, -0.004343233071267605, -0.02305861935019493, 0.00944867730140686, -0.02154792845249176, 0.009798882529139519, 0.01546396967023611, 0.013843411579728127, 0.021753931418061256, -0.013294070027768612, -0.011625444516539574, 0.02003723941743374, 0.06196574494242668, -0.003989594057202339, -0.01841668039560318, -0.0013295786920934916, -0.024322105571627617, 0.0040479619055986404, 0.02164406329393387, -0.031120209023356438, 0.0003446261107455939, 0.01447515469044447, -0.017565201967954636, 0.019638966768980026, 0.012545591220259666, -0.002132132649421692, -0.022687813267111778, 0.019130825996398926, -0.01690599136054516, 0.029170045629143715, -0.004422200843691826, 0.015340367332100868, -0.012964464724063873, 0.02215220406651497, 0.004381000064313412, 0.005424749571830034, -0.014296618290245533, 0.02673920802772045, -0.023937566205859184, -0.01208551786839962, -0.028648171573877335, -0.01843041554093361, -0.022948751226067543, -0.007519114762544632, -0.016136912629008293, 0.0031587148550897837, 0.021671531721949577, 0.021905001252889633, 0.015944642946124077, 0.0009458977729082108, -0.0038213583175092936, -0.015628771856427193, 0.007416113279759884, -0.0005180120933800936, -0.006169794127345085, -0.025860261172056198, 0.0299940574914217, 0.013864011503756046, 0.0006051342352293432, -0.006581800524145365, 0.003000779077410698, 0.006083959713578224, 0.014845959842205048, 0.01233958825469017, -0.0025561556685715914, 0.01939176209270954, 0.0040994626469910145, 0.007697650697082281, 0.0035878880880773067, -0.014035681262612343, -0.016535185277462006, 0.01341080479323864, 0.04716098681092262, -0.015010762959718704, 0.009352542459964752, 0.010725896805524826, -0.022852616384625435, -0.0007789494120515883, -0.00513977836817503, -0.01899348944425583, -0.008988603949546814, -0.007525981403887272, 0.017098261043429375, 0.03095540590584278, -0.0007403237977996469, 0.02105352096259594, 0.012957598082721233, -0.014131816104054451, -0.008095923811197281, 0.008082190528512001, -0.018045876175165176, -0.004593870136886835, 0.03054339997470379, 0.00892680324614048, 0.023539293557405472, 0.02892284095287323, 0.0041234963573515415, 0.03990967571735382, 0.023923832923173904, 0.02476157806813717, 0.022344473749399185, 0.008034123107790947, 0.015436502173542976, -0.007347445469349623, 0.005836755968630314, -0.026148665696382523, 0.0005201579187996686, -0.004683138336986303, -0.028565770015120506, -0.019144559279084206, 0.016013311222195625, -0.015628771856427193, 0.041310496628284454, 0.029527118429541588, -0.015628771856427193, 0.007903654128313065, 0.013527539558708668, 0.027123747393488884, 0.004981842823326588, 0.014516355469822884, 0.00034720113035291433, -0.018183210864663124, 0.01415928266942501, -0.01778493821620941, 0.021781399846076965, -0.009572279639542103, -0.0056547862477600574, 0.010973100550472736, -0.018705084919929504, 0.058504894375801086, -0.02474784478545189, -0.00810279045253992, 0.03169701620936394, 0.013568740338087082, 0.030653268098831177, -0.01844414882361889, -0.012518124654889107, -0.008830668404698372, 0.015944642946124077, -0.0010514743626117706, 0.0020497313234955072, -0.021863801404833794, 0.024047434329986572, 0.01546396967023611, -0.009901884943246841, -0.009318209253251553, 0.007683917414397001, 0.00021222616487648338, 0.0010969667928293347, -0.016590120270848274, 0.02734348364174366, 0.02163033001124859, -0.017661336809396744, 0.005338914692401886, -0.014214216731488705, -0.024596774950623512, 0.008555997163057327, -0.01100743468850851, -0.007381779607385397, -0.006063359323889017, -0.034443724900484085], "35942426-973e-40ba-8ddb-dc021eef99a7": [-0.0031771622598171234, -0.01133641880005598, -0.009391850791871548, 0.0224108025431633, -0.013605081476271152, 0.03902927786111832, -0.007530029863119125, -0.014108462259173393, -0.0021772957406938076, -0.03629860654473305, 0.014494618400931358, -0.0034495398867875338, 0.01233628485351801, 0.005806121975183487, -0.013101700693368912, 5.063979551778175e-05, 0.035195305943489075, -0.018342381343245506, 0.02012145332992077, -0.013087908737361431, -0.010474464856088161, 0.003951197024434805, -0.00513035012409091, 0.002373821334913373, -0.0028858219739049673, 0.02082480862736702, 0.01779072917997837, -0.010233117267489433, 0.0016989113064482808, -0.009736631996929646, -0.02841000258922577, -8.587216143496335e-05, -0.003923614509403706, 0.0049751983024179935, -0.017776938155293465, 0.006333637982606888, 0.01026070024818182, -0.02348652109503746, 0.009626301936805248, 0.005861287005245686, 0.008385088294744492, 0.003284044563770294, -0.01083303801715374, 0.003432300640270114, -0.014163627289235592, 0.03588486835360527, -0.0018152750562876463, -0.015225554816424847, -0.023376191034913063, 0.033816177397966385, 0.016121987253427505, 0.024148503318428993, -0.03955334424972534, -0.0009455634863115847, -0.010702020488679409, 0.007888603024184704, -0.0026875725015997887, 0.026203401386737823, 0.007074918132275343, 0.0238175131380558, 0.011253670789301395, 0.007150770165026188, -0.003668476128950715, 0.006533611100167036, -0.045069850981235504, -0.007702420931309462, -0.014246375299990177, -0.018383754417300224, 0.0018101033056154847, -0.0033357618376612663, 0.03461607173085213, 0.022590089589357376, -0.01536346785724163, 0.009288416244089603, 0.016011657193303108, -0.00930220726877451, -0.02220393531024456, -0.008722973987460136, -0.008909156545996666, 0.02156953699886799, -0.008412670344114304, -0.033209361135959625, -0.0003967143129557371, 0.007550716865807772, 0.028382420539855957, -0.007536925375461578, 0.005395832005888224, 0.014025715179741383, -0.03858795389533043, -0.026258565485477448, -0.008233384229242802, 0.01049515139311552, 0.0013817122671753168, 0.0007395565044134855, 0.002473807893693447, 0.0006706002168357372, -0.015446214936673641, 0.028685828670859337, -0.005850943736732006, -0.02901681885123253, -0.03166474029421806, -0.004206335172057152, -0.018549250438809395, -0.009019486606121063, -0.03042352758347988, 0.022728001698851585, 0.004327008966356516, -0.0008705735090188682, 0.006016438826918602, -0.006492237560451031, -0.025651751086115837, 0.0007606743602082133, -0.0059302435256540775, -0.04997953772544861, -0.02008008025586605, -0.009260833263397217, 0.03660201281309128, -0.01348096039146185, 0.016011657193303108, -0.027003293856978416, 0.001533416099846363, 0.014563574455678463, 0.00788170751184225, -0.022617671638727188, 0.013391316868364811, -0.0017514905193820596, 0.008853991515934467, -0.039470598101615906, -0.006254338193684816, -0.0016558135394006968, 0.02311415784060955, -0.0046752383932471275, -0.00014771736459806561, -0.007923080585896969, -0.006868049502372742, 0.02220393531024456, -0.03522288799285889, 0.0077989595010876656, -0.011936338618397713, -0.028961652889847755, 0.03400925546884537, 0.013570602983236313, 0.017818313091993332, -0.02605169638991356, -0.013570602983236313, 0.025500046089291573, 0.006450863555073738, 0.023748556151986122, -0.004530430305749178, 0.009702153503894806, 0.010957159101963043, 0.00019016859005205333, 0.019128482788801193, 0.003937405534088612, 0.01467390451580286, -0.012832771055400372, 0.022686628624796867, 0.004685581661760807, -0.00017960966215468943, 0.007509342860430479, 0.01860441453754902, 0.013280986808240414, 0.010846829041838646, 0.002730670152232051, 0.018149303272366524, 0.0326852947473526, -0.0006266405689530075, -0.00813684519380331, -0.030037371441721916, -0.0032892164308577776, -0.0034529876429587603, 0.019831836223602295, -0.02698950283229351, 0.004268396180123091, 8.63570166984573e-05, 0.014453244395554066, 0.040656644850969315, 0.0340920053422451, -0.03235430270433426, 0.01204666867852211, -0.041125547140836716, -0.015584127977490425, 0.012288016267120838, 0.019528429955244064, -0.019252603873610497, -0.019597385078668594, 0.0038063887041062117, -0.0021014437079429626, 0.006737032439559698, 0.0017980360426008701, 0.008109263144433498, 0.017073584720492363, -0.020438652485609055, -0.009102233685553074, -0.627557635307312, -0.00039003416895866394, -0.01398434117436409, -0.016825340688228607, -0.008426462300121784, -0.0019704268779605627, 0.015984075143933296, 0.016687428578734398, -0.00524757569655776, 0.00016894297732505947, -0.041870277374982834, 0.016866715624928474, -0.023500313982367516, -0.012653484009206295, -0.02544488199055195, -0.004730403423309326, 0.021348876878619194, -0.027789395302534103, 0.014177419245243073, -0.042780499905347824, -0.014549783430993557, 0.0027548049110919237, -0.010184847749769688, 0.00872986949980259, -0.004654551390558481, -0.003692610887810588, 0.026672303676605225, 0.008819513022899628, 0.010908889584243298, 0.03445057570934296, -0.03235430270433426, 0.02992704138159752, 0.03166474029421806, 0.012088042683899403, 0.04076697677373886, 0.004558012820780277, -0.04545600339770317, 0.022824540734291077, -0.0048407334834337234, 0.013267195783555508, -0.010964054614305496, -0.0053510102443397045, 0.005061393603682518, 0.003190953517332673, 0.009709049947559834, 0.022590089589357376, 0.028161760419607162, -0.014232584275305271, 0.0004576975479722023, -0.011377792805433273, 0.00870918296277523, -0.009833171032369137, -0.015184180811047554, -0.01839754544198513, -0.0032116405200213194, 0.0035615938249975443, 0.016163360327482224, 0.00039305101381614804, 0.017735565081238747, 0.011481227353215218, 0.01603923924267292, 0.025251803919672966, -0.008536792360246181, -0.008950530551373959, -0.024148503318428993, 0.009771110489964485, -0.008529896847903728, 0.004951063543558121, 0.0243967454880476, -0.024893231689929962, 0.010233117267489433, 0.010446881875395775, -0.009971083141863346, -0.010860620066523552, 0.015846161171793938, 0.003166818991303444, 0.04140137508511543, -0.043552812188863754, -0.019556012004613876, 0.02476910874247551, 0.011012324132025242, 0.0005555293173529208, -0.025086307898163795, -0.03056143969297409, 0.037484653294086456, -0.019252603873610497, 0.00430632196366787, 0.018011391162872314, 0.005016572307795286, 0.002261767163872719, 0.005333770997822285, 0.002787559060379863, 0.0019755985122174025, -0.009681466966867447, 0.019252603873610497, 0.004944168031215668, -0.006874945014715195, 0.0005770782008767128, 0.0028530675917863846, -0.012577632442116737, -0.0030892430804669857, -0.007081813644617796, -0.0005762162618339062, -0.011791530065238476, -0.00011173078382853419, -0.003913271240890026, -0.04027048870921135, -0.006006095092743635, 0.032437052577733994, -0.025789663195610046, -0.02476910874247551, -0.011150236241519451, -0.02624477446079254, 0.010446881875395775, 0.008916052058339119, -0.02587241120636463, 0.0054337577894330025, 0.00013004730863031, 0.01930776983499527, 0.0006606877432204783, 0.02628614753484726, -0.003954644780606031, 0.007474864833056927, 0.005271710455417633, 0.024451909586787224, 0.022934870794415474, -0.0004389500536490232, -0.001979046268388629, -0.005781987216323614, 0.0073714302852749825, 0.008316132239997387, -0.012260433286428452, 0.014922147616744041, 0.013212030753493309, 0.016163360327482224, -0.007854124531149864, 0.016728803515434265, -0.004585595335811377, 0.008771243505179882, -0.04377347230911255, -0.025196637958288193, 2.865996975742746e-05, 0.015294511802494526, -0.02065931260585785, -0.029706381261348724, -0.04244950786232948, -0.01154328789561987, -0.0032685294281691313, -0.03662959486246109, 0.002882373984903097, -0.022852124646306038, -0.013136178255081177, -0.0069163185544312, 0.021445414051413536, 0.005519953090697527, -0.020273158326745033, -0.01725286990404129, 0.015101433731615543, 0.013439586386084557, -0.005916452035307884, 0.0013808503281325102, 0.012239746749401093, -0.010350343771278858, 0.004702820908278227, 0.018176885321736336, -0.004154618363827467, -0.018218258395791054, 0.026603346690535545, 0.005009676329791546, -0.03480914980173111, -0.011226088739931583, 0.006040573585778475, -0.002466912381350994, 0.04937272518873215, -0.01792864315211773, -0.003359896596521139, 0.003775358432903886, -0.028547916561365128, -0.0069749318063259125, -0.0018221706850454211, -0.0010024524526670575, 0.02537592500448227, -0.010198639705777168, -0.008350609801709652, 0.03552629426121712, 0.0017152883810922503, -0.004285634960979223, -0.0014265337958931923, 0.011108863167464733, 0.02635510452091694, 0.003923614509403706, 0.003927062265574932, -0.008812617510557175, -0.016618473455309868, -0.023665808141231537, -0.009971083141863346, 0.013811950571835041, 0.014108462259173393, -0.00636811600998044, 0.01273623201996088, 0.021776406094431877, 0.006581880617886782, 0.03911202400922775, 0.00010952202865155414, 0.009736631996929646, -0.051000092178583145, -0.008067889139056206, -0.01664605550467968, 0.029265061020851135, -0.021017884835600853, 0.0035305635537952185, -0.02587241120636463, -0.008129949681460857, -0.007736898958683014, 0.010805455036461353, 0.002308312803506851, 0.0026444748509675264, 0.027720440179109573, -0.02948572114109993, 0.005616492126137018, 0.02570691518485546, -0.00317543838173151, -0.0032133643981069326, 0.006837018765509129, -0.031140673905611038, 0.010474464856088161, 0.0012739680241793394, 0.032602548599243164, -0.0023927842266857624, -0.021928109228610992, 0.020024914294481277, -0.009060860611498356, -0.012784501537680626, 0.00526481494307518, -0.0014773891307413578, 0.0042925309389829636, 0.013453377410769463, -0.0021186829544603825, 0.04603523761034012, -0.023596851155161858, 0.011550183407962322, 0.012936205603182316, 0.013349942862987518, -0.015377258881926537, -0.029375391080975533, 0.002113511087372899, 0.009791797026991844, 0.01511522475630045, -0.002746185287833214, 0.016425395384430885, -0.021169589832425117, 0.0031357884872704744, -0.006992170587182045, -0.014660113491117954, 0.020107662305235863, -0.030175285413861275, 0.010308969765901566, 0.02820313349366188, 0.012053564190864563, 0.027485989034175873, -0.007833437994122505, 0.012763814069330692, 0.013260300271213055, 0.022755585610866547, 0.044628530740737915, 0.009474597871303558, 0.006333637982606888, 0.0243967454880476, -0.028051430359482765, -0.02516905590891838, -0.030009789392352104, -0.027086041867733, -0.009357372298836708, -0.004785568453371525, 0.0022531477734446526, 0.0009334961650893092, 0.01452220045030117, -0.0007068022387102246, 0.0274308230727911, 0.023141739889979362, -0.018825074657797813, -0.02890648879110813, 0.025058725848793983, 0.004216678906232119, -0.00010165669664274901, -0.01327409129589796, -0.017432156950235367, 6.022903471603058e-05, -0.023762347176671028, 0.05990925058722496, -0.005750956945121288, 0.01923881284892559, 0.021928109228610992, -0.020907554775476456, -0.019114691764116287, -0.005378592759370804, 0.030285615473985672, -0.010750290006399155, 0.021845361217856407, -0.01332925632596016, 0.008529896847903728, 0.004447682294994593, -0.022548716515302658, 0.026065487414598465, 0.01620473526418209, -0.01762523502111435, -0.006585328374058008, -0.00400980981066823, 0.02460361458361149, -0.01769419200718403, -0.01064685545861721, -0.022796958684921265, 0.01413604523986578, -0.002732394030317664, -0.007929977029561996, 0.016894297674298286, -0.018052764236927032, 0.005123454611748457, 0.02745840512216091, -0.003468502778559923, 0.004830390214920044, -0.01928018592298031, -0.009040173143148422, -0.009915918111801147, 0.07292820513248444, 0.006140559911727905, -0.02689296379685402, 0.005623387638479471, 0.002456568880006671, 0.007143874652683735, -0.03160957619547844, -0.0036305501125752926, 0.012667275965213776, -0.0001527813437860459, 0.014342914335429668, -0.03160957619547844, 0.01506005972623825, -0.0001016028254525736, 0.0046752383932471275, -0.014205001294612885, -0.01981804519891739, -0.004868315998464823, -0.0026755051221698523, -0.011681200005114079, 0.004140826873481274, -0.01093647163361311, 0.0054199667647480965, 0.0034116138704121113, -0.019059525802731514, -0.007667942438274622, 0.03682267293334007, -0.019652551040053368, 0.010536525398492813, -0.01732182689011097, -0.011943234130740166, 0.028354838490486145, 0.015722040086984634, 0.012743127532303333, -0.023100366815924644, 0.009564241394400597, -0.003282320685684681, 0.027679065242409706, 0.01443945337086916, 0.0011386411497369409, 0.0044580260291695595, 0.02042486146092415, 0.004685581661760807, -0.02173503115773201, 0.019955959171056747, -9.670045983511955e-05, -0.005088976118713617, 0.01374989002943039, -0.008833304047584534, -0.009219460189342499, 0.042201265692710876, -0.008605748414993286, -0.01297068316489458, -0.013515437953174114, 0.025651751086115837, 0.003075451822951436, 0.013108596205711365, -0.0014808368869125843, -0.007909289561212063, -0.005957826040685177, 0.001574789872393012, 0.007985142059624195, 0.009005695581436157, -0.008778139017522335, -0.018549250438809395, -0.029844295233488083, -0.024355372413992882, -0.0033133511897176504, -0.010895098559558392, 0.023665808141231537, -0.019556012004613876, 0.0020342112984508276, -0.02008008025586605, 0.010136579163372517, 0.004571803845465183, -0.0011308835819363594, 0.020673103630542755, -0.018190676346421242, -0.003149579744786024, -0.00026440437068231404, -0.006474998313933611, -0.017156332731246948, 0.0017264938214793801, -0.010053831152617931, -0.01697704568505287, -0.011191610246896744, 0.01496352069079876, 0.010212430730462074, -0.028327254578471184, -0.00248932302929461, -0.004392517264932394, 0.003230603411793709, -0.00678185373544693, 0.015225554816424847, 0.007543821353465319, -0.005537192337214947, 0.00882640853524208, -0.009591823443770409, -0.018507875502109528, -0.018411336466670036, 0.01216389425098896, -0.035333216190338135, -0.004289083182811737, -0.0005262229242362082, 0.007543821353465319, -0.010695124976336956, 0.023776138201355934, 0.017707983031868935, -5.59933369004284e-06, -0.006247442215681076, -0.009709049947559834, -0.020866181701421738, 0.0002320811036042869, 0.004988989792764187, -0.0023445147089660168, -0.0042925309389829636, 0.02250734157860279, -0.010474464856088161, -0.006881840527057648, -0.031857818365097046, -0.018783701583743095, -0.03787080943584442, 0.006271576974540949, -0.00024177809245884418, -0.013625768013298512, 0.004923481028527021, 0.0018532010726630688, 0.002582414075732231, 0.009495285339653492, -0.009784901514649391, 0.004902794025838375, 0.015335884876549244, 0.0027134311385452747, -0.024962186813354492, -0.02962363511323929, 0.0002087005996145308, -0.012805188074707985, -0.0024703601375222206, -0.019197439774870872, -0.0030530409421771765, -0.004854524973779917, -0.008240279741585255, -0.011108863167464733, -0.010446881875395775, -0.030451109632849693, -0.025762081146240234, -0.0021824673749506474, -0.014577365480363369, -0.006075051613152027, 0.016190944239497185, -0.0027961786836385727, -0.013018952682614326, -0.026672303676605225, -0.003692610887810588, -0.05044844374060631, -0.020300740376114845, -0.01563929207623005, -0.002949606394395232, 0.019183646887540817, -0.005923347547650337, 0.024810483679175377, -0.022024648264050484, 0.035333216190338135, 0.012818979099392891, 0.009378058835864067, 0.004875211510807276, -0.0010920957429334521, -0.01928018592298031, -0.04228401556611061, -0.013053431175649166, 0.024658778682351112, 0.027996264398097992, 0.009226355701684952, -0.014329123310744762, -0.006068156100809574, 0.03378859534859657, 0.0030944147147238255, -0.016397813335061073, -0.022990036755800247, -0.049814045429229736, -0.03536079823970795, 0.03240947052836418, 0.0006710311863571405, 0.012391450814902782, -0.028299672529101372, 0.008378192782402039, 0.06774269044399261, 0.004561460576951504, 0.00903327763080597, -0.028851322829723358, 0.026644721627235413, -0.028796158730983734, 0.025803454220294952, 0.0023358953185379505, 0.030947595834732056, -0.013887802138924599, 0.025127682834863663, -0.01566687598824501, -0.009964187629520893, 0.006685315165668726, 0.005781987216323614, 0.0015592747367918491, -0.02325206995010376, -0.008267862722277641, -0.009888336062431335, 0.007157665677368641, -0.010446881875395775, -0.014508409425616264, 0.013949863612651825, -0.02820313349366188, -0.02318311482667923, -0.00926772877573967, -0.019804254174232483, -0.020397279411554337, -0.008012724108994007, 0.010405508801341057, 0.004227022174745798, 0.03740190714597702, -0.021486788988113403, -0.009212563745677471, 0.002339343074709177, -0.01597028411924839, 0.051165588200092316, 0.004837285727262497, 0.04137378931045532, 0.004895898513495922, -0.016632264479994774, -0.0020686895586550236, 0.002406575484201312, -0.016494350507855415, -0.01095026358962059, 0.020162828266620636, 0.014177419245243073, -0.014301540330052376, -0.005106215365231037, 7.00876335031353e-05, -0.006892183795571327, -0.031085507944226265, -0.019487055018544197, 0.04655930772423744, 0.01613577827811241, -0.005661313887685537, -0.018590623512864113, 0.004889003001153469, -0.03662959486246109, 0.0037650149315595627, 0.017445947974920273, 0.018962986767292023, -0.002949606394395232, -0.01541863288730383, -0.016563307493925095, 0.018894031643867493, 0.0068163322284817696, 0.019556012004613876, 0.0219419002532959, -0.004016705323010683, -0.02705845981836319, -0.0012782777193933725, -0.021348876878619194, -0.0189078226685524, -0.0072817872278392315, 0.011763948015868664, -0.009667675942182541, -0.021886736154556274, 0.010584794916212559, 0.004864868242293596, -0.019693924114108086, 0.0036477891262620687, 0.000810236728284508, 0.03133375197649002, -0.009764214977622032, -0.00486142048612237, 0.01991458423435688, 0.01968013308942318, 0.018135512247681618, 0.027651483193039894, 0.0038236279506236315, -0.0033288663253188133, -0.029596051201224327, 0.009640092961490154, 0.005047602578997612, 0.009005695581436157, -0.007316265255212784, -0.020162828266620636, -0.018245842307806015, -0.0007007686072029173, 0.004137379117310047, -0.013784367591142654, 0.010171056725084782, -0.038670703768730164, -0.02675505168735981, -0.008129949681460857, -0.021817779168486595, 0.014991103671491146, -0.006826675496995449, 0.03144408017396927, -0.0033357618376612663, 0.02072826959192753, -0.01725286990404129, 0.03141649812459946, -0.007012857589870691, 0.017845895141363144, -0.028327254578471184, 0.005771643947809935, 0.004509743303060532, -0.027072250843048096, 0.0025789663195610046, -0.017804522067308426, -0.0296512171626091, -0.001533416099846363, 0.0007623982965014875, 0.016397813335061073, 0.005640626884996891, 0.00596472155302763, -0.005833704490214586, -0.010653750970959663, -0.003885688493028283, -0.004578699357807636, -0.04471127688884735, 0.022659046575427055, 0.012425928376615047, -9.2175199824851e-05, -0.009943501092493534, -0.01974909007549286, 0.024920813739299774, 0.004857972729951143, -0.008267862722277641, -0.018452711403369904, -0.04101521894335747, 0.0015006618341431022, -0.008212697692215443, 0.033071450889110565, 0.006423281040042639, 0.00995729211717844, -0.023734765127301216, -0.036381352692842484, -0.020866181701421738, 0.004058079328387976, 0.007054231129586697, -0.015253137797117233, 0.0057199266739189625, 0.029982207342982292, -0.0009567689266987145, 0.0033564488403499126, -0.0033047315664589405, -0.007964454591274261, 0.010750290006399155, 0.004558012820780277, -0.035333216190338135, 0.0013687829487025738, -0.009460806846618652, 0.031526830047369, -0.006119873374700546, -0.034891895949840546, 0.005395832005888224, -0.019569803029298782, -0.038698285818099976, -0.02247975952923298, 0.005640626884996891, 0.032464634627103806, 0.05819913372397423, 0.025017352774739265, 0.008523001335561275, 0.019418099895119667, -0.02099030278623104, 0.01410156674683094, -0.0036615803837776184, 0.015404841862618923, 0.0018480293219909072, 0.0033116270788013935, -0.010453777387738228, -0.004806255456060171, -0.023169323801994324, 0.001700635184533894, 0.011832904070615768, 0.006602567620575428, -0.0051269023679196835, 0.01216389425098896, -0.005957826040685177, 0.01624610833823681, -0.02577587217092514, 0.005940586794167757, 0.0030030475463718176, 0.007833437994122505, -0.0011472607729956508, -0.030147701501846313, -0.0072128307074308395, 0.004337352234870195, -0.014604948461055756, -0.028961652889847755, -0.017776938155293465, -0.002473807893693447, 0.0038994797505438328, 0.01590132713317871, -0.0056440746411681175, -0.020535191521048546, -0.010171056725084782, -0.024065755307674408, 0.029871877282857895, -0.006454311311244965, -0.001236042007803917, 0.026396479457616806, -0.00025427641230635345, -0.01583237014710903, -0.0011894964845851064, 0.0010472740978002548, 0.004892450757324696, -0.01741836592555046, 0.013687829487025738, -0.0302304495126009, 0.004354591481387615, -0.021045468747615814, 0.023376191034913063, -0.030975177884101868, 0.011577765457332134, -0.0124328238889575, 0.006940453313291073, -0.015142807736992836, 0.01849408447742462, 0.007233517710119486, -0.014591156505048275, -0.011026115156710148, 0.008867782540619373, 0.012708649039268494, 0.023238278925418854, -0.02278316766023636, -0.02234184741973877, -0.002580690197646618, 0.007123187649995089, -0.00045640463940799236, 0.0030944147147238255, -0.026258565485477448, -0.00331852282397449, 0.008964321576058865, -0.03856037184596062, -0.005988856311887503, 0.16957737505435944, -0.017101166769862175, -0.0001635557709960267, 0.013963654637336731, -0.009067756123840809, 0.008633331395685673, 0.02810659445822239, 0.01068133395165205, -0.00040705775609239936, 0.005395832005888224, -0.024134710431098938, 0.028382420539855957, -0.01674259454011917, 0.009929710067808628, 0.0009714221232570708, -0.011846695095300674, -0.05538571625947952, 0.0031392364762723446, -0.019335351884365082, -0.03605036437511444, 0.009646988473832607, -0.014315331354737282, -0.020024914294481277, 0.005450997035950422, 0.022659046575427055, -0.0017092546913772821, -0.008667808957397938, 0.004268396180123091, 0.04211851954460144, 0.0005451858742162585, -0.018507875502109528, -0.0061095296405255795, -0.004064974840730429, 0.008102367632091045, -0.01654951646924019, 0.004340800456702709, 0.013439586386084557, 0.009922814555466175, 0.027141205966472626, 0.005395832005888224, -0.004799359943717718, -0.021114423871040344, -0.0193767249584198, -0.001470493501983583, -0.00930220726877451, 0.03282320871949196, -0.01413604523986578, -0.017101166769862175, -0.015239345841109753, 0.012322493828833103, -0.019418099895119667, 0.02145920693874359, 0.049951955676078796, 0.02934780903160572, -0.010729603469371796, -0.008702287450432777, 0.0017652817768976092, 0.018080346286296844, -0.019624968990683556, 0.015556544996798038, -0.02267283760011196, 0.030147701501846313, -0.002663437742739916, 0.030451109632849693, -0.023803720250725746, 0.004054631572216749, -0.00017465342534705997, -0.029982207342982292, 0.025624167174100876, -0.024920813739299774, 0.02061793953180313, -0.007661046925932169, -0.018452711403369904, 0.010619273409247398, -0.0010920957429334521, -0.0019704268779605627, 0.03740190714597702, -0.012901727110147476, 0.0028685827273875475, 0.010171056725084782, 0.012743127532303333, -0.023307235911488533, 0.01762523502111435, -0.012839666567742825, 0.010405508801341057, -0.028520332649350166, -0.004595938604325056, -0.013508542440831661, -0.02453465759754181, 0.006802540738135576, -0.02425883337855339, -0.005482027307152748, 0.009191877208650112, -0.006833571009337902, 0.004623521119356155, 0.0022428042721003294, -0.006747375708073378, -0.002256595529615879, 0.0027892831712961197, -0.007771376986056566, 0.0061095296405255795, -0.005595805123448372, 0.02843758650124073, 0.010584794916212559, -0.03740190714597702, 0.009998666122555733, 0.006430176552385092, 0.00038163011777214706, 0.00638535525649786, -0.0073714302852749825, 0.020107662305235863, -0.002280730288475752, 0.00678874971345067, -0.016259899362921715, 0.006719793193042278, 0.022148769348859787, -0.014922147616744041, -0.01741836592555046, -0.008736765943467617, 0.009219460189342499, 0.01273623201996088, -0.02995462529361248, -0.0036202066112309694, -0.007723107468336821, -0.007171457167714834, -0.021845361217856407, -0.037457071244716644, 0.0387534499168396, 0.005878526251763105, -0.021169589832425117, 0.03682267293334007, -0.03847762569785118, 0.021376458927989006, 0.006471550557762384, -0.020093871280550957, 0.007433491293340921, -0.009495285339653492, -0.03911202400922775, 0.013811950571835041, 0.005619939882308245, -0.0020738611929118633, 0.014770443551242352, 0.001733389450237155, 0.0007063712691888213, 0.001344648189842701, 0.008667808957397938, 0.006895632017403841, 0.0065370588563382626, 0.012722440995275974, -0.010812350548803806, -0.02587241120636463, -0.00733695225790143, 0.0034374725073575974, -0.024962186813354492, 0.02598274126648903, 0.005116558633744717, -0.009315998293459415, -0.016149569302797318, 0.008350609801709652, 0.025789663195610046, -0.0312785841524601, 0.01984562911093235, 0.030451109632849693, -0.0052820541895926, -0.01467390451580286, -0.0035288396757096052, -0.1765281707048416, 0.022024648264050484, 0.011798425577580929, -0.0020997198298573494, 0.029982207342982292, 0.03861553966999054, 0.037181247025728226, 0.009164294227957726, -0.004399413242936134, -0.003501257160678506, 0.03651926666498184, 0.026024114340543747, -0.05174482241272926, 0.00011690250539686531, -0.016797758638858795, 0.010922680608928204, -0.001329133054241538, 0.0161081962287426, 0.03949818015098572, 0.013860220089554787, 0.004830390214920044, -0.018687162548303604, 0.010757185518741608, -0.00145756418351084, -0.010708916001021862, 0.026134444400668144, 0.00015806080773472786, 0.027954891324043274, 0.018576832488179207, -0.009764214977622032, -0.010826141573488712, 0.004437339026480913, 0.03343002125620842, -0.007412804290652275, 0.011867382563650608, 0.011260566301643848, -0.005919899791479111, -0.007440386805683374, -0.004040840081870556, 0.0025375925470143557, 0.011819113045930862, -0.00733695225790143, 0.024782901629805565, -0.0033478292170912027, -0.01617715135216713, 0.030368361622095108, 0.00023121915000956506, -0.020548982545733452, 0.002113511087372899, -0.02890648879110813, 0.021238546818494797, 0.012481093406677246, 0.006419833283871412, -0.003668476128950715, 0.033209361135959625, 0.03240947052836418, 0.016287481412291527, 0.0021669522393494844, 0.01163982693105936, -0.03985675051808357, -0.0080540981143713, -0.002782387426123023, 0.0013980893418192863, -0.029127148911356926, 0.012694858014583588, -0.009660780429840088, -0.039746422320604324, -0.0023720974568277597, -0.020190410315990448, 0.007640359923243523, -0.00569579191505909, -0.00011334694863762707, 0.027927309274673462, -0.011688095517456532, -0.020107662305235863, -0.010515838861465454, -0.026134444400668144, 0.018742326647043228, -0.007764481473714113, 0.0006524991476908326, -0.039443012326955795, 0.04479402303695679, -0.02385888621211052, -0.01398434117436409, 0.0021945347543805838, -0.007343847770243883, -0.013184447772800922, -0.015294511802494526, -0.017570069059729576, 0.0023617539554834366, 0.02759631909430027, -0.02423124946653843, 0.004209783393889666, 0.005171723663806915, 0.022686628624796867, 0.02540350705385208, 0.002787559060379863, -0.01526692882180214, -0.0017437329515814781, -0.015597919002175331, 0.007943768054246902, -0.010081414133310318, -0.01007451768964529, 0.014784234575927258, 0.03356793522834778, 0.032437052577733994, 0.006254338193684816, 0.03287837281823158, 0.025582794100046158, 0.023238278925418854, -0.024079546332359314, 0.005985408555716276, 0.018480293452739716, 0.009853857569396496, -0.007978245615959167, 0.024217458441853523, -0.0224108025431633, -0.019735299050807953, 0.023307235911488533, -0.009122921153903008, 0.04347006231546402, -0.018590623512864113, 0.010177952237427235, -0.0032892164308577776, -0.013218926265835762, -0.04175994545221329, -0.09984874725341797, -0.004247709177434444, 0.028547916561365128, 0.009578032419085503, -0.01722528785467148, 0.020300740376114845, -0.008226488716900349, -0.00790239404886961, 0.004782120697200298, 0.014060193672776222, -0.01991458423435688, -0.022962454706430435, 0.011026115156710148, -0.012053564190864563, 0.013591290451586246, -0.013942967168986797, 0.0031978492625057697, -0.01357749942690134, -0.008750556968152523, 0.023307235911488533, -0.002875478472560644, -0.0378156453371048, 0.01613577827811241, -0.0018566488288342953, 0.009315998293459415, 0.014729069545865059, -0.04631106182932854, 0.008750556968152523, 0.03679509088397026, 0.007971350103616714, -0.018976779654622078, -0.013067222200334072, 0.009812484495341778, -0.005557879339903593, 0.0018945748452097178, -0.0028116938192397356, -0.01836996339261532, -0.003158199368044734, 0.031857818365097046, -0.021100632846355438, 0.009778006002306938, 0.0015773758059367537, 0.029844295233488083, -0.011115758679807186, 0.005020020063966513, 0.004506295546889305, -0.01674259454011917, 0.005602700635790825, -0.008350609801709652, -0.02992704138159752, -0.01273623201996088, 0.0015239346539601684, -0.039884332567453384, -0.03160957619547844, 0.01685292460024357, -0.007019753102213144, 0.02150058001279831, 0.006668075919151306, -0.014811817556619644, -0.007943768054246902, -0.018342381343245506, -0.00020579151168931276, -0.004399413242936134, 0.02638268657028675, 0.0189078226685524, -0.009895231574773788, -0.008040307089686394, -0.025762081146240234, 0.026506809517741203, 0.01041240431368351, -0.013805055059492588, 0.014563574455678463, -0.032574962824583054, -0.004806255456060171, -0.023941634222865105, 0.009495285339653492, -0.02769285812973976, 0.009764214977622032, 0.018976779654622078, 0.01273623201996088, -0.004913137760013342, -0.016632264479994774, -0.008074784651398659, 0.0002676367003004998, 0.016190944239497185, 0.01685292460024357, 0.020300740376114845, -0.017845895141363144, 0.0034960852935910225, -0.049924373626708984, 0.013315465301275253, 0.01029517874121666, -0.004482160788029432, -0.031223420053720474, 0.01954222097992897, 0.04239434376358986, 0.027720440179109573, 0.0062370989471673965, -0.008929843083024025, -0.0020083526615053415, -0.00972284097224474, -0.011867382563650608, -0.07701041549444199, 0.03635377064347267, -0.0005934553337283432, 0.008536792360246181, 0.015597919002175331, -0.025831036269664764, 0.00457525160163641, -0.015625501051545143, -0.016218526288866997, 0.021983273327350616, -0.02631373144686222, 0.03158199414610863, -0.02129371091723442, -0.012825875543057919, -0.026506809517741203, -0.01081924606114626, -0.0005499266553670168, -0.007323160767555237, 0.014122254215180874, -0.007074918132275343, 0.012094938196241856, 0.0032874925527721643, 0.03464365378022194, 0.011446748860180378, -0.04255983978509903, 0.006316398736089468, 0.0012825875310227275, 0.021142007783055305, -0.006257785949856043, -0.012536258436739445, 0.0046821339055895805, -0.033347275108098984, 0.012543153949081898, 0.027265328913927078, 0.008502313867211342, 0.022534925490617752, -0.007081813644617796, 0.00788170751184225, 0.026106862351298332, 0.06779785454273224, -0.023072784766554832, -0.008716078475117683, 0.011481227353215218, -0.026561973616480827, 0.009198772720992565, 0.02105925977230072, -0.005537192337214947, -0.0049820938147604465, 0.004506295546889305, -0.00928152073174715, 0.010060726664960384, 0.01954222097992897, 0.005899212788790464, -0.023541687056422234, 0.012681066989898682, -0.0121983727440238, 0.03737432509660721, -0.0010265872115269303, 0.01799759827554226, 0.007261100225150585, 0.01139158383011818, -0.003927062265574932, 0.024782901629805565, -0.0024341579992324114, 0.03103034384548664, -0.030782099813222885, -0.0025031142868101597, -0.00718524819239974, -0.011736365035176277, -0.02703087590634823, 0.0066060153767466545, -0.019693924114108086, 0.006750823464244604, 0.021624701097607613, 0.022907288745045662, 0.010205535218119621, 0.010708916001021862, -0.012529362924396992, -0.021652283146977425, 0.01482560858130455, 0.006937005557119846, -0.017404574900865555, -0.038394879549741745, 0.01648055948317051, 0.02038348838686943, -0.007723107468336821, 0.005613044369965792, 0.017735565081238747, -0.008791930973529816, 0.012108729220926762, 0.02813417837023735, -0.003616758855059743, 0.001896298723295331, -0.00693355780094862, -0.001796312048099935, 0.008260967209935188, -0.03340243920683861, -0.002013524528592825, 0.02918231301009655, 0.04915206506848335, -0.010543420910835266, 0.010791664011776447, -0.0006981827318668365, -0.015032477676868439, -0.01344648189842701, -0.000858937157317996, -0.013384421356022358, -0.021886736154556274, -0.0005451858742162585, 0.02227289043366909, 0.017542487010359764, 0.006954244803637266, 0.02722395397722721, 0.008274758234620094, -0.010853724554181099, -0.004637312609702349, 0.00861264392733574, -0.023224487900733948, -0.014715278521180153, 0.027582528069615364, 0.006275024730712175, 0.024686362594366074, 0.02308657579123974, 0.00045468073221854866, 0.026934338733553886, 0.020604148507118225, 0.024341579526662827, 0.009778006002306938, 0.008060993626713753, 0.013218926265835762, -0.007040440104901791, 0.001061927294358611, -0.026837799698114395, -0.001492042327299714, -0.019293976947665215, -0.015818579122424126, 0.0009386678575538099, -0.002530696801841259, -0.026575764641165733, 0.05687517300248146, 0.030809683725237846, -0.016494350507855415, 0.010812350548803806, 0.010240012779831886, 0.03298870101571083, 0.02213497832417488, 0.006354324519634247, 0.002534144790843129, -0.01876991055905819, 0.0050648413598537445, -0.018894031643867493, 0.034891895949840546, -0.012150103226304054, -0.011398479342460632, 0.009088442660868168, 0.005888869520276785, 0.05682000517845154, -0.01583237014710903, -0.004244261421263218, 0.030202867463231087, 0.020811017602682114, 0.04297357797622681, -0.015280719846487045, -0.02001112326979637, -0.0019704268779605627, 0.012543153949081898, 0.008329923264682293, 0.002680676756426692, -0.03147166222333908, 0.019418099895119667, 0.009329790249466896, -0.01097095012664795, -0.0006137112504802644, 0.016604680567979813, -0.025955157354474068, 0.0005650108214467764, -0.01839754544198513, 0.02210739627480507, 0.0003079330490436405, -0.01893540471792221, -0.006337085738778114, -0.01664605550467968, -0.017845895141363144, 0.013267195783555508, -0.014508409425616264, -0.0196111761033535, -0.00470971642062068, -0.037181247025728226], "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d": [0.0077834706753492355, -0.010389420203864574, -0.004685896914452314, 0.01417801808565855, -0.017849726602435112, 0.03872482851147652, -0.008862980641424656, -0.012417798861861229, 0.00590292364358902, -0.050716325640678406, 0.011888357810676098, -0.008319787681102753, 0.012775342911481857, -0.0032780650071799755, -0.024134259670972824, -0.0052428413182497025, 0.034351784735918045, -0.018289780244231224, 0.02816351130604744, -0.008766718208789825, -0.010093758814036846, 0.00906925555318594, -0.008292283862829208, 0.0042527178302407265, -0.022346537560224533, 0.0211501382291317, 0.022539060562849045, -0.014123011380434036, 0.00418395921587944, -0.010410048067569733, -0.01405425276607275, 0.01008688285946846, 0.00577915832400322, 0.0058547924272716045, -0.019816221669316292, 0.006992747075855732, 0.015828223899006844, -0.026307031512260437, 0.006380795501172543, -0.005665706470608711, 0.008553566411137581, 0.005239403340965509, -0.01485185232013464, 0.0017550626071169972, -0.01760219596326351, 0.02208525501191616, 0.006800223141908646, -0.011028875596821308, -0.029483675956726074, 0.026417044922709465, 0.018991118296980858, 0.028218518942594528, -0.03415926173329353, 0.008422925136983395, -0.015429424121975899, 0.007742215413600206, 0.0021091692615300417, 0.02306162565946579, -0.003974245395511389, 0.02097136527299881, 0.02121889591217041, 0.0030460048001259565, 0.003984559327363968, 0.017175892367959023, -0.029126131907105446, -0.010960116982460022, -0.013944239355623722, -0.00522908940911293, -0.0036648320965468884, 0.0018117884173989296, 0.03319663926959038, 0.030583813786506653, -0.013669204898178577, -0.0024426484014838934, 0.0034482425544410944, -0.026678327471017838, -0.030418792739510536, 0.00012279851944185793, -0.009976869449019432, 0.02288285456597805, -0.0030374100897461176, -0.02596323750913143, -0.01045817881822586, -0.005263468716293573, 0.02410675585269928, -0.007295284885913134, 0.001674271305091679, 0.021232647821307182, -0.017478428781032562, -0.026485802605748177, 0.017258401960134506, 0.009241152554750443, 0.0012324973940849304, 0.00669020926579833, -0.0037335907109081745, 0.00906925555318594, -0.01208775769919157, 0.029126131907105446, -0.01214964035898447, -0.026774588972330093, -0.012404046952724457, -0.004077383317053318, -0.021920233964920044, -0.00879422202706337, -0.024203019216656685, 0.019829973578453064, -0.01291286014020443, 0.00212292093783617, 0.01956869103014469, -0.006741778459399939, -0.014741837978363037, 0.0009737933287397027, -0.00773533945903182, -0.04139266163110733, -0.025055624544620514, -0.014246776700019836, 0.05074382945895195, -0.00650456128641963, 0.008099759928882122, -0.022112756967544556, 0.002726277569308877, 0.022099005058407784, -0.0036098251584917307, -0.010740089230239391, 0.00968120712786913, 0.01771220937371254, 0.0063223508186638355, -0.03949492424726486, -0.008422925136983395, -0.009516187012195587, 0.028823593631386757, -0.009199896827340126, 0.0027245585806667805, -0.0016639574896544218, 0.01266532950103283, 0.030473800376057625, -0.024766838178038597, -0.00022239101235754788, -0.016708333045244217, -0.03124389611184597, 0.027654698118567467, 0.022594068199396133, 0.009213648736476898, -0.016584567725658417, -0.005053755361586809, 0.016928361728787422, -0.003802349092438817, 0.015360665507614613, -0.008849228732287884, -0.002602512016892433, 0.020077504217624664, -0.010602572001516819, 0.021823972463607788, -0.006373920012265444, 0.029181139543652534, -0.021108882501721382, 0.021933985874056816, 0.005648517049849033, 0.005170644726604223, 0.0006046456983312964, 0.004878420848399401, 0.020765090361237526, -0.0028741084970533848, 0.004080821294337511, 0.019101131707429886, 0.027970988303422928, -0.006834602449089289, -0.01221152301877737, -0.01018314529210329, -0.006868981756269932, -0.0042802211828529835, 0.016777092590928078, -0.033554185181856155, -0.008237277157604694, -0.014439300633966923, 0.017478428781032562, 0.03292160481214523, 0.026059499010443687, -0.030528808012604713, 0.021081378683447838, -0.0413101501762867, -0.019403669983148575, 0.02589447982609272, 0.027214644476771355, -0.013105384074151516, -0.017052127048373222, 0.004053317941725254, -0.00015900420839898288, 0.020008744671940804, -0.008106635883450508, 0.016433298587799072, 0.020393792539834976, -0.030363786965608597, -0.007329664193093777, -0.6204773783683777, -0.017973491922020912, -0.01998124271631241, -0.011640826240181923, -0.015140637755393982, -3.282147736172192e-05, 0.020448800176382065, 0.011998371221125126, -0.00027460456476546824, 0.0031078874599188566, -0.0335816890001297, 0.009976869449019432, -0.01905987598001957, -0.01949993148446083, -0.03943991661071777, -0.011661454103887081, 0.005349417217075825, -0.030171262100338936, -0.005988871678709984, -0.03503936901688576, -0.011001371778547764, -0.000495061744004488, 0.00014192199159879237, -0.012507184408605099, -0.00983935222029686, -0.0019303970038890839, 0.024368038401007652, 0.013614198192954063, 0.01036879327148199, 0.03770720213651657, -0.047883469611406326, 0.031216392293572426, 0.03528689965605736, 0.015484430827200413, 0.053466666489839554, 0.005122513975948095, -0.04128265008330345, 0.030611317604780197, 0.0002726707316469401, 0.02417551539838314, -0.012376543134450912, -0.01119389571249485, 0.0067589678801596165, -0.00024624165962450206, 0.009543689899146557, 0.016460802406072617, 0.03140891715884209, -0.007130264304578304, 0.0031577374320477247, -0.003922676667571068, 0.012307784520089626, -0.01245905365794897, -0.008876731619238853, -0.005315037909895182, -0.012658453546464443, 0.0018152263946831226, 0.02128765545785427, -0.011283282190561295, 0.014838100410997868, 0.003008187748491764, 0.004936865530908108, 0.026664575561881065, -0.011400171555578709, -0.019816221669316292, -0.02467057667672634, 0.03228902816772461, -0.008065381087362766, -0.010320662520825863, 0.025165637955069542, -0.01962369680404663, 0.006800223141908646, 0.002499374095350504, -0.0036373285111039877, -0.010595696046948433, 0.014796845614910126, -0.00163387565407902, 0.04829602316021919, -0.02890610508620739, -0.0052222139202058315, 0.019142387434840202, 0.015704458579421043, -0.007707836106419563, -0.03294910863041878, -0.029538683593273163, 0.01956869103014469, -0.023955486714839935, -0.011530812829732895, 0.027214644476771355, -0.0071715195663273335, 0.006222650874406099, 0.01552568655461073, -0.003740466432645917, -0.018647326156497, -0.001902893534861505, 0.02337791584432125, 0.013999246060848236, -0.005428489297628403, 0.00450368644669652, -0.002076508942991495, -0.010733213275671005, 0.006800223141908646, -0.020943861454725266, -0.011021999642252922, -0.010526937432587147, 0.004397111013531685, -0.009385545738041401, -0.0316014401614666, -0.003403549548238516, 0.0472508929669857, -0.031353909522295, -0.007529064081609249, -0.027132133021950722, -0.003372607985511422, 0.002497655339539051, 0.015140637755393982, -0.027695953845977783, 0.03399423882365227, -0.015511934645473957, 0.02989622764289379, 0.005885734222829342, 0.017313409596681595, -0.00019306119065731764, 0.01141392346471548, -0.007714712060987949, 0.026348285377025604, 0.025674451142549515, -0.0036338907666504383, 0.003097573760896921, -0.01393048744648695, 0.0005277220625430346, 0.003747342387214303, -0.003706087125465274, 0.00935116596519947, 0.004912800155580044, 0.017615946009755135, -0.02219526842236519, 0.028136009350419044, -0.0047512175515294075, 0.011523936875164509, -0.041612688452005386, -0.015539437532424927, -0.017134636640548706, 0.007480932865291834, 0.003271189285442233, -0.03223402053117752, -0.04051255062222481, -0.016502058133482933, -0.006425488740205765, -0.03512188047170639, 0.012252777814865112, -0.004699648357927799, -0.017230898141860962, -0.00035969328018836677, 0.01698336750268936, 0.011537688784301281, -0.027145884931087494, -0.018977366387844086, 0.022277778014540672, 0.015718210488557816, -0.007707836106419563, 0.013373542577028275, 0.012644701637327671, -0.027324657887220383, -0.0013038344914093614, 0.023419169709086418, -0.01036879327148199, -0.014439300633966923, 0.037239644676446915, 0.002583603374660015, -0.03866982087492943, -0.018276028335094452, 0.0018667953554540873, -0.0025423483457416296, 0.03960493952035904, -0.021755212917923927, -0.0037851594388484955, 0.0016845851205289364, -0.022099005058407784, -0.014398045837879181, 0.006147016771137714, -0.002011188305914402, 0.013332287780940533, -0.016282031312584877, -0.017684705555438995, 0.04073258116841316, -0.007639077492058277, 0.0013751714723184705, 0.0038229767233133316, 0.020503807812929153, 0.021232647821307182, -0.009096759371459484, 0.008010374382138252, -0.01956869103014469, 0.00010356760321883485, -0.004909362178295851, -0.014343039132654667, 0.013964866288006306, 0.023996742442250252, -0.007969118654727936, 0.004022376611828804, 0.035506926476955414, -0.009248028509318829, 0.03468182682991028, -0.006724588572978973, 0.002490779384970665, -0.042547807097435, -0.01214964035898447, -0.02269032970070839, 0.014521811157464981, -0.029538683593273163, 0.01208775769919157, -0.005318475887179375, -0.008154766634106636, -0.010004372335970402, 0.009440552443265915, 0.017079630866646767, 0.025811968371272087, 0.022841598838567734, -0.025688203051686287, -0.008642952889204025, 0.01789098046720028, -0.0015711333835497499, -0.003051161766052246, -0.002788160229101777, -0.021383916959166527, 0.003974245395511389, 0.006700523197650909, 0.03888985142111778, 0.004046441987156868, -0.01408175565302372, 0.014838100410997868, -0.01696961559355259, -0.01202587503939867, -0.0008964399457909167, 0.006796785164624453, 0.005878858268260956, 0.022649073973298073, -0.016997119411826134, 0.04826851934194565, -0.021851474419236183, 0.008526063524186611, 0.011853978037834167, 0.008587946183979511, -0.026967113837599754, -0.009605572558939457, 0.010643827728927135, 0.024876851588487625, 0.018496057018637657, -0.0019303970038890839, 0.0227590873837471, -0.03558943793177605, -0.006552692037075758, 0.006023250985890627, -0.010685082525014877, 0.011489558033645153, -0.04373045265674591, 0.010375669226050377, 0.022525308653712273, 0.019211145117878914, 0.028576062992215157, 0.00380578706972301, 0.0031886789947748184, 0.007474056910723448, 0.016158264130353928, 0.04290534928441048, 0.010595696046948433, 0.0038917353376746178, 0.019417421892285347, -0.03473683074116707, -0.03347167372703552, -0.01703837513923645, -0.02467057667672634, -0.003515282180160284, 0.004658393561840057, -0.005658830516040325, 0.0019785279873758554, 0.0005053755012340844, -0.01131766103208065, 0.02343292161822319, 0.019843725487589836, -0.013820473104715347, -0.04144766926765442, 0.020806344226002693, -0.010712586343288422, 0.00647361995652318, -0.021232647821307182, -0.019142387434840202, -0.008189146406948566, -0.02731090597808361, 0.0572071336209774, -0.024216769263148308, 0.01960994489490986, 0.025509431958198547, -0.0030460048001259565, -0.011028875596821308, -0.008251029066741467, 0.03187647461891174, -0.012651577591896057, 0.01831728406250477, 0.016584567725658417, -0.010540689341723919, -0.006250154227018356, -0.010746965184807777, 0.02465682476758957, 0.021947737783193588, -0.009949365630745888, -0.022965364158153534, 0.009983745403587818, 0.008601698093116283, -0.003534190822392702, 0.0003397103282622993, -0.032068997621536255, -0.011633951216936111, 0.015456927940249443, 0.0018324160482734442, 0.019156139343976974, -0.010891358368098736, 0.007164643611758947, 0.02306162565946579, -0.0014275999274104834, -0.000959182099904865, -0.008972994051873684, -0.012259653769433498, 0.009811848402023315, 0.07794471830129623, -0.02077884040772915, -0.026114506646990776, 0.007061505690217018, -0.0073709189891815186, 0.009199896827340126, -0.021177640184760094, -0.022910356521606445, 0.001961338333785534, -0.005786034278571606, 0.01696961559355259, -0.033361662179231644, 0.008546690456569195, 0.010430675931274891, 0.008876731619238853, -0.015429424121975899, -0.0209026075899601, -0.004524314310401678, 0.0016974773025140166, -0.00028749677585437894, 0.004940303508192301, -0.012795970775187016, 0.0057172756642103195, 0.011840226128697395, -0.020503807812929153, -0.00396736990660429, 0.0457657091319561, -0.004878420848399401, 0.014824348501861095, -0.02995123527944088, -0.008484807796776295, 0.03154643252491951, 0.012692833319306374, 0.012218398973345757, -0.011957116425037384, -0.0026007930282503366, 0.018248526379466057, 0.02005000039935112, -0.00875984225422144, -0.0006261327653191984, 0.017107132822275162, 0.023075377568602562, 0.010293158702552319, -0.005789471790194511, 0.022429047152400017, -0.003926114644855261, -0.01386860478669405, -0.0007872856804169714, -0.005703523755073547, 0.006556130014359951, 0.03402174264192581, -0.0005612418754026294, -0.02072383463382721, -0.012032750993967056, 0.025743210688233376, 0.016282031312584877, 0.005139703396707773, -0.0062364027835428715, -0.010011248290538788, 0.007982870563864708, 0.0022570001892745495, -0.0016424704808741808, 0.0019750900100916624, -0.011537688784301281, -0.022552812471985817, -0.03402174264192581, -0.011647702194750309, 0.00041964216507039964, -0.018179766833782196, 0.02373545989394188, -0.015566941350698471, -0.0015109697123989463, 0.0037920353934168816, 0.026210768148303032, -0.002165895188227296, -0.00371296308003366, 0.004476183094084263, -0.02700836770236492, 0.012575943022966385, -0.0018805470317602158, -0.012129012495279312, -0.02040754444897175, 0.0012161672348156571, -0.025564437732100487, -0.015566941350698471, -0.014796845614910126, 0.009880607016384602, 0.018358539789915085, -0.01826227828860283, 0.012080881744623184, -0.00037043681368231773, 0.019719958305358887, 0.004067069850862026, 0.002750342944636941, 0.013332287780940533, -0.0043421038426458836, 0.0071990229189395905, -0.019788717851042747, -0.0016888824757188559, -0.020641325041651726, 0.005913237575441599, -0.024615569040179253, -0.012830349616706371, 0.0003150002157781273, 0.013222274370491505, -0.01180584728717804, 0.01316039077937603, 0.025509431958198547, -0.007164643611758947, -0.014494307339191437, -0.012747840024530888, -0.017107132822275162, 0.00025290262419730425, -0.004407424479722977, -0.007680332753807306, -0.018000995740294456, -0.0058204131200909615, 0.0023137261159718037, 0.014411796815693378, -0.028933608904480934, -0.013346039690077305, -0.02649955451488495, 0.00406019389629364, 0.005290972534567118, -0.016392044723033905, 0.011427675373852253, 0.013779218308627605, -0.006177958101034164, 0.010898234322667122, -0.012624074704945087, -0.021906482055783272, 0.02355668693780899, -0.010300034657120705, -0.018963614478707314, -0.023419169709086418, -0.004094573203474283, -0.011111386120319366, 0.003326195990666747, -0.019953738898038864, 0.0026626756880432367, -0.020338786765933037, -0.0053012860007584095, -0.0011645983904600143, -0.013923611491918564, -0.026031997054815292, -0.02502812072634697, -0.012658453546464443, -0.005999185610562563, -0.004393673036247492, 0.011276406235992908, -0.011915860697627068, -0.01672208495438099, -0.03352668136358261, 0.007824725471436977, -0.013627949170768261, -0.00030124851036816835, -0.008285407908260822, -0.009694959037005901, 0.01405425276607275, -0.012307784520089626, 0.009303035214543343, -0.027874726802110672, 0.017478428781032562, 0.009199896827340126, 0.016502058133482933, 0.009406172670423985, 0.00444180378690362, -0.032124005258083344, -0.05665706470608711, -0.021727709099650383, 0.0290986280888319, 0.038587313145399094, 0.00035625536111183465, -0.016955863684415817, -0.012232150882482529, 0.03633202984929085, 0.00593386497348547, -0.0031474237330257893, -0.02350168116390705, -0.04661831259727478, -0.030171262100338936, 0.008711711503565311, -0.016185767948627472, 0.006226088851690292, -0.022786591202020645, -0.0028827032074332237, 0.06034252420067787, -0.013731087557971478, -0.0006570741534233093, -0.02398299053311348, 0.02846604958176613, -0.02970370464026928, 0.028686078265309334, 0.010973868891596794, 0.04073258116841316, 0.0030253774020820856, 0.027145884931087494, -0.00802412535995245, -0.002731434302404523, 0.016378292813897133, -0.00431803846731782, 0.0021177642047405243, -0.015649450942873955, -0.019637448713183403, -0.014700583182275295, 0.0024512431118637323, -0.005095010157674551, -0.015594445168972015, 0.030281275510787964, -0.02042129635810852, -0.015154389664530754, -0.0007327085477299988, -0.014411796815693378, -0.02453305944800377, -0.013662328943610191, -0.015511934645473957, 0.005541941151022911, 0.03910987824201584, -0.03149142861366272, 0.009578069671988487, 0.014741837978363037, -0.011407047510147095, 0.04362044110894203, 0.004658393561840057, 0.03338916227221489, -0.005562568549066782, -0.028218518942594528, -0.00590292364358902, 0.002970370464026928, -0.004634327720850706, -0.014838100410997868, 0.03616701066493988, 0.026540810242295265, -0.011812723241746426, -0.005641641095280647, 0.0003225207037758082, -0.010808847844600677, -0.0316014401614666, -0.022745337337255478, 0.02208525501191616, 0.008299159817397594, -0.020201269537210464, -0.011792095378041267, 0.00996311753988266, -0.0418052151799202, 0.0016261403216049075, 0.005875420290976763, 0.014453052543103695, -0.011853978037834167, -0.00894549023360014, -0.01131766103208065, 0.005486934445798397, 0.013820473104715347, 0.02091635763645172, 0.02467057667672634, -0.02699461579322815, -0.032371535897254944, -0.01057506911456585, -0.01948617957532406, -0.010293158702552319, -0.010932613164186478, 0.016405796632170677, -0.011372668668627739, 0.006085133645683527, 0.00498155876994133, -0.003912362735718489, -0.00796224270015955, 0.008031001314520836, -0.012768466956913471, 0.028122257441282272, -0.0018547625513747334, -0.004830290097743273, 0.0029875601176172495, 0.012555316090583801, 0.015828223899006844, 0.02619701623916626, -0.0019303970038890839, 0.003919238690286875, -0.03179396316409111, 0.0015745713608339429, 0.005593509878963232, 0.01721714623272419, 0.00256813270971179, -0.012204647064208984, -0.02945617400109768, -0.006803661119192839, -0.007391546852886677, 0.002267313888296485, 0.000937695091124624, -0.03223402053117752, -0.029318656772375107, -0.01233528833836317, -0.026169514283537865, 0.010492558591067791, 0.0016407514922320843, 0.0077490913681685925, 0.0067864712327718735, 0.020710082724690437, -0.027448423206806183, 0.02502812072634697, -0.005531627219170332, 0.007123388350009918, -0.02146642655134201, 0.019348662346601486, 0.019279904663562775, -0.033306654542684555, 0.026664575561881065, -0.03074883483350277, -0.030721331015229225, -0.0036682700738310814, 0.01338041853159666, 0.01522314827889204, 0.007432802114635706, 0.014700583182275295, -0.004644641652703285, -0.013139763846993446, -0.002994435839354992, 0.0009729338344186544, -0.033609192818403244, 0.0343242809176445, 0.009199896827340126, -0.0038195387460291386, 0.0016484868247061968, -0.033554185181856155, 0.03377421200275421, 0.004067069850862026, 0.015278154984116554, -0.006624888628721237, -0.04098011180758476, -0.0014344757655635476, 0.0037645320408046246, 0.02625202387571335, -0.015415672212839127, 0.007054629735648632, -0.0036167011130601168, -0.03363669291138649, -0.01227340567857027, 0.0017688142834231257, 0.009990621358156204, -0.015154389664530754, 0.019169891253113747, 0.02669207938015461, -0.006858667824417353, -0.005150017328560352, -0.002834572223946452, -0.010554441250860691, 0.02029753103852272, -0.01221152301877737, -0.03993498161435127, 0.012039626017212868, -0.009000497870147228, 0.03616701066493988, -0.018124761059880257, -0.028878601267933846, -0.02534441091120243, -0.02208525501191616, -0.049973733723163605, -0.019541187211871147, 0.01765720173716545, 0.03836728632450104, 0.042162757366895676, 0.020435048267245293, 0.010630075819790363, 0.011915860697627068, -0.017492180690169334, 0.022374039515852928, -0.01875733956694603, 0.011984619311988354, 0.0008844071417115629, 0.003307287348434329, 0.0031422667670994997, -0.001742170425131917, -0.010217524133622646, 0.0025973550509661436, 0.0003818249679170549, 0.0020593192894011736, -0.00812038779258728, 0.034956857562065125, -0.007157767657190561, 0.00980497244745493, -0.011764592491090298, 0.020875103771686554, 0.0048646689392626286, 0.013786094263195992, 0.0012849258491769433, -0.023075377568602562, -0.0156769547611475, 0.0012582818744704127, -0.007157767657190561, -0.007267781533300877, -0.011613323353230953, 0.0015831661876291037, -0.0028758274856954813, 0.016873354092240334, 0.0037301527336239815, -0.011049502529203892, -0.011207647621631622, -0.03143642097711563, 0.03448930010199547, -0.019403669983148575, -0.0013528249692171812, 0.025069376453757286, 0.006996185053139925, -0.034214265644550323, 0.0062639061361551285, 0.012775342911481857, 0.002862075576558709, -0.02644454874098301, 0.01998124271631241, -0.01905987598001957, 0.014961865730583668, -0.011159516870975494, 0.022731585428118706, -0.02846604958176613, 0.00012978180893696845, -0.004799348302185535, 0.006284533534198999, -0.011331412941217422, 0.015855727717280388, 0.01217714324593544, -0.0026214206591248512, -0.00656644394621253, 0.01196399237960577, -0.00491967611014843, 0.022649073973298073, -0.011908984743058681, -0.023336660116910934, 0.007123388350009918, 0.014233024790883064, 0.007336540147662163, 0.0038745456840842962, -0.009633076377213001, -0.008560442365705967, 0.015305658802390099, -0.044940605759620667, -0.006477057933807373, 0.17800219357013702, -0.021727709099650383, 0.009385545738041401, 0.004345541819930077, -0.021315157413482666, 0.004458993673324585, 0.030363786965608597, 0.000572415126953274, -0.0014310377882793546, -0.00250625004991889, -0.018482305109500885, 0.020875103771686554, 0.0003319749957881868, 0.011723336763679981, -0.007267781533300877, -0.004263031762093306, -0.03938491269946098, -0.0005685474607162178, -0.014150514267385006, -0.05357668176293373, -0.00014009559527039528, -0.008594822138547897, -0.01771220937371254, 0.013401046395301819, 0.016680831089615822, 0.009309911169111729, -0.0019871226977556944, 0.0008581929723732173, 0.048241015523672104, 0.001336494809947908, -0.034846846014261246, 0.0029273962136358023, -0.005607261788100004, -0.011448302306234837, -0.012039626017212868, 0.004238965921103954, 0.01753343641757965, 0.01497561763972044, 0.019279904663562775, 0.01350418385118246, -0.006143578793853521, -0.00980497244745493, -0.017203396186232567, -0.005751654971390963, -0.011297034099698067, 0.03954993188381195, -0.013112260028719902, -0.0013416516594588757, -0.008422925136983395, 0.022236522287130356, -0.02552318200469017, 0.012720336206257343, 0.05847229063510895, 0.01685960218310356, 0.0016820066375657916, -0.007013374473899603, 0.008196022361516953, 0.026953361928462982, -0.027132133021950722, 0.0010631794575601816, -0.018839849159121513, 0.03303162008523941, 0.007047753781080246, 0.023914232850074768, -0.017794718965888023, 0.003932990599423647, -0.003812663024291396, -0.008285407908260822, 0.035396914929151535, -0.027475927025079727, 0.0077765947207808495, -0.0016734118107706308, -0.013731087557971478, 0.0026128259487450123, 0.008340415544807911, -0.01155831664800644, 0.0323440320789814, -8.465899736620486e-05, 0.014480555430054665, 0.009248028509318829, 0.015415672212839127, -0.015841975808143616, 0.008649828843772411, 0.005321913864463568, -0.009186145849525928, -0.03204149752855301, -0.008471056818962097, -0.010870730504393578, -0.01967870444059372, 0.009894358925521374, -0.016323285177350044, -0.005125951953232288, 0.017423423007130623, -0.01919739320874214, -0.001782566076144576, -0.011998371221125126, 0.0013098508352413774, 0.005954492371529341, 0.017079630866646767, -0.010410048067569733, -0.006954929791390896, -0.002073070965707302, 0.03025377355515957, 0.010410048067569733, -0.02435428649187088, -0.0052703446708619595, 0.009213648736476898, -0.0016906014643609524, 0.009688083082437515, -0.017547188326716423, 0.029813718050718307, -0.014741837978363037, 0.003443085588514805, -0.01534691359847784, 0.010279406793415546, 0.014796845614910126, -0.027530932798981667, -0.014989369548857212, -0.010038752108812332, 0.022099005058407784, 0.010905110277235508, -0.005926989018917084, -0.007061505690217018, -0.0029617755208164454, -0.005562568549066782, -0.014123011380434036, -0.05055130273103714, 0.01980246976017952, 0.0024512431118637323, -0.0220164954662323, 0.024863099679350853, -0.03591948002576828, 0.01831728406250477, 0.008037877269089222, -0.002045567613095045, 0.009942489676177502, -0.0038779836613684893, -0.034296777099370956, 0.013572942465543747, -0.00935116596519947, 0.0009050347143784165, 0.004355855751782656, 0.006095447577536106, -0.004462431650608778, -0.008354166522622108, -0.01002500019967556, 0.009461180306971073, -0.001661379006691277, -0.0029119255486875772, -0.024203019216656685, -0.03025377355515957, -0.021796468645334244, 0.002700492972508073, -0.022717833518981934, 0.020751338452100754, 0.02171395719051361, -0.011778343468904495, -0.020586317405104637, 0.004617138300091028, 0.031216392293572426, -0.026417044922709465, 0.01122827548533678, 0.03270157799124718, -0.009729337878525257, -0.021823972463607788, -0.002224339870736003, -0.1756919026374817, 0.020036248490214348, 0.023831721395254135, -0.006587071344256401, 0.01703837513923645, 0.04045754671096802, 0.01691460981965065, -0.009770593605935574, 0.011578943580389023, -0.00488873478025198, 0.027407167479395866, 0.021823972463607788, -0.03396673500537872, -0.01802849769592285, 0.004548379685729742, -0.007645953446626663, -0.013387294486165047, 0.020187517628073692, 0.0527515783905983, 0.015209396369755268, -0.001082947594113648, -0.013229149393737316, 0.016570815816521645, 0.004878420848399401, -0.008141015656292439, 0.014026748947799206, 0.0038882973603904247, 0.013731087557971478, 0.024340534582734108, -0.012954115867614746, -0.010554441250860691, -0.0032849409617483616, 0.015759466215968132, -0.0012196052120998502, 0.01863357424736023, 0.010643827728927135, -0.00796224270015955, 0.01180584728717804, -0.009873731061816216, 0.01221152301877737, 0.02017376571893692, -0.007336540147662163, 0.011324536986649036, 0.0012307785218581557, -0.006353292148560286, 0.03215150907635689, 0.0005466306465677917, -0.005280658602714539, 0.007123388350009918, -0.024574315175414085, 0.018661078065633774, 0.003217901336029172, 0.023845473304390907, 0.003960493952035904, 0.03660706430673599, 0.03338916227221489, 0.006092009600251913, 0.001837572897784412, 0.003957055974751711, -0.015154389664530754, -0.0025921983178704977, 0.0007275516400113702, 0.005906361620873213, -0.022979116067290306, 0.023817969486117363, -0.017450926825404167, -0.01907362788915634, 0.012837225571274757, -0.020008744671940804, 0.0093236630782485, -0.0010330976219847798, 0.005266906693577766, 0.015333161689341068, -0.00713714025914669, -0.012562192045152187, -0.011908984743058681, -0.020008744671940804, 0.014659328386187553, -0.01427428051829338, -0.010685082525014877, -0.03770720213651657, 0.041667696088552475, -0.02583947218954563, -0.014645576477050781, 0.011957116425037384, 0.002394517417997122, -0.0062879715114831924, -0.02552318200469017, -0.015071879141032696, -0.006367044057697058, 0.02644454874098301, -0.0286035668104887, -0.00241342606022954, 0.005311599932610989, 0.0273659136146307, 0.0213976688683033, -0.0028861411847174168, -0.019348662346601486, 0.002351543167605996, -0.03138141334056854, 0.014920610934495926, -0.013517935760319233, -0.012135888449847698, 0.03025377355515957, 0.03426927328109741, 0.024945611134171486, -0.0022638761438429356, 0.029841221868991852, 0.015566941350698471, 0.03050130419433117, -0.015085631050169468, 0.006050754804164171, 0.020751338452100754, 0.015071879141032696, -0.011173268780112267, 0.01918364316225052, -0.02453305944800377, -0.02890610508620739, 0.02084759995341301, -0.018193518742918968, 0.0591873824596405, -0.014686831273138523, -0.004527752287685871, -0.010492558591067791, -0.010815723799169064, -0.04546317085623741, -0.0970320999622345, 0.0014215835835784674, 0.008780470117926598, 0.005786034278571606, -0.015085631050169468, 0.03712962940335274, -0.004544941708445549, -0.006284533534198999, -4.931279181619175e-05, 0.007831601426005363, -0.03624952211976051, -0.02231903374195099, -0.0029617755208164454, -0.00017683845362626016, 0.004689334891736507, -0.004589634947478771, 0.0008783907978795469, -0.001853043562732637, -0.005091572646051645, 0.03242654353380203, 0.0042870971374213696, -0.044253017753362656, -0.003750780364498496, -0.01475558988749981, -0.008333539590239525, 0.012844101525843143, -0.04496810957789421, -0.0072334022261202335, 0.03935740888118744, 0.00393642857670784, -0.015539437532424927, -0.023639198392629623, 0.0025303156580775976, 0.009000497870147228, -0.00974308978766203, 0.008202898316085339, -0.03583696857094765, 0.004926552064716816, 0.028246022760868073, -0.026829596608877182, 0.008422925136983395, -0.007824725471436977, 0.03572695702314377, -0.00996311753988266, 0.012541564181447029, 0.019761214032769203, -0.012266529724001884, -0.013029749505221844, -0.003221339313313365, -0.03143642097711563, -0.008113511838018894, -0.003843604354187846, -0.03990747779607773, -0.029731208458542824, 0.033361662179231644, -0.009309911169111729, 0.0278609748929739, 0.000261497450992465, -0.02054506167769432, -0.008842352777719498, -0.013449177145957947, 0.007570318877696991, -0.008361042477190495, 0.02454681135714054, 0.025481928139925003, -0.009853104129433632, -0.008209774270653725, -0.01666707918047905, 0.03223402053117752, -0.00045466606388799846, -0.008457304909825325, 0.02084759995341301, -0.03476433455944061, -0.0016321566654369235, -0.02509688027203083, 0.010403172113001347, -0.025138134136795998, -0.00672115059569478, 0.013015998527407646, 0.0006532064871862531, -0.00980497244745493, -0.01344230119138956, 0.013153515756130219, 0.0015092507237568498, 0.013187894597649574, 0.009048628620803356, 0.015498182736337185, -0.03242654353380203, 0.002715963637456298, -0.026169514283537865, 0.02989622764289379, 0.0024031121283769608, -0.0009969993261620402, -0.03347167372703552, 0.02491810731589794, 0.03050130419433117, 0.03751467913389206, 0.009447428397834301, -0.011420799419283867, 0.00796224270015955, -0.010733213275671005, 0.0009798096725717187, -0.07299410551786423, 0.030281275510787964, 0.0012084319023415446, -0.00010474939335836098, 0.006686771288514137, -0.016955863684415817, -0.0017086506122723222, -0.008842352777719498, -0.010808847844600677, 0.022662825882434845, -0.027998492121696472, 0.028988614678382874, -0.028246022760868073, -0.007336540147662163, -0.015566941350698471, -0.004689334891736507, 0.015965741127729416, -0.014563065953552723, 0.02754468470811844, -0.002067914232611656, 0.00067426374880597, 0.018303532153367996, 0.03217901289463043, 0.012129012495279312, -0.0318489708006382, 0.012809722684323788, -0.008003498427569866, 0.021383916959166527, 0.0032815029844641685, -0.03187647461891174, 0.016763340681791306, -0.035396914929151535, 0.003963931929320097, 0.023336660116910934, 0.009337414056062698, 0.010135013610124588, -0.018468553200364113, 0.006126388907432556, 0.01760219596326351, 0.054649315774440765, -0.009550565853714943, -0.007680332753807306, 0.01094636507332325, -0.01870233193039894, 0.0034293339122086763, 0.0162957813590765, -0.015910733491182327, -0.0012514060363173485, 0.02270408160984516, -0.007474056910723448, 0.006483933422714472, 0.01716214045882225, 0.0057379030622541904, -0.019527435302734375, -0.00094371143495664, -0.023707956075668335, 0.029841221868991852, 0.002382484497502446, 0.013153515756130219, -0.012493433430790901, 0.007707836106419563, -0.0057688443921506405, 0.021906482055783272, 0.0011061535915359855, 0.02447805181145668, -0.02270408160984516, -0.00570696173235774, -0.0068139745853841305, -0.005077820736914873, -0.028328532353043556, -0.024931859225034714, -0.0042595937848091125, 0.005665706470608711, 0.019348662346601486, 0.02049005590379238, 0.012802846729755402, 0.015841975808143616, -0.019403669983148575, -0.032371535897254944, 0.007845353335142136, 0.0047202762216329575, -0.028521057218313217, -0.03578196093440056, 0.00849168375134468, 0.013634825125336647, -0.019898731261491776, -0.006545816082507372, 0.0021263589151203632, -0.0072884089313447475, 0.007577194832265377, 0.025756962597370148, -0.009674331173300743, 0.0004585337592288852, -0.008959242142736912, 0.013607322238385677, 0.006748653948307037, -0.022869102656841278, -0.01534691359847784, 0.03019876591861248, 0.052614063024520874, -0.01230090856552124, 0.006329226773232222, -0.009076131507754326, -0.025784466415643692, -0.008354166522622108, -0.016089506447315216, -0.01192961260676384, -0.01624077558517456, -0.004620576277375221, 0.03347167372703552, 0.019651200622320175, 0.013731087557971478, 0.02220902033150196, 0.005101886112242937, -0.0067349025048315525, -0.012018999084830284, 0.0031199203804135323, -0.01624077558517456, -0.00971558690071106, 0.03685459494590759, 0.0013889232650399208, 0.027503428980708122, 0.031463924795389175, 0.016625823453068733, 0.011908984743058681, 0.038779836148023605, 0.009619324468076229, 0.017327161505818367, 0.008931739255785942, 0.00968120712786913, -0.007075257133692503, 0.004483059048652649, -0.022470302879810333, 0.010300034657120705, -0.02121889591217041, -0.030721331015229225, 0.01709338091313839, 0.009694959037005901, 6.145297811599448e-05, 0.05563943833112717, 0.009461180306971073, -0.009392421692609787, 0.0092617804184556, 0.01021064817905426, 0.03715713322162628, 0.0185235608369112, 0.0038779836613684893, -0.02097136527299881, -0.013985494151711464, -0.0030374100897461176, -0.01442554872483015, 0.03866982087492943, -0.01815226301550865, -0.01659831963479519, 0.022250274196267128, -0.005920113064348698, 0.05541941151022911, -0.0020868226420134306, -0.01552568655461073, 0.02940116636455059, 0.013689831830561161, 0.032261524349451065, -0.017808470875024796, -0.020985117182135582, -0.0047821588814258575, 0.012349040247499943, 0.004562131594866514, 0.006332664750516415, -0.028301028534770012, 0.01078821998089552, 0.0092617804184556, -0.0039054870139807463, -0.0046652695164084435, 0.01795974001288414, -0.019843725487589836, -0.002440929412841797, 0.003840166376903653, 0.023996742442250252, 0.0063154748640954494, -0.0036923354491591454, -0.012197771109640598, -0.01239717099815607, -0.023914232850074768, 0.013985494151711464, -0.002960056532174349, -0.01368295680731535, -0.018056001514196396, -0.02729715406894684], "33597818-1347-4f76-82b5-9298ad6b85ec": [-0.001160794636234641, -0.009244714863598347, 0.01210419088602066, 0.006298482418060303, -0.03234262019395828, 0.02656814455986023, -0.0029566430021077394, -0.005500327330082655, 0.003308872226625681, -0.04233690723776817, 0.01335347630083561, -0.004920797888189554, 0.021182334050536156, 0.014172452501952648, 0.005868172738701105, -0.0022435090504586697, 0.038006048649549484, -0.027970120310783386, 0.0353686660528183, -0.02037723921239376, -0.008620072156190872, -0.001057555084116757, -0.012701071798801422, 0.009723607450723648, -0.020807547494769096, 0.01755940541625023, 0.02892790548503399, -0.014352905564010143, 0.007794154807925224, -0.008876869454979897, -0.008571488782763481, 0.004754226189106703, 0.00320997042581439, 0.006430351175367832, -0.02719278633594513, 0.001292663742788136, 0.02211235836148262, -0.01333959586918354, -0.0010462767677381635, -0.0034442113246768713, 0.00762758357450366, 0.012999512255191803, -0.006465053651481867, -0.013624154962599277, -0.018100762739777565, 0.013186905533075333, -0.009827714413404465, -0.0071001071482896805, -0.016101906076073647, 0.03445252403616905, 0.021584881469607353, 0.02572140470147133, -0.033897288143634796, 0.005021434742957354, -0.012680250220000744, 0.0065483395010232925, 0.0098901791498065, 0.01329101249575615, -0.01310361921787262, 0.01347146462649107, 0.021654285490512848, 0.005559321492910385, 0.002160223200917244, 0.008446560241281986, -0.02915000170469284, -0.016226833686232567, -0.022265048697590828, -0.003452887060120702, -0.003924839198589325, -0.0038207322359085083, 0.028206096962094307, 0.019919168204069138, -0.006333184894174337, 0.011479548178613186, -0.0070133511908352375, -0.027956239879131317, -0.021335024386644363, 0.008259166963398457, -0.024916309863328934, 0.022278929129242897, -0.0034546221140772104, -0.02014126256108284, -0.008675595745444298, 0.010431536473333836, 0.020779786631464958, -0.005587083287537098, 0.00814811885356903, 0.031593047082424164, -0.02842819131910801, -0.02370866760611534, 0.026901286095380783, 0.012131952680647373, 0.021918024867773056, 0.004979792051017284, 0.01482485793530941, 0.0171707384288311, -0.009924881160259247, 0.016976404935121536, -0.00020810584828723222, -0.03572957217693329, -0.03173185884952545, 0.0013776845298707485, -0.020710380747914314, -0.009237773716449738, -0.02730383351445198, 0.016851477324962616, -0.0017281785840168595, -0.0015355803770944476, 0.031176619231700897, -0.012846821919083595, -0.02705397643148899, 0.01055646501481533, -0.00522617856040597, -0.032675761729478836, -0.017975833266973495, -0.013818488456308842, 0.050721000880002975, -0.011500369757413864, -0.000123844132758677, -0.022334452718496323, 0.014991428703069687, 0.015532786026597023, 0.0022938274778425694, -0.00565301813185215, 0.0011174166575074196, 0.01283988170325756, 0.007225036155432463, -0.04275333508849144, -0.023403286933898926, -0.009439048357307911, 0.025485429912805557, -0.003921369090676308, 0.0058334702625870705, 0.004067119210958481, -0.0035674048122018576, 0.0226120725274086, -0.039616238325834274, 0.0035778156016021967, -0.022778643295168877, -0.022070715203881264, 0.019613785669207573, 0.017712095752358437, 0.010611988604068756, -0.018378380686044693, -0.022570429369807243, 0.015629952773451805, -0.002363232197239995, 0.01915571466088295, -0.005996571853756905, -0.011361559852957726, 0.028955668210983276, -0.008932393044233322, 0.010355190373957157, -0.00033834821078926325, 0.026012904942035675, -0.025901857763528824, 0.021348904818296432, -0.005330285988748074, 0.012992572039365768, 0.000845436763484031, -0.0029080596286803484, 0.01743447594344616, -0.002286887029185891, 0.0008224464836530387, 0.015158000402152538, 0.034397002309560776, 0.0043933214619755745, -0.007599821779876947, -0.025846334174275398, 0.001417592284269631, 0.0029462322127074003, 0.019572144374251366, -0.029066715389490128, -0.006916184909641743, -0.017142977565526962, 0.016879238188266754, 0.032065000385046005, 0.02592962048947811, -0.024430476129055023, 0.01829509623348713, -0.039005476981401443, -0.020057976245880127, 0.019960809499025345, 0.013395119458436966, -0.004965910688042641, -0.017823142930865288, -0.008592309430241585, -0.015754882246255875, 0.019919168204069138, 0.0014843944227322936, 0.007974606938660145, 0.015269048511981964, -0.022764762863516808, -0.013922595418989658, -0.6240876317024231, -0.014241857454180717, -0.004670940805226564, -0.021959668025374413, -0.016726547852158546, -0.0016058527398854494, 0.0143390242010355, 0.005753654986619949, -0.023680904880166054, -0.0018808691529557109, -0.03883890435099602, 0.010736917145550251, -0.018225690349936485, -0.012416512705385685, -0.02384747751057148, -0.013263250701129436, -0.0003851964429486543, -0.02892790548503399, 0.0033401043619960546, -0.02520781010389328, -0.015088595449924469, 0.0014037113869562745, -0.005819589365273714, -0.0032585535664111376, -0.00426839292049408, 0.008418797515332699, 0.03200947865843773, 0.015199643559753895, 0.009001797996461391, 0.0366179533302784, -0.03720095381140709, 0.02742876298725605, 0.03436923772096634, 0.006305422633886337, 0.041337478905916214, 0.010847964324057102, -0.04988814517855644, 0.012860702350735664, 0.01420715544372797, 0.02065485715866089, -0.031426478177309036, -0.014227977022528648, 0.0017819673521444201, 0.004792398773133755, 0.016879238188266754, 0.020349476486444473, 0.031454239040613174, -0.020099619403481483, -3.380771158845164e-05, -0.00822446495294571, 0.017587168142199516, -0.007641464471817017, -0.02223728597164154, -0.0023094434291124344, 0.0006723586702719331, 0.013811548240482807, 0.03223157301545143, -0.010723035782575607, 0.007828857749700546, 0.0055732023902237415, -0.0013273661024868488, 0.02816445380449295, 0.006642036139965057, -0.018586596474051476, -0.02062709629535675, 0.02409733459353447, -0.013429821468889713, 0.0013872276758775115, 0.018378380686044693, -0.031093334779143333, 0.007280559744685888, 0.009341881610453129, -0.007037642877548933, -0.021959668025374413, 0.0035743452608585358, 0.01260390505194664, 0.03803380951285362, -0.03692333400249481, -0.011909857392311096, 0.021959668025374413, 0.000530512654222548, -0.016893120482563972, -0.016754310578107834, -0.030093906447291374, 0.029621953144669533, -0.01632400043308735, -0.018989143893122673, 0.027484286576509476, 0.008869929239153862, 0.018211809918284416, 0.0013082798104733229, 0.005014494061470032, -0.017503881826996803, -0.020071858540177345, 0.021820858120918274, 0.014297381043434143, -0.01068833377212286, 0.0011399732902646065, 0.005132482387125492, -0.012360988184809685, -0.002208806574344635, -0.008092595264315605, -0.0036090477369725704, -0.008162000216543674, -0.009744429029524326, -0.006322774104773998, -0.02942761965095997, -0.009577857330441475, 0.041837193071842194, -0.0282755009829998, -0.009876297786831856, -0.020307833328843117, -0.017448358237743378, -0.001360333408229053, 0.014533357694745064, -0.034424763172864914, 0.030538097023963928, -0.013728261925280094, 0.012034785933792591, 0.0008766688988544047, 0.017142977565526962, -0.002318119164556265, 0.014352905564010143, -0.00845350045710802, 0.02942761965095997, 0.013735203072428703, 0.0003051640815101564, 0.0028195686172693968, 0.009147548116743565, -0.008446560241281986, 0.00661080377176404, 0.0011694702552631497, 0.011972322128713131, 0.007814976386725903, 0.01828121580183506, -0.015963096171617508, 0.021473834291100502, -0.004754226189106703, 0.020946357399225235, -0.030815714970231056, -0.013478404842317104, -0.016518333926796913, 0.01426961924880743, 0.009827714413404465, -0.02681800164282322, -0.027081739157438278, -0.024902429431676865, -0.006572631187736988, -0.0427255742251873, 0.004611946642398834, -0.010223321616649628, -0.005975750274956226, 0.0007361242896877229, 0.0164350476115942, 0.018211809918284416, -0.0279423575848341, -0.014283500611782074, 0.010611988604068756, 0.012187476269900799, -0.012465096078813076, 0.015768762677907944, 0.00422675022855401, -0.025110643357038498, 0.0043725003488361835, 0.021945785731077194, -0.009265536442399025, -0.024902429431676865, 0.017365071922540665, -0.004792398773133755, -0.046695526689291, 0.0009534479468129575, -0.010709155350923538, 0.0067218514159321785, 0.02964971587061882, -0.019544381648302078, 0.0018930149963125587, -0.0005960133858025074, -0.018197929486632347, -0.00845350045710802, 0.009196131490170956, -0.012652488425374031, 0.003907488193362951, -0.012888465076684952, -0.003681922797113657, 0.03350862115621567, 0.004889565519988537, 0.00335051491856575, 0.0010037664324045181, 0.012777416966855526, 0.02567976340651512, -0.00639217859134078, 0.018697643652558327, -0.03237038105726242, -0.005916756112128496, -0.009230833500623703, -0.006506696809083223, 0.007974606938660145, 0.026720834895968437, 0.005583613179624081, 0.002769250189885497, 0.015046953223645687, -0.004254512023180723, 0.03209276124835014, -0.004205928649753332, 0.0033366340212523937, -0.05127624049782753, -0.0018184047657996416, -0.013284072279930115, 0.029205525293946266, -0.01901690475642681, 0.005836940836161375, -0.012159714475274086, -0.01617131009697914, -0.008515964262187481, 0.02052992954850197, 0.010889607481658459, 0.025776930153369904, 0.02336164377629757, -0.022209525108337402, -0.006399119272828102, 0.010854905471205711, 0.0034997351467609406, 0.000315141020109877, -0.0022487144451588392, -0.014810976572334766, 0.00217930949293077, -0.01148648839443922, 0.031232144683599472, 0.006506696809083223, -0.014123869128525257, 0.010577285662293434, -0.012194417417049408, -0.007863559760153294, 0.016615500673651695, 0.006905774120241404, -0.0037617383059114218, 0.026637548580765724, -0.009418226778507233, 0.043308570981025696, -0.03001062013208866, 0.018489429727196693, 0.0096889054402709, 0.006482405122369528, -0.024305548518896103, -0.005302524194121361, 0.006298482418060303, 0.011840452440083027, 0.01619907282292843, 0.006458113435655832, 0.005260881036520004, -0.019822001457214355, 0.007946845144033432, -0.0190446674823761, 0.0040150657296180725, 0.0018131994875147939, -0.03939414396882057, 0.0028733571525663137, 0.034535810351371765, 0.014616643078625202, 0.03720095381140709, 0.006510166916996241, -0.0058334702625870705, 0.0023979346733540297, 0.011597536504268646, 0.03645138069987297, 0.003501470433548093, 0.00737772649154067, -0.0021012292709201574, -0.027248309925198555, -0.02853923849761486, -0.0036021072883158922, -0.021598761901259422, -0.005760595202445984, -0.005364988464862108, -0.0066732680425047874, -0.01100065466016531, 0.014005881734192371, 0.0073013813234865665, 0.016476690769195557, 0.0052851727232337, -0.021473834291100502, -0.02917776256799698, 0.023153429850935936, 0.012728833593428135, -0.00268769939430058, 0.004008125048130751, -0.019225120544433594, -0.00636094668880105, -0.03425819054245949, 0.04736180976033211, -0.013304892927408218, 0.022834166884422302, 0.026123953983187675, -0.014026702381670475, -0.009098964743316174, -0.004913857206702232, 0.03026047721505165, -0.003973422572016716, 0.030066143721342087, 0.01814240589737892, -0.010827142745256424, 0.006642036139965057, -0.006864130962640047, 0.024791382253170013, 0.019835881888866425, -0.0035153513308614492, -0.020932476967573166, 0.011063119396567345, 0.02039111964404583, -0.004198988433927298, -4.520798484008992e-06, -0.019808119162917137, -0.013526988215744495, 0.0022521845530718565, -0.0059861610643565655, 0.013804608024656773, -0.02373642846941948, 0.006694089621305466, 0.016962524503469467, -0.010119214653968811, -0.00217930949293077, -0.015407857485115528, -0.002562770852819085, 0.01693476177752018, 0.07129257172346115, 0.004605005960911512, -0.022334452718496323, 0.012985631823539734, -0.02137666754424572, 0.00534416688606143, -0.016115786507725716, -0.010223321616649628, 0.012340166606009007, 0.005826530046761036, 0.011077000759541988, -0.024388834834098816, 0.032425906509160995, -0.0012813854264095426, 0.015616072341799736, -0.0073707858100533485, -0.010667512193322182, 0.012909285724163055, 0.0036958036944270134, -0.012090309523046017, 0.018086882308125496, -0.019474977627396584, 0.006322774104773998, 0.02287581004202366, -0.03506328538060188, -0.006648976355791092, 0.04192047938704491, -0.0004431060515344143, 0.013846250250935555, -0.02112681046128273, -0.009897119365632534, 0.030621381476521492, 0.020321715623140335, 0.015421738848090172, -0.015546667389571667, 0.0026859643403440714, 0.01912795379757881, 0.023167310282588005, -0.007356904912739992, -0.0033227531239390373, 0.013464524410665035, 0.014394547790288925, 0.0127218933776021, -0.004778517875820398, 0.02915000170469284, -0.005673839244991541, -0.005781416781246662, -0.00047281995648518205, 0.0036506906617432833, -7.536923658335581e-05, 0.035896144807338715, 0.0049728513695299625, -0.01594921387732029, -0.014991428703069687, 0.03986609727144241, 0.0010471444111317396, 0.00432738708332181, 0.007190333679318428, -0.013124440796673298, -0.0010584226110950112, 0.008876869454979897, -0.002141136908903718, 0.007912143133580685, -0.008564547635614872, -0.007683107163757086, -0.026248881593346596, -0.02087695337831974, -0.014241857454180717, -0.0207381434738636, 0.0232367143034935, -0.025763047859072685, 0.0023979346733540297, -0.006909244228154421, 0.0011616622796282172, 0.0044419048354029655, 0.004910387098789215, 0.015130238607525826, -0.02865028753876686, 0.0075442977249622345, 0.01728178560733795, -0.01604638062417507, -0.02101576328277588, 0.0024100805167108774, -0.029455382376909256, -0.005070018116384745, -0.015727119520306587, 0.01617131009697914, 0.01657385751605034, -0.01962766796350479, 0.004598065745085478, -0.009293298237025738, -0.0022209524177014828, -0.012943988665938377, 0.0005721555207856, 0.008932393044233322, 0.000245953124249354, 0.011798810213804245, -0.008661714382469654, -0.013068917207419872, -0.0143390242010355, 0.0005543705774471164, -0.027123382315039635, -0.00553502980619669, 0.0023458809591829777, 0.008342452347278595, -0.008627012372016907, 0.008515964262187481, 0.023278357461094856, -0.009827714413404465, -0.01631012000143528, -0.009904059581458569, -0.02484690584242344, 0.0013716116081923246, 0.007884381338953972, -0.006118029821664095, 0.0006537061417475343, 0.002932351315394044, 0.018073000013828278, 0.0077178096398711205, -0.02101576328277588, -0.016018619760870934, -0.029982857406139374, -0.001360333408229053, 0.003282845253124833, -0.011146404780447483, 0.009931821376085281, 0.005885524209588766, 0.0010055014863610268, 0.010389893315732479, -0.0024482531007379293, -0.008515964262187481, 0.013617214746773243, -0.0033453095238655806, -0.038505762815475464, -0.03395280987024307, 0.0009829449700191617, -0.019211238250136375, 0.002594002988189459, -0.006506696809083223, 0.003963012248277664, -0.02592962048947811, -0.0011642648605629802, -0.0062950123101472855, -0.019863642752170563, -0.012902345508337021, -0.02939985878765583, -0.02111293002963066, -0.015727119520306587, -0.002576651982963085, 0.019461095333099365, -0.00791908334940672, -0.01210419088602066, -0.025749167427420616, 0.0023875238839536905, -0.019933048635721207, -0.01217359583824873, -0.018739286810159683, -0.010077571496367455, 0.019239000976085663, -0.011292154900729656, 0.01693476177752018, -0.03250919282436371, 0.016768191009759903, 0.006707970518618822, 0.012798238545656204, -0.0031561816576868296, -0.01123663131147623, -0.03697885945439339, -0.04730628803372383, -0.0007374256383627653, 0.020099619403481483, 0.016712667420506477, 0.01743447594344616, -0.016129666939377785, -0.007731690537184477, 0.04436352476477623, -0.0013655386865139008, -0.0036368095315992832, -0.022265048697590828, -0.03373071551322937, -0.03414714336395264, 0.026984572410583496, -0.01682371459901333, 0.018184049054980278, -0.022639833390712738, 0.002665142994374037, 0.05124847963452339, 0.004802809562534094, -0.008502083830535412, -0.01915571466088295, 0.03348085656762123, -0.02098800055682659, 0.02976076304912567, -0.006433821748942137, 0.05494081228971481, -0.012812119908630848, 0.02620723843574524, -0.01142402458935976, -0.0035517888609319925, 0.015269048511981964, 0.006506696809083223, 0.008397976867854595, -0.02050216682255268, -0.021348904818296432, -0.007752512115985155, 0.011472607962787151, -0.005951458588242531, -0.017948072403669357, 0.02373642846941948, -0.025110643357038498, -0.024666452780365944, -0.0047889286652207375, -0.015171881765127182, -0.032564714550971985, -0.018017476424574852, -0.0007027232204563916, -0.0009274211479350924, 0.04180942848324776, -0.011771048419177532, -0.002682494232431054, 0.009258595295250416, -0.011937619186937809, 0.05185924097895622, 0.018322857096791267, 0.03667347878217697, 0.003890136955305934, -0.02151547744870186, -0.007315262220799923, 0.004070589318871498, -0.004348208662122488, -0.006517107132822275, 0.0345635712146759, 0.01890585757791996, -0.0028299791738390923, -0.0018114643171429634, 0.004316976293921471, 0.010591167025268078, -0.04025476425886154, -0.016143547371029854, 0.016712667420506477, 0.005909815896302462, 0.005024904850870371, -0.011028417386114597, 0.0059931012801826, -0.035035524517297745, 0.013325714506208897, 0.017337309196591377, 0.006815548054873943, -0.002732812659814954, -0.015602190978825092, -0.015518905594944954, 0.02125173807144165, 0.018128523603081703, 0.028136691078543663, 0.020682619884610176, -0.03137095272541046, -0.015310690738260746, -0.0056981309317052364, -0.025610357522964478, -0.006603863090276718, 0.009328000247478485, 0.029094476252794266, -0.014283500611782074, -0.0037686787545681, -0.00023836198670323938, 0.004629297647625208, -0.008279988542199135, -0.00031622545793652534, -0.006874541752040386, 0.03300890699028969, -0.0008575826068408787, 0.0064130001701414585, -0.0021394018549472094, 0.0260684285312891, 0.019669309258461, 0.023195073008537292, 0.007960726507008076, 0.0012614316074177623, -0.024985715746879578, 0.0022521845530718565, 0.009001797996461391, 0.003019107272848487, -0.004823631141334772, -0.021904144436120987, -0.024430476129055023, -0.012687190435826778, -0.0016986816190183163, -0.012374869547784328, 0.015158000402152538, -0.04236466810107231, -0.03137095272541046, -0.0004459256015252322, -0.022514905780553818, 0.005750184878706932, -0.014880381524562836, 0.018975261598825455, -0.00890463124960661, 0.021432191133499146, -0.018447786569595337, 0.026734715327620506, -0.012520619668066502, 0.02025230973958969, -0.03772842884063721, 0.010535643436014652, 0.002151547698304057, -0.017989715561270714, 0.01989140547811985, -0.027123382315039635, -0.038117095828056335, -0.0025159227661788464, 0.01940557174384594, 0.014491714537143707, 0.0014184598112478852, -0.0002052862837444991, 0.000390618690289557, -0.004552952479571104, -0.0007022894569672644, -0.010799380950629711, -0.032065000385046005, 0.02320895344018936, 0.012937048450112343, 0.0033001964911818504, 0.0021862501744180918, -0.03445252403616905, 0.028872381895780563, 0.007821916602551937, -0.005923696793615818, 0.0018600476905703545, -0.04233690723776817, 0.008030131459236145, 0.010542583651840687, 0.02830326370894909, -0.013450643047690392, 0.00920307170599699, -0.014096107333898544, -0.030232714489102364, -0.010313548147678375, 0.00503531564027071, 0.0024864256847649813, -0.016337880864739418, 0.023764191195368767, 0.026748595759272575, -0.004490488208830357, -0.0013325714971870184, -0.011174166575074196, 0.001620601280592382, 0.007579000201076269, 0.00022166146663948894, -0.037617381662130356, 0.008266107179224491, -0.006631625350564718, 0.0400049053132534, -0.02148771472275257, -0.03153752535581589, -0.009626440703868866, -0.019835881888866425, -0.033786240965127945, -0.037367526441812515, 0.01803135685622692, 0.03364742919802666, 0.04555728659033775, 0.026137834414839745, 0.01007063128054142, 0.015491143800318241, -0.029927333816885948, 0.01901690475642681, -0.023042380809783936, 0.006766964681446552, 0.003730506170541048, 0.004032416734844446, -0.004643178544938564, -0.006357476580888033, -0.02581857144832611, 0.0007469687843695283, 0.014227977022528648, -0.006156202405691147, 0.0011113437358289957, 0.03295338153839111, -0.011049238033592701, 0.012777416966855526, -0.017476119101047516, 0.025999024510383606, 0.01043847668915987, 0.0062082563526928425, 0.005927166901528835, -0.021348904818296432, -0.009119786322116852, -0.0058126491494476795, 0.0072736190631985664, -0.0027866011951118708, -0.021848618984222412, -0.009168369695544243, 0.0024100805167108774, 0.030343763530254364, -0.000919613114092499, -0.013582512736320496, -0.007828857749700546, -0.032314859330654144, 0.04661224037408829, -0.004008125048130751, -0.0007474025478586555, 0.03248142823576927, 0.013402059674263, -0.02534662000834942, -0.0013108825078234076, -0.004646649118512869, 0.015852048993110657, -0.02115457132458687, 0.030704667791724205, -0.013922595418989658, 0.016587737947702408, 0.003976893145591021, 0.01657385751605034, -0.006124970503151417, -0.0018895446555688977, 0.003817262127995491, 0.003074631094932556, -0.005923696793615818, 0.01118804793804884, 0.023750310763716698, -0.017142977565526962, -0.0046154167503118515, 0.019933048635721207, 0.013596393167972565, 0.023139547556638718, -0.013506166636943817, -0.014096107333898544, 0.010681393556296825, 0.015852048993110657, 0.017739858478307724, 0.0018513720715418458, -0.014450072310864925, 0.0072042145766317844, 0.004042827524244785, -0.0410320982336998, -0.00636094668880105, 0.18345066905021667, -0.022806406021118164, 0.011208869516849518, 0.015727119520306587, -0.011861274018883705, 0.006284601520746946, 0.023750310763716698, 0.010535643436014652, -0.0035743452608585358, -0.004716053605079651, -0.02322283387184143, 0.013228547759354115, -0.0011989673366770148, 0.01168776210397482, -0.019114071503281593, 0.0059861610643565655, -0.04178166761994362, 0.008751940913498402, -0.01962766796350479, -0.048999764025211334, -0.001257093739695847, -0.01814240589737892, 0.006086797919124365, -0.01168776210397482, 0.023500453680753708, -0.0021879852283746004, -0.0019016904989257455, -0.007953786291182041, 0.04636238142848015, 0.008044011890888214, -0.03336980938911438, -0.007870499975979328, -0.008446560241281986, -0.0113060362637043, -0.015393977053463459, -0.002472544787451625, 0.023528214544057846, 0.013381238095462322, 0.03969952464103699, 0.007884381338953972, -0.00010161290992982686, -0.004955500364303589, -0.012832940556108952, -0.006846779957413673, -0.008807464502751827, 0.04630685970187187, -0.012520619668066502, -0.008529845625162125, -0.009827714413404465, 0.024319428950548172, -0.024777499958872795, 0.023181190714240074, 0.050471145659685135, 0.024388834834098816, -0.012590024620294571, -0.0007669226615689695, -0.004889565519988537, 0.020363356918096542, -0.022320572286844254, 0.018003595992922783, -0.02386135794222355, 0.017517762258648872, -0.009772190824151039, 0.039338618516922, -0.02348657138645649, -0.0043725003488361835, -0.0013100149808451533, -0.018447786569595337, 0.032425906509160995, -0.030954524874687195, -0.0034632976166903973, -0.015060833655297756, 0.00010107069101650268, 0.016698786988854408, -0.0018236101604998112, -0.019780358299613, 0.026415452361106873, -0.015227405354380608, -0.0007456674356944859, 0.004518250003457069, 0.011784928850829601, -0.02853923849761486, 0.0068953633308410645, -0.016532214358448982, -0.007565119303762913, -0.027484286576509476, -0.004143464379012585, -0.014713809825479984, -0.024069571867585182, 0.01160447672009468, -0.023944644257426262, -0.010334369726479053, 0.004743815399706364, -0.017462238669395447, -0.0030659553594887257, 0.005757125094532967, 0.008932393044233322, 0.0007387269870378077, 0.01205560751259327, -0.0058334702625870705, -0.013513107784092426, -0.008030131459236145, 0.03348085656762123, 0.02039111964404583, -0.026776358485221863, -0.00553502980619669, 0.0013915655435994267, 0.0015997798182070255, 0.004046297632157803, -0.014283500611782074, 0.03384176269173622, -0.02370866760611534, 0.003994244150817394, -0.016851477324962616, -0.001321293180808425, 0.013561691157519817, -0.0158104058355093, -0.005115130916237831, -0.008446560241281986, 0.022778643295168877, 0.026123953983187675, -0.017934191972017288, -0.007683107163757086, -0.0015390506014227867, -0.009445988573133945, -0.009772190824151039, -0.051720429211854935, 0.01704581081867218, -0.004601535852998495, -0.028455954045057297, 0.02730383351445198, -0.03064914420247078, 0.004514779895544052, 0.009279416874051094, -0.01915571466088295, 0.018822571262717247, -0.014005881734192371, -0.033786240965127945, 0.012506738305091858, 0.004521720577031374, 0.004830571357160807, -0.0011434435145929456, -0.0012683720560744405, 0.007176452782005072, -0.0039109583012759686, -0.013186905533075333, 0.0019919166807085276, -0.005198416765779257, -0.013985060155391693, -0.025527073070406914, -0.016837595030665398, -0.011666940525174141, -0.01030660793185234, -0.0113060362637043, 0.01557442918419838, 0.007856619544327259, -0.0186421200633049, -0.01030660793185234, 0.0025055119767785072, 0.023153429850935936, -0.03164857253432274, -0.006204785779118538, 0.023056263104081154, -0.010611988604068756, -0.006065976340323687, -0.002607884118333459, -0.17789828777313232, 0.007398548070341349, 0.011222749948501587, -0.005201886873692274, 0.015629952773451805, 0.03722871467471123, 0.03817262127995491, 0.005798768252134323, 0.0014028437435626984, -0.014151631854474545, 0.0454462394118309, 0.01753164269030094, -0.028622524812817574, -0.005413571372628212, -0.01707357168197632, 0.005260881036520004, -0.018003595992922783, 0.02420838177204132, 0.03239814564585686, 0.011229691095650196, -0.0016891384730115533, -0.005333756096661091, 0.012694131582975388, -0.001450559590011835, -0.002528068609535694, 0.013728261925280094, 0.0023875238839536905, 0.015282928943634033, 0.008113416843116283, -0.012943988665938377, -0.010841024108231068, -0.0030104315374046564, 0.014533357694745064, -0.0038484942633658648, 0.0014965402660891414, 0.004736875183880329, -0.01018861960619688, -0.009980404749512672, -0.008946274407207966, 0.007155631203204393, 0.017240144312381744, -0.013124440796673298, 0.03336980938911438, -0.0010245877783745527, -0.0005092574283480644, 0.025249453261494637, 0.008328571915626526, -0.021779214963316917, -0.0020144733134657145, -0.026984572410583496, 0.007884381338953972, 0.012437333352863789, 0.010611988604068756, 0.0058820536360144615, 0.034785669296979904, 0.024555405601859093, 0.005580143071711063, -0.008495142683386803, -0.012881523929536343, -0.022098476067185402, -0.0098901791498065, 0.006624684669077396, -0.007620642893016338, -0.01604638062417507, 0.008266107179224491, -0.009494571946561337, -0.026845762506127357, 0.004625827539712191, -0.02039111964404583, -0.002246979158371687, -0.0006194375455379486, 0.0036194585263729095, 0.033536382019519806, -0.019225120544433594, -0.016893120482563972, 0.005358047783374786, -0.030316000804305077, 0.011548953130841255, -0.008842166513204575, -0.0150747150182724, -0.03992161899805069, 0.03767290711402893, -0.014352905564010143, -0.00932106003165245, 0.01682371459901333, 0.006076387129724026, -0.0062776608392596245, -0.02494407258927822, -0.017628809437155724, -0.01655997708439827, 0.013256309553980827, -0.02559647709131241, -0.009987345896661282, -0.007363845594227314, 0.028983429074287415, 0.006690619047731161, -0.0027414881624281406, 0.00010757738346001133, -0.01061892881989479, -0.02028007246553898, 0.006614273879677057, -0.022042952477931976, -0.007801095489412546, 0.01426961924880743, 0.030204953625798225, 0.019447214901447296, 0.008279988542199135, 0.041087619960308075, 0.027636976912617683, 0.028567001223564148, -0.020113499835133553, 0.00034832514938898385, 0.028400428593158722, 0.0074748932383954525, 0.003470238298177719, 0.018114643171429634, -0.028594762086868286, -0.028483714908361435, 0.01914183422923088, -0.01865600049495697, 0.04905528575181961, -0.002080407692119479, 0.008064833469688892, -0.0096333809196949, 0.006371357478201389, -0.02345881052315235, -0.10965953022241592, -0.004091410897672176, 0.006423410959541798, 0.00021276898041833192, -0.024555405601859093, 0.014012821950018406, -0.0013386444188654423, 0.011729405261576176, 0.010528702288866043, 0.01365191675722599, -0.030954524874687195, -0.027609216049313545, 0.0028664167039096355, -0.013756024651229382, -0.002748428611084819, -0.011833512224256992, -0.008425738662481308, 0.004011595156043768, -0.011458726599812508, 0.022792523726820946, 0.004889565519988537, -0.029566429555416107, -0.011063119396567345, -0.007502655033022165, -0.006447702646255493, 0.004521720577031374, -0.042559001594781876, 0.010563405230641365, 0.028511477634310722, 0.00484445272013545, -0.015560547821223736, -0.01851719059050083, 0.004143464379012585, -0.005479506216943264, -0.002864681649953127, -0.010743857361376286, -0.03214828670024872, 0.008828286081552505, 0.020446643233299255, -0.02928880974650383, -0.0004793266416527331, -0.008411857299506664, 0.035812858492136, -0.02115457132458687, 0.02028007246553898, 0.0010011637350544333, -0.020682619884610176, 0.00450783921405673, 0.005847351159900427, -0.03423042967915535, 0.00870335754007101, -0.010230261832475662, -0.04536295309662819, -0.026401571929454803, 0.03817262127995491, -0.008120357058942318, 0.03495223820209503, -0.006471994332969189, -0.01667102426290512, -0.009418226778507233, -0.030843477696180344, 0.0037790893111377954, 0.0018826042069122195, 0.03137095272541046, 0.02719278633594513, -0.008786642923951149, 0.0068016666918993, -0.03259247541427612, 0.030538097023963928, 0.014047523960471153, -0.007814976386725903, 0.02444435842335224, -0.023250596597790718, 0.006485875230282545, -0.005021434742957354, -0.0008541123825125396, -0.03320324048399925, -0.008252226747572422, 0.009418226778507233, -0.0026755535509437323, -0.005070018116384745, -0.01532457210123539, 0.00512554170563817, 0.0041018216870725155, 0.006444232538342476, 0.00902261957526207, 0.0141377504914999, -0.01143790502101183, -0.006249899044632912, -0.027401000261306763, 0.0018982202745974064, -0.004421083256602287, -0.008627012372016907, -0.031593047082424164, 0.021571001037955284, 0.0330921933054924, 0.02778966724872589, 0.00553502980619669, -0.004094881005585194, 0.010514821857213974, -0.01779538206756115, -0.0004177299269940704, -0.0686829537153244, 0.028567001223564148, 0.016337880864739418, 0.014505595900118351, -0.004525190684944391, 0.002920205472037196, 0.007579000201076269, -0.005555851384997368, -0.03556299954652786, 0.02791459672152996, -0.024569286033511162, 0.0435306690633297, -0.025554833933711052, -0.013124440796673298, -0.02061321586370468, 0.004212869331240654, 0.012020905502140522, -0.019433334469795227, 0.024374952539801598, 0.005666899029165506, 0.005732833407819271, 0.0038207322359085083, 0.03870009630918503, 0.0012970014940947294, -0.028844619169831276, 0.019363928586244583, -0.0016292767832055688, 0.01987752504646778, 0.003006961429491639, -0.02459704875946045, 0.012465096078813076, -0.020599333569407463, 0.004365559667348862, 0.01754552498459816, 0.016212953254580498, 0.026262762024998665, -0.007113988511264324, -0.010181678459048271, 0.017226262018084526, 0.06168695539236069, -0.0074748932383954525, -0.007953786291182041, -0.0023077083751559258, -0.015130238607525826, -0.015241285786032677, 0.02309790626168251, -0.024638691917061806, 0.0025801220908761024, 0.017142977565526962, -0.011902917176485062, 0.007572059985250235, 0.015796523541212082, -0.0057258931919932365, -0.02287581004202366, 0.015158000402152538, -0.01768433302640915, 0.055162906646728516, 0.00248816073872149, 0.008023190312087536, -0.019738715142011642, 0.010667512193322182, -0.011083940975368023, 0.03064914420247078, -0.0046154167503118515, 0.021543238312005997, -0.027095619589090347, -0.00938352383673191, -0.015199643559753895, -0.00790520291775465, -0.02522169053554535, -0.006170083303004503, -0.0019658899400383234, -0.0006055565900169313, 0.037145428359508514, 0.005250470247119665, 0.010264964774250984, 0.014658286236226559, -0.007488774135708809, -0.03278680890798569, 0.006347065791487694, 0.008252226747572422, -0.01928064413368702, -0.03270352631807327, 0.005198416765779257, 0.010327428579330444, -0.008203643374145031, -0.0019138363422825933, 0.009175309911370277, -0.007384666707366705, 0.012367929331958294, 0.017934191972017288, -0.012638607993721962, -0.004056708421558142, -0.016657143831253052, 0.0019832411780953407, 0.002250449499115348, -0.021432191133499146, -0.018628237769007683, 0.026720834895968437, 0.04888871684670448, -0.013131381012499332, -0.006624684669077396, -0.007898261770606041, -0.013992000371217728, -0.02090471424162388, -0.028025643900036812, -0.03076019138097763, -0.008515964262187481, -0.008057893253862858, 0.01853107288479805, 0.042420193552970886, 0.0004322615568526089, 0.019794238731265068, 0.008460440672934055, -0.008592309430241585, -0.0007057596812956035, 0.00964032206684351, -0.026873525232076645, -0.008807464502751827, 0.035035524517297745, 0.001952009042724967, 0.022806406021118164, 0.04394709691405296, 0.009008738212287426, 0.03364742919802666, 0.024874666705727577, 0.022820286452770233, 0.01631012000143528, 0.01606026291847229, 0.009716667234897614, -0.0035292322281748056, -0.0005643474869430065, -0.029483143240213394, 0.0012510208180174232, -0.01500531006604433, -0.0318429060280323, 0.007870499975979328, 0.003681922797113657, -0.007054994348436594, 0.050721000880002975, 0.017031928524374962, -0.013242429122328758, -0.000315141020109877, 0.025124523788690567, 0.019710952416062355, 0.03845024108886719, -0.008189762011170387, 0.004403732251375914, -0.010924309492111206, 0.006711440626531839, -0.01792030967772007, 0.04611252620816231, -0.012583083473145962, 0.0019016904989257455, -0.00018207906396128237, -0.002765779849141836, 0.03845024108886719, -0.00741936918348074, -0.023139547556638718, 0.02028007246553898, 0.01987752504646778, 0.0385335236787796, 0.00822446495294571, -0.004969381261616945, -0.012090309523046017, 0.014949786476790905, -0.005607904866337776, -0.0007430647383444011, -0.04167062044143677, 0.01458888128399849, 0.013749083504080772, -0.0008701622136868536, -0.007481833454221487, 0.016101906076073647, -0.020488286390900612, 0.01223605964332819, -0.0001187472153105773, 0.02420838177204132, 0.015907572582364082, -0.006912714336067438, -0.010133096016943455, -0.01557442918419838, -0.033925049006938934, 0.013867071829736233, -0.008231405168771744, -0.014505595900118351, -0.020835310220718384, -0.04180942848324776], "0bf97244-5c2a-46a2-93eb-5681b6e3603f": [-0.0027073100209236145, -0.018470177426934242, 0.0002821546222548932, 0.000660937512293458, -0.011454532854259014, 0.017123393714427948, -0.011255264282226562, -0.008438012562692165, -0.008534210734069347, -0.025066668167710304, 0.030646201223134995, 0.001899927039630711, 0.0189511701464653, 0.009908480569720268, 0.0004882949870079756, -0.0015838451217859983, 0.027952633798122406, -0.017947955057024956, 0.03740760311484337, -0.014704679138958454, -0.00743479561060667, 0.0033480629790574312, -0.018483920022845268, 0.003265606937929988, -0.016312574967741966, 0.024104679003357887, 0.020229240879416466, -0.022620469331741333, 0.0015202851500362158, -0.024695616215467453, -0.0064693717285990715, 0.008348684757947922, -0.0008378746570087969, 0.01671111211180687, -0.032487720251083374, -0.011475146748125553, 0.02528655156493187, -0.032047953456640244, 0.0011372077278792858, 0.014690936543047428, 0.013790789991617203, 0.0015649489359930158, -0.0004204404540359974, 0.009372515603899956, -0.008039474487304688, 0.029491813853383064, -0.009111404418945312, -0.024407019838690758, -0.01106286607682705, 0.03487895056605339, 0.017714329063892365, 0.007943275384604931, -0.024970469996333122, 0.013708334416151047, -0.010203948244452477, -0.010595615021884441, 0.015171931125223637, 0.032240353524684906, -0.02235935814678669, -0.0006519188755191863, 0.02180965058505535, 0.01650497131049633, -0.009702339768409729, 0.016546199098229408, -0.021589767187833786, -0.00917324610054493, -0.014306141063570976, -6.865977047709748e-05, -0.012059210799634457, -0.003411622950807214, 0.041255559772253036, 0.02830994315445423, -0.002497734036296606, 0.020174270495772362, 0.022111989557743073, -0.018030410632491112, -0.02916198968887329, -0.011303363367915154, -0.021521054208278656, 0.016023976728320122, -0.004243055824190378, -0.020545322448015213, 0.001011805608868599, -0.010087135247886181, 0.023252632468938828, -0.00547989783808589, 0.011832457035779953, 0.027650294825434685, -0.02049035206437111, -0.032515205442905426, 0.0040231728926301, 0.011695030145347118, 0.036912865936756134, 0.02773275040090084, -0.00789517629891634, 0.02773275040090084, -0.007984503172338009, 0.012196637690067291, -0.0016534174792468548, -0.039111699908971786, -0.02014678530395031, 0.007544737309217453, -0.017783042043447495, -0.006486549973487854, -0.03158070519566536, 0.023527486249804497, -0.006493421271443367, 0.005260014906525612, 0.021191230043768883, -0.011633187532424927, -0.023060236126184464, 0.011392691172659397, -0.004047222435474396, -0.053651466965675354, -0.014471053145825863, -0.011152193881571293, 0.04240994527935982, -0.01660117134451866, -0.0059162285178899765, -0.00940687209367752, 0.008870907127857208, 0.006747661158442497, 0.013351024128496647, -0.016037719324231148, 0.025506434962153435, -0.0015159905888140202, 0.0021764987614005804, -0.032652635127305984, -0.004191520623862743, -0.00218680570833385, 0.008506725542247295, 0.0027605630457401276, 0.02913450449705124, -0.004150292836129665, -0.00781271979212761, 0.017302047461271286, -0.036528073251247406, -4.23285600845702e-05, -0.013756433501839638, -0.027402926236391068, 0.039496492594480515, 0.015680409967899323, 0.007269883528351784, -0.03683041036128998, -0.018401462584733963, 0.006891959346830845, 0.009922223165631294, 0.021424854174256325, -0.016408773139119148, 0.0043048979714512825, 0.018222808837890625, -0.005476462189108133, 0.012512720189988613, -0.004930190276354551, 0.013790789991617203, -0.006307895295321941, 0.008183772675693035, -0.0032157895620912313, -0.01529561448842287, -0.004686257801949978, -0.002770869992673397, 0.010265789926052094, -0.00030684852390550077, -0.0015718202339485288, 0.007159941829741001, 0.033229827880859375, 0.0011492324993014336, -0.004009429831057787, -0.031635675579309464, -0.008389912545681, 0.008080702275037766, 0.007654679007828236, -0.01207982562482357, -0.01027953252196312, -0.010094006545841694, 0.015914035961031914, 0.03188304230570793, 0.02600117027759552, -0.034191813319921494, 0.012224123813211918, -0.021727195009589195, -0.029052048921585083, 0.03182807192206383, 0.012031725607812405, -0.02277163788676262, -0.010217690840363503, 0.003028545528650284, 0.005919664166867733, 0.00813567265868187, 0.009283187799155712, 0.007579093798995018, 0.02491549775004387, -0.023390060290694237, -0.026564622297883034, -0.6209497451782227, -0.015982748940587044, -0.012904386967420578, -0.006709869019687176, -0.023128949105739594, -0.006819810252636671, 0.010100877843797207, 0.014251170679926872, -0.00028451666003093123, 0.005132894963026047, -0.028200002387166023, 0.015570469200611115, -0.031030995771288872, -0.013673976995050907, -0.011853070929646492, -0.02093011885881424, 0.015364328399300575, -0.036363158375024796, 0.00308866985142231, -0.036638014018535614, -0.01272573135793209, 0.008884649723768234, -0.0048374272882938385, 0.018167836591601372, -0.015707895159721375, -0.006386915687471628, 0.014154971577227116, 0.021974563598632812, 0.015089474618434906, 0.031058480963110924, -0.04089824855327606, 0.036665499210357666, 0.04056842252612114, 0.011330848559737206, 0.036335673183202744, 0.000775603111833334, -0.024104679003357887, 0.012182895094156265, 0.00016995843907352537, 0.0071805561892688274, -0.025355264544487, -0.02422836422920227, 0.004964547231793404, 0.007503509055823088, 0.017549416050314903, 0.03298245742917061, 0.018676316365599632, -0.011392691172659397, 0.0019394372357055545, -0.006613669916987419, 0.0024994518607854843, -0.00693318760022521, -0.007352339569479227, -0.0006678088684566319, 0.019184796139597893, 0.0003087810764554888, 0.015336843207478523, -0.029656726866960526, -0.003212353913113475, 0.015529240481555462, 0.018635088577866554, 0.03342222422361374, -0.019624562934041023, -0.010471930727362633, -0.02494298480451107, 0.010458188131451607, -0.01576286554336548, 0.013323538936674595, 0.002477120142430067, -0.025822516530752182, 0.007098099682480097, 0.010059650056064129, 0.0027674343436956406, -0.01272573135793209, 0.010148976929485798, 4.1979626985266805e-05, 0.03276257589459419, -0.02602865733206272, -0.0040059941820800304, 0.022538013756275177, 0.004899269435554743, -0.010162719525396824, -0.022744152694940567, -0.023939767852425575, 0.024901755154132843, -0.016683626919984818, -0.007826462388038635, 0.03628070279955864, 0.0045179096050560474, 0.0043323831632733345, 0.009722953662276268, 0.010478802025318146, -0.003406469477340579, -0.0008576298132538795, 0.023500001057982445, 0.010884211398661137, -0.016243860125541687, -0.0006433296948671341, 0.012670760974287987, -0.0005385417025536299, -0.0018518276046961546, -0.012052339501678944, 0.0091045331209898, -0.013344152830541134, -0.02079269103705883, -0.0035937137436121702, -0.025808773934841156, -0.0072217839770019054, 0.04727485775947571, -0.030316375195980072, 0.0005411184392869473, -0.011090351268649101, -0.0082181291654706, -0.0023242325987666845, 0.0053974417969584465, -0.031498245894908905, 0.03655555844306946, -0.00020957604283466935, 0.014402340166270733, -0.01864883117377758, 0.029189474880695343, -0.018483920022845268, 0.025533920153975487, -0.009454971179366112, 0.015749122947454453, 0.04073333740234375, 0.0024393275380134583, -0.006060526706278324, -0.004397660959511995, -0.008994591422379017, -0.006768275052309036, -0.010499415919184685, 0.02763655222952366, 0.011605702340602875, 0.016697369515895844, -0.016106434166431427, 0.02252427116036415, 0.012821930460631847, 0.0051775588653981686, -0.036665499210357666, -0.010506287217140198, -0.014897077344357967, 0.008341813459992409, 0.001085672527551651, -0.023390060290694237, -0.030673686414957047, -0.014471053145825863, -0.008651023730635643, -0.030646201223134995, 0.000502467155456543, -0.012581433169543743, -0.008705995045602322, -0.0042980266734957695, 0.010753655806183815, 0.024599416181445122, -0.023252632468938828, -0.031663160771131516, 0.012938743457198143, 0.0028481727931648493, -0.014051901176571846, 0.011200292967259884, 0.006273538339883089, -0.019349709153175354, 0.027471639215946198, 0.022469298914074898, 0.0018861843273043633, -0.029629241675138474, 0.03795731067657471, -0.008843421936035156, -0.03416432812809944, -0.011681287549436092, 0.007689035497605801, -0.012347808107733727, 0.03529122844338417, -0.011461404152214527, -0.005146637558937073, 0.020105557516217232, -0.029821639880537987, -0.015680409967899323, 0.011983626522123814, -0.0030457237735390663, 0.020270468667149544, -0.001426663133315742, -0.025918714702129364, 0.014663451351225376, 0.015460527502000332, -0.019926901906728745, 0.0037345762830227613, 0.007290497422218323, 0.036088306456804276, -0.0007339455769397318, 0.010183334350585938, -0.019377194344997406, -0.01613391935825348, -0.009688597172498703, -0.023568714037537575, -0.0006536367582157254, 0.016010234132409096, 0.012313450686633587, 0.006984722800552845, 0.010575000196695328, 0.00959926936775446, 0.031938012689352036, -0.018291521817445755, 0.01994064450263977, -0.04529590904712677, 0.004088450688868761, -0.0024152779951691628, 0.03760000318288803, -0.01579035259783268, 0.0028756579849869013, -0.012794445268809795, -0.021314913406968117, -0.012389035895466805, 0.024104679003357887, 0.020174270495772362, 0.0207239780575037, 0.006225438788533211, -0.020833918824791908, 0.005287500098347664, 0.010629971511662006, -0.012121053412556648, 0.009709211066365242, -0.00029052907484583557, -0.01680731028318405, 0.0030405703000724316, 0.007173684425652027, 0.036335673183202744, -0.004469810053706169, -0.011605702340602875, 0.020696492865681648, -0.01592777855694294, -0.010080263949930668, 0.01892368495464325, 0.006105190608650446, 0.012444006279110909, 0.020229240879416466, -0.007166813127696514, 0.051782459020614624, -0.04100818932056427, 0.0041125002317130566, 0.011736257933080196, 0.011688158847391605, -0.015089474618434906, -0.009729824960231781, 0.014526024460792542, 0.016628656536340714, 0.00779210589826107, -0.0030766448471695185, -0.002303618472069502, -0.028254972770810127, 0.007324854377657175, -0.0041193715296685696, -0.016023976728320122, -2.4844880499585997e-06, -0.03581345081329346, 0.0025836259592324495, 0.023692399263381958, 0.016243860125541687, 0.03015146404504776, 0.006998465396463871, 0.00277774129062891, -0.0007197734084911644, 0.017480703070759773, 0.06777895241975784, 0.006125804502516985, 0.009571784175932407, 0.008259356953203678, -0.004583187401294708, -0.030123978853225708, -0.022318130359053612, -0.022180702537298203, -0.001254879403859377, -0.010368860326707363, -0.0031230265740305185, 0.009667983278632164, 0.022895323112607002, 0.004380482714623213, 0.0128494156524539, 0.005967763718217611, -0.03581345081329346, -0.028502341359853745, 0.025547662749886513, 0.007744006346911192, -0.0020150220952928066, -0.02116374485194683, -0.025740059092640877, -0.006325073540210724, -0.03727017715573311, 0.053239185363054276, -0.010121491737663746, 0.01708216406404972, 0.027691522613167763, -0.010568128898739815, 0.0031058480963110924, -0.004401096608489752, 0.03383450582623482, -0.015020760707557201, 0.01963830552995205, -0.0062357462011277676, 0.0010590461315587163, 0.008754094131290913, -0.013838890008628368, 0.02524532377719879, 0.02049035206437111, -0.0032089182641357183, -0.017480703070759773, -0.0002686266670934856, 0.013893860392272472, -0.01027953252196312, 0.011866813525557518, -0.02987661026418209, -0.002544115763157606, 0.006005555856972933, 0.0067029972560703754, 0.010265789926052094, -0.026537135243415833, 0.008197515271604061, 0.013790789991617203, -0.014154971577227116, 0.001862134668044746, -0.014361112378537655, -0.032652635127305984, -0.011406433768570423, 0.08042223006486893, 0.0051913014613091946, -0.02266169711947441, 0.015323100611567497, 0.009111404418945312, 0.005287500098347664, -0.018428947776556015, -0.004397660959511995, 0.023225147277116776, 0.013728948310017586, 0.00650029256939888, -0.030343862250447273, 0.03955146297812462, -8.073831122601405e-05, 0.006716740317642689, -0.005091667175292969, -0.018497662618756294, 0.011488889344036579, -0.005328728351742029, 0.0016216374933719635, 0.012031725607812405, 0.0018810308538377285, 0.01199736911803484, 0.011248392052948475, -0.020407896488904953, -0.013976316899061203, 0.03575848042964935, 0.0066823833622038364, 0.0020287646912038326, -0.021452341228723526, -0.017989182844758034, 0.02960175648331642, 0.009826024062931538, 0.020916376262903214, -0.012547076679766178, 0.014484795741736889, 0.012622661888599396, 0.02973918244242668, -0.009812281467020512, -0.0043461257591843605, 0.012031725607812405, 0.013371638022363186, 0.011729386635124683, -0.029189474880695343, 0.011990497820079327, -0.0033532166853547096, -0.00953055638819933, -0.010293275117874146, 0.003301681485027075, -0.00917324610054493, 0.035648539662361145, -0.005222222302109003, -0.015749122947454453, -0.007441666908562183, 0.02545146271586418, -0.011055994778871536, 0.003205482615157962, 0.0059574563056230545, -0.016078948974609375, 0.012663889676332474, 0.001248008105903864, 0.005026389379054308, 0.017123393714427948, -0.00789517629891634, -0.013220468536019325, -0.020160527899861336, -0.013687720522284508, 0.003198611317202449, -0.02650965005159378, 0.01830526441335678, -0.014031287282705307, 0.009365643374621868, -0.006239181850105524, 0.012361550703644753, -0.01318611204624176, -0.0012196637690067291, 0.006053655408322811, -0.01514444500207901, 0.012979971244931221, -0.006991594098508358, 0.0009465278126299381, -0.021754680201411247, -0.006355994381010532, -0.026976902037858963, -0.0012986842775717378, -0.030976025387644768, 0.002246930031105876, 0.023225147277116776, -0.003634941764175892, 0.015914035961031914, -0.020462866872549057, -0.0021009137853980064, -0.010183334350585938, 0.006390351336449385, -0.0001748972135828808, -0.00728362612426281, 0.0020270468667149544, -0.02392602525651455, -0.013948830775916576, -0.0033738305792212486, -0.0027227706741541624, -0.032652635127305984, -0.01543304231017828, -0.019074855372309685, 0.0072011700831353664, -0.003792982781305909, 0.00879532191902399, 0.031223393976688385, -0.004157164134085178, -0.002769152168184519, -0.0214111115783453, -0.028667252510786057, 0.0017710892716422677, 0.0028859651647508144, -0.007599708158522844, -0.013117398135364056, 0.016491228714585304, 0.006579313427209854, 0.0062769739888608456, -0.021699709817767143, -0.014471053145825863, -0.026866961270570755, 0.009296930395066738, 0.010018421337008476, -0.010066521354019642, 0.023609943687915802, -0.00523252971470356, -0.008946491405367851, 0.01908859796822071, -0.003648684360086918, -0.015034504234790802, 0.011447661556303501, -0.008053217083215714, -0.016120176762342453, -0.044938597828149796, 0.004974854178726673, -0.013591521419584751, 0.0004565150011330843, -0.010458188131451607, 0.00907017569988966, -0.006926316302269697, -0.020119300112128258, -0.0036211989354342222, -0.0232388898730278, -0.013838890008628368, -0.021727195009589195, -0.029271932318806648, -0.00028151043807156384, -0.004998903721570969, 0.007276754826307297, -0.01687602512538433, -0.022455556318163872, -0.02763655222952366, -0.012196637690067291, -0.002660928526893258, -0.01235467940568924, -0.010114620439708233, -0.012409649789333344, 0.021974563598632812, 0.004328947514295578, 0.02249678410589695, -0.021685965359210968, 0.011049123480916023, 0.001927412347868085, 0.004383918363600969, -0.00650716433301568, -0.021617252379655838, -0.02634473890066147, -0.05098538473248482, -0.012244737707078457, 0.025959942489862442, 0.031030995771288872, 0.00616703275591135, -0.006582749076187611, -0.005541739985346794, 0.028529826551675797, 0.0027846128214150667, 0.004188084974884987, -0.01977573148906231, -0.04067836329340935, -0.016546199098229408, 0.022950293496251106, -0.011310234665870667, 0.00530811445787549, -0.016587428748607635, -0.01691725291311741, 0.05931345373392105, 0.007056871894747019, 0.0021026316098868847, -0.02528655156493187, 0.023032749071717262, -0.019006142392754555, 0.008884649723768234, 0.00710497098043561, 0.026798246428370476, 0.0026506215799599886, 0.039798833429813385, -0.008994591422379017, -0.009736696258187294, -0.0004487847618293017, -0.0015701024094596505, 0.0009886148618534207, -0.011729386635124683, -0.00949619896709919, -0.017233334481716156, 0.0126776322722435, -0.02095760405063629, -0.012017983011901379, 0.02422836422920227, -0.03188304230570793, -0.022400585934519768, -0.012203509919345379, -0.006967544090002775, -0.034494154155254364, -0.015955263748764992, -0.002482273615896702, 0.008142543956637383, 0.01906111277639866, -0.016587428748607635, -0.0064556291326880455, 0.017480703070759773, -0.015872808173298836, 0.0493362620472908, 0.0007854806608520448, 0.03259766101837158, -0.0017161185387521982, -0.01919853873550892, 0.005655117332935333, 0.014113743789494038, -0.01344035193324089, -0.014663451351225376, 0.02572631649672985, 0.019899416714906693, 0.0027811771724373102, 0.008479240350425243, 0.0029890353325754404, 0.0015864218585193157, -0.03625321760773659, -0.02916198968887329, 0.03125087916851044, -0.003813596675172448, -0.004961111582815647, -0.006970979738980532, 0.0030646200757473707, -0.02099883183836937, 0.0025458335876464844, 0.009702339768409729, 0.023692399263381958, -0.0032192254438996315, 0.0031591011211276054, -0.015570469200611115, 0.026688305661082268, 0.02201579138636589, 0.026330996304750443, 0.024695616215467453, -0.02514912374317646, -0.020751463249325752, -0.02164473757147789, -0.022400585934519768, -0.019720761105418205, 0.0005832054303027689, 0.023747369647026062, -0.0050641815178096294, -0.009736696258187294, 0.005229094065725803, 0.005304678808897734, -0.005833772476762533, 0.008630409836769104, -0.004861476831138134, 0.02899707853794098, -0.0006519188755191863, 0.015364328399300575, 0.021053802222013474, 0.016175147145986557, 0.020036842674016953, 0.014690936543047428, 0.0004663925792556256, 0.0015185673255473375, -0.017879240214824677, 0.005167251918464899, 0.0005028966115787625, -0.0014567251782864332, -0.001788267632946372, -0.019418422132730484, -0.026564622297883034, -0.016559941694140434, -0.0006931469542905688, 0.01300058513879776, 0.009592398069798946, -0.039249125868082047, -0.026894446462392807, -0.005967763718217611, -0.026702048256993294, 0.005789108574390411, -0.019720761105418205, 0.019693275913596153, -0.0038307751528918743, 0.011104093864560127, -0.022331872954964638, 0.029189474880695343, -0.02136988379061222, 0.007929532788693905, -0.036940354853868484, 0.017549416050314903, 0.0009791667107492685, -0.01310365553945303, 0.01422368548810482, -0.02273041009902954, -0.037215206772089005, 0.0055898395366966724, -0.0019153875764459372, 0.009674854576587677, -0.0035078218206763268, 0.0009508224320597947, -0.001360526424832642, 0.005802851170301437, -0.000554002239368856, -0.015007018111646175, -0.039386551827192307, 0.03487895056605339, 0.022400585934519768, -0.007805848494172096, -0.0008640717132948339, -0.032515205442905426, 0.025039182975888252, -0.0012651864672079682, -0.010045907460153103, 0.0174944456666708, -0.04532339423894882, 0.008018859662115574, -0.010073392651975155, 0.027169300243258476, -0.007063743192702532, 0.0008172606467269361, -0.011392691172659397, -0.04043099656701088, -0.01756315864622593, 0.0040231728926301, 0.022620469331741333, -0.01260891929268837, 0.024283334612846375, 0.008973977528512478, -0.010423830710351467, -0.003435672726482153, -0.006538085173815489, -0.016958480700850487, 0.020242983475327492, -0.00728362612426281, -0.03215789794921875, -0.002284722402691841, -0.006410965230315924, 0.03454912453889847, -0.011097222566604614, -0.014017544686794281, -0.011756871826946735, -0.009090789593756199, -0.034219298511743546, -0.026798246428370476, 0.0029546786099672318, 0.038094740360975266, 0.034769006073474884, 0.027265498414635658, 0.016147661954164505, 0.008699123747646809, -0.020572807639837265, 0.02491549775004387, -0.016051463782787323, 0.002078582067042589, -0.009351900778710842, 0.011708772741258144, 0.003827339503914118, -0.012450877577066422, -0.019610820338129997, 0.013062427751719952, 0.021177487447857857, -0.007936404086649418, 0.0048786550760269165, 0.019116083160042763, -0.013227339833974838, -0.015405556187033653, -0.027622807770967484, 0.025025440379977226, 0.018181579187512398, -0.009791667573153973, 0.01770058646798134, -0.032790061086416245, -0.00489239813759923, -0.010307017713785172, 0.0008666484500281513, -0.012663889676332474, -0.017810527235269547, 0.007757748942822218, -0.008637281134724617, 0.012141667306423187, 0.0030697735492140055, -0.021150000393390656, -0.012904386967420578, -0.017466960474848747, 0.057939182966947556, 0.004181213676929474, -0.0017710892716422677, 0.04972105473279953, 0.011523245833814144, -0.02899707853794098, 0.018016668036580086, -0.016395030543208122, 0.012375293299555779, -0.017411990091204643, 0.017714329063892365, -0.012382164597511292, 0.022002048790454865, -0.019899416714906693, 0.03432924300432205, -0.010327632538974285, 0.0026798248291015625, -0.00030190974939614534, 0.016903510317206383, -0.009022076614201069, 0.004693129099905491, -0.0012600329937413335, -0.02123245783150196, 0.00942748598754406, 0.0016448283568024635, 0.013021199963986874, 0.01786549761891365, -0.01164005883038044, -0.015281871892511845, 0.021699709817767143, 0.0015993056586012244, 0.003509539645165205, 0.00788143277168274, -0.03683041036128998, 0.006589620374143124, -0.0005187866045162082, -0.0242970772087574, -0.0013347588246688247, 0.17766550183296204, -0.004906140733510256, 0.023761112242937088, 0.013007457368075848, -0.004521345254033804, 0.017178364098072052, 0.011234649457037449, -0.0016001645708456635, -0.009551170282065868, -0.0005411184392869473, -0.011578217148780823, 0.030481288209557533, 0.009887865744531155, 0.012382164597511292, -0.014526024460792542, -0.004720614291727543, -0.04485614225268364, 0.005256579257547855, -0.012567690573632717, -0.04862163960933685, 0.003251864342018962, -0.015515497885644436, 0.0016147661954164505, -0.005954020656645298, 0.017411990091204643, 0.0024857092648744583, -0.010238304734230042, -0.012959357351064682, 0.03875438868999481, 0.008657895028591156, -0.034384213387966156, -0.0066892546601593494, -0.00796388927847147, -0.006239181850105524, -0.023816082626581192, 0.007345468271523714, 0.006569006014615297, 0.0017350147245451808, 0.02538274973630905, 0.0030336990021169186, -0.010032163932919502, -0.023335089907050133, -0.010444444604218006, -0.0055898395366966724, -0.005442105699330568, 0.03542865812778473, -0.015955263748764992, -0.01207982562482357, -0.0031900221947580576, 0.01922602392733097, -0.03196549788117409, 0.010471930727362633, 0.05038070306181908, 0.022139474749565125, 0.003406469477340579, 0.006022734101861715, -0.0070087723433971405, 0.021933333948254585, -0.013536550104618073, 0.0010796601418405771, -0.020737720653414726, 0.018635088577866554, -0.012966228649020195, 0.022551756352186203, -0.017508188262581825, 0.008754094131290913, 0.004662207793444395, -0.026248538866639137, 0.014897077344357967, -0.026330996304750443, 0.003317141905426979, 0.008328070864081383, -0.008719737641513348, 0.013708334416151047, -0.010884211398661137, -0.011598831042647362, 0.0357309952378273, -0.007153070531785488, -0.00041807841625995934, -0.0033308847341686487, 0.012437134981155396, -0.023761112242937088, 0.017095906659960747, -0.00632850918918848, 3.065264172619209e-05, -0.03798479586839676, -0.02399473823606968, -0.01881374418735504, -0.02443450503051281, 0.010300146415829659, -0.016889767721295357, -0.019610820338129997, 0.002298464998602867, -0.020270468667149544, -0.005486769136041403, -0.005940278060734272, 0.01613391935825348, -0.004188084974884987, 0.00743479561060667, 0.009200731292366982, -0.005356213543564081, -0.0036108919885009527, 0.03083859756588936, 0.014979532919824123, -0.03114093840122223, 0.0006141265039332211, -0.006197953596711159, 0.0021404242143034935, 0.00039939695852808654, -0.02828245796263218, 0.01987193152308464, -0.011234649457037449, 0.013021199963986874, -0.02491549775004387, -0.0026884139515459538, 0.01864883117377758, -0.008211257867515087, -0.007386696524918079, -0.0014026133576408029, 0.024214621633291245, 0.01908859796822071, -0.01919853873550892, 0.007386696524918079, -0.0070225149393081665, -0.014416082762181759, -0.023939767852425575, -0.025327779352664948, 0.02800760418176651, -0.011811843141913414, -0.032515205442905426, 0.03303742781281471, -0.051232751458883286, 0.004964547231793404, -0.00591279286891222, -0.021259943023324013, 0.003576535265892744, -0.006651462521404028, -0.021040059626102448, 0.03617076203227043, -0.0019617690704762936, 0.002037353813648224, 0.015597954392433167, 0.011097222566604614, 0.015460527502000332, -0.008774708025157452, -0.017851755023002625, 0.009633625857532024, -0.001462737680412829, -0.003731140634045005, -0.019528362900018692, -0.01565292477607727, -0.002672953298315406, -0.007317983079701662, -0.014374854974448681, 0.014086258597671986, -0.0019394372357055545, -0.009482456371188164, 0.00836929865181446, -0.004273976664990187, 0.03130584955215454, -0.031030995771288872, 0.000531670346390456, 0.03432924300432205, -0.01361213531345129, -0.010094006545841694, -0.003658991539850831, -0.17513684928417206, 0.014787135645747185, 0.0003364812000654638, 0.00376893300563097, 0.01318611204624176, 0.04067836329340935, 0.03402690216898918, -0.0004809941747225821, -0.006022734101861715, -0.006280409637838602, 0.03347719460725784, 0.03001403622329235, -0.03902924060821533, -0.013385380618274212, -0.02058655023574829, 0.018800001591444016, -0.012382164597511292, 0.029326902702450752, 0.032515205442905426, 0.02426959201693535, 0.029271932318806648, 0.0019239766988903284, -0.004188084974884987, -0.014086258597671986, -0.0071874274872243404, 0.015007018111646175, 0.009228216484189034, 0.015020760707557201, 0.008857164531946182, -0.009571784175932407, 0.0015340278623625636, 0.0039578950963914394, 0.012986842542886734, -0.003703655209392309, 0.01300058513879776, 0.02028421126306057, 0.002083735540509224, -0.010671199299395084, -0.010698684491217136, 0.007579093798995018, 0.003865131875500083, -0.02205701917409897, 0.02538274973630905, 0.011179679073393345, -0.008273099549114704, 0.028117544949054718, 0.0027055921964347363, -0.0072080413810908794, 0.01585906557738781, -0.027746492996811867, 0.009633625857532024, 0.01770058646798134, 0.023747369647026062, -0.009551170282065868, 0.04197017848491669, 0.025767546147108078, 0.018264036625623703, -0.008121930062770844, 0.0011715644504874945, -0.04015614092350006, -0.014264913275837898, 0.007640935946255922, -0.0004204404540359974, -0.018319007009267807, 0.008458626456558704, -0.0013656798982992768, -0.022483041509985924, 0.013962574303150177, -0.027128072455525398, 0.007544737309217453, -0.0029787281528115273, 0.010059650056064129, 0.03625321760773659, 0.0015615132870152593, -0.018538890406489372, -0.010197076946496964, -0.021397368982434273, 0.01871754415333271, -0.02627602405846119, -0.011255264282226562, -0.03518128767609596, 0.03548362851142883, -0.012870029546320438, -0.019418422132730484, 0.015735380351543427, 0.004002558533102274, -0.00650716433301568, -0.034246787428855896, -0.007599708158522844, -0.011626316234469414, -0.012299708090722561, -0.01926725171506405, -0.014237428084015846, -0.0038307751528918743, 0.004816812928766012, -0.0017762427451089025, -0.00959926936775446, -0.011159065179526806, 0.0034391083754599094, -0.017576901242136955, 0.008273099549114704, -0.01599649153649807, -0.023362575098872185, 0.03086608462035656, 0.035511113703250885, 0.007936404086649418, -0.004693129099905491, 0.027815205976366997, 0.027952633798122406, 0.020572807639837265, -0.015900293365120888, 0.012842544354498386, 0.024681873619556427, 0.006063962355256081, 0.001138925552368164, 0.036500588059425354, -0.02814503014087677, -0.030316375195980072, 0.0350438617169857, -0.01786549761891365, 0.07629942148923874, -0.003418494248762727, 0.00854108203202486, 0.0015743969706818461, 0.0016413925914093852, -0.0349888913333416, -0.10131111741065979, 0.012224123813211918, 0.009056433103978634, 0.007957017980515957, -0.018291521817445755, 0.020091814920306206, -0.006170468404889107, 0.020751463249325752, -0.0017272845143452287, 0.0070225149393081665, -0.012464620172977448, -0.0457356758415699, 0.006582749076187611, -0.014072515070438385, -0.0005797697813250124, -0.007249269634485245, 0.011530118063092232, -0.004961111582815647, -0.005218786653131247, 0.020366668701171875, 0.004995468072593212, -0.033229827880859375, -0.0014154971577227116, 0.0006248629651963711, -0.004256798420101404, 0.017466960474848747, -0.04845672845840454, 0.017205849289894104, 0.022964036092162132, 0.00854108203202486, -0.016834795475006104, -0.021603509783744812, 0.03946900740265846, -0.009819152764976025, 0.0046381582506000996, 0.007723392453044653, -0.035923395305871964, -0.021328656002879143, 0.018772516399621964, -0.026908189058303833, 0.005180994514375925, -0.005095102824270725, 0.026702048256993294, -0.012883773073554039, 0.009351900778710842, 0.009317544288933277, -0.015914035961031914, -0.0010779423173516989, 0.008527339436113834, -0.037215206772089005, -0.019349709153175354, 0.007366082165390253, -0.04743976891040802, -0.028529826551675797, 0.020229240879416466, -0.004043786786496639, 0.020765205845236778, 0.023623686283826828, -0.01878625899553299, -0.013852632604539394, -0.015969006344676018, 0.017027193680405617, -0.012787573970854282, 0.01881374418735504, 0.005789108574390411, -0.011124708689749241, -0.011564474552869797, -0.02841988392174244, 0.025300294160842896, -0.008733480237424374, -0.007585965562611818, 0.023060236126184464, -0.036088306456804276, 0.0026351609267294407, -0.019926901906728745, 0.02174093760550022, -0.03116842359304428, -0.0010083699598908424, 0.02422836422920227, 0.0015331689501181245, 0.0048855263739824295, -0.011880556121468544, -0.007379825226962566, 0.011104093864560127, 0.022854095324873924, 0.022263159975409508, 0.006325073540210724, -0.005119152367115021, -0.006359430029988289, -0.023568714037537575, -0.003145358292385936, 0.020339181646704674, -0.009812281467020512, -0.04315204918384552, 0.016972223296761513, 0.044223979115486145, 0.025135381147265434, 0.016257602721452713, -0.018607603386044502, -0.0048305559903383255, -0.008712866343557835, 0.006091447547078133, -0.07102222740650177, 0.03158070519566536, 0.007647807244211435, 0.011763743124902248, 0.0275266095995903, -0.0034820542205125093, 0.019322223961353302, -0.017247077077627182, -0.007798977196216583, 0.03375205025076866, -0.021892106160521507, 0.031663160771131516, -0.017123393714427948, -0.02123245783150196, -0.020710235461592674, -0.0027519739232957363, 0.030783627182245255, -0.022881580516695976, 0.022249417379498482, -0.0009705775300972164, 0.007902047596871853, 0.014787135645747185, 0.03342222422361374, 0.018566375598311424, -0.022166959941387177, 0.003049159422516823, 0.005761622916907072, 0.003703655209392309, 0.007833333685994148, -0.02235935814678669, 0.007929532788693905, -0.019487135112285614, 0.013976316899061203, 0.030481288209557533, 0.012973099946975708, -0.005905921570956707, -0.00872660893946886, -0.018264036625623703, 0.009984064847230911, 0.0478520505130291, -0.014333626255393028, -0.012285965494811535, -0.004648465197533369, -0.019624562934041023, -0.0019153875764459372, 0.024956727400422096, 0.0006489126826636493, -0.008011988364160061, 0.015749122947454453, -0.01257456187158823, 0.011255264282226562, 0.0022057017777115107, 0.017618129029870033, -0.026221053674817085, 0.012340936809778214, -0.00753786601126194, 0.04842924326658249, -0.007744006346911192, -0.01070555578917265, -0.020476609468460083, 0.001278929179534316, 0.006630848161876202, 0.014086258597671986, -0.011117836460471153, 0.016037719324231148, -0.032515205442905426, -0.004071271978318691, -0.008987720124423504, -0.008348684757947922, -0.02729298360645771, 0.00788143277168274, -0.010863597504794598, -0.02049035206437111, 0.0025595761835575104, 0.028612282127141953, 0.0023843569215387106, 0.020407896488904953, -0.022689182311296463, -0.03383450582623482, -0.0012711988529190421, -0.005108845420181751, -0.016106434166431427, -0.026702048256993294, -0.006998465396463871, 0.021012574434280396, -0.02420087903738022, -0.0011097223032265902, 0.010252047330141068, -0.0038994885981082916, 0.01310365553945303, 0.02528655156493187, -0.00418464932590723, 0.011351462453603745, -0.011495760641992092, -0.0003330455219838768, 0.001654276391491294, -0.02913450449705124, -0.012230995111167431, 0.034054387360811234, 0.043344445526599884, -0.008809064514935017, -0.0030044957529753447, 0.0022057017777115107, -0.017645614221692085, -0.00029611203353852034, -0.013454094529151917, -0.0178380124270916, -0.007331725675612688, -0.006637719459831715, 0.019652048125863075, 0.02413216605782509, 0.004115935880690813, 0.009633625857532024, 0.011234649457037449, 0.008444883860647678, -0.0018604167271405458, 0.0002111865032929927, -0.028914621099829674, 0.0006858461420051754, 0.020119300112128258, 0.012059210799634457, 0.02766403742134571, 0.022098246961832047, 0.0029907531570643187, 0.02650965005159378, 0.023266375064849854, 0.015309358015656471, 0.021768422797322273, 0.007730263751000166, 0.014512281864881516, 0.002638596575707197, 0.0034940792247653008, -0.04290468245744705, 0.004387354012578726, -0.022620469331741333, -0.0493362620472908, 0.0025235016364604235, 0.008245614357292652, -0.029794154688715935, 0.0549982488155365, 0.0062494887970387936, -0.005290936212986708, 0.006510599981993437, 0.01242339238524437, 0.02263421192765236, 0.03303742781281471, -0.01449853926897049, -0.003418494248762727, -0.00959926936775446, 0.00836929865181446, -0.017370760440826416, 0.02602865733206272, -0.00978479627519846, 0.0034013160038739443, 0.011914912611246109, -0.001987536670640111, 0.04370175674557686, -0.022111989557743073, -0.021177487447857857, 0.026248538866639137, 0.014374854974448681, 0.03416432812809944, -0.007290497422218323, -0.002580190310254693, -0.0044904244132339954, 0.01456725224852562, -0.008499854244291782, 0.013378509320318699, -0.03597836568951607, 0.01388698909431696, 0.0066961259581148624, -0.009571784175932407, -0.005919664166867733, 0.013364766724407673, -0.021383626386523247, -0.0019256945233792067, -0.025973685085773468, 0.015941521152853966, 0.0024633773136883974, -0.014127486385405064, -0.0007429642137140036, -0.019652048125863075, -0.02270292490720749, 0.01991315931081772, -0.018222808837890625, -0.0026403144001960754, -0.006685819011181593, -0.02426959201693535], "05b25dd3-fcd6-4208-98cb-23898b8eb145": [0.00287071755155921, 0.0036246965173631907, 0.001413491670973599, 0.005793916527181864, -0.01894918642938137, 0.018529336899518967, -0.006182276643812656, -0.022699836641550064, -0.006958997342735529, -0.01854333095252514, 0.01817946322262287, 0.014470796100795269, 0.00792115181684494, 0.020530616864562035, -0.007193413097411394, -0.0025523321237415075, 0.046771179884672165, -0.01668200083076954, 0.031936515122652054, -0.004957717377692461, 0.00330806034617126, 0.002791995881125331, -0.026982296258211136, 0.015240519307553768, -0.026842346414923668, 0.003631694009527564, 0.022238003090023994, -0.019886847585439682, -0.013631097972393036, -0.017885567620396614, 0.004845757503062487, 0.007032471243292093, 0.014834665693342686, 0.012161626480519772, -0.025960665196180344, -0.007077954709529877, 0.023581519722938538, -0.028339808806777, -0.004334941040724516, 0.0006892521632835269, 0.01187472976744175, 0.0019470498664304614, -0.0009805223671719432, -0.002559329615905881, -0.018823230639100075, 0.025820715352892876, -0.009943423792719841, -0.0014449803857132792, -0.021566243842244148, 0.03991364687681198, 0.042432740330696106, 0.022643856704235077, -0.04162103310227394, -0.0050066993571817875, -0.017801597714424133, 0.011685797944664955, 0.003894099732860923, 0.030397068709135056, -0.0050416868180036545, 0.004167001694440842, 0.017409740015864372, 0.004191492684185505, -0.006819047965109348, 0.026646418496966362, -0.016206171363592148, -0.007704229559749365, -0.012259591370821, 0.0007618510280735791, -0.0036631827242672443, -0.005416052415966988, 0.026366518810391426, 0.024575162678956985, -0.000371522648492828, -0.0011572088114917278, 0.009215685538947582, -0.01878124661743641, -0.030928878113627434, -0.010846099816262722, -0.007795196957886219, 0.023315615952014923, -0.009040748700499535, -0.019690919667482376, -0.00042597181163728237, 0.00284272781573236, 0.009068738669157028, -0.009376628324389458, 0.020152753219008446, 0.016038233414292336, -0.016318131238222122, -0.030313098803162575, 0.024393228814005852, 0.007494304794818163, 0.021216370165348053, -0.0020205234177410603, -0.005335581488907337, 0.04047344624996185, -0.020082777366042137, 0.017661647871136665, -0.005870888940989971, -0.02359551563858986, -0.01455476600676775, 0.0027412641793489456, -0.024351242929697037, -0.0031873537227511406, -0.035267315804958344, 0.013078296557068825, 0.009593550115823746, 0.0046148402616381645, 0.01615019142627716, -0.015702353790402412, -0.02359551563858986, 0.021216370165348053, -0.012161626480519772, -0.060346297919750214, -0.0043594324961304665, -0.0004955093027092516, 0.054524391889572144, -0.010797116905450821, -0.0022147034760564566, -0.017955543473362923, -0.010034391656517982, 0.014680720865726471, -0.0024771091993898153, -0.009607545100152493, 0.01732577010989189, 0.007893161848187447, 0.0021114905830472708, -0.023021720349788666, -0.025190941989421844, -0.008858813904225826, 0.043132487684488297, 0.0049682133831083775, 0.010454240255057812, 0.011503863148391247, -0.0030893890652805567, 0.01864129677414894, -0.020362677052617073, 0.008977771736681461, -0.02296574041247368, -0.028689682483673096, 0.039241887629032135, 0.02692631632089615, -5.78932449570857e-05, -0.01459675095975399, -0.00535657349973917, 0.02142629399895668, 0.004163502715528011, 0.01801152341067791, 0.0012096900027245283, -0.007186415605247021, 0.025652775540947914, -0.012252593412995338, 0.007886163890361786, -0.009166703559458256, 0.015030594542622566, -0.005164142698049545, 0.01746571995317936, 0.010895081795752048, 0.0009464096510782838, 0.00018587065278552473, 0.027206216007471085, 0.028857622295618057, 0.00354072661139071, 0.010314291343092918, 0.0046813166700303555, 0.030872898176312447, -0.017255794256925583, -0.011629818007349968, -0.03717063367366791, -0.007613262161612511, 0.0023651495575904846, 0.0029931736644357443, -0.027500111609697342, -0.008480950258672237, -0.0358830951154232, 0.013652090914547443, 0.023707473650574684, 0.031628627330064774, -0.02475709654390812, 0.010230321437120438, -0.036778774112463, -0.0116508100181818, 0.01424687635153532, 0.008152068592607975, -0.025582799687981606, -0.006472672335803509, 0.0066301156766712666, -0.005241115111857653, 0.005748432595282793, 0.010433248244225979, 0.0031663612462580204, 0.0179415475577116, -0.01153185311704874, -0.013652090914547443, -0.619809091091156, -0.012322568334639072, 0.005090669263154268, -0.034903448075056076, 0.004688314162194729, 0.0015613135183230042, 0.010699152946472168, 0.006472672335803509, 0.0028777150437235832, 0.004943722393363714, -0.04220882058143616, 0.010160346515476704, -0.02989324927330017, -0.02531689591705799, -0.02110441029071808, -0.00659862719476223, -0.0017310024704784155, -0.03560319542884827, 0.008396980352699757, -0.029473401606082916, -0.019914837554097176, 0.011286941356956959, -0.006084312219172716, 0.007382345385849476, -0.017661647871136665, -0.0010373769327998161, 0.02576473541557789, 0.020474636927247047, 0.005881384946405888, 0.029165511950850487, -0.03966173902153969, 0.013498146086931229, 0.03246832266449928, 0.011972694657742977, 0.0356871671974659, -0.0025085979141294956, -0.030453048646450043, 0.03865410014986992, -0.0018438369734212756, 0.006672100629657507, -0.031936515122652054, -0.01157383807003498, 0.016402101144194603, 0.008676880039274693, 0.012616463005542755, 0.018893206492066383, 0.03495942801237106, -0.02398737333714962, -0.006014337297528982, 0.0006420191493816674, 0.018053507432341576, -0.0052900975570082664, -0.0007194287609308958, -0.01106302160769701, 0.012966337613761425, -0.0073403604328632355, 0.027738025411963463, -0.03081691823899746, 0.02158023975789547, -0.0022147034760564566, 0.02174817956984043, 0.015114564448595047, -0.00025628283037804067, -0.016080217435956, -0.028395788744091988, 0.016248157247900963, -0.0183893870562315, -0.0027989933732897043, 0.016402101144194603, -0.018767250701785088, 0.0022654354106634855, 0.008991766721010208, 0.004523873329162598, -0.02149626985192299, 0.0032380856573581696, 0.0034200202208012342, 0.03462354838848114, -0.020992450416088104, -0.00032866306719370186, 0.00869087502360344, 0.007242395542562008, -0.004597346764057875, -0.025050992146134377, -0.025722749531269073, 0.037758421152830124, -0.010279303416609764, -0.0097894798964262, 0.02491104230284691, 0.010342280380427837, -0.0035827115643769503, -0.012833384796977043, 0.015282504260540009, 0.00966352503746748, -0.017423734068870544, 0.017619663849473, -0.0032275894191116095, -0.030229128897190094, -0.009635535068809986, 0.007942143827676773, -0.017913557589054108, -0.002692281734198332, -0.02796194516122341, 0.013526136055588722, -0.007704229559749365, -0.011496865190565586, -0.018515340983867645, -0.04433605819940567, -0.010055383667349815, 0.024561166763305664, -0.016122201457619667, 0.004677817691117525, -0.017367754131555557, -0.00041241419967263937, -0.0007181167602539062, 0.011888724751770496, -0.024435212835669518, 0.01949498988687992, 0.0009087981889024377, -0.0024281267542392015, -0.00030548390350304544, 0.022321972995996475, -0.019271070137619972, 0.0025960663333535194, -0.003245083149522543, 0.027821995317935944, 0.01622016727924347, -0.011944704689085484, 0.001200068392790854, -0.0021097413264214993, 0.004156505223363638, -0.009138713590800762, -0.01141289621591568, 0.007361352909356356, -2.9930642995168455e-05, 0.027080262079834938, -0.026100613176822662, 0.013036311604082584, 0.0032415844034403563, 0.026142599061131477, -0.03635892644524574, -0.013169264420866966, -0.0024963521864265203, 0.00838298536837101, -0.005867389962077141, -0.02492503635585308, -0.049654144793748856, -0.01885122060775757, 0.008131075650453568, -0.02896958217024803, 0.0020397664047777653, 0.00974749494343996, -0.008096088655292988, -8.763255027588457e-05, 0.031236767768859863, 0.014540771022439003, -0.012119641527533531, -0.031152797862887383, -0.0041809966787695885, -0.008949781768023968, -0.014666725881397724, -0.00846695527434349, 0.01183974277228117, -0.024435212835669518, -0.019425014033913612, 0.005657465662807226, -0.016877930611371994, -0.01903315633535385, 0.03876606002449989, -0.005031190812587738, -0.040165554732084274, -0.007536289747804403, -0.00665810564532876, -0.005349576473236084, 0.038850028067827225, -0.0041495077311992645, 0.00873285997658968, -0.00047757825814187527, -0.04766685888171196, -0.008900798857212067, 0.012469516135752201, -0.003486496163532138, 0.007704229559749365, -0.007459317333996296, -0.009908436797559261, 0.03957776725292206, 0.00483176251873374, 0.008697872050106525, -0.011014039628207684, -0.0035022406373173, 0.022993730381131172, -0.01187472976744175, 0.011741777881979942, -0.009033751673996449, -0.00491223344579339, -0.026492472738027573, -0.013973974622786045, -0.008152068592607975, 0.009138713590800762, 0.006052823271602392, 0.019215090200304985, 0.0023756457958370447, -0.008124078623950481, 0.01549242902547121, -0.005535009782761335, 0.011636815033853054, -0.04861851781606674, -0.00889380183070898, -0.016360117122530937, 0.02506498619914055, -0.0037611473817378283, 0.005562999285757542, -0.028941592201590538, -0.008746854960918427, -0.01885122060775757, 0.007788199465721846, 0.00826402846723795, 0.020866496488451958, 0.006958997342735529, -0.023343605920672417, 0.016807956621050835, 0.015282504260540009, 0.00792115181684494, -0.0036841752007603645, -0.0014196145348250866, -0.021608229726552963, 0.012532493099570274, 0.009628537110984325, 0.04237676039338112, 0.011923711746931076, -0.013931989669799805, 0.020390667021274567, -0.00657763471826911, -0.024337248876690865, 0.010622180067002773, -0.004236976150423288, -0.013736060820519924, 0.02057260274887085, -0.013533133082091808, 0.03991364687681198, -0.017269790172576904, 0.00799812376499176, 0.016905920580029488, 0.006927508860826492, -0.007000982295721769, -0.00826402846723795, 0.004604344256222248, 0.017367754131555557, 0.01463873591274023, -0.0008711867267265916, -4.307826020522043e-05, -0.03235636278986931, -0.006409694906324148, -0.013113284483551979, -0.017815593630075455, 0.010909076780080795, -0.04310449957847595, -0.005454538390040398, 0.014876650646328926, 0.007147929631173611, 0.024491192772984505, 2.995797694893554e-05, 0.0004086967674084008, 0.002858472056686878, 0.01970491372048855, 0.045063793659210205, 0.006794556509703398, 0.014183899387717247, 0.02811588905751705, -0.029613351449370384, -0.02477109245955944, -0.021762173622846603, -0.0165280569344759, -0.004737296607345343, -0.0050416868180036545, 0.013673082925379276, 0.0027255199383944273, 0.015940267592668533, -0.004072535317391157, 0.020922476425766945, 0.012357556261122227, -0.016905920580029488, -0.03406374901533127, 0.024715112522244453, -0.004695311654359102, -0.0006201519863680005, -0.006829543970525265, -0.03168460726737976, -0.00869087502360344, -0.03887801989912987, 0.020362677052617073, -0.017661647871136665, 0.033419981598854065, 0.012714427895843983, -0.013924992643296719, -0.016010243445634842, -0.01598225347697735, 0.01746571995317936, -0.001056620036251843, 0.02902556210756302, 0.009866451844573021, -0.005713445600122213, -0.00047495419858023524, -0.02088049054145813, 0.01191671472042799, 0.017675643786787987, 0.002459615468978882, -0.019285064190626144, -0.011230961419641972, 0.003080642083659768, -0.022084059193730354, 0.006759569048881531, -0.029221491888165474, -0.011119001545011997, -0.00023244766634888947, 0.01994282752275467, 0.0025016004219651222, -0.012700432911515236, 0.009719504974782467, 0.014176901429891586, -0.006325725000351667, 0.000977898365817964, -0.015520418994128704, 0.002372147049754858, 0.021398305892944336, 0.07383744418621063, -0.008872808888554573, -0.016863934695720673, 0.014190896414220333, -0.0021412300411611795, 0.01592627353966236, -0.024043353274464607, -0.0037331574130803347, 0.016654010862112045, 0.006609123200178146, 0.007060461211949587, 0.001326897880062461, 0.022797802463173866, -0.011426891200244427, 0.01293134968727827, -0.0033902807626873255, -0.019620943814516068, -0.0012665445683524013, -0.015002604573965073, -0.014624740928411484, 0.015044589526951313, -0.020586596801877022, 0.004212485160678625, 0.025023002177476883, -0.020614586770534515, -0.021790163591504097, 0.0426846519112587, 0.00022829290537629277, 0.008180058561265469, -0.012784402817487717, -0.01855732686817646, 0.03425968065857887, 0.01691991463303566, 0.02227998711168766, -0.020012803375720978, 0.015338484197854996, 0.013484151102602482, 0.02367948554456234, -0.015506424009799957, 0.013344201259315014, 0.006553143262863159, 0.024239283055067062, -0.0004174436326138675, -0.010706149972975254, -0.0010557452915236354, -0.010265308432281017, -9.80194381554611e-05, 0.0077322195284068584, -0.00576242757961154, -0.011510860174894333, 0.0326082743704319, -0.005699450615793467, -0.010545208118855953, -0.0021254855673760176, 0.03367188945412636, -0.005482528358697891, 0.012322568334639072, 0.016122201457619667, -0.006196271628141403, -0.0033797845244407654, -0.005573495756834745, 0.00792115181684494, 0.006931007374078035, -0.023539535701274872, -0.018921196460723877, -0.020068783313035965, -0.013127279467880726, -0.008222043514251709, -0.03817827254533768, 0.03300013393163681, -0.004415411967784166, -0.00932064838707447, -0.030565008521080017, 0.0179415475577116, 0.014470796100795269, 0.0034375139512121677, -0.004516875836998224, -0.011251953430473804, -0.0025470841210335493, 0.01110500656068325, -0.007501302286982536, -0.020740540698170662, 0.005087170749902725, -0.025512825697660446, -0.008026113733649254, -0.020208733156323433, 0.00854392722249031, 0.017577679827809334, -0.02095046639442444, 0.0013855018187314272, -0.0012814141809940338, -0.005671460647135973, -0.0010828606318682432, 0.0037051676772534847, -0.004667321685701609, 0.013204251416027546, -0.004618339240550995, -0.0097894798964262, -0.0026905324775725603, -0.01408593449741602, -0.010447243228554726, -0.042740631848573685, -0.017451724037528038, -0.019075140357017517, 0.014540771022439003, 0.0039325859397649765, 0.0006573261343874037, 0.022867776453495026, -0.006353714969009161, -0.01118197850883007, -0.014694715850055218, -0.009768486954271793, -0.012567481026053429, -0.0015464439056813717, 0.008082093670964241, 0.0002466613077558577, 0.01328122429549694, 0.031180787831544876, -0.0045413668267428875, -0.0071269371546804905, -0.021944109350442886, -0.02554081566631794, -0.008334003388881683, 0.006976491305977106, -0.005594488233327866, 0.005891881417483091, 0.01106302160769701, 0.016080217435956, 0.0027097754646092653, 0.010356275364756584, 0.01623416133224964, 0.030397068709135056, -0.017437729984521866, -0.03453958034515381, -0.039941634982824326, -0.008746854960918427, -0.015436449088156223, -8.686719957040623e-05, -0.01413491740822792, -0.007893161848187447, -0.019299060106277466, -0.009565560147166252, -0.020908480510115623, -0.015884287655353546, -0.0041460092179477215, -0.019970817491412163, -0.011007041670382023, -0.00966352503746748, -0.01463873591274023, 0.029865259304642677, -0.025442849844694138, -0.0010041388450190425, -0.02195810340344906, -0.0048247650265693665, -0.014267869293689728, -0.006721083074808121, -0.0022339466959238052, -0.015436449088156223, 0.014484791085124016, -0.012560483068227768, 0.017059864476323128, -0.019676923751831055, 0.011685797944664955, 0.022084059193730354, -0.0014467297587543726, -0.0059128738939762115, -0.01768963783979416, -0.02002679742872715, -0.05362871289253235, -0.0033255540765821934, 0.018501346930861473, 0.019774889573454857, 0.01647207699716091, -0.014456801116466522, -0.010776124894618988, 0.025876695290207863, 0.0009157956810668111, -0.0031033840496093035, -0.019466999918222427, -0.0347914882004261, -0.027304181829094887, 0.024715112522244453, -0.01886521652340889, 0.015310494229197502, -0.03982967510819435, -0.013372191227972507, 0.06124197691679001, -0.00038005082751624286, 0.0007259889389388263, -0.01824943721294403, 0.03476350009441376, -0.027891969308257103, -0.016024237498641014, 0.006157785654067993, 0.047862786799669266, -0.020082777366042137, 0.018263433128595352, -0.0017791101709008217, -0.007312370464205742, -0.0027867478784173727, -0.0014231132809072733, -0.0018088495125994086, -0.020852500572800636, -0.012525496073067188, -0.017913557589054108, 0.01098604965955019, -0.021146396175026894, -0.017913557589054108, 0.018809236586093903, -0.017647653818130493, -0.020992450416088104, -0.007781201973557472, -0.03935384750366211, -0.030872898176312447, -0.005639971699565649, -0.006357213947921991, 0.0028689682949334383, 0.023007726296782494, -0.02219601720571518, 0.0032923161052167416, 0.02313368022441864, -0.013869012705981731, 0.03887801989912987, 0.015394464135169983, 0.035295307636260986, -0.006798055488616228, -0.031320735812187195, -0.01677996665239334, 0.008110083639621735, -0.015618383884429932, -0.019201094284653664, 0.041033245623111725, 0.005188634153455496, -0.002391390036791563, -0.015562403947114944, 0.011818749830126762, 0.0028199858497828245, -0.03532329574227333, -0.03204847499728203, 0.02381943352520466, 0.014890645630657673, -0.005209626629948616, -0.009334643371403217, -0.002351154573261738, -0.03820626065135002, 0.009971413761377335, 0.02057260274887085, 0.013386186212301254, -0.025023002177476883, 0.0032468324061483145, -0.003050902858376503, -0.0027954946272075176, 0.019299060106277466, 0.019928833469748497, 0.029557371512055397, -0.00755028473213315, -0.027360161766409874, 0.011734779924154282, -0.02267184667289257, -0.025750739499926567, -0.008334003388881683, 0.024715112522244453, -0.013029314577579498, -0.0075922696851193905, 0.014960619620978832, 0.02190212346613407, -0.009439605288207531, 0.013959979638457298, -0.0065566422417759895, 0.03218842297792435, -0.005653966683894396, 0.0038521147798746824, 0.0067350780591368675, 0.004086530301719904, 0.01455476600676775, 0.012525496073067188, -0.004352435003966093, -0.01553441397845745, -0.018291423097252846, 0.002858472056686878, 0.008816828951239586, 0.006206768099218607, -0.022307977080345154, -0.014918634667992592, -0.02337159588932991, -0.007711227051913738, 0.005916372407227755, 0.00574493408203125, 0.013183259405195713, -0.03255229443311691, -0.019690919667482376, 0.004429406952112913, -0.024827072396874428, 0.006990486290305853, -0.023161670193076134, 0.014372831210494041, -0.005940863396972418, 0.02997721917927265, -0.021090416237711906, 0.02514895610511303, -0.03081691823899746, 0.008250033482909203, -0.024085339158773422, 0.02888561226427555, 0.023791443556547165, -0.027696039527654648, -0.00030548390350304544, -0.01645808108150959, -0.037310581654310226, 0.0032818198669701815, 0.01059419009834528, 0.017563683912158012, 0.0050766742788255215, 0.0005772924050688744, 0.004034049343317747, -0.011559843085706234, 0.005486027337610722, -0.00927866343408823, -0.02195810340344906, 0.023861419409513474, 0.016877930611371994, 0.007886163890361786, 0.00016159813094418496, -0.012602468021214008, 0.026646418496966362, -0.005944362375885248, -0.005482528358697891, 0.0004180996329523623, -0.046771179884672165, 0.012455521151423454, 0.0014992108335718513, 0.022028079256415367, 0.005090669263154268, -0.006315228994935751, -0.022391946986317635, -0.01939702406525612, -0.014540771022439003, 0.020362677052617073, 0.019970817491412163, -0.023651495575904846, 0.008781841956079006, 0.01606622152030468, 0.009495585225522518, -0.013218246400356293, -0.016947904601693153, -0.009453600272536278, 0.012084654532372952, -0.01145488116890192, -0.03546324744820595, -0.007501302286982536, -0.009579555131494999, 0.041033245623111725, -0.0031873537227511406, -0.011853736825287342, -0.007536289747804403, 0.0037576486356556416, -0.03826224058866501, -0.032160434871912, 0.010349278338253498, 0.02274182252585888, 0.034819480031728745, 0.03507138788700104, 0.010314291343092918, -0.0015814312500879169, -0.024799082428216934, 0.01284737978130579, -0.01886521652340889, 0.019229084253311157, -0.003374536521732807, 0.009432608261704445, -0.010587193071842194, -0.004170500207692385, -0.01739574410021305, 0.015590393915772438, 0.02033468708395958, -0.02089448645710945, 0.004072535317391157, 0.018347401171922684, -0.0051116617396473885, -0.005395059939473867, -0.011510860174894333, 0.033699881285429, 0.023035716265439987, 0.0008182682213373482, 0.021538253873586655, -0.028745662420988083, -0.014988609589636326, -0.011986689642071724, 0.006756070535629988, -0.024085339158773422, -0.012651450000703335, 0.00491223344579339, -0.010895081795752048, 0.012560483068227768, -0.018151473253965378, -0.00873285997658968, -0.0042579686269164085, -0.022000089287757874, 0.04590349271893501, -0.001629538950510323, -0.009306653402745724, 0.0455116331577301, 0.00616828165948391, -0.028157874941825867, 0.01335819624364376, 0.0030666470993310213, 0.006549644749611616, -0.013512141071259975, 0.020866496488451958, -0.010370270349085331, -0.00284272781573236, -0.006392201408743858, 0.03286018222570419, -0.009859454818069935, 0.010769126936793327, -0.00044302816968411207, 0.010412255302071571, -0.026100613176822662, 0.008760849945247173, 0.008480950258672237, -0.023175666108727455, 0.0020100271794945, 0.0050032008439302444, 0.018683280795812607, 0.016905920580029488, -0.012119641527533531, -0.017577679827809334, -0.002778000896796584, 0.008592910133302212, -0.0016032984713092446, 0.015562403947114944, -0.02081051655113697, -0.0016627770382910967, 0.013897002674639225, -0.02089448645710945, 0.007704229559749365, 0.17622463405132294, -0.014386826194822788, 0.013519138097763062, 0.012952342629432678, -0.019774889573454857, 0.0037366561591625214, 0.030145158991217613, 0.0068050529807806015, 0.010006401687860489, 0.01358211599290371, -0.0141699044033885, 0.01978888362646103, -3.5363260053600243e-07, 0.011944704689085484, -0.0005099416011944413, -0.004730299115180969, -0.05956258252263069, -0.0030998853035271168, -0.01408593449741602, -0.055224139243364334, 0.013484151102602482, -0.028857622295618057, 0.010076376609504223, -0.0047198026441037655, 0.002491104183718562, 0.017339764162898064, -0.009579555131494999, -0.005440543405711651, 0.033196061849594116, -0.0016846441430971026, -0.03277621418237686, -0.010545208118855953, 0.009600547142326832, -0.0007382345502264798, -0.012140634469687939, 0.0016610276652500033, -0.0018175963778048754, 0.009264668449759483, 0.019047150388360023, -0.004173999186605215, -0.00974749494343996, -0.011755772866308689, -0.018207453191280365, -0.001105602364987135, -0.023567525669932365, 0.039101939648389816, -0.020908480510115623, -0.01098604965955019, -0.0011143492301926017, 0.01879524067044258, -0.02475709654390812, 0.026100613176822662, 0.037394553422927856, 0.03112480789422989, -0.016080217435956, -0.0036736789625138044, 0.000891741830855608, 0.017829587683081627, -0.006136793177574873, 0.01662602089345455, 0.0019313055090606213, 0.01567436382174492, 0.005402057431638241, 0.02229398302733898, -0.008669882081449032, 0.00330806034617126, -0.005968853365629911, -0.041173193603754044, 0.0024631142150610685, -0.015254514291882515, -0.002048513386398554, -0.012028674595057964, -0.011965696699917316, 0.014526776038110256, -0.006203269120305777, -0.008480950258672237, 0.024981016293168068, -0.005573495756834745, -0.001386376447044313, 0.02079652063548565, -0.005052183289080858, -0.017815593630075455, 0.0068085514940321445, -0.013771047815680504, 0.0007316743722185493, -0.020446646958589554, -0.020922476425766945, -0.008089090697467327, -0.01693391054868698, 0.0029774291906505823, -0.011615823023021221, -0.02826983481645584, 0.0037681448739022017, -0.013959979638457298, -0.009082733653485775, -0.0026992792263627052, 0.016416097059845924, -0.015380469150841236, 0.0009289159788750112, -0.009138713590800762, -0.016891924664378166, -0.017171824350953102, 0.039941634982824326, 0.03879404813051224, -0.022643856704235077, 0.007039468735456467, 0.002256688429042697, 0.004121517762541771, 0.002921449486166239, -0.018599310889840126, 0.017171824350953102, -0.014281864278018475, 0.0031226270366460085, -0.016262151300907135, 0.0067700655199587345, 0.012357556261122227, -0.016737980768084526, -0.01654205098748207, 0.013071299530565739, 0.01584230363368988, 0.011979691684246063, -0.017031874507665634, 0.008068098686635494, -0.014666725881397724, -0.004639331717044115, -0.013218246400356293, -0.04330042749643326, 0.020544612780213356, 0.0005510518094524741, -0.03344797343015671, 0.02227998711168766, -0.035911086946725845, 0.012259591370821, -0.006042327266186476, -0.02933345176279545, 0.004121517762541771, 0.003577463561668992, -0.024575162678956985, 0.010335283353924751, -0.01203567162156105, 0.011049026623368263, 0.017339764162898064, -0.006549644749611616, 0.010013398714363575, 0.01242753118276596, -0.013022316619753838, 0.0016146693378686905, 0.0003413459926377982, -0.0002056604134850204, -0.02381943352520466, -0.024953026324510574, 0.0026328032836318016, 0.005849896464496851, -0.008837821893393993, 0.012994327582418919, 0.012448523193597794, -0.017115844413638115, -0.014330846257507801, 0.011286941356956959, 0.029389431700110435, -0.034735508263111115, 0.0008720614132471383, 0.04027751460671425, 0.015072579495608807, -0.003656185232102871, 0.002540086628869176, -0.17958341538906097, 0.02832581289112568, 0.011888724751770496, -0.005528012290596962, 0.02064257673919201, 0.029921239241957664, 0.021706193685531616, 0.023875413462519646, -0.006276743020862341, -0.012154629454016685, 0.02966933138668537, 0.027136242017149925, -0.023245640099048615, -0.025288905948400497, -0.014309854246675968, 0.006528652273118496, -0.012945344671607018, 0.020124763250350952, 0.02748611569404602, 0.021622223779559135, -0.0015639376360923052, -0.0222100131213665, -0.000222279442823492, 0.0003861736331600696, -0.00923667848110199, 0.006969493813812733, 0.004163502715528011, 0.028227848932147026, 0.018347401171922684, 0.005066178273409605, 0.0020222726743668318, -0.0020765033550560474, 0.024827072396874428, 0.010538210161030293, 0.014470796100795269, 0.021006446331739426, 0.0016041730996221304, -0.022699836641550064, -0.0035162356216460466, 0.02043265290558338, 0.02033468708395958, -0.010237318463623524, 0.017353760078549385, 0.008571917191147804, -0.0010207579471170902, 0.021790163591504097, 0.005122158210724592, -0.013099289499223232, 0.01343516819179058, -0.02492503635585308, 0.015702353790402412, 0.011846739798784256, 0.011461878195405006, -0.005580493248999119, 0.05309690535068512, 0.023105690255761147, 0.015730343759059906, 0.004705807659775019, 0.02214003913104534, -0.03857012838125229, -0.0030246623791754246, 0.00483176251873374, -0.002575074089691043, -0.011902719736099243, 0.013442166149616241, -0.008585912175476551, -0.03820626065135002, 0.008634895086288452, -0.023581519722938538, 0.004733797628432512, 0.006059820763766766, 0.016793960705399513, 0.026758376508951187, -0.010377268306910992, -0.0011257202131673694, -0.00221120472997427, -0.028003929182887077, 0.03669480234384537, -0.01413491740822792, 0.008005121722817421, -0.047694846987724304, 0.04310449957847595, -0.007389342878013849, -0.022839786484837532, 0.04293655976653099, -0.013568121008574963, -0.014148911461234093, -0.028941592201590538, -0.017605667933821678, 0.011167983524501324, 0.006787559017539024, 0.00044390285620465875, 0.0016251655761152506, -0.021566243842244148, 0.031096817925572395, 0.014484791085124016, 0.003925588447600603, -0.001964543480426073, -0.000907923502381891, -0.02321765013039112, -0.00491223344579339, -0.015086574479937553, -0.021370315924286842, 0.01747971400618553, 0.028311818838119507, 0.027276191860437393, -0.0014073689235374331, 0.02755608968436718, 0.024127323180437088, 0.019453004002571106, -0.02989324927330017, 0.012259591370821, 0.008375988341867924, 0.010972054675221443, 0.006087810732424259, 0.028297822922468185, -0.00710244569927454, -0.02817186899483204, 0.021692199632525444, 8.905391587177292e-05, 0.0599544383585453, -0.0009901439771056175, 0.022335967049002647, 0.00755028473213315, -0.013407178223133087, -0.04811469838023186, -0.11145591735839844, -0.0067000905983150005, 0.007207408081740141, 0.021930113434791565, -0.04142510145902634, 0.019592953845858574, 0.0018735761987045407, 0.003204847453162074, -0.01382002979516983, 0.012490508146584034, -0.003701668931171298, -0.03725460171699524, -0.001964543480426073, 0.004488885868340731, -0.015030594542622566, -0.010202331468462944, 0.0001462911459384486, -0.017437729984521866, 0.002702777972444892, 0.024743102490901947, 0.015814313665032387, -0.01183274481445551, -0.020320693030953407, -0.003140120767056942, -0.011517858132719994, 0.02142629399895668, -0.03859812021255493, 0.015212529338896275, 0.03330802172422409, -8.981925930129364e-05, -0.02415531314909458, -0.009453600272536278, 0.010937066748738289, -0.011692794971168041, -0.014225884340703487, 0.0074873073026537895, -0.01934104412794113, -0.002970431698486209, 0.020740540698170662, -0.014036952517926693, 0.012721424922347069, 0.006822546478360891, 0.02120237611234188, 0.0011554594384506345, 0.01669599674642086, -0.009047746658325195, -0.021482273936271667, 0.013428171165287495, -0.011538850143551826, -0.030005209147930145, -0.011622820049524307, -0.01016734354197979, -0.04609942063689232, -0.024953026324510574, 0.025652775540947914, -0.004618339240550995, 0.029361441731452942, 0.021146396175026894, -0.0222100131213665, -0.006392201408743858, -0.019508983939886093, 0.018291423097252846, -0.0069519998505711555, 0.021692199632525444, 0.008662885054945946, -0.00046664467663504183, -0.011188976466655731, -0.04428007826209068, 0.03952178731560707, 0.004201989155262709, -0.025736745446920395, 0.0157583337277174, -0.03188053518533707, 0.000494634616188705, -0.01908913627266884, 0.026674408465623856, -0.022979736328125, -0.020754536613821983, 0.009103726595640182, -0.008431967347860336, 0.010412255302071571, -0.009593550115823746, 0.0045378683134913445, 0.009012758731842041, 0.008208048529922962, 0.011433888226747513, 0.027542095631361008, -0.00199953094124794, 0.006612622179090977, -0.023259636014699936, 0.0071654231287539005, 0.02514895610511303, -0.007263388019055128, -0.040949273854494095, 0.016024237498641014, 0.031936515122652054, 0.026436492800712585, 0.005125656723976135, -0.008508940227329731, 0.011818749830126762, 0.008061100728809834, -0.01459675095975399, -0.07171021401882172, 0.022182023152709007, 0.007028972264379263, 0.009460598230361938, 0.011902719736099243, -0.01924308016896248, 0.007459317333996296, -0.027514105662703514, -0.012189616449177265, 0.009929429739713669, -0.035519227385520935, 0.02461714670062065, -0.01934104412794113, -0.02174817956984043, -0.032412342727184296, -0.0033028123434633017, 0.032412342727184296, -0.020544612780213356, 0.01420489139854908, -0.016863934695720673, -0.007147929631173611, 0.007718224544078112, 0.021370315924286842, 0.028997572138905525, -0.011895721778273582, 0.01746571995317936, 0.002024022163823247, 0.0073053729720413685, -0.006441183853894472, -0.0023074201308190823, 0.011776764877140522, -0.02506498619914055, 0.026366518810391426, 0.0319645069539547, 0.00018904139869846404, 0.01553441397845745, -0.008110083639621735, -0.011342921294271946, 0.006868030410259962, 0.045987460762262344, 0.0049682133831083775, -0.010363273322582245, -0.001605047844350338, -0.012903359718620777, 0.005167641676962376, 0.01939702406525612, -0.02065657079219818, -0.0028689682949334383, 0.01908913627266884, -0.018921196460723877, 0.03297214210033417, 0.015156549401581287, -0.007606264669448137, -0.025904685258865356, 0.015660367906093597, -0.013610105961561203, 0.02429526299238205, -0.0013846270740032196, 0.013561123050749302, -0.01683594472706318, 0.014414816163480282, 0.008578915148973465, 0.013344201259315014, -0.014414816163480282, -0.0007198661332949996, -0.006322226487100124, -0.006063319742679596, 0.009936426766216755, -0.021384309977293015, -0.028689682483673096, -0.026982296258211136, -0.02400136925280094, 0.008047105744481087, 0.0226578526198864, 0.028997572138905525, -0.009866451844573021, 0.011727782897651196, -0.010671162977814674, -0.02026471309363842, 0.021720189601182938, -0.0033605415374040604, -0.0061997706070542336, -0.039549779146909714, 0.02429526299238205, 0.027738025411963463, -0.012644452974200249, -0.00529709504917264, 0.01599624752998352, -0.006766566541045904, 0.008396980352699757, 0.025023002177476883, -0.012826387770473957, 0.01486265566200018, -0.01848735101521015, 0.0075222947634756565, 0.015268509276211262, -0.015576398931443691, -0.009481590241193771, 0.020628582686185837, 0.033503953367471695, -0.00356171908788383, 0.002223450457677245, 1.2327597687544767e-05, -0.023973379284143448, -0.014876650646328926, -0.0004697060794569552, -0.031320735812187195, -0.016164187341928482, 0.0011038529919460416, 0.013792039826512337, 0.028689682483673096, 0.015660367906093597, 0.03168460726737976, 0.012392543256282806, -0.011615823023021221, 0.016947904601693153, 0.007326365448534489, -0.017437729984521866, -0.014281864278018475, 0.02670239843428135, 0.00330806034617126, 0.02811588905751705, 0.042740631848573685, 0.00743132783100009, 0.02128634601831436, 0.01854333095252514, 0.019117124378681183, 0.01455476600676775, 0.018585316836833954, -0.0013041560305282474, -0.00570294912904501, 0.008110083639621735, -0.03467952832579613, 0.006703589111566544, -0.013512141071259975, -0.025750739499926567, 0.005650468170642853, 0.0014554766239598393, -0.009180698543787003, 0.055615998804569244, -0.009593550115823746, -0.00667909812182188, -0.005139651708304882, 0.02687033638358116, 0.03397978097200394, 0.023721469566226006, 0.010118361562490463, -0.009628537110984325, -0.0027657554019242525, 0.024015363305807114, -0.023259636014699936, 0.044671934098005295, -0.010419253259897232, -0.0008965525776147842, 0.01623416133224964, -0.02173418365418911, 0.06280941516160965, -0.015436449088156223, -0.009026753716170788, 0.03943781927227974, 0.010244316421449184, 0.025204936042428017, -0.008243035525083542, -0.021874133497476578, -0.006052823271602392, 0.005332082509994507, -0.015702353790402412, -0.0010601187823340297, -0.039633747190237045, 0.014386826194822788, 0.017717627808451653, -0.014750695787370205, -0.008173060603439808, 0.027290185913443565, -0.017115844413638115, -0.0021709692664444447, -0.004278961103409529, 0.019732903689146042, 0.02477109245955944, -0.013973974622786045, -0.0023966380394995213, -0.010363273322582245, -0.01738175004720688, 0.025204936042428017, -0.02229398302733898, -0.006756070535629988, 0.014400821179151535, -0.037310581654310226], "6186a446-c6d5-421f-a96f-a3b0557e8f29": [0.015802286565303802, -0.008014319464564323, -9.619045613362687e-07, -0.0013881820486858487, -0.01839120127260685, 0.012739443220198154, -0.017146257683634758, -0.020400086417794228, -0.013503385707736015, -0.0110417939722538, 0.023385118693113327, -0.002431528875604272, -0.005662367679178715, 0.009775630198419094, 0.002534095197916031, -0.009372439235448837, 0.03423592820763588, -0.035594046115875244, 0.030161568894982338, -0.00920267403125763, -0.006153978873044252, 0.0073777008801698685, -0.03423592820763588, 0.000717964197974652, -0.012201854027807713, 0.014387577772140503, 0.017514081671833992, -0.007964804768562317, 0.015179814770817757, -0.013835841789841652, -0.01188354566693306, -0.009711968712508678, 0.010730558075010777, 0.003826784435659647, -0.01641060970723629, 0.00590286822989583, -0.006214103661477566, -0.023370971903204918, -0.0063732583075761795, 0.014465386979281902, 0.0017586585599929094, 0.0015181582421064377, -0.004258270375430584, 7.593001646455377e-05, -0.01611352153122425, 0.022253353148698807, -0.02008884958922863, -0.01584472693502903, -0.02180064655840397, 0.007696010172367096, 0.04105481877923012, 0.02515350468456745, -0.048864006996154785, 0.0012882682494819164, -0.009924175217747688, -0.001989432843402028, -0.005772007629275322, 0.008283114060759544, 0.01132473535835743, 0.008155790157616138, 0.01897123083472252, 0.015519344247877598, -0.014062195084989071, 0.014882725663483143, -0.018433641642332077, -0.001412939396686852, -0.015505197457969189, -0.006691567599773407, 0.004374983720481396, -0.010794220492243767, 0.042073410004377365, 0.03576381132006645, -0.014698813669383526, 0.0026773344725370407, -0.003342247102409601, -0.024106619879603386, -0.028039507567882538, -0.0121028246358037, -0.02857709676027298, 0.01307897362858057, 0.005443088244646788, -0.0220835879445076, -0.010617381893098354, 0.003996549639850855, 0.030529392883181572, -0.01110545638948679, 0.005156609695404768, 0.011529868468642235, -0.014755401760339737, -0.02533741667866707, 0.011544015258550644, 0.018461937084794044, 0.018292171880602837, 0.00024116346321534365, -0.005305154249072075, 0.030472805723547935, -0.03038792312145233, 0.03887616842985153, -0.0037419020663946867, -0.034320808947086334, -0.02406417950987816, -0.003303342731669545, -0.03409445658326149, -0.004958550911396742, -0.024219796061515808, 0.014811989851295948, -0.016184257343411446, 0.008509467355906963, 0.027332153171300888, 0.013984385877847672, -0.0256203580647707, -0.0016366400523111224, -0.009563424624502659, -0.03624481335282326, -0.013758032582700253, -0.013559973798692226, 0.05839913710951805, -0.002907224465161562, -0.012095751240849495, -0.021036705002188683, 0.009584644809365273, 0.002583610126748681, 0.00848117284476757, -0.01259797252714634, 0.016085227951407433, -0.006461677607148886, 0.01476954948157072, -0.03986646607518196, -0.01840534806251526, -0.018759025260806084, 0.04705318063497543, 0.0189429372549057, 0.026129651814699173, 0.004007159732282162, 0.012951649725437164, 0.01499590277671814, -0.03423592820763588, 0.010214189998805523, -0.01583058014512062, -0.034009575843811035, 0.03949864208698273, 0.005927625577896833, -0.0013740349095314741, -0.023837825283408165, 0.0010380417807027698, 0.01670769788324833, 0.0038833727594465017, -0.0031424197368323803, -0.01165719237178564, 0.008580202236771584, 0.025804270058870316, -0.012746516615152359, 0.004088505636900663, -0.01696234568953514, 0.014826137572526932, -0.02051326259970665, 0.015179814770817757, 0.0219279695302248, 0.0021804182324558496, 0.0032697434071451426, 0.006539486814290285, 0.01597204990684986, 0.003054000437259674, 0.0054324776865541935, 0.011890619061887264, 0.03185921907424927, -0.009563424624502659, -0.023370971903204918, -0.03508475422859192, -0.0099807633087039, 0.008325555361807346, 0.018009230494499207, -0.037970755249261856, 0.004505844321101904, -0.01826387643814087, 0.01301531121134758, 0.027615096420049667, 0.028761008754372597, -0.0277424193918705, 0.023088030517101288, -0.022267499938607216, -0.015929609537124634, 0.01365900319069624, 0.015674961730837822, -0.011317661963403225, -0.015377873554825783, 0.012689928524196148, 0.00597714027389884, 0.001359003596007824, 0.019423937425017357, 0.0101010138168931, 0.029878627508878708, -0.01568910852074623, -0.0005194630357436836, -0.6170389652252197, -0.015250549651682377, 0.0004062863881699741, -0.017726289108395576, -0.012138192541897297, -0.0008355617756024003, 0.013673150911927223, 0.017316022887825966, -0.011063015088438988, -0.0029196031391620636, -0.039809875190258026, -0.0007917942712083459, -0.013956092298030853, -0.009450247511267662, -0.03185921907424927, -0.015788137912750244, -0.008247746154665947, -0.00491610961034894, 0.024729091674089432, -0.04128117114305496, -0.011904765851795673, 0.003405909053981304, -0.005315764341503382, 0.006702178157866001, -0.013984385877847672, 0.01696234568953514, 0.032028984278440475, 0.0038515417836606503, -0.00036981343873776495, 0.005892257671803236, -0.03723510727286339, 0.03831028565764427, 0.026398446410894394, 0.010857881978154182, 0.035424280911684036, -0.005167220253497362, -0.02784144878387451, 0.034999869763851166, 0.0031883977353572845, 0.013545827008783817, -0.030529392883181572, -0.006419236306101084, 0.01554763875901699, 0.009634159505367279, 0.0077879661694169044, 0.008021392859518528, 0.024502739310264587, -0.01181988324970007, -0.005121242254972458, -0.01583058014512062, 0.01837705448269844, -0.00948561541736126, -0.0022493854630738497, 0.02079620398581028, 0.007321112789213657, -0.0018762561958283186, 0.031915806233882904, -0.016085227951407433, 0.018292171880602837, 0.010058572515845299, 0.012159413658082485, 0.007795039564371109, -0.014741254970431328, -0.011989648453891277, -0.031151864677667618, 0.026058917865157127, -0.00766771612688899, 0.020343497395515442, 0.008205304853618145, -0.019989820197224617, -0.0015128530794754624, 0.015590079128742218, 0.0015225792303681374, -0.018843907862901688, 0.00725037744268775, 0.0044916970655322075, 0.03550916537642479, -0.023370971903204918, -0.014479533769190311, 0.0013643087586387992, 0.008085055276751518, -0.007512098178267479, -0.026271123439073563, -0.023441707715392113, 0.02194211818277836, -0.00601604487746954, -0.007802113424986601, 0.026539918035268784, 0.014097562991082668, 0.012307957746088505, -0.0028188051655888557, -0.014281474985182285, -0.008806555531919003, 0.0007776471902616322, 0.021729910746216774, 0.000700722448527813, -0.013220444321632385, -0.010497131384909153, -0.007161958143115044, 0.007978951558470726, 0.004728660918772221, -0.0039824023842811584, 0.005054043605923653, -0.008254819549620152, 0.0024916541296988726, -0.009959543123841286, -0.048722535371780396, -0.007405994925647974, 0.04091334715485573, -0.037999048829078674, -0.019296614453196526, -0.027615096420049667, -0.0026242828462272882, -0.00643338356167078, 0.003584515769034624, -0.023653913289308548, 0.012987017631530762, -0.011735000647604465, 0.007207936141639948, -0.02051326259970665, 0.01936734840273857, -0.012109898030757904, 0.0075616128742694855, -0.017160404473543167, 0.02416320890188217, 0.03151968866586685, 0.00258184177801013, -0.0040602111257612705, -0.020852793008089066, -0.00785162765532732, 0.00011792915756814182, -0.0021786498837172985, 0.01881561242043972, 0.010978132486343384, 0.016651110723614693, -0.03876299411058426, 0.008007246069610119, -0.005082337651401758, -0.0017834160244092345, -0.04142264276742935, -0.01455734297633171, -0.0031265041325241327, 0.012725296430289745, -0.014387577772140503, -0.04555359110236168, -0.03658434376120567, -0.007802113424986601, 0.008459952659904957, -0.03163286671042442, 0.017712140455842018, -0.013545827008783817, -0.004537675064057112, -0.004714513663202524, 0.03519792854785919, 0.020753763616085052, -0.01167133916169405, -0.018858054652810097, 0.00263666152022779, -0.00696389889344573, -0.004824153613299131, 0.011140823364257812, 0.015491049736738205, -0.012803105637431145, -0.005909941624850035, 0.009719042107462883, -0.02331438474357128, -0.01653793454170227, 0.042214877903461456, 0.0008833081810735166, -0.03964010998606682, -0.014684666879475117, -0.002109682885929942, 0.0007285745232366025, 0.054239895194768906, -0.006864869501441717, 0.003731291741132736, 0.0015323053812608123, -0.042073410004377365, -0.01351045910269022, -0.0019328445196151733, -0.01223722193390131, 0.023229502141475677, -0.014338063076138496, -0.010497131384909153, 0.01936734840273857, 0.007427215576171875, 0.003135346109047532, 0.009648307226598263, 0.006673884112387896, 0.02247970551252365, -0.0045553590171039104, 0.017514081671833992, -0.020117145031690598, 0.0014483070699498057, 0.010560793802142143, -0.01181988324970007, 0.005174293648451567, 0.007802113424986601, -0.0009434332605451345, 0.018744878470897675, -0.004841837100684643, 0.00027763639809563756, 0.02590329945087433, -0.0028541728388518095, 0.0025676945224404335, -0.032877810299396515, -0.014182445593178272, -0.014712960459291935, 0.013680224306881428, -0.013312400318682194, 0.01457148976624012, -0.026356006041169167, -0.00855898205190897, -0.023455854505300522, 0.006818891502916813, 0.02433297410607338, 0.017018934711813927, 0.01921173185110092, -0.02049911580979824, -0.0007904679514467716, 0.011862324550747871, -0.0006321975379250944, -0.006323743611574173, -0.0016631658654659986, -0.03610334172844887, -0.0020212638191878796, 0.009853439405560493, 0.03596187010407448, 0.006787060294300318, -0.025280827656388283, 0.020881086587905884, -0.015873020514845848, -0.013390208594501019, 0.011437912471592426, 0.0005123894661664963, -0.006790597457438707, 0.02714824117720127, 0.0069674355909228325, 0.025408150628209114, -0.02038593962788582, -0.0038869096897542477, 0.011933060362935066, 0.004573042970150709, -0.004891352262347937, -0.021588440984487534, 0.006447530817240477, 0.007271598093211651, 0.026950182393193245, -0.015137373469769955, 0.017839465290308, -0.03468863293528557, -0.006097390316426754, -0.019834203645586967, 0.008092128671705723, -0.0027268491685390472, -0.045638471841812134, 0.004933793563395739, 0.013333620503544807, 0.0144229456782341, 0.01697649247944355, -0.0010106319095939398, 0.005315764341503382, 0.009110718034207821, 0.01628328673541546, 0.054409660398960114, 0.010716411285102367, 0.0066208322532474995, 0.02109329216182232, -0.02092352695763111, -0.025860857218503952, -0.00020944306743331254, -0.011501573957502842, 4.385041393106803e-05, -0.0029355185106396675, 0.0015632520662620664, -0.0016516713658347726, -0.003076989436522126, -0.007441362831741571, 0.03412275016307831, 0.009655380621552467, -0.015915462747216225, -0.029510803520679474, 0.03341539576649666, -0.004141557030379772, 0.00031101464992389083, -0.014345136471092701, -0.021545998752117157, 0.003096441738307476, -0.037404872477054596, 0.04654388502240181, -0.015010049566626549, 0.02743118442595005, 0.0014695277204737067, -0.017613111063838005, -0.008686305955052376, -0.031208453699946404, 0.030020099133253098, -0.0145007548853755, 0.030472805723547935, -0.0032838904298841953, -0.002415613504126668, 0.021956264972686768, -0.007844554260373116, 0.029510803520679474, 0.005994824226945639, -0.004774638917297125, -0.02403588406741619, -0.0036676297895610332, 0.003382920054718852, -0.012208928354084492, -0.005276859737932682, -0.02857709676027298, -0.013828768394887447, -0.005319301038980484, 0.0030663791112601757, 0.008254819549620152, -0.025210091844201088, 0.003420056076720357, 0.018504377454519272, -0.0010406944202259183, -0.0060478756204247475, -0.011020573787391186, 0.001259974087588489, -0.0012555530993267894, 0.09122035652399063, -0.0059064049273729324, -0.02461591549217701, 0.008459952659904957, -0.005665904376655817, 0.008367996662855148, -0.008134569972753525, 0.0038939830847084522, 0.011452059261500835, 0.00010660044063115492, 0.012576752342283726, -0.005566874984651804, 0.03822540491819382, 0.004180461633950472, 0.015802286565303802, 0.008587276563048363, -0.023851972073316574, -0.0067623029462993145, -5.318969488143921e-05, -0.010150528512895107, 0.008856070227921009, -0.018278025090694427, -0.0020831571891903877, 0.027940478175878525, -0.01068104337900877, -0.01109838206321001, 0.04654388502240181, -0.011494500562548637, 0.008594349958002567, -0.026256976649165154, -0.015802286565303802, 0.030727453529834747, 0.015943756327033043, 0.017231140285730362, -0.016042785719037056, 0.00766771612688899, 0.005379426293075085, 0.0157174039632082, -0.009464395232498646, 0.007554539479315281, -0.00438559427857399, 0.031887512654066086, 0.011423764750361443, 0.005121242254972458, 0.012258443050086498, -0.007186715491116047, -0.012484796345233917, 0.005718956235796213, -0.0006140716141089797, -0.008092128671705723, 0.034462280571460724, -0.0024244554806500673, -0.008686305955052376, -0.014529048465192318, 0.039102520793676376, 0.0033281000796705484, 0.019339054822921753, 0.014359284192323685, -0.005418330896645784, 0.004841837100684643, -0.01625499315559864, 0.019862497225403786, -0.0044492557644844055, -0.015392020344734192, -0.025988182052969933, -0.03695216774940491, -0.0075191715732216835, 0.00031388827483169734, -0.023257795721292496, 0.00753331882879138, -0.0033493207301944494, 0.003298037452623248, -0.02516765147447586, 0.006985119543969631, 0.016764286905527115, -3.705318522406742e-05, 0.0021415138617157936, -0.015590079128742218, 0.005195514298975468, 2.5800457024161005e-06, 0.005577485542744398, -0.023795384913682938, -0.006617295555770397, -0.02571938745677471, -0.008247746154665947, -0.017216993495821953, 0.020329350605607033, -0.0041238730773329735, -0.018334612250328064, -0.010589087381958961, 0.009174379520118237, -0.014755401760339737, -0.0011874702759087086, 0.011402544565498829, -0.0041875350289046764, 0.010214189998805523, -0.005209661554545164, -0.026568211615085602, -0.00040076018194667995, -0.009195600636303425, -0.00311235710978508, -0.02560621127486229, -0.01991908624768257, -0.007027560845017433, 0.008007246069610119, -0.007795039564371109, 0.017160404473543167, 0.031915806233882904, 0.0021981021855026484, -0.019706878811120987, -0.016764286905527115, -0.019565409049391747, 0.008318481966853142, 0.0013174465857446194, 0.010178822092711926, -0.0016154194017872214, -0.0004233070940244943, 0.018221436068415642, -0.007462583482265472, -0.010652749799191952, -0.021305499598383904, -0.03225533664226532, -0.00231481553055346, 0.007271598093211651, 0.01281017903238535, 0.008261892944574356, 0.018150700256228447, -0.0012254905886948109, 0.016778433695435524, 0.010645676404237747, -0.0036605563946068287, 0.019466379657387733, -0.009421953931450844, -0.026101358234882355, -0.039668407291173935, -0.0004964739782735705, -0.025507181882858276, 0.0015941988676786423, -0.013949018903076649, -0.011232779361307621, -0.015151520259678364, 0.014125857502222061, -0.02007470279932022, -0.014642225578427315, -0.02417735569179058, -0.02235238254070282, -0.013340693898499012, -0.004456329625099897, -0.012562604621052742, 0.011643044650554657, -0.0020000431686639786, -0.02035764418542385, -0.03242510184645653, 0.009153159335255623, -0.010942764580249786, 0.0001425760128768161, -4.581221583066508e-05, -0.015024196356534958, 0.011727927252650261, -0.008905584923923016, 0.017301876097917557, -0.019904937595129013, 0.01131058856844902, 0.02515350468456745, -0.0027498381678014994, 0.01476954948157072, -0.018065817654132843, -0.02332853153347969, -0.03887616842985153, -0.012081604450941086, 0.013036532327532768, 0.03239680826663971, 0.0058639636263251305, -0.029227862134575844, -0.005153072997927666, 0.0441671758890152, 0.01400560699403286, -0.0007595212082378566, -0.023158766329288483, -0.055541425943374634, -0.02615794725716114, 0.02857709676027298, -0.01738675870001316, 0.009782704524695873, -0.011989648453891277, 0.001902781892567873, 0.06236031651496887, 0.004477550275623798, 0.003260901430621743, -0.0336417518556118, 0.032311923801898956, -0.019735174253582954, 0.003996549639850855, 0.011282294057309628, 0.04006452485918999, 0.002417381852865219, 0.02631356380879879, -5.7361979997949675e-05, -0.009782704524695873, -0.02079620398581028, 0.019466379657387733, 0.0024651282001286745, -0.011218632571399212, -0.005075264256447554, -0.02403588406741619, 0.009230968542397022, -0.005549191031605005, -0.005538580939173698, 0.027233123779296875, -0.028124390169978142, -0.016608668491244316, 0.0002820573572535068, -0.01967858523130417, -0.036980461329221725, -0.006737545598298311, -0.006712788250297308, 0.007204399444162846, 0.02362561970949173, -0.034462280571460724, 0.003232607152312994, 0.0004642009735107422, -0.019621996209025383, 0.025394003838300705, 0.013970239087939262, 0.0311235710978508, 0.006886090151965618, -0.03270804509520531, -0.010999352671205997, -0.0073352595791220665, -0.005443088244646788, -0.026638947427272797, 0.022267499938607216, 0.016325727105140686, 0.005644684191793203, -0.004979771561920643, -0.004332542419433594, -0.008162863552570343, -0.03842346370220184, -0.034886691719293594, 0.025832563638687134, 0.008721672929823399, 0.005368816200643778, -0.024233944714069366, 0.000774110434576869, -0.013475091196596622, 0.0021326718851923943, 0.017018934711813927, 0.004205218981951475, -0.018900495022535324, -0.01626913994550705, -0.030331334099173546, 0.013970239087939262, 0.00948561541736126, 0.011275220662355423, 0.023385118693113327, -0.02844977378845215, -0.014727108180522919, -0.0040389904752373695, -0.013354841619729996, -0.024927150458097458, 0.0030239378102123737, 0.02617209404706955, 0.0031088204123079777, -0.009711968712508678, -0.0057012722827494144, 0.011834030039608479, -0.011777441948652267, 0.01330532692372799, -0.02175820618867874, 0.03166116029024124, -0.013595341704785824, -0.0067623029462993145, 0.017896052449941635, 0.010801293887197971, 0.012010868638753891, 0.02247970551252365, -0.0044209617190063, -1.6509529814356938e-05, -0.013913650996983051, 0.008000172674655914, 0.008007246069610119, 0.0077455248683691025, -0.01809411309659481, -0.019721025601029396, -0.012293810024857521, -0.00947146862745285, -0.0021344402339309454, 0.0013926029205322266, 0.014104636386036873, -0.03355686739087105, -0.018278025090694427, -0.0034713391214609146, -0.02911468595266342, 0.013956092298030853, -0.011402544565498829, 0.034151043742895126, -0.003009790787473321, 0.027332153171300888, -0.01754237711429596, 0.02985033392906189, -0.018193142488598824, 0.01796678826212883, -0.030585981905460358, 0.01600034534931183, 0.015236402861773968, -0.023512443527579308, 0.015745697543025017, -0.009917101822793484, -0.03084062971174717, -0.0023395728785544634, -0.006737545598298311, 0.028223419561982155, -0.001691460027359426, 0.0010291999205946922, 0.015123225748538971, -0.022847529500722885, -0.01428854838013649, 0.0008390985312871635, -0.028973214328289032, 0.03069915808737278, 0.003170713782310486, 0.007264524232596159, 0.0014801380457356572, -0.01924002543091774, 0.027629243209958076, -0.005849816836416721, 0.0004637588863261044, 0.003480181097984314, -0.0484112985432148, 0.007264524232596159, -0.0024032348301261663, 0.012067457661032677, 0.006030191667377949, -0.0122230751439929, -0.02475738525390625, -0.0075403922237455845, -0.01812240667641163, 0.002028337214142084, 0.02504032664000988, -0.025294974446296692, 0.003706534393131733, 0.022140176966786385, 0.004003623034805059, -0.008474099449813366, -0.007802113424986601, -0.011841104365885258, 0.037829287350177765, -0.021404528990387917, -0.041083112359046936, -0.009570498019456863, -0.011048867367208004, 0.0449594110250473, 0.005917015019804239, -0.028761008754372597, 0.004314858466386795, -0.011423764750361443, -0.024856414645910263, -0.003731291741132736, -0.005789691582322121, 0.04312029108405113, 0.04541211947798729, 0.025224238634109497, 0.011296441778540611, 0.014826137572526932, -0.025507181882858276, 0.025775974616408348, -0.01881561242043972, 0.011529868468642235, 0.002558852778747678, 0.012689928524196148, -0.00565529428422451, -0.015660814940929413, -0.015618373639881611, 0.012923355214297771, 0.03624481335282326, 0.0038621521089226007, 0.01054664608091116, 0.015080784447491169, -0.01614181511104107, 0.010787147097289562, -0.015193961560726166, 0.04399741068482399, 0.01628328673541546, 0.003200776409357786, 0.006369721610099077, -0.025096915662288666, -0.0034695707727223635, -0.006044338922947645, -0.003193702781572938, -0.01485443115234375, -0.01054664608091116, -0.002452749526128173, 0.00013052888971287757, 0.02236652933061123, 0.00983221922069788, -0.005669441539794207, -0.005948846228420734, -0.015788137912750244, 0.043912529945373535, 0.0010910934070125222, 0.005789691582322121, 0.041252877563238144, 0.010214189998805523, -0.029680568724870682, 0.008070907555520535, -0.009945395402610302, 0.01138839777559042, -0.015929609537124634, 0.013885356485843658, -0.009945395402610302, 0.014543196186423302, -0.008325555361807346, 0.027332153171300888, -0.011996721848845482, 0.01699064113199711, -0.00544662494212389, 0.003605736419558525, -0.009719042107462883, 0.017160404473543167, 0.018334612250328064, -0.012788957916200161, 0.001740090548992157, 0.01982005499303341, 0.00615044217556715, 0.018773172050714493, -0.016453051939606667, -0.018037524074316025, 0.0075403922237455845, 0.006320206914097071, -0.012697001919150352, 0.003151261480525136, -0.02331438474357128, 0.011565236374735832, 0.017004787921905518, -0.021574294194579124, 0.0008567823679186404, 0.17270752787590027, -0.012619193643331528, -0.00565529428422451, 0.008056760765612125, -0.00626008166000247, 0.003089368110522628, 0.021291352808475494, 3.959523746743798e-05, -0.007844554260373116, 0.00863679125905037, -0.017995083704590797, 0.029171274974942207, -0.005096484906971455, 0.008240672759711742, -0.01174914836883545, -0.005018675699830055, -0.05701272189617157, 0.005266249645501375, -0.023710502311587334, -0.04524235427379608, 0.0016649342142045498, -0.016240844503045082, -0.01683502271771431, -0.003055768785998225, 0.01812240667641163, 0.0012652792502194643, -0.01399146020412445, -0.013206296600401402, 0.03398128226399422, 0.003787880064919591, -0.025351563468575478, -0.013906577602028847, -0.0037595857866108418, -0.007830407470464706, -0.018575113266706467, -0.006182272918522358, 0.010334440506994724, 0.007964804768562317, 0.02390856109559536, 0.009952468797564507, -0.026766270399093628, -0.004771101754158735, -0.014168297871947289, -0.0032237654086202383, -0.024644209071993828, 0.03480181097984314, -0.01781116984784603, -0.025860857218503952, -0.014203665778040886, 0.016651110723614693, -0.03440569341182709, 0.019183436408638954, 0.04892059415578842, 0.027770712971687317, -0.009506836533546448, 0.005598706193268299, -0.0034731074701994658, 0.014826137572526932, -0.010949837975203991, 0.012633340433239937, -0.008714599534869194, 0.031038688495755196, -0.0044916970655322075, 0.019692732021212578, -0.008219452574849129, 0.004622557666152716, -0.004318395629525185, -0.018136553466320038, 0.03270804509520531, -0.025238387286663055, 0.03200069069862366, -0.004237049724906683, -0.018560966476798058, 0.011275220662355423, -0.01309312041848898, -0.009683674201369286, 0.04345982149243355, 0.007306965533643961, -0.004831227008253336, -3.931892933906056e-05, 0.009535130113363266, -0.017853612080216408, 0.010200043208897114, 0.011614751070737839, 0.00912486482411623, -0.024927150458097458, -0.01478369627147913, -0.008311408571898937, -0.02235238254070282, 0.009209747426211834, -0.0057790810242295265, -0.015957903116941452, -0.0011910070898011327, -0.025238387286663055, -0.015759844332933426, -0.010574940592050552, 0.03887616842985153, -0.0009372439235448837, 0.002084925537928939, -0.009245115332305431, -0.000859434949234128, -0.006949752103537321, 0.04088505357503891, 0.037546344101428986, -0.03208557143807411, -0.014260253868997097, -0.0008939184481278062, 0.005690662190318108, 0.00899046752601862, -0.02788388915359974, 0.012965796515345573, -0.006302522961050272, 0.011077161878347397, -0.027784859761595726, 0.028506360948085785, 0.012265516445040703, -0.03321733698248863, -0.017910201102495193, 0.013453871011734009, 0.0038020270876586437, 0.0018285097321495414, -0.028902480378746986, -0.0005066422163508832, -0.027926331385970116, 0.0005216734716668725, -0.014712960459291935, -0.04428035393357277, 0.013368988409638405, 0.013800473883748055, -0.03915911167860031, 0.03632969409227371, -0.04184705391526222, 0.00960586592555046, 0.011112529784440994, -0.008516540750861168, -0.0004299385182093829, -0.006634979508817196, -0.029482509940862656, 0.03519792854785919, 0.00041181259439326823, -0.010787147097289562, 0.016580374911427498, 0.0058851842768490314, 0.014189518988132477, -3.462165841483511e-05, -0.005973603576421738, 0.009018762037158012, -0.004215829074382782, 0.005503213033080101, -0.0190985556691885, -0.0253091212362051, -0.012739443220198154, -0.0031229674350470304, -0.013489238917827606, 0.012902135029435158, 0.018023377284407616, -0.02304559014737606, -0.02134793996810913, 0.014352209866046906, 0.025394003838300705, -0.0389893464744091, 0.02347000129520893, 0.04190364480018616, -0.0052697863429784775, -0.01796678826212883, 0.00480293296277523, -0.18198800086975098, 0.024828121066093445, 0.015448608435690403, 0.0019982748199254274, 0.014147077687084675, 0.031746041029691696, 0.027770712971687317, 0.01351045910269022, -0.006634979508817196, -0.003158335108309984, 0.024714944884181023, 0.027119947597384453, -0.024559326469898224, -0.02416320890188217, -0.0077030835673213005, 0.010574940592050552, -0.0039045934099704027, 0.021164027974009514, 0.04198852553963661, 0.010044424794614315, 0.010518352501094341, -0.009818071499466896, 0.020428379997611046, -0.002311278833076358, -0.008806555531919003, 0.018759025260806084, -0.017485788092017174, 0.03350028023123741, 0.017160404473543167, -0.007115980144590139, -0.013680224306881428, 0.0002502264396753162, 0.020980115979909897, -0.008658011443912983, 0.016750140115618706, 0.011338883079588413, -0.017740435898303986, -0.0036322621162980795, -0.008332628756761551, 0.010178822092711926, 0.011381324380636215, -0.011501573957502842, 0.0275868009775877, -0.010560793802142143, -0.007370627485215664, 0.023512443527579308, 0.002762216841802001, -0.013715592212975025, 0.004152167122811079, -0.031746041029691696, -0.0021627345122396946, 0.0037701961118727922, 0.024545179679989815, 0.006203493569046259, 0.03497157618403435, 0.036838989704847336, 0.019324908033013344, 0.00027409964241087437, 0.009818071499466896, -0.033019278198480606, -0.015222255140542984, 0.0036322621162980795, 0.003508475376293063, -0.030585981905460358, 0.009039982222020626, -0.016028638929128647, -0.03265145421028137, -0.0009513909462839365, -0.02024446800351143, -0.0007524476968683302, 0.02037179097533226, 0.0020407158881425858, 0.020032262429594994, -0.009874660521745682, -0.005513823591172695, 6.0069818573538214e-05, -0.025860857218503952, 0.038706403225660324, -0.006362648215144873, -0.007197325583547354, -0.014514901675283909, 0.045327235013246536, -0.016622817143797874, -0.025224238634109497, 0.014741254970431328, -0.008742894046008587, -0.0077879661694169044, -0.012357472442090511, -0.020598145201802254, 0.0022423118352890015, 0.010299072600901127, -0.008042613975703716, 0.0016331032384186983, -0.006932068150490522, 0.01781116984784603, 0.023003147915005684, 0.0061893463134765625, -0.019056113436818123, 0.009747336618602276, -0.024559326469898224, 0.005347595550119877, -0.0030805261339992285, -0.01895708404481411, 0.0034518870525062084, 0.0311235710978508, 0.008926806040108204, -0.0027586801443248987, 0.02587500587105751, 0.036442872136831284, 0.01713211089372635, -0.017316022887825966, -0.005835669580847025, 0.020555702969431877, 0.0029797281604260206, -0.015915462747216225, 0.01074470579624176, -0.013312400318682194, -0.029086392372846603, 0.02375294268131256, -0.025535475462675095, 0.06920750439167023, -0.01991908624768257, 0.007710157427936792, -0.002947897417470813, 0.0027569117955863476, -0.0466853566467762, -0.10321708023548126, -0.0032697434071451426, 0.00834677554666996, 0.014727108180522919, -0.03290610387921333, 0.006192883476614952, 0.0005415678024291992, -0.0014332757564261556, -0.001434160047210753, 0.017146257683634758, -0.02873271517455578, -0.028902480378746986, 0.002392624504864216, 0.0027940478175878525, 0.0077030835673213005, -0.010518352501094341, 0.01180573645979166, -0.009655380621552467, 0.01710381731390953, 0.02475738525390625, 0.0004902846412733197, -0.0144229456782341, 0.016226697713136673, -0.009881733916699886, -0.008438731543719769, 0.011140823364257812, -0.03879128769040108, -0.012576752342283726, 0.03225533664226532, 0.003932887688279152, -0.018575113266706467, -0.0010902091162279248, 0.004339616280049086, -0.0047958591021597385, -0.010631528683006763, 0.023951003327965736, -0.04043234884738922, 0.010178822092711926, 0.012230148538947105, -0.016523785889148712, 0.020032262429594994, -0.005110631696879864, 0.024729091674089432, 0.006486434955149889, -0.003559758421033621, -0.0006649126298725605, -0.019296614453196526, 0.015363726764917374, 0.007144274190068245, -0.025832563638687134, -0.013814621604979038, 0.004848910961300135, -0.04764735698699951, -0.019735174253582954, 0.029680568724870682, -0.018900495022535324, 0.031208453699946404, 0.01054664608091116, -0.014104636386036873, -0.02303144335746765, -0.013383135199546814, 0.01144498586654663, 0.0029638127889484167, 0.020343497395515442, 0.0052697863429784775, -0.0032290704548358917, -0.018193142488598824, -0.030161568894982338, 0.03242510184645653, 0.027827301993966103, -0.029029803350567818, 0.007865775376558304, -0.023370971903204918, 0.0007360901217907667, -0.02148941159248352, 0.0015685572288930416, -0.020711321383714676, -0.011678412556648254, 0.01925417222082615, 0.0078587019816041, 0.004268880467861891, -0.013609488494694233, 0.012201854027807713, 0.00537235289812088, 0.01351045910269022, 0.018787318840622902, 0.026780417189002037, -0.001945223193615675, 0.010044424794614315, -0.019551260396838188, 0.010405175387859344, -0.0027799007948487997, 0.002272374462336302, -0.034575458616018295, 0.011586456559598446, 0.02303144335746765, 0.017754582688212395, 0.005825059022754431, -0.020428379997611046, -0.001362540409900248, -0.009160232730209827, -0.013701444491744041, -0.06666103005409241, 0.020852793008089066, 0.003333405125886202, 0.016297433525323868, 0.007596980780363083, -0.021446969360113144, 0.014479533769190311, -0.02109329216182232, -0.016453051939606667, 0.020980115979909897, -0.04394082352519035, 0.019197585061192513, -0.02293241210281849, -0.01102764718234539, -0.008254819549620152, 0.012590899132192135, -0.003174250479787588, -0.02262117713689804, 0.005708345677703619, -0.016155961900949478, 0.0015411472413688898, 0.02491300366818905, 0.034716930240392685, 0.007922363467514515, -0.016382316127419472, -0.008403364568948746, 0.008580202236771584, -0.0015986197395250201, -0.0016392925754189491, -0.016495492309331894, 0.01953711360692978, -0.024969592690467834, 0.007554539479315281, 0.03652775287628174, -0.0008015203638933599, 0.022578736767172813, -0.0034465817734599113, -0.01911270245909691, 0.017316022887825966, 0.059927020221948624, -0.027402888983488083, -0.023526590317487717, 0.019480526447296143, -0.010949837975203991, -0.005793228279799223, 0.01639646291732788, -0.00798602495342493, 0.006978046149015427, 0.015873020514845848, -0.02335682511329651, 0.015010049566626549, 0.01485443115234375, -0.010652749799191952, -0.01349631231278181, 0.001354582724161446, -0.022267499938607216, 0.032453395426273346, -0.002659650519490242, -0.006157515570521355, -0.015448608435690403, 0.036159928888082504, 0.004947940353304148, 0.03151968866586685, -0.003298037452623248, 0.016863316297531128, -0.020032262429594994, -0.012689928524196148, 0.013538753613829613, -0.010023204609751701, -0.02744533121585846, -0.009627086110413074, -0.012194780632853508, 0.015094932168722153, 0.022267499938607216, 0.02815268374979496, 0.01167133916169405, 0.0069674355909228325, -0.017316022887825966, -0.030925512313842773, 0.010624455288052559, 0.012788957916200161, -0.012852620333433151, -0.039413757622241974, 0.029171274974942207, 0.02332853153347969, -0.029510803520679474, -0.00996661651879549, 0.00351908546872437, -0.002560621127486229, 0.02235238254070282, 0.0017931420588865876, -0.00842458475381136, 0.0011308820685371757, -0.01967858523130417, -0.00962001271545887, 0.00409911572933197, -0.007625274825841188, -0.011423764750361443, 0.028633685782551765, 0.03398128226399422, -0.005011602304875851, 0.0023395728785544634, -0.0032626697793602943, -0.022805089130997658, -0.005319301038980484, -0.017613111063838005, -0.027360448613762856, -0.004435108974575996, 0.013199223205447197, 0.006801207549870014, 0.028039507567882538, 0.001147681730799377, 0.02392270788550377, 0.018787318840622902, -0.004314858466386795, -0.000665796862449497, 0.009464395232498646, -0.013651929795742035, -0.015250549651682377, 0.018150700256228447, -0.00016700182459317148, 0.025365710258483887, 0.03157627582550049, -0.003968255128711462, 0.011713780462741852, 0.03794246166944504, 0.017910201102495193, 0.006362648215144873, 0.012336251325905323, 0.009775630198419094, -0.0065996116027235985, -0.01455734297633171, -0.033443693071603775, 0.013312400318682194, -0.028195125982165337, -0.0263277105987072, 0.002583610126748681, -0.0007692473591305315, -0.014741254970431328, 0.04402570426464081, 0.01018589548766613, -0.014811989851295948, -0.0026172094512730837, 0.016071079298853874, 0.04201681911945343, 0.01421781349927187, -0.0019257708918303251, -0.0008329091942869127, -0.028803450986742973, 0.019452231004834175, -0.026851153001189232, 0.04852447658777237, -0.004746344406157732, 0.005641147028654814, -0.003232607152312994, -0.00438559427857399, 0.05489066243171692, -0.012060383334755898, -0.00376665941439569, 0.023569030687212944, 0.002231701510027051, 0.03327392786741257, -0.0019116238690912724, -0.008778261952102184, 0.012343325652182102, 0.02076791040599346, 0.0005782617954537272, 0.005428940989077091, -0.033585160970687866, 0.010058572515845299, 0.01925417222082615, -0.001989432843402028, -0.005513823591172695, 0.0110417939722538, -0.013192149810492992, 0.018589260056614876, -0.0038975197821855545, 0.00841043796390295, 0.0168208759278059, -0.0055739483796060085, 0.01921173185110092, -0.004339616280049086, -0.02604476921260357, 0.02236652933061123, -0.028803450986742973, -0.0022405434865504503, -0.0008726978558115661, -0.034320808947086334], "44711054-f60b-48be-bac6-de1cf1a7a248": [-0.009378773160278797, -0.02022276259958744, 0.012827563099563122, 0.01080943364650011, -0.014265133999288082, 0.0006708379951305687, -0.00805178377777338, -0.02045775018632412, -0.024176085367798805, -0.025613656267523766, 0.026429202407598495, 0.000931311456952244, 0.005584413185715675, 0.006831921171396971, 0.0076163653284311295, 0.004388740286231041, 0.0371004082262516, -0.03264946490526199, 0.035386379808187485, -0.01571652851998806, 0.0010202957782894373, -0.007450491655617952, -0.016988227143883705, 0.006050932686775923, -0.024079326540231705, 0.01341503206640482, 0.03154363855719566, -0.024328136816620827, 0.00332438456825912, -0.022489702329039574, -0.004240145441144705, -0.012758448719978333, -0.0022151044104248285, 0.009364950470626354, -0.022544994950294495, -0.0032258969731628895, 0.00645524961873889, -0.027963533997535706, -0.004644462373107672, 0.0034073214046657085, 0.007263883948326111, 0.015688883140683174, -0.0033779479563236237, 0.016642656177282333, -0.009883305057883263, 0.0172923281788826, -0.005335602443665266, -0.017803771421313286, -0.022600285708904266, 0.04110902175307274, 0.03588400036096573, 0.013511791825294495, -0.041910745203495026, -0.006755895912647247, -0.006171882152557373, 0.0016587364953011274, 0.014292780309915543, 0.01859167218208313, 0.013200778514146805, 0.011963637545704842, 0.03317473083734512, 0.015246553346514702, -0.019199876114726067, 0.011866877786815166, -0.014665995724499226, -0.008563227020204067, -0.02012600377202034, -0.0020250407978892326, 0.0031965235248208046, -0.004388740286231041, 0.04110902175307274, 0.043431252241134644, -0.018411975353956223, 0.0022202879190444946, -0.008673809468746185, -0.028723787516355515, -0.03933970257639885, -0.007457403000444174, -0.024134617298841476, 0.006393047049641609, -0.002522661816328764, -0.031211892142891884, -0.0017399454955011606, -0.005632793065160513, 0.026097455993294716, 0.007395200431346893, -0.013684576377272606, 0.02366464212536812, -0.03751509264111519, -0.02329142577946186, 0.018149342387914658, 0.009800368919968605, 0.00560514722019434, 0.019034001976251602, -0.009205987676978111, 0.026512138545513153, -0.020015420392155647, 0.02161886729300022, -0.010477686300873756, -0.01863314025104046, -0.0015127331716939807, 0.012993436306715012, -0.0495409332215786, -0.002773200161755085, -0.017803771421313286, 0.017264682799577713, -0.013021081686019897, 0.005584413185715675, 0.028392041102051735, -0.006185704842209816, -0.02587629109621048, 0.006355034187436104, -0.0067109717056155205, -0.03732157126069069, 0.0018228823319077492, -0.004101917147636414, 0.052305493503808975, -0.013746779412031174, -0.0011490206234157085, -0.022987324744462967, -0.007526516914367676, 0.002458731411024928, -0.003453973215073347, -0.014818046241998672, 0.017803771421313286, -0.002743826713413, 0.007706213742494583, -0.03743215650320053, -0.02601451799273491, -0.01358090527355671, 0.0282676350325346, -0.0025710416957736015, 0.02869614213705063, -0.0003509696398396045, 0.0031464158091694117, 0.022199423983693123, -0.03693453222513199, 0.012592574581503868, -0.027908243238925934, -0.01874372363090515, 0.02888966165482998, 0.006092401221394539, 0.00037451161188073456, -0.026318620890378952, -0.005238843150436878, 0.008487202227115631, 0.01061591412872076, 0.013131664134562016, -0.020305700600147247, 0.003514448180794716, 0.026387734338641167, -0.00319825136102736, -0.003519631689414382, -0.006793908309191465, 0.025171326473355293, -0.010360192507505417, -0.00821765698492527, 0.01109280064702034, -0.011037509888410568, -0.014707463793456554, 0.007996492087841034, 0.025337200611829758, -0.006071666721254587, 0.008563227020204067, 0.009503178298473358, 0.027134165167808533, -0.01219862513244152, -0.014320425689220428, -0.02960844710469246, 0.014472476206719875, 0.011051332578063011, 0.014513945206999779, -0.029967840760946274, 0.004253968130797148, -0.013504880480468273, 0.017167923972010612, 0.02869614213705063, 0.024715173989534378, -0.031018372625112534, 0.0175826083868742, -0.01705734059214592, -0.014956275001168251, 0.027659431099891663, 0.006818098481744528, -0.012634043581783772, 0.000973643793258816, 0.017237037420272827, 0.01358781661838293, 0.0024483641609549522, 0.005612058565020561, 0.0031274096108973026, 0.028115585446357727, -0.0018142431508749723, -0.015799466520547867, -0.6214733123779297, -0.013663842342793941, -0.01810787431895733, -0.021535929292440414, 0.0018937241984531283, -0.0009943780023604631, 0.021452993154525757, 0.002913156058639288, -0.006496718153357506, -0.004222866613417864, -0.039118535816669464, 0.00756107410416007, 0.0027507380582392216, -0.0353587344288826, -0.038123294711112976, -0.018024936318397522, 0.015370958484709263, -0.017651721835136414, 0.02203354984521866, -0.029110826551914215, -0.019227521494030952, 0.014555413275957108, -0.009593026712536812, 0.006448338273912668, 0.0009935140842571855, -0.0019317369442433119, 0.024991631507873535, 0.016545897349715233, 0.014030146412551403, 0.028198521584272385, -0.05927218496799469, 0.022600285708904266, 0.019808078184723854, 0.02152210660278797, 0.03790213167667389, 0.0034505175426602364, -0.033230021595954895, 0.053217798471450806, 0.009862571023404598, 0.011500573717057705, -0.023249957710504532, -0.010056090541183949, 0.01053988840430975, 0.017610253766179085, 0.009620672091841698, 0.013117841444909573, 0.01917223073542118, -0.011818498373031616, 0.008058695122599602, -0.0020388637203723192, 0.011472927406430244, -0.022544994950294495, -0.006161515135318041, 0.00222201575525105, 0.008397353813052177, -0.006185704842209816, 0.034667592495679855, -0.0126755116507411, 0.021383877843618393, 0.009724343195557594, 0.014486298896372318, 0.023733755573630333, -0.018868127837777138, -0.00824530329555273, -0.01226773951202631, 0.030493106693029404, -0.009503178298473358, 0.018149342387914658, 0.01401632372289896, -0.017789948731660843, 0.015094502829015255, 0.01639384590089321, 0.00034341029822826385, -0.018619317561388016, 0.009496266953647137, 0.01796964555978775, 0.028834370896220207, -0.02539249137043953, 0.0029701751191169024, 0.009364950470626354, 0.018992533907294273, -0.018273748457431793, -0.02927670069038868, -0.027037406340241432, 0.02294585481286049, -0.01535713579505682, -0.00883968360722065, 0.024272844195365906, 0.010187407024204731, 0.010028445161879063, -0.0022531170397996902, -0.006475984118878841, -0.024701351299881935, -0.009461709298193455, 0.020595978945493698, 0.011908345855772495, -0.006092401221394539, 0.007222415413707495, -0.010173584334552288, -0.0032224413007497787, -0.006424148567020893, 0.007153301499783993, 0.016932936385273933, 0.0032207134645432234, -0.0004509690043050796, -0.0023205033503472805, -0.04326537996530533, -0.005743375513702631, 0.042712464928627014, -0.047467511147260666, -0.0027023584116250277, -0.02247587963938713, -0.003704511560499668, 0.007574896793812513, 0.0029701751191169024, -0.028212344273924828, 0.022254714742302895, -0.00323453638702631, 0.017707012593746185, -0.03057604469358921, 0.016974404454231262, 0.005570590030401945, 0.0049001844599843025, -0.01156968716531992, 0.01614503562450409, 0.014320425689220428, -0.007644011173397303, 0.0018211544957011938, -0.0002937345998361707, -0.001000425429083407, 0.007505782879889011, -0.015288022346794605, 0.013601639308035374, -0.007809884380549192, 0.00946862157434225, -0.021867677569389343, 0.012689334340393543, 0.001411653938703239, 0.018674608319997787, -0.04246365651488304, -0.007332997862249613, -0.0027541937306523323, 0.0023636994883418083, -0.007277706637978554, -0.04450942948460579, -0.03696218132972717, -0.006593477912247181, -0.010166672989726067, -0.020582156255841255, -0.006026742979884148, 0.0002498903777450323, -0.01444483082741499, 0.001068675541318953, 0.02659507654607296, 0.03483346849679947, -0.023512590676546097, -0.039035599678754807, -0.002424174454063177, 0.00523538701236248, -0.010152850300073624, 0.006676414515823126, 0.009067759849131107, -0.006669503170996904, -0.003319201059639454, 0.0011403813259676099, -0.02284909598529339, -0.036685723811388016, 0.023319071158766747, -0.008936443366110325, -0.04998326301574707, -0.013435766100883484, -0.011009863577783108, -0.00812089815735817, 0.03569048270583153, -0.02644302509725094, 0.016794707626104355, 0.0005153314559720457, -0.023014970123767853, -0.01740291155874729, 0.007713125087320805, -0.016615010797977448, 0.02041628211736679, -0.015495363622903824, -0.003770170034840703, 0.018425798043608665, 0.011293231509625912, 0.01882665976881981, -0.006776629947125912, 0.014818046241998672, 0.025599833577871323, -0.00958611536771059, 0.022544994950294495, -0.00262287724763155, -0.0013477234169840813, -0.004271246492862701, -0.0008712686249054968, 0.020043065771460533, 0.0215635746717453, 0.009385684505105019, 0.02271086722612381, 0.007485048845410347, -0.003053111955523491, 0.019821900874376297, -0.007581808138638735, 0.004737766459584236, -0.047218699008226395, 0.00099178624805063, -0.000593516684602946, 0.022254714742302895, -0.010118292644619942, 0.010443128645420074, -0.028101760894060135, -0.015053033828735352, -0.03369999676942825, 0.006963237654417753, 0.01954544521868229, 0.021411525085568428, 0.01944868639111519, -0.022835273295640945, -0.011244851164519787, 0.0075472514145076275, -0.007004706189036369, 0.00615805946290493, -0.015481540933251381, -0.01925516687333584, 0.014361893758177757, 0.01734761893749237, 0.024839580059051514, 0.0012647865805774927, -0.019296634942293167, 0.013352829031646252, -0.02405167929828167, -0.0147627554833889, 0.015827111899852753, 0.01420984324067831, 0.012799916788935661, 0.020374814048409462, -0.006552009377628565, 0.03455701097846031, -0.020637447014451027, -0.0033952263183891773, 0.02683006413280964, 0.0013252614298835397, -0.016172681003808975, -0.020582156255841255, 0.017126454040408134, 0.020388636738061905, 0.01440336275845766, 0.004305803682655096, 0.03334060311317444, -0.024452541023492813, 0.01686382107436657, -0.014472476206719875, 0.001424612826667726, 0.010871635749936104, -0.0357457734644413, 0.009171430952847004, 0.03206890821456909, 0.01030490081757307, 0.022724689915776253, 0.003208618611097336, 0.01633855514228344, 0.0001269970234716311, 0.012426701374351978, 0.04141312092542648, 0.00848029088228941, 0.008805126883089542, 0.015246553346514702, -0.021148890256881714, -0.021867677569389343, -0.01408543810248375, -0.014555413275957108, -0.007720036432147026, -0.007650922518223524, 0.004105372820049524, 2.3487968064728193e-05, 0.01586857996881008, 0.003825461259111762, 0.029387282207608223, 0.01614503562450409, -0.009551557712256908, -0.022793805226683617, 0.014417185448110104, -0.009040114469826221, 0.005701906979084015, -0.013145486824214458, -0.030271941795945168, 0.004568437114357948, -0.026083631440997124, 0.038455042988061905, 0.014265133999288082, 0.031184246763586998, 0.009731254540383816, -0.005947261583060026, -0.00895717740058899, -0.001569752232171595, 0.029746675863862038, -0.009178342297673225, 0.02665036730468273, 0.0006319613312371075, 0.005193918943405151, 0.004209043923765421, -0.0033485745079815388, 0.011873789131641388, 0.01255110651254654, -0.0008129536872729659, -0.023899629712104797, 0.00286995992064476, -0.006164970807731152, -0.012634043581783772, -0.01480422355234623, -0.0361328125, -0.009669051505625248, -0.0017580880085006356, 0.015177439898252487, 0.008846594952046871, -0.02002924308180809, -0.008355885744094849, 0.034529365599155426, -0.006047477014362812, 0.010069913230836391, -0.01396794430911541, -0.021259473636746407, -0.007167124189436436, 0.08387678116559982, 0.014970097690820694, -0.026290973648428917, 0.0006388727342709899, 0.0029027890413999557, -0.007906644605100155, -0.02376140095293522, -0.002228927332907915, 0.00767856789752841, -0.014555413275957108, 0.01152130775153637, -0.014292780309915543, 0.02199208177626133, -0.007567985448986292, 0.0059438059106469154, 0.006804275792092085, -0.02253117226064205, 0.0002622013271320611, -0.002863048342987895, -0.019061647355556488, -0.011127357371151447, -0.014320425689220428, 0.004022436216473579, 0.028281457722187042, -0.030603690072894096, -0.017002049833536148, 0.026138924062252045, -0.017554961144924164, -0.0004699753480963409, -0.0365198515355587, -0.014679818414151669, 0.027908243238925934, 0.007395200431346893, 0.014527767896652222, -0.008639252744615078, -0.0035524608101695776, -0.003338207257911563, 0.009731254540383816, -0.005377070978283882, 0.005276855546981096, 0.01183923240751028, 0.020291877910494804, 0.01763789914548397, 0.013802070170640945, 0.012751537375152111, 0.006914857774972916, -0.004851804580539465, 0.007595631293952465, -0.007664745207875967, -0.013041815720498562, 0.0365198515355587, 0.002263484289869666, 0.0014358438784256577, 4.8001849791035056e-05, 0.04547702893614769, 0.004001701716333628, 0.0033831314649432898, 0.0011498845415189862, -0.020720385015010834, 0.010864724405109882, -0.006603844929486513, 0.015481540933251381, 0.007471225690096617, -0.0253510233014822, -0.017416734248399734, -0.03253888338804245, -0.012060397304594517, -0.004022436216473579, -0.02774236910045147, 0.017430556938052177, 0.0019317369442433119, -0.008155454881489277, -0.015509186312556267, 0.0045615253038704395, 0.015108325518667698, -0.009897127747535706, -0.013097107410430908, -0.012046574614942074, 0.014831868931651115, 0.004236689768731594, -0.0070323520340025425, -0.023249957710504532, 0.012488904409110546, -0.044868823140859604, -0.01145219337195158, -0.02746591344475746, 0.0077822390012443066, 0.004907095804810524, -0.021674158051609993, 0.012716980651021004, 0.000773213105276227, -0.001957654720172286, 0.008583961986005306, 0.009828014299273491, 0.006845743861049414, 0.017029695212841034, -0.009475532919168472, -0.020374814048409462, 0.0011602516751736403, -0.00043736217776313424, -0.0038220055866986513, -0.022641753777861595, -0.001036710338667035, -0.008756746537983418, 0.012779182754456997, 0.003649220336228609, 0.01156968716531992, 0.024701351299881935, -0.00895717740058899, -0.025530720129609108, -0.014679818414151669, -0.02099684067070484, -0.005477286409586668, -0.0071947695687413216, 0.009807280264794827, -0.014748932793736458, 0.009489355608820915, 0.014887160621583462, 0.002939073834568262, -0.003669954603537917, -0.013110930100083351, -0.01738908886909485, -0.013242246583104134, -0.01200510561466217, -0.023125551640987396, 0.009814191609621048, 0.023927275091409683, -0.01346341148018837, 0.009738165885210037, 0.002021585125476122, 0.001772774732671678, 0.019877193495631218, -0.004018980544060469, -0.03314708545804024, -0.03267711028456688, -2.875251266232226e-05, -0.025226619094610214, 0.0012976158177480102, -0.01022887509316206, -0.0012017200933769345, -0.00457534845918417, -0.0031827008351683617, -0.01492862869054079, -0.004682475235313177, -0.0218538548797369, -0.028474977239966393, -0.009102316573262215, -0.008348974399268627, -0.002412079367786646, 0.014306602999567986, -0.007955024018883705, -0.018757546320557594, -0.02760414034128189, 0.0007477273466065526, -0.007802973035722971, -0.011590421199798584, -0.005670805461704731, -0.013808981515467167, 0.02457694709300995, -0.009952419437468052, 0.011631890200078487, -0.02472899667918682, -0.0006397366523742676, 0.031128956004977226, 0.015744173899292946, 0.007747681811451912, -0.00730535201728344, -0.02371993288397789, -0.05448949709534645, -0.006427604239434004, 0.021646512672305107, 0.03599458187818527, 0.005684628617018461, 0.0004928693524561822, 0.00402589188888669, 0.02620803751051426, 0.016656478866934776, -0.005494564771652222, -0.015274198725819588, -0.04691459983587265, -0.03546931594610214, 0.02358170412480831, -0.005159361753612757, 0.0023585159797221422, -0.020830966532230377, 0.0006082034087739885, 0.051918454468250275, 0.007581808138638735, -0.005650071427226067, -0.03602222725749016, 0.04000319540500641, -0.012357586994767189, -0.00039740564534440637, 0.012253915891051292, 0.04207661747932434, -0.01152130775153637, 0.021494461223483086, -0.010394749231636524, -0.006240996066480875, -0.0003304514102637768, 0.021452993154525757, 0.008162366226315498, 0.014596881344914436, -0.010249610058963299, -0.016849998384714127, 0.010691938921809196, -0.008625430054962635, -0.01734761893749237, 0.039035599678754807, -0.01633855514228344, -0.004440575838088989, -0.0033019224647432566, -0.0367133691906929, -0.03317473083734512, -0.020817143842577934, 0.005401260685175657, -0.009876393713057041, 0.02405167929828167, -0.03745980188250542, -0.004340360872447491, 0.0051731844432652, -0.015108325518667698, 0.04052846133708954, 0.019186053425073624, 0.020499220117926598, 0.010014621540904045, -0.02688535489141941, -0.009641406126320362, -0.0023049525916576385, -0.013401209376752377, -0.02300114743411541, 0.0248672254383564, 0.01610356755554676, -0.0008656531572341919, -0.007913555949926376, 0.007892820984125137, -0.02123182825744152, -0.04097079113125801, -0.037874486297369, 0.030465461313724518, 0.007733859121799469, 0.000775804917793721, -0.009828014299273491, 0.0040086135268211365, -0.025240441784262657, -0.00590579304844141, 0.0023999845143407583, 0.009606849402189255, -0.013014170341193676, -0.014119994826614857, -0.019628383219242096, 0.004720487631857395, 0.003956777974963188, 0.01917223073542118, 0.028046470135450363, -0.028336750343441963, -0.003980967681854963, -0.01006300188601017, -0.013981766998767853, -0.011777029372751713, 0.0013425399083644152, 0.03809564933180809, -0.016476783901453018, -0.005895426031202078, 0.011002952232956886, 0.012751537375152111, 0.006866478361189365, 0.01931045763194561, -0.01843962073326111, 0.030548397451639175, -0.016075922176241875, -0.0032051627058535814, 0.008113985881209373, 0.016739416867494583, 0.011175737716257572, 0.025309555232524872, 0.008763657882809639, 0.00829368270933628, -0.019960129633545876, -0.006562376394867897, 0.014037057757377625, -0.0018850850174203515, -0.025503074750304222, -0.02041628211736679, -0.011783940717577934, -0.014140728861093521, 0.004108828492462635, 0.0029010612051934004, -0.006856110878288746, -0.04168957844376564, -0.008860417641699314, -0.0030462006106972694, -0.026138924062252045, 0.01787288673222065, 0.003704511560499668, 0.015205085277557373, -0.009917862713336945, 0.029359636828303337, -0.025268087163567543, 0.018854305148124695, -0.030963081866502762, 0.00720168137922883, -0.04102608561515808, 0.0035973847843706608, 0.01801111362874508, -0.033368248492479324, 0.01425131130963564, -0.005560223013162613, -0.025129858404397964, -0.00845264457166195, 0.011797763407230377, 0.0009036658448167145, -0.004236689768731594, -0.004160664044320583, -0.001187033369205892, -0.005598235875368118, 0.004139930009841919, -0.006928680930286646, -0.02999548614025116, 0.03071427159011364, -0.0009840108687058091, 0.005491109099239111, 0.00313950446434319, -0.02304261550307274, 0.028309103101491928, -0.006113135255873203, 0.0012103592744097114, -0.006075122393667698, -0.0244801864027977, 0.009931685402989388, 0.0036664989311248064, 0.017499670386314392, -0.005867780651897192, 0.011175737716257572, -0.009682874195277691, -0.021190360188484192, -0.007802973035722971, 0.007018528878688812, 0.025309555232524872, -0.03541402518749237, 0.00792737863957882, 0.02203354984521866, -0.008590873330831528, 0.006220262032002211, -0.0049001844599843025, -0.006064755376428366, 0.02933199144899845, -0.015619768761098385, -0.04174486920237541, -0.007091098930686712, -0.009973153471946716, 0.04879450052976608, 0.004095005802810192, -0.005629337392747402, -0.0030168271623551846, -0.00730535201728344, -0.039699096232652664, 0.0030980361625552177, 0.010864724405109882, 0.04121960327029228, 0.04379064589738846, 0.022365298122167587, 0.009309658780694008, 0.005833223462104797, -0.030686626210808754, 0.01997395232319832, -0.01791435480117798, 0.015260376036167145, -0.009551557712256908, 0.025364845991134644, -9.163007780443877e-05, 0.005618969909846783, -0.01902017928659916, 0.012032750993967056, 0.03751509264111519, -0.01480422355234623, -0.006541642360389233, 0.015066857449710369, -0.004886361304670572, -0.006258274894207716, -0.02696829102933407, 0.0351652167737484, 0.005404716823250055, -0.014624527655541897, 0.012108776718378067, -0.025129858404397964, -0.006403414066880941, -0.003274276852607727, -0.010761053301393986, -0.023319071158766747, 0.001704524620436132, 0.0038911195006221533, 0.010546799749135971, 0.028640851378440857, 0.0073675550520420074, -0.01248199213296175, -0.002883782610297203, -0.012654777616262436, 0.0507020466029644, -0.0007969710859470069, -0.012502727098762989, 0.04802042245864868, 0.003213802119717002, -0.033230021595954895, 0.01787288673222065, 0.0018142431508749723, 0.033368248492479324, -0.012046574614942074, 0.025599833577871323, -0.023277603089809418, 0.023222312331199646, -0.01053988840430975, 0.014057792723178864, -0.0030168271623551846, 0.008998645469546318, 0.009123050607740879, 0.013304449617862701, -0.011873789131641388, 0.021356232464313507, 0.010940750129520893, -0.008577050641179085, 0.007457403000444174, -0.003210346447303891, 0.007554162759333849, 0.038455042988061905, -0.006721338722854853, -0.010401660576462746, 0.010595180094242096, 0.014818046241998672, -0.011998194269835949, 0.016932936385273933, -0.019061647355556488, -0.009012468159198761, -0.0003652244049590081, -0.05305192247033119, 0.017278505489230156, 0.1787012219429016, -0.01734761893749237, 0.007485048845410347, 0.012799916788935661, -0.01586857996881008, -0.007111832965165377, 0.021535929292440414, -0.011673358269035816, 0.005318324081599712, 0.017084985971450806, -0.016545897349715233, 0.022655576467514038, -0.014223665930330753, 0.011631890200078487, -0.015011565759778023, 0.011196471750736237, -0.04318244010210037, -0.00256413035094738, -0.009205987676978111, -0.04998326301574707, 0.01037401519715786, -0.01116882637143135, -0.014306602999567986, -0.007270795293152332, 0.005971451755613089, 0.004430208820849657, -0.0087913041934371, -0.0076163653284311295, 0.028668496757745743, -0.0023291425313800573, -0.031792450696229935, -0.028668496757745743, 0.0027351875323802233, -0.007644011173397303, -0.02562747895717621, -0.0014963186113163829, 0.008210745640099049, 0.011189560405910015, 0.02131476439535618, 0.00810016319155693, -0.028046470135450363, 0.0021719082724303007, -0.005442729219794273, -0.008017227053642273, -0.012903587892651558, 0.04415003955364227, -0.02836439572274685, -0.024065501987934113, 0.001757224090397358, 0.005477286409586668, -0.030216651037335396, 0.015509186312556267, 0.03369999676942825, 0.030216651037335396, 0.007167124189436436, 0.02179856225848198, 0.007111832965165377, 0.019960129633545876, -0.027396798133850098, -2.0207751731504686e-05, -0.017955822870135307, 0.02424519881606102, -0.012343764305114746, 0.01394029799848795, -0.0022894020657986403, 0.021093599498271942, -0.001044485718011856, -0.023830514401197433, 0.004920918494462967, -0.013408120721578598, -0.004983121063560247, -0.0019991230219602585, -0.02439725026488304, 0.009475532919168472, 0.00627900892868638, -0.010968395508825779, 0.017942000180482864, -0.008355885744094849, -0.00011009648005710915, 0.019683673977851868, 0.0019058191683143377, -0.019946306943893433, -0.009579204022884369, 0.010450039990246296, 0.0012872486840933561, -0.022835273295640945, 0.009814191609621048, -0.0071878582239151, -0.010975306853652, 0.024355782195925713, -0.01066429354250431, -0.02665036730468273, 0.01262713223695755, -0.014956275001168251, -6.139268953120336e-05, -0.009669051505625248, 0.025655126199126244, 0.0033071059733629227, 0.008162366226315498, -0.0006660863873548806, -0.006866478361189365, 0.0051489947363734245, 0.018384329974651337, 0.022171778604388237, -0.01892341859638691, -0.014665995724499226, 0.00585741363465786, -0.0026989025063812733, 0.021245650947093964, -0.028046470135450363, 0.007761504966765642, -0.00645524961873889, -0.002467370592057705, -0.026318620890378952, 0.01892341859638691, 0.013138575479388237, -0.019960129633545876, 0.0048276144079864025, -0.002208193065598607, 0.007429757621139288, 0.01425131130963564, -0.021356232464313507, 0.007892820984125137, -0.011859966441988945, -0.019338103011250496, -0.015094502829015255, -0.032566528767347336, 0.02663654461503029, 0.005100614856928587, -0.032041262835264206, 0.035773418843746185, -0.03726628050208092, 0.01662883348762989, 0.012703157030045986, -0.019586913287639618, -0.010954572819173336, 0.004139930009841919, -0.024189908057451248, 0.03674101456999779, -0.001609492814168334, -0.01672559417784214, 0.0295255109667778, 0.006182249169796705, 0.01868843100965023, -0.005480742081999779, -0.01085090171545744, 0.01542625017464161, -0.007768416311591864, -0.0009719159570522606, -0.012855208478868008, -0.017997290939092636, -0.010602091439068317, 0.005294134374707937, -0.004658285062760115, 0.0036457646638154984, 0.0062513635493814945, -0.012350675649940968, -0.020872434601187706, 0.017430556938052177, 0.027783837169408798, -0.02261410839855671, 0.011327788233757019, 0.028668496757745743, 0.009503178298473358, -0.021674158051609993, 0.007059997413307428, -0.1766001582145691, 0.012177891097962856, 0.019766610115766525, -0.024452541023492813, 0.016020631417632103, 0.024950161576271057, 0.033091794699430466, 0.014831868931651115, -0.010920016095042229, -0.0064448826014995575, 0.01983572542667389, 0.020595978945493698, -0.032373007386922836, -0.028143230825662613, -0.0011369256535544991, 0.003994790371507406, -0.008300594054162502, 0.021300941705703735, 0.04580877348780632, 0.006382680032402277, 0.01492862869054079, -0.008749835193157196, 0.00651745218783617, -0.010754141956567764, 0.002382705919444561, 0.012495815753936768, -0.0061960723251104355, 0.016656478866934776, 0.015827111899852753, -0.002021585125476122, 0.0043818289414048195, -0.010837079025804996, -0.007512694224715233, -0.011624978855252266, 0.015647415071725845, 0.015218907967209816, -0.0009339032112620771, 0.022365298122167587, -0.01188070047646761, 0.012454346753656864, 0.013449588790535927, -0.00915069691836834, 0.017472025007009506, 0.0006708379951305687, 0.007332997862249613, 0.010076824575662613, 0.005110981874167919, -0.003780537052080035, -0.002583136549219489, -0.02717563323676586, 0.00469629792496562, -0.00805178377777338, 0.04417768493294716, -0.01591004803776741, 0.05034265294671059, 0.03942263871431351, 0.02630479633808136, -0.005480742081999779, 0.02521279640495777, -0.04182780534029007, -0.01878519169986248, -0.017513493075966835, 0.019517799839377403, -0.028834370896220207, 0.005636248737573624, -0.010567533783614635, -0.034612301737070084, 0.008259125985205173, -0.024991631507873535, 0.0038461952935904264, 0.008279860019683838, 0.0044924113899469376, 0.0069459592923521996, -0.005515298806130886, -0.009095405228435993, -0.0028388584032654762, -0.03718334436416626, 0.0223376527428627, -0.013242246583104134, -0.020913902670145035, -0.016352377831935883, 0.037017472088336945, -0.008639252744615078, -0.003783992724493146, 0.02568277157843113, -0.005632793065160513, -0.011777029372751713, -0.039643801748752594, -0.014831868931651115, 0.007084187585860491, 0.013684576377272606, -0.009745077230036259, 0.006171882152557373, -0.0003883344179484993, 0.015232730656862259, 0.02362317219376564, -0.002082059858366847, -0.01305563934147358, -0.0027369153685867786, -0.021922968327999115, 0.0011835776967927814, -0.015937693417072296, -0.008708367124199867, 0.022171778604388237, 0.017361443489789963, 0.0030064599122852087, 0.006987427826970816, 0.027092697098851204, 0.052968986332416534, 0.004018980544060469, -0.021024486050009727, -0.0018211544957011938, 0.016849998384714127, 0.005954172927886248, -0.010567533783614635, 0.023277603089809418, -0.013891918584704399, -0.023402007296681404, 0.0285579152405262, -0.026028340682387352, 0.07010926306247711, -0.009454797953367233, 0.019821900874376297, 0.013394298031926155, -0.009876393713057041, -0.04379064589738846, -0.10942132025957108, -0.007505782879889011, 0.01035328023135662, 0.0068906680680811405, -0.03781919181346893, 0.024411072954535484, -0.007878998294472694, 0.008501024916768074, 0.0021995538845658302, 0.008971000090241432, -0.015509186312556267, -0.02698211371898651, 0.00877056922763586, 0.0007300168508663774, 0.004167575389146805, 0.007941201329231262, -0.008037961088120937, -0.017167923972010612, 0.0032224413007497787, 0.03599458187818527, 0.004191765561699867, -0.017223214730620384, 0.0008168413769453764, -0.0055533116683363914, -0.015730351209640503, 0.010698851197957993, -0.03226242586970329, -0.015288022346794605, 0.02131476439535618, 0.005283766891807318, -0.005460008047521114, -0.015260376036167145, -0.00198357249610126, -0.00731917517259717, 0.0032915554475039244, 0.019158408045768738, -0.04558761045336723, -0.013698399066925049, 0.005656982772052288, -0.010443128645420074, 0.016946759074926376, -0.010021532885730267, 0.024369604885578156, -0.006538186687976122, -0.0003144688089378178, 0.003393498482182622, -0.01868843100965023, 0.005031500943005085, 0.015177439898252487, -0.02894495241343975, -0.002306680427864194, 0.0001891996362246573, -0.03770861029624939, -0.02999548614025116, 0.026581253856420517, -0.00457534845918417, 0.022157955914735794, 0.009399507194757462, -0.02789442054927349, -0.014057792723178864, -0.024259021505713463, 0.010277255438268185, -0.005957628600299358, 0.008003403432667255, -0.004793057683855295, -0.010636648163199425, -0.02208884246647358, -0.02554454281926155, 0.043901227414608, -0.00011036645446438342, -0.009226721711456776, 0.017707012593746185, -0.04268481954932213, -0.004343816544860601, -0.02251734957098961, 0.022600285708904266, -0.026525961235165596, -0.014223665930330753, 0.016946759074926376, -0.012060397304594517, -0.004962387029081583, -0.01577181927859783, 0.010982218198478222, 0.009710520505905151, 0.029027890413999557, 0.011749383993446827, 0.01888195052742958, -0.01720939204096794, -0.00872218981385231, -0.02539249137043953, 0.024646060541272163, 0.006997794844210148, -0.003419416258111596, -0.03450172021985054, 0.01950397714972496, 0.028585560619831085, 0.0038980308454483747, 0.010609002783894539, -0.006341211497783661, 0.013974855653941631, 0.0033122894819825888, -0.0025589466094970703, -0.06640475243330002, 0.03627103939652443, -0.0004941652878187597, 0.010104469954967499, 0.003649220336228609, -0.023028792813420296, 0.0021200727205723524, -0.023650819435715675, -0.02253117226064205, 0.006061299704015255, -0.019669851288199425, 0.016877643764019012, -0.018854305148124695, -0.01662883348762989, -0.02286291867494583, 0.0038565625436604023, -0.0024690984282642603, -0.011300142854452133, 0.009537735022604465, -0.003908398095518351, -0.019656028598546982, 0.009910950437188148, 0.024991631507873535, 0.019683673977851868, -0.011362344957888126, 0.007540340069681406, 0.01734761893749237, 0.004039714578539133, -0.01291049923747778, -0.01066429354250431, 0.009537735022604465, -0.03444642946124077, 0.010885458439588547, 0.02836439572274685, 0.007699301932007074, 0.022462056949734688, -0.007229326758533716, -0.0007377921720035374, 0.0019282812718302011, 0.048131003975868225, -0.004402563441544771, -0.02232383005321026, 0.005549855995923281, -0.014693641103804111, -0.007025440223515034, 0.01983572542667389, -0.023941097781062126, -0.0006215942557901144, 0.014596881344914436, -0.025281909853219986, 0.009613760747015476, 0.019863370805978775, -0.019490154460072517, -0.023180842399597168, 0.012150244787335396, -0.029553156346082687, 0.04227013513445854, -0.0021166170481592417, -0.0019282812718302011, -0.009157608263194561, 0.018674608319997787, 0.013836627826094627, 0.02922140806913376, -0.012219359166920185, 0.0031446879729628563, -0.016559720039367676, -0.015218907967209816, 0.003269093343988061, -0.014002501033246517, -0.02750738151371479, -0.007046174723654985, -0.004291980993002653, 0.02329142577946186, 0.021632689982652664, 0.029166117310523987, 0.009496266953647137, 0.00040885264752432704, -0.0058608693070709705, -0.032455943524837494, 0.003253542585298419, 0.00536670396104455, -0.011929080821573734, -0.02420373074710369, 0.019144583493471146, 0.01620032638311386, -0.007913555949926376, -0.010843990370631218, 0.020858611911535263, -0.005034956615418196, 0.01902017928659916, 0.011991282925009727, -0.012668600305914879, -0.004658285062760115, -0.021452993154525757, 0.00511443754658103, 0.017762303352355957, -0.018964888527989388, 0.0006539914174936712, 0.040141426026821136, 0.023733755573630333, -0.009364950470626354, -0.00408463878557086, 0.00730535201728344, -0.014555413275957108, -0.023084083572030067, -0.010000798851251602, -0.021936791017651558, -0.011790852062404156, -0.008107074536383152, 0.005408172495663166, 0.01440336275845766, 0.007567985448986292, 0.02673330344259739, 0.012405967339873314, -0.01575799658894539, 0.0003369308542460203, -0.0030202828347682953, -0.019711319357156754, -0.003419416258111596, 0.027009760960936546, -0.006448338273912668, 0.023263780400156975, 0.03737686201930046, 0.00457534845918417, 0.016131212934851646, 0.02103830873966217, 0.01907547004520893, -0.0029356181621551514, 0.007236238103359938, 0.01843962073326111, -0.01360855158418417, -0.02055451087653637, -0.029027890413999557, 0.016697948798537254, -0.03723863512277603, -0.035248152911663055, -2.0491228497121483e-05, 0.007802973035722971, -0.026857709512114525, 0.04265717417001724, 0.0001439515472156927, -0.01925516687333584, 0.0030548397917300463, 0.006071666721254587, 0.030880145728588104, 0.026567431166768074, 0.022600285708904266, 0.004108828492462635, -0.013235335238277912, 0.01236449833959341, -0.013332094997167587, 0.0415789969265461, -0.011818498373031616, 0.003092852421104908, -9.578771278029308e-05, -0.023498767986893654, 0.05189080908894539, -0.008072517812252045, -0.01409234944730997, 0.02152210660278797, 0.015177439898252487, 0.043901227414608, -0.0018747178837656975, 0.0030911245848983526, -0.01152130775153637, 0.025516897439956665, 2.4702863811398856e-05, -0.0001374721177853644, -0.01401632372289896, 0.004032803233712912, 0.008818949572741985, -0.02084478922188282, 0.004164119716733694, 0.008950266055762768, -0.009475532919168472, 0.002807757118716836, -0.01649060659110546, 0.023443477228283882, 0.0014444830594584346, -0.007443580310791731, 0.005411628168076277, -0.013504880480468273, -0.025613656267523766, 0.028585560619831085, -0.002997820731252432, -0.0076578338630497456, -0.0062340847216546535, -0.031128956004977226], "c8cdc069-9aeb-4fbd-8742-e24d08c3110e": [-0.005970264784991741, -0.012966347858309746, -0.0019524749368429184, 0.012132016010582447, -0.020147079601883888, 0.041251588612794876, 0.0010942065855488181, -0.010080378502607346, -0.008698942139744759, -0.026616575196385384, 0.02534455992281437, 0.003911788575351238, 0.025618111714720726, 0.011694332584738731, 0.004421278368681669, 0.00013677582319360226, 0.0355890691280365, -0.013602355495095253, 0.054382067173719406, -0.0238126702606678, 0.0007809044909663498, 0.00035540343378670514, -0.02083095721900463, 0.014771789312362671, -0.012084144167602062, 0.02255433425307274, 0.02054372802376747, -0.020789925009012222, 0.006223300006240606, -0.010135088115930557, -0.016522519290447235, 0.000802275666501373, -0.0028569051064550877, -0.0010394962737336755, -0.01512740645557642, -0.004845283459872007, 0.008931461721658707, -0.020188111811876297, -0.0070302775129675865, 0.0009711083257570863, 0.007139698136597872, 0.0235664751380682, -1.2809376130462624e-05, 0.003621140029281378, -0.025071008130908012, 0.018601512536406517, -0.016084836795926094, -0.011331876739859581, -0.020270176231861115, 0.026192570105195045, 0.019080227240920067, 0.018204862251877785, -0.02746458537876606, 0.009834181517362595, -0.018724611029028893, 0.00033574190456420183, 0.014730756171047688, 0.024058867245912552, -0.022294459864497185, 0.0245375819504261, 0.011502847075462341, 0.01649516448378563, -0.003812626004219055, 0.014935920014977455, -0.027491940185427666, -0.025604434311389923, -0.009765793569386005, -0.01985985040664673, -0.012774862349033356, 0.002730387495830655, 0.04084126278758049, 0.031868766993284225, 0.00029599142726510763, 0.01214569341391325, 0.01938113383948803, -0.02511204220354557, -0.0404035784304142, -0.003528816159814596, -0.030555719509720802, 0.013465579599142075, -0.008336486294865608, -0.034905191510915756, -0.0012044820468872786, -0.003730560652911663, 0.03474105894565582, -0.0007240570266731083, 0.002027701586484909, 0.03159521520137787, -0.020557407289743423, -0.0322243832051754, 0.018738288432359695, 0.010107733309268951, 0.01525050401687622, 0.022212393581867218, -0.011721688322722912, 0.032634712755680084, -0.01890241913497448, 0.029160605743527412, -0.000541974208317697, -0.01607115939259529, -0.014402493834495544, 0.0032792002893984318, -0.00923236832022667, -0.0037373993545770645, -0.01938113383948803, 0.030145391821861267, -0.010087217204272747, -0.009998313151299953, 0.021802065894007683, -0.015373602509498596, -0.028121110051870346, 0.007173892110586166, -0.002429480664432049, -0.04021209105849266, -0.012296146713197231, -0.00808345153927803, 0.04286554455757141, -0.01886138692498207, -0.02385370433330536, -0.0090203657746315, 0.010039345361292362, 0.017397884279489517, 0.007392733357846737, -0.029707709327340126, 0.018738288432359695, -0.0027098709251731634, 0.005888199433684349, -0.0379963256418705, 0.0003043262113351375, -0.0019165712874382734, 0.019299069419503212, -0.0030466814059764147, 0.02885969914495945, 0.0006415640818886459, -0.01808176375925541, 0.011270327493548393, -0.03454957157373428, 0.002027701586484909, -0.019750429317355156, -0.03621823713183403, 0.03411189094185829, 0.017685113474726677, 0.0017361980862915516, -0.03178670257329941, -0.008951977826654911, 0.014375139027833939, 0.003969918470829725, 0.01645413227379322, -0.02033856511116028, 0.0050265113823115826, 0.019134938716888428, 0.004240050446242094, -0.0003671575977932662, -0.00010381071479059756, 0.0175483375787735, 0.005789036862552166, 0.0020601858850568533, 0.010948904789984226, 0.0007202101987786591, -0.013349320739507675, 0.0038263036403805017, 0.02058476209640503, 0.0004864090296905488, -0.004677733406424522, 0.006199364084750414, 0.024906877428293228, -0.010764257051050663, -0.009341788478195667, -0.03930937126278877, 0.002894518431276083, 0.007898803800344467, 0.014648690819740295, -0.019490554928779602, -0.004729024134576321, -0.026753351092338562, 0.01082580629736185, 0.033017683774232864, 0.019449522718787193, -0.025235138833522797, 0.006059168837964535, -0.03277148678898811, -0.016987556591629982, 0.010374446399509907, 0.014593980275094509, -0.026247279718518257, -0.023785315454006195, -0.0008898976957425475, 0.01991456001996994, 0.0026551606133580208, 0.01430675107985735, 0.004616184160113335, 0.023402344435453415, -0.0003167215036228299, -0.017110655084252357, -0.628074586391449, -0.02146012708544731, -0.022294459864497185, -0.018546801060438156, -0.007064471486955881, -0.0023798993788659573, 0.015592443756759167, 0.009430693462491035, -0.004879477433860302, -0.002429480664432049, -0.030719850212335587, 0.027683427557349205, 0.003610881743952632, -0.026110505685210228, -0.02721838839352131, -0.012556021101772785, 0.013828035444021225, -0.031677279621362686, 0.008288615383207798, -0.022431235760450363, -0.012029433622956276, 0.010935227386653423, -0.002559417625889182, 0.016481487080454826, 0.011270327493548393, 0.0016720844432711601, 0.02809375338256359, 0.010873678140342236, 0.006773822475224733, 0.03419395536184311, -0.03930937126278877, 0.0514550656080246, 0.037640705704689026, 0.012316662818193436, 0.041771337389945984, 0.016809748485684395, -0.025563402101397514, 0.030938690528273582, 0.0039220466278493404, 0.007091826293617487, -0.029461512342095375, -0.02125496231019497, -0.005556517746299505, 0.008951977826654911, 0.01531889196485281, 0.007618413306772709, 0.01211833767592907, -0.005149609874933958, -0.013971650041639805, -0.009369144216179848, 0.01452559232711792, -0.010942066088318825, -0.01737052947282791, -0.009458048269152641, -0.0030671977438032627, 0.003870755899697542, 0.036190882325172424, -0.0327167771756649, 0.0019832495599985123, 0.0145529480651021, 0.012063628062605858, 0.01775350235402584, 0.005522323772311211, -0.009464886970818043, -0.0006129266694188118, 0.03356478735804558, -0.014087909832596779, 0.006572078447788954, 0.010613803751766682, -0.019928237423300743, 0.0076936399564146996, 0.008302292786538601, 0.0035732684191316366, -0.014046876691281796, 0.018396347761154175, 0.008110806345939636, 0.02053005062043667, -0.019545264542102814, 0.005118835251778364, 0.024072544649243355, 0.007638929877430201, -0.003214231925085187, -0.028941763564944267, -0.016837103292346, 0.03274413198232651, -0.003928885329514742, -0.013903262093663216, 0.038269877433776855, 0.015907028689980507, -0.007591058034449816, 0.004253728315234184, 0.010162443853914738, 0.0013044994557276368, -0.009081915020942688, 0.02635670080780983, 0.023689573630690575, -0.0061617507599294186, 0.007953514344990253, 0.019613653421401978, -0.007153375539928675, -0.015701863914728165, -0.0023593830410391092, 0.009717922657728195, -0.004096435848623514, -0.0075978972017765045, 0.0022174781188368797, -0.030282167717814445, -0.009772632271051407, 0.03870755806565285, -0.031184887513518333, 0.02159690298140049, -0.018984483554959297, -0.009273400530219078, -0.002167896833270788, -0.007249118760228157, -0.03000861592590809, 0.028121110051870346, 0.005173545330762863, 0.016467809677124023, -0.022308137267827988, 0.02612418308854103, -0.004934187978506088, 0.010736902244389057, -0.0014540980337187648, 0.018314283341169357, 0.036437079310417175, 0.009027204476296902, 0.009923086501657963, 0.0006817419780418277, 0.005194061901420355, -0.0007266215397976339, -0.007454282604157925, 0.032306451350450516, 0.004349471069872379, 0.01823221705853939, -0.015291537158191204, 0.012980025261640549, 0.00530348252505064, 0.0056830355897545815, -0.02010604552924633, -0.012234597466886044, 0.0032159416005015373, -0.005508646368980408, 0.005276127252727747, -0.023607507348060608, -0.03011803701519966, -0.009806826710700989, -0.007338022813200951, -0.02635670080780983, -0.007078148890286684, -0.010545415803790092, -0.008049257099628448, -0.004369987640529871, 0.02314247004687786, 0.014429849572479725, -0.02256801165640354, -0.024988943710923195, -0.005368451122194529, 0.018382670357823372, -0.008739975281059742, 0.012043111026287079, 0.02593269571661949, -0.024783778935670853, 0.002567966002970934, 0.020283855497837067, -0.0044896663166582584, -0.01678239367902279, 0.020844636484980583, -0.012173048220574856, -0.03279884159564972, -0.0029013571329414845, -0.018245894461870193, -0.006332720629870892, 0.031102823093533516, -0.023607507348060608, -0.007577380631119013, 0.01484017726033926, -0.015373602509498596, -0.00742008863016963, 0.018245894461870193, -0.022198716178536415, 0.009875214658677578, -0.014429849572479725, -0.01154387928545475, 0.03293561935424805, 0.022978339344263077, -0.015168438665568829, -0.009793149307370186, 0.019490554928779602, 0.03145844116806984, -0.006055749487131834, -0.006572078447788954, -0.009656373411417007, -0.011680655181407928, -0.010237670503556728, -0.02077624760568142, 0.0029492287430912256, 0.027286777272820473, 0.009683728218078613, 0.0018430541967973113, 0.024715391919016838, 0.02044798620045185, 0.031622570008039474, 0.00045905387378297746, 0.013725453987717628, -0.03785954788327217, -0.009560629725456238, 0.0014729046961292624, 0.030610429123044014, -0.012241436168551445, -0.001072835410013795, -0.01760304905474186, -0.02130967378616333, -0.009300756268203259, 0.02323821187019348, 0.026192570105195045, 0.018382670357823372, 0.007673123851418495, -0.02033856511116028, 0.006031814031302929, 0.016714004799723625, -0.007269634865224361, -0.005525743123143911, -0.006442141253501177, -0.0173158198595047, 0.0009608501568436623, 0.0022174781188368797, 0.016672972589731216, -4.2528732592472807e-05, -0.017096977680921555, -9.957653674064204e-06, -0.024783778935670853, 0.011530201882123947, -0.007324345409870148, 0.00501283397898078, 0.021487481892108917, 0.02115922048687935, -0.012535504065454006, 0.05380760878324509, -0.022294459864497185, -0.00269448384642601, 0.018150152638554573, 0.004964962601661682, -0.019545264542102814, -0.011393425986170769, 0.030145391821861267, 0.019791461527347565, 0.015086373314261436, 0.015359925106167793, 0.03050100803375244, -0.006226719357073307, 0.006678079720586538, -0.01484017726033926, -0.006920856889337301, 0.015934383496642113, -0.03184141218662262, -0.002162767807021737, 0.022403879091143608, 0.005860844161361456, 0.023005694150924683, -0.00195931363850832, 0.013404030352830887, 0.005276127252727747, 0.020092368125915527, 0.05733642727136612, 0.005522323772311211, 0.0002081557031488046, 0.019463200122117996, -0.00308429473079741, -0.0389537550508976, -0.01505901850759983, -0.021295996382832527, -0.007502153981477022, -0.00034300811239518225, -0.0007646623416803777, -0.007789383176714182, 0.009567469358444214, 0.0036553340032696724, 0.01741156168282032, 0.005187223199754953, -0.02461964823305607, -0.02602843940258026, 0.03178670257329941, 0.0036040430422872305, -0.0060796854086220264, 0.014005844481289387, -0.015756575390696526, -0.0006090798415243626, -0.03216967359185219, 0.04352206736803055, -0.0003436492697801441, 0.018820352852344513, 0.03487783670425415, -0.00908875372260809, -0.0025286430027335882, 0.009540113620460033, 0.03030952252447605, -0.018642544746398926, 0.03296297416090965, 0.009567469358444214, 0.010381285101175308, 0.015551411546766758, -0.027396198362112045, 0.013937456533312798, 0.022964660078287125, -0.01563347689807415, -0.011967884376645088, 0.008480100892484188, 0.003792109666392207, -0.013834874145686626, -0.0033852015621960163, -0.02352544106543064, -0.010059861466288567, -0.009109269827604294, 0.008384358137845993, 0.012583375908434391, -0.0413610078394413, 0.0055325822904706, 0.012419245205819607, -0.02712264657020569, -0.0056249056942760944, -0.01016928255558014, -0.024592293426394463, 0.004445214290171862, 0.07763395458459854, 0.013458740897476673, -0.01092154998332262, 0.0031902960035949945, -0.0010206896113231778, 0.008644232526421547, -0.03236116096377373, -0.0003214231983292848, 0.01737052947282791, 0.006777242291718721, 0.023197179660201073, -0.02496158704161644, 0.021090831607580185, 0.0004492230946198106, 0.007577380631119013, -0.008767330087721348, -0.019408488646149635, -0.0003744238056242466, 0.006527626421302557, -0.009512758813798428, 0.0029321317560970783, -0.002585062989965081, 0.0057787783443927765, 0.0032484258990734816, -0.026055794209241867, -0.018040731549263, 0.030418943613767624, -1.502664053987246e-05, 0.013821196742355824, -0.029652997851371765, -0.018013376742601395, 0.030227456241846085, 0.0032364579383283854, 0.01226195227354765, -0.015496701002120972, 0.001971281599253416, -0.004000692628324032, 0.013150995597243309, -0.007160214241594076, 0.0022174781188368797, 0.019299069419503212, 0.007994546554982662, 0.017589371651411057, 0.0016336162807419896, 0.020365919917821884, 2.813321088979137e-06, -0.002332027768716216, -0.009355466812849045, -0.007071310188621283, -0.019900882616639137, 0.0257412102073431, 0.029543578624725342, -0.002444867743179202, -0.019777784124016762, 0.019025517627596855, -0.009102431125938892, -0.004790573380887508, 0.005874521564692259, -0.023840026929974556, 0.019777784124016762, 0.0069140177220106125, 0.004975220654159784, 0.0008454455528408289, -0.029379447922110558, -0.011591751128435135, -0.020229144021868706, -0.017452595755457878, -0.014375139027833939, -0.008117645047605038, 0.022403879091143608, -0.00837068073451519, 0.009081915020942688, -0.022308137267827988, 0.001784924534149468, -0.016672972589731216, 0.0031407149508595467, 0.0020208628848195076, -0.018013376742601395, -0.0037989486008882523, -0.004168243147432804, -0.022020908072590828, -0.02689012698829174, 0.007789383176714182, -0.03646443411707878, -0.009642696008086205, -0.024373451247811317, -0.002791936509311199, 0.009252884425222874, -0.012248274870216846, 0.009854698553681374, -0.004356309771537781, 0.01142762042582035, -0.020995089784264565, -0.018546801060438156, 0.009095592424273491, 0.014566625468432903, -0.005484710447490215, -0.025194106623530388, -0.005730906967073679, -0.004452052991837263, 0.0016789232613518834, -0.03493254631757736, 0.001253208494745195, -0.015496701002120972, 0.0042503089644014835, 0.013315126299858093, 0.017425239086151123, 0.029981261119246483, 0.0006898630526848137, -0.013745970092713833, -0.021665289998054504, -0.019066549837589264, -0.004913671407848597, 0.010983098298311234, -0.005409483797848225, -0.003935724496841431, 0.025371914729475975, -0.0008680990431457758, 0.008357002399861813, -0.007536347955465317, -0.01010089460760355, -0.03649178892374039, 0.0020499275997281075, 0.00638401135802269, -0.017958665266633034, 0.010162443853914738, 0.009663212113082409, -0.02414093352854252, 0.014580302871763706, -0.004571732133626938, 0.001966152573004365, 0.018984483554959297, -0.009389660321176052, -0.022978339344263077, -0.04188075661659241, 0.004988898057490587, -0.036874763667583466, 0.0005394096369855106, -0.00937598291784525, 0.0007539767539128661, -0.0022328654304146767, -0.0158796738833189, -0.0020960895344614983, -0.015469345264136791, -0.03260735794901848, -0.023498086258769035, -0.02207561768591404, -0.00301248743198812, 0.015441990457475185, 0.004240050446242094, -0.01082580629736185, -0.022020908072590828, -0.02159690298140049, -0.005744584836065769, -0.012179886922240257, -0.01836899295449257, -0.012241436168551445, -0.003566429717466235, 0.02583695389330387, -0.00638401135802269, 0.01836899295449257, -0.015660831704735756, 0.02054372802376747, 0.006924276240170002, 0.03260735794901848, 0.005754842888563871, -0.013937456533312798, -0.036820050328969955, -0.03597204014658928, -0.009205012582242489, 0.025084685534238815, 0.022048262879252434, 0.014676045626401901, 0.001677213585935533, -0.008616876788437366, 0.04116952419281006, 0.0006342979031614959, -0.0062745907343924046, -0.012754345312714577, -0.041005391627550125, -0.03249793499708176, 0.030364232137799263, -0.010586448945105076, 0.003214231925085187, -0.01817750744521618, 0.0040793390944600105, 0.042591992765665054, -0.0014506785664707422, 0.012357695959508419, -0.03164992481470108, 0.0298171304166317, -0.022390201687812805, 0.0008437358774244785, 0.00945120956748724, 0.03266206756234169, -0.01828692853450775, 0.013376675546169281, -0.002263639820739627, -0.0038297229912132025, 0.00813132245093584, -0.00017022178508341312, 0.005436839070171118, -0.006011297460645437, -0.024893200024962425, -0.025467658415436745, 0.011660139076411724, -0.003491202834993601, -0.013595516793429852, 0.03526080772280693, -0.018355315551161766, -0.0066883377730846405, -0.010853162035346031, -0.024455517530441284, -0.0322243832051754, -0.028586147353053093, 0.0030005197040736675, 0.0011540460400283337, 0.02314247004687786, -0.018724611029028893, -0.018204862251877785, 0.009464886970818043, -0.014320428483188152, 0.04800831526517868, 0.013855391182005405, 0.03444015234708786, 0.008904105983674526, -0.02847672626376152, -0.013239899650216103, 0.004858961328864098, -0.03695682808756828, -0.015701863914728165, 0.023197179660201073, 0.02146012708544731, -0.00877416878938675, -0.0012660311767831445, 0.005122254602611065, 0.003239877289161086, -0.02505733072757721, -0.03835194185376167, 0.0023337374441325665, -8.708773384569213e-05, -0.01135239377617836, -0.022786851972341537, 0.010182959958910942, -0.018697254359722137, 0.013123639859259129, 0.013178350403904915, 0.021911486983299255, -0.006271171383559704, 0.004404181614518166, -0.021323351189494133, 0.013274094089865685, 0.025604434311389923, 0.026972193270921707, 0.025235138833522797, -0.017425239086151123, -0.026151537895202637, -0.011140391230583191, -0.03258000314235687, -0.007180730812251568, -0.005378709174692631, 0.03266206756234169, -0.014717078767716885, -0.009006688371300697, 0.010080378502607346, 0.005484710447490215, -0.01871093362569809, 0.005409483797848225, -0.004811089485883713, 0.028504081070423126, -0.007269634865224361, 0.009198173880577087, 0.011578073725104332, 0.015236826613545418, 0.018163830041885376, 0.019408488646149635, 0.008473262190818787, 0.009218690916895866, -0.03621823713183403, -0.0110651645809412, -0.0010540287476032972, -0.008425390347838402, 0.010572771541774273, -0.027984334155917168, -0.012316662818193436, -0.0072149247862398624, 0.0053103212267160416, 0.0036074623931199312, 0.009341788478195667, -0.04344000294804573, -0.02948886714875698, -0.0047734761610627174, -0.031376373022794724, -0.004045145120471716, -0.008760491386055946, 0.017302142456173897, -0.013123639859259129, 0.02987184002995491, -0.027396198362112045, 0.03274413198232651, -0.021856777369976044, 0.003193715587258339, -0.034658994525671005, -0.005546259693801403, 0.007440604735165834, -0.016618262976408005, 0.016276322305202484, -0.01976410672068596, -0.01512740645557642, 0.0045888288877904415, 0.023361310362815857, 0.012638086453080177, 0.0037168830167502165, -0.007529509253799915, 6.042712993803434e-05, 0.0029116154182702303, 0.0010942065855488181, -0.015182116068899632, -0.043549422174692154, 0.038543425500392914, 0.009191335178911686, -0.004041725769639015, 0.0014669207157567143, -0.010408639907836914, 0.03274413198232651, -8.067636372288689e-05, -0.00308429473079741, -0.004421278368681669, -0.03794161230325699, 0.0030569396913051605, -0.011413942091166973, 0.011796914972364902, 0.00863055419176817, -0.004879477433860302, -0.006869565695524216, -0.028640856966376305, -0.0029800033662468195, 0.002207219833508134, 0.012631247751414776, -0.02226710505783558, 0.016727684065699577, 0.015428313054144382, -0.012959509156644344, -0.0021012185607105494, 0.0019165712874382734, -0.025604434311389923, 0.010976259596645832, -0.019599976018071175, -0.03487783670425415, -0.0007732108351774514, -0.004260567016899586, 0.03159521520137787, -0.015004307962954044, -0.004612764809280634, -0.013192027807235718, -0.004729024134576321, -0.037066247314214706, -0.022964660078287125, -0.0008296308806166053, 0.0223628468811512, 0.034221310168504715, 0.01645413227379322, -0.0039083692245185375, 0.006961889564990997, -0.02303304895758629, 0.014101587235927582, -0.01914861612021923, -0.003566429717466235, -0.003956240601837635, 0.015168438665568829, -0.00421953434124589, -0.016755038872361183, -0.020844636484980583, -0.0013985327677801251, 0.02765607088804245, -0.00942385382950306, 0.002935551106929779, 0.018040731549263, -0.019928237423300743, -0.00465379748493433, -0.02492055483162403, 0.022718464955687523, 0.01624896749854088, -0.0013292900985106826, 0.010983098298311234, -0.02578224241733551, 0.004770056810230017, -0.016796071082353592, -0.007235440891236067, -0.005850586108863354, -0.01426571886986494, -0.0037647546268999577, -0.010668514296412468, 0.011701172217726707, -0.011803753674030304, -0.023265568539500237, -0.015168438665568829, -0.01140026468783617, 0.04871954768896103, -0.00923920702189207, -0.00508464127779007, 0.039856474846601486, -0.007974030449986458, -0.017862923443317413, 0.00844590738415718, 0.0033766531851142645, 0.024510227143764496, -0.02803904376924038, 0.01075057964771986, -0.02251330018043518, 0.01626264490187168, -0.004752960056066513, 0.028887053951621056, -0.0039083692245185375, 0.009464886970818043, 0.0048692193813622, -0.013342482037842274, -0.00443837558850646, 0.01505901850759983, 0.008685264736413956, -0.013957972638309002, 0.014730756171047688, 0.006356656551361084, 0.022212393581867218, 0.019121259450912476, -0.012754345312714577, -0.019066549837589264, 0.00580955296754837, 0.008767330087721348, -0.013609194196760654, 0.01934010162949562, -0.022308137267827988, -0.006390850525349379, 0.01596173830330372, -0.034221310168504715, 0.000611644412856549, 0.18218539655208588, -0.01668664999306202, 0.02486584521830082, 0.024058867245912552, -0.020748892799019814, 0.008452746085822582, 0.029789773747324944, 0.0009146883385255933, 0.00355959078297019, 0.0022824464831501245, -0.012542342767119408, 0.02400415763258934, 0.023443376645445824, 0.010586448945105076, -0.006425044499337673, -0.003651914419606328, -0.04406917095184326, -0.00033488706685602665, -0.017096977680921555, -0.05347934737801552, -0.0019610233139246702, -0.02750561758875847, -0.015004307962954044, -0.016850780695676804, 0.011605428531765938, -0.00029342688503675163, -0.02197987586259842, -0.013321965001523495, 0.03613617271184921, 0.00181569904088974, -0.02702690288424492, -0.014703401364386082, 0.01678239367902279, -0.009116108529269695, -0.008097128942608833, -0.006883243564516306, 0.009977796114981174, 0.007221763487905264, 0.026178892701864243, -0.0015019695274531841, -0.018929773941636086, -0.008480100892484188, -0.014703401364386082, -0.014826498925685883, -0.012809055857360363, 0.03640972450375557, -0.025467658415436745, -0.012699635699391365, -0.00436656828969717, 0.01597541570663452, -0.026301991194486618, 0.009252884425222874, 0.05881360545754433, 0.004564892966300249, 0.003651914419606328, 0.010709547437727451, -0.0008710910333320498, 0.02211664989590645, -0.019025517627596855, 0.0025012879632413387, -0.018218539655208588, 0.012918476946651936, -0.007310668006539345, 0.018314283341169357, -0.01981881633400917, 0.017206398770213127, -0.0032484258990734816, -0.03433073312044144, 0.024551261216402054, -0.0209267009049654, 0.01765775866806507, -0.005217997822910547, -0.008035579696297646, 0.013999005779623985, -0.011920013464987278, -0.005067544057965279, 0.0235664751380682, -0.013178350403904915, -0.005932651460170746, 0.00355959078297019, 0.0036895277444273233, -0.02115922048687935, 0.0019046033266931772, 0.0033510075882077217, -0.008254420943558216, -0.022061940282583237, -0.008616876788437366, -0.02001030370593071, -0.020940378308296204, 0.01649516448378563, -0.031431082636117935, -0.005659099668264389, 0.0001238462282344699, -0.019121259450912476, 0.012056788429617882, 0.0035766877699643373, 0.015195794403553009, -0.006284849252551794, 0.009061397984623909, -0.006072846706956625, -0.005860844161361456, -0.005416322499513626, 0.041771337389945984, 0.024660680443048477, -0.03025481291115284, 0.0029013571329414845, -0.015660831704735756, 0.004267405718564987, 0.004879477433860302, -0.01871093362569809, 0.018095441162586212, -0.003152682678773999, 0.008739975281059742, -0.025754887610673904, 0.0031817476265132427, 0.019039195030927658, -0.01582496240735054, -0.022403879091143608, 0.005802714265882969, 0.015277859754860401, 0.013144156895577908, -0.01836899295449257, 0.0017413272289559245, -0.0009249465074390173, -0.009122947230935097, -0.012685957364737988, -0.043467357754707336, 0.02626095898449421, -0.01207046676427126, -0.028640856966376305, 0.03493254631757736, -0.03140372782945633, -0.006127556785941124, 0.0013036446180194616, -0.027915945276618004, 0.0036450757179409266, -0.006414785981178284, -0.02323821187019348, 0.02891440875828266, -0.0026243862230330706, 0.018150152638554573, 0.012029433622956276, -0.0003763472195714712, 0.013123639859259129, 0.003969918470829725, -0.007037116214632988, 0.009861537255346775, -0.016823425889015198, 0.0011326747480779886, -0.02583695389330387, -0.01717904396355152, -0.00581981148570776, 0.020174434408545494, -0.006267752032727003, 0.006637047044932842, 0.008842556737363338, 0.0027782588731497526, -0.0111814234405756, -0.006377172656357288, 0.03813309967517853, -0.023388665169477463, 0.005183803848922253, 0.04204488918185234, -0.00937598291784525, -0.014183652587234974, -0.003142424626275897, -0.17452594637870789, 0.03134901821613312, 0.021720001474022865, -0.006743048317730427, 0.013650227338075638, 0.03919995203614235, 0.03247058019042015, -0.0026893545873463154, -0.004554634913802147, -0.01702859066426754, 0.024564938619732857, 0.023074081167578697, -0.0341392457485199, -0.021241284906864166, -0.012241436168551445, 0.013280932791531086, -0.016536196693778038, 0.013479257002472878, 0.04505395516753197, 0.0097384387627244, 0.02068050391972065, 0.008090290240943432, 0.007796221878379583, -0.020379597321152687, 0.0037408187054097652, 0.012302985414862633, 0.00878100749105215, 0.018396347761154175, 0.017138009890913963, 0.007700479123741388, -0.0006945647182874382, -0.008028740994632244, 0.014730756171047688, -0.009485403075814247, 0.027341486886143684, 0.009081915020942688, -0.01722007617354393, 0.002764581236988306, -0.009683728218078613, 0.0286135021597147, 0.010367607697844505, -0.0020191532094031572, 0.021966196596622467, 0.007967191748321056, -0.01240556687116623, 0.008644232526421547, -0.005187223199754953, -0.001475469209253788, 0.009273400530219078, -0.03069249540567398, 0.008610038086771965, -0.0013019348261877894, 0.02039327472448349, -0.014128942973911762, 0.043604131788015366, 0.042154308408498764, 0.012446600012481213, -0.0042468891479074955, 0.024400807917118073, -0.03159521520137787, -0.007885126397013664, -0.006199364084750414, 0.01474443357437849, -0.018970806151628494, 0.001677213585935533, -0.010552254505455494, -0.030090682208538055, -0.003511719172820449, -0.036765340715646744, 0.010771095752716064, 0.0016361807938665152, -0.0008193726534955204, 0.025891663506627083, -0.009574308060109615, -0.017999699339270592, -0.005262449849396944, -0.024318741634488106, 0.010470189154148102, -0.01567450910806656, -0.019558941945433617, -0.034604284912347794, 0.03487783670425415, 0.004140887875109911, -0.014511914923787117, 0.008302292786538601, 0.0055941310711205006, -0.004161404445767403, -0.03930937126278877, -0.012166209518909454, -0.009936763904988766, 0.0060625881887972355, -0.009081915020942688, -0.010914710350334644, -0.00827493704855442, -0.004770056810230017, -0.010538577102124691, -1.2929589502164163e-05, -0.014183652587234974, 0.0004586264258250594, -0.0126244081184268, 0.007228602189570665, -0.03156786039471626, -0.004212695173919201, 0.03818780928850174, 0.028640856966376305, 0.004735862836241722, 0.008138161152601242, 0.032826196402311325, 0.03911788389086723, 0.018300605937838554, -0.01865622214972973, 0.007235440891236067, 0.015483023598790169, -5.967913966742344e-05, -0.006667821202427149, 0.03233380615711212, -0.02530352771282196, -0.033592142164707184, 0.015496701002120972, -0.013253577053546906, 0.06477703154087067, -0.0029013571329414845, 0.013171511702239513, 0.014320428483188152, -0.012344018556177616, -0.0370388925075531, -0.0942659005522728, -0.00596342608332634, 0.02232181467115879, -0.00019020387844648212, -0.01168749388307333, 0.021569548174738884, -0.008452746085822582, 0.009827342815697193, -0.000706960039678961, 0.0063122040592134, -0.026917481794953346, -0.04997788742184639, 0.011147229932248592, 0.004120371770113707, -0.01484017726033926, -0.0104633504524827, -0.006702015176415443, -0.0017575693782418966, -0.0050572860054671764, 0.029570933431386948, 0.013698099181056023, -0.0194768775254488, 0.0008561311988160014, 0.004465730860829353, -0.01601644977927208, 0.01649516448378563, -0.041826047003269196, 0.011947368271648884, 0.01817750744521618, 0.014566625468432903, -0.013034735806286335, -0.021733678877353668, 0.017999699339270592, -0.015045341104269028, -0.0011420780792832375, 0.0037373993545770645, -0.04179869219660759, -0.017247430980205536, 0.0026500315871089697, -0.017808211967349052, 0.0010788192739710212, -0.01689181476831436, 0.039035819470882416, -0.00863055419176817, 0.00690034031867981, 0.006797758396714926, -0.006982405669987202, 0.008548488840460777, 0.006606272421777248, -0.03870755806565285, -0.007905642502009869, 0.017055945470929146, -0.04612080752849579, -0.033263880759477615, 0.016481487080454826, -0.01722007617354393, 0.027437230572104454, -0.0027850978076457977, -0.014033199287950993, -0.005436839070171118, -0.020981410518288612, 0.006072846706956625, 0.007673123851418495, 0.011126712895929813, 0.01503166276961565, -0.01163962297141552, -0.012672279961407185, -0.03252528980374336, 0.02492055483162403, -0.00393230514600873, -0.006572078447788954, 0.017616726458072662, -0.0379963256418705, 0.01214569341391325, -0.016221612691879272, 0.019134938716888428, -0.02115922048687935, -0.016508841887116432, 0.012638086453080177, -0.0012412406504154205, -0.007618413306772709, -0.008972493931651115, -0.0015310343587771058, 0.007809899747371674, 0.007522670552134514, 0.015551411546766758, 0.017151689156889915, -0.007139698136597872, 0.0037852709647268057, -0.015934383496642113, 0.011803753674030304, 0.016563551500439644, -0.017862923443317413, -0.04387768357992172, 0.019258035346865654, 0.033263880759477615, 0.016235290095210075, 0.006743048317730427, -0.016714004799723625, 0.011872141622006893, -0.01957262121140957, -0.003935724496841431, -0.06888030469417572, 0.02823052927851677, 0.020707860589027405, 0.012945831753313541, 0.017589371651411057, -0.010552254505455494, 0.019080227240920067, -0.014060555025935173, -0.03184141218662262, 0.02174735628068447, -0.027191033586859703, 0.024715391919016838, -0.016153225675225258, -0.015948060899972916, -0.013321965001523495, 0.009205012582242489, 0.028257885947823524, -0.011660139076411724, 0.01512740645557642, -0.001583180157467723, 0.009970957413315773, 0.003048391081392765, 0.02842201665043831, 0.029926549643278122, -0.029926549643278122, 0.018642544746398926, 0.0052863857708871365, -0.009758954867720604, 0.011769559234380722, -0.019422167912125587, 0.018355315551161766, -0.028257885947823524, 0.012583375908434391, 0.01293899305164814, 0.004171662498265505, 0.0023286084178835154, -0.016413098201155663, -0.0194768775254488, 0.00863055419176817, 0.04171662777662277, -0.011044647544622421, -0.006260913331061602, -0.014593980275094509, -0.03331859037280083, 0.0006394269876182079, 0.02591901831328869, -0.005542840342968702, -0.004185340367257595, 0.02673967368900776, -0.01168749388307333, 0.010641159489750862, 0.0031612312886863947, 0.004664055537432432, -0.0187519658356905, 0.01572922058403492, -0.019449522718787193, 0.0365464985370636, -0.004479408264160156, -0.0051564485765993595, -0.013383514247834682, 0.017329497262835503, 6.13354059169069e-05, 0.02184309996664524, 0.0008150984067469835, 0.024605970829725266, -0.01828692853450775, -0.00755002535879612, -0.00081766297807917, -0.003600623458623886, -0.0257275328040123, -0.004407600965350866, -0.007919319905340672, 0.0037134636659175158, 0.01884770765900612, 0.027915945276618004, 0.022499622777104378, 0.009533274918794632, -0.00786461029201746, -0.02362118475139141, -0.004469150211662054, -0.007495315279811621, -0.013533967547118664, -0.027409875765442848, 0.01866989955306053, 0.009793149307370186, -0.006278010550886393, -0.02025649882853031, 0.018054408952593803, 0.01315783429890871, 0.016440454870462418, 0.028750278055667877, -0.01769879087805748, 0.007228602189570665, -0.008979332633316517, 0.008165516890585423, 0.013677582144737244, -0.025618111714720726, -0.004499924834817648, 0.017917633056640625, 0.03419395536184311, -0.007358539383858442, 0.008357002399861813, 0.007071310188621283, -0.004540957510471344, -0.00878100749105215, -0.004910252057015896, -0.018779320642352104, -0.017138009890913963, -0.007871448993682861, 0.012056788429617882, 0.020707860589027405, -0.0012395308585837483, 0.010449673049151897, 0.021337028592824936, -0.014990630559623241, -0.00011487032315926626, -0.0027885171584784985, -0.025180429220199585, -0.0022174781188368797, 0.02492055483162403, -0.00048769128625281155, 0.028695568442344666, 0.039364080876111984, -0.010805290192365646, 0.03788690268993378, 0.008965655229985714, 0.024605970829725266, 0.001006157137453556, 0.012227758765220642, 0.008575844578444958, 0.00848693959414959, -0.006510529201477766, -0.036437079310417175, 0.014607657678425312, -0.009902569465339184, -0.03862549364566803, 0.003079165704548359, 0.0026175472885370255, -0.025604434311389923, 0.05555833876132965, 0.0049307686276733875, 0.0026141279377043247, -0.0032381676137447357, 0.018929773941636086, 0.024551261216402054, 0.02943415753543377, 0.00923236832022667, -0.023703251034021378, -0.016618262976408005, 0.013103123754262924, -0.03154050558805466, 0.008466423489153385, -0.00021820017718710005, 0.013691259548068047, -0.002583353314548731, -0.01081896759569645, 0.047351788729429245, -0.01426571886986494, -0.012022594921290874, 0.01866989955306053, 0.0300633255392313, 0.035616423934698105, -0.016030127182602882, 0.011796914972364902, 0.0002716282324399799, 0.01741156168282032, -0.004609345458447933, 0.008117645047605038, -0.0437682643532753, -0.0022824464831501245, 0.01286376640200615, -0.0235664751380682, -0.007584219332784414, 0.010148766450583935, -0.01096942089498043, -0.005672777537256479, -0.022007230669260025, 0.011297683231532574, 0.021952519193291664, 0.0037442382890731096, -0.0063463980332016945, -0.017110655084252357, -0.016960201784968376, 0.024072544649243355, -0.013595516793429852, -0.014498237520456314, -0.01120877917855978, -0.03870755806565285], "7318107a-b5ef-494e-b40c-7110d5922133": [0.003996994346380234, -0.008525541052222252, 0.005118776112794876, 0.012011692859232426, -0.012115241959691048, 0.0411711148917675, 0.0005539875710383058, 0.0076626320369541645, -0.0022746280301362276, -0.0342402309179306, 0.021400142461061478, 0.008021602407097816, 0.01753430999815464, 0.018859738484025, 0.00842199195176363, 0.0035827981773763895, 0.03672540560364723, -0.019329162314534187, 0.05298951640725136, -0.028413867577910423, -0.007269145455211401, -0.0012771053006872535, -0.011190203949809074, 0.01645740121603012, -0.009063996374607086, 0.021772919222712517, 0.019439613446593285, -0.006592624820768833, 0.0017525681760162115, -0.019356774166226387, -0.015159585513174534, 0.018003733828663826, 0.009416063316166401, 0.00764882517978549, -0.013841059990227222, 0.003641475923359394, 0.002041642786934972, -0.01927393488585949, -0.015656620264053345, 0.0038796388544142246, 0.005039388779550791, 0.007496953476220369, -0.019094450399279594, 0.012681310996413231, -0.018155604600906372, 0.029021356254816055, -0.004362867679446936, -0.0120254997164011, -0.01861122064292431, 0.02503126487135887, 0.009333224035799503, 0.024603260681033134, -0.03882400318980217, 0.01286769937723875, -0.015325264073908329, 0.00022014965361449867, 0.020557943731546402, 0.029711682349443436, -0.011542270891368389, 0.02163485437631607, 0.010872653685510159, 0.01045845728367567, -0.007579792756587267, 0.013419960625469685, -0.02261511981487274, -0.008263216353952885, -0.019122064113616943, -0.018859738484025, -0.007248435635119677, -0.010244455188512802, 0.029131807386875153, 0.021482981741428375, -0.010071873664855957, 0.008891413919627666, 0.002828615717589855, -0.025307394564151764, -0.03534475341439247, -0.014013642445206642, -0.02683992125093937, 0.021372530609369278, -0.0015213085571303964, -0.031423695385456085, 0.0035689915530383587, -0.010113293305039406, 0.025335008278489113, -0.00626817112788558, -0.005791845265775919, 0.03749857470393181, -0.02440997026860714, -0.03335661068558693, 0.02128969132900238, 0.0013237023958936334, 0.01135588251054287, 0.011459431611001492, -0.005729715805500746, 0.01861122064292431, -0.012971248477697372, 0.03134085610508919, -0.014124094508588314, -0.01135588251054287, -0.026991793885827065, 0.005149840842932463, -0.014786808751523495, -0.00731056509539485, -0.027309343218803406, 0.011977177113294601, -0.011086654849350452, -8.952680946094915e-05, 0.016250303015112877, -0.01319905649870634, -0.03581417351961136, 0.0034792490769177675, -0.0016145027475431561, -0.04197189211845398, -0.0029338905587792397, -0.019080644473433495, 0.037250056862831116, -0.009761226363480091, -0.02231137454509735, -0.026729468256235123, 0.01582229882478714, 0.011583690531551838, 0.00412125326693058, -0.029987813904881477, 0.012260210700333118, 0.00737959798425436, 0.00010797148570418358, -0.030457235872745514, -0.006837690714746714, -0.008642896078526974, 0.022449441254138947, -0.014786808751523495, 0.021041173487901688, 0.012336147017776966, 0.002875212812796235, 0.00266293715685606, -0.02614959515631199, -0.006240557879209518, -0.013337121345102787, -0.03291480243206024, 0.027695927768945694, 0.028082510456442833, -0.004804677329957485, -0.032776735723018646, 0.004673514980822802, 0.026632823050022125, -2.080419653793797e-05, 1.407620311510982e-05, -0.027972057461738586, 0.004093640483915806, 0.027336956933140755, 0.00909851212054491, 0.017037276178598404, -0.0060369111597537994, 0.03098188526928425, -0.009533418342471123, 0.013440670445561409, 0.00913302879780531, 0.01647120714187622, -0.007669534999877214, 0.010872653685510159, 0.018031345680356026, -0.010410133749246597, 0.004000446293503046, 0.015932751819491386, 0.03495816886425018, -0.01217737141996622, -0.02126207761466503, -0.022256148979067802, 0.010748394764959812, 0.012101436033844948, 0.021828146651387215, -0.040756918489933014, -0.011894337832927704, -0.018376510590314865, 0.0035655400715768337, 0.03575894981622696, 0.018155604600906372, -0.04197189211845398, 0.008919027633965015, -0.026232434436678886, -0.018376510590314865, 0.025293588638305664, 0.017354825511574745, -0.03813367336988449, -0.00961625762283802, -0.00908470619469881, 0.010389423929154873, 0.004559610970318317, 0.008553153835237026, -0.0028337931726127863, 0.012149758636951447, -0.0017896732315421104, -0.018625028431415558, -0.6282529830932617, -0.020198974758386612, -0.018348896875977516, -0.018045153468847275, -0.007020627614110708, 0.004048768896609545, 0.021910985931754112, 0.010962395928800106, -0.008283926174044609, -0.0020209329668432474, -0.020751236006617546, 0.032445378601551056, -0.0065650115720927715, -0.017989926040172577, -0.03622836992144585, -0.017023468390107155, 0.011093557812273502, -0.023181186988949776, 0.005847071297466755, -0.029463164508342743, -0.013005764223635197, 0.006271622609347105, -0.0018966739298775792, 0.009001866914331913, 0.016733530908823013, -0.018707867711782455, 0.021938597783446312, 0.011714852415025234, 0.006485624238848686, 0.02852432057261467, -0.04222040995955467, 0.0343506820499897, 0.017603343352675438, 0.014358805492520332, 0.042137570679187775, 0.00249380711466074, -0.03910013288259506, 0.023498738184571266, 0.0017724151257425547, 0.008925930596888065, -0.022601312026381493, -0.027544055134058, 0.017078695818781853, -0.002954600378870964, 0.014869648031890392, 0.003955574706196785, 0.04097782075405121, -0.008739542216062546, 0.008553153835237026, 0.011197106912732124, 0.021745307371020317, -0.01495248731225729, -0.00031388315255753696, -0.01339234784245491, -0.01149394828826189, -0.0029304390773177147, 0.029407938942313194, -0.020337039604783058, 0.012115241959691048, -0.00038356304867193103, 0.007427920587360859, 0.04025988280773163, -0.0019363678293302655, -0.00942296627908945, -0.017630957067012787, 0.030457235872745514, -0.00913993176072836, -0.004373222589492798, 0.022780798375606537, -0.008746445178985596, 0.008387475274503231, -0.0009276272030547261, 0.020765041932463646, -0.009623161517083645, 0.0060300081968307495, 0.0012149758404120803, 0.03291480243206024, -0.020171361044049263, 0.0016930274432525039, 0.020571749657392502, 0.02124827168881893, -0.0066133346408605576, -0.030043039470911026, -0.02813773602247238, 0.0412539541721344, -0.0188459325581789, -0.0029615035746246576, 0.030374396592378616, 0.00018832988280337304, -9.330203465651721e-05, 0.014483064413070679, -0.010203036479651928, 0.0067721097730100155, -0.004680418409407139, 0.02206285670399666, 0.022808410227298737, -0.016346948221325874, 0.01651262678205967, 0.013847963884472847, -0.00576768396422267, 0.0015851638745516539, -0.007959472946822643, 0.006447656080126762, -0.005160195752978325, -0.01586371846497059, -0.00576768396422267, -0.03992852568626404, -0.0036104111932218075, 0.04511978477239609, -0.03606269136071205, 0.008649799972772598, -0.015725653618574142, -0.007427920587360859, 0.005998943466693163, 0.0019519001943990588, -0.028041090816259384, 0.019122064113616943, -0.0017827700357884169, 0.01717534102499485, -0.012819375842809677, 0.03294241428375244, -0.007773084100335836, -0.010348004288971424, -0.014524484053254128, 0.015366683714091778, 0.03700153902173042, 0.007586695719510317, 0.012632987461984158, 0.017755215987563133, -0.009768130257725716, -0.0004702853912021965, -0.020033296197652817, 0.028689999133348465, -0.0011632012901827693, 0.016995856538414955, -0.03857548534870148, 0.014275966212153435, 0.012750343419611454, 0.012080726213753223, -0.024603260681033134, -0.015960365533828735, -0.004173027817159891, 0.006986111402511597, -0.0010458456818014383, -0.020737428218126297, -0.03990091383457184, -0.0022832571994513273, -0.002883841982111335, -0.024327130988240242, -0.010734587907791138, -0.009174448437988758, -0.012674407102167606, -0.0030512462835758924, 0.030098265036940575, 0.0007874044822528958, -0.02196621149778366, -0.023540157824754715, 0.013281895779073238, 0.025279782712459564, -0.015435716137290001, 0.021759113296866417, 0.022490860894322395, -0.03992852568626404, -0.002771663712337613, 0.014400225132703781, -0.004756354261189699, -0.02269795909523964, 0.025307394564151764, -0.0047598062083125114, -0.044843655079603195, -0.01578087918460369, -0.008622187189757824, -0.012985054403543472, 0.038989681750535965, -0.011300656013190746, -0.007144886534661055, 0.005029033869504929, -0.008297733031213284, -0.010486070066690445, 0.01752050407230854, -0.023954354226589203, 0.007483146619051695, -0.013847963884472847, -0.009878582321107388, 0.021538209170103073, 0.0045561594888567924, 0.0012529438827186823, -0.01582229882478714, 0.01887354627251625, 0.03813367336988449, -0.011576787568628788, -0.005094614811241627, 0.003260070225223899, -0.001194266020320356, -0.0030926659237593412, -0.018072765320539474, 0.0070275310426950455, 0.01717534102499485, -0.00015251916192937642, 0.0039693815633654594, 0.03062291443347931, 0.011714852415025234, 0.02271176502108574, -0.015201005153357983, 0.01654024049639702, -0.03603507950901985, -0.004483675118535757, -0.008290830068290234, 0.028261994943022728, -0.015559975057840347, 0.005950620397925377, -0.027640700340270996, -0.00942296627908945, -0.024161452427506447, 0.010140907019376755, 0.027254117652773857, 0.011901240795850754, -0.000286917231278494, -0.01986761763691902, 0.006803174503147602, 0.024189064279198647, 0.0035551851615309715, -0.0032065699342638254, -0.007931859232485294, -0.01680256426334381, -0.0017913990886881948, 0.003191037569195032, 0.01747908443212509, 0.005546778906136751, -0.004255867097526789, 0.02022658661007881, -0.003941768314689398, -0.002488629659637809, -0.00822870060801506, -0.006354461889714003, 0.017078695818781853, 0.024824166670441628, -0.006250912789255381, 0.041806213557720184, -0.02061316929757595, -0.005543327424675226, 0.024520421400666237, 0.011369689367711544, -0.017341019585728645, -0.009540322236716747, 0.018058959394693375, 0.021041173487901688, 0.0024299516808241606, 0.008518638089299202, 0.013813447207212448, -0.010755297727882862, -0.0006886014016345143, -0.009236577898263931, -0.00197606161236763, 0.02333305962383747, -0.031037110835313797, -0.0007015450391918421, 0.010203036479651928, 0.013302605599164963, 0.03153414651751518, -0.0016852612607181072, 0.00809063483029604, 0.018473155796527863, 0.010927879251539707, 0.047936320304870605, 0.017699988558888435, 0.014731582254171371, 0.019508646801114082, -0.027350762858986855, -0.02377486787736416, -0.008104441687464714, -0.013488993048667908, -0.01861122064292431, -0.0018276412738487124, 0.0028165350668132305, -0.008836188353598118, 0.010713878087699413, 0.007490050047636032, 0.02374725602567196, 0.012764150276780128, -0.026908954605460167, -0.021510595455765724, 0.01963290572166443, 0.004128156695514917, 8.689763490110636e-06, 0.004014252685010433, -0.013571832329034805, 0.006247461307793856, -0.037609025835990906, 0.03183789178729057, -0.0086014773696661, 0.019163483753800392, 0.028413867577910423, -0.013164539821445942, -0.007966375909745693, -0.0025697429664433002, 0.029352713376283646, -0.006278526037931442, 0.033135704696178436, 0.000498761422932148, 0.0206407830119133, 0.004210995975881815, -0.025680171325802803, 0.025321202352643013, 0.020903106778860092, -0.0016524707898497581, -0.032086409628391266, 0.002117578638717532, 0.0028096316382288933, -0.012978151440620422, -0.01716153509914875, -0.031478919088840485, -0.012080726213753223, -0.012860795482993126, 0.007635018788278103, 0.01684398390352726, -0.0028148090932518244, 0.012163565494120121, 0.022932669147849083, -0.010078777559101582, -0.018348896875977516, -0.009402256458997726, -0.026660436764359474, 0.017686182633042336, 0.07864207774400711, 0.01084503997117281, -0.016636885702610016, 0.017396245151758194, -0.002681921236217022, 0.003232457209378481, -0.012315437197685242, -0.02269795909523964, 0.016719724982976913, -0.020571749657392502, 0.003993542864918709, -0.027944445610046387, 0.010907169431447983, 0.009926904924213886, 0.0014522759011015296, -0.016774950549006462, -0.028441481292247772, 0.0035016846377402544, 0.015946557745337486, -0.01855599507689476, 0.0015178569592535496, -0.0111763970926404, 0.00913302879780531, 0.013116217218339443, -0.023830095306038857, -0.01065174862742424, 0.042441315948963165, 0.0016395271522924304, 0.01168723963201046, -0.017285792157053947, -0.02539023384451866, 0.011859821155667305, 0.0010855394648388028, 0.02478274703025818, -0.03134085610508919, 0.013378540985286236, 0.004311093594878912, 0.020185166969895363, -0.003924509976059198, 0.015256230719387531, 0.030429622158408165, 0.01890115812420845, 0.019784778356552124, -0.017009662464261055, 0.0037277669180184603, -0.00017808284610509872, -0.007427920587360859, -0.005312067922204733, -0.014006738550961018, -0.013157636858522892, 0.03164459764957428, 0.021206852048635483, 0.0038934454787522554, -0.014897260814905167, 0.03360512852668762, -0.007655728608369827, 0.01583610661327839, -0.006561560090631247, -0.01684398390352726, 0.014938680455088615, 0.001190814422443509, 0.01134897954761982, -0.0009069173829630017, -0.018832126632332802, -0.014828228391706944, -0.023139767348766327, -0.019025417044758797, -0.005073904991149902, -0.011949563398957253, 0.019522452726960182, -0.005370745435357094, 0.0036863472778350115, -0.024327130988240242, 0.020005682483315468, -0.019122064113616943, 0.0013271539937704802, -0.007800697349011898, -0.017989926040172577, 0.009236577898263931, 0.0063406554982066154, -0.010851943865418434, -0.026342885568737984, 0.005008324049413204, -0.018486961722373962, -0.028358642011880875, -0.004197189584374428, -0.002286708913743496, 0.018638834357261658, -0.004197189584374428, 0.014386419206857681, 0.0019915939774364233, 0.009719806723296642, -0.013130023144185543, -0.004359416197985411, 0.008988060057163239, 0.01683017797768116, 0.004304190166294575, -0.01747908443212509, 0.004704579710960388, -0.009892389178276062, -0.0002422616962576285, -0.027709733694791794, -0.0012719278456643224, -0.011804594658315182, 0.007586695719510317, -0.009498902596533298, 0.006154267117381096, 0.028096316382288933, -0.007065498735755682, -0.00695504667237401, -0.01324047613888979, -0.008318442851305008, 0.012149758636951447, 0.005374197382479906, -0.007234629243612289, 0.0010354907717555761, 0.015739459544420242, -0.001199443475343287, 0.003406764706596732, -0.011342075653374195, -0.01101762242615223, -0.019674325361847878, 0.00027526795747689903, -0.003641475923359394, -0.022739378735423088, -0.00626817112788558, 0.0043076416477561, -0.025486880913376808, 0.008401282131671906, 0.010244455188512802, 0.00454580457881093, 0.01747908443212509, -0.0019605292472988367, -0.017009662464261055, -0.03515145927667618, 0.005029033869504929, -0.02508649043738842, -0.004159221425652504, -0.01150775421410799, 0.005467391572892666, -0.0018897707341238856, -0.021759113296866417, -0.006993014365434647, -0.02300170250236988, -0.031147563830018044, -0.02541784755885601, -0.022159503772854805, 0.007849019952118397, 0.001110563869588077, -0.0008206264465115964, -0.010907169431447983, -0.015670428052544594, -0.02577681839466095, -0.007220822386443615, -0.0020347393583506346, -0.013502799905836582, -0.01409648172557354, -0.0024075161200016737, 0.014414031989872456, -0.0028545029927045107, 0.019080644473433495, -0.015214811079204082, 0.009043286554515362, 0.007372694555670023, 0.013233572244644165, 0.012294727377593517, -0.010596522130072117, -0.01989522948861122, -0.04393242299556732, -0.01320595946162939, 0.028303414583206177, 0.03272150829434395, 0.025514492765069008, -0.0005207656067796052, -0.003921058494597673, 0.04870948567986488, 0.010292778722941875, -0.022780798375606537, -0.013357831165194511, -0.04495410621166229, -0.02264273166656494, 0.022449441254138947, -0.016664499416947365, 0.003085762495175004, -0.019660519436001778, 0.0052464865148067474, 0.052409641444683075, 0.0037898963782936335, -0.00339640979655087, -0.034571584314107895, 0.010541296564042568, -0.023981966078281403, -0.006854949053376913, 0.01688540354371071, 0.01359254214912653, -0.011279946193099022, 0.008207990787923336, -0.004262770526111126, 0.0041902861557900906, -0.0010173696791753173, -0.007607405539602041, 0.005947168916463852, -0.008000892587006092, -0.021745307371020317, -0.027267923578619957, 0.0068238843232393265, 0.008532444015145302, -0.013709898106753826, 0.030871432274580002, -0.026370499283075333, -0.012508728541433811, -0.014938680455088615, -0.024644680321216583, -0.04288312420248985, -0.003298038151115179, -0.008366765454411507, -0.008491024374961853, 0.02231137454509735, -0.0189149659126997, -0.004380126018077135, 0.0037001539021730423, -0.01861122064292431, 0.04409810155630112, 0.008843091316521168, 0.03719482943415642, 0.00704824086278677, -0.017382439225912094, -0.022518472746014595, -0.005060098599642515, -0.025942496955394745, -0.020185166969895363, 0.03620075806975365, 0.016995856538414955, 0.000597133010160178, -0.008449604734778404, -0.009374643675982952, -0.0009017399279400706, -0.0377747043967247, -0.03534475341439247, 0.0035448302514851093, 0.01612604409456253, -0.01890115812420845, -0.016057010740041733, 0.006026556249707937, -0.011949563398957253, -0.007006821222603321, 0.022905057296156883, 0.012294727377593517, -0.016678305342793465, -0.003287683241069317, -0.01786566711962223, -0.001166653004474938, 0.011749369092285633, 0.028662385419011116, 0.02058555744588375, -0.01049987692385912, -0.03752618655562401, -0.013992932625114918, -0.023277834057807922, -0.020198974758386612, -0.021717693656682968, 0.028082510456442833, -0.01851457543671131, -0.01099000871181488, 0.011273043230175972, 0.004839193541556597, -0.009436773136258125, 0.005422519985586405, -0.017699988558888435, 0.028096316382288933, 7.69067628425546e-05, 0.005605456884950399, 0.0050842599011957645, 0.01324047613888979, 0.009547225199639797, 0.018362702801823616, 0.004421545658260584, 0.016995856538414955, -0.03573133423924446, -0.009533418342471123, -0.0009466111660003662, 0.010348004288971424, 0.0018483510939404368, -0.020709816366434097, -0.02229756861925125, -0.0019674324430525303, 0.005864329636096954, -0.006630592979490757, 0.014483064413070679, -0.040342722088098526, -0.02474132739007473, -0.005067001562565565, -0.019398193806409836, 0.005170550663024187, 0.006568463519215584, 0.0076143089681863785, -0.005853974726051092, 0.029048968106508255, -0.020806461572647095, 0.04371151700615883, -0.020350845530629158, 0.004390480928122997, -0.034571584314107895, -0.007869729772210121, 0.022946476936340332, -0.018017539754509926, 0.016609271988272667, -0.022891249507665634, -0.018666448071599007, 0.017727602273225784, 0.020723622292280197, 0.02331925369799137, 0.005205066874623299, -0.006309590768069029, -0.00011099167022621259, -0.004911677911877632, 0.004991065710783005, -0.011583690531551838, -0.04025988280773163, 0.021496789529919624, 0.007579792756587267, -0.0037657348439097404, -0.018445542082190514, -0.012087629176676273, 0.030153492465615273, -0.004010801203548908, 0.008132054470479488, 0.0075107598677277565, -0.035924628376960754, 0.008974253199994564, -0.000997522845864296, 0.008829284459352493, 0.00737959798425436, 0.01236375980079174, -0.01586371846497059, -0.03412977606058121, -0.0038796388544142246, 0.009733613580465317, 0.0014281143667176366, -0.02857954613864422, 0.018859738484025, 0.027585474774241447, -0.006323397159576416, 0.006471817381680012, 0.009036382660269737, -0.025873463600873947, 0.011273043230175972, -0.012439696118235588, -0.05323803424835205, 0.006965401582419872, 0.002196966204792261, 0.032859575003385544, -0.006009298376739025, -0.011128074489533901, -0.014483064413070679, -0.005339680705219507, -0.033853646367788315, -0.014358805492520332, 0.016277914866805077, 0.025224555283784866, 0.04017704352736473, 0.02442377619445324, -0.01050677988678217, 0.007593599148094654, -0.023912934586405754, 0.014703969471156597, -0.01959148608148098, 0.007269145455211401, 0.009485095739364624, 0.016609271988272667, -0.007010272704064846, -0.006067975889891386, -0.02374725602567196, -0.0009379820548929274, 0.032859575003385544, -0.016747338697314262, 6.293842307059094e-05, 0.0206545889377594, -0.01496629323810339, 0.005788393784314394, -0.024630874395370483, 0.017368631437420845, 0.01956387236714363, 0.009547225199639797, -0.003191037569195032, -0.0223251823335886, 0.005522617604583502, -0.007096563465893269, -0.012073822319507599, -0.014814421534538269, -0.01291602198034525, -0.013150732964277267, -0.003758831648156047, 0.010769104585051537, -0.011970273219048977, -0.006554656662046909, -0.0043490612879395485, -0.014483064413070679, 0.051001373678445816, -0.009001866914331913, 0.009105416014790535, 0.04371151700615883, 0.002908003283664584, -0.026991793885827065, 0.012950538657605648, 0.016567852348089218, -0.0017085598083212972, -0.030153492465615273, 0.010582716204226017, -0.021800532937049866, 0.015698039904236794, -0.012798666022717953, 0.01649882085621357, -0.0033187479712069035, 0.009174448437988758, 0.012957441620528698, 0.0007403758936561644, -0.020875494927167892, 0.024285711348056793, 0.010396327823400497, -0.026674242690205574, -0.00565723143517971, 0.012501825578510761, 0.00660643121227622, 0.012308534234762192, -0.018983997404575348, -0.03227970004081726, -0.010403230786323547, 0.007814504206180573, -0.004086737055331469, 0.009243480861186981, -0.01750669814646244, -0.02609436772763729, 0.015532362274825573, -0.037967994809150696, 0.007973278872668743, 0.171974316239357, -0.010444650426506996, 0.015201005153357983, 0.021786727011203766, -0.015228617936372757, -0.009153738617897034, 0.026674242690205574, -0.0034550875425338745, 0.016346948221325874, 0.0007632430060766637, -0.0172167606651783, 0.018749287351965904, -0.004573417827486992, 0.00827702321112156, 0.004973807372152805, -0.005463939625769854, -0.027585474774241447, -0.0044008358381688595, -0.00998213142156601, -0.04959310591220856, 0.01080362033098936, -0.019094450399279594, -0.022159503772854805, -0.012053112499415874, 0.026674242690205574, -0.0026025334373116493, -0.004576869308948517, -0.006064524408429861, 0.042137570679187775, -0.007110370323061943, -0.02960123121738434, -0.009623161517083645, 0.01578087918460369, -0.017064888030290604, -0.0069792079739272594, -0.019329162314534187, 0.0172167606651783, 0.009347029961645603, 0.022960282862186432, -0.00368979899212718, -0.02025420032441616, -0.007351984735578299, -0.0036863472778350115, -0.013951512984931469, -0.016360754147171974, 0.033549901098012924, -0.02164866030216217, -0.010541296564042568, 0.0026715663261711597, 0.005108421202749014, -0.025887269526720047, 0.0189287718385458, 0.055833663791418076, 0.019370581954717636, -0.004908226430416107, 0.006727238651365042, -0.005778038874268532, 0.024948425590991974, -0.02099975384771824, 0.012267114594578743, -0.015918945893645287, 0.022104276344180107, -0.009954518638551235, 0.030346782878041267, -0.011231623589992523, 0.003955574706196785, -0.0023643707390874624, -0.027585474774241447, 0.016291722655296326, -0.028358642011880875, 0.002183159813284874, -0.012598471716046333, -0.024837972596287727, 0.004100543446838856, 0.010092583484947681, -0.00822870060801506, 0.03299764171242714, -0.013433767482638359, -0.0022798054851591587, 0.0172029547393322, 0.008408185094594955, -0.006785916164517403, -0.013903189450502396, -0.00322727975435555, -0.005505359265953302, -0.015325264073908329, 2.9932156394352205e-05, -0.00913993176072836, -0.011908143758773804, 0.013226669281721115, -0.030181104317307472, -0.009222771041095257, 0.022269954904913902, -0.01654024049639702, 0.008684315718710423, 0.0059333620592951775, 0.02128969132900238, -0.007759277708828449, 0.008166571147739887, -0.00994761474430561, -0.008332249708473682, -0.005643425043672323, 0.03327377140522003, 0.021234463900327682, -0.015076746232807636, -0.016913017258048058, 0.0021986921783536673, -0.0076143089681863785, 0.011010718531906605, -0.033881258219480515, 0.020778847858309746, -0.007773084100335836, 0.0006549479439854622, -0.029987813904881477, 0.005167099181562662, 0.017976120114326477, -0.016595466062426567, -0.020737428218126297, -0.00420754449442029, 0.008456508629024029, 0.013309508562088013, -0.024824166670441628, -0.001049297396093607, 0.0009992485865950584, -0.014690162613987923, -0.015587587840855122, -0.03239015117287636, 0.03020871803164482, 4.950940274284221e-05, -0.020737428218126297, 0.0377470925450325, -0.04268983379006386, -0.0024817262310534716, 0.007289855275303125, -0.009554128162562847, -0.009678387083113194, 0.0005324148805812001, -0.024244291707873344, 0.03360512852668762, -0.015711847692728043, 0.016208883374929428, 0.01754811778664589, -0.012122145853936672, 0.008221796713769436, 0.006558108609169722, -0.008863801136612892, 0.014745389111340046, -0.021110204979777336, 0.0037657348439097404, -0.02476893924176693, -0.01956387236714363, 0.008849994279444218, 0.01132136583328247, -0.02469990774989128, 0.007296758703887463, -0.004369771108031273, -0.005381100345402956, -0.02204905077815056, 0.008587670512497425, 0.03302525356411934, -0.01924632303416729, 0.012246404774487019, 0.0257353987544775, -0.005132582504302263, -0.016429787501692772, -0.009257287718355656, -0.17650285363197327, 0.02614959515631199, 0.031423695385456085, 0.0007861101184971631, 0.0031444404739886522, 0.041806213557720184, 0.031119950115680695, 0.00893973745405674, 0.007600502576678991, -0.014124094508588314, 0.03139607980847359, 0.020419878885149956, -0.01890115812420845, -0.025252168998122215, -0.005101518239825964, 0.00020957902597729117, -0.017271986231207848, 0.018652640283107758, 0.05682773515582085, 0.007849019952118397, 0.0050877113826572895, -0.007862826809287071, 0.007517663296312094, -0.00568139273673296, -0.010451553389430046, 0.013972222805023193, -0.012073822319507599, 0.006109395530074835, 0.014275966212153435, -0.007075853645801544, -0.009692193940281868, -0.003575894981622696, 0.009146835654973984, -0.013219766318798065, 0.02539023384451866, 0.013226669281721115, -0.002728518331423402, 0.004252415616065264, -0.01391699630767107, 0.02032323367893696, 0.005591650493443012, 0.007193209603428841, 0.019342968240380287, -0.004483675118535757, 0.0026077108923345804, 0.013309508562088013, -0.0031185531988739967, -0.013371638022363186, -0.0008258039015345275, -0.023622997105121613, 0.01578087918460369, 0.002433403395116329, 0.024492809548974037, -0.000761948642320931, 0.028772838413715363, 0.035979852080345154, -0.0019915939774364233, 0.0013763398164883256, 0.006330300588160753, -0.027544055134058, -0.0017422132659703493, 0.007110370323061943, 0.022794604301452637, -0.019757164642214775, 0.01428977306932211, -0.0052913581021130085, -0.03164459764957428, -0.00593681400641799, -0.031119950115680695, 0.015573781915009022, 0.0070275310426950455, 0.0030374396592378616, 0.02239421382546425, -0.012080726213753223, -0.009733613580465317, -0.007738567888736725, -0.028717610985040665, 0.03341183811426163, -0.02135872282087803, -0.019522452726960182, -0.04252415522933006, 0.045506369322538376, -0.01424835342913866, -0.00549500435590744, 0.00032078640651889145, 0.013475187122821808, -0.010996912606060505, -0.0378575436770916, -0.010693168267607689, 0.0006130968686193228, 0.008380572311580181, -0.01649882085621357, -0.016567852348089218, -0.006399333011358976, 0.01201859675347805, -0.0015981075121089816, -0.005363842472434044, -0.021054979413747787, -0.0001425957161700353, -0.013668478466570377, -0.0012443148298189044, -0.008408185094594955, -0.006965401582419872, 0.03733289614319801, 0.021455369889736176, 0.012605374678969383, 0.0033256513997912407, 0.02029561996459961, 0.04569965973496437, 0.015891332179307938, -0.0036690891720354557, 0.0008767155231907964, 0.017769021913409233, 0.00023902578686829656, -0.010672458447515965, 0.03824412822723389, -0.014690162613987923, -0.014303579926490784, 0.008594573475420475, -0.02445138990879059, 0.06461462378501892, -0.007058595772832632, 0.014331192709505558, 0.01586371846497059, -0.010727684944868088, -0.04020465537905693, -0.10404611378908157, -0.00627507409080863, 0.010879556648433208, 0.0075107598677277565, -0.023291639983654022, 0.024202872067689896, -0.00712417671456933, -0.012053112499415874, 0.005608908366411924, 0.015118165872991085, -0.025196943432092667, -0.04788109287619591, -0.004235157277435064, 0.014814421534538269, -0.0025956302415579557, -0.013288798741996288, -0.0013211136683821678, -0.015573781915009022, 0.0025007103104144335, 0.028938516974449158, 0.00912612583488226, -0.011556077748537064, -0.00031604041578248143, -0.009202061221003532, -0.013033377937972546, 0.017410051077604294, -0.05124989151954651, -0.0009146835654973984, 0.030153492465615273, 0.011286850087344646, -0.011148784309625626, -0.01757572963833809, 0.0076626320369541645, -0.006154267117381096, -0.02301550842821598, -0.004942742642015219, -0.04669373109936714, -0.02032323367893696, 0.020861687138676643, -0.019729550927877426, 0.005812555085867643, -0.021220657974481583, 0.045202624052762985, 0.009347029961645603, 0.00928490050137043, 0.001689575845375657, -0.006278526037931442, 0.004521643277257681, 0.003275602590292692, -0.02239421382546425, -0.01480061560869217, 0.0012192904250696301, -0.03879638761281967, -0.011197106912732124, 0.017078695818781853, -0.010914073325693607, 0.024617068469524384, -0.01750669814646244, -0.00997522845864296, -0.0026266949716955423, -0.02202143706381321, 0.01960529200732708, -0.0053465841338038445, 0.023250220343470573, 0.00979574304074049, -0.0022366601042449474, -0.026384305208921432, -0.024479001760482788, 0.028662385419011116, 0.003132359590381384, -0.024603260681033134, 0.021372530609369278, -0.03396409749984741, 0.007448630407452583, -0.013758220709860325, 0.02166246809065342, -0.039321038872003555, -0.008898317813873291, 0.028110124170780182, -0.015656620264053345, 0.005995491519570351, -0.012184275314211845, 0.010893363505601883, -0.018155604600906372, 0.012998861260712147, 0.015214811079204082, 0.014938680455088615, -0.016429787501692772, 0.0019277386600151658, -0.02857954613864422, 0.019094450399279594, 0.005529521033167839, -0.0066133346408605576, -0.027640700340270996, 0.032528217881917953, 0.041143499314785004, 0.008125151507556438, 0.005450133234262466, -0.012322340160608292, 0.014703969471156597, -0.02026800625026226, -0.001552373287267983, -0.06837000697851181, 0.03161698579788208, 0.007414114195853472, -0.006899820175021887, 0.004725289531052113, -0.012991958297789097, 0.0009768130257725716, -0.00274750217795372, -0.02679850161075592, 0.019508646801114082, -0.021745307371020317, 0.03164459764957428, -0.01496629323810339, -0.011259236373007298, -0.013136927038431168, -0.011072847992181778, 0.027585474774241447, -0.011521561071276665, 0.028110124170780182, 0.0029615035746246576, 0.011190203949809074, 0.012632987461984158, 0.03123040311038494, 0.02066839672625065, -0.037940382957458496, 0.011783884838223457, 0.016070816665887833, 0.007704051677137613, 0.001717188861221075, -0.01584991253912449, 0.028993742540478706, -0.05439778417348862, -0.012971248477697372, 0.008339152671396732, -0.007427920587360859, 0.002290160395205021, 0.0017655118135735393, -0.0065132370218634605, 0.010548199526965618, 0.04708031564950943, -0.000988030806183815, -0.013986028730869293, -0.008629090152680874, -0.015918945893645287, -0.008863801136612892, 0.03297002613544464, -0.009291804395616055, 0.009885485284030437, 0.01286769937723875, -0.020571749657392502, 0.006751399952918291, 0.015049132518470287, 0.014634937047958374, -0.013654671609401703, 0.023443512618541718, -0.014220740646123886, 0.025597332045435905, 0.01217737141996622, 0.022449441254138947, -0.014165514148771763, -0.002738873241469264, 0.0025973559822887182, 0.012632987461984158, 0.0021728049032390118, 0.023830095306038857, -0.00395212322473526, -0.007089660502970219, -0.0129091190174222, -0.018790706992149353, -0.028096316382288933, -0.011224720627069473, -0.008180377073585987, 0.009112318977713585, 0.023125961422920227, 0.025003651157021523, 0.00827702321112156, -0.0029390680138021708, -0.011977177113294601, -0.032528217881917953, 0.008663605898618698, -0.002243563299998641, 0.0008214893750846386, -0.03821651265025139, 0.004580320790410042, 0.019522452726960182, -0.011293753050267696, -0.007151789963245392, 0.03194834291934967, 0.0072001125663518906, 0.011273043230175972, 0.02852432057261467, -0.018321283161640167, 0.014593517407774925, -0.008304635994136333, 0.02127588354051113, 0.011963370256125927, -0.02262892574071884, -0.016719724982976913, 0.02304312214255333, 0.044208552688360214, -0.005298261065036058, 0.0016930274432525039, 0.011735562235116959, -0.0038175093941390514, 0.002744050696492195, -0.005746974144130945, -0.011431818827986717, -0.011148784309625626, -0.011183300986886024, 0.008408185094594955, 0.017617149278521538, 0.008076827973127365, 0.00947128888219595, 0.016208883374929428, -0.009830259718000889, -0.00352757191285491, -0.005633070133626461, -0.017603343352675438, -0.0057745869271457195, 0.030512461438775063, -0.009830259718000889, 0.024907005950808525, 0.03948671743273735, 0.005560585763305426, 0.03465442359447479, 0.004991065710783005, 0.02298789657652378, 0.0025973559822887182, 0.017244374379515648, 0.008111344650387764, 0.0021607240196317434, 0.002880390267819166, -0.042137570679187775, 0.007621212396770716, -0.006844594143331051, -0.03410216420888901, -0.005819458514451981, 0.0009103689808398485, -0.008635993115603924, 0.05737999826669693, 0.013330218382179737, -0.015642814338207245, 0.004162672907114029, 0.022408021613955498, 0.023540157824754715, 0.014703969471156597, 0.0206545889377594, -0.010568909347057343, 0.002183159813284874, 0.014344999566674232, -0.022891249507665634, 0.01821083202958107, 0.0035413785371929407, -0.0016774950781837106, 0.003213473130017519, -0.013495896942913532, 0.04854380711913109, -0.010292778722941875, -0.00978884007781744, 0.017658568918704987, 0.022587506100535393, 0.033494677394628525, -0.011749369092285633, 0.006709980312734842, -0.001359944581054151, 0.013937706127762794, -0.0021486433688551188, -0.003025359008461237, -0.03921058401465416, 0.01188743393868208, 0.017271986231207848, -0.008311539888381958, -0.006278526037931442, 0.0034033129923045635, -0.019412001594901085, -0.00679281959310174, -0.006551205180585384, 0.010672458447515965, 0.023291639983654022, -0.007096563465893269, -0.0018794158240780234, -0.028303414583206177, -0.017948506399989128, 0.011908143758773804, -0.0038071544840931892, -0.006413139868527651, -0.015698039904236794, -0.040011364966630936], "16b04150-d493-4e6a-873b-caa163919222": [-0.003886670805513859, -0.019218582659959793, -0.006481248885393143, -0.005691444035619497, -0.0018567340448498726, 0.02959689497947693, -0.012325110845267773, 0.013308903202414513, -0.004901639185845852, -0.04536527767777443, 0.007028569467365742, 0.01727871038019657, -0.00017244504124391824, 0.010433736257255077, -0.002364218235015869, -0.011272038333117962, 0.034197159111499786, -0.01927400752902031, 0.030982516705989838, -0.03888056427240372, 0.01594851352274418, 0.0024352313484996557, -0.025606302544474602, 0.022059109061956406, -0.025370746850967407, 0.03198016434907913, 0.015837663784623146, -0.026493100449442863, -0.01099491398781538, -0.01008733082562685, -0.014396616257727146, 0.00016638293163850904, -0.0012730405433103442, 0.00587850296869874, -0.004028697032481432, -0.014126420021057129, 0.015893088653683662, -0.0035575854126363993, 0.003005068516358733, -0.0013838903978466988, -0.01380772702395916, 0.008978833444416523, -0.0003355804365128279, 0.00963007565587759, -0.027075061574578285, 0.01759740523993969, 0.005691444035619497, -0.016655180603265762, -0.01434119138866663, 0.029846306890249252, 0.01682145521044731, 0.012796223163604736, -0.027989571914076805, 0.005060985684394836, -0.007710988633334637, 0.006560922134667635, 0.001069527235813439, 0.021172309294342995, -0.010288245975971222, 0.026742512360215187, 0.019994530826807022, 0.011306678876280785, -0.013863151893019676, 0.012567594647407532, -0.02395741082727909, -0.010551514104008675, -0.029014931991696358, -0.0035350690595805645, -0.009484585374593735, -0.01417491678148508, 0.037217818200588226, 0.028904082253575325, 0.005137194879353046, -0.012865504249930382, -0.0030102645978331566, -0.04384109377861023, -0.04447847977280617, -0.02198982797563076, -0.01970355026423931, 0.01515870913863182, -0.010579226538538933, -0.008396871387958527, 0.002850918099284172, -0.0274630356580019, 0.03350434824824333, 0.013163412921130657, 0.006488176994025707, 0.026146695017814636, -0.02410982921719551, -0.03779977932572365, 0.010489161126315594, 0.02197597175836563, 0.018123941496014595, 0.01668289303779602, -0.006654451601207256, 0.01791609823703766, -0.019661981612443924, 0.034391146153211594, -0.02201754041016102, -0.03430800884962082, -0.022045252844691277, 0.017694398760795593, -0.0150062907487154, -0.007738701067864895, -0.021297015249729156, 0.012657660990953445, -0.007724844850599766, -0.000462451484054327, 0.006245692726224661, -0.010004193522036076, -0.02973545715212822, 0.012373607605695724, -0.017541980370879173, -0.020243942737579346, -0.010094258934259415, -0.008916480466723442, 0.05869496613740921, -0.004447848070412874, -0.00993491243571043, -0.005687979981303215, 0.01715400442481041, 0.014729166403412819, 0.013357399962842464, -0.008916480466723442, 0.024054404348134995, 0.010371383279561996, 0.021047603338956833, -0.026603950187563896, -0.012983282096683979, -0.014396616257727146, 0.039074551314115524, -0.01227661408483982, 0.026423819363117218, 0.0002979088167194277, 0.0017978450050577521, 0.014964722096920013, -0.03993363678455353, 0.01213805191218853, -0.012422104366123676, -0.03932396322488785, 0.026770224794745445, 0.024331528693437576, -0.0031384346075356007, -0.02758774161338806, 0.00044859523768536747, 0.016918448731303215, 0.013218837790191174, 0.006633667275309563, -0.007641707547008991, -0.0097062848508358, 0.010600010864436626, -0.005753797013312578, 0.009650859981775284, -0.011923280544579029, 0.032700687646865845, -0.0028422579634934664, 0.018401065841317177, 0.0026586628518998623, 0.006508961319923401, -0.001361374044790864, 0.012006417848169804, 0.021740416064858437, 0.0036130102816969156, -0.006470856722444296, 0.012186548672616482, 0.02018851786851883, -0.006869222968816757, -0.011410600505769253, -0.02216995880007744, -0.009463801048696041, -0.006297653540968895, 0.016572043299674988, -0.02061806060373783, -0.011175044812262058, -0.009158964268863201, 0.026964211836457253, 0.02656238153576851, 0.01622563786804676, -0.01881675235927105, 0.005258436780422926, -0.021047603338956833, -0.02334773726761341, 0.017084723338484764, 0.022211527451872826, -0.03594304621219635, -0.01985596865415573, -0.02004995569586754, 0.00956772267818451, 0.00820288434624672, 0.005300005432218313, -0.010503017343580723, 0.027657022699713707, -0.0030882058199495077, -0.018761327490210533, -0.6243060231208801, -0.008105890825390816, -0.00027539246366359293, -0.0007244207081384957, -0.006779157556593418, -0.001021030475385487, 0.028405258432030678, -0.0026118981186300516, -0.01373151782900095, -0.008715564385056496, -0.04367481917142868, 0.030455980449914932, -0.017389560118317604, -0.003713468089699745, -0.01532498374581337, -0.014756878837943077, -0.0094915134832263, -0.029070356860756874, 0.013322759419679642, -0.03414173424243927, -0.01928786374628544, 0.0150062907487154, 0.008140531368553638, 0.0016809331718832254, 0.020825903862714767, -0.007219092454761267, 0.024082116782665253, -0.0075031453743577, 0.006560922134667635, 0.021283159032464027, -0.01863662153482437, 0.05475979670882225, 0.03364291042089462, 0.006280333269387484, 0.037855204194784164, 0.0018065051408484578, -0.03505624830722809, 0.016031650826334953, 0.013149556703865528, 0.004510201048105955, -0.03156447783112526, -0.03125964105129242, 0.0005373616586439312, 0.0027902971487492323, 0.012241973541676998, 0.017805248498916626, 0.03549964725971222, -0.007593210786581039, -0.0005590120563283563, 0.005009024869650602, 0.01774982362985611, 0.0034068990498781204, -0.011382888071238995, -0.007399223744869232, -0.009200532920658588, 0.007056281901896, 0.021740416064858437, -0.03342121094465256, -0.0009664716199040413, 0.005029809195548296, -0.0025616693310439587, 0.02124159038066864, 0.002478532027453184, 0.0015233185840770602, -0.02065962925553322, 0.02319531887769699, -0.011902496218681335, 0.01471531018614769, 0.028599245473742485, -0.002064577303826809, -0.0016895933076739311, 0.019675837829709053, 0.006699484307318926, -0.01802694797515869, -0.006515889428555965, 0.0057953656651079655, 0.04342540726065636, -0.026797937229275703, -0.004170723259449005, 0.031204216182231903, 0.018414922058582306, -0.013267334550619125, -0.026590093970298767, -0.026784081012010574, 0.021449435502290726, -0.031204216182231903, -0.016322631388902664, 0.03746723011136055, 0.004215755965560675, 0.003710004035383463, 0.0014098708052188158, 0.004555233754217625, -0.007482361048460007, -0.006602490786463022, 0.02247479557991028, 0.013073347508907318, -0.03380918502807617, -0.004361246712505817, 0.0082652373239398, -0.01471531018614769, 0.01817936636507511, -0.008736349642276764, 0.0036234024446457624, -0.012054914608597755, 0.01373151782900095, -0.0018342176917940378, -0.035111673176288605, -0.012900144793093204, 0.027116630226373672, -0.023084469139575958, 0.008916480466723442, -0.016461193561553955, -0.002100949874147773, -0.003987128380686045, -0.002530492842197418, -0.01944028213620186, 0.013932432979345322, -0.00271062389947474, 0.013759230263531208, -0.0028959508053958416, 0.0165304746478796, -0.00016984700050670654, 0.005670659709721804, -0.0011517986422404647, 0.024345384910702705, 0.03123192861676216, 0.010974129661917686, -0.0005789303686469793, -0.008902624249458313, 0.0016488906694576144, 0.0054143196903169155, -0.0031886636279523373, 0.01651661843061447, -0.003935167565941811, 0.01447975356131792, -0.03461284562945366, 0.025426171720027924, 0.011535306461155415, 0.020105380564928055, -0.01756969280540943, -0.01447975356131792, 0.004343925975263119, -0.0007841756450943649, 0.016488905996084213, -0.019758975133299828, -0.03145362809300423, -0.000680687022395432, -0.0073784394189715385, -0.032395850867033005, 0.0028924867510795593, -0.014521322213113308, 0.0025235647335648537, 0.009463801048696041, 0.01909387670457363, 0.011701581068336964, -0.017625117674469948, -0.021435579285025597, 0.0045656259171664715, 0.010281317867338657, 0.006422359962016344, 0.014687597751617432, 0.009013473987579346, -0.03743951767683029, 0.0019346752669662237, 0.009997265413403511, 0.0013700341805815697, -0.034224871546030045, 0.024982770904898643, -0.0178883858025074, -0.031342778354883194, -0.014299622736871243, -0.026285257190465927, 0.0027677807956933975, 0.042982008308172226, -0.004780397284775972, 0.004842750262469053, 0.010849423706531525, -0.0014479754026979208, -0.003935167565941811, -0.0016419625608250499, -0.002627486363053322, 0.015837663784623146, -0.004815037827938795, -0.006838046479970217, 0.010759358294308186, 0.008216740563511848, -0.001861930126324296, 0.00150773033965379, 0.017209429293870926, 0.022793488577008247, -0.027033492922782898, 0.01848420314490795, 0.006193731911480427, 0.004631442949175835, -8.329972479259595e-05, -0.006010137032717466, 0.025246040895581245, 0.021213877946138382, 0.003737716469913721, -0.001631570397876203, 0.019911393523216248, -0.006775693502277136, 0.01682145521044731, -0.015394264832139015, 0.015726814046502113, -0.03702383115887642, 0.01716786064207554, -0.01486772857606411, 0.025135189294815063, -0.023250743746757507, 0.013364328071475029, -0.025703296065330505, -0.008521577343344688, -0.015366552397608757, 0.017500411719083786, 0.0016869952669367194, 0.03181388974189758, 0.00425386056303978, -0.015893088653683662, 0.00242657121270895, 0.0097062848508358, 0.004097978118807077, 0.007226020563393831, -0.001796112977899611, -0.022363945841789246, 0.016904592514038086, -0.002040328923612833, 0.008528505451977253, 0.0025963098742067814, -0.011195829138159752, 0.01357909943908453, -0.025453884154558182, -0.016585899516940117, 0.006498569156974554, 0.0007499681087210774, -0.016738317906856537, 0.02959689497947693, -0.018248647451400757, 0.037245530635118484, -0.025744864717125893, -0.0009058506111614406, 0.010198180563747883, 0.0031903956551104784, -0.014507465995848179, -0.0031765394378453493, 0.014119491912424564, 0.020881328731775284, -0.007724844850599766, -0.01048223301768303, 0.022266952320933342, -0.02000838704407215, -0.011514522135257721, -0.009463801048696041, -0.006734124850481749, 0.009221317246556282, -0.02243322692811489, 0.0019970282446593046, 0.015879232436418533, 0.02003609947860241, 0.02095060981810093, 0.019980674609541893, 0.002102681901305914, -0.002220459980890155, 0.0194125697016716, 0.05063064396381378, 0.010987985879182816, 0.015893088653683662, 0.010787070728838444, -0.022211527451872826, -0.02277963235974312, -0.018858321011066437, -0.024400809779763222, -0.009041186422109604, -0.004645299166440964, 0.012200404889881611, -0.0009032525704242289, -0.00932523887604475, 0.007995041087269783, 0.01579609513282776, -0.0007395759457722306, -0.04228919371962547, -0.045420702546834946, 0.024968914687633514, 0.005798829719424248, -0.008438440039753914, 0.004666083492338657, 0.004652227275073528, -0.005951248109340668, -0.020299367606639862, 0.04630750045180321, 0.003337617963552475, 0.010960273444652557, 0.02805885300040245, -0.004260788671672344, -0.009775565937161446, 0.008951121009886265, 0.029652319848537445, -0.013149556703865528, 0.030234280973672867, 0.011881711892783642, 0.0028162775561213493, 0.008597786538302898, -0.013378184288740158, 0.021781984716653824, 0.0178883858025074, -0.0037931413389742374, -0.021130740642547607, 0.00647778483107686, 0.014091779477894306, -0.01959270052611828, -0.00425386056303978, -0.0278925783932209, -0.011272038333117962, -0.007385367527604103, -0.00024681398645043373, 0.01470145396888256, -0.010378311388194561, 0.0024716039188206196, 0.028031140565872192, 0.0014826159458607435, -0.005258436780422926, -0.009775565937161446, -0.026354538276791573, 0.007260661106556654, 0.06867144256830215, 0.020285511389374733, -0.012983282096683979, 0.007482361048460007, 0.002390198642387986, 0.014812303707003593, -0.02715819887816906, -0.02124159038066864, 0.006463928613811731, -0.008521577343344688, 0.003581833792850375, -0.014001714065670967, 0.02834983356297016, -0.013114916160702705, 0.01732027903199196, -0.001135344384238124, -0.02047949843108654, -0.0016445606015622616, 0.014812303707003593, -0.002438695402815938, 0.023611005395650864, -0.02046564221382141, -0.005358894821256399, 0.023624861612915993, -0.007392295636236668, -0.010981057770550251, 0.05556345731019974, 0.0038935989141464233, 0.009886415675282478, -0.018927602097392082, -0.013710733503103256, 0.021629566326737404, 0.006204124074429274, 0.035250235348939896, -0.02487192116677761, -0.005816149991005659, 0.02110302820801735, 0.01759740523993969, -0.011860927566885948, 0.014313478954136372, 0.00932523887604475, 0.036331020295619965, 0.011001842096447945, -0.012823935598134995, 0.01531112752854824, -0.008161315694451332, -0.020216230303049088, -0.0028976828325539827, 0.010260533541440964, -0.007260661106556654, 0.02926434576511383, 0.001501668244600296, -0.0035004285164177418, -0.021130740642547607, 0.028100421652197838, -0.013724589720368385, 0.015560539439320564, 0.004780397284775972, -0.01837335340678692, 0.01160458754748106, 0.008410727605223656, 0.010108115151524544, 0.003541997168213129, -0.01403635460883379, -0.00985870324075222, -0.034058596938848495, -0.005147587042301893, -0.009623147547245026, -0.014729166403412819, 0.01502014696598053, -0.013683021068572998, -0.012089555151760578, -0.00796040054410696, 0.02728290483355522, -0.010364455170929432, -0.005078305955976248, 0.002542617032304406, -0.02291819453239441, -0.000125139020383358, 0.004160331096500158, -0.031924739480018616, -0.03017885610461235, -0.008480008691549301, -0.01834564097225666, 0.009082755073904991, -0.02762931026518345, 0.011632299982011318, 0.007447720505297184, -0.00979635026305914, 0.007232948672026396, -0.014521322213113308, 0.0036095462273806334, -0.004648763220757246, -0.008362230844795704, 0.028266696259379387, 0.0008586528711020947, 0.019939105957746506, -0.022350089624524117, -0.001701717497780919, -0.011750077828764915, -0.013738445937633514, -0.035859908908605576, -0.012720013968646526, -0.023458587005734444, 0.0005637751310132444, -0.005473208613693714, 0.01683531142771244, 0.018899889662861824, -0.0016410965472459793, -0.015214134007692337, -0.01773596741259098, 0.008902624249458313, -0.0007291837828233838, 0.002539152977988124, -0.015103284269571304, 0.002696767682209611, 0.0069488962180912495, 0.005147587042301893, 0.007967328652739525, -0.015408121049404144, -0.013246550224721432, -0.02836368978023529, 0.0035316050052642822, -0.007745629176497459, -0.01575452648103237, 0.010156611911952496, 0.012186548672616482, -0.006498569156974554, 0.03198016434907913, -0.007662491872906685, 0.0061002024449408054, 0.01470145396888256, 0.0165304746478796, -0.02653466910123825, -0.04381338134407997, 0.00818902812898159, -0.020382504910230637, 0.0013224033173173666, -0.018276359885931015, 0.022530220448970795, 0.002466407837346196, 0.00812667515128851, -0.024968914687633514, -0.029652319848537445, -0.01774982362985611, -0.02987401932477951, -0.014355047605931759, 0.00629072543233633, 0.004042553249746561, 0.014978578314185143, 0.0036234024446457624, -0.013710733503103256, -0.03990592435002327, 0.009152036160230637, -0.022419370710849762, -0.031148791313171387, -0.012761582620441914, 0.0004039955383632332, 0.013669164851307869, -0.005729548633098602, 0.005237652454525232, -0.023153750225901604, 0.006841510534286499, -0.011493737809360027, 0.010752430185675621, 0.008071250282227993, -0.02032708004117012, -0.0245809406042099, -0.0418735072016716, -0.006051705684512854, 0.01805466040968895, 0.03175846487283707, 0.016419624909758568, -0.02081204764544964, 0.016294918954372406, 0.04251089319586754, -0.01640576869249344, -0.006252620834857225, -0.00796040054410696, -0.04749913513660431, -0.020451785996556282, 0.006394647527486086, -0.005556345917284489, -0.00018987356452271342, -0.015518970787525177, 0.0039213113486766815, 0.058916665613651276, -0.006120986770838499, 0.004600266460329294, -0.015505114570260048, 0.03325493633747101, -0.02762931026518345, 0.021768128499388695, -0.0002111991634592414, 0.01819322258234024, -0.006425824016332626, 0.011937136761844158, -0.007710988633334637, -0.006373863201588392, 0.012498313561081886, 0.007544714026153088, -0.002797225257381797, -0.004759612958878279, -0.023112181574106216, -0.017417272552847862, 0.017652830109000206, -0.004617586731910706, -0.02243322692811489, 0.049217306077480316, -0.029929444193840027, -0.015338839963078499, -0.004617586731910706, -0.026728656142950058, -0.043896518647670746, -0.02003609947860241, -0.01100877020508051, 0.0024092509411275387, 0.0337260477244854, -0.013149556703865528, -0.010911776684224606, -0.010724717751145363, -0.018595052883028984, 0.050436656922101974, 0.012235045433044434, 0.04325913265347481, 0.016281062737107277, -0.009623147547245026, -0.009955696761608124, -0.01562982052564621, -0.017694398760795593, 0.0024681398645043373, 0.01715400442481041, 0.004579482134431601, -0.0006295921630226076, 0.00812667515128851, 0.0014843479730188847, 0.007468504831194878, -0.03827089071273804, -0.026202119886875153, 0.007891119457781315, 0.01806851662695408, -0.0008625499322079122, -0.011216613464057446, -0.0009361611446365714, -0.03622017055749893, 0.020534923300147057, 0.004901639185845852, 0.006657915655523539, -0.022987475618720055, -0.0010565370321273804, -0.005559809971600771, 0.009048114530742168, 0.013419752940535545, 0.040571022778749466, 0.020091524347662926, -0.01032981462776661, -0.02489963360130787, -0.02293205074965954, -0.00963007565587759, -0.029319770634174347, 0.001027092570438981, 0.021906690672039986, -0.014050210826098919, -0.009927984327077866, -0.01532498374581337, 0.0036234024446457624, -0.0022516364697366953, 0.018248647451400757, -0.0182209350168705, 0.0333934985101223, 0.008854127489030361, 0.01258145086467266, 0.0003057029389310628, 0.015449689701199532, 0.009893343783915043, 0.02837754599750042, 0.012629948556423187, 0.005459352396428585, -0.027241336181759834, -0.015657532960176468, 0.005684515926986933, 0.010516873560845852, -0.0024941202718764544, -0.011154260486364365, -0.004291965160518885, -0.018733615055680275, -0.011445241048932076, -0.0002483295102138072, 0.003976736217737198, -0.03563820943236351, -0.01820707879960537, -0.007496217265725136, -0.03064996749162674, 0.023915842175483704, -0.006865758914500475, 0.014029426500201225, -0.022793488577008247, 0.01761126145720482, -0.047720834612846375, 0.026146695017814636, -0.028793232515454292, 0.009650859981775284, -0.03987821191549301, 0.005431639961898327, 0.0022672247141599655, -0.022211527451872826, 0.02078433521091938, -0.019925249740481377, -0.010773214511573315, 0.010669292882084846, 0.020437929779291153, 0.009470729157328606, -0.007406151853501797, 0.00941530428826809, 0.012588378973305225, -0.01985596865415573, 0.0043751029297709465, -0.008085106499493122, -0.021629566326737404, 0.03583219647407532, 0.018775183707475662, -0.0039975205436348915, -0.0032925852574408054, -0.02397126704454422, 0.03760579228401184, 0.0030864737927913666, 0.0019208190497010946, 0.005892359185963869, -0.05963718891143799, 0.01160458754748106, -0.009983409196138382, 0.010489161126315594, 0.00652281753718853, -0.002530492842197418, -0.015200277790427208, -0.027504604309797287, -0.006304582115262747, 0.006547065917402506, -0.0004013974976260215, -0.0189830269664526, 0.02413754165172577, 0.017223285511136055, -0.024844208732247353, -0.004174187313765287, 0.0008019289816729724, -0.01605936326086521, 0.01281700748950243, -0.013773086480796337, -0.02884865738451481, 0.003900527022778988, -0.0008092900970950723, 0.012477529235184193, -0.01756969280540943, -0.03211872652173042, -0.015366552397608757, -0.0032458205241709948, -0.033587485551834106, -0.014285766519606113, 0.010600010864436626, 0.02171270363032818, 0.040598735213279724, 0.005258436780422926, 0.0017735966248437762, 0.0064015756361186504, -0.017638973891735077, 0.015574395656585693, -0.02929205819964409, 0.019911393523216248, 0.0024716039188206196, -0.00015599076868966222, -0.001663612900301814, -0.019038451835513115, -0.03530566021800041, -0.005431639961898327, 0.007329942658543587, -0.019204726442694664, -0.010205108672380447, 0.005230724345892668, -0.02532917819917202, 0.018013091757893562, -0.022183815017342567, 0.013433609157800674, 0.011216613464057446, -0.000718791619874537, 0.01820707879960537, -0.007219092454761267, -0.007565498352050781, -0.014382760040462017, -0.023306168615818024, -0.025689439848065376, -0.024968914687633514, 0.011382888071238995, -0.010793998837471008, 0.021297015249729156, -0.013509818352758884, -0.012248901650309563, -0.022336233407258987, -0.010669292882084846, 0.03926853835582733, 0.00010484181984793395, 0.0026673232205212116, 0.031536765396595, 0.004918959457427263, -0.029208920896053314, 0.0035887619014829397, 0.011542234569787979, 0.016572043299674988, -0.027948003262281418, 0.028793232515454292, -0.0022014076821506023, 0.0230567567050457, -0.022807344794273376, 0.023624861612915993, -0.0015501650050282478, 0.023749567568302155, -0.005144122987985611, 0.004673011600971222, -0.031536765396595, 0.011569947004318237, 0.022336233407258987, -0.023611005395650864, -0.0022533684968948364, 0.010967201553285122, 0.01388393621891737, 0.015435833483934402, -0.0036441870033740997, -0.01417491678148508, 0.017500411719083786, 0.011646156199276447, 0.006055169738829136, 0.01062079519033432, -0.011507594026625156, -0.008937264792621136, 0.019772831350564957, -0.04409050568938255, 0.011750077828764915, 0.17347992956638336, -0.009650859981775284, 0.015200277790427208, 0.03308866173028946, -0.00993491243571043, 0.002194479573518038, 0.037716642022132874, -0.007170595694333315, 0.02201754041016102, -0.0021459825802594423, -0.014784591272473335, 0.021768128499388695, 0.0033029774203896523, 0.013218837790191174, -0.014299622736871243, -0.008085106499493122, -0.03940710052847862, 0.00035246770130470395, -0.01878903992474079, -0.04522671550512314, -0.0019156229682266712, -0.018234791234135628, -0.019371001049876213, -0.009962624870240688, 0.022253096103668213, 0.0016835312126204371, -0.018692046403884888, -0.013191125355660915, 0.0403493233025074, -0.00019052307470701635, -0.03261755034327507, -0.006439680233597755, 0.0021251982543617487, -0.0008612509118393064, -0.0049605281092226505, 0.0008339714840985835, 0.014937009662389755, 0.008230596780776978, 0.023929698392748833, -0.0016540867509320378, -0.015200277790427208, 0.008251381106674671, -0.014992434531450272, -0.0006824190495535731, -0.016419624909758568, 0.04614122584462166, -0.011112691834568977, -0.007967328652739525, 0.006744517013430595, 0.014368903823196888, -0.008971905335783958, 0.021740416064858437, 0.040127623826265335, 0.01281700748950243, -0.014964722096920013, -0.0013379916781559587, 0.0013899524929001927, 0.015255702659487724, -0.0038693505339324474, 0.006876151077449322, -0.026008132845163345, 0.023846561089158058, -0.008369158953428268, 0.031924739480018616, -0.025592446327209473, 0.0028838266152888536, 0.0029860162176191807, -0.016572043299674988, 0.01447975356131792, -0.02485806494951248, -2.4600209144409746e-05, -0.02488577738404274, -0.011625371873378754, 0.007461576722562313, 0.005029809195548296, 0.0009093147236853838, 0.017417272552847862, -0.020562635734677315, -0.011708509176969528, -0.005760725121945143, 0.0013743642484769225, -0.01547740213572979, 0.004485952667891979, 0.004458240233361721, 0.0025183686520904303, -0.039046838879585266, -0.00979635026305914, -0.0024092509411275387, 0.021491004154086113, 0.010724717751145363, -0.02926434576511383, -0.01244288869202137, 0.014216485433280468, -0.013786942698061466, 0.0027643167413771152, -0.0034831082448363304, 0.011618443764746189, 0.002975624054670334, 0.011950992979109287, 0.003952487837523222, 0.004828894045203924, -0.013329687528312206, 0.039989061653614044, 0.029208920896053314, -0.020146949216723442, 0.0038347099907696247, 0.010593082755804062, -0.003928239457309246, 0.012990210205316544, -0.03278382495045662, 0.010586154647171497, -0.013135700486600399, 0.0003150125849060714, -0.008001969195902348, 0.004108370281755924, 0.01639191247522831, -0.0222946647554636, -0.02882094494998455, -0.005220332182943821, 0.015657532960176468, 0.027795584872364998, -0.033781472593545914, -0.0074546486139297485, -0.009837918914854527, -0.013627596199512482, -0.03818775340914726, -0.029929444193840027, 0.028876369819045067, -0.006734124850481749, -0.021463291719555855, 0.04370253160595894, -0.035998471081256866, 0.01348903402686119, -0.016904592514038086, -0.016724461689591408, -0.0006997393211349845, -0.0012981549371033907, -0.0263683944940567, 0.020604204386472702, 0.011805502697825432, 0.0037585007958114147, 0.010426808148622513, 0.008964977227151394, 0.011888640001416206, -0.007773341611027718, -0.02575872093439102, 0.014091779477894306, -0.017846817150712013, 7.166266004787758e-05, -0.014812303707003593, -0.015962369740009308, 0.020825903862714767, 0.023749567568302155, 0.005473208613693714, 0.006917719729244709, 0.003373990533873439, -0.01927400752902031, -0.01449360977858305, 0.006602490786463022, 0.02004995569586754, -0.022377802059054375, 0.020853616297245026, 0.037300955504179, -0.016267206519842148, -0.021629566326737404, -0.011874783784151077, -0.1773596704006195, 0.011923280544579029, 0.0035229448694735765, 0.0016921913484111428, -0.005383143201470375, 0.029929444193840027, 0.026659375056624413, 0.012983282096683979, 0.002236048225313425, -0.017971523106098175, 0.042261481285095215, 0.013877008110284805, -0.035111673176288605, -0.008549289777874947, -0.003966344054788351, -0.000616601959336549, -0.028793232515454292, 0.016281062737107277, 0.05625626817345619, 0.007392295636236668, 0.01409870758652687, -0.003311637556180358, 6.625006790272892e-05, -0.015241846442222595, 0.013059491291642189, 0.02441466599702835, 0.01287936046719551, 0.019329432398080826, 0.006841510534286499, -0.00757935456931591, -0.0037307883612811565, 0.005615234840661287, 0.027698591351509094, -0.024373097345232964, 0.035277947783470154, 0.02243322692811489, -0.018899889662861824, 0.0006681298254989088, 0.008292949758470058, 0.01326040644198656, 0.012512169778347015, -0.010419880039989948, 0.02929205819964409, 0.0005741672939620912, -0.009824062697589397, 0.01515870913863182, -0.00716366758570075, -0.004052945412695408, -0.008819486945867538, -0.023735711351037025, 0.0005637751310132444, 0.0007300497964024544, 0.010586154647171497, 0.0034450036473572254, 0.0267009437084198, 0.02700578048825264, 0.004576018080115318, -0.008708636276423931, 0.011112691834568977, -0.02198982797563076, -0.00955386646091938, 0.0004260788846295327, 0.011743149720132351, -0.0003399105044081807, 0.01608707569539547, -0.02136629819869995, -0.028308264911174774, 0.005348502658307552, -0.029181208461523056, 0.006921183783560991, -0.0018601980991661549, 0.01562982052564621, 0.027061205357313156, -0.021310871466994286, -0.015241846442222595, -0.0016263743164017797, -0.038132328540086746, 0.024664077907800674, -0.009269814006984234, -0.015421977266669273, -0.04564240202307701, 0.028405258432030678, -0.018234791234135628, 0.0022256560623645782, 0.01062079519033432, 0.011369031853973866, 0.0024941202718764544, -0.023139894008636475, -0.01281700748950243, -0.017417272552847862, 0.022114533931016922, -0.027837153524160385, -0.020521067082881927, -0.009713212959468365, 0.016184069216251373, -0.000785907672252506, 7.696699321968481e-05, -0.008937264792621136, -0.013835439458489418, -0.02000838704407215, 0.009429160505533218, -0.02259950153529644, -0.004326605703681707, 0.01820707879960537, 0.03788291662931442, 0.004880854859948158, -0.007482361048460007, 0.030705392360687256, 0.0327284000813961, 0.022821201011538506, -0.01131360698491335, 0.016752174124121666, 0.0027660487685352564, -0.004939743783324957, -0.004080657847225666, 0.02185126580297947, -0.020257798954844475, -0.01944028213620186, 0.02065962925553322, -0.035859908908605576, 0.06323980540037155, 0.0032198401167988777, 0.0205072108656168, -0.0018307536374777555, -0.0019069628324359655, -0.04533756524324417, -0.09394519776105881, -0.009117395617067814, 0.010142755694687366, 0.03325493633747101, -0.04198435693979263, 0.005746868904680014, -0.012761582620441914, 0.026008132845163345, 0.011507594026625156, 0.008064322173595428, -0.019301719963550568, -0.04278802126646042, -0.012269685976207256, 0.000389922788599506, -0.004818501882255077, -0.00917282048612833, -0.005951248109340668, -0.006692556198686361, -0.019024595618247986, 0.01957884430885315, 0.02351401187479496, -0.03353206068277359, 0.013953217305243015, 0.0038173897191882133, -0.005251508671790361, -0.003983664326369762, -0.030428268015384674, -0.002899414859712124, 0.03125964105129242, 0.01732027903199196, -0.017541980370879173, -0.02258564531803131, 0.009664716199040413, -0.001962387701496482, -0.012034130282700062, -0.007281445898115635, -0.03461284562945366, 0.004246932454407215, 0.015269558876752853, -0.03774435445666313, 0.003966344054788351, -0.015297271311283112, 0.04021076112985611, 0.012158836238086224, -0.006941968109458685, 0.01227661408483982, -0.016294918954372406, 0.004070265684276819, 0.005733012687414885, -0.02638225071132183, -0.011708509176969528, 0.001962387701496482, -0.037716642022132874, -0.02139401063323021, 0.018927602097392082, -0.010981057770550251, 0.02534303441643715, 0.006145235151052475, -0.011369031853973866, -0.007981184870004654, -0.018872177228331566, 0.016197925433516502, -0.013537530787289143, 0.022031396627426147, 0.01593465730547905, -0.012117267586290836, 0.017694398760795593, -0.03561049699783325, 0.04367481917142868, 0.00451712915673852, -0.021962115541100502, 0.01804080419242382, -0.01712629199028015, 0.00046418351121246815, -0.003051833249628544, 0.031536765396595, -0.014812303707003593, -0.008694780059158802, 0.03322722390294075, -0.024303816258907318, -0.0015129264211282134, -0.017819104716181755, -0.008819486945867538, 0.0005196083802729845, 0.010121971368789673, 0.0016021259361878037, 0.015200277790427208, -0.016779886558651924, 0.0004793387488462031, -0.02185126580297947, 0.019066164270043373, 0.012491385452449322, 0.0017450181767344475, -0.05819614231586456, 0.024927346035838127, 0.025661727413535118, 0.007371511310338974, 0.014659885317087173, 0.0013561779633164406, -0.0006871821242384613, -0.02990173175930977, -0.014244197867810726, -0.07759485393762589, 0.04084814712405205, 0.01517256535589695, 0.002300133230164647, 0.004298893269151449, -0.009637003764510155, -0.01562982052564621, -0.009235173463821411, -0.033781472593545914, 0.017999235540628433, -0.015893088653683662, 0.024636365473270416, -0.02049335464835167, -0.013759230263531208, -0.009754781611263752, 0.018123941496014595, 0.026299113407731056, -0.021615710109472275, 0.018581196665763855, -0.003987128380686045, 0.004662619438022375, 0.011874783784151077, 0.018775183707475662, 0.026132838800549507, -0.027116630226373672, 0.017029298469424248, 0.003924775402992964, 0.00667523592710495, -0.0037792851217091084, -0.003311637556180358, 0.01099491398781538, -0.03308866173028946, 0.006502033211290836, 0.025855714455246925, 0.01712629199028015, 0.006155627314001322, -0.016156356781721115, -0.008757133968174458, 0.023541724309325218, 0.04198435693979263, -0.010773214511573315, -0.012907072901725769, -0.009900271892547607, -0.015685245394706726, -0.00647778483107686, 0.02016080543398857, -0.01116118859499693, 0.02004995569586754, 0.027989571914076805, -0.01564367674291134, 0.014507465995848179, 0.017347991466522217, -0.002104413928464055, -0.01956498809158802, 0.003554121358320117, -0.021324729546904564, 0.02171270363032818, -0.0002589381765574217, -0.004607194568961859, -0.012248901650309563, 0.011957921087741852, 0.009837918914854527, 0.024788783863186836, 0.008861055597662926, 0.027684735134243965, -0.016281062737107277, -0.001551897032186389, -0.009255957789719105, -0.009560794569551945, -0.028599245473742485, -0.003987128380686045, -0.0021113420370966196, 0.007773341611027718, 0.010662364773452282, 0.027670878916978836, 0.011791646480560303, 0.003606082173064351, -0.0008491267217323184, -0.021213877946138382, 0.006197195965796709, 0.003233696334064007, -0.0030119966249912977, -0.04106984660029411, 0.018013091757893562, 0.0205072108656168, -0.004205363802611828, 0.009235173463821411, 0.00539007131010294, 0.014410472474992275, 0.008334518410265446, 0.03400317206978798, -0.0033722585067152977, 0.018747471272945404, -0.021920546889305115, 0.0018463418819010258, 0.00849386490881443, -0.0008092900970950723, -0.010066546499729156, 0.02805885300040245, 0.02683950588107109, -0.020368648692965508, 0.016627468168735504, 0.009145108051598072, -0.013980929739773273, -0.015408121049404144, -0.005951248109340668, -0.0345851331949234, -0.01250524166971445, -0.0018931066151708364, 0.01835949718952179, 0.019966818392276764, 0.010537657886743546, 0.02246093936264515, 0.016890736296772957, -0.003173075383529067, -0.007932688109576702, 0.003115918254479766, -0.02124159038066864, -0.010925632901489735, 0.01485387235879898, -0.0015709493309259415, 0.020715054124593735, 0.03979507461190224, 0.004291965160518885, 0.017514267936348915, 0.01594851352274418, 0.032534413039684296, 0.010135827586054802, 0.013953217305243015, 0.004503272939473391, 0.0022689567413181067, -0.007766413502395153, -0.04131925851106644, 0.003917847294360399, -0.0104683768004179, -0.031786177307367325, -0.006793013773858547, 0.012976353988051414, -0.009754781611263752, 0.05298620089888573, 0.0015501650050282478, -0.009519225917756557, -0.00477693323045969, 0.009290598332881927, 0.02350015565752983, 0.026617806404829025, -0.008715564385056496, 0.001411602832376957, -0.008722493425011635, -0.002100949874147773, -0.032534413039684296, 0.025107476860284805, -0.00520301191136241, -0.013087203726172447, 0.007246804889291525, -0.015227990224957466, 0.04774854704737663, -0.022821201011538506, -0.0030570293311029673, 0.026784081012010574, 0.006896935403347015, 0.03137049078941345, -0.00765556376427412, -0.00857007410377264, 0.0019797079730778933, 0.007433864288032055, 0.014008642174303532, -0.00652281753718853, -0.05190541595220566, 0.004046017304062843, 0.008424583822488785, -0.0025945778470486403, -0.018082372844219208, 0.00850772112607956, -0.025259897112846375, 0.0005685382056981325, -0.008119747042655945, 0.023624861612915993, 0.025869570672512054, -0.0006828520563431084, -0.017985379323363304, -0.011569947004318237, -0.012463673017919064, 0.014743022620677948, -0.015809951350092888, -0.011278966441750526, -0.014632172882556915, -0.03156447783112526], "454956ef-4506-409a-8b25-5347b1d44364": [-0.005866676103323698, -0.0037729276809841394, 0.0021303279791027308, -0.0018446585163474083, -0.013008412905037403, 0.036231253296136856, -0.007009353954344988, -0.0023619988933205605, 0.0012262886157259345, -0.04361685365438461, 0.014645786955952644, -0.0009711020975373685, 0.001268093823455274, -0.0008247835794463754, -0.011461617425084114, -0.011371039785444736, 0.029542407020926476, -0.008277447894215584, 0.03882317990064621, -0.02303471602499485, 0.004511487670242786, 0.0034855161793529987, -0.02251911722123623, 0.010785765014588833, -0.028985003009438515, 0.027089828625321388, 0.010639446787536144, -0.019453395158052444, 0.0014657980063930154, -0.010848472826182842, -0.009399223141372204, 0.009636119939386845, 0.011398909613490105, 0.007322893477976322, -0.005232628900557756, -0.009566443972289562, 0.02115347795188427, -0.023745406419038773, 0.011935411021113396, -0.0023219354916363955, 0.010534933768212795, 0.0030361092649400234, -0.009141423739492893, 0.020094409584999084, -0.02628159336745739, 0.015454023145139217, -0.015802400186657906, -0.003281715326011181, -0.029263705015182495, 0.033834416419267654, 0.02327161282300949, 0.004469682462513447, -0.022853558883070946, -0.003950600046664476, -0.006619171239435673, 0.003752024844288826, 0.013997805304825306, 0.02119528315961361, -0.010249263606965542, 0.03690013661980629, 0.008235642686486244, 0.017446741461753845, -0.002689473796635866, 0.011963280849158764, -0.031353969126939774, -0.002109425375238061, -0.010952986776828766, -0.003908794838935137, 0.008430734276771545, -0.028107091784477234, 0.041164278984069824, 0.03333275392651558, -0.015426152385771275, -0.013022348284721375, -0.0041004023514688015, -0.02508317492902279, -0.043923426419496536, -0.023898690938949585, -0.03129822760820389, 0.026811126619577408, 0.005786549299955368, -0.005744743626564741, 0.0009240711224265397, -0.017209844663739204, 0.03756902366876602, -0.002407287945970893, 0.011175948195159435, 0.02480447292327881, -0.02532007172703743, -0.05264679715037346, 0.003745057387277484, 0.01583027094602585, 0.016415543854236603, 0.003985438030213118, 0.006904840935021639, 0.01574666053056717, -0.02771690860390663, 0.03670504689216614, -0.005047989077866077, -0.04431360960006714, -0.027354596182703972, 0.006674911826848984, -0.028260378167033195, -0.004626452457159758, -0.012095664627850056, 0.0061593130230903625, -0.0028445017524063587, -0.010813635773956776, 0.024860214442014694, 0.004563744179904461, -0.01995505951344967, -0.004013307858258486, -0.004285042639821768, -0.03781985491514206, -0.007810621988028288, -0.025069240480661392, 0.0561027005314827, -0.006842132657766342, -0.012646100483834743, -0.006458917632699013, 0.011433747597038746, 0.015523698180913925, 0.005629779305309057, -0.013210472650825977, 0.013579752296209335, 0.02720130980014801, 0.021097736433148384, -0.02732672542333603, -0.016457349061965942, -0.004643870983272791, 0.040077339857816696, 0.004682192578911781, 0.02094445191323757, -0.011217753402888775, 0.003661446738988161, 0.00036427215673029423, -0.0380428172647953, -0.0008909752941690385, -0.017892664298415184, -0.03202285245060921, 0.03492135554552078, 0.02335522323846817, -0.0011757737956941128, -0.010681251995265484, -0.0020711037795990705, 0.018812380731105804, 0.005305788479745388, -0.0007764461915940046, -0.009176261723041534, -0.0012019021669402719, 0.011391942389309406, -0.015676984563469887, 0.012778484262526035, -0.012123534455895424, 0.02183629758656025, -0.004197948146611452, 0.023299483582377434, 0.0075319199822843075, 0.009378320537507534, 0.0053580449894070625, 0.010562803596258163, 0.023829016834497452, -0.005633262917399406, -0.005431204102933407, -0.0039645349606871605, 0.024943824857473373, -0.0028061801567673683, -0.01846400462090969, -0.017168039456009865, 0.0007019805489107966, -0.0006736748619005084, 0.02147398516535759, -0.03550662845373154, 0.0020432337187230587, -0.019481265917420387, 0.01658276654779911, 0.042446307837963104, 0.02159940078854561, -0.01606716774404049, 0.011245623230934143, -0.014506435953080654, -0.022365830838680267, 0.013301050290465355, 0.01598355732858181, -0.03740180283784866, -0.009852114133536816, -0.007929069921374321, 0.008089323528110981, 0.01634586974978447, 0.0031876536086201668, 0.005594941787421703, 0.018491873517632484, 0.0021181348711252213, -0.017098363488912582, -0.625184178352356, -0.013496141880750656, -0.004967862274497747, -0.011141110211610794, -0.0024438677355647087, 0.0048215435817837715, 0.015189255587756634, -0.0032050723675638437, -0.001545053906738758, 0.00022862269543111324, -0.03642634302377701, 0.014283474534749985, -0.009789405390620232, -0.0056890035048127174, -0.010862408205866814, -0.01805988699197769, -0.012046891264617443, -0.04155445843935013, -0.0014144123997539282, -0.03798707574605942, -0.023508509621024132, 0.0040446617640554905, 0.015495828352868557, -0.0019909769762307405, 0.003081398317590356, -0.00028871779795736074, 0.04542841762304306, 0.004654322285205126, -0.005981640424579382, 0.015802400186657906, -0.02435855008661747, 0.04239056631922722, 0.021961713209748268, 0.012548554688692093, 0.04333815351128578, 0.0008043163688853383, -0.047295719385147095, 0.02047065831720829, 0.009057813324034214, 0.006232472136616707, -0.03536727651953697, -0.026351269334554672, 0.003905310994014144, 0.004772770684212446, 0.017739377915859222, 0.020763294771313667, 0.030071940273046494, -0.013997805304825306, 0.007831525057554245, 0.011364071629941463, 0.007023288868367672, -0.00042698008473962545, -0.010158685967326164, 0.001966590527445078, -0.006748070940375328, -0.0003017819544766098, 0.02251911722123623, -0.03224581480026245, 0.018199237063527107, 0.007740946486592293, 0.006141894031316042, 0.012945705093443394, -0.003957567736506462, -0.006991934962570667, -0.01942552626132965, 0.014994164928793907, -0.01758609339594841, 0.007483147084712982, 0.027061959728598595, -0.029904719442129135, -0.001968332566320896, 0.008786078542470932, 0.005772613920271397, -0.02127889357507229, 0.006469368934631348, -0.0026511522009968758, 0.049581076949834824, -0.01598355732858181, -0.008124161511659622, 0.018408263102173805, 0.008939364925026894, -0.017683638259768486, -0.038405127823352814, -0.02095838636159897, 0.02835792303085327, -0.006431047338992357, -0.017530351877212524, 0.028302183374762535, 0.000597467296756804, -0.010646414011716843, 0.014743332751095295, 0.009636119939386845, -0.0062150536105036736, -0.013551882468163967, 0.0016443415079265833, 0.009468898177146912, -0.03709523007273674, -0.0062742773443460464, -0.002146004932001233, -0.01746067777276039, 0.007364698685705662, -0.01722378097474575, 0.009273807518184185, -0.004880767781287432, 0.026866868138313293, -0.007002386264503002, -0.022226480767130852, -0.01702868938446045, 0.0328589603304863, -0.028176765888929367, 0.011454650200903416, -0.019174693152308464, -0.0012506749480962753, -0.009900886565446854, 0.013426465913653374, -0.02604469656944275, 0.0054381717927753925, -0.012492815032601357, 0.0016896305605769157, -0.015593374148011208, 0.013482206501066685, -0.013078088872134686, 0.012994478456676006, -0.013356790877878666, 0.01874270662665367, 0.029375184327363968, -0.0006789005128666759, 0.0016495671588927507, -0.009461930952966213, -0.010137783363461494, 0.000803445465862751, -0.010548868216574192, 0.018519744277000427, -0.00042937518446706235, 0.02608650177717209, -0.02235189639031887, 0.024734796956181526, 0.014199864119291306, 0.023174066096544266, -0.018241042271256447, -0.008667630143463612, 0.006476336624473333, 0.012764548882842064, 0.0020902645774185658, -0.009204131551086903, -0.048856452107429504, 0.002630249597132206, -0.000750753388274461, -0.02207319438457489, 0.02095838636159897, -0.0061697643250226974, -0.0011670644162222743, 0.004605549853295088, 0.025431552901864052, 0.016039296984672546, -0.015454023145139217, -0.0021303279791027308, 0.021139543503522873, 0.007817589677870274, -0.0030517862178385258, 0.011956313624978065, 0.010019334964454174, -0.026769321411848068, -0.006127959117293358, 0.024149524047970772, -0.008827883750200272, -0.0068804542534053326, 0.03656569495797157, -0.006957097444683313, -0.03400163725018501, 0.00048076084931381047, -0.013865421526134014, 0.002386385342106223, 0.04030030220746994, -0.01638767495751381, -0.014450696296989918, 0.0036788657307624817, -0.013865421526134014, -0.00014904022100381553, -0.0020240729209035635, -0.002510059392079711, 0.017126234248280525, -0.004211883060634136, -0.005204758606851101, 0.01766970381140709, 0.012046891264617443, -0.0022313573863357306, 0.009225034154951572, 0.017697572708129883, 0.02183629758656025, -0.007601595483720303, 0.026699647307395935, 0.0011705481447279453, 0.006981483660638332, -0.012506749480962753, -0.003884408390149474, 0.021850232034921646, 0.027410335838794708, 0.005884094629436731, 0.009064780548214912, 0.02320193685591221, -0.005532233510166407, 0.017209844663739204, -0.02187810279428959, 0.007580692879855633, -0.04002159833908081, 0.0025518645998090506, -0.02271420881152153, 0.024971693754196167, -0.02166907675564289, 0.021850232034921646, -0.010360744781792164, -0.023968366906046867, -0.011733352206647396, 0.012757581658661366, 0.011203818023204803, 0.027898063883185387, 0.0033322300296276808, -0.010862408205866814, -0.0027417303062975407, 0.016234388574957848, -0.012046891264617443, -0.008486473932862282, 0.011956313624978065, -0.028065286576747894, -0.005605393089354038, -0.005229145288467407, 0.02876204065978527, 0.012039924040436745, -0.007176575250923634, 0.015035970136523247, -0.006957097444683313, -0.01686146855354309, 0.004887735471129417, 0.011371039785444736, -0.014854813925921917, 0.029347315430641174, -0.017084429040551186, 0.03124248795211315, -0.02487414889037609, 0.004041178151965141, 0.025779930874705315, 0.001118291518650949, -0.008925429545342922, -0.004609033465385437, 0.011984183453023434, 0.011977216228842735, 0.014896619133651257, -0.023619990795850754, 0.014381020329892635, -0.003340939525514841, -0.004131756257265806, -0.011245623230934143, -0.010047204792499542, -0.0033566164784133434, -0.043561115860939026, 0.0025013498961925507, 0.011865735054016113, 0.031994983553886414, 0.017098363488912582, 0.0031893954146653414, -0.013036283664405346, 0.0022923233918845654, 0.029988329857587814, 0.053538642823696136, 0.007225348148494959, 0.007197477854788303, 0.009190197102725506, -0.04194464161992073, -0.020902646705508232, -0.012729711830615997, -0.03093591518700123, -0.013579752296209335, -0.006451949942857027, 0.013294083066284657, 0.007894232869148254, -0.011001759208738804, -0.008695500902831554, 0.03653782606124878, 0.01835252344608307, -0.02820463664829731, -0.04063474386930466, 0.03252451866865158, -0.0003655785694718361, 0.002159940078854561, 0.005006183870136738, -0.01882631704211235, 0.002893274649977684, -0.02623978815972805, 0.03798707574605942, -0.004978313576430082, 0.019327979534864426, 0.02579386532306671, -0.0016138585051521659, -0.011830898001790047, 0.005187340080738068, 0.0404675230383873, -0.016317998990416527, 0.025431552901864052, 0.013510077260434628, -0.005208242684602737, 0.013656395487487316, -0.02984897792339325, 0.034308210015296936, 0.014171994291245937, -0.006681879051029682, -0.009482833556830883, 0.0043965233489871025, 0.014046577736735344, -0.011155045591294765, -0.013858454301953316, -0.03550662845373154, -0.007713076192885637, -0.00011757738684536889, -0.006842132657766342, 0.0038007977418601513, -0.02091658115386963, 0.01711229979991913, 0.018659094348549843, 0.0056785522028803825, -0.013649427331984043, -0.019537005573511124, -0.012855127453804016, 0.009211099706590176, 0.06956400722265244, 0.0044766501523554325, 0.0008635405683889985, 0.01846400462090969, -0.0064798202365636826, 0.013788778334856033, -0.010054172948002815, -0.014144123531877995, 0.009949658997356892, -0.005563587415963411, -0.0004933895543217659, -0.009378320537507534, 0.020261632278561592, -0.006528593134135008, 0.01799021102488041, 0.005992091726511717, -0.018519744277000427, -0.018659094348549843, -0.002830566605553031, -0.02295110560953617, 0.012311658822000027, -0.014339215122163296, 0.004626452457159758, 0.01799021102488041, -0.020442787557840347, -0.009733665734529495, 0.06042258068919182, -0.008291383273899555, 0.010311972349882126, -0.009886951185762882, -0.01758609339594841, 0.02074936032295227, 0.021041996777057648, 0.02239370159804821, -0.02134856954216957, -0.002666829153895378, 0.012792419642210007, 0.01702868938446045, -0.005497395992279053, 0.013259245082736015, -0.0005565329338423908, 0.029904719442129135, -0.0028357922565191984, -0.0036335766781121492, 0.009559476748108864, 0.004152658861130476, -0.0033601003233343363, 0.011809995397925377, 0.000951070396695286, 0.0033095856197178364, 0.02984897792339325, 0.002422965131700039, -0.010284101590514183, -0.02664390578866005, 0.035395145416259766, 0.0007986552664078772, 0.025069240480661392, 0.003314811270684004, 0.004574195481836796, -0.0046369037590920925, 0.010144750587642193, 0.01610897295176983, -0.003555191680788994, -0.024065913632512093, -0.025417616590857506, -0.041526589542627335, -0.006998902652412653, -0.02283962443470955, -0.010646414011716843, 0.015035970136523247, -0.010862408205866814, -0.0064554340206086636, -0.013308017514646053, 0.02359212003648281, -0.015119580551981926, -0.0012393527431413531, 0.000994617585092783, -0.021083801984786987, -0.0015241513028740883, 0.011705481447279453, -0.02159940078854561, -0.030908046290278435, 0.004305945243686438, -0.023243742063641548, 0.0018464004388079047, -0.016206517815589905, 0.007246250752359629, 0.012430107221007347, -0.020080475136637688, -0.024261005222797394, -2.5692836061352864e-05, 0.006082669831812382, 0.012451009824872017, -0.0011505164438858628, 0.013301050290465355, 0.013182601891458035, 0.001650438061915338, -0.02023376151919365, -0.009608249180018902, -0.01754428818821907, -0.007246250752359629, -0.043449632823467255, -0.018756641075015068, -0.013628524728119373, 0.0008757337927818298, -0.005786549299955368, 0.014025675132870674, 0.020568203181028366, -0.0018185301451012492, -0.026741452515125275, -0.003971502650529146, 0.0061836992390453815, -0.002717343857511878, 0.009301677346229553, -0.0027678587939590216, -0.000619240861851722, 0.006856068037450314, 0.007315926253795624, 0.003894859692081809, -0.015022034756839275, -0.022923234850168228, -0.02820463664829731, 0.003231200622394681, -0.007413471583276987, -0.007650368381291628, 0.014799073338508606, 0.011064467020332813, 0.0025257363449782133, 0.03628699481487274, 0.007019805256277323, 0.013607622124254704, 0.014506435953080654, 0.006451949942857027, -0.01634586974978447, -0.029514536261558533, 0.007012837566435337, -0.021766621619462967, -0.006284728646278381, -0.016192583367228508, 0.0017802086658775806, -0.001016391208395362, -0.006232472136616707, -0.009162326343357563, -0.006995419040322304, -0.008263512514531612, -0.02403804287314415, 0.003111010417342186, 0.019564876332879066, -0.014799073338508606, 0.011419812217354774, 0.005089794285595417, -0.014520371332764626, -0.02508317492902279, -0.005814419128000736, -0.01839432865381241, -0.011412844993174076, -0.014297409914433956, -0.008228674530982971, 0.01938372105360031, -0.02387082204222679, 0.016499154269695282, -0.017697572708129883, -0.0002421223180135712, -0.00015295945922844112, 0.009482833556830883, 0.023369157686829567, -0.02106986753642559, -0.021738750860095024, -0.049302373081445694, -0.006235956214368343, 0.021724816411733627, 0.035952549427747726, 0.026657840237021446, -0.02739640139043331, -0.013914194889366627, 0.044285740703344345, -0.011851800605654716, 0.007629465777426958, -0.019843578338623047, -0.04422999918460846, -0.029068613424897194, 0.0019317528931424022, -0.016095036640763283, 0.008340155705809593, -0.012005086056888103, -0.002637217054143548, 0.05100245773792267, -0.011977216228842735, 0.002987336367368698, -0.020763294771313667, 0.03550662845373154, -0.03113100677728653, 0.028107091784477234, 0.015718789771199226, 0.03040638193488121, -0.01814349740743637, 0.023606054484844208, -0.003154557663947344, 0.009663989767432213, -0.002142521319910884, -0.001078228116966784, 0.012012054212391376, -0.014464630745351315, -0.014185928739607334, -0.017418870702385902, 0.009364385157823563, 0.004027243237942457, -0.008305317722260952, 0.03865595906972885, -0.02303471602499485, -0.018617289140820503, 0.002757407259196043, -0.02412165328860283, -0.042446307837963104, -0.005852740723639727, -0.007803654298186302, 0.004908638074994087, 0.032385166734457016, -0.02355031482875347, -0.009141423739492893, -0.004305945243686438, -0.013321952894330025, 0.03742967173457146, 0.002327161142602563, 0.04615304246544838, 0.010284101590514183, -0.013677298091351986, -0.024581512436270714, -0.011524325236678123, -0.01778118498623371, 0.002393353031948209, 0.006748070940375328, 0.014325279742479324, -0.010862408205866814, 0.007047675549983978, 0.0021912939846515656, -3.957350054406561e-05, -0.0332491435110569, -0.04102492704987526, 0.019606681540608406, 0.015927815809845924, 0.006012994330376387, -0.009775470942258835, -0.010562803596258163, -0.04771377146244049, 0.012862094677984715, 0.0014544758014380932, 0.02384295128285885, -0.014067480340600014, 0.002640700899064541, -0.018728770315647125, 0.007622498087584972, 0.019286174327135086, 0.03781985491514206, 0.02194777876138687, -0.014506435953080654, -0.020679684355854988, -0.014269539155066013, -0.010123847983777523, -0.02066574990749359, -0.004190980456769466, 0.012771517038345337, -0.0035064187832176685, -0.0009423609590157866, -0.013405563309788704, 0.009482833556830883, 0.010228361003100872, 0.014757268130779266, -0.016917208209633827, 0.032552387565374374, -0.013684265315532684, 0.012318626046180725, -0.0004300283908378333, 0.01775331422686577, 0.017850859090685844, 0.015495828352868557, 0.007253217976540327, -0.007929069921374321, -0.03193924203515053, -0.004445296246558428, -0.007218380458652973, 0.007657336071133614, -0.008374993689358234, -0.022045323625206947, -0.016889337450265884, -0.003321778727695346, -0.007817589677870274, -0.006549495737999678, -0.0020275567658245564, -0.03876744210720062, -0.014408890157938004, -0.009329547174274921, -0.017892664298415184, 0.012478879652917385, 0.004988764878362417, 0.022017452865839005, -0.016959013417363167, 0.015384347178041935, -0.041359368711709976, 0.017014753073453903, -0.023982303217053413, 0.007594627793878317, -0.02884565107524395, 0.014269539155066013, 0.016485219821333885, -0.012095664627850056, 0.015858139842748642, -0.02251911722123623, -0.02391262724995613, 0.02283962443470955, 0.010026302188634872, 0.012290756218135357, -0.005650681909173727, 0.009496768936514854, -0.009510704316198826, -0.026267658919095993, 0.008890592493116856, -0.02019195631146431, -0.004985281266272068, 0.03313766047358513, 0.0032364262733608484, 0.002422965131700039, 0.0004348185902927071, -0.01658276654779911, 0.028093155473470688, -0.012611263431608677, 0.020094409584999084, -0.0015755369095131755, -0.05941925570368767, -0.002029298571869731, -0.007197477854788303, 0.00022535664902534336, 0.014394955709576607, -0.012241982854902744, -0.022742079570889473, -0.024902019649744034, -0.010681251995265484, 0.007929069921374321, -0.0018533678958192468, -0.023647859692573547, 0.004177045542746782, 0.030378511175513268, 0.004912121687084436, -0.0059293839149177074, -0.0035464821849018335, -0.024567576125264168, 0.012228047475218773, -0.02343883365392685, -0.027298854663968086, -0.0051176645793020725, -0.016053231433033943, 0.03060147352516651, -0.017530351877212524, -0.025668449699878693, -0.017809053882956505, 0.00017745475634001195, -0.023578183725476265, -0.009573412127792835, 0.002513543237000704, 0.027870194986462593, 0.030629344284534454, 0.004929540678858757, 0.007455277256667614, 0.007796687074005604, -0.021097736433148384, 0.02098625712096691, -0.021487919613718987, 0.013043250888586044, -0.012186242267489433, 0.008430734276771545, -0.0006318695959635079, -0.013684265315532684, -0.024428226053714752, -0.0003718929074238986, 0.0006453691748902202, -0.011475552804768085, -0.003682349342852831, 0.017600027844309807, -0.02656029537320137, 0.013412531465291977, -0.02074936032295227, 0.032831087708473206, 0.007831525057554245, 0.011419812217354774, 0.021766621619462967, -0.018477939069271088, -0.013565816916525364, -0.018812380731105804, -0.007054642774164677, -0.027814453467726707, -0.01999686472117901, 0.007594627793878317, 0.004723997786641121, 0.031549058854579926, -0.008786078542470932, -0.016053231433033943, -0.0038007977418601513, -0.02299291081726551, 0.04094131663441658, -0.009197164326906204, 0.006127959117293358, 0.037596892565488815, 0.0007163510890677571, -0.02448396570980549, -0.0006131443078629673, 0.01615077815949917, 0.007141737267374992, -0.02403804287314415, 0.02756362222135067, -0.008563117124140263, 0.005960737820714712, -0.023689664900302887, 0.02134856954216957, -0.006072218529880047, 0.015258931554853916, -0.0020449755247682333, 0.010500095784664154, -0.029347315430641174, 0.01839432865381241, 0.011949345469474792, -0.009698827750980854, -0.0074274069629609585, 0.017446741461753845, 0.026504555717110634, 0.005828354507684708, -0.007580692879855633, -0.0029420473147183657, 0.015091710723936558, 0.006100088823586702, -0.007343796081840992, 0.006336985621601343, -0.0026616035029292107, -0.001471894676797092, 0.01707049459218979, -0.04411851614713669, -0.0003699332883115858, 0.16900485754013062, -0.01711229979991913, 0.014464630745351315, 0.025807799771428108, -0.025779930874705315, 0.006525109522044659, 0.033555712550878525, 0.0033496490214020014, 0.019202563911676407, -0.0008374122553505003, -0.005981640424579382, 0.012869061902165413, -0.0037729276809841394, 0.012701841071248055, -0.0035673847887665033, -0.012151405215263367, -0.050054870545864105, -0.007441341876983643, -0.012750614434480667, -0.03932484611868858, -0.0011975474189966917, -0.02615617774426937, -0.008472539484500885, 0.0030483026057481766, 0.021961713209748268, 0.004358201753348112, -0.014123220928013325, -0.007148704957216978, 0.033277012407779694, -0.002663345541805029, -0.013405563309788704, -0.012381333857774734, -0.0015467958291992545, -0.0031667507719248533, 0.017795119434595108, 0.005239596590399742, 0.013976902700960636, 0.0065460121259093285, 0.03333275392651558, 8.665888890391216e-05, -0.014562176540493965, 0.0031075268052518368, -0.022296154871582985, -0.0015319897793233395, -0.022937169298529625, 0.04891218990087509, -0.016513090580701828, -0.025487292557954788, 0.006789876148104668, 0.01626225933432579, -0.017600027844309807, 0.01826891303062439, 0.03570171818137169, 0.014576111920177937, -0.014882683753967285, 0.0065703983418643475, 0.007260185666382313, 0.016805727034807205, -0.006180215626955032, 0.007817589677870274, -0.009740632958710194, 0.030824435874819756, -0.004633419681340456, 0.007364698685705662, -0.01686146855354309, -0.0033931962680071592, 0.003926213830709457, -0.028622690588235855, 0.01790660060942173, -0.02423313446342945, 0.013781811110675335, -0.012583392672240734, -0.009747600182890892, 0.01662457175552845, 0.004891219083219767, -0.009754568338394165, 0.01686146855354309, 0.0037102196365594864, -0.007329861167818308, 0.005636746995151043, 0.012520684860646725, -0.011524325236678123, 0.0033078438136726618, 0.009099618531763554, -0.0029350798577070236, -0.025905346497893333, 0.004215367138385773, -0.005577522795647383, -0.019258303567767143, -0.007511017378419638, -0.029180094599723816, -0.014158058911561966, 0.0065947845578193665, -0.009454963728785515, 0.003562159137800336, 0.002576251048594713, 0.019495200365781784, -0.0012053858954459429, 0.007441341876983643, 0.011607935652136803, -0.0028566948603838682, -0.001246320316568017, 0.04542841762304306, 0.03821003809571266, -0.0324409082531929, -0.009113553911447525, 0.009510704316198826, -0.006371823139488697, 0.014408890157938004, -0.022226480767130852, 0.01634586974978447, -0.007887264713644981, 0.005006183870136738, -0.014799073338508606, 0.013635492883622646, 0.015858139842748642, -0.037596892565488815, -0.031075267121195793, 0.004542841576039791, 0.021529724821448326, 0.014241669327020645, -0.02480447292327881, -0.0017218554858118296, -0.02355031482875347, -0.0009441028232686222, -0.028734169900417328, -0.040439654141664505, 0.027814453467726707, -0.0032590709161013365, -0.011928442865610123, 0.03330488130450249, -0.03709523007273674, 0.011071435175836086, -0.007392568979412317, -0.02536187693476677, -0.0003588287509046495, -0.0077479141764342785, -0.036593563854694366, 0.023062586784362793, -0.006727168336510658, -0.0007890748674981296, 0.0056785522028803825, 0.013238342478871346, 0.008458604104816914, -2.7529982617124915e-05, -0.005089794285595417, 0.021571530029177666, -0.012715776450932026, 0.014311345294117928, -0.022783884778618813, -0.015481892973184586, -0.002379417885094881, 0.01950913667678833, -0.009009039960801601, 0.014603981748223305, -0.000911006995011121, -0.024024108424782753, -0.009838178753852844, -0.007678238674998283, 0.023884756490588188, -0.029626017436385155, 0.017739377915859222, 0.047658033668994904, -0.008493442088365555, -0.012318626046180725, -0.018324652686715126, -0.17892664670944214, 0.021543661132454872, 0.019620617851614952, 0.008967234753072262, 0.0004154400958213955, 0.02876204065978527, 0.009029943495988846, -0.002375934040173888, 0.0023811596911400557, -0.012680938467383385, 0.023731470108032227, 0.005337142385542393, -0.030629344284534454, -0.02403804287314415, -0.0004350363160483539, 0.0009972304105758667, -0.015523698180913925, 0.016972947865724564, 0.0412757582962513, -0.004518455360084772, 0.015495828352868557, -0.010583706200122833, 0.010465257801115513, -0.013064153492450714, -0.003898343537002802, 0.03185563161969185, 0.0012289014412090182, 0.015774529427289963, 0.020122280344367027, -0.010263198986649513, 0.015579438768327236, 0.0043407827615737915, 0.031549058854579926, -0.006821230053901672, 0.032273683696985245, 0.007253217976540327, -0.022769948467612267, -0.001621696981601417, 0.017572157084941864, 0.02715950459241867, 0.01839432865381241, -0.0009702311363071203, 0.033026181161403656, -0.011224720627069473, -0.0011574840173125267, 0.017878729850053787, 0.008584019728004932, -0.001992719015106559, 0.008026615716516972, -0.024902019649744034, 0.0020606524776667356, -0.003804281586781144, 0.020442787557840347, -0.004163110163062811, 0.039436325430870056, 0.026699647307395935, 0.0033566164784133434, -0.0010468742111697793, 0.02010834589600563, -0.02912435308098793, -0.004065564833581448, 0.003027399769052863, 0.015370412729680538, -0.008124161511659622, 0.010716089978814125, -0.027187375351786613, -0.03124248795211315, 0.009859081357717514, -0.035757459700107574, -0.0013935096794739366, 0.0067202006466686726, 0.011942378245294094, 0.03581320121884346, -0.01946733146905899, 0.003755508689209819, -0.010841505602002144, -0.02608650177717209, 0.03012767992913723, -0.010360744781792164, -0.0015764079289510846, -0.047407202422618866, 0.03637060523033142, -0.005901513621211052, -0.011343169026076794, 0.0016365030314773321, 0.009580379351973534, -0.012813322246074677, -0.02920796349644661, -0.007789719384163618, -0.016331933438777924, 0.017418870702385902, -0.028065286576747894, -0.010973889380693436, -0.01966242305934429, 0.01863122545182705, 0.026337333023548126, 0.0004008517717011273, -0.01606716774404049, -0.003555191680788994, -0.02403804287314415, 0.006323050241917372, -0.013245309703052044, -0.009552509523928165, 0.026978347450494766, 0.029988329857587814, 0.012834224849939346, -0.005898030009120703, 0.021655140444636345, 0.033109791576862335, 0.019369784742593765, -0.020122280344367027, 0.008953300304710865, 0.0025640579406172037, 0.0004008517717011273, -0.024456094950437546, 0.014548241160809994, -0.03469839319586754, -0.020414916798472404, 0.015579438768327236, -0.02636520378291607, 0.06605236232280731, -0.011768189258873463, 0.012973575852811337, -0.0004842446360271424, -0.010646414011716843, -0.0472678504884243, -0.08901739865541458, -0.009238969534635544, -0.0006584333605132997, 0.023369157686829567, -0.030880175530910492, 0.003184169763699174, -0.012910868041217327, 0.013983869925141335, 0.011419812217354774, 0.016192583367228508, -0.016331933438777924, -0.030378511175513268, -0.0035499660298228264, 0.0031824279576539993, -0.002436900045722723, -0.007887264713644981, -0.01818530261516571, 0.005856224801391363, -0.021223153918981552, 0.02707589417695999, 0.018115626648068428, -0.017237715423107147, 0.009434061124920845, 0.012799386866390705, 0.002720827702432871, -0.011336201801896095, -0.03854447975754738, 0.0037032521795481443, 0.02611437253654003, 0.00045768084237352014, -0.01570485532283783, -0.011447682045400143, 0.016513090580701828, -0.0022034873254597187, -0.02231009118258953, -0.0063300179317593575, -0.028065286576747894, 0.013614590279757977, 0.019300110638141632, -0.03756902366876602, 0.013419498689472675, -0.014367084950208664, 0.030991656705737114, -0.0005896288203075528, -0.0031824279576539993, 0.0029925622511655092, -0.004814575891941786, 0.008312285877764225, 0.02224041521549225, -0.03514431416988373, -0.0059537701308727264, -0.005570555105805397, -0.04771377146244049, -0.024010172113776207, 0.030155550688505173, -0.014408890157938004, 0.01899353787302971, 0.008960267528891563, -0.014826943166553974, -0.010778797790408134, -0.027382466942071915, -0.0006728039006702602, -0.029626017436385155, 0.028455467894673347, 0.03480987250804901, -0.006995419040322304, 0.010179588571190834, -0.023536378517746925, 0.03305405005812645, 0.011384974233806133, -0.023856885731220245, 0.008876657113432884, -0.015105645172297955, -0.00023929175222292542, -0.0002373321185586974, 0.03104739636182785, -0.01681966334581375, -0.0059851245023310184, 0.015035970136523247, -0.011991151608526707, 0.010632479563355446, -0.014269539155066013, -0.006500722840428352, 0.005365012679249048, 0.007845459505915642, 0.008305317722260952, 0.024651186540722847, -0.018937796354293823, 0.012862094677984715, -0.015035970136523247, 0.017850859090685844, -0.002496124245226383, 0.01999686472117901, -0.05024996027350426, 0.01803201623260975, 0.013503109104931355, 0.025975020602345467, -0.0018777543446049094, -0.010437387973070145, 0.008019648492336273, -0.003468097420409322, -0.010179588571190834, -0.07664303481578827, 0.0344475619494915, -0.003807765431702137, 0.009301677346229553, -0.006762005854398012, -0.007497082464396954, -0.004960894584655762, -0.024456094950437546, -0.022324025630950928, 0.017154105007648468, -0.029068613424897194, 0.030880175530910492, -0.020080475136637688, -0.0038669893983751535, -0.0038809245452284813, 0.0029490150045603514, 0.02564057894051075, -0.022923234850168228, 0.0022121965885162354, -0.009566443972289562, 0.008117194287478924, 0.019843578338623047, 0.005845773499459028, 0.01686146855354309, -0.02010834589600563, 0.005964221432805061, 0.013440401293337345, 0.007385601755231619, -0.003323520766571164, -0.01818530261516571, 0.017377065494656563, -0.03871170058846474, 0.013015381060540676, 0.02996045909821987, 0.004354717675596476, 0.021738750860095024, -0.008925429545342922, -0.011350137181580067, 0.018199237063527107, 0.04038391262292862, 0.003954083658754826, -0.017836924642324448, 0.0010033269645646214, -0.009566443972289562, -0.0045567769557237625, 0.006075702607631683, -0.012882997281849384, 0.014436760917305946, 0.015607308596372604, -0.01674998737871647, 0.027215244248509407, 0.016694245859980583, -0.010346809402108192, -0.027382466942071915, 0.010785765014588833, -0.026671776548027992, 0.02476266771554947, -0.010785765014588833, 0.0012733194744214416, -0.014151091687381268, 0.03394589573144913, -0.0052221775986254215, 0.01718197576701641, -0.004633419681340456, 0.006197634618729353, -0.0046612899750471115, -0.0051977913826704025, 0.0011104530422016978, -0.010186555795371532, -0.03372293710708618, -0.006413628347218037, -0.007720043882727623, -0.0015842464054003358, 0.01794840581715107, 0.03784772381186485, 0.021975647658109665, 0.003926213830709457, -0.0061035724356770515, -0.025863541290163994, -0.0026389590930193663, -0.010451323352754116, -0.011559163220226765, -0.030462123453617096, 0.01714017055928707, 0.02275601401925087, -0.019397655501961708, 0.003748541232198477, 0.012994478456676006, 0.006469368934631348, 0.010172621347010136, 0.01934191584587097, -0.006908324547111988, 0.0032399101182818413, -0.010472225956618786, 0.0017497256631031632, -0.005281401798129082, 0.0006819488480687141, -0.020498527213931084, 0.01963455229997635, 0.012444041669368744, -0.022296154871582985, 0.009308644570410252, 0.014408890157938004, -0.03422459959983826, -0.003001271514222026, -0.010653382167220116, -0.02844153344631195, -0.017474612221121788, 0.011747286655008793, 0.025905346497893333, 0.02904074266552925, -0.0019178177462890744, 0.031019527465105057, 0.022296154871582985, -0.007566757965832949, -0.006284728646278381, -0.008723370730876923, -0.015077775344252586, -0.02335522323846817, 0.03812642768025398, -0.0010320681612938643, 0.0380428172647953, 0.026574229821562767, 0.001865561120212078, 0.013990838080644608, 0.024428226053714752, 0.01982964389026165, 0.009831211529672146, 0.02066574990749359, -0.006242923438549042, -0.0008718144963495433, -0.01746067777276039, -0.03489348292350769, 0.0038530544843524694, -0.018882056698203087, -0.020484592765569687, 0.008075389079749584, 0.006204601842910051, -0.003908794838935137, 0.06097998470067978, -0.005567071493715048, -0.024971693754196167, -0.009531606920063496, 0.010068107396364212, 0.02711769938468933, 0.017920535057783127, -0.011844832450151443, -0.008012681268155575, -0.009169293567538261, -0.005650681909173727, -0.026713581755757332, 0.022853558883070946, -0.01995505951344967, -0.01734919659793377, 0.0025222525000572205, -0.015203190967440605, 0.045846469700336456, -0.031549058854579926, -0.018477939069271088, 0.016373738646507263, -0.0031092686112970114, 0.03550662845373154, -0.0016539219068363309, -0.010242296382784843, 0.01931404508650303, 0.014868748374283314, 0.008221707306802273, -0.012889965437352657, -0.05601909011602402, 0.015523698180913925, 0.014262571930885315, -0.001515441806986928, -0.023243742063641548, 0.013078088872134686, -0.01778118498623371, 0.002412513829767704, 0.00021784476120956242, 0.022769948467612267, 0.02387082204222679, 0.0042606559582054615, 0.004337299149483442, -0.0021878103725612164, -0.005079342983663082, 0.02066574990749359, -0.010200491175055504, -0.025055304169654846, 0.00031266873702406883, -0.03742967173457146], "1292df42-a044-42e6-8efa-55769e419713": [0.003075603162869811, -0.012220076285302639, -0.0062506962567567825, 0.00737595884129405, -0.036227963864803314, 0.023589344695210457, -0.007520047016441822, -0.014834254048764706, 0.0006458252319134772, -0.03526737540960312, 0.01158883236348629, -0.00920794066041708, 0.021846560761332512, 0.0019657788798213005, 0.0031407861970365047, 0.0027496886905282736, 0.025537971407175064, -0.028090395033359528, 0.052557993680238724, -0.017071055248379707, 0.006470259744673967, 0.010525321587920189, -0.020295893773436546, 0.011904453858733177, -0.01128007099032402, 0.010340064764022827, 0.02324627712368965, -0.009948967956006527, -6.298511289060116e-05, -0.0108203599229455, -0.012206354178488255, -0.004624554421752691, 0.005952226929366589, 0.01284446008503437, -0.008761952631175518, -0.00497105298563838, 0.002950383583083749, -0.03781979903578758, 0.011479049921035767, -0.012542560696601868, 0.005986534059047699, 0.007918005809187889, -0.005869891028851271, 0.014120672829449177, -0.0124053331092, 0.025318406522274017, -0.011547664180397987, -0.018306100741028786, -0.030299752950668335, 0.022903209552168846, 0.033455975353717804, 0.02474205382168293, -0.026841629296541214, -0.0011338392505422235, -0.010635103099048138, 0.007629828993231058, 0.00657661072909832, 0.023328613489866257, -0.013139498420059681, 0.01067627128213644, 0.00023157079704105854, 0.006494274362921715, -0.003543890779837966, 0.004960760939866304, -0.040015432983636856, -0.006789312697947025, -0.02173677831888199, 0.0011938761454075575, 0.00266906782053411, -0.015986962243914604, 0.041964057832956314, 0.03211114928126335, -0.006480551790446043, 0.006686392240226269, 0.020062608644366264, -0.010628242045640945, -0.03954886272549629, -0.007046613376587629, -0.022834595292806625, 0.024110808968544006, -0.007218147628009319, -0.022834595292806625, -0.00347184669226408, -0.005797846708446741, 0.03436167538166046, -0.0018268362618982792, 0.011321239173412323, 0.027390537783503532, -0.029970407485961914, -0.0313701257109642, 0.012281828559935093, 0.0268553514033556, 0.014614690095186234, 0.01682404801249504, 0.015575280413031578, 0.013482565991580486, -0.02085852436721325, 0.024330371990799904, 0.0032042537350207567, -0.0300252977758646, -0.01825120858848095, 0.008713923394680023, -0.022340578958392143, -0.003986448515206575, -0.02832368202507496, 0.019280413165688515, -0.010147946886718273, -0.001672455808147788, 0.02206612378358841, 0.007231870200484991, -0.02170933410525322, 0.014944035559892654, -0.00360564305447042, -0.052338432520627975, -0.014806807972490788, -0.001771945389918983, 0.041909169405698776, -0.01838843710720539, -0.011959345079958439, -0.004144259728491306, -0.002142458688467741, 0.019582312554121017, -0.002108152024447918, -0.013674684800207615, 0.004874994046986103, -0.011355545371770859, -0.00427119480445981, -0.03803936392068863, -0.017880696803331375, -0.011396713554859161, 0.025743810459971428, -0.011170289479196072, 0.0014734764117747545, -0.011396713554859161, -0.009866631589829922, 0.0036914099473506212, -0.03018997050821781, 0.007465156260877848, -0.022477805614471436, -0.011609415523707867, 0.038615718483924866, 0.019376471638679504, 0.005653758067637682, -0.01692010648548603, -0.0035473215393722057, 0.027980614453554153, 0.01274840161204338, 0.017290620133280754, -0.01573995314538479, 0.0032025384716689587, 0.01225438341498375, -0.002566147595643997, 0.0106899943202734, 0.00938633643090725, 0.014614690095186234, -0.007924866862595081, 0.00852180551737547, -0.0016107035335153341, -0.011341823264956474, 0.003475277218967676, 0.003983017522841692, 0.01600068435072899, 0.011561386287212372, 0.013736437074840069, 0.004037908744066954, 0.024700885638594627, 0.009201079607009888, -0.007787640206515789, -0.037792354822158813, -0.004871563520282507, 0.002480380469933152, 0.024975338950753212, -0.02933916263282299, 0.0011063937563449144, -0.011321239173412323, 0.016179079189896584, 0.04133281484246254, 0.03216604143381119, -0.032056260854005814, 0.016673097386956215, -0.03425189480185509, -0.020282171666622162, 0.00664865504950285, 0.026608342304825783, -0.026278996840119362, -0.013928554952144623, -0.0019709246698766947, 0.001964063383638859, 0.0216818880289793, 0.003574766917154193, 0.002060122322291136, 0.027170972898602486, 0.0006055147387087345, -0.015053817071020603, -0.635416567325592, -0.024947894737124443, -0.015794843435287476, -0.0221621822565794, 0.002331146039068699, 0.012775846756994724, 0.012501392513513565, 0.024138253182172775, -0.01756507344543934, 0.0015583856729790568, -0.03957630693912506, 0.02320510894060135, -0.009784295223653316, -0.014820531010627747, -0.019115740433335304, -0.016727987676858902, 0.018237486481666565, -0.033099185675382614, 0.025181179866194725, -0.031864140182733536, -0.016618207097053528, 0.0048990086652338505, -0.0019057418685406446, 0.021832838654518127, -0.0047068907879292965, -0.002982974983751774, 0.04215617850422859, 0.0048338258638978004, 0.01484797615557909, 0.03537715598940849, -0.034992922097444534, 0.04341866821050644, 0.04426947608590126, 0.022148460149765015, 0.04635532945394516, 0.021338820457458496, -0.02803550474345684, 0.028598135337233543, -0.003636519191786647, 0.01580856554210186, -0.024467598646879196, -0.014738194644451141, 0.0027805648278445005, 0.00971568189561367, 0.018717782571911812, 0.0162065252661705, 0.030080188065767288, -0.011801534332334995, 0.004552510567009449, -0.0042917788960039616, 0.018210042268037796, -0.011664306744933128, -0.012247522361576557, -0.010991893708705902, 0.010394955985248089, -0.006298725493252277, 0.024001026526093483, -0.013921692967414856, 0.01825120858848095, 0.009015822783112526, 0.015492944046854973, 0.02343839593231678, -0.004796088673174381, -0.009763711132109165, -0.01698872074484825, 0.019774431362748146, -0.0050705429166555405, 0.014045197516679764, 0.019801875576376915, -0.041415151208639145, -0.003123632865026593, 0.014491185545921326, -0.006974569521844387, -0.022148460149765015, 0.015410607680678368, 0.012446501292288303, 0.04147003963589668, -0.02832368202507496, -0.00852180551737547, 0.01822376437485218, -0.002801148919388652, -0.009612761437892914, -0.021530937403440475, -0.032220933586359024, 0.02787083201110363, -0.014045197516679764, -0.0023414380848407745, 0.024426430463790894, -0.010641965083777905, -0.004175135865807533, -0.00012822161079384387, -0.00248895725235343, 0.00360221229493618, -0.01128007099032402, 0.020529180765151978, 0.009070714004337788, 0.018196318298578262, -0.002166473539546132, 0.018498217687010765, -0.0036845486611127853, -0.011129121296107769, -0.009310861118137836, -0.0013542603701353073, -0.001425446942448616, -0.01604185253381729, 0.004164843820035458, -0.02829623594880104, -0.01917063072323799, 0.02868047170341015, -0.023479564115405083, 0.0072867609560489655, -0.023877521976828575, -0.0054753627628088, -0.011794672347605228, 0.007650413084775209, -0.03266005963087082, 0.021270206198096275, -0.002953814109787345, 0.005736094433814287, -0.012515115551650524, 0.020062608644366264, -0.007760194595903158, 0.008761952631175518, 0.002135597402229905, 0.032385606318712234, 0.026429947465658188, -0.008700200356543064, -0.0003668681893032044, -0.013660961762070656, 0.01600068435072899, -0.006755006033927202, 0.003883528057485819, 0.03093099780380726, 0.002082421910017729, 0.013242418877780437, -0.01831982284784317, 0.01831982284784317, 0.00040825075120665133, 0.00420601200312376, -0.030601652339100838, -0.01036750990897417, 0.0009417212568223476, 0.017194559797644615, 0.008967793546617031, -0.027733605355024338, -0.041223034262657166, -0.017139669507741928, -0.0014348812401294708, -0.01751018315553665, 0.00907757505774498, -0.013091469183564186, -0.012103433720767498, 0.0109507255256176, 0.02258758619427681, 0.017057333141565323, -0.016974996775388718, -0.015383162535727024, 0.009653929620981216, 0.008940348401665688, 0.007698442321270704, 0.0047068907879292965, 0.011465327814221382, -0.00367082585580647, 0.010669410228729248, 0.008597279898822308, -0.005657188594341278, -0.02898237109184265, 0.027815941721200943, -0.0017119086114689708, -0.03699643537402153, 0.0047034602612257, 0.00041168142342939973, -0.004415282979607582, 0.0385882705450058, -0.026814183220267296, 0.006034563295543194, 0.0034323937725275755, -0.026100602000951767, -0.02519490197300911, 0.005708648823201656, -0.01796303316950798, 0.011087953113019466, -0.0014340236084535718, -0.01194562204182148, 0.032385606318712234, -0.004888716619461775, -0.007760194595903158, 0.007087781559675932, 0.020707575604319572, 0.03276984021067619, 0.0038423598743975163, 0.00700887618586421, -0.011019338853657246, -0.012782707810401917, 0.002327715279534459, -0.021585829555988312, 0.007526908535510302, 0.015232212841510773, 0.013942277058959007, 0.001674171071499586, 0.012720955535769463, 0.00417170487344265, 0.0323307141661644, -0.005049958825111389, 0.006171790417283773, -0.05500063672661781, -0.00942064356058836, -0.007787640206515789, 0.011087953113019466, -0.010786052793264389, 0.01071057841181755, -0.036529865115880966, -0.02500278502702713, -0.008514943532645702, 0.012570005841553211, 0.019486254081130028, 0.025208625942468643, 0.0055336845107376575, -0.02014494314789772, 0.00409966055303812, 0.014985203742980957, -0.01825120858848095, 0.0014357389882206917, 0.004813241772353649, -0.028049226850271225, -0.008425746113061905, 0.004185427911579609, 0.02422058954834938, -0.003701701993122697, -0.021928897127509117, 0.011300655081868172, -0.007218147628009319, -0.022107291966676712, 0.0072867609560489655, 0.01067627128213644, 0.007019168231636286, 0.027884554117918015, -0.012720955535769463, 0.03351086750626564, -0.03444401174783707, 0.010703716427087784, 0.008219905197620392, 0.02083108015358448, -0.018113981932401657, -0.015177321620285511, 0.011739782057702541, 0.014834254048764706, 0.010738023556768894, -0.011465327814221382, 0.00701573770493269, -0.010340064764022827, -0.008130707778036594, -0.008425746113061905, -0.008384577929973602, 0.005588575266301632, -0.03765512630343437, -0.0054239025339484215, 0.006881941109895706, 0.023836353793740273, 0.038999952375888824, 0.005581713747233152, 0.00907757505774498, -0.00019426217477302998, 0.019184354692697525, 0.05439683794975281, -0.0035507522989064455, -0.01354431826621294, 0.013475704938173294, -0.029229380190372467, -0.032413050532341, -0.016604483127593994, -0.014642136171460152, -0.00811698567122221, -0.0027205280493944883, 0.007252454292029142, -0.0034701311960816383, 0.005537115037441254, 0.0036776873748749495, 0.018800118938088417, 0.007540631107985973, -0.02073501981794834, -0.02734936960041523, 0.00354046025313437, 0.0029932670295238495, 0.005399887915700674, 0.006099746562540531, -0.028213899582624435, -0.012762123718857765, -0.03208370506763458, 0.044516485184431076, -0.007060336414724588, 0.014045197516679764, 0.021462325006723404, -0.01886873133480549, 0.007067197468131781, -0.005290106404572725, 0.018539385870099068, -0.01609674282371998, 0.007574938237667084, 0.024234313517808914, 0.002231656340882182, -0.002425489714369178, -0.010031304322183132, 0.025730088353157043, 0.019499976187944412, -0.005845875944942236, -0.00701573770493269, -0.00354046025313437, 0.0108203599229455, -0.012213215231895447, -0.016796601936221123, -0.02460482530295849, -0.005739524960517883, -0.00010040094639407471, -0.008480637334287167, 0.004789227154105902, -0.028735363855957985, 0.0043878378346562386, 0.0402349978685379, -0.02441270835697651, -0.0027719882782548666, -0.015849733725190163, -0.0221621822565794, -0.00997641310095787, 0.07190702110528946, -0.012178909033536911, -0.02526351623237133, 0.004243749193847179, 0.011506495997309685, -0.0022453791461884975, -0.02128393016755581, -0.0010643679415807128, 0.017757192254066467, 0.013956000097095966, 0.012439640238881111, -0.02330116741359234, 0.0397135354578495, -0.002360306680202484, 0.006494274362921715, -0.004748058971017599, -0.018113981932401657, 0.0009056990966200829, -0.011273209936916828, -0.00951670203357935, -0.004758351016789675, -0.008892318233847618, 0.014628413133323193, 0.017908141016960144, -0.02708863653242588, -0.003694840706884861, 0.04355589300394058, -0.002205926226451993, -0.0011123975273221731, -0.026004543527960777, -0.02405591681599617, 0.020350784063339233, 0.015918347984552383, 0.013166943565011024, -0.013496289029717445, 0.0028491783887147903, -0.005351858213543892, 0.03197392448782921, -0.009338307194411755, 0.0047068907879292965, 0.011890731751918793, 0.02298554591834545, 0.0075886608101427555, -0.014299067668616772, 0.013407091610133648, 0.001795960240997374, -0.013640377670526505, 0.005060250870883465, -0.0054547786712646484, -0.0006582614150829613, 0.04207384213805199, -0.006988292094320059, 0.006549165118485689, -0.023493286222219467, 0.023520732298493385, -0.009290277026593685, 0.00938633643090725, -0.01194562204182148, -0.011300655081868172, -0.013969723135232925, 0.0020429689902812243, 0.001273639383725822, -0.0012899350840598345, -0.019060850143432617, -0.01138985250145197, -0.04103091359138489, -0.012775846756994724, -0.0007671854691579938, -0.018539385870099068, 0.0038698052521795034, -0.016769155859947205, 0.013496289029717445, -0.010319480672478676, 0.004113383591175079, 0.0216818880289793, -0.0008169303182512522, 0.0062506962567567825, -0.020817356184124947, -0.005118572153151035, 0.0031545087695121765, -0.016508424654603004, -0.01945880800485611, 0.010394955985248089, -0.011122259311378002, -0.01128007099032402, -0.01573995314538479, 0.014820531010627747, 0.018690336495637894, -0.0134276757016778, -0.003293451387435198, 0.0048681325279176235, -0.0009554439457133412, -0.010271451435983181, -0.0020909984596073627, 0.005073973443359137, 0.001270208740606904, -0.005653758067637682, -0.022381747141480446, -0.015492944046854973, -0.013208111748099327, 9.474569196754601e-06, -0.03699643537402153, -0.008967793546617031, -0.007581799291074276, 0.005616020876914263, -0.008995238691568375, 0.00041832835995592177, 0.02102319709956646, 0.0020961444824934006, -0.011026200838387012, -0.009887215681374073, -0.02732192352414131, 0.003818345256149769, 0.0061100381426513195, -0.006271280348300934, 0.0007277326658368111, 0.006755006033927202, 0.016192803159356117, 0.008576695807278156, -0.018800118938088417, -0.016837770119309425, -0.026718124747276306, 0.00292122270911932, -0.009914660826325417, -0.020186111330986023, 0.012192631140351295, 0.015177321620285511, -0.0001392640988342464, 0.008350271731615067, -0.0016295722452923656, -0.0032865898683667183, 0.015849733725190163, -0.009798017330467701, -0.019705817103385925, -0.04605342820286751, 0.0028680472169071436, 0.008645310066640377, -0.009393197484314442, -0.01571250706911087, -0.015067540109157562, -0.0017925294814631343, -0.023904968053102493, -0.013901108875870705, -0.0006642651278525591, -0.010600796900689602, -0.02793944627046585, -0.007890560664236546, -0.01867661438882351, -0.0007315921830013394, 0.014450017362833023, -0.012624897062778473, -0.026690678671002388, -0.0239873044192791, -0.0001236116368090734, -0.026100602000951767, -0.0216818880289793, -0.009880353696644306, -0.013805050402879715, 0.020254725590348244, -0.0031510782428085804, 0.016288861632347107, -0.02412453107535839, 0.007451433688402176, 0.004844117909669876, 0.017414124682545662, 0.005451348144561052, -0.006796174217015505, -0.028433462604880333, -0.04498305544257164, -0.007568076718598604, 0.017400400713086128, 0.035679057240486145, 0.01893734559416771, -0.005049958825111389, -0.005856167990714312, 0.0449281670153141, 0.01137612946331501, 0.005458209663629532, -0.007670997176319361, -0.04550451785326004, -0.043336331844329834, 0.015273381024599075, -0.009798017330467701, 0.009283415973186493, -0.008789398707449436, -0.0023723142221570015, 0.05247565731406212, 0.005290106404572725, -0.0011081091361120343, -0.017002442851662636, 0.028378572314977646, -0.03408722206950188, 0.01886873133480549, 0.02509884350001812, 0.034992922097444534, -0.0035130148753523827, 0.03458124026656151, -0.015149876475334167, 0.0060139792039990425, 0.0058218613266944885, 0.008123846724629402, 0.01779836043715477, -0.014546076767146587, -0.005698356777429581, -0.014724471606314182, 0.026608342304825783, -0.017482737079262733, -0.009866631589829922, 0.035514384508132935, -0.0187726728618145, -0.03054676204919815, -0.007362235803157091, -0.02310905046761036, -0.03147990629076958, -0.011341823264956474, 0.005866460036486387, -0.003434109268710017, 0.028790254145860672, -0.026292718946933746, -0.011767227202653885, 0.00041918602073565125, -0.010244006291031837, 0.04152493178844452, 0.005290106404572725, 0.03581628203392029, 0.014120672829449177, -0.02147604711353779, -0.01675543375313282, -0.008954070508480072, -0.010182254016399384, -0.013633516617119312, 0.010834082961082458, 0.016384920105338097, -0.010271451435983181, 0.0009657359914854169, 0.00583558389917016, 0.005677772685885429, -0.028598135337233543, -0.03425189480185509, 0.02246408350765705, 0.0022522404324263334, -0.015259657986462116, -0.016933828592300415, 0.016357475891709328, -0.039686087518930435, 0.008233628235757351, 0.010298896580934525, 0.023259999230504036, -0.001705904840491712, -0.010943864472210407, -0.010058749467134476, 0.0012041681911796331, 0.019280413165688515, 0.024632271379232407, 0.034279339015483856, -0.01912946254014969, -0.018498217687010765, -0.013901108875870705, -0.021695610135793686, -0.008350271731615067, -0.0019726401660591364, 0.02682790532708168, -0.020789911970496178, -0.0043226550333201885, 0.010717439465224743, 0.012906212359666824, -0.0028800545260310173, 0.01067627128213644, 0.00198807823471725, 0.03211114928126335, 0.002574724145233631, 0.0011904453858733177, 0.005194047000259161, 0.023575622588396072, 0.032907068729400635, 0.020872248336672783, 0.00708092050626874, -0.009564731270074844, -0.021832838654518127, 0.001396286184899509, -0.0008285088697448373, 0.010491014458239079, 0.0054376255720853806, -0.01936274953186512, -0.015094985254108906, -0.013681545853614807, -0.0013285302557051182, 0.007499462924897671, 0.005670911632478237, -0.029915517196059227, -0.018855009227991104, 0.006964277476072311, -0.028406018391251564, 0.00490587018430233, -0.01600068435072899, 0.02249152772128582, -0.019939104095101357, 0.01910201832652092, -0.02369912713766098, 0.03433423116803169, -0.0276787132024765, 0.013935416005551815, -0.03921951726078987, 0.006391353905200958, 0.012041681446135044, -0.021572105586528778, 0.019143186509609222, -0.006785882171243429, -0.03771001845598221, -0.00797289703041315, 0.023410949856042862, 0.023671681061387062, -0.0008426603744737804, 0.0025627168361097574, -0.006260988302528858, -0.011074230074882507, -0.003452977864071727, -0.02197006531059742, -0.035157594829797745, 0.03875294327735901, 0.012364164926111698, 0.0041511207818984985, -0.0164260882884264, -0.02578497864305973, 0.034114666283130646, 0.019047126173973083, -0.0006329601746983826, -1.30124562929268e-05, -0.03943907842040062, -0.00463827745988965, -0.0007860541809350252, 0.018086537718772888, 0.012192631140351295, 0.007540631107985973, -0.018594278022646904, -0.03320896625518799, -0.01023714430630207, -0.00026995150255970657, 0.010772330686450005, -0.022354301065206528, 0.007252454292029142, 0.03161713108420372, -0.01001072023063898, -0.010223422199487686, -0.010154807940125465, -0.013832495547831059, 0.02213473804295063, -0.019390195608139038, -0.028515798971056938, -0.010031304322183132, -0.013496289029717445, 0.03677687421441078, -0.002307131187990308, -0.013208111748099327, -0.007966035045683384, -0.002638191683217883, -0.029147043824195862, -0.0219014510512352, 0.02519490197300911, 0.032413050532341, 0.037764906883239746, 0.015767397359013557, 0.0005454779020510614, 0.00854238960891962, -0.03227582201361656, 0.02647111564874649, -0.01659076102077961, -0.0018971652025356889, -0.0015120715834200382, 0.011568248271942139, -0.003391225589439273, -0.0025387019850313663, -0.010161669924855232, 0.013585486449301243, 0.027459150180220604, -0.0017530766781419516, 0.001427162205800414, 0.0016501563368365169, -0.015341994352638721, 0.011019338853657246, -0.025387020781636238, 0.027431705966591835, 0.0016964705428108573, -0.0014503193087875843, 0.005914489738643169, -0.022546419873833656, -0.00570521829649806, -0.0001137484359787777, -0.0295038353651762, -0.01805909164249897, -0.025112565606832504, 0.0011132551589980721, -0.001019769231788814, 0.014120672829449177, 0.007801362778991461, -0.014793085865676403, -0.00121017184574157, -0.008837427943944931, 0.04341866821050644, 0.003784038359299302, 0.0055199614726006985, 0.04311676695942879, 0.004634846467524767, -0.021626997739076614, 0.014244177378714085, 0.009324584156274796, 0.002332861302420497, -0.027761049568653107, -0.003687979420647025, -0.016865216195583344, 0.017057333141565323, -0.006895663682371378, 0.020323339849710464, -0.015383162535727024, 0.007026029750704765, -0.009695097804069519, 0.01694755256175995, -0.01186328660696745, 0.033401086926460266, 0.012741539627313614, -0.009626483544707298, -0.004288347903639078, 0.0068716490641236305, 0.010189115069806576, 0.016714265570044518, -0.021036921069025993, -0.015438052825629711, -0.0014769070548936725, 0.009029545821249485, 0.0022162182722240686, 0.016453534364700317, -0.021723056212067604, -0.005698356777429581, 0.007293622475117445, -0.02640250138938427, -0.009434365667402744, 0.16697798669338226, -0.0073965429328382015, 0.014724471606314182, 0.022615032270550728, -0.00267249858006835, 0.012604312971234322, 0.03647497296333313, -0.005194047000259161, 0.013688406907022, 0.004068784881383181, -0.018113981932401657, 0.02780221775174141, 0.015067540109157562, 0.013935416005551815, -0.005938504356890917, -0.021366264671087265, -0.052530549466609955, 0.0031202021054923534, -0.022546419873833656, -0.04528495669364929, 0.0014125818852335215, -0.03164457902312279, -0.008370855823159218, -0.0077807786874473095, 0.018031645566225052, -0.005276383366435766, -0.011382991448044777, 0.00811698567122221, 0.03227582201361656, 0.008878596127033234, -0.0237265732139349, -0.009749988093972206, 0.002478665206581354, 0.005375873297452927, -0.017523905262351036, 0.004315793514251709, 0.016618207097053528, 0.002082421910017729, 0.02170933410525322, 0.002425489714369178, -0.010223422199487686, -0.013667822815477848, -0.025675198063254356, -0.005605728831142187, -0.020940860733389854, 0.0344165675342083, -0.014614690095186234, -0.009798017330467701, -0.021599551662802696, 0.01199365220963955, -0.03073887899518013, 0.012425917200744152, 0.03559672087430954, 0.024371540173888206, 0.0010060464264824986, 0.000961447658482939, -0.0018542817560955882, 0.03018997050821781, -0.020446844398975372, -0.0016544447280466557, -0.01874522678554058, 0.021064365282654762, -0.017921864986419678, 0.02438526228070259, -0.013633516617119312, 0.0034375397954136133, 0.0063467551954090595, -0.03018997050821781, 0.011568248271942139, -0.022875763475894928, 0.02415197715163231, 0.008501221425831318, 0.002265963237732649, 0.014902867376804352, -0.004662292078137398, -0.0023414380848407745, 0.027129804715514183, 0.0003424246096983552, -0.010394955985248089, 0.016192803159356117, -0.0012367595918476582, -0.00737595884129405, 0.006881941109895706, -0.0033294735476374626, 0.00046056858263909817, -0.027006300166249275, -0.0025833009276539087, -0.018635446205735207, -0.02239546924829483, 0.006521719973534346, -0.023191386833786964, -0.016604483127593994, 0.004432436544448137, -0.028213899582624435, 0.006864787545055151, -0.00029825459932908416, 0.0022573864553123713, 0.00216818880289793, 0.003139070700854063, 0.010998754762113094, -0.008645310066640377, -0.006696684285998344, 0.03987820819020271, 0.024700885638594627, -0.03090355172753334, 0.0028303097933530807, 0.003005274338647723, 0.008014065213501453, 0.009338307194411755, -0.020131221041083336, 0.019156908616423607, 0.0032162610441446304, 0.0030310044530779123, -0.029119599610567093, 0.007499462924897671, 0.014806807972490788, -0.03123289719223976, -0.023561900481581688, 0.005965949967503548, 0.01995282620191574, 0.016316307708621025, -0.016906384378671646, 9.36065953283105e-06, -0.00994210597127676, 0.004243749193847179, -0.030766325071454048, -0.059282124042510986, 0.019760707393288612, 0.0036125043407082558, -0.022711090743541718, 0.04083879664540291, -0.03666708990931511, 0.009056990966200829, -0.0034289632458239794, -0.02862558141350746, 0.015108708292245865, -0.01782580465078354, -0.032028812915086746, 0.01431279070675373, -0.005499377381056547, -0.005406749434769154, 0.002634761156514287, 0.020350784063339233, 0.002022384898737073, 0.002667352557182312, -0.011760366149246693, 0.010436124168336391, -0.016906384378671646, -0.00721128610894084, -0.020954584702849388, -0.019705817103385925, -0.02083108015358448, 0.005965949967503548, -0.009146188385784626, 0.020584071055054665, -0.0037085635121911764, -0.003567905630916357, -0.013942277058959007, 0.01287876721471548, 0.031342677772045135, -0.025537971407175064, 0.017812082543969154, 0.0350203663110733, 0.005694926250725985, -0.008494360372424126, -0.00620952807366848, -0.175540953874588, 0.029229380190372467, 0.01512243039906025, 0.0007916290778666735, 0.019801875576376915, 0.030711432918906212, 0.03469102084636688, 0.011170289479196072, 0.002319138729944825, -0.004463312681764364, 0.03145246207714081, 0.029613615944981575, -0.03235815837979317, -0.006425660569220781, -0.019513698294758797, 0.008940348401665688, -0.009708819910883904, 0.018429605290293694, 0.04103091359138489, 0.007417127024382353, 0.015767397359013557, -0.0018268362618982792, 0.012810153886675835, -0.023561900481581688, -0.005369011778384447, 0.02787083201110363, 0.00248552649281919, 0.016179079189896584, 0.019678371027112007, -0.013990307226777077, 0.0067104073241353035, 0.007410265505313873, 0.016769155859947205, -0.008329687640070915, 0.01969209499657154, 0.011513357050716877, 0.0014100088737905025, -0.004583386238664389, -0.0022265103179961443, 0.004617693368345499, 0.011835840530693531, -0.005893905647099018, 0.02813156321644783, 0.005499377381056547, -0.0033877950627356768, 0.021791670471429825, -0.009736265055835247, -0.008336548693478107, 0.0005197477876208723, -0.03548693656921387, 0.0066658081486821175, -0.0005338993505574763, 0.01630258373916149, 0.011108537204563618, 0.03455379232764244, 0.01744156889617443, 0.022738536819815636, 0.0030550190713256598, 0.004820103291422129, -0.03488313779234886, -0.01442257221788168, -0.00907757505774498, 0.01626141555607319, -0.007712165359407663, 0.00971568189561367, -0.008254212327301502, -0.02846090868115425, 0.012741539627313614, -0.02986062504351139, -0.011362407356500626, 0.008494360372424126, 0.0012779277749359608, 0.03444401174783707, -0.0036193658597767353, -0.0052969674579799175, -0.009166772477328777, -0.015753675252199173, 0.0036090738140046597, -0.013585486449301243, -0.009132466278970242, -0.03263261541724205, 0.03093099780380726, -0.021654441952705383, -0.023410949856042862, 0.004758351016789675, 0.0221621822565794, -0.013784466311335564, -0.017976755276322365, -0.00868647824972868, 0.006360477767884731, 0.0036982714664191008, -0.0012676357291638851, -0.008899180218577385, -0.0032488524448126554, 0.011499634012579918, 0.022011233493685722, -0.005375873297452927, -0.01138985250145197, 0.0012144602369517088, -0.0075886608101427555, -1.3642307749250904e-05, -0.02464599348604679, -0.02549680322408676, 0.02412453107535839, 0.02621038444340229, 0.008288519456982613, -0.006370769813656807, 0.0339774414896965, 0.036749426275491714, 0.016577038913965225, -0.01998027227818966, 0.01295424159616232, 0.01010677870362997, 0.0017410693690180779, 0.0005815000040456653, 0.013798188418149948, -0.03433423116803169, -0.01796303316950798, 0.03576139360666275, -0.026224106550216675, 0.052009087055921555, 0.0002540846180636436, 0.010744884610176086, -0.00036107891355641186, -0.007266176864504814, -0.030793769285082817, -0.10275568068027496, -6.34675525361672e-05, 0.02336978167295456, 0.00316994683817029, -0.024330371990799904, 0.01141043659299612, -0.011451604776084423, 0.010058749467134476, 0.005499377381056547, 0.010641965083777905, -0.0075543541461229324, -0.028900034725666046, -0.0014734764117747545, 0.001175007433630526, -0.0039555723778903484, -0.0072867609560489655, -0.0031476474832743406, 0.00033620648900978267, -0.007197563536465168, 0.02500278502702713, 0.009173634462058544, -0.028515798971056938, -0.0008478063973598182, -0.0007972039165906608, 0.0018680044449865818, 0.0039761564694345, -0.034306783229112625, -0.0029932670295238495, 0.02092713862657547, 0.009612761437892914, -0.009310861118137836, -0.010751746594905853, 0.002643337706103921, -0.003763454267755151, -0.0012856468092650175, 0.008453192189335823, -0.01704361103475094, -0.02327372319996357, 0.03872549906373024, -0.01926669105887413, 0.00863844808191061, -0.023657958954572678, 0.02656717412173748, -0.016549592837691307, -0.008892318233847618, -0.0016364336479455233, -0.017427846789360046, 0.009825463406741619, -0.004555941093713045, -0.03018997050821781, 0.0017976755043491721, 0.006326171103864908, -0.039686087518930435, -0.035185039043426514, 0.02147604711353779, -0.008000342175364494, 0.039493970572948456, 0.0014400272630155087, -0.03126034140586853, -0.006892233155667782, -0.0017436423804610968, 0.007561215199530125, -0.005204339046031237, 0.036200519651174545, 0.011252625845372677, -0.01152021810412407, -0.004573094192892313, -0.03419700264930725, 0.023822631686925888, -0.010957587510347366, -0.013290448114275932, 0.019376471638679504, -0.015218489803373814, 0.005324413068592548, -0.01416184101253748, 0.013228695839643478, -0.031013334169983864, 0.0038560826797038317, 0.017523905262351036, -0.00035207337350584567, 0.007636690512299538, -0.016179079189896584, 0.00303615047596395, 7.724387251073495e-05, 0.011609415523707867, 0.010786052793264389, 0.02310905046761036, -0.006813327316194773, -0.00891290232539177, -0.015438052825629711, 0.01864916831254959, 0.006116899661719799, -0.016714265570044518, -0.023836353793740273, 0.02369912713766098, 0.020446844398975372, 0.014710749499499798, 0.001117543550208211, -0.0025009645614773035, -0.004778935108333826, -0.0023997595999389887, -0.013777604326605797, -0.06608858704566956, 0.0213799886405468, 0.0014966335147619247, 0.0059419353492558, 0.011513357050716877, -0.024302925914525986, 0.01272781752049923, -0.031342677772045135, -0.018196318298578262, 0.017222005873918533, -0.03109567053616047, 0.03993309661746025, -0.022834595292806625, -0.019074572250247, -0.007053474895656109, -0.00434323912486434, 0.027925722301006317, -0.0150126488879323, 0.005653758067637682, -0.00223337160423398, 0.023397227749228477, -0.00023778890317771584, 0.035185039043426514, 0.00708092050626874, -0.038835279643535614, 0.015204766765236855, 0.006288433447480202, 0.009749988093972206, -0.0028491783887147903, -0.02777477353811264, 0.0059796725399792194, -0.0313701257109642, 0.017002442851662636, 0.033620648086071014, 0.010388094000518322, 0.012199493125081062, -0.012329858727753162, -0.016906384378671646, 0.02806295081973076, 0.04259530454874039, -0.01097130961716175, -0.0276787132024765, -0.006195805501192808, -0.01630258373916149, 0.002197349676862359, 0.0062506962567567825, -0.011780950240790844, 0.008885457180440426, 0.015959516167640686, -0.00824735127389431, 0.0156850628554821, 0.008796259760856628, 0.01571250706911087, -0.0245499350130558, 0.024728329852223396, -0.014203009195625782, 0.03252283111214638, 0.0014486040454357862, -0.0026330456603318453, -0.01886873133480549, 0.029064707458019257, -0.005753247998654842, 0.02884514443576336, -0.003068741876631975, 0.019252967089414597, -0.030656542629003525, -0.004017324652522802, -0.005698356777429581, -0.022052401676774025, -0.04031733423471451, -0.009345168247818947, -0.011094814166426659, 0.01734551042318344, 0.026484837755560875, 0.024440152570605278, 0.007266176864504814, 0.018017923459410667, -0.008556111715734005, -0.029613615944981575, 0.010991893708705902, 0.0019005958456546068, -0.009866631589829922, -0.03751790151000023, 0.017263174057006836, 0.0297233983874321, -0.01241905614733696, -0.02419314533472061, 0.013386507518589497, -0.005334705114364624, 0.008597279898822308, 0.014793085865676403, -0.012926796451210976, 0.01331789419054985, -0.009173634462058544, 0.0016278569819405675, -0.00045113422675058246, -0.008528666570782661, -0.0022470944095402956, 0.020899692550301552, 0.035349711775779724, -0.01789441891014576, 0.016549592837691307, -0.0069025252014398575, -0.026951409876346588, -0.0074926018714904785, -0.008473776280879974, -0.021174147725105286, -0.008460053242743015, -0.007389681413769722, 0.02445387654006481, 0.024083362892270088, 0.002331146039068699, 0.0185531098395586, 0.017578797414898872, -0.00894720945507288, 0.013112053275108337, 3.765705696423538e-05, -0.020844802260398865, -0.00948239490389824, 0.03749045357108116, -0.00964706763625145, 0.030491869896650314, 0.029558725655078888, 0.01199365220963955, 0.018566831946372986, 0.03123289719223976, 0.020542902871966362, 0.010655687190592289, 0.0026193230878561735, 0.00920794066041708, 0.0006505423807539046, -0.019019681960344315, -0.042293403297662735, 0.00938633643090725, -0.009153050370514393, -0.041744496673345566, 0.007005445659160614, 0.0017770914128050208, -0.02258758619427681, 0.048029497265815735, 0.004583386238664389, -0.007574938237667084, 0.0015729661099612713, 0.008096401579678059, 0.03320896625518799, 0.021928897127509117, 0.015410607680678368, 0.007712165359407663, -0.015561557374894619, 0.019568590447306633, -0.021572105586528778, 0.028378572314977646, -0.010093055665493011, -0.007369097322225571, 0.0029932670295238495, -0.008494360372424126, 0.04410480335354805, -0.018731504678726196, -0.01186328660696745, 0.02242291532456875, 0.008535527624189854, 0.04114069789648056, -0.008995238691568375, -0.009832324460148811, 0.003921265713870525, -0.0008469487656839192, -0.0016244262224063277, 0.0014477462973445654, -0.03592606633901596, 0.006916247773915529, 0.006459967698901892, -0.02232685498893261, -0.005811569280922413, 0.016837770119309425, -0.029394052922725677, 0.0023723142221570015, -0.008885457180440426, 0.014477463439106941, 0.009612761437892914, -0.005046527832746506, -0.011074230074882507, -0.007911144755780697, -0.022958099842071533, 0.021036921069025993, -0.016865216195583344, -0.023836353793740273, 0.0018165442161262035, -0.03941163420677185], "95c0e825-1aa3-401a-b550-3a338345ee07": [0.006637122947722673, -0.024283943697810173, -0.011356040835380554, 0.00058153917780146, -0.009930707514286041, 0.020167795941233635, -0.01409347914159298, -0.004009581636637449, 0.0002495581575203687, -0.03412806615233421, 0.02076723426580429, 0.028506658971309662, 0.019062163308262825, -0.008258938789367676, -0.0009974000276997685, 0.013813740573823452, 0.0326894111931324, -0.0031637062784284353, 0.02493666671216488, -0.01405351608991623, 0.0020797206088900566, 0.002296184655278921, -0.015678662806749344, 0.028959568589925766, 0.0023594589438289404, 0.013407453894615173, 0.030744565650820732, -0.009158097207546234, 0.008791773580014706, -0.007572914008051157, -0.016797615215182304, -0.001143929548561573, -0.0012538267765194178, -0.012847977690398693, -0.021060293540358543, -0.010723299346864223, -0.0008092427742667496, -0.013960270211100578, 0.009690931998193264, -0.025576068088412285, 0.0032452966552227736, 0.009970670565962791, -0.011855573393404484, 0.020047906786203384, -0.01971488632261753, 0.01939518377184868, 0.008005841635167599, -0.024537039920687675, -0.01946178823709488, 0.01421336643397808, 0.02485674060881138, 0.005844531115144491, -0.03154381737112999, 0.023498011752963066, -0.016051646322011948, 0.004006251227110624, 0.006833605468273163, 0.013141036964952946, -0.017596866935491562, 0.010030614212155342, 0.014026874676346779, 0.011409323662519455, 0.006673755124211311, -0.005068590398877859, -0.028826359659433365, -0.01462631393224001, -0.016025004908442497, -0.013733815401792526, -0.020900443196296692, -0.015372282825410366, 0.023311519995331764, 0.010257069021463394, -0.02416405640542507, 0.004965353757143021, 0.02821359969675541, -0.025496141985058784, -0.022498946636915207, -0.010516826063394547, -0.024204017594456673, 0.014279970899224281, -0.004092836752533913, -0.024683568626642227, -0.0005390789010562003, 0.02840009145438671, 0.015825191512703896, 0.005891154054552317, 0.02616218663752079, 0.021579807624220848, -0.020074548199772835, -0.022192567586898804, 0.024230660870671272, 0.019355222582817078, 0.012441691011190414, 0.010223766788840294, 0.005478207021951675, 0.0032369710970669985, -0.02919934317469597, 0.02288525179028511, 0.007759405765682459, -0.022072678431868553, -0.009810819290578365, -0.01132939849048853, -0.014373216778039932, 0.0003276101197116077, -0.034181348979473114, 0.013101073913276196, 0.02054077945649624, -0.007526290602982044, 0.010010632686316967, -0.005025297868996859, -0.002221254864707589, 0.021020330488681793, -0.032103292644023895, -0.013667210936546326, -0.014519746415317059, -0.009784177877008915, 0.02954568713903427, -0.005095232278108597, -0.012175274081528187, -0.018822386860847473, -0.007073381450027227, 0.02283196896314621, -0.010496844537556171, -0.008099088445305824, 0.003078785724937916, 0.004935381934046745, -0.019155409187078476, -0.02832016721367836, -0.006187543272972107, -0.014493105001747608, 0.04446505755186081, -0.0046256715431809425, 7.914469460956752e-05, -0.006900209933519363, -0.021499881520867348, 0.0009008237393572927, -0.02810703217983246, 0.014546388760209084, -0.006873568054288626, -0.035247016698122025, 0.008472072891891003, 0.008651903830468655, -0.0019814791157841682, -0.023671183735132217, -0.017103996127843857, 0.02943911962211132, 0.007246552500873804, 0.003982939757406712, -0.02395092137157917, 0.014506425708532333, 0.021060293540358543, -0.006533885840326548, -0.005531490780413151, 0.0025076535530388355, 0.014333254657685757, 0.0043625845573842525, 0.004122809041291475, 0.000648559769615531, -0.002414407441392541, -0.006357384379953146, 0.026561811566352844, 0.03141060844063759, 0.012847977690398693, -0.007919256575405598, -0.0005757113103754818, 0.04137461632490158, 0.006657104007899761, -0.027813972905278206, -0.020154474303126335, -0.015345640480518341, -0.00877845287322998, 0.016797615215182304, -0.023231595754623413, 0.0011997107649222016, -0.021300068125128746, 0.00821231584995985, 0.025922410190105438, 0.02604229748249054, -0.017077352851629257, 0.006650443654507399, -0.0328759029507637, 0.0013978586066514254, 0.013400794006884098, 0.020913762971758842, -0.028613226488232613, -0.00518514821305871, -0.023484691977500916, -0.011449286714196205, 0.010976395569741726, -0.00045290953130461276, 0.01246167253702879, -0.003613285720348358, 0.008292241021990776, -0.011669080704450607, -0.6389754414558411, -0.020380929112434387, -0.015798550099134445, -0.017636829987168312, -0.009111474268138409, 0.0016551179578527808, 0.01405351608991623, 0.010570108890533447, 0.0016168204601854086, 0.005954428110271692, -0.0271745715290308, 0.010343654081225395, 0.008991586044430733, -0.01139600295573473, -0.03127739951014519, -0.0029405816458165646, 0.009890745393931866, -0.039696186780929565, -0.006683745887130499, -0.01743701659142971, -0.02816031686961651, 0.009317947551608086, 0.002221254864707589, 0.020021265372633934, 0.0007896777242422104, 0.002535960404202342, 0.03402149677276611, 0.006673755124211311, 0.018755782395601273, 0.035273659974336624, -0.02068730816245079, 0.03380836546421051, 0.025669313967227936, 0.016531197354197502, 0.04585042968392372, 0.0035699927248060703, -0.02279200591146946, 0.03165038302540779, 0.016091609373688698, 0.011003037914633751, -0.024763494729995728, -0.02496330812573433, 0.0068402658216655254, 0.012281840667128563, 0.005305035971105099, 0.007646178361028433, 0.02497662790119648, 6.140088225947693e-05, 0.01302114874124527, 0.012981186620891094, 0.00871184840798378, 0.008891679346561432, 0.002657513367012143, -0.004609020426869392, -0.0032802638597786427, -0.0057046618312597275, 0.028853001073002815, -0.0008229798986576498, 0.012082028202712536, 0.006144250743091106, 0.00711334403604269, 0.01643795147538185, -0.003125408897176385, -0.009491118602454662, -0.010203785263001919, 0.024696890264749527, 0.005857851821929216, 0.006420658901333809, 0.011282775551080704, -0.023671183735132217, 0.011076302267611027, 0.011649099178612232, -0.003165371483191848, -0.03732507303357124, 0.01026372890919447, 0.009357910603284836, 0.01968824304640293, -0.015585415996611118, 0.017703434452414513, 0.010157162323594093, 0.011262794025242329, -0.006360714789479971, -0.019368542358279228, -0.03407478332519531, 0.02183290384709835, -0.01721056178212166, -0.024537039920687675, 0.01192883774638176, -0.004329282324761152, -0.0022728731855750084, -0.019168730825185776, 0.01132939849048853, 0.000294724217383191, 0.005837870761752129, 0.019248655065894127, 0.0038563914131373167, -0.0062541477382183075, 0.005041948985308409, 0.0082389572635293, -0.01854264922440052, -0.008012502454221249, -0.01036363560706377, -0.005288384854793549, -0.006034353282302618, 0.01948843151330948, -0.01970156468451023, -0.03162374347448349, -0.012375086545944214, 0.038843654096126556, -0.024283943697810173, 0.008518695831298828, 0.00038110173773020506, -0.02076723426580429, -0.007686141412705183, 0.005354989320039749, -0.024483757093548775, 0.01761018857359886, 0.0011256133439019322, 0.01968824304640293, -0.005391621496528387, 0.009717573411762714, -0.008278919383883476, 0.0010115534532815218, -0.0006597992614842951, 0.017183920368552208, 0.0436125248670578, 0.0037997777108103037, -0.00019929268455598503, -0.02169969491660595, -0.003500058315694332, 0.0016034995205700397, -0.004059534519910812, 0.016131572425365448, 0.0032069990411400795, 0.01964828185737133, -0.03165038302540779, 0.02176629938185215, 0.00921138096600771, 0.00930462684482336, -0.026521848514676094, -0.022006075829267502, 0.0045690578408539295, 0.008378826081752777, 0.006846926640719175, -0.014333254657685757, -0.03673895448446274, -0.017157278954982758, -0.012721429578959942, -0.030105162411928177, 0.027893899008631706, -0.03452769294381142, -0.018209626898169518, -0.016051646322011948, 0.004369244910776615, 0.007719443179666996, -0.009471138007938862, -0.019808132201433182, -0.008951623924076557, 0.00574462441727519, -0.01637134701013565, 0.005924456287175417, 0.02272540144622326, -0.01976816914975643, 0.0071799480356276035, 0.011322738602757454, -0.016850898042321205, -0.009444495663046837, 0.013320868834853172, -0.011942158453166485, -0.03372843936085701, 0.002196278190240264, -0.018902312964200974, 0.0028623216785490513, 0.03820425271987915, -0.023058423772454262, -0.004029562696814537, -0.0031853527761995792, -0.01844940334558487, -0.007952558808028698, 0.0005782089428976178, -0.02388431690633297, 0.027680765837430954, 0.006533885840326548, -0.0020281022880226374, 0.029625611379742622, 0.0035866438411176205, -0.0035067186690866947, -0.0081723527982831, 0.011529211886227131, 0.024670248851180077, 0.01023042667657137, 0.011376021429896355, 0.02059406228363514, -0.005105223041027784, -0.005251752678304911, -0.002021441701799631, 0.0035733229015022516, 0.01142930518835783, 0.010823206044733524, 0.01958167739212513, 0.018968917429447174, 0.00594776775687933, 0.019288618117570877, -0.00708004180341959, 5.853897164342925e-05, -0.04126805067062378, 0.00573463412001729, -0.010210446082055569, 0.02276536449790001, -0.02818695828318596, -0.007519630249589682, -0.04049544036388397, 0.0017100664554163814, -0.004579048603773117, 0.025842485949397087, 0.014373216778039932, 0.014479784294962883, 0.009444495663046837, -0.006523895543068647, 0.004875437822192907, 0.006374035496264696, 0.0024643607903271914, -0.016904182732105255, -0.009164758026599884, -0.026401961222290993, 0.0218595452606678, 0.024656927213072777, 0.024204017594456673, 0.003440114203840494, -0.004928721580654383, 0.013500700704753399, -0.00022603849356528372, -0.011023018509149551, 0.0054449052549898624, 0.004325951915234327, 0.0021446598693728447, 0.015065902844071388, -0.022379059344530106, 0.02834680862724781, -0.0216197706758976, -0.0038930238224565983, 0.0028872983530163765, 0.022419022396206856, -0.042946480214595795, -0.008352184668183327, 0.017756717279553413, 0.0075063095428049564, 0.0029222655575722456, 0.009497779421508312, 0.03173030912876129, -0.00653055589646101, 0.004732238594442606, 0.001580188050866127, -0.014879410155117512, 0.014133441261947155, -0.033222246915102005, -0.010343654081225395, 0.01643795147538185, -0.004509114194661379, 0.03450104966759682, -0.009630988352000713, -0.005538151133805513, -0.020434211939573288, 0.016957465559244156, 0.04491796717047691, 5.500061888596974e-05, 0.010603411123156548, 0.010536806657910347, -0.03687216341495514, -0.03841738402843475, -0.008618601597845554, -0.010909791104495525, -0.003077120753005147, -0.002594239078462124, 0.0135206812992692, -0.015398924238979816, 0.02175297774374485, -0.013081093318760395, 0.027680765837430954, 0.011169548146426678, -0.022232528775930405, -0.01970156468451023, 0.017703434452414513, -0.0038830332923680544, -0.0031886829528957605, -0.0038430707063525915, -0.022339096292853355, -0.018143022432923317, -0.014559709466993809, 0.02618882805109024, -0.016810936853289604, -0.0004425026127137244, 0.017170598730444908, -0.02708132565021515, 0.004772201180458069, 0.011635778471827507, 0.024390511214733124, -0.012175274081528187, 0.02949240244925022, 0.0161582138389349, 0.011356040835380554, 0.01471955981105566, -0.024790136143565178, 0.012048725970089436, 0.013933628797531128, -0.013540662825107574, -0.016944145783782005, 0.0003975446743424982, 0.007959218695759773, -0.013307548128068447, 0.007226571440696716, -0.025469500571489334, 0.0008233961998485029, 0.012841317802667618, -0.0003213659510947764, 0.005071920808404684, -0.016850898042321205, 0.020234398543834686, 0.026348678395152092, -0.007273194380104542, -0.001095641404390335, -0.025549426674842834, -0.017037391662597656, 0.0022678778041154146, 0.08994250744581223, 0.025682635605335236, -0.03356858715415001, 0.004715587478131056, 0.003330217208713293, 0.014493105001747608, -0.018049776554107666, -0.031144190579652786, 0.017090674489736557, 0.00973089411854744, 0.013200980611145496, -0.01515914872288704, 0.028932927176356316, 0.0022329105995595455, 0.024736853316426277, -0.012754731811583042, -0.004202734213322401, -0.015092544257640839, 0.014612993225455284, -0.012068706564605236, 0.009404533542692661, 0.02919934317469597, 0.006007711868733168, 0.02508319541811943, -0.024350548163056374, -0.016624443233013153, 0.00625081779435277, -0.011449286714196205, 0.014706239104270935, -0.0329558290541172, -0.015545453876256943, 0.021300068125128746, 0.017956530675292015, 0.026561811566352844, 0.01255491841584444, 0.026641737669706345, 0.00546488631516695, 0.026561811566352844, -0.0012313477927818894, 0.014026874676346779, 0.019754847511649132, 0.004089506808668375, 0.02292521484196186, -0.015305678360164165, 0.01090313121676445, 0.0037331734783947468, -0.007712782826274633, 0.0033035753294825554, -0.007839331403374672, -0.008665225468575954, 0.04473147541284561, 0.0006756178336218, -0.01518579013645649, -0.01040359865874052, 0.032263144850730896, -0.00823229644447565, -0.007706122472882271, 0.013440756127238274, -0.010117199271917343, 0.004808833356946707, -0.001746698864735663, -0.0216064490377903, -0.004938711877912283, -0.004612350836396217, -0.006394017022103071, -0.017716756090521812, -0.0326094850897789, -0.008505374193191528, -0.009191399440169334, 0.03354194760322571, -0.013720494695007801, -0.013407453894615173, -0.037404999136924744, 0.006387356668710709, 0.02509651705622673, 0.0008192334207706153, 0.021486561745405197, -0.0028839679434895515, -0.012321803718805313, 0.005305035971105099, -0.005528160370886326, -0.031170831993222237, 0.022165926173329353, -0.011242813430726528, -0.008052465505897999, -0.01146260742098093, 0.015265715308487415, 0.010257069021463394, -0.023284878581762314, 0.011702382937073708, 0.0049120704643428326, 0.02289857342839241, 0.01521243155002594, -0.021486561745405197, 0.020287683233618736, -0.017716756090521812, -0.016584482043981552, -0.005787917412817478, 0.018209626898169518, -0.022179245948791504, -0.006387356668710709, -0.04446505755186081, 0.013294226489961147, -0.015758587047457695, 0.023391446098685265, -0.005867842584848404, 0.003152050543576479, 0.024483757093548775, -0.027654122561216354, -0.027467630803585052, 0.009937368333339691, -0.016970787197351456, 0.015518811531364918, 0.008365505374968052, -0.01033033337444067, 0.010476863011717796, 0.020047906786203384, 0.010556788183748722, 0.010849847458302975, -0.009584365412592888, 0.004462490789592266, -0.03676559776067734, 0.007706122472882271, 0.0019265306182205677, -0.02514979988336563, 0.003550011431798339, 0.002554276492446661, -0.001073995023034513, 0.012608202174305916, -0.0009974000276997685, 0.029865387827157974, 0.024443794041872025, 0.004502453375607729, -0.034447766840457916, -0.03380836546421051, 0.006284119561314583, -0.011069641448557377, -0.015638699755072594, -0.007526290602982044, 0.004988665226846933, -0.008791773580014706, -0.016970787197351456, -0.01531899906694889, -0.012821336276829243, 0.0010423579951748252, -0.02816031686961651, -0.020380929112434387, 0.0024610303808003664, -0.0056680296547710896, 0.005861182231456041, -0.0164912361651659, -0.015145828016102314, -0.0218462236225605, 0.0007168292650021613, -0.01734377071261406, -0.018222948536276817, 0.0007030920824036002, -0.00677699176594615, 0.04478476196527481, -0.02071395143866539, 0.030957698822021484, -0.0036732295993715525, -0.009444495663046837, 0.016864219680428505, 0.0022845289204269648, 0.009717573411762714, -0.004875437822192907, -0.010310351848602295, -0.0328492633998394, 0.0031986734829843044, 0.013547323644161224, 0.021379994228482246, 0.023564616218209267, -0.007532951422035694, -0.0008188171195797622, 0.028746433556079865, -0.016784293577075005, -0.017703434452414513, -0.013220962136983871, -0.03380836546421051, -0.021286748349666595, 0.01253493782132864, -0.003405146999284625, 0.02054077945649624, -0.018276231363415718, -0.00739308213815093, 0.04696938395500183, -0.0002013740740949288, 0.016011683270335197, -0.013960270211100578, 0.017170598730444908, -0.015145828016102314, 0.014306613244116306, 0.004479141905903816, 0.019288618117570877, 0.0005228440859355032, 0.01951507292687893, -0.018156344071030617, 0.0038530612364411354, -0.008278919383883476, 0.013287566602230072, -0.004715587478131056, -0.0038963539991527796, -0.027840616181492805, -0.021166861057281494, 0.01369385328143835, -0.020967047661542892, -0.002759084803983569, 0.007772726938128471, -0.004529095254838467, -0.024497076869010925, -0.011615797877311707, -0.0010831531835719943, -0.029225986450910568, -0.01978149078786373, -0.004519104491919279, 0.0011780642671510577, 0.019341900944709778, -0.022432342171669006, -0.01978149078786373, 0.006094297394156456, -0.020167795941233635, 0.05994390696287155, 0.010729959234595299, 0.03700537234544754, 0.011316077783703804, -0.0057612755335867405, -0.0015860159182921052, 0.024257302284240723, 0.0028340148273855448, -0.012361765839159489, 0.017996493726968765, 0.011942158453166485, -0.0033735099714249372, 0.0037531547714024782, -0.007752745412290096, 0.005774596706032753, -0.04427856579422951, -0.023471370339393616, 0.004232706036418676, 0.007965879514813423, -0.02494998648762703, -0.014026874676346779, -0.0008492053602822125, -0.019102126359939575, 0.009571043774485588, 0.01856929063796997, 0.033355455845594406, -0.017636829987168312, -0.013680531643331051, -0.0328759029507637, 0.010197125375270844, 0.012421710416674614, 0.006034353282302618, 0.03911007195711136, -0.0016576155321672559, -0.031090907752513885, 0.0017650150693953037, -0.024270622059702873, -0.0025243046693503857, -0.008718508295714855, 0.013906986452639103, -0.018782423809170723, 0.003483407199382782, -0.0019981302320957184, -0.009537741541862488, -0.015598736703395844, -0.007599555421620607, -0.005401612259447575, 0.023178311064839363, 0.00823229644447565, -0.011482588946819305, 0.0061409203335642815, 0.025496141985058784, 0.014946014620363712, 0.022325776517391205, -0.001720057101920247, -0.0045157745480537415, -0.0163580272346735, 0.0059877303428947926, -0.012621522881090641, 0.02054077945649624, 0.0024910024367272854, -0.03479410707950592, -0.002963893348351121, -0.016810936853289604, 0.007286515086889267, -0.004529095254838467, -0.014839448034763336, -0.046303339302539825, -0.009411193430423737, 0.0014944348949939013, -0.001281301025301218, 0.01418672502040863, -0.012175274081528187, 0.0326361283659935, -0.016504555940628052, 0.0540294423699379, -0.02845337614417076, 0.01617153361439705, -0.013320868834853172, 0.004609020426869392, -0.033115677535533905, 0.004182752687484026, 0.009464477188885212, -0.015825191512703896, -0.0006735364440828562, -0.011589155532419682, -0.02625543251633644, 0.00874515064060688, 0.04590371251106262, -0.0005857019568793476, -0.015558774583041668, 0.0025126489344984293, -0.009071511216461658, -0.02502991259098053, 0.019102126359939575, -0.0012854638043791056, -0.02391095831990242, 0.009377891197800636, 0.02169969491660595, -0.014479784294962883, 0.007666159886866808, -0.02285861037671566, 0.028080390766263008, 0.003819759003818035, 0.004479141905903816, -0.003939646761864424, -0.044172000139951706, 0.02050081640481949, -0.00974421575665474, 0.019874736666679382, 0.007546272128820419, 0.003526699962094426, -0.00649725366383791, -0.028666509315371513, -0.012854638509452343, -0.0058745029382407665, -0.0023428078275173903, -0.02181958220899105, 0.0009890744695439935, 0.03452769294381142, -0.010823206044733524, -0.007406402844935656, -0.004096167162060738, 0.014866089448332787, -0.007026758044958115, -0.00074555235914886, -0.04217386990785599, -0.005694671534001827, -0.02632203698158264, 0.05088571831583977, -0.000670206209179014, -0.017810001969337463, -0.006893549580127001, -0.040841784328222275, -0.03359523043036461, -0.01743701659142971, 0.005894484464079142, 0.014946014620363712, 0.04102827608585358, 0.01940850540995598, 0.01737041212618351, 0.015705304220318794, -0.017756717279553413, -0.004792182706296444, -0.013294226489961147, -0.0019964652601629496, -0.008465412072837353, 0.0063673751428723335, -0.005198468919843435, 0.013200980611145496, -0.020101191475987434, -0.009011567570269108, 0.021992754191160202, 0.0025009929668158293, -0.02066066674888134, 0.01943514682352543, 0.0012513290857896209, 0.02054077945649624, -0.006673755124211311, -0.0015069232322275639, 0.018822386860847473, 0.00546488631516695, 0.011289436370134354, -0.022565551102161407, -0.001695913029834628, -0.004009581636637449, -0.015039260499179363, -0.041800886392593384, -0.028746433556079865, -0.014879410155117512, -0.02051413804292679, 0.013707173988223076, -0.01755690574645996, -0.02501659095287323, -0.009364570491015911, -0.018076417967677116, 0.04971348121762276, -0.009164758026599884, 0.00039442259003408253, 0.03687216341495514, -0.0030055209062993526, -0.022205887362360954, -0.007366440258920193, 0.03881701081991196, 0.0026142203714698553, -0.021153539419174194, 0.014559709466993809, -0.03673895448446274, 0.0018399449763819575, 0.002406081883236766, 0.006816954351961613, -0.0008999911951832473, 0.012168613262474537, 0.00021750481391791254, 0.008032483980059624, -0.03495395928621292, 0.03146389126777649, 0.015691982582211494, -0.022525588050484657, -0.0038697123527526855, 0.0018998888554051518, 0.012255199253559113, 0.0217263363301754, -0.01633138582110405, -0.02506987564265728, -0.011848912574350834, 0.018902312964200974, 0.00651390478014946, 0.004612350836396217, 0.007872633635997772, -0.0064239888451993465, 0.032023366540670395, -0.03719186410307884, 0.003203668864443898, 0.1959766149520874, -0.016731010749936104, 0.0008387984707951546, 0.03681888058781624, -0.02842673286795616, 0.006737029179930687, 0.022059358656406403, 0.011602476239204407, 0.0046822852455079556, -0.0029922001995146275, -0.02510983683168888, 0.012661485932767391, -0.016104931011795998, 0.006790312938392162, -0.0008350519347004592, -0.0008725168881937861, -0.042973123490810394, -0.010670015588402748, -0.0015976716531440616, -0.055947646498680115, 0.010650034062564373, -0.02379107102751732, -0.016877541318535805, -0.01978149078786373, 0.013880345039069653, 0.010010632686316967, -0.010576769709587097, -0.01465295534580946, 0.038550592958927155, -0.002627541311085224, -0.02826688252389431, -0.0014744536019861698, 0.0003679890069179237, -0.007766066584736109, -0.03471418470144272, 0.013240943662822247, 0.041827525943517685, 0.016784293577075005, 0.016917502507567406, 0.0014686257345601916, 0.006553867366164923, -0.003281929064542055, -0.007666159886866808, -0.010203785263001919, -0.01305445097386837, 0.01730380766093731, -0.00710668321698904, -0.012135311029851437, -0.011156227439641953, 0.017143957316875458, -0.03255620226264, 0.003020507050678134, 0.046276696026325226, 0.023191632702946663, 0.012095348909497261, -0.0164113100618124, -0.0031637062784284353, 0.030105162411928177, -0.0011938828974962234, 0.0006747852312400937, -0.01830287277698517, 0.028000466525554657, -0.01741037517786026, 0.012754731811583042, -0.008618601597845554, 0.007166627328842878, -0.0003752738412003964, -0.022072678431868553, 0.014399859122931957, -0.01956835575401783, 0.0035433510784059763, -0.02518976293504238, -0.00405287416651845, 0.013640569522976875, -0.006021032575517893, -0.012128651142120361, 0.04164103418588638, -0.021526522934436798, 0.010423579253256321, 0.011709043756127357, -0.0022079339250922203, -0.02060738392174244, -0.0021996083669364452, -0.03026501275599003, -0.010823206044733524, -0.0326627716422081, -0.0026625085156410933, -0.025669313967227936, -0.013427435420453548, 0.009158097207546234, -0.015878476202487946, -0.011276115663349628, 0.004815494176000357, -0.0054815374314785, 0.003982939757406712, -0.010503505356609821, 0.009151436388492584, 0.011609137058258057, 0.008325543254613876, -0.004049544222652912, 0.004029562696814537, -0.014026874676346779, 0.022112641483545303, -0.00621751556172967, -0.026455245912075043, 0.006394017022103071, 0.014772843569517136, 0.003556672018021345, 0.0016784294275566936, -0.0011664085322991014, 0.016717690974473953, 0.012861298397183418, 0.0068602473475039005, -0.021526522934436798, 0.009004906751215458, 0.021073613315820694, -0.02930591069161892, -0.022605514153838158, 0.006603820715099573, 0.016611123457551003, -0.004988665226846933, -0.0271878931671381, -0.008252277970314026, 0.006520565133541822, 0.0009707583230920136, -0.012541597709059715, 0.0009765861323103309, 0.03159710019826889, 0.003873042529448867, -0.014266650192439556, 0.01515914872288704, -0.026828229427337646, -0.004259347915649414, 0.0030704601667821407, -0.015119185671210289, 0.018116381019353867, 0.0023145009763538837, -0.016637764871120453, 0.022192567586898804, -0.009424514137208462, -0.0032053340692073107, 0.011555853299796581, -0.0053849611431360245, 0.004312631208449602, 0.008505374193191528, -0.014453142881393433, 0.022485626861453056, -0.028559941798448563, 0.004549076780676842, -0.01867585815489292, -0.02395092137157917, -0.0013470728881657124, 0.011549193412065506, -0.00677699176594615, 0.028000466525554657, -0.010103878565132618, -0.001426998060196638, -0.041987378150224686, -0.008551998063921928, 0.013640569522976875, -0.02388431690633297, 0.021553166210651398, 0.03391493111848831, -0.010490183718502522, -0.01369385328143835, -0.004352593794465065, -0.16869547963142395, 0.016118250787258148, 0.012288501486182213, -0.018968917429447174, 0.017983172088861465, 0.028719792142510414, 0.027680765837430954, 0.012381747364997864, -0.006783652119338512, 0.0005365812103264034, 0.00983080081641674, -0.011189529672265053, -0.03407478332519531, -0.012674806639552116, -0.022019395604729652, 0.007386421784758568, -0.01862257346510887, -0.0011863898253068328, 0.03338209539651871, 0.011162888258695602, 0.005401612259447575, -0.013134376145899296, 0.014985976740717888, 0.0013304217718541622, 0.013294226489961147, 0.029918670654296875, -0.005787917412817478, 0.004109487868845463, -6.545957876369357e-05, -0.0061609018594026566, -0.009910725988447666, 0.01863589510321617, 0.001004060497507453, -0.019808132201433182, 0.02957232855260372, 0.014772843569517136, -0.002041423227638006, -0.010963074862957, -0.018795745447278023, 0.026668379083275795, 0.01522575318813324, 0.005957758519798517, 0.01846272312104702, -0.02303178235888481, 0.0063107614405453205, 0.01750362105667591, 0.008691866882145405, 0.005238431505858898, 0.015612058341503143, -0.019288618117570877, -0.011582495644688606, -0.0021413296926766634, 0.01850268617272377, 0.0011139576090499759, 0.03601962700486183, 0.01954171434044838, 0.027787331491708755, 0.015425565652549267, 0.002301180036738515, -0.019994623959064484, -0.0006044344045221806, -0.011922177858650684, 0.015838513150811195, -0.007865972816944122, -0.01195547915995121, -0.012788034044206142, -0.01858261227607727, -0.0015277371276170015, -0.03157045692205429, 0.02404416725039482, -0.011555853299796581, 0.00329025462269783, 0.03063799813389778, -0.015838513150811195, -0.006067655514925718, -0.018835708498954773, -0.027654122561216354, 0.013920308090746403, 0.011569174006581306, -0.0011797294719144702, -0.030105162411928177, 0.022605514153838158, -0.023125028237700462, -0.02275204285979271, 0.01206204667687416, 0.008099088445305824, -0.004555737134069204, -0.03617947921156883, -0.02383103407919407, -0.0010473532602190971, 0.008918321691453457, -0.019874736666679382, -0.004219385329633951, -0.0033119008876383305, 0.027654122561216354, 0.013394133187830448, 0.010643374174833298, -0.030771207064390182, 0.024363867938518524, -0.002129673957824707, 0.010203785263001919, -0.014439821243286133, -0.011702382937073708, 0.03487403318285942, 0.034287914633750916, 0.018862349912524223, -0.0068602473475039005, 0.012648164294660091, 0.028853001073002815, 0.005338338203728199, -0.03721850737929344, 0.014279970899224281, 0.019248655065894127, 0.011802289634943008, 0.01749030128121376, 0.0325295627117157, -0.017716756090521812, -0.01754358410835266, 0.024217339232563972, 0.00930462684482336, 0.04478476196527481, -0.003989600110799074, -0.00014840280346106738, 0.0001596422807779163, -0.006297440733760595, -0.0329558290541172, -0.10603411495685577, -0.015065902844071388, -0.008132390677928925, 0.02295185625553131, -0.0027257828041911125, 0.026588452979922295, -0.011336059309542179, 0.017783358693122864, 0.025402896106243134, 0.013254264369606972, -0.02741434797644615, -0.027547556906938553, 0.011635778471827507, -0.015572095289826393, 0.019928019493818283, -0.016757652163505554, -0.016744332388043404, -0.0058745029382407665, 0.0031487203668802977, 0.03181023523211479, -0.000541160290595144, -0.014772843569517136, 0.013540662825107574, -0.023338161408901215, 0.013480719178915024, 0.003579983487725258, -0.041907452046871185, -0.0013129381695762277, 0.026828229427337646, 0.009817480109632015, -0.026868192479014397, -0.01860925368964672, -0.0012230222346261144, 0.0026458576321601868, 0.005055269692093134, -0.017810001969337463, -0.03900350257754326, 0.00035570882027968764, 0.02072727121412754, -0.03045150637626648, 0.0162114966660738, -0.008059125393629074, 0.027707407251000404, -0.03815096616744995, -0.0011447621509432793, 0.006077646277844906, -0.019182050600647926, 0.011749005876481533, 0.00824561808258295, -0.023338161408901215, -0.002950572408735752, 0.021526522934436798, -0.026348678395152092, -0.022605514153838158, 0.0324229933321476, -0.012095348909497261, 0.027840616181492805, 0.003077120753005147, -0.02171301655471325, -0.012395068071782589, -0.013827061280608177, -0.004295980092138052, 0.0033768401481211185, 0.02403084747493267, -0.002759084803983569, -0.002597569487988949, -0.016744332388043404, -0.024337226524949074, 0.02949240244925022, 0.002317831153050065, -0.014772843569517136, 0.005411603022366762, -0.028906285762786865, 0.009471138007938862, -0.019848093390464783, 0.0033185614738613367, -0.030717922374606133, 0.0075063095428049564, -0.011349380016326904, 0.002535960404202342, 0.005774596706032753, -0.030025238171219826, 0.012048725970089436, 0.00460236007347703, 0.00027495104586705565, 0.02285861037671566, 0.00979749858379364, -0.004359254147857428, -0.006880228407680988, -0.03034493885934353, 0.022365737706422806, 0.013787099160254002, -0.019142087548971176, -0.021593127399683, 0.021379994228482246, 0.027760690078139305, 0.008465412072837353, 0.019888056442141533, -0.016025004908442497, 0.008025823161005974, -0.01302114874124527, -0.008252277970314026, -0.06884224712848663, 0.025442859157919884, 0.004006251227110624, 0.006820284761488438, 0.008565318770706654, -0.0007005944498814642, -0.0030837811063975096, -0.024803457781672478, -0.04233372211456299, -0.0036832201294600964, -0.007546272128820419, 0.024217339232563972, -0.010350314900279045, -0.022392380982637405, -0.013347510248422623, 0.005165166687220335, -0.0068602473475039005, -0.00987076386809349, 0.0013046126114204526, 0.005021967459470034, 0.008485393598675728, -0.0017933219205588102, 0.02925262786448002, 0.016064967960119247, -0.0218728668987751, 0.018902312964200974, 0.01149590965360403, 0.006600490305572748, 0.0019465119112282991, -0.011795628815889359, -0.00094744679518044, -0.023298198357224464, 0.02411077171564102, 0.013254264369606972, -0.0018749122973531485, 0.03407478332519531, -0.00218628766015172, -0.0037731360644102097, 0.0004982837126590312, 0.05584108084440231, -0.01193549856543541, -0.006024362985044718, 0.0009191399440169334, -0.012701448053121567, 0.0108964703977108, 0.03551343455910683, -0.00930462684482336, -0.002545950934290886, 0.01462631393224001, -0.015172469429671764, 0.02384435571730137, 0.037404999136924744, 0.0045723882503807545, -0.006457291077822447, 0.0035699927248060703, -0.014839448034763336, 0.02272540144622326, -0.002657513367012143, 0.008298900909721851, -0.03807104378938675, 0.025256367400288582, -0.01940850540995598, 0.015811871737241745, -0.0107965636998415, 0.005631397012621164, -0.030957698822021484, -0.00626080809161067, -0.005631397012621164, -0.022618835791945457, -0.027627481147646904, -0.0036166158970445395, -0.0020847159903496504, 0.013041130267083645, 0.027947181835770607, 0.008924981579184532, 0.030664639547467232, -0.013680531643331051, 0.008964944630861282, -0.036445897072553635, 0.012075367383658886, 0.00013934877642896026, -0.013287566602230072, -0.03143725171685219, 0.007752745412290096, 0.03396821394562721, 0.0009549397509545088, 0.01960831880569458, 0.02171301655471325, 0.00708004180341959, 0.010510165244340897, 0.01948843151330948, -0.01467959675937891, 0.010963074862957, -0.002462695585563779, 0.003719852538779378, 0.008971605449914932, -0.01739705353975296, -0.0030521440785378218, 0.01955503597855568, 0.02941247820854187, -0.007512969896197319, 0.028080390766263008, -0.003020507050678134, -0.015918437391519547, -0.008991586044430733, -0.007073381450027227, -0.012814675457775593, -0.03402149677276611, -0.003623276250436902, 0.015718625858426094, 0.00869852676987648, 0.004535755608230829, 0.03375508263707161, 0.0217263363301754, -0.023404765874147415, 0.014146762900054455, 0.009970670565962791, -0.004266008269041777, -0.01309441402554512, 0.03508716821670532, -0.0024110772646963596, 0.01847604475915432, 0.028053749352693558, -0.003969619050621986, 0.024230660870671272, 0.02826688252389431, 0.028639867901802063, 0.022565551102161407, 0.0012421710416674614, 0.002172966720536351, -0.007073381450027227, -0.007766066584736109, -0.03149053454399109, 0.010916451923549175, 0.0028090381529182196, -0.025549426674842834, -0.0011214506812393665, 0.017996493726968765, -0.029066136106848717, 0.04915400594472885, 0.02508319541811943, -0.0047788615338504314, -0.0009074841509573162, 0.011755666695535183, 0.0327426940202713, 0.033302173018455505, 0.0030671299900859594, 0.005638057831674814, -0.0029106098227202892, 0.010983056388795376, -0.013134376145899296, 0.02060738392174244, -0.01637134701013565, -0.009637648239731789, 0.007865972816944122, -0.005548141896724701, 0.0438789427280426, -0.025389576330780983, -0.015865154564380646, 0.02597569301724434, -0.005128534510731697, 0.03162374347448349, -0.017743397504091263, -0.013487379066646099, -0.006127599626779556, 0.028773076832294464, 0.005491528194397688, -0.0015785229625180364, -0.037378355860710144, -0.0005832042661495507, 0.01037029642611742, -0.011715703643858433, -0.011442625895142555, 0.01734377071261406, 0.0032502920366823673, 0.0023244915064424276, -0.018049776554107666, 0.009344588965177536, -0.00010276841931045055, -0.015705304220318794, -0.005474877078086138, -0.022405700758099556, -0.01735709235072136, -0.020247720181941986, 0.004828814882785082, -0.021313389763236046, 0.006833605468273163, -0.03455433249473572], "7a31b6eb-af47-4d34-9f2a-26ba64b2132b": [0.013127955608069897, -0.015868516638875008, 0.003886917605996132, -0.0020487364381551743, -0.021576903760433197, 0.014037019573152065, -0.02134963870048523, 0.005039958283305168, -0.012078520841896534, -0.023448506370186806, 0.02163037844002247, 0.018248125910758972, 0.022138385102152824, 0.0041442629881203175, 0.0026837445329874754, 0.020266782492399216, 0.043180547654628754, -0.012539737857878208, 0.04585426300764084, -0.021937856450676918, 0.00893690250813961, -0.0013594185002148151, 0.0013360234443098307, 0.025400321930646896, -0.02515968680381775, 0.02871573157608509, 0.025253266096115112, -0.011115983128547668, 0.013301746919751167, -0.012887321412563324, -0.010587923228740692, 0.009872703813016415, -0.0033020416740328074, -0.007245775777846575, -0.024170411750674248, -0.0015566052170470357, 0.007018509786576033, -0.004364844877272844, -0.00024272347218357027, -0.011115983128547668, 0.001682771253399551, 0.006132840644568205, -0.006025892216712236, 0.010280446149408817, -0.016697369515895844, 0.017753487452864647, -0.023849565535783768, -0.01946466788649559, -0.028929628431797028, 0.008629425428807735, 0.029785219579935074, 0.0073995147831737995, -0.029410898685455322, 0.025386953726410866, -0.013355221599340439, 0.002648651832714677, 0.007920890115201473, -0.004421661142259836, -0.009231011383235455, 0.02642970345914364, 0.015828410163521767, 0.007359408773481846, 0.005126854404807091, 0.006079366430640221, -0.03986513614654541, -0.012111942283809185, -0.01626957394182682, -0.009104009717702866, -0.024063462391495705, 0.004234501160681248, 0.036870572715997696, 0.02205817401409149, -0.017954016104340553, 0.0021657117176800966, 0.01102240290492773, -0.04612163454294205, -0.03882238641381264, 0.005434331949800253, -0.013355221599340439, 0.01260658074170351, -0.004525267984718084, -0.025320108979940414, -0.002230883575975895, 0.011617304757237434, 0.017780225723981857, -0.004254553932696581, -3.3734802855178714e-05, 0.019237400963902473, 0.0025968486443161964, -0.023782722651958466, 0.02196459285914898, 0.01780696213245392, -0.0020871711894869804, 0.01876950077712536, 0.006670926697552204, 0.011055824346840382, -0.027017921209335327, 0.02994564175605774, -0.014250917360186577, -0.019504772499203682, -0.023114291951060295, -0.012519684620201588, -0.015266929753124714, -0.008408843539655209, -0.023087555542588234, 0.005798626225441694, 5.0967748393304646e-05, -0.008181577548384666, 0.012559790164232254, -0.013154692947864532, -0.010240339674055576, 0.0289831031113863, -0.0029511163011193275, -0.02683076076209545, -0.018675919622182846, -0.015066401101648808, 0.03850153833627701, 0.005143565125763416, -0.01098229642957449, -0.016496840864419937, -0.0010594608029350638, 0.026269279420375824, -0.014879240654408932, -0.01372954249382019, 0.014023651368916035, 0.012780372053384781, -0.013328484259545803, -0.03449096158146858, -0.02066783979535103, -0.006644189357757568, 0.04200411215424538, -0.0040506827645003796, -0.011476934887468815, 0.004020603373646736, -0.02066783979535103, 0.004638900980353355, -0.01915718987584114, -0.0021189216058701277, -0.013094534166157246, -0.036496251821517944, 0.028795942664146423, 0.010440869256854057, -0.00829521007835865, -0.0249190516769886, -0.010353973135352135, 0.017994122579693794, 0.0039370497688651085, 0.008382106199860573, -0.019932568073272705, 0.007579990662634373, 0.019518142566084862, -0.007780519314110279, 0.0069048767909407616, -0.019945936277508736, 0.02459820546209812, 0.010093285702168941, 0.01621609926223755, 0.003987181931734085, 0.007025194354355335, -0.014772292226552963, 0.0026570071931928396, 0.03481180965900421, 0.006233104970306158, 0.004582084249705076, 0.018635815009474754, 0.03355516120791435, -0.007299250457435846, -0.024785365909337997, -0.008348684757947922, -0.021764064207673073, 0.004308028146624565, 0.030426912009716034, -0.032405462116003036, 0.017031583935022354, -0.013809753581881523, 0.024036725983023643, 0.02775319293141365, 0.03248567506670952, -0.01132319588214159, 0.012018362991511822, -0.0406939871609211, 0.0018415233353152871, 0.012800425291061401, 0.028876155614852905, -0.023528719320893288, -0.0025701115373522043, -0.015066401101648808, -0.010935506783425808, 0.03125576302409172, 0.006563977804034948, -0.011490303091704845, 0.016349785029888153, 0.0005685828509740531, -0.011851254850625992, -0.6339920163154602, -0.014197442680597305, -0.02137637510895729, -0.011089245788753033, 0.003866864601150155, 0.007519831880927086, 0.008769795298576355, 0.011537093669176102, 0.010394078679382801, 0.0106681352481246, -0.029090052470564842, 0.029785219579935074, 0.0012783714337274432, -0.01497282087802887, -0.034892018884420395, -0.0022826867643743753, -0.009378066286444664, -0.020921843126416206, 0.004287975374609232, -0.020306888967752457, -0.010253708809614182, 0.020975317806005478, -0.0022609627339988947, 0.0058186789974570274, 0.011410092003643513, 0.0175128523260355, 0.031068604439496994, 0.01598883420228958, 0.004842771682888269, 0.02201806753873825, -0.014919347129762173, 0.04261906445026398, 0.013656014576554298, 0.017285587266087532, 0.05042632296681404, -0.019865725189447403, -0.013916702009737492, 0.04296664893627167, 0.0038768912199884653, 0.023194504901766777, -0.024050094187259674, -0.022860288619995117, 0.027806667611002922, 0.011884676292538643, 0.023114291951060295, 0.008382106199860573, 0.010955560021102428, -8.7992477347143e-05, 0.013656014576554298, 0.01947803609073162, 0.0033555161207914352, 0.004047340713441372, 0.0018749447772279382, 0.007981047965586185, -0.023769352585077286, -0.0070318784564733505, 0.03368884697556496, 0.00026486520073376596, 0.008101365529000759, -0.00020105106523260474, -0.011537093669176102, 0.00939811859279871, -0.002179080154746771, 0.0061361826956272125, -0.005674966610968113, 0.024477887898683548, 0.0058186789974570274, 0.010922138579189777, -0.003196764038875699, -0.0213362704962492, 0.011229615658521652, 0.014879240654408932, 0.010327235795557499, -0.02231217734515667, 0.0087898476049304, 0.0035961507819592953, 0.03785984590649605, -0.013148008845746517, 0.02453136257827282, 0.006510503590106964, 0.007981047965586185, -0.029063314199447632, -0.027539296075701714, -0.016831055283546448, 0.021750696003437042, -0.009358013048768044, -0.030533859506249428, 0.025306740775704384, -0.0029578006360679865, -0.021189214661717415, -0.011236299760639668, 0.009331275708973408, 0.002732205670326948, 0.004057367332279682, 0.04304686188697815, 0.01981225050985813, -0.015708092600107193, -0.004896246362477541, 0.012720213271677494, -0.027619507163763046, -0.012673423625528812, -0.021510060876607895, -0.0135356979444623, -0.00956522673368454, 0.010374026373028755, -0.005785257555544376, -0.04470456391572952, -0.015413984656333923, 0.03927691653370857, -0.03277978301048279, -0.006761164404451847, -0.0008881757385097444, -0.012466209940612316, -0.010594607330858707, 0.0028174303006380796, -0.01851549744606018, 0.008702952414751053, 0.0043848976492881775, 0.012492947280406952, -0.00876311119645834, 0.010514396242797375, -0.0029561296105384827, 0.006985088344663382, -0.005865469109266996, 0.010795136913657188, 0.04296664893627167, 0.012272365391254425, 0.0046723224222660065, -0.01050771214067936, -0.011109298095107079, 0.004575400147587061, -0.016055677086114883, 0.018020858988165855, -0.00557470228523016, 0.01562788151204586, -0.018970029428601265, 0.01421081181615591, -0.0014571762876585126, 0.014799029566347599, -0.015868516638875008, -0.022138385102152824, 0.016737474128603935, 0.015333772636950016, 0.01851549744606018, -0.015173349529504776, -0.047378282994031906, -0.02356882393360138, -0.008983692154288292, -0.033047154545784, 0.008662846870720387, -0.023796090856194496, -0.01384985912591219, -0.0021690537687391043, 0.011851254850625992, 0.006192999426275492, -0.00989944115281105, -0.009284486062824726, -0.014357865788042545, 0.005738467443734407, -0.009732333943247795, 0.020507417619228363, 0.026015276089310646, -0.028876155614852905, 0.004110841546207666, 0.015213456004858017, -0.01844865456223488, -0.014545026235282421, -0.001427097013220191, -0.020494049414992332, -0.020961949601769447, -0.005126854404807091, -0.031068604439496994, 0.010273761115968227, 0.031175551936030388, -0.017151901498436928, -0.0018983398331329226, -0.005631518550217152, -0.029250474646687508, -0.016336416825652122, 0.011918097734451294, -0.02395651303231716, -0.0022943844087421894, -0.013943439349532127, -0.014264285564422607, 0.03433053940534592, 0.010427500121295452, 0.007065299898386002, -0.0071923015639185905, 0.007493095006793737, 0.034009695053100586, 0.008054575882852077, 0.008261788636446, 0.0046723224222660065, -0.006821323186159134, 0.004525267984718084, -0.012499631382524967, 0.0019000108586624265, 0.017673276364803314, 0.006410238798707724, 0.03540002554655075, 0.011737622320652008, 0.006660900078713894, 0.03187071904540062, 0.019036872312426567, 0.010434184223413467, -0.03192419186234474, 0.0006588208489120007, -0.009632069617509842, 0.031015129759907722, -0.012212207540869713, -0.011490303091704845, -0.02356882393360138, -0.00167525140568614, -0.02045394293963909, 0.014919347129762173, 0.0035125971771776676, 0.022125016897916794, -0.009070588275790215, 0.00799441710114479, 0.0056448872201144695, 0.018689289689064026, -0.012940795160830021, -0.017619801685214043, 0.005424305330961943, -0.010634713806211948, -0.0020855001639574766, 0.006944982800632715, 0.020587628707289696, 0.01593535952270031, -0.013823122717440128, 0.033608634024858475, 0.0012307458091527224, -0.011851254850625992, 0.0070786685682833195, 0.004505214747041464, 0.006416923366487026, -0.004401608370244503, -0.01545409020036459, 0.013809753581881523, -0.01974540762603283, 0.0037164681125432253, 0.0006287415162660182, 0.007854046300053596, -0.025320108979940414, -0.0022375676780939102, 0.017071690410375595, 0.020681209862232208, 0.0027556007262319326, 0.01977214403450489, 0.026028644293546677, -0.01166409533470869, 0.01915718987584114, -0.019397825002670288, -0.00847568642348051, 0.008829954080283642, -0.04999852553009987, -0.0054844641126692295, 0.016109151765704155, 0.00429131742566824, 0.022873658686876297, -0.0004775093402713537, 0.009170852601528168, -0.013422064483165741, 0.0031666848808526993, 0.04499867558479309, 0.0094048036262393, 0.008709636516869068, 0.010741662234067917, -0.02616233192384243, -0.04085441306233406, -0.020266782492399216, -0.019825618714094162, 0.009043850935995579, -0.005718414671719074, 0.015841780230402946, -0.021242689341306686, 0.017031583935022354, 0.0051970393396914005, 0.01629631221294403, -0.009845966473221779, -0.0032468964345753193, -0.0337957963347435, 0.023181134834885597, 0.016657263040542603, -0.001468038302846253, -0.00812141876667738, -0.017058320343494415, -0.006189657375216484, -0.01848876103758812, 0.03542676568031311, -0.018261494114995003, 0.006627478636801243, 0.019678564742207527, -0.020600996911525726, -0.012045099399983883, 0.002058762824162841, 0.014224180020391941, -0.02141648158431053, 0.017633169889450073, -0.0038835755549371243, 0.012158732861280441, 0.008248420432209969, -0.02618906833231449, 0.010882032103836536, -0.0005652406834997237, -0.012666739523410797, -0.0175796952098608, -0.009979652240872383, 0.009210959076881409, -0.01663052663207054, -0.00026089639868587255, -0.03449096158146858, -0.001883300137706101, 0.023675773292779922, -0.0059323119930922985, -0.002418043790385127, -0.005848758388310671, 0.022766709327697754, 0.01050771214067936, -0.01209188997745514, 0.00047458495828323066, -0.012018362991511822, -0.025440426543354988, -0.0027840088587254286, 0.09775113314390182, 0.019050240516662598, -0.027205081656575203, 0.004234501160681248, 0.005705046001821756, 0.007633464876562357, -0.014999558217823505, -0.026282647624611855, 0.01850212924182415, 0.004578742198646069, 0.024785365909337997, -0.010734978131949902, 0.019504772499203682, -0.014037019573152065, 0.024972526356577873, -0.0027154949493706226, -0.012847214937210083, -0.0045553469099104404, -0.00662079406902194, -0.005474437493830919, -0.003041354240849614, 0.006911561358720064, 0.013669383712112904, 0.03911649435758591, -0.03566739708185196, -0.00614955136552453, 0.016724105924367905, -0.01149698719382286, 0.03184398263692856, -0.01823475770652294, -0.014304391108453274, 0.00956522673368454, 0.029571320861577988, 0.034277066588401794, -0.00478261336684227, 0.01687116175889969, 0.0005652406834997237, 0.00614955136552453, 0.006440318189561367, 0.007653518114238977, 0.015387247316539288, 0.014611869119107723, 0.02076142095029354, -0.013716173358261585, 0.005835389718413353, -0.0019000108586624265, 0.004859482403844595, 0.011263037100434303, -0.012192154303193092, -0.008469002321362495, 0.05042632296681404, -0.01788717322051525, -0.023662405088543892, -0.034223590046167374, 0.04411634802818298, -0.011283090338110924, -1.571853681525681e-05, 0.016483470797538757, -0.006169604603201151, 0.02360893040895462, 0.00019259125110693276, -0.016055677086114883, -0.00815484020859003, -0.014157337136566639, 0.007025194354355335, -0.02519979327917099, -0.022472599521279335, -0.004505214747041464, -0.028822680935263634, 0.004040656611323357, -0.0027556007262319326, -0.009464961476624012, -0.040292929857969284, 0.014758924022316933, 0.023702509701251984, 0.009799176827073097, 0.013301746919751167, -0.01660378836095333, 0.004732480738312006, 0.00925774872303009, -0.01660378836095333, -0.03646951541304588, 0.010848610661923885, -0.004849456250667572, 0.0005464411224238575, -0.0003596986352931708, 0.02134963870048523, 0.008689583279192448, -0.0255340076982975, 0.014464814215898514, 0.016376523301005363, 0.024959158152341843, -0.002030354691669345, 0.006985088344663382, 0.012553106062114239, 0.003957102540880442, 0.00262692803516984, 0.0017044952837750316, 0.00954517349600792, -0.005902232602238655, 0.01181783340871334, -0.05780578404664993, 0.0027037973050028086, -0.008181577548384666, 0.007045247126370668, -0.010260392911732197, 0.007299250457435846, 0.026282647624611855, -0.02356882393360138, -0.028261199593544006, 0.0018699315842241049, -0.014157337136566639, -0.0023562139831483364, 0.005430989898741245, -0.007279197219759226, 0.017352430149912834, 0.021256057545542717, 0.025092843919992447, -0.012018362991511822, 0.013422064483165741, 0.0031900799367576838, -0.015494195744395256, 0.005006536841392517, -0.00032314390409737825, -0.02772645652294159, 0.00047542050015181303, 0.020855000242590904, -0.016790948808193207, 0.0008622740861028433, -0.001582506811246276, 0.03096165508031845, 0.029838694259524345, 0.014585131779313087, -0.025306740775704384, -0.03705773130059242, 0.0020938555244356394, -0.025092843919992447, -0.004699059296399355, -0.0016242837300524116, -0.0008351191063411534, -0.013041059486567974, 0.0015800002729520202, -0.014611869119107723, -0.032966941595077515, 0.00908395741134882, -0.031095340847969055, -0.008863375522196293, -0.0181278083473444, 0.012031731195747852, 0.002687086584046483, -0.024050094187259674, -0.028207724913954735, -0.025306740775704384, 0.0019183927215635777, -0.01596209593117237, -0.024157041683793068, 0.0005117663531564176, -0.017446009442210197, 0.038127217441797256, -0.01657705195248127, 0.03371558338403702, 0.0015156639274209738, 0.008910165168344975, 0.010955560021102428, 0.0029110105242580175, 0.001856562914326787, 0.0033588584046810865, -0.01212531141936779, -0.028608782216906548, -0.008248420432209969, 0.0019584984984248877, 0.033929482102394104, 0.0271382387727499, 0.01716526970267296, -0.002842496382072568, 0.03414338082075119, -0.01978551410138607, -0.010734978131949902, -0.011697516776621342, -0.03601498156785965, -0.013956808485090733, 0.00127335824072361, -0.025280004367232323, 0.006236447487026453, -0.02328808419406414, 0.00445174053311348, 0.050854116678237915, 0.013495591469109058, 0.009966284036636353, -0.007940942421555519, 0.017111795023083687, -0.024370940402150154, 0.004057367332279682, -0.005210408009588718, 0.032993681728839874, 0.002138974377885461, 0.01561451330780983, 0.002994564129039645, -0.0017746803350746632, -0.012051784433424473, -0.004104156978428364, -0.012553106062114239, 0.008489054627716541, -0.034624647349119186, -0.028635520488023758, 0.013422064483165741, -0.020333625376224518, -0.00939811859279871, 0.015039663761854172, -0.020828263834118843, -0.012178786098957062, -0.015012926422059536, 0.007740413770079613, -0.035239603370428085, -0.021790802478790283, -0.010501028038561344, -0.01594872772693634, 0.014772292226552963, -0.02165711671113968, -0.008950270712375641, -0.006644189357757568, -0.00028470918186940253, 0.05866137519478798, 0.006553951185196638, 0.03342147544026375, 0.002270989352837205, -0.014157337136566639, -0.001285891281440854, 0.009912809357047081, 6.449300417443737e-05, -0.011109298095107079, 0.02487894706428051, 0.016349785029888153, -0.005350778345018625, -0.0032936863135546446, -0.017071690410375595, 0.01225231308490038, -0.04558689147233963, -0.017673276364803314, 0.0027489163912832737, -0.005090090911835432, -0.02173732779920101, -0.004348134156316519, -0.006757822353392839, -0.012760319747030735, 0.0015866846079006791, -0.005303988233208656, 0.014317760244011879, -0.026055382564663887, -0.016135888174176216, -0.032940205186605453, -0.014264285564422607, 0.015761567279696465, 0.018729394301772118, 0.042271483689546585, -0.010053180158138275, -0.012218891642987728, 0.008348684757947922, -0.026576757431030273, 0.0032468964345753193, -0.014718817546963692, 0.015721462666988373, -0.00829521007835865, 0.004277948755770922, -0.005019905511289835, -0.006911561358720064, -0.007573306560516357, 0.0060593136586248875, -0.0049564046785235405, 0.02260628528892994, 0.021804170683026314, -0.0010076574981212616, 0.012152048759162426, 0.013007638044655323, 0.012539737857878208, 0.010534449480473995, -0.004411634989082813, -0.016456734389066696, -0.00606933981180191, 0.0003511343675199896, -0.00043447918142192066, 0.013174745254218578, -0.004324738867580891, -0.030988391488790512, -0.010066548362374306, -0.03122902661561966, -0.007620096206665039, -0.015280298888683319, -0.015053032897412777, -0.050560008734464645, -0.012994269840419292, -0.003993866499513388, -0.013482223264873028, 0.008823269978165627, -0.004819376859813929, 0.012887321412563324, -0.00971896480768919, 0.030079327523708344, -0.025627586990594864, 0.019371086731553078, -0.009872703813016415, 0.0010970599250867963, -0.04013250768184662, 0.007406198885291815, 0.03026648797094822, -0.016069045290350914, 0.0043381075374782085, -0.0075599378906190395, -0.025079475715756416, 0.01716526970267296, 0.028180988505482674, 0.0004221550188958645, -0.011891361325979233, -0.006269868928939104, 0.0074463048949837685, -0.009765755385160446, 0.010734978131949902, -0.0175796952098608, -0.016764212399721146, 0.02967827022075653, 0.019250769168138504, 0.0005272238049656153, -0.0002197462017647922, -0.01938445493578911, 0.02429072931408882, -0.0040172613225877285, 0.007546569220721722, -0.0010745003819465637, -0.04411634802818298, 0.017125163227319717, -0.013094534166157246, 0.024665048345923424, 0.00895695574581623, -0.0019334323005750775, -0.014130599796772003, -0.03154987469315529, -0.0214031133800745, 0.005751836113631725, -0.000596155587118119, -0.01818128302693367, 0.012272365391254425, 0.02962479554116726, -0.005430989898741245, -0.014077125117182732, -0.003485859837383032, -0.0018899844726547599, -0.006831349804997444, -0.01022028736770153, -0.04310033470392227, 0.0008526653982698917, -0.005825363099575043, 0.04684353992342949, -0.00959864817559719, -0.019250769168138504, -0.004822718910872936, -0.02618906833231449, -0.02168385311961174, -0.0048294030129909515, 0.011356617324054241, 0.014291022904217243, 0.04208432137966156, 0.018301600590348244, 0.010962244123220444, 0.025614218786358833, -0.00893690250813961, 0.007981047965586185, -0.013381958939135075, 0.007118774112313986, 0.016162626445293427, 0.0021941198501735926, -0.0030697626061737537, 0.0024765313137322664, -0.014291022904217243, 0.011390038765966892, 0.02514631859958172, -0.02069457806646824, -0.005872153211385012, 0.0072725131176412106, -0.010708240792155266, 0.01590862311422825, -0.005591413006186485, -0.001667731674388051, 0.01787380501627922, -0.016135888174176216, 0.006771191023290157, -0.024932419881224632, -0.00023311479890253395, -0.0069516669027507305, -0.004331423435360193, -0.034945495426654816, -0.03582782298326492, -0.0043848976492881775, -0.015587775968015194, 0.005223776679486036, -0.040319666266441345, -0.00398049782961607, 0.0018732737516984344, -0.012947479262948036, 0.049624208360910416, 0.015748199075460434, -0.001608408521860838, 0.026282647624611855, 0.005327383056282997, -0.0264564398676157, 0.01209188997745514, 0.0356406606733799, 0.016456734389066696, -0.028929628431797028, 0.005785257555544376, -0.020881738513708115, 0.004164315760135651, 0.003923681098967791, -0.0038635225500911474, -0.014277654699981213, 0.002922707935795188, 0.0037064417265355587, -0.0029494452755898237, -0.019919199869036674, 0.03433053940534592, 0.009886072017252445, -0.0035059128422290087, -0.013996914029121399, 0.01725885085761547, 0.0006947489455342293, 0.019531510770320892, -0.003987181931734085, -0.02423725463449955, -0.017125163227319717, -0.0071120900101959705, 0.014665343798696995, 0.025306740775704384, -0.004030629992485046, -0.02077478915452957, 0.027566032484173775, -0.02965153381228447, 0.010721608996391296, 0.1986037790775299, -0.005407594610005617, 0.004695717245340347, 0.028635520488023758, -0.022098280489444733, -0.0035961507819592953, 0.035506974905729294, 0.003559387056156993, 0.01546745840460062, -0.007600043434649706, -0.01721874438226223, 0.007600043434649706, 0.010427500121295452, 0.006226420868188143, 0.009919494390487671, -0.007854046300053596, -0.038153957575559616, -0.006911561358720064, -0.012566475197672844, -0.048287346959114075, -0.004836087580770254, -0.02708476409316063, -0.01356911938637495, -0.017472747713327408, 0.015788305550813675, 0.0006542253540828824, -0.008569266647100449, -0.0010277103865519166, 0.023796090856194496, 0.00636679120361805, -0.024771997705101967, 0.001990248914808035, 0.010313867591321468, -0.004201079253107309, -0.022579548880457878, -0.012887321412563324, 0.03122902661561966, -0.0034223590046167374, 0.017285587266087532, -0.004976457916200161, -0.0006391857168637216, 0.000575684942305088, 0.01002644281834364, -0.002962813712656498, -0.029437635093927383, 0.04433024674654007, -0.01565461978316307, -0.030052591115236282, -0.002418043790385127, 0.013956808485090733, -0.03315410390496254, 0.035239603370428085, 0.030186276882886887, 0.019063608720898628, 0.00612615654245019, -0.007539884652942419, -0.011991625651717186, 0.0287424698472023, 0.0014496565563604236, -0.00863610953092575, -0.002834141021594405, 0.02903657779097557, -0.015480827540159225, 0.008575950749218464, -0.010775083675980568, 0.012960848398506641, -0.00111293513327837, -0.0057250987738370895, 0.010053180158138275, -0.026282647624611855, -0.009110693819820881, -0.03064080886542797, -0.012325840070843697, 0.013669383712112904, 0.0017479431116953492, -0.007566621992737055, 0.013422064483165741, -0.007406198885291815, 0.026068750768899918, 0.0009759070817381144, 0.01910371519625187, -0.012466209940612316, -0.008850006386637688, -0.016376523301005363, -0.016135888174176216, -0.024116937071084976, 0.00987938791513443, 0.00021034640667494386, -0.011283090338110924, 0.01181783340871334, -0.014758924022316933, -0.020574260503053665, 0.0094048036262393, -0.017071690410375595, 0.00036074305535294116, -0.0009591963607817888, 0.015026295557618141, -0.0006868113414384425, 0.0017863778630271554, -0.001943458802998066, 0.008034522645175457, -0.02839488536119461, 0.041656527668237686, -0.012987585738301277, -0.013756278902292252, -0.0029928931035101414, 0.002753929467871785, 0.011971572414040565, 0.0027372187469154596, -0.016055677086114883, 0.021189214661717415, 0.01052108034491539, -0.013555750250816345, -0.026683706790208817, 0.0010226971935480833, 0.03470486029982567, -0.027271924540400505, -0.024157041683793068, -0.001863247249275446, 0.0094048036262393, 0.0019468009704723954, -0.029143527150154114, -0.00842221174389124, 0.010013073682785034, 0.005090090911835432, -0.018274862319231033, 0.0012624962255358696, 0.02521316148340702, -0.0036596516147255898, -0.02069457806646824, 0.03574761003255844, -0.0273788720369339, -0.0156679879873991, -0.005394225940108299, -0.016991477459669113, 0.01977214403450489, -0.001607573009096086, -0.02011972852051258, 0.020961949601769447, -0.000790835649240762, -0.004712427966296673, 0.0051168277859687805, -0.007793887984007597, 0.015026295557618141, -0.01481239777058363, -0.019651828333735466, 0.024691786617040634, -0.015881884843111038, 0.007807256653904915, -0.022579548880457878, -0.034865282475948334, 0.008201629854738712, -0.0017145216697826982, -0.006751138251274824, 0.021603642031550407, -0.010908769443631172, -0.007793887984007597, -0.04080093652009964, 0.011202878318727016, 0.013649330474436283, -0.02421051636338234, 0.013442117720842361, 0.033047154545784, -0.0060559711419045925, -0.023221241310238838, 0.002727192360907793, -0.16929982602596283, 0.00938475038856268, 0.008308579213917255, -0.010160128585994244, 0.021830907091498375, 0.01919729635119438, 0.040640514343976974, 0.0017713381676003337, -0.004227816592901945, -0.00042445273720659316, 0.020280150696635246, -0.0073995147831737995, -0.04042661562561989, -0.019264139235019684, -0.022098280489444733, 0.003128250129520893, -0.01338864304125309, 0.011443513445556164, 0.036843836307525635, 0.00874305795878172, 0.020855000242590904, -0.011075876653194427, 0.013836490921676159, 0.004488504026085138, 0.013301746919751167, 0.0239297766238451, -0.010534449480473995, 0.02005288563668728, 0.00923769548535347, -0.009210959076881409, -0.030480384826660156, 0.006279895082116127, -0.01196488831192255, -0.003121565794572234, 0.021282795816659927, 0.02195122465491295, 0.004983142018318176, -0.012546421959996223, -0.008261788636446, 0.020627735182642937, 0.00939811859279871, 0.008235051296651363, 0.02005288563668728, -0.011383354663848877, 0.007573306560516357, 0.02487894706428051, -0.0025483875069767237, 0.009204274043440819, 0.025894958525896072, -0.022846920415759087, -0.008174892514944077, -0.01437123492360115, 0.011029087007045746, 0.004298001527786255, 0.026924340054392815, 0.004284633323550224, 0.021149110049009323, 0.01306779682636261, -0.009210959076881409, -0.015119875781238079, -0.013194798491895199, 8.966355380835012e-05, 0.011249668896198273, -0.01225231308490038, 0.0127335824072361, -0.00876311119645834, -0.022245334461331367, -0.0032753045670688152, -0.04887556657195091, 0.005497832782566547, -0.02650991454720497, 0.0009550186805427074, 0.0305873341858387, -0.010648082010447979, 0.007426251657307148, -0.009678859263658524, -0.023074187338352203, 0.024945789948105812, 0.021510060876607895, -0.0025032684206962585, -0.038715437054634094, 0.03355516120791435, -0.024745261296629906, -0.012813793495297432, -0.00339060858823359, 0.017285587266087532, -0.012599896639585495, -0.026630232110619545, -0.01977214403450489, 0.008228367194533348, 0.006176288705319166, -0.023408401757478714, -0.015734830871224403, 0.0001714939426165074, 0.025106212124228477, 0.003337134374305606, 0.010815189220011234, -0.02138974517583847, 0.013114587403833866, 0.005100117065012455, -0.004986484069377184, -0.011757674627006054, -0.01308785006403923, 0.043501392006874084, 0.026603493839502335, -0.0011847913265228271, -0.005561333615332842, 0.01844865456223488, 0.03483854606747627, 0.006931614130735397, -0.01084192655980587, 0.014063756912946701, 0.004294659476727247, 0.004575400147587061, 0.004227816592901945, 0.0305873341858387, -0.011864623986184597, -0.016817687079310417, 0.021523430943489075, -0.010467605665326118, 0.055987656116485596, 0.00390028627589345, 0.004130894318223, 0.008943586610257626, -0.004999852739274502, -0.03355516120791435, -0.10946201533079147, -0.021510060876607895, -0.007820624858140945, 0.0197320394217968, -0.004745849408209324, 0.018622446805238724, -0.0022091595456004143, 0.012078520841896534, 0.019344350323081017, 0.003479175502434373, -0.02715160697698593, -0.038127217441797256, -0.0021891065407544374, -0.008321947418153286, 0.02868899516761303, -0.02260628528892994, -0.003410661593079567, -0.010353973135352135, 0.012813793495297432, 0.03850153833627701, 0.008188261650502682, -0.014518288895487785, 0.008676215074956417, -0.02387630194425583, 0.011055824346840382, -0.006413581315428019, -0.04045335575938225, -0.0009291170281358063, 0.02423725463449955, 0.009043850935995579, -0.01977214403450489, -0.0028358122799545527, -0.004638900980353355, 0.004040656611323357, -0.013863228261470795, -0.009391434490680695, -0.04304686188697815, 0.00678121717646718, 0.022739971056580544, -0.017940647900104523, 0.0248522087931633, -0.004572057630866766, 0.030774494633078575, -0.023074187338352203, 0.0033187526278197765, -0.010480974800884724, -0.02836814895272255, 0.014518288895487785, 0.001762982807122171, -0.030132802203297615, -0.010935506783425808, 0.026991182938218117, -0.015681356191635132, -0.005150249227881432, 0.03160334751009941, -0.03481180965900421, 0.03785984590649605, 0.008067944087088108, -0.007760466542094946, -0.011356617324054241, -0.009110693819820881, -0.0019150505540892482, -0.007038562558591366, 0.025747904554009438, 0.00041024861275218427, -0.00875642616301775, -0.028929628431797028, -0.01755295880138874, 0.0324321985244751, -0.014705449342727661, -0.012332524172961712, -0.003689731005579233, -0.020159833133220673, 0.012399367056787014, -0.030213013291358948, 0.0007540720398537815, -0.023047449067234993, -0.0033070549834519625, 0.0006843046867288649, -0.008201629854738712, -0.009752386249601841, -0.01910371519625187, 0.021857645362615585, 0.004077420104295015, -0.0029962353873997927, 0.010146760381758213, 0.006985088344663382, -0.0036429408937692642, -0.008723004721105099, -0.020320257171988487, -0.0029260502196848392, 0.015801673755049706, -0.02582811564207077, -0.02807403914630413, 0.026630232110619545, 0.03261936083436012, -0.0023545429576188326, 0.002304410794749856, -0.004448398482054472, -0.006557293701916933, -0.018983397632837296, -0.012987585738301277, -0.061976782977581024, 0.023528719320893288, 0.01782033033668995, 0.014438077807426453, -0.0034323856234550476, 0.005217092111706734, -0.003402306232601404, -0.005280592944473028, -0.025253266096115112, -0.003449096344411373, 0.005297303665429354, 0.022485969588160515, -0.01782033033668995, -0.03128249943256378, -0.015507564879953861, -0.004943036008626223, -0.009852650575339794, -0.012238943949341774, -0.0005949022597633302, -0.013034375384449959, 0.014264285564422607, -0.001546578831039369, 0.0072858817875385284, -0.0034524383954703808, 0.010768399573862553, -0.003281988902017474, 0.018916554749011993, 0.012118627317249775, 0.016804317012429237, -0.008335315622389317, 0.013127955608069897, -0.028207724913954735, 0.013348537497222424, 0.013321800157427788, -0.00030121105373837054, 0.028287936002016068, -0.006179630756378174, 0.00016658517415635288, 0.01038071047514677, 0.049570731818675995, -0.005517885554581881, -0.007392830215394497, -0.005888863932341337, -0.031416185200214386, 0.011717569082975388, 0.045453205704689026, -0.003566071391105652, 0.0022275412920862436, 0.00398049782961607, -0.00429131742566824, 0.011062508448958397, 0.03026648797094822, 0.007359408773481846, -0.013221535831689835, -0.018756132572889328, -0.01981225050985813, 0.023822827264666557, 0.010213603265583515, 0.0073193032294511795, -0.015721462666988373, 0.023194504901766777, -0.01719200611114502, 0.021443217992782593, -0.005848758388310671, 0.022552812471985817, -0.024745261296629906, -0.007613412104547024, 0.0021941198501735926, -0.020266782492399216, -0.029892167076468468, 0.005247171502560377, -0.005283935461193323, 0.0035760977771133184, 0.022873658686876297, 0.003417345928028226, 0.02327471598982811, 0.001587520120665431, -0.010273761115968227, -0.03548023849725723, 0.018060965463519096, -0.00047625601291656494, 0.002384622348472476, -0.05355457216501236, 0.011563830077648163, 0.02743234671652317, -0.011537093669176102, 0.01725885085761547, 0.02292713150382042, 0.004231158643960953, 0.011517040431499481, 0.01214536465704441, -0.012038415297865868, 0.019584985449910164, -0.023836195468902588, -0.0017730093095451593, 0.03160334751009941, -0.018301600590348244, 0.004869509022682905, 0.02486557699739933, 0.014825766906142235, -0.01624283753335476, 0.020494049414992332, -0.008910165168344975, -0.011202878318727016, -0.005842073820531368, -0.010554501786828041, -0.005123512353748083, -0.04374202713370323, -0.00799441710114479, 0.010848610661923885, 0.004849456250667572, 0.014357865788042545, 0.008890112861990929, 0.02100205607712269, 0.005026590079069138, 0.015173349529504776, 0.00971896480768919, -0.0077671511098742485, -0.016403259709477425, 0.030426912009716034, 0.009371382184326649, 0.025119580328464508, 0.023983251303434372, 0.0013376945862546563, 0.028287936002016068, 0.015801673755049706, 0.02360893040895462, 0.001648514298722148, 0.014839135110378265, -0.0017562985885888338, 0.004277948755770922, 0.004685691092163324, -0.054971642792224884, 0.009478330612182617, 0.008856691420078278, -0.034303802996873856, -0.0004578742082230747, 0.018689289689064026, -0.0041776844300329685, 0.038100481033325195, 0.013943439349532127, -0.01433112844824791, 0.008970323950052261, 0.01324158813804388, 0.025761272758245468, 0.02994564175605774, 0.009197589941322803, 0.0034591227304190397, -0.014745554886758327, 0.02006625384092331, -0.0232479777187109, 0.023742616176605225, -0.0062163942493498325, -0.010046495124697685, 0.008308579213917255, -0.007412883453071117, 0.03433053940534592, -0.03895607218146324, -0.00517364451661706, 0.002270989352837205, -0.010280446149408817, 0.03505244478583336, 0.010287130251526833, 0.0010193550260737538, -0.005534596275538206, 0.019558247178792953, 0.013970176689326763, -0.005424305330961943, -0.03408990427851677, -0.006122814491391182, 0.011590567417442799, -0.00581533694639802, -0.01054113358259201, 0.01816791482269764, -0.004722454585134983, 0.005123512353748083, -0.01749948412179947, 0.006079366430640221, 0.005210408009588718, -0.010260392911732197, -0.0010293814120814204, -0.01846202276647091, -0.01879623718559742, 0.0062665268778800964, -0.010006389580667019, -0.02236565202474594, -0.01304774358868599, -0.020159833133220673], "faa0d074-69af-4556-b6d5-0e11f5deacaa": [0.018466783687472343, -0.02269165776669979, -0.00699829775840044, 0.005758093204349279, -0.024626921862363815, 0.01978876069188118, -0.028320278972387314, -0.005308348685503006, -0.017812609672546387, -0.019761502742767334, 0.013458264991641045, 0.010637139901518822, 0.01849404163658619, 0.007291313260793686, 0.0018228283151984215, 0.00987393781542778, 0.0403679795563221, -0.020306648686528206, 0.041785359382629395, -0.00975809432566166, 0.010357753373682499, 0.00019612439791671932, 0.004265759140253067, 0.012442932464182377, -0.02224191278219223, 0.031127775087952614, 0.034834761172533035, -0.015427601523697376, 0.002887564478442073, -0.011816016398370266, -0.016858607530593872, 0.0036626923829317093, 0.002582624088972807, -0.000594122800976038, -0.014173767529428005, 0.0002957837132271379, 0.009751279838383198, -0.001432709046639502, 0.007870529778301716, -0.006517888978123665, 0.007475299760699272, -0.0014403751119971275, -0.0041362871415913105, 0.008347531780600548, -0.0029182289727032185, 0.028293021023273468, -0.026752987876534462, -0.02241908572614193, -0.03739694133400917, 0.012047702446579933, 0.027747876942157745, 0.024258948862552643, -0.019584331661462784, 0.015413972549140453, -0.028102220967411995, 0.006626917980611324, 0.008660989813506603, -0.00542759895324707, -0.0027393533382564783, 0.022187398746609688, 0.010862012393772602, 0.012395232915878296, -0.015291314572095871, -0.0015068146167322993, -0.044102225452661514, 0.007870529778301716, -0.01925724372267723, 0.004439523909240961, -0.004511074163019657, 0.0032385014928877354, 0.036442939192056656, 0.013826237991452217, -0.007482114247977734, 0.008415674790740013, 0.016231689602136612, -0.04012266546487808, -0.04355707764625549, -0.0012921638553962111, -0.01480068452656269, 0.013621808961033821, -0.0037683143746107817, -0.03935946151614189, -0.00152896111831069, 0.0081567307934165, 0.025281095877289772, -0.006814311724156141, 0.0021056223195046186, 0.015427601523697376, -0.016913121566176414, -0.020606478676199913, 0.020115846768021584, 0.016613291576504707, 0.0009744465351104736, 0.020565591752529144, 0.016613291576504707, 0.00768654327839613, -0.038923345506191254, 0.023918233811855316, -0.0049608186818659306, -0.023727431893348694, -0.0191209577023983, -0.0034889273811131716, -0.013437822461128235, -0.005925043951719999, -0.015550258569419384, 0.014173767529428005, -0.0013722319854423404, -0.009056219831109047, 0.022582627832889557, -0.0017172065563499928, -0.017417380586266518, 0.029383311048150063, -0.009798980318009853, -0.02188756875693798, -0.009853494353592396, -0.010991484858095646, 0.04023169353604317, -0.00034433568362146616, -0.008572404272854328, -0.0041669514030218124, -0.010930155403912067, 0.02312777377665043, -0.016477005556225777, -0.008361159823834896, 0.012115845456719398, 0.014282796531915665, -0.0013202728005126119, -0.01452811248600483, -0.02990119904279709, -0.021233394742012024, 0.04483817145228386, -0.0016865420620888472, -0.007713800761848688, -0.009308349341154099, -0.018998300656676292, 0.0047870539128780365, -0.030255543068051338, 0.012245317921042442, -0.013110735453665257, -0.028402050957083702, 0.021860310807824135, 0.009553664363920689, 0.006197616457939148, -0.029574111104011536, -0.006763204000890255, 0.018875643610954285, 0.016504261642694473, 0.006156730465590954, -0.0021396938245743513, 0.018752984702587128, 0.03379898518323898, -0.013137992471456528, 0.0008377344347536564, -0.02594889886677265, 0.030119257047772408, 0.003989779390394688, 0.00647359574213624, 0.00437819492071867, 0.006909711752086878, -0.018657585605978966, 0.011686543934047222, 0.031536635011434555, 0.005867122206836939, 0.0031754691153764725, 0.016872234642505646, 0.026044297963380814, 0.004449745640158653, -0.015550258569419384, -0.012183989398181438, -0.026330498978495598, 0.0034821131266653538, 0.03584327921271324, -0.04099489748477936, 0.024272577837109566, -0.005717207212001085, 0.010930155403912067, 0.019597960636019707, 0.03565247729420662, -0.0025928455870598555, 0.019243616610765457, -0.04813629761338234, 0.0025519595947116613, 0.012088588438928127, 0.022582627832889557, -0.0329812690615654, 0.005195912439376116, -0.002269165823236108, -0.004783646669238806, 0.03268143907189369, 0.002229983452707529, 0.0015724024269729853, 0.024667806923389435, 0.0028074963483959436, -0.0038023858796805143, -0.6354209184646606, -0.014391825534403324, -0.020333904772996902, -0.021137993782758713, 0.011482114903628826, 0.012579219415783882, 0.015890974551439285, -0.0029897792264819145, 0.009485521353781223, 0.017703581601381302, -0.03243612125515938, 0.030637145042419434, -0.012579219415783882, -0.013887566514313221, -0.034971047192811966, -0.005717207212001085, -0.008006815798580647, -0.03622487932443619, 0.020470192655920982, -0.022119255736470222, -0.012960820458829403, 0.015236800536513329, -0.001511073554866016, -0.0013509372947737575, 0.010705282911658287, 0.01445996854454279, 0.028892681002616882, 0.0021005114540457726, 0.008899491280317307, 0.023945489898324013, -0.035325389355421066, 0.05009881779551506, 0.012470190413296223, 0.026752987876534462, 0.05121636390686035, -0.017185693606734276, -0.013001706451177597, 0.03840545937418938, 0.002647360088303685, 0.017839867621660233, -0.028320278972387314, -0.018643956631422043, 0.004173765890300274, 0.010541739873588085, 0.02263714373111725, 0.015032371506094933, 0.012115845456719398, 0.0032521302346140146, -0.009587735868990421, 0.020306648686528206, -0.003986372146755457, 0.0034787061158567667, 0.012517889961600304, -0.0009258945938199759, -0.016504261642694473, -0.024640550836920738, 0.03074617311358452, 0.003597956383600831, 0.012715505436062813, -0.0016618402441963553, 0.010773426853120327, 0.01747189462184906, -0.004994890186935663, 0.013928452506661415, -0.008218059316277504, 0.023822832852602005, 0.0005114992382004857, 0.009655879810452461, 0.016340719535946846, -0.025253837928175926, 0.007945487275719643, 0.016926750540733337, -0.005546849686652422, -0.029219767078757286, 0.0120136309415102, 0.0043952311389148235, 0.02793867699801922, -0.013798980973660946, 0.014350940473377705, 0.013683137483894825, 0.014678026549518108, -0.0249131228774786, -0.02153322473168373, -0.007965929806232452, 0.016367975622415543, -0.024313462898135185, -0.027775133028626442, 0.0298194270581007, 0.0008816015324555337, -0.018739355728030205, -0.016640549525618553, 0.010091994889080524, -0.010528110899031162, -0.0012044295435771346, 0.04701874777674675, 0.012027259916067123, -0.009649065323174, -0.0040000006556510925, 0.011890973895788193, -0.021724024787545204, 0.00893356278538704, -0.013894381001591682, -0.0014275982975959778, -0.009642250835895538, 0.026098813861608505, 0.005042590666562319, -0.05486883595585823, -0.01831686869263649, 0.02593526989221573, -0.036034077405929565, 0.0022793870884925127, -0.0039284504018723965, -0.002860307227820158, -0.0022265762090682983, -0.005454856436699629, -0.018793871626257896, -0.0034872239921242, 0.004504259675741196, 0.01303577795624733, -0.011366271413862705, 0.005846679210662842, -0.011114141903817654, -0.003391823498532176, -0.0044770026579499245, 0.01898467168211937, 0.0435025654733181, -0.007536628749221563, 0.0052299839444458485, -0.01212265994399786, 0.0016320275608450174, 0.00564906420186162, -0.01729472167789936, 0.023236801847815514, -0.005584328435361385, 0.02826576493680477, -0.008224873803555965, 0.019584331661462784, 0.0012666101101785898, 0.02251448482275009, -0.02589438296854496, -0.008163545280694962, 0.017035778611898422, 0.007468485273420811, 0.012190802954137325, -0.021505966782569885, -0.024354349821805954, -0.02862010896205902, -0.013008520938456059, -0.039550263434648514, 0.00484838243573904, -0.01755366660654545, -0.012020445428788662, 0.007884158752858639, 0.018971042707562447, 0.008906304836273193, -0.01898467168211937, -0.0018671213183552027, -0.009942080825567245, 0.005206134170293808, -0.011604772880673409, 0.014078367501497269, 0.018398640677332878, -0.019420787692070007, 0.0010229984764009714, 0.017144808545708656, -0.006936969235539436, -0.026439528912305832, 0.012204431928694248, -0.014132882468402386, -0.02290971577167511, -0.009049405343830585, -0.026507671922445297, 0.010773426853120327, 0.028947195038199425, -0.01684497855603695, 0.005516184959560633, -0.005356048699468374, -0.036797281354665756, -0.024000005796551704, 0.0016976153710857034, -0.020511077716946602, -0.005100511945784092, -0.019897788763046265, -0.0028211248572915792, 0.04568314552307129, 0.00906984880566597, 0.0191209577023983, 0.0063781957142055035, 0.022800685837864876, 0.034834761172533035, 0.011039184406399727, 0.0074412282556295395, -0.0018211246933788061, 0.003436116501688957, -0.008149916306138039, -0.01568654552102089, 0.0035809206310659647, 0.020047703757882118, -0.0016047703102231026, 0.02603067085146904, 0.02785690501332283, 0.010650768876075745, 0.028293021023273468, 0.010037480853497982, 0.0045996601693332195, -0.032381609082221985, -0.0072844987735152245, -0.010466782376170158, 0.025921640917658806, -0.0051788766868412495, -0.009989780373871326, -0.021982969716191292, 0.0010724022286012769, -0.018166953697800636, 0.01747189462184906, 0.004844975657761097, 0.022132882848381996, -0.0077819437719881535, 0.005996594205498695, -0.005219762679189444, 0.015768317505717278, -0.002647360088303685, -0.01786712557077408, -0.0003571124980226159, -0.0268347579985857, 0.012449746951460838, 0.011781944893300533, 0.0065826247446238995, 0.0021090293303132057, -0.0200068186968565, 0.02126065269112587, 0.004504259675741196, -0.010684840381145477, 0.015768317505717278, 0.0009054516558535397, 0.0007078365888446569, 0.0092061348259449, -0.013131177984178066, 0.021955711767077446, -0.030555373057723045, 0.015768317505717278, -0.008238502778112888, 0.017103921622037888, -0.027025559917092323, -0.006814311724156141, 0.0109642269089818, 0.01212265994399786, 0.005424192175269127, 0.005921636708080769, 0.03311755508184433, -0.022623514756560326, 0.0250902958214283, -0.022364569827914238, -0.0026218064595013857, 0.004647360648959875, -0.03649745136499405, -0.00576150044798851, 0.021233394742012024, 0.0109642269089818, 0.021778538823127747, 0.0071005127392709255, 0.01737649366259575, -0.008299831300973892, -0.0005787906120531261, 0.042630333453416824, 0.02335946075618267, 0.013955709524452686, 0.00540374917909503, -0.02628961391746998, -0.04344804957509041, -0.01969335973262787, -0.035597965121269226, 0.006899490486830473, -0.00015875216922722757, 0.009928451851010323, -0.014146510511636734, 0.01339693646878004, -0.00024254689924418926, 0.004047701135277748, 0.0025008523371070623, -0.004862011410295963, -0.033444639295339584, 0.031809207051992416, 0.009887565858662128, 0.005318569950759411, -0.012027259916067123, -0.02196934074163437, -0.015672916546463966, -0.010875641368329525, 0.03208177909255028, -0.01916184462606907, 0.007972744293510914, 0.014201025478541851, -0.014882456511259079, -0.021505966782569885, 0.00501533318310976, 0.015032371506094933, -0.012872233986854553, 0.01604088954627514, 0.005321977194398642, 0.011223170906305313, 0.014364568516612053, -0.014132882468402386, 0.013328793458640575, 0.002320273080840707, 0.003570699132978916, -0.010732540860772133, -0.009880751371383667, 0.008586032316088676, -0.014609883539378643, -0.0013534926110878587, -0.03270869702100754, -0.009505964815616608, 0.00686541898176074, -0.002241908572614193, 0.0020613293163478374, -0.01586371660232544, 0.011625215411186218, 0.022364569827914238, -0.01933901570737362, 0.0022316870745271444, -0.004824532661587, -0.017172064632177353, -0.01595911756157875, 0.09518229961395264, 0.0009991484694182873, -0.007727429270744324, 0.0014923341805115342, 0.007938672788441181, -0.0020783650688827038, -0.021601367741823196, -0.017976153641939163, 0.024926751852035522, 0.010425896383821964, 0.01952981762588024, -0.009253835305571556, 0.0014812609879299998, -0.010950598865747452, 0.008838161826133728, 0.0001763203035807237, -0.022650770843029022, -0.005114140920341015, 0.0030919937416911125, -0.016613291576504707, 0.01477342750877142, 0.012470190413296223, 0.0060374801978468895, 0.03268143907189369, -0.019679730758070946, -0.006708689499646425, 0.023550260812044144, -0.007155027240514755, 0.03279046714305878, -0.017621809616684914, -0.021451452746987343, 0.018303241580724716, 0.024177176877856255, 0.015604773536324501, -0.0005327939870767295, -0.0007700172136537731, -0.0015860310522839427, -0.003931857645511627, 5.2757677622139454e-05, 0.01537308655679226, 0.02353663183748722, 0.025744467973709106, 0.012340717948973179, -0.010235096327960491, 0.007904601283371449, -0.011468485929071903, -0.01022828184068203, 0.004347530659288168, 0.00015034075477160513, -0.014432711526751518, 0.053424201905727386, -0.009533221833407879, -0.013287907466292381, -0.027734247967600822, 0.04004089534282684, -0.0063270884566009045, 0.010814311914145947, 0.014868827536702156, -0.010548554360866547, 0.019134586676955223, -0.005516184959560633, -0.013580922968685627, -0.009683136828243732, -0.009028962813317776, 0.006609882228076458, -0.01920272968709469, -0.021833054721355438, -0.017621809616684914, -0.018793871626257896, 0.0070800697430968285, -0.018562184646725655, -0.023236801847815514, -0.03905963525176048, -0.007904601283371449, 0.02481772191822529, 0.010201023891568184, 0.018643956631422043, -0.022364569827914238, 0.015890974551439285, 0.003347530495375395, -0.01640886254608631, -0.05320614576339722, 0.010160138830542564, -0.006177173461765051, -0.0016252133063971996, -0.010930155403912067, 0.014514483511447906, 0.016817720606923103, -0.017676323652267456, 0.012511075474321842, 0.02179216779768467, 0.016504261642694473, 0.008013630285859108, -0.000791311904322356, 0.01490971352905035, 0.008313460275530815, -0.003495741868391633, -0.01613629050552845, 0.002872232347726822, -0.013431007973849773, 0.0029097110964357853, -0.057022158056497574, 0.00016865420911926776, -0.012933563441038132, 0.0048586041666567326, -0.007005112245678902, 0.0035843278747051954, 0.021383309736847878, -0.028293021023273468, -0.037015341222286224, -0.009471893310546875, -0.016831349581480026, -0.004827939905226231, -0.0009352642809972167, -0.004385009407997131, 0.009233391843736172, 0.019993189722299576, 0.02010221965610981, -0.005005111917853355, 0.003717206884175539, -0.0026950601022690535, -0.015127771534025669, 0.01884838566184044, 0.006415674462914467, -0.014514483511447906, 0.006047701463103294, 0.02153322473168373, -0.01831686869263649, 0.009512779302895069, 0.0028228284791111946, 0.0250902958214283, 0.02554003894329071, 0.006381602492183447, -0.02905622497200966, -0.03292675316333771, -0.0004684839223045856, -0.027039188891649246, 0.003066440112888813, -0.0028074963483959436, 0.006838161498308182, -0.0191209577023983, -0.0037308356259018183, -0.024981265887618065, -0.03592504933476448, 0.00918569229543209, -0.031890977174043655, 0.0009582625352777541, -0.01635434851050377, 0.004415673669427633, 0.00040268321754410863, -0.02295060083270073, -0.014541740529239178, -0.012470190413296223, 0.005161840934306383, -0.02318228781223297, -0.03281772509217262, -0.010453153401613235, -0.01711755059659481, 0.033935271203517914, -0.017908010631799698, 0.029846685007214546, -0.009042591787874699, 0.013178878463804722, 0.00738671375438571, -0.005434413440525532, -0.004006815142929554, -0.0043747881427407265, -0.007788758259266615, -0.04268484562635422, 0.0006303238333202899, 0.009512779302895069, 0.03219080716371536, 0.019175471737980843, 0.004701875150203705, -0.009553664363920689, 0.030555373057723045, -0.019284501671791077, 0.00022465933579951525, -0.016340719535946846, -0.029137995094060898, -0.01572743058204651, 0.01831686869263649, -0.026725729927420616, 0.005083476193249226, -0.021492337808012962, -0.009676322340965271, 0.0645451620221138, -0.0021567295771092176, 0.016258947551250458, -0.012504261918365955, 0.030637145042419434, -0.02455877885222435, 0.012579219415783882, -0.009621808305382729, 0.03916866332292557, 0.004139694385230541, 0.01743100956082344, 0.00529131293296814, -0.0066541749984025955, -0.004163544159382582, -0.004780239425599575, -0.009376492351293564, -0.006804089993238449, -0.023195916786789894, -0.03197275102138519, 0.01174105890095234, -0.025349238887429237, -0.007427599746733904, 0.030255543068051338, -0.025567296892404556, -0.004269166383892298, -0.008122659288346767, -0.0009906304767355323, -0.03867803141474724, -0.01729472167789936, -0.013376493938267231, -0.010500853881239891, 0.018821127712726593, -0.0212197657674551, -0.011809201911091805, -0.007897786796092987, 0.0041362871415913105, 0.046064745634794235, 0.0053015341982245445, 0.03074617311358452, -0.008674618788063526, -0.016749577596783638, 0.0034701882395893335, 0.005666099954396486, -0.005724021699279547, -0.012306646443903446, 0.013410565443336964, 0.0013441229239106178, 0.014432711526751518, 0.0016226578736677766, -0.02041567675769329, 0.007952301762998104, -0.0368245393037796, -0.029437825083732605, 0.0068415687419474125, 0.0034616701304912567, -0.00757751427590847, -0.00477001816034317, -0.01178875844925642, -0.030201029032468796, 0.002904600230976939, -0.000734667934011668, 0.02086542174220085, -0.02834753505885601, -0.014296425506472588, -0.03461670130491257, -0.017703581601381302, 0.01725383661687374, 0.03172743320465088, 0.03107326105237007, 0.0007776832790113986, -0.02335946075618267, 0.015713801607489586, -0.01925724372267723, -0.010221467353403568, -0.0024855202063918114, 0.026643957942724228, -0.001681431313045323, -0.005580921191722155, -0.002316865837201476, -0.00791141577064991, -0.006626917980611324, 0.014991485513746738, 0.003209540620446205, 0.022078368812799454, 0.014841570518910885, -0.0020017039496451616, 0.013601365499198437, 0.0240272618830204, 0.0033441234845668077, 0.017403751611709595, -0.003785350127145648, -0.012586032971739769, -0.010793869383633137, -0.006606474984437227, 0.0031175476033240557, 0.009717208333313465, -0.020306648686528206, -0.035407163202762604, -0.008068145252764225, -0.030773431062698364, -0.019734246656298637, -0.014718912541866302, 0.00419080164283514, -0.044374797493219376, -0.0034855203703045845, -0.0023611588403582573, -0.013560479506850243, 0.012885862961411476, -0.010977855883538723, 0.004804089665412903, -0.013049406930804253, 0.031672921031713486, -0.040667809545993805, 0.02134242281317711, -0.006783646997064352, 0.017935268580913544, -0.03268143907189369, 0.014623512513935566, 0.025240208953619003, -0.022964229807257652, 0.004081772640347481, -0.00793185830116272, -0.01939352974295616, 0.012804090976715088, 0.018657585605978966, 0.010078366845846176, -0.016722319647669792, 0.0072844987735152245, 0.013499150983989239, 0.0007316867122426629, 0.009839865379035473, -0.014923342503607273, -0.011775130406022072, 0.02593526989221573, 0.0319182351231575, 0.0006793016800656915, -0.0005936968955211341, -0.025689953938126564, 0.019679730758070946, -0.002781942719593644, -0.002773424843326211, -0.005972743965685368, -0.04442930966615677, 0.010752983391284943, -0.017935268580913544, 0.009989780373871326, 0.00029280243325047195, 0.0029897792264819145, -0.009935266338288784, -0.02603067085146904, -0.021669510751962662, 0.001719761872664094, 0.009151620790362358, -0.023959118872880936, -0.0002016610378632322, 0.027652475982904434, -0.005553663708269596, 0.00477001816034317, -0.011850087903439999, 0.0006920784944668412, -0.02027939073741436, -0.012340717948973179, -0.04088586941361427, -0.005022147670388222, -0.004027258139103651, 0.023918233811855316, 0.002252129837870598, -0.014691655524075031, -0.01586371660232544, -0.022487228736281395, -0.0198296457529068, -0.020565591752529144, 0.004269166383892298, 0.02397274784743786, 0.02919251099228859, 0.017580924555659294, 0.008674618788063526, 0.023209545761346817, -0.000970187596976757, 0.012763204984366894, -0.020647363737225533, 0.011264056898653507, -0.0004663544532377273, 0.0013177174841985106, -0.00166013662237674, -0.0034173771273344755, -0.015168657526373863, 0.004606474656611681, 0.018207840621471405, -0.01627257652580738, -0.000612010364420712, 0.002115843817591667, -0.006827940233051777, 0.031536635011434555, -0.016504261642694473, 0.0016507669351994991, 0.018698470667004585, -0.007979558780789375, 0.018616698682308197, -0.02322317287325859, -0.00978535134345293, -0.007407156750559807, -0.004773425403982401, -0.027843276038765907, -0.024899493902921677, 0.001471891300752759, -0.02086542174220085, 0.013437822461128235, -0.01925724372267723, -0.006357752718031406, 0.006555367726832628, 0.0006537479930557311, 0.049226585775613785, 0.02094719372689724, 0.0015664398670196533, 0.03758774325251579, 0.00882453378289938, -0.015413972549140453, 0.00027512782253324986, 0.032463379204273224, 0.020429305732250214, -0.02055196277797222, 0.00898126233369112, -0.016749577596783638, 0.013124363496899605, -0.007502556778490543, 0.0026729137171059847, -0.019856903702020645, 0.0076797292567789555, 0.00045272582792676985, 0.0031993193551898003, -0.016654176637530327, 0.04028620943427086, 0.015877345576882362, -0.0013935266761109233, -0.012163545936346054, 0.014296425506472588, 0.003955707885324955, -0.003989779390394688, -0.006746168248355389, -0.01604088954627514, -0.0028313463553786278, -0.013758094981312752, 0.01504599954932928, 0.01684497855603695, -0.008892676793038845, -0.011345828883349895, 0.020129475742578506, -0.03017377108335495, 0.013022148981690407, 0.206282839179039, 0.003332198364660144, 0.011175470426678658, 0.036797281354665756, -0.014282796531915665, -0.0037001711316406727, 0.030691659078001976, 0.007250427268445492, 0.006793868727982044, 0.0007470189011655748, -0.025117551907896996, 0.008531518280506134, 0.004235094413161278, 0.002166951075196266, 0.00782282929867506, -0.01662692055106163, -0.03952300548553467, -0.0031090297270566225, -0.009908009320497513, -0.04481091350317001, 0.0009727429714985192, -0.02648041397333145, -0.008211245760321617, -0.020074961706995964, 0.014487226493656635, 0.002511073835194111, 0.00945144984871149, 0.0008015334024094045, 0.025431010872125626, 0.007257241755723953, -0.01988416165113449, 0.006459967233240604, -0.0012504261685535312, -0.006875640247017145, -0.018330497667193413, -0.007557071279734373, 0.026807501912117004, -0.0058807507157325745, 0.014323682524263859, -0.01658603362739086, -0.0021993189584463835, 0.008477003313601017, 0.010637139901518822, 0.002313458826392889, -0.02593526989221573, 0.04246678948402405, -0.018521299585700035, -0.02597615495324135, -0.0016328793717548251, 0.014064738526940346, -0.02504940889775753, 0.04014992341399193, 0.018957413733005524, 0.03388075530529022, -0.0076797292567789555, -0.000880749779753387, -0.01621806062757969, 0.01094378437846899, -0.010875641368329525, -0.005376491695642471, -0.005325384438037872, 0.021628623828291893, -0.005768314469605684, 0.011243614368140697, -0.004153322894126177, 0.00733219925314188, -0.013819423504173756, -0.018780242651700974, 0.008456560783088207, -0.017935268580913544, -0.008660989813506603, -0.01621806062757969, -0.012735947966575623, 0.010350938886404037, -0.005390120204538107, 0.005369677674025297, -0.003792164381593466, -0.0030562186148017645, 0.0221056267619133, 0.006606474984437227, 0.014119253493845463, -0.012149916961789131, -0.005546849686652422, -0.019379902631044388, -0.022310055792331696, -0.024040890857577324, 0.01270187646150589, -0.0022265762090682983, -0.014364568516612053, -0.0009378195973113179, -0.005287905689328909, -0.01107325591146946, 0.004674617666751146, -0.010378196835517883, -0.00611584447324276, -0.00611925171688199, 0.006538331974297762, -0.004609881900250912, 0.011584329418838024, 0.005580921191722155, 0.005137990694493055, -0.015005113556981087, 0.054705291986465454, -0.006766611244529486, -0.014718912541866302, 0.0058807507157325745, 0.006991483736783266, 0.009212949313223362, -0.001606473932042718, -0.017812609672546387, 0.01639523357152939, 0.012040887959301472, -0.01970698870718479, -0.0164906345307827, 0.0052299839444458485, 0.020129475742578506, -0.020797278732061386, -0.01608177460730076, 0.021873939782381058, 0.009321978315711021, 0.0034787061158567667, -0.03205452114343643, -0.024299833923578262, 0.008013630285859108, 0.002126065082848072, -0.018780242651700974, -0.018780242651700974, 0.021724024787545204, -0.0026286207139492035, -0.021642252802848816, 0.03281772509217262, -0.024994894862174988, -0.002098807832226157, -0.011454857885837555, -0.014991485513746738, 0.024408863857388496, -0.003161840606480837, -0.026453157886862755, 0.02477683685719967, 0.005086883436888456, -0.0017921639373525977, 0.01116865687072277, 0.009574107825756073, 0.01617717556655407, 5.0255548558197916e-05, -0.02196934074163437, 0.019625216722488403, -0.009737650863826275, -0.0002412692119833082, -0.02646678499877453, -0.02357751689851284, -0.0022470192052423954, 0.004885861184448004, -0.008899491280317307, 0.009703579358756542, -0.013247021473944187, -0.029737655073404312, -0.03949575126171112, 0.02085179276764393, 0.0016294722445309162, -0.02821124903857708, 0.02112436480820179, 0.038841575384140015, -0.008477003313601017, -0.018712099641561508, -0.015413972549140453, -0.17422831058502197, 0.020742764696478844, -0.004725724924355745, -0.004988076165318489, 0.01670869253575802, 0.023073257878422737, 0.02727087400853634, 0.006947190500795841, -0.012183989398181438, -0.0023543445859104395, 0.024122662842273712, 0.000874787219800055, -0.039114147424697876, -0.01490971352905035, -0.023863719776272774, 0.0008824533433653414, -0.019993189722299576, 0.012933563441038132, 0.03488927334547043, 0.011802387423813343, 0.010098809376358986, -0.010637139901518822, 0.005284498445689678, -0.009901194833219051, 0.007747872266918421, 0.013137992471456528, -0.007427599746733904, 0.02513118088245392, 0.0072844987735152245, -0.007311756256967783, -0.021942082792520523, 0.01951618865132332, 0.0005229983944445848, -0.015032371506094933, 0.015168657526373863, 0.01658603362739086, -0.0011413971660658717, -0.00918569229543209, -0.017103921622037888, 0.010712097398936749, 0.011972744949162006, 0.010453153401613235, 0.010902898386120796, 4.1045579564524814e-05, 0.017240207642316818, 0.023250430822372437, -0.01341737899929285, 0.011809201911091805, 0.026017041876912117, -0.03464395925402641, 0.01591823250055313, -0.0011788759147748351, 0.009798980318009853, 0.02014310471713543, 0.022964229807257652, 0.012558775953948498, 0.016313461586833, 0.01259284745901823, -0.002660988597199321, -0.02086542174220085, -0.009301534853875637, -0.007039183750748634, 0.010064737871289253, -0.01000340934842825, 0.004640546161681414, -0.007965929806232452, -0.03431687131524086, 0.005243612919002771, -0.04884498566389084, 0.006780239753425121, -0.021369680762290955, -0.013315164484083652, 0.031890977174043655, -0.018166953697800636, 0.008163545280694962, -0.003952300641685724, -0.031209547072649002, 0.011291313916444778, 0.012340717948973179, 0.004010222386568785, -0.03769677132368088, 0.01733560860157013, -0.01657240465283394, -0.00826575979590416, 0.005451449193060398, 0.0078023867681622505, 0.0038773431442677975, -0.03927769139409065, -0.00896081980317831, 0.007025555241852999, 0.0043611591681838036, -0.01617717556655407, -0.002911414485424757, -0.008879047818481922, 0.02353663183748722, 0.005768314469605684, 0.015427601523697376, -0.021247023716568947, 0.006381602492183447, -0.0057785362005233765, 0.010166952386498451, -0.024885864928364754, -0.03254515305161476, 0.020088590681552887, 0.03979557752609253, 0.004671210423111916, 0.0024122663307935, 0.018657585605978966, 0.042494047433137894, 0.0038671218790113926, -0.0099148228764534, 0.017144808545708656, 0.009935266338288784, -0.003361159237101674, 0.007093698251992464, 0.02206473983824253, -0.015141400508582592, -0.013669508509337902, 0.021669510751962662, -0.006098808720707893, 0.0589301660656929, 0.006575810723006725, 0.005689950194209814, -0.0036831353791058064, -0.0010698469122871757, -0.03467121720314026, -0.11687906831502914, -0.00875638984143734, 0.006126066204160452, 0.024449748918414116, -0.01965247467160225, 0.012293018400669098, -0.0036558781284838915, 0.011195913888514042, 0.008183987811207771, 0.0023543445859104395, -0.024258948862552643, -0.038350943475961685, -0.010091994889080524, -0.001683986745774746, 0.019243616610765457, -0.0052810912020504475, -0.009601364843547344, -0.01163202989846468, 0.007516185753047466, 0.03908688947558403, 0.014228282496333122, -0.008722318336367607, 0.010603068396449089, -0.017594551667571068, 0.004947190172970295, -0.0035809206310659647, -0.030991489067673683, -0.01301533542573452, 0.027257246896624565, 0.007264056243002415, -0.02255537174642086, -0.010126067325472832, -3.303344055893831e-05, 0.005373084452003241, -0.014378197491168976, -0.012749576941132545, -0.03450767323374748, -0.008320274762809277, 0.030964231118559837, -0.005863714963197708, 0.014596255496144295, -0.0010587736032903194, 0.018221469596028328, -0.01804429665207863, 0.0015621809288859367, -0.008729132823646069, -0.022173769772052765, 0.014201025478541851, 6.594709702767432e-06, -0.026766614988446236, -0.018875643610954285, 0.00540374917909503, -0.025553667917847633, 0.001809199689887464, 0.03254515305161476, -0.0291107390075922, 0.022078368812799454, 0.00381601438857615, -0.0062419092282652855, -0.020088590681552887, -0.005672914441674948, 0.0014608179917559028, -0.014010224491357803, 0.022528113797307014, 0.006425895728170872, -0.009137991815805435, -0.01515502855181694, -0.029274282976984978, 0.03306303918361664, -0.01698126457631588, -0.01898467168211937, -0.003289608983322978, -0.01747189462184906, 0.0023185694590210915, -0.024722322821617126, 0.015059628523886204, -0.00804088730365038, 0.010902898386120796, -0.0002732113061938435, -0.005938672460615635, -0.011141398921608925, -0.0312368031591177, 0.019952304661273956, -0.0036013636272400618, 0.0005779388011433184, 0.014078367501497269, 0.018930157646536827, 0.004582624416798353, -0.006020443979650736, -0.019461672753095627, 0.0022674622014164925, 0.0053867134265601635, -0.01396933849900961, -0.03170017525553703, 0.020660992711782455, 0.01786712557077408, -0.0021550259552896023, 0.014609883539378643, -0.004316866397857666, -0.009035777300596237, -0.013553665950894356, -0.01283816248178482, -0.063836470246315, 0.02348211780190468, 0.0011788759147748351, 0.01094378437846899, 0.003686542622745037, -0.005812607705593109, -0.008954005315899849, -0.0041669514030218124, -0.014541740529239178, 0.0029454862233251333, -0.000764480559155345, 0.027488932013511658, -0.002555366838350892, -0.023413974791765213, -0.02526746690273285, -0.006487224716693163, -0.010971041396260262, -0.008190802298486233, 0.00446678139269352, -0.007775129284709692, 0.0027478712145239115, -0.014732541516423225, 0.016790462657809258, -0.0049608186818659306, 0.004633731674402952, -0.0012904602335765958, 0.015195914544165134, 0.007809200789779425, -0.001892675063572824, -0.00628620246425271, 0.007870529778301716, -0.02995571307837963, 0.0142146535217762, 0.0182350967079401, 0.018221469596028328, 0.022664399817585945, -0.0032316872384399176, 5.9359041188145056e-05, 0.026235099881887436, 0.04903578385710716, -0.01225894596427679, -0.011713801883161068, -0.0008066441514529288, -0.02375468984246254, 0.017948895692825317, 0.049853503704071045, -0.021860310807824135, -0.011175470426678658, 0.004453152418136597, 0.01361499447375536, 0.01698126457631588, 0.01880750060081482, -0.005645656958222389, -0.022991487756371498, -0.006947190500795841, -0.029628627002239227, 0.013546851463615894, 0.005666099954396486, 0.0031328797340393066, -0.011597958393394947, 0.03221806511282921, -0.005475299432873726, 0.02224191278219223, -0.012940377928316593, 0.015550258569419384, -0.03216354921460152, -0.0076661002822220325, -0.0032231693621724844, -0.005226576700806618, -0.034780245274305344, 0.0028892681002616882, -0.004439523909240961, 0.012899491935968399, 0.023073257878422737, 0.019775131717324257, 0.01782623864710331, 0.011918230913579464, 0.0007372233085334301, -0.035407163202762604, 0.01925724372267723, 0.004974447190761566, 0.003856900380924344, -0.04110392555594444, 0.02206473983824253, 0.021505966782569885, -0.003908007871359587, 0.016831349581480026, 0.019189100712537766, 0.004044293891638517, 0.004749575164169073, 0.0043100519105792046, -0.006385009735822678, 0.022487228736281395, -0.015795573592185974, 0.0028943787328898907, 0.03537990525364876, -0.006977854762226343, -0.00893356278538704, 0.02544463984668255, 0.023114144802093506, -0.008061330765485764, 0.014964228495955467, 0.0077819437719881535, -0.016545148566365242, -0.009485521353781223, -0.0003931006067432463, -0.013798980973660946, -0.03794208541512489, -0.011134585365653038, 0.020524706691503525, 0.0043611591681838036, 0.011005112901329994, 0.01747189462184906, 0.012177174910902977, -0.0024139699526131153, 0.004214651882648468, 0.010766612365841866, -0.02353663183748722, -0.01786712557077408, 0.04737309366464615, 0.011495743878185749, 0.03562521934509277, 0.015141400508582592, -0.003137990366667509, 0.018657585605978966, 0.01778535358607769, 0.021982969716191292, 0.0031362869776785374, 0.009553664363920689, -0.014541740529239178, -0.003245315747335553, -0.00840204581618309, -0.05492335185408592, 0.0005954004591330886, 0.0006916525890119374, -0.025608181953430176, 0.004695060662925243, 0.013103920966386795, -0.025921640917658806, 0.0508892796933651, 0.0023867127019912004, -0.01281771995127201, -0.003308348124846816, 0.020115846768021584, 0.034834761172533035, 0.020892679691314697, 0.009948894381523132, 0.005134583916515112, -0.015236800536513329, 0.009512779302895069, -0.028374793007969856, 0.024436121806502342, -0.010896083898842335, -0.010568996891379356, 0.003672913881018758, -0.014364568516612053, 0.026494042947888374, -0.0256218109279871, -0.014364568516612053, 0.012245317921042442, -0.005134583916515112, 0.04955367371439934, 0.014827941544353962, -0.005022147670388222, -0.008163545280694962, 0.012831348925828934, 0.008640547282993793, 0.000743611715734005, -0.022623514756560326, 0.0031005116179585457, 0.011175470426678658, -0.008919933810830116, -0.015209543518722057, 0.016027260571718216, -0.0017206136835739017, 0.00587052945047617, -0.018166953697800636, -0.0019011929398402572, 0.01564565859735012, -0.0026149919722229242, 0.003795571392402053, -0.020960822701454163, -0.012674619443714619, 0.02116525173187256, -0.0020613293163478374, -0.02228279784321785, -0.005339012946933508, -0.015386715531349182], "636c1409-349f-4f40-9393-4ceec55a5fdc": [0.010809313505887985, -0.002573409816250205, 0.0027634818106889725, 0.019503042101860046, -0.01733456924557686, 0.024937449023127556, -0.012561281211674213, -0.003289072308689356, -0.028454607352614403, -0.018141135573387146, 0.017757685855031013, 0.02622002176940441, 0.014571086503565311, 0.014491751790046692, 0.0037716899532824755, -0.0036493828520178795, 0.040090322494506836, -0.010154804214835167, 0.04543217271566391, -0.031019754707813263, 0.01115309540182352, -0.0018428722396492958, 0.008264000527560711, 0.014809089712798595, -0.02639191411435604, 0.02298053354024887, 0.03488069400191307, -0.02144673466682434, 0.0008470601169392467, -0.013414125889539719, -0.023390429094433784, 0.013923188671469688, -0.023615209385752678, -0.016885006800293922, -0.01498098112642765, -0.0028973587322980165, 0.0015280137304216623, -0.0019734434317797422, -0.002573409816250205, -0.00651533855125308, 0.006759952753782272, 0.0032775027211755514, -0.0017684962367638946, 0.007338433060795069, -0.017480013892054558, 0.029697513207793236, -0.022821864113211632, -0.02075917087495327, -0.029195062816143036, 0.030649526044726372, 0.027423260733485222, 0.0102870287373662, -0.021737627685070038, 0.012607559561729431, -0.02635224536061287, -3.176475365762599e-05, 0.005285655148327351, -0.003082472365349531, -0.009672186337411404, 0.028824836015701294, 0.028295939788222313, 0.008442503400146961, 0.011126650497317314, -0.002727120416238904, -0.04691307991743088, -0.015734657645225525, -0.015205761417746544, -0.014068635180592537, -0.0210765078663826, 0.008660673163831234, 0.03318822756409645, 0.023033423349261284, -0.012124942615628242, 0.012614171020686626, 0.012012551538646221, -0.04083077609539032, -0.035462480038404465, -0.0013098441995680332, -0.02911572903394699, 0.008045831695199013, -0.012984398752450943, -0.04511483386158943, 0.007140096742659807, -0.005860829260200262, 0.021737627685070038, 0.0012123289052397013, -0.008528448641300201, 0.027449704706668854, -0.013057121075689793, -0.020349275320768356, 0.02549278922379017, 0.01923859491944313, -0.004852621350437403, 0.008012775331735611, 0.00553357508033514, 0.014914869330823421, -0.03451046720147133, 0.028507497161626816, 0.0001553632173454389, -0.03429890796542168, -0.020494721829891205, -0.0009115192806348205, -0.0014544641599059105, -0.004459254909306765, -0.01941048540174961, 0.013724852353334427, 0.005371600389480591, -0.013698408380150795, 0.021182287484407425, -0.006336836144328117, -0.016885006800293922, 0.03146931529045105, -0.004455949179828167, -0.005331933498382568, -0.013209179043769836, -0.029909072443842888, 0.0374193973839283, -0.006052554119378328, -0.0025056451559066772, -0.01753290370106697, -0.00792683009058237, 0.031733762472867966, -0.02520189806818962, -0.018511362373828888, 0.015285096131265163, 0.018445249646902084, -0.0016040425980463624, -0.026590248569846153, -0.01769157312810421, -0.0031006531789898872, 0.03213043510913849, -0.004201418254524469, 0.005596381612122059, 0.015721434727311134, -0.01580077037215233, -0.0029122340492904186, -0.035118699073791504, -0.0008032608893699944, -0.01149687822908163, -0.03911186382174492, 0.019992271438241005, 0.006389725487679243, 0.004102250095456839, -0.029803292825818062, -0.013843853957951069, 0.02005838230252266, 0.009903579019010067, 0.012118331156671047, -0.004290669225156307, 0.012250554747879505, 0.027317481115460396, -0.014875201508402824, -0.004571645520627499, -0.01800891011953354, 0.009586241096258163, -0.0022230162285268307, 0.015139649622142315, 0.0022676419466733932, 0.014359528198838234, -0.007477268110960722, 0.014478529803454876, 0.03279155492782593, 0.004442726727575064, -0.003069249913096428, 0.005593075882643461, 0.029195062816143036, -0.00535176694393158, -0.008647450245916843, -0.023720989003777504, -0.023231759667396545, -0.006525255274027586, 0.01750645972788334, -0.04741553217172623, 0.015919771045446396, -0.019344372674822807, 0.01786346361041069, 0.025281231850385666, 0.02755548432469368, -0.0016850298270583153, 0.012396001257002354, -0.04524705931544304, 0.0044295042753219604, 0.006402947939932346, 0.019423708319664, -0.040407657623291016, -0.023059867322444916, -0.012025774456560612, -0.009804410859942436, 0.012706727720797062, 0.012032384984195232, -0.01303067710250616, 0.017255233600735664, -0.0068624261766672134, -0.01412152498960495, -0.6384833455085754, -0.015615656040608883, -0.011523323133587837, -0.020891394466161728, 0.018471695482730865, -0.0036163267213851213, 0.015271874144673347, 0.005206320434808731, 0.014584308490157127, 0.003284113947302103, -0.03263288736343384, 0.018405582755804062, 0.0035733541008085012, -0.005262515973299742, -0.03451046720147133, -0.012270388193428516, 0.004710480570793152, -0.0222929697483778, 0.01047214213758707, -0.006842592731118202, -0.021195510402321815, 0.005123680457472801, -0.0011924953432753682, 0.008726784959435463, 0.002189960330724716, 0.003778301179409027, 0.02705303393304348, 0.004829482175409794, 0.005926941521465778, 0.029803292825818062, -0.01683211699128151, 0.05479363352060318, 0.010994426906108856, 0.02142029069364071, 0.047865092754364014, -0.015509877353906631, -0.008118554949760437, 0.022874753922224045, 0.009361459873616695, 0.022663196548819542, -0.017215566709637642, -0.017929576337337494, 0.007662381511181593, 0.0164883341640234, 0.019172482192516327, 0.010465530678629875, 0.018789032474160194, -0.011999329552054405, -0.004912122152745724, 0.012409224174916744, 0.010022580623626709, 0.0016486681997776031, -0.00852183811366558, -0.0031717235688120127, -0.018088245764374733, -0.010868813842535019, 0.02739681676030159, -0.017625460401177406, 0.012627393007278442, 0.0031733764335513115, 0.011959661729633808, 0.01404219027608633, 0.005252598784863949, 0.014280193485319614, 0.002751912223175168, 0.037842512130737305, 0.000703266472555697, 0.007854106836020947, 0.02669602818787098, -0.021301288157701492, 0.011820826679468155, 0.017982466146349907, 0.010829146951436996, -0.018841922283172607, 0.008786286227405071, -0.0032097380608320236, 0.016104884445667267, -0.0026626610197126865, 0.004545200616121292, 0.014147969894111156, -0.003659299574792385, -0.024712668731808662, -0.022491304203867912, -0.01070353388786316, 0.016977563500404358, -0.014888424426317215, -0.04437438026070595, 0.03387579321861267, 0.006307085510343313, -0.01412152498960495, -0.01804857887327671, 0.02263675071299076, -0.00471709156408906, 0.008389613591134548, 0.03329400718212128, 0.025413455441594124, -0.013923188671469688, 0.010148192755877972, 0.018299803137779236, -0.02618035487830639, -0.005811245646327734, -0.025783682242035866, 0.0120059410110116, -0.0009949856903403997, 0.01954270899295807, -0.009751521050930023, -0.04424215480685234, -0.022240079939365387, 0.03622937947511673, -0.02500356175005436, 0.004915427882224321, -0.022226857021450996, -0.01243566907942295, 0.0041187782771885395, -0.016395777463912964, -0.01819402538239956, 0.0019453457789495587, 0.01479586772620678, 0.016937896609306335, -0.007014484144747257, 0.010729978792369366, -0.013724852353334427, 0.0051964037120342255, -0.0111464848741889, 0.02553245797753334, 0.04212656989693642, 0.003884080331772566, 0.0013296777615323663, -0.0014090121258050203, 0.004376614931970835, 0.0044295042753219604, -0.012098497711122036, 0.028137270361185074, -0.014399195089936256, 0.021896297112107277, -0.013460405170917511, 0.0059104133397340775, -0.007126874290406704, 0.02196240983903408, -0.013645518571138382, -0.017665129154920578, 0.03345267474651337, -0.0019436930306255817, -0.0004474956658668816, -0.006323613692075014, -0.02821660414338112, -0.01987326890230179, -0.02432921901345253, -0.057226553559303284, 0.0008850744925439358, -0.01987326890230179, -0.012184442952275276, -0.004849315620958805, 0.02294086664915085, 0.00783427245914936, -0.012455502524971962, 0.0037287173327058554, -0.018154356628656387, -0.0003594840527512133, -0.015113204717636108, 0.019952604547142982, 0.020309608429670334, -0.03493358567357063, 0.0065583111718297005, 0.03146931529045105, -0.023086313158273697, -0.022517750039696693, 0.019185705110430717, -0.010934925638139248, -0.02213430032134056, -0.0014172762166708708, -0.03059663623571396, 0.0076293256133794785, 0.029565289616584778, -0.022491304203867912, -0.0022511137649416924, 0.006330224685370922, -0.025294454768300056, -0.012442279607057571, 0.006429392844438553, -0.01664700359106064, 0.005748439114540815, -0.02331109344959259, -0.015271874144673347, 0.03186598792672157, 0.010564698837697506, 0.009288736619055271, -0.0013949633575975895, 0.022504527121782303, 0.02452755533158779, -0.0041187782771885395, 0.0012470377841964364, 0.014214081689715385, -0.009923412464559078, 0.00325766927562654, -0.014147969894111156, -0.0010900216875597835, 0.018273359164595604, -0.006065776571631432, 0.025982018560171127, 0.026986921206116676, 0.0038510244339704514, 0.012673672288656235, 0.010392807424068451, 0.009632519446313381, -0.017427125945687294, -0.006412864662706852, 0.005811245646327734, 0.02618035487830639, -0.017123010009527206, -0.004733619745820761, -0.028163714334368706, -0.002556881867349148, -0.016131330281496048, 0.024792002514004707, 0.01595943793654442, 0.010154804214835167, 0.0029155395459383726, -0.004859232343733311, 0.007973108440637589, 0.01207205280661583, -0.006902093533426523, -0.027476150542497635, 0.00044956165947951376, -0.01010852586477995, 0.0005127812619321048, 0.004280752502381802, 0.01115309540182352, 0.008230945095419884, -0.013751297257840633, 0.010432475246489048, -0.001511485781520605, -0.0040063876658678055, 0.015549544245004654, 0.009539962746202946, 0.004581562243402004, 0.002753565087914467, -0.021327733993530273, 0.01234311144798994, -0.019661711528897285, 0.013176122680306435, -0.002808107528835535, 0.00953335128724575, -0.031363535672426224, -0.005007984582334757, 0.015615656040608883, 0.018471695482730865, 0.018617141991853714, 0.017638683319091797, 0.03284444659948349, -0.007999553345143795, 0.013830631971359253, -0.025294454768300056, -0.005794717464596033, 0.007893773727118969, -0.028613276779651642, -0.00522945960983634, 0.01597266085445881, -0.00031382543966174126, 0.017228789627552032, -0.0032180019188672304, 0.017784129828214645, -0.006039331667125225, 0.005649270955473185, 0.055005189031362534, 0.014676866121590137, 0.013671963475644588, 0.012429057620465755, -0.031363535672426224, -0.02346976287662983, -0.0024808531161397696, -0.03876808285713196, 0.010908481664955616, -0.0069219269789755344, 0.00986391119658947, -0.01716267690062523, 0.00651533855125308, 0.0007115305052138865, 0.009130068123340607, -0.003060986055061221, -0.02077239193022251, -0.04117455706000328, 0.021724404767155647, -0.002189960330724716, -0.007417767308652401, -0.0069682057946920395, -0.012270388193428516, 0.0022114466410130262, -0.00916973501443863, 0.01855102926492691, -0.012567892670631409, -0.00739793386310339, 0.008482170291244984, -0.010505197569727898, -0.009249069727957249, 0.012693505734205246, 0.019278261810541153, -0.008971399627625942, 0.03131064772605896, 0.006350058130919933, 0.002794885076582432, 0.011695214547216892, -0.034642692655324936, 0.018498139455914497, 0.009295348078012466, -0.021314511075615883, -0.01445208489894867, 0.0028808307833969593, 0.0011371265863999724, -0.03472202643752098, -0.0023254898842424154, -0.031892433762550354, -0.0044228932820260525, -0.010763035155832767, -0.010035802610218525, 0.0012635657330974936, -0.030041296035051346, 0.01632966659963131, 0.013440570794045925, -0.01868325285613537, -0.004978233948349953, -0.013110010884702206, -0.022372303530573845, 0.003986554220318794, 0.09393194317817688, 0.0070343175902962685, -0.01823369227349758, -0.009480461478233337, -0.008131776936352253, -0.005444323644042015, -0.012647227384150028, -0.022319413721561432, 0.020679835230112076, 0.0055467975325882435, 0.026497691869735718, -0.014333083294332027, 0.007060762494802475, 0.0009073872934095562, 0.01749323680996895, 0.004085721913725138, -0.009202791377902031, -0.014346305280923843, -0.005322016775608063, -0.0205740574747324, -0.00045121446601115167, 0.0022329329513013363, -0.004290669225156307, 0.02924795262515545, -0.043448809534311295, -0.011886939406394958, 0.018075022846460342, -0.002784968353807926, 0.0448768325150013, -0.026629917323589325, -0.0012594336876645684, 0.024580445140600204, 0.016871783882379532, 0.014266971498727798, -0.0069682057946920395, -0.003260974772274494, -0.004803037270903587, -0.0041848900727927685, 0.004062582738697529, 0.008164833299815655, 0.020997174084186554, 0.012376167811453342, 0.02805793657898903, -0.01718912273645401, 0.011027483269572258, 0.00739793386310339, -0.005262515973299742, 0.008184666745364666, -0.013301735743880272, -0.01115309540182352, 0.03094041906297207, 0.012838952243328094, -0.009335015900433064, -0.017757685855031013, 0.04048699513077736, 0.001229683286510408, 0.01174810342490673, 0.002770093036815524, -0.02061372436583042, 0.02911572903394699, 0.004112166818231344, -0.012455502524971962, -0.011886939406394958, -0.018947701901197433, 0.0006916968850418925, -0.019952604547142982, -0.009493684396147728, -0.01701723039150238, -0.011100206524133682, 0.015483432449400425, -0.004584867507219315, -0.013804187066853046, -0.038371410220861435, -4.49613289674744e-05, 0.01601232774555683, 0.010101914405822754, 0.011060538701713085, -0.02553245797753334, -0.00514681963250041, 0.0028180242516100407, -0.023588763549923897, -0.04083077609539032, 0.012786062434315681, -0.010379585437476635, -0.016713116317987442, -0.00553357508033514, 0.010088692419230938, 0.009163124486804008, -0.013341403566300869, 0.004740230739116669, 0.02961817942559719, 0.020150939002633095, 0.008356558158993721, -0.006436003837734461, 0.01293811947107315, 0.001761885010637343, -0.005212931893765926, -0.011847271583974361, 0.009784577414393425, -0.005345155950635672, 0.002553576370701194, -0.058760352432727814, 0.004409670829772949, -0.019119592383503914, 0.006402947939932346, 0.0039997766725718975, 0.017215566709637642, 0.019436929374933243, -0.018789032474160194, -0.030675971880555153, 0.004317114129662514, -0.020283164456486702, -0.006631034426391125, 0.007245875895023346, 0.00044914844329468906, 0.010161415673792362, 0.03332045301795006, 0.014941313304007053, 0.003008096246048808, 0.0032361827325075865, 0.0025982018560171127, -0.020018715411424637, 0.015060314908623695, -0.004108861088752747, -0.019251815974712372, 0.0011718353489413857, 0.015470209531486034, -0.02414410561323166, 0.004984845407307148, 0.0033981571905314922, 0.031099088490009308, 0.02943306602537632, -0.005328627768903971, -0.034774914383888245, -0.028692610561847687, -0.004743536468595266, -0.0344046875834465, -0.010313473641872406, -0.00493856705725193, 0.004786509554833174, -0.019952604547142982, -0.010736590251326561, -0.005748439114540815, -0.03371712565422058, -0.00019967892148997635, -0.025254786014556885, -0.011410932056605816, -0.019701378419995308, 0.014081857167184353, 0.00994324591010809, -0.011457211337983608, -0.017572572454810143, -0.02467300184071064, 0.009202791377902031, -0.010782868601381779, -0.03628227114677429, 0.0021288066636770964, -0.013976078480482101, 0.024368885904550552, -0.026973698288202286, 0.03593848645687103, -0.008892064914107323, 0.004022915847599506, 0.0026626610197126865, 0.008065665140748024, 0.00316676520742476, 0.00017963872232940048, -0.0236548762768507, -0.03329400718212128, 0.0078078280203044415, 0.010895258747041225, 0.029988406226038933, 0.02602168545126915, 0.008931731805205345, 0.00026548103778623044, 0.05225493013858795, -0.014253748580813408, -0.006307085510343313, -0.023416873067617416, -0.04038121551275253, -0.021235177293419838, 0.01157621294260025, -0.012713339179754257, 0.0012941425666213036, -0.007014484144747257, 0.009844077751040459, 0.05273093655705452, 0.0019503042567521334, 0.019661711528897285, -0.01243566907942295, 0.03384934738278389, -0.025757238268852234, 0.010729978792369366, -0.0074508232064545155, 0.029353732243180275, -0.01463719829916954, 0.01275300607085228, -0.0026593555230647326, -0.014068635180592537, 0.0054939077235758305, 0.002371768234297633, -0.006078999023884535, 0.0060029705055058, -0.022319413721561432, -0.03382290154695511, 0.0035733541008085012, -0.02344331704080105, -0.008105332031846046, 0.02485811524093151, -0.011205985210835934, 0.0024230051785707474, -0.004531978163868189, -0.016898229718208313, -0.03575337305665016, -0.01975426822900772, -0.005272432696074247, -0.006988039240241051, 0.02041538804769516, -0.0168453399091959, -0.030226409435272217, -0.002414741087704897, -0.01377774216234684, 0.04847332462668419, 0.0078012170270085335, 0.033928681164979935, -0.014518196694552898, -0.019846824929118156, 0.0070277065970003605, 0.019278261810541153, -0.016131330281496048, -0.013176122680306435, 0.013334792107343674, 0.00875322986394167, 0.004376614931970835, -0.008759841322898865, -0.02196240983903408, 0.013024065643548965, -0.03133708983659744, -0.025439901277422905, 0.012574504129588604, 0.010491975583136082, -0.014068635180592537, -0.018789032474160194, -0.01072336733341217, -0.02789926715195179, 0.014822311699390411, 0.013460405170917511, 0.022187190130352974, -0.012019162997603416, 0.002409782726317644, -0.037683844566345215, -0.007821050472557545, 0.021010395139455795, 0.02940662018954754, 0.02670925110578537, -0.0008850744925439358, -0.025466345250606537, 0.016104884445667267, -0.032236214727163315, 0.00936807133257389, -0.005771578289568424, 0.03115197829902172, -0.02299375645816326, -0.003642771625891328, -0.008045831695199013, 0.0037915236316621304, -0.017281679436564445, 0.0017767602112144232, -0.0024825059808790684, 0.021512847393751144, 0.008640839718282223, -0.0018560945754870772, 0.011814216151833534, 0.02106328494846821, 0.005735216662287712, 0.013156289234757423, -0.0035105475690215826, -0.004611312411725521, -0.009705242700874805, -0.0017453569453209639, 0.001334636122919619, 0.008184666745364666, 0.00282794120721519, -0.03329400718212128, -0.012680282816290855, -0.018934478983283043, -0.0067434245720505714, -0.0017106481827795506, -0.00807888712733984, -0.05048312991857529, -0.011258875019848347, -0.010491975583136082, -0.01293150894343853, 0.010835758410394192, -0.005715383216738701, 0.007424378301948309, -0.0038278852589428425, 0.028190160170197487, -0.03213043510913849, 0.029062839224934578, -0.004574950784444809, 0.012442279607057571, -0.021367400884628296, 0.00108588975854218, 0.02840171754360199, -0.018789032474160194, 0.01991293579339981, -0.017308123409748077, -0.01700400747358799, 0.012250554747879505, 0.030517302453517914, 0.002097403397783637, -0.012310056015849113, 0.00139413692522794, 0.0105382539331913, -0.005480685271322727, 0.002794885076582432, -0.010749812237918377, -0.012759617529809475, 0.013843853957951069, 0.0312577560544014, 0.006039331667125225, -0.000899949693121016, -0.0197146013379097, 0.019674932584166527, -0.0019337761914357543, 0.004409670829772949, -0.011529933661222458, -0.0384242981672287, 0.013043899089097977, -0.020137717947363853, 0.0062013063579797745, -0.011761326342821121, -0.017599016427993774, -0.010763035155832767, -0.022187190130352974, -0.013136455789208412, 0.010412640869617462, -0.0020825283136218786, -0.022345857694745064, 0.004108861088752747, 0.03876808285713196, -0.01539087574928999, 0.001859400188550353, -0.001704036956652999, -0.0023469761945307255, -0.00944740604609251, 0.0033568372018635273, -0.03244777396321297, -0.001569333835504949, -0.0053749061189591885, 0.028295939788222313, -0.008502003736793995, -0.00857472699135542, 0.00210236175917089, -0.024025103077292442, -0.040936555713415146, -0.023416873067617416, 0.003026277059689164, 0.007906995713710785, 0.03353200852870941, 0.003639466129243374, 0.011781159788370132, 0.014676866121590137, -0.01716267690062523, 0.0177047960460186, -0.01685856282711029, 0.019793935120105743, -7.32913613319397e-05, -0.0011850576847791672, -0.004489005543291569, -0.005222848616540432, -0.02418377250432968, 0.004449338186532259, 0.013103400357067585, -0.018603919073939323, 0.0011817521881312132, -0.006240973714739084, -0.00050493044545874, 0.024699445813894272, -0.013883521780371666, 0.010320084169507027, 0.012865396216511726, -0.0014123177388682961, 0.008230945095419884, -0.02447466552257538, 0.008660673163831234, 0.001042090472765267, -0.007642548065632582, -0.02261030673980713, -0.013870298862457275, -0.00021548382937908173, 0.005004678852856159, 0.008125165477395058, -0.027264591306447983, -0.01088864728808403, -0.004512144718319178, -0.004753453191369772, 0.050086457282304764, 0.00420472351834178, -0.0022874753922224045, 0.042787689715623856, 0.005153431091457605, -0.020045161247253418, -0.010049025528132915, 0.020970728248357773, 0.01344718225300312, -0.026960477232933044, 0.018603919073939323, -0.015205761417746544, 0.0037353283260017633, -0.011007648892700672, 0.0005016248323954642, -2.4262590159196407e-05, 0.0020907921716570854, 0.005943469703197479, -0.014914869330823421, -0.016276776790618896, 0.02450110949575901, 0.022663196548819542, -0.0037353283260017633, 0.014861979521811008, 0.008396225050091743, -0.005090624559670687, -0.0009090400999411941, -0.015880104154348373, -0.008283834904432297, -0.014253748580813408, -0.016580890864133835, 0.012640615925192833, 0.030543748289346695, -0.0028031491674482822, 0.00043551286216825247, 0.03847718983888626, -0.03313533961772919, 0.01410830207169056, 0.206163689494133, 0.0006780612748116255, 0.0019817075226455927, 0.036150045692920685, -0.021645070984959602, 0.0066112009808421135, 0.028348829597234726, 0.02025671862065792, 0.009751521050930023, 0.00011982801515841857, -0.02705303393304348, 0.016065217554569244, 0.006012887228280306, 0.0073913224041461945, 0.002550270641222596, -0.005024512764066458, -0.03432535380125046, -0.0026395218446850777, -0.004614618141204119, -0.04389837384223938, 0.005662493407726288, -0.025069672614336014, -0.016065217554569244, -0.02383998967707157, 0.022729307413101196, -0.00901767797768116, -0.00866728462278843, -0.024937449023127556, 0.032421328127384186, 0.010386195965111256, -0.009797799400985241, -0.003404768416658044, 0.005176570266485214, -0.011001038365066051, -0.004994762130081654, -0.00535176694393158, 0.030358633026480675, 0.009526739828288555, 0.015866881236433983, -0.0038543299306184053, -0.005999664776027203, 0.0018627058016136289, -0.0011396057670935988, -0.0021866546012461185, -0.024038325995206833, 0.02856038697063923, -0.01685856282711029, -0.011265486478805542, 0.0038510244339704514, 0.005940163973718882, -0.027925711125135422, 0.026616694405674934, 0.035964932292699814, 0.006317002233117819, -0.01870969869196415, -0.0045518116094172, 0.008931731805205345, 0.021208731457591057, -0.017427125945687294, -0.009738299064338207, -0.015761103481054306, 0.020812060683965683, -0.0029783458448946476, -0.0010850633261725307, -0.012977787293493748, 0.021883074194192886, -0.006657479330897331, -0.007576436270028353, 0.014333083294332027, -0.013764520175755024, 0.007609492167830467, -0.02077239193022251, -0.004627840593457222, 0.01504709292203188, -0.00659797852858901, -0.009420961141586304, 0.009976302273571491, -0.010974593460559845, 0.02805793657898903, 0.0051964037120342255, 0.012845562770962715, -0.013870298862457275, 0.00022333463130053133, 0.0005206320784054697, -0.013698408380150795, -0.02061372436583042, 0.011800993233919144, -0.018841922283172607, -0.007946663536131382, 0.005140208639204502, -0.013976078480482101, -0.01938404142856598, 0.013539738953113556, -0.008363168686628342, -0.008224333636462688, -0.002692411420866847, 0.013156289234757423, 0.0029171924106776714, 0.00633353041484952, 0.004703869111835957, 0.0026395218446850777, -0.03636160492897034, 0.04696597158908844, 0.008991233073174953, -0.016964340582489967, 0.008204500190913677, 0.0017899826634675264, 0.008270611986517906, 0.007662381511181593, -0.023165646940469742, 0.0122571662068367, 0.009949857369065285, 0.0004196046502329409, -0.012581114657223225, 0.016752783209085464, 0.02246486023068428, -0.005530269350856543, -0.021129397675395012, 0.007906995713710785, 0.016395777463912964, -0.008025997318327427, -0.03482780605554581, -0.01987326890230179, 0.009771354496479034, 0.001799899386242032, -0.021010395139455795, -0.010829146951436996, 0.013976078480482101, 0.0031188339926302433, -0.014994203113019466, 0.030649526044726372, -0.02106328494846821, -0.015932993963360786, -0.0039402758702635765, -0.010710145346820354, 0.02434244193136692, -0.0024659777991473675, -0.021843407303094864, 0.030702415853738785, -0.0009206096874549985, 0.010915092192590237, 0.0066707017831504345, 0.006019498221576214, 0.03146931529045105, -0.0010652297642081976, -0.01055808737874031, 0.018815476447343826, -0.023720989003777504, -0.00027415822842158377, -0.01669989340007305, -0.032209768891334534, 0.008911898359656334, 0.01379096508026123, 0.001444547320716083, 0.017744462937116623, -0.0029337203595787287, -0.025823350995779037, -0.030173519626259804, 0.006875648628920317, 0.017916353419423103, -0.012779450975358486, 0.014941313304007053, 0.051805369555950165, -0.013632295653223991, -0.004693952389061451, 0.003417990868911147, -0.1670253723859787, 0.025228342041373253, 0.010465530678629875, -0.016025550663471222, 0.02226652391254902, 0.036652497947216034, 0.03723428398370743, -0.007351655047386885, -0.011767937801778316, 0.008402836509048939, 0.01047214213758707, 0.0016189177986234426, -0.03728717193007469, -0.03059663623571396, -0.012521614320576191, 0.02159218117594719, -0.01716267690062523, 0.006422781385481358, 0.038344964385032654, 0.023258203640580177, 0.010220916010439396, -0.008627616800367832, 0.024355662986636162, -0.020111272111535072, 0.010650644078850746, 0.014015745371580124, -0.015166094526648521, 0.01736101321876049, 0.003226266009733081, -0.0028609971050173044, -0.008792896755039692, 0.007173152640461922, 0.002393254777416587, -0.023244982585310936, 0.01941048540174961, 0.015086759813129902, -0.011695214547216892, -0.0177047960460186, -0.014002523384988308, 0.024805225431919098, 0.010320084169507027, 0.0071533191949129105, 0.022755753248929977, -0.005526963621377945, -0.013400903902947903, 0.02532089874148369, -0.012567892670631409, 0.0026444802060723305, 0.015086759813129902, -0.03252710774540901, 0.002804802032187581, -0.00010732871305663139, 0.012951342388987541, -0.004885677248239517, 0.028005046769976616, 0.03191887587308884, -0.004115472547709942, 0.004350170027464628, 0.012726561166346073, -0.021327733993530273, -0.007986330427229404, 0.0011230777017772198, 0.0024048243649303913, -0.01088864728808403, -0.0070343175902962685, -0.014425639994442463, -0.02808438055217266, -0.002112278714776039, -0.0364144928753376, 0.007007872685790062, -0.009202791377902031, -0.016369333490729332, 0.020983951166272163, -0.02669602818787098, -0.009936634451150894, -0.00010123401443706825, -0.02007160522043705, 0.01785024255514145, 0.013480238616466522, -0.010842368938028812, -0.03720783814787865, 0.028031490743160248, -0.0051897927187383175, -0.01047214213758707, 0.01437275018543005, 0.01293150894343853, -0.0012495169648900628, -0.027634819969534874, -0.025955574586987495, 0.006039331667125225, 0.01700400747358799, -0.02481844834983349, -0.004085721913725138, -0.018603919073939323, 0.024210216477513313, -0.003715494880452752, 0.01632966659963131, -0.020785614848136902, 0.006075693294405937, -0.024765558540821075, 0.010915092192590237, -0.03186598792672157, -0.0047137863002717495, 0.03591204434633255, 0.032950226217508316, 0.008376391604542732, 0.0032741972245275974, 0.014081857167184353, 0.0336906798183918, 0.007047540042549372, -0.020891394466161728, 8.826985867926851e-05, 0.02075917087495327, -0.0068492041900753975, -0.009824244305491447, 0.03247421979904175, -0.007847495377063751, -0.017440347000956535, 0.00040638225618749857, -0.012984398752450943, 0.05601009353995323, 0.0026577026583254337, 0.0030394995119422674, 0.002077569952234626, -0.0008288793032988906, -0.047177527099847794, -0.11223174631595612, -0.008482170291244984, -0.003348573110997677, 0.03009418584406376, 0.0010230833431705832, 0.009235847741365433, 0.000200195427169092, -0.00043509964598342776, 0.013473627157509327, 0.006449226289987564, -0.01972782239317894, -0.02856038697063923, 0.004171667620539665, -0.0004375788557808846, 0.02378709986805916, -0.018828699365258217, 0.001900720177218318, -0.012614171020686626, 0.016065217554569244, 0.025995241478085518, 0.016104884445667267, -0.013222401961684227, 0.005936858244240284, -0.018154356628656387, 0.001018951297737658, -0.00781443901360035, -0.038530077785253525, -0.009969690814614296, 0.024091215804219246, 0.0019238594686612487, -0.023165646940469742, -0.006042637396603823, 0.005014595575630665, -0.011602656915783882, -0.01581399142742157, -0.007351655047386885, -0.045009054243564606, 0.011417543515563011, 0.017942799255251884, -0.011668769642710686, 0.018947701901197433, -0.014742977917194366, 0.028269493952393532, -0.0210765078663826, 0.0022825170308351517, -0.0017552737845107913, -0.01685856282711029, 0.019304705783724785, 0.010829146951436996, -0.028375273570418358, -0.010227527469396591, 0.026801807805895805, -0.031099088490009308, -0.0025767155457288027, 0.03448402136564255, -0.024752335622906685, 0.02622002176940441, 0.005622826050966978, -0.00891850981861353, -0.005513741634786129, -0.010564698837697506, 0.007021095138043165, 0.008310279808938503, 0.01919892616569996, -0.003579965326935053, -0.0008086324669420719, -0.017585793510079384, -0.02808438055217266, 0.03321467339992523, 0.0015891673974692822, -0.008039220236241817, 0.0073847114108502865, -0.018445249646902084, 0.017387457191944122, -0.011648936197161674, 0.021869851276278496, -0.011034093797206879, -0.007490490563213825, -0.0032196547836065292, -0.004452643916010857, -0.01012835931032896, -0.026405135169625282, 0.012085274793207645, -0.001702384208329022, -0.004181584343314171, 0.004829482175409794, 0.014015745371580124, -0.004766675643622875, 0.00251060351729393, -0.010174637660384178, 0.014081857167184353, 0.0071533191949129105, -0.016805673018097878, -0.034113794565200806, 0.025387011468410492, 0.030385078862309456, 0.0008759840857237577, 0.012085274793207645, -0.0076227146200835705, -0.007219431456178427, -0.035118699073791504, -0.019251815974712372, -0.061299052089452744, 0.02364165335893631, 0.025426678359508514, 0.0024296161718666553, 0.013949633575975895, 0.001882539363577962, -0.004432810004800558, -0.007721882313489914, -0.03387579321861267, -9.94262591120787e-05, -0.0048988997004926205, 0.03284444659948349, -0.002804802032187581, -0.015020648017525673, -0.011139873415231705, 0.00506417965516448, -0.00893834326416254, -0.004089027643203735, 0.006052554119378328, -0.005917024798691273, 0.0025816739071160555, -0.0028758724220097065, 0.013738075271248817, 0.006627728696912527, -0.015932993963360786, 0.006574839353561401, 0.012045607902109623, -0.0035502146929502487, 0.0007578089134767652, -0.010101914405822754, 0.008118554949760437, -0.0199261587113142, 0.02346976287662983, 0.01470331009477377, 0.020785614848136902, 0.025796905159950256, -0.010445697233080864, -0.0036890499759465456, 0.011820826679468155, 0.05489940941333771, -0.007298765704035759, 0.006574839353561401, 0.01174149289727211, -0.023165646940469742, 0.004581562243402004, 0.04820887744426727, -0.014914869330823421, -0.01291828602552414, 0.0042377798818051815, 0.0027188563253730536, 0.007536768913269043, 0.028692610561847687, 0.005464157555252314, -0.013063732534646988, -0.011285319924354553, -0.014676866121590137, 0.011688603088259697, -0.00911684613674879, 0.004194806795567274, -0.014676866121590137, 0.021050063893198967, -0.00463114632293582, 0.015179316513240337, -0.0039997766725718975, 0.02346976287662983, -0.024699445813894272, -0.02789926715195179, 0.009923412464559078, -0.002689105924218893, -0.023271426558494568, -0.012640615925192833, -0.01498098112642765, 0.0205740574747324, 0.015218984335660934, 0.021182287484407425, 0.026484470814466476, 0.003348573110997677, -0.010650644078850746, -0.01823369227349758, 0.01182743813842535, -0.003143626032397151, 0.004637757316231728, -0.04360748082399368, 0.02128806710243225, 0.024792002514004707, 0.003421296365559101, 0.002381684957072139, 0.014571086503565311, -3.3495027309982106e-05, 0.011258875019848347, 0.02961817942559719, -0.020190607756376266, 0.012191054411232471, -0.02145995758473873, -0.002218057867139578, 0.029142173007130623, -0.012052219361066818, 0.008607783354818821, 0.009235847741365433, 0.01704367622733116, -0.005788106471300125, 0.018974145874381065, 0.0006644256645813584, -0.01580077037215233, -0.0030130548402667046, -0.002490769838914275, -0.017056897282600403, -0.04334303364157677, -0.012481947429478168, 0.001601563417352736, 0.005814550910145044, -0.0019255122169852257, 0.022213634103536606, 0.0240118820220232, 0.00901767797768116, 0.004095639102160931, -0.008720173500478268, -0.02927439659833908, -0.013189345598220825, 0.038371410220861435, 0.0036923557054251432, 0.03152220696210861, 0.02362843230366707, -0.012779450975358486, 0.026577027514576912, 0.022504527121782303, 0.02532089874148369, 0.007470656652003527, -0.0001579457166371867, -0.008052442222833633, -0.003404768416658044, 0.012303444556891918, -0.0421530157327652, 0.010617588646709919, -0.002844469156116247, -0.017096566036343575, 0.012362945824861526, 0.012362945824861526, -0.02737037092447281, 0.040724996477365494, 0.00522615434601903, -0.000816070067230612, 0.005437712650746107, 0.01873614266514778, 0.030358633026480675, 0.030358633026480675, 0.00791360717266798, -0.0074508232064545155, -0.008991233073174953, 0.00027023282018490136, -0.019489819183945656, 0.036335159093141556, -0.017215566709637642, -0.0035303812474012375, 0.0028196771163493395, -0.017665129154920578, 0.01404219027608633, -0.033426232635974884, 0.0004342732427176088, 0.009903579019010067, -0.004925344604998827, 0.041782788932323456, -0.001679245033301413, -0.007047540042549372, 0.0041253892704844475, 0.017651906237006187, 0.009301959536969662, -0.001781718572601676, -0.03593848645687103, -0.001882539363577962, 0.007655770517885685, -0.005156736820936203, -0.00977796595543623, 0.030226409435272217, -0.008462336845695972, -0.0008164832834154367, -0.03170732036232948, 0.015734657645225525, 0.009110234677791595, -0.0034741859417408705, -0.004931955598294735, -0.013083565980196, -0.008495393209159374, 0.012105108238756657, 0.011225818656384945, -0.01988649182021618, -0.003758467733860016, -0.030728861689567566], "f22be064-6012-4722-a832-a61abf306896": [-0.0018086076015606523, -0.008364190347492695, 0.0018102593021467328, 0.004086297005414963, -0.012407544068992138, 0.034672413021326065, -0.013557124882936478, -0.010762454010546207, -0.01684730313718319, -0.016411256045103073, 0.023916564881801605, 0.026400715112686157, 0.009850717149674892, 0.006636516191065311, -0.0015633306466042995, 0.0022116214968264103, 0.04334051534533501, 0.004446366801857948, 0.039719995111227036, -0.027986343950033188, 0.006233502179384232, -0.006236805580556393, -0.015393811278045177, 0.03020622394979, -0.01885576732456684, 0.02172311209142208, 0.027827782556414604, -0.01822151429951191, 0.012685028836131096, -0.0077299391850829124, -0.009850717149674892, 0.005344889592379332, -0.012718062847852707, -0.030999038368463516, -0.03255823999643326, -0.01637161523103714, -0.005334979388862848, -0.009698761627078056, -0.006065029185265303, -0.011185288429260254, 0.0006288834265433252, 0.009824290871620178, -0.00608815299347043, 0.00085062364814803, -0.02326910011470318, 0.011713830754160881, -0.015010617673397064, -0.018234727904200554, -0.018419718369841576, 0.014600996859371662, 0.02324267290532589, 0.019754288718104362, -0.02530398964881897, 0.012513251975178719, -0.01890862174332142, -0.007848861627280712, 0.012341476045548916, 0.01286341156810522, -0.01762690395116806, 0.0334039106965065, 0.02996838092803955, 0.000740785850211978, 0.014217803254723549, 0.001330441446043551, -0.04651177302002907, -0.019014328718185425, -0.0194239504635334, -0.013187144882977009, -0.026691414415836334, -0.006094759795814753, 0.04511113464832306, 0.02201380953192711, 0.001505521358922124, 0.005414261016994715, 0.016358401626348495, -0.029862672090530396, -0.024577243253588676, -0.005037674214690924, -0.037658680230379105, 0.0079347500577569, 0.0013172279577702284, -0.03665444627404213, -0.002551871119067073, -0.0007696905522607267, 0.025977881625294685, -0.001333744847215712, -0.00620707543566823, 0.025938240811228752, -0.002305768197402358, -0.027087822556495667, 0.026387501507997513, 0.006890877615660429, 7.63393472880125e-05, 0.01840650476515293, -0.011793112382292747, 0.025145426392555237, -0.018723631277680397, 0.026625346392393112, 0.006078242789953947, -0.016305547207593918, -0.016265906393527985, -0.010934230871498585, -0.009467524476349354, -0.003607304999604821, -0.016530178487300873, 0.01855185441672802, 0.006666246801614761, -0.010570857673883438, 0.008925767615437508, -0.026664987206459045, -0.010266944766044617, 0.020864229649305344, -0.011654370464384556, -0.036046624183654785, -0.01544666476547718, -0.031474728137254715, 0.018631136044859886, -0.015697723254561424, -0.010736026801168919, -3.633732194430195e-05, 0.002862389897927642, 0.026215726509690285, -0.028039198368787766, -0.017494767904281616, 0.012136665172874928, 0.0019523052033036947, -0.006144310813397169, -0.03335105627775192, -0.013887464068830013, -0.0036238220054656267, 0.040433529764413834, -0.0015757184009999037, 0.009533591568470001, 0.0005954365478828549, -0.012037564069032669, -0.006283053196966648, -0.026361076161265373, 0.0035841811913996935, -0.01174025796353817, -0.03295464813709259, 0.02262163534760475, 0.01099369116127491, -0.005731386598199606, -0.03234682232141495, -0.013213571161031723, 0.018353650346398354, -0.0037856881972402334, 0.02120778150856495, -0.008846485987305641, -0.0019159679068252444, 0.013200357556343079, -0.0023338471073657274, 0.01639804244041443, -0.021551335230469704, 0.012513251975178719, 0.009665727615356445, 0.009929998777806759, 0.0008497977978549898, 0.015512732788920403, -0.016886943951249123, 0.025858959183096886, 0.02928127534687519, 0.010736026801168919, -0.0058337920345366, 0.005130168981850147, 0.02951911836862564, -0.015407024882733822, -0.014297084882855415, -0.019912851974368095, -0.0022661276161670685, 0.012671815231442451, 0.01736263372004032, -0.03670730069279671, 0.013742114417254925, -0.011310817673802376, 0.002112519694492221, 0.024009060114622116, 0.022238440811634064, -0.014006385579705238, 0.009784650057554245, -0.039006464183330536, -0.005255698226392269, 0.01995249278843403, 0.018208302557468414, -0.03668087348341942, -0.009031476452946663, -0.02243664488196373, -0.002675748197361827, 0.007478881627321243, 0.010273551568388939, 0.0072806780226528645, 0.01613377034664154, 0.006831416394561529, -0.02174953930079937, -0.6376340985298157, -0.021432412788271904, -0.002966446802020073, -0.011885607615113258, -0.006904091220349073, 0.009996066801249981, 0.019648581743240356, 0.002978008706122637, 0.004872504621744156, 6.14224627497606e-05, -0.036760155111551285, 0.01580343209207058, -0.0028888171073049307, -0.02698211371898651, -0.027774928137660027, -0.005179719999432564, 0.010551037266850471, -0.019463591277599335, 0.0061575244180858135, -0.008687923662364483, -0.0232162456959486, 0.005827185232192278, -0.0008968711481429636, 0.01980714313685894, 0.010557644069194794, -0.003957464825361967, 0.02139277197420597, 0.010101775638759136, -0.0036106084007769823, 0.0281977616250515, -0.014270657673478127, 0.05052869766950607, 0.014482074417173862, 0.011106006801128387, 0.0461946465075016, 0.001081861206330359, -0.023942992091178894, 0.02978339046239853, 0.013570337556302547, 0.015697723254561424, -0.015750577673316002, -0.026942472904920578, 0.00852936040610075, 0.013794968836009502, 0.01672838069498539, -0.0014064195565879345, 0.009936605580151081, 0.0031844708137214184, 0.003177864011377096, 0.01625269278883934, 0.013887464068830013, -0.0024973649997264147, -0.012374510057270527, 0.0026707930956035852, -0.0264139287173748, -0.015142752788960934, 0.03895360976457596, -0.01292287278920412, 0.004287804011255503, 0.0006065855268388987, 0.0021240815985947847, 0.007677085231989622, 0.01651696488261223, -0.005047584418207407, 0.008238662034273148, 0.028224188834428787, -0.0020200246945023537, 0.014270657673478127, 0.008787024766206741, -0.028990576043725014, 0.007544949185103178, 0.01675480790436268, 0.008483112789690495, -0.018617922440171242, 0.02222522720694542, 0.000200784343178384, 0.029889099299907684, -0.004621446598321199, 0.008542574010789394, 0.024418679997324944, 0.0025353541132062674, -0.02620251290500164, -0.024656524881720543, -0.016741594299674034, 0.023295527324080467, -0.013808182440698147, -0.037420835345983505, 0.034117441624403, 0.010227303951978683, 0.009064510464668274, -0.01444243360310793, 0.018565068021416664, 0.014468860812485218, 0.0076572648249566555, 0.03184470906853676, 0.029228420928120613, -0.0028739518020302057, -0.0076572648249566555, 0.008747383952140808, -0.03160686418414116, -0.001508824760094285, -0.008364190347492695, 0.007967784069478512, 0.0010413946583867073, 0.014587783254683018, -0.004324141424149275, -0.03372103348374367, -0.01971464790403843, 0.03987855836749077, -0.014865268021821976, 0.0029383678920567036, -0.024867942556738853, -0.014283871278166771, 0.004988123197108507, -0.016794448718428612, -0.018498999997973442, 0.010319799184799194, 0.011119220405817032, 0.0028574347961694, -0.005516665987670422, 0.01738906092941761, -0.003455349011346698, 0.007650658022612333, -0.004918752238154411, 0.019635368138551712, 0.03945572301745415, 0.0056421952322125435, 0.0055794306099414825, -0.009976246394217014, -0.006292963400483131, 0.0006949512753635645, -0.01556558720767498, 0.021220995113253593, -0.00448270421475172, 0.016781235113739967, -0.01724371127784252, 0.010471755638718605, -0.0036436424124985933, 0.004528951831161976, -0.018129020929336548, -0.014363151974976063, 0.014363151974976063, 0.008740777149796486, 0.009579839184880257, -0.027087822556495667, -0.03128973767161369, -0.001366778858937323, -0.0097119752317667, -0.041939876973629, 0.007029619999229908, -0.02172311209142208, -0.004595019388943911, -0.013140897266566753, 0.01604127511382103, 0.011475986801087856, -0.00796117726713419, -0.008549180813133717, -0.023427661508321762, 0.0035379338078200817, -0.022634848952293396, 0.024418679997324944, 0.02264806255698204, -0.03485740348696709, -0.011436345987021923, 0.03210897743701935, -0.02063959836959839, -0.0133258868008852, 0.011330638080835342, -0.005724779795855284, -0.030761195346713066, 0.0008588821510784328, -0.025819318369030952, 0.012063991278409958, 0.035148099064826965, -0.03210897743701935, 0.003468562616035342, -0.003349640406668186, -0.020097842440009117, -0.004436456598341465, 0.014970976859331131, -0.015499519184231758, 0.021194567903876305, -0.018327223137021065, -0.021709898486733437, 0.028990576043725014, 0.006590269040316343, -0.010148023255169392, -8.06234311312437e-05, 0.01807616651058197, 0.023705147206783295, -0.002690613502636552, 0.01051800325512886, 0.017481554299592972, -0.0026344559155404568, 0.006838023196905851, -0.017692971974611282, 0.014865268021821976, 0.02160418964922428, 0.01036604680120945, 0.01478598639369011, 0.017706185579299927, 0.026625346392393112, 0.026757482439279556, 0.00010477949399501085, 0.005655408836901188, -0.016292333602905273, -0.000488902151118964, 0.00023681197490077466, 0.014600996859371662, -0.03686586394906044, -0.0077960072085261345, -0.024365825578570366, -0.006831416394561529, -0.02184203453361988, 0.029254848137497902, 0.024894369766116142, 0.018062952905893326, 0.0023338471073657274, 0.007320318836718798, 0.005368013400584459, 0.01432351116091013, -0.010815308429300785, -0.015631655231118202, -0.0003962006885558367, -0.009361815638840199, -0.006567145232111216, 0.013583551160991192, 0.008787024766206741, 0.004003711976110935, 0.001031484454870224, 0.003693193197250366, -0.024788660928606987, 0.001475790748372674, -0.0024841513950377703, 0.012169699184596539, -0.01197810284793377, 0.009315568022429943, -0.01959572732448578, 0.02751065604388714, -0.02748422883450985, -0.0031960327178239822, 0.006963552441447973, 0.007293891627341509, -0.02904343046247959, 0.000397233001422137, 0.008357584476470947, 0.015037044882774353, 0.015354170463979244, 0.02859416976571083, 0.022145945578813553, 0.0011074624489992857, 0.0048262570053339005, -0.015023831278085709, -0.009011656045913696, 0.009137184359133244, -0.02243664488196373, -0.007967784069478512, 0.014151735231280327, 0.012374510057270527, 0.01363640557974577, 0.01375532802194357, 0.004994729999452829, -0.011601516045629978, 0.01363640557974577, 0.05956678092479706, 0.011713830754160881, 0.0132664255797863, 0.011694011278450489, -0.011000297963619232, -0.028937721624970436, -0.006008871830999851, -0.03485740348696709, 0.001511302194558084, -0.00796117726713419, 0.008370797149837017, -0.01622626557946205, -0.009143791161477566, 0.0014774424489587545, 0.021590976044535637, -0.007822434417903423, -0.0208510160446167, -0.044080473482608795, 0.040882788598537445, 0.0009142140042968094, -0.0066067855805158615, 0.01223576720803976, -0.001123153604567051, -0.007307105232030153, -0.019741075113415718, 0.030311932787299156, -0.0039079138077795506, 0.0010050572454929352, 0.015961995348334312, -0.006818202789872885, -0.01030658558011055, 0.004538862034678459, 0.027325665578246117, -0.01208381075412035, 0.026598919183015823, 0.009005049243569374, 0.02366550639271736, 0.016213051974773407, -0.03250538557767868, 0.019516445696353912, 0.008113132789731026, -0.018155448138713837, -0.02132670395076275, -0.002365229418501258, -0.0036535526160150766, -0.022951973602175713, -0.002560129389166832, -0.04014283046126366, -0.019529659301042557, -0.016530178487300873, 0.008859699591994286, 0.0024230387061834335, -0.03134259209036827, 0.025145426392555237, 0.01487848162651062, -0.019754288718104362, -0.003167953807860613, -0.0019902943167835474, -0.034936681389808655, 0.005767724011093378, 0.09434489905834198, 0.013418382033705711, -0.02506614476442337, -0.003947554621845484, -0.015539159998297691, 0.0035610576160252094, -0.01651696488261223, -0.029122712090611458, 0.026479996740818024, -0.003931037615984678, 0.016635887324810028, -0.014402792789041996, 0.014495288021862507, 0.0063293008133769035, 0.019701434299349785, -0.013861036859452724, 0.003719620406627655, -0.012077204883098602, -0.003153088502585888, -0.00637885183095932, 0.004476097412407398, -0.002380094490945339, -0.0005297816242091358, 0.04283839836716652, -0.029017003253102303, -0.012453790754079819, 0.021128501743078232, -0.0032769658137112856, 0.02772207371890545, -0.00864828284829855, -0.005840398836880922, 0.025198280811309814, 0.009308961220085621, 0.028752731159329414, -0.009698761627078056, -0.0030292111914604902, -0.01070959959179163, 0.011383491568267345, -0.003713013604283333, 0.01909361034631729, 0.01774582639336586, 0.010339619591832161, 0.020996365696191788, -4.023429210064933e-05, 0.008172594010829926, -0.008516146801412106, -0.002026631496846676, 0.005130168981850147, -0.02264806255698204, 0.0005050061736255884, 0.03665444627404213, 0.008284909650683403, -0.015380597673356533, -0.022330936044454575, 0.033800315111875534, -0.013312673196196556, 0.001712809200398624, 0.004446366801857948, -0.029360555112361908, 0.01876327209174633, -0.005387833807617426, -0.016979439184069633, -0.009976246394217014, -0.015592014417052269, -0.007009799592196941, -0.012341476045548916, -0.019754288718104362, -0.025264348834753036, -0.0028326595202088356, 0.025013290345668793, 0.004393512383103371, -0.0024560727179050446, -0.035174526274204254, 0.011119220405817032, 0.0042151291854679585, 0.008311336860060692, 0.002465982688590884, -0.016292333602905273, -0.010128202848136425, 0.008146166801452637, -0.021472053602337837, -0.034249577671289444, 0.007075867615640163, -0.008430258370935917, -0.01005552802234888, -0.009929998777806759, 0.009791256859898567, 0.005562913604080677, -0.015882713720202446, 0.015023831278085709, 0.022925546392798424, 0.023982632905244827, 0.003934341017156839, -0.014125308021903038, 0.00591637659817934, 0.005582734011113644, -0.004522345028817654, -0.009388242848217487, 0.012123451568186283, -0.002183542586863041, -0.0020910475868731737, -0.037447262555360794, 0.0043439618311822414, -0.024749020114541054, 0.017904389649629593, 0.0017920905956998467, 0.004056566394865513, 0.028673449531197548, -0.025290776044130325, -0.038557201623916626, 0.0034421354066580534, -0.0097119752317667, -0.0011859179940074682, 0.013940317556262016, -0.007128722034394741, 0.01604127511382103, 0.02933412976562977, 0.022753769531846046, 0.004205218981951475, 0.01622626557946205, 0.016358401626348495, -0.019767502322793007, 0.0005330850253812969, -0.007003192789852619, -0.026030736044049263, -0.0024263421073555946, 0.014970976859331131, -0.019820356741547585, 0.01810259371995926, -0.0020679240114986897, 0.029492691159248352, 0.015142752788960934, 0.0038451494183391333, -0.03385316953063011, -0.03525380790233612, 0.010438721626996994, -0.028964148834347725, -0.0032224596943706274, -0.0021405986044555902, -0.003511506598442793, -0.005209450609982014, -0.009295747615396976, -0.017441915348172188, -0.027589937672019005, -0.0005289557739160955, -0.021577762439846992, -0.015948781743645668, -0.004634660203009844, 0.0019093611044809222, 0.018062952905893326, -0.021498480811715126, -0.024841515347361565, -0.030576204881072044, 0.009104151278734207, -0.013913891278207302, -0.02246307209134102, 0.003765867790207267, -0.013253211975097656, 0.034223150461912155, -0.02381085604429245, 0.022634848952293396, -0.019675008952617645, 0.009632693603634834, 0.01074263360351324, 0.011072972789406776, 0.002690613502636552, 0.00045091312495060265, -0.02262163534760475, -0.02485472895205021, -0.004585109185427427, 0.01191864162683487, 0.02613644488155842, 0.016186624765396118, 0.014085667207837105, -0.0074854884296655655, 0.03969356790184975, -0.021432412788271904, -0.017970457673072815, -0.020454607903957367, -0.03660159185528755, -0.009308961220085621, 0.015948781743645668, -0.010749240405857563, 0.007928143255412579, -0.014614210464060307, 0.012731276452541351, 0.04172845929861069, 0.022238440811634064, 0.006596875376999378, -0.0033892812207341194, 0.018036525696516037, -0.009586445987224579, 0.004201915580779314, -0.0008163509774021804, 0.017640117555856705, -0.010009280405938625, 0.014217803254723549, 0.003485079389065504, -0.0061872550286352634, -0.0004917926271446049, 0.0001773508993210271, -0.009018262848258018, 0.0037031034007668495, -0.02793348953127861, -0.03176542744040489, 0.00611788360401988, -0.004178792238235474, -0.0038451494183391333, 0.02390335127711296, -0.01129099726676941, 0.0009926696075126529, -0.005771027412265539, -0.019344668835401535, -0.03755297139286995, -0.023639079183340073, -0.008489719592034817, -0.01397995837032795, 0.018710417672991753, -0.011152254417538643, -0.01945037767291069, -0.0009315568022429943, -0.021921316161751747, 0.04719887673854828, 0.006458132993429899, 0.03451384976506233, -0.008886126801371574, -0.017706185579299927, -0.005615768022835255, 0.005648802034556866, -0.02426011674106121, -0.006273142993450165, 0.02629500813782215, 0.01580343209207058, -0.001980384113267064, -0.004231646191328764, -0.012433971278369427, -0.0021472054067999125, -0.05269572511315346, -0.029809817671775818, -0.01384782325476408, 0.0024841513950377703, -0.01360997837036848, -0.012196126393973827, 0.006544021423906088, -0.0343552865087986, 0.010286765173077583, 0.007128722034394741, 0.016979439184069633, -0.013874250464141369, -0.009176825173199177, -0.0348309762775898, -0.0031250095926225185, 0.01672838069498539, 0.027986343950033188, 0.046115364879369736, 0.0007750585791654885, -0.03110474720597267, -0.003934341017156839, -0.023467302322387695, 0.01774582639336586, -0.0012965817004442215, 0.014970976859331131, -0.014085667207837105, -0.003884789999574423, -0.012090417556464672, 0.004439759999513626, -0.022397004067897797, 0.00973840244114399, -0.0029614917002618313, 0.025251135230064392, 0.020745307207107544, 0.007987604476511478, 0.0132069643586874, 0.025145426392555237, 0.006930518429726362, 0.020441394299268723, 0.006989979185163975, -0.007062654010951519, -0.010782274417579174, -0.00858882162719965, 0.0038682729937136173, 0.010643531568348408, 0.008390617556869984, -0.03591448813676834, -0.008938981220126152, -0.005837095435708761, -0.009249499998986721, -0.011000297963619232, -0.005021157208830118, -0.04513756185770035, -0.014336724765598774, 0.0008076795493252575, -0.023942992091178894, 0.0044860076159238815, -0.004221735987812281, 0.017798680812120438, -0.013570337556302547, 0.03279608488082886, -0.0402749665081501, 0.02091708406805992, -0.007822434417903423, 0.012592533603310585, -0.027431374415755272, -0.006583662237972021, 0.006930518429726362, -0.004264680203050375, 0.017917603254318237, -0.018366863951086998, -0.01696622557938099, 0.008516146801412106, 0.04854666069149971, 0.0012585927033796906, -0.00288716540671885, 0.001813562703318894, -0.0005467114970088005, -0.01684730313718319, 0.016437683254480362, -0.022119518369436264, -0.02954554557800293, 0.01441600639373064, 0.012361296452581882, -0.00743924081325531, -0.00016620194946881384, -0.023678719997406006, 0.016186624765396118, -0.00557282380759716, 0.010656745173037052, -0.006851236801594496, -0.03089332953095436, 0.025449339300394058, -0.021472053602337837, 0.006758742034435272, 0.002705478807911277, -0.017692971974611282, -0.022423431277275085, -0.024299757555127144, -0.005463812034577131, 0.0036502492148429155, -0.00019510663696564734, -0.030999038368463516, 0.009328781627118587, 0.019529659301042557, -0.019939279183745384, -0.002388352993875742, -0.00295818829908967, 0.0016252693021669984, 0.013689259998500347, -0.003465259214863181, -0.03731512650847435, -0.009401456452906132, -0.017560835927724838, 0.027748500928282738, -0.0034718660172075033, 0.005222664214670658, -0.011462773196399212, -0.02996838092803955, -0.040829937905073166, -0.015816645696759224, -0.0038055086042732, 0.0009323826525360346, 0.03842506557703018, 0.004158971831202507, 0.008938981220126152, 0.01288983877748251, -0.014363151974976063, 0.008687923662364483, -0.016411256045103073, -0.003511506598442793, -0.009837504476308823, -0.00608815299347043, 0.0008456686045974493, -0.011766685172915459, -0.03919145464897156, 0.0018532034009695053, 0.027748500928282738, -0.011707223951816559, -0.0027401645202189684, -0.010352833196520805, -0.0012668512063100934, 0.016477324068546295, -0.01281716488301754, 0.009910178370773792, 0.012764310464262962, 0.00852936040610075, 0.006590269040316343, -0.018472572788596153, 0.006411885377019644, -0.014931336045265198, -0.012870018370449543, -0.015288102440536022, -0.019767502322793007, 0.00046701717656105757, -0.007994210347533226, 0.011905428022146225, -0.0426534079015255, -0.01816866174340248, -0.0169397983700037, -0.014257444068789482, 0.03546522557735443, -0.0023404539097100496, 0.0033347751013934612, 0.027642792090773582, -0.007300498429685831, -0.01822151429951191, -0.008925767615437508, 0.030074089765548706, 0.0033116512931883335, -0.029651254415512085, 0.011964889243245125, -0.03350961580872536, -0.0019671705085784197, -0.0007606061990372837, -0.0003129964752588421, -0.0005723127978853881, 0.013662832789123058, 0.0021719809155911207, -0.016741594299674034, -0.02817133441567421, 0.02276698313653469, 0.015631655231118202, -0.001553420559503138, 0.0029862672090530396, 5.179616709938273e-05, 0.0002611745148897171, 0.012110237963497639, -0.019767502322793007, -0.011079579591751099, -0.005817275028675795, 0.002984615508466959, -0.009672334417700768, 0.018723631277680397, -0.016450896859169006, 0.00145844800863415, 0.023824069648981094, -0.03847791999578476, 0.008820058777928352, 0.20243191719055176, -0.004710638429969549, 0.006547324825078249, 0.04056566581130028, -0.0279599167406559, 0.011753471568226814, 0.025806104764342308, 0.011872394010424614, 0.008331157267093658, -0.0038649695925414562, -0.021115288138389587, 0.025832531973719597, 0.020441394299268723, 0.008152773603796959, 0.01793081685900688, -3.7576093745883554e-05, -0.040882788598537445, -0.01002249401062727, 0.0014468861045315862, -0.05502131208777428, -0.0049352687783539295, -0.015169179998338223, -0.012552892789244652, -0.02539648488163948, 0.021472053602337837, 0.006074939388781786, -0.020203551277518272, -0.015909140929579735, 0.01935788244009018, 0.008635069243609905, -0.023255886510014534, -0.01005552802234888, 0.010656745173037052, -0.005704959388822317, -0.018498999997973442, -0.0041754888370633125, 0.026189299300312996, 0.012797344475984573, 0.016358401626348495, -0.006494470406323671, -0.005285428836941719, -0.006517594214528799, 0.00508722523227334, -0.02691604569554329, -0.017217284068465233, 0.04669676348567009, -0.010815308429300785, -0.005668621975928545, -0.013140897266566753, 0.0016962921945378184, -0.02217237278819084, 0.014125308021903038, 0.04104135185480118, 0.012658601626753807, 0.002198407892137766, 0.0031613470055162907, 0.004330748226493597, 0.014772772789001465, -0.013477843254804611, -0.002652624389156699, -0.01014141645282507, 0.01568450964987278, 0.0033182580955326557, 0.001621140050701797, -0.008027244359254837, 0.023057682439684868, -0.010788881219923496, -0.0015245157992467284, 0.01589592732489109, -0.009692154824733734, 0.002370184287428856, -0.03498953580856323, 0.004040049389004707, 0.006464739795774221, 0.0029680985026061535, -0.010934230871498585, 0.016080915927886963, -0.019846783950924873, 0.012103631161153316, -0.0009827594039961696, 0.007359959185123444, -0.020771734416484833, -0.003977285232394934, -0.0030424247961491346, -0.01696622557938099, -0.024986863136291504, 0.02186846174299717, -0.020124269649386406, -0.007353352382779121, 0.018234727904200554, -0.018683990463614464, -0.02258199453353882, 0.013345707207918167, -0.020547103136777878, 0.009447704069316387, -0.0016112298471853137, 0.016503751277923584, 0.010590678080916405, 0.018419718369841576, -0.0019242264097556472, -0.008892733603715897, -0.01921253278851509, 0.039270736277103424, 0.004770099185407162, -0.019014328718185425, -0.0006957771256566048, 0.004476097412407398, 0.0041094208136200905, 0.018485786393284798, -0.01959572732448578, 0.005757813807576895, 0.00628965999931097, -0.009685548022389412, -0.016873730346560478, 0.029704108834266663, 0.046326782554388046, -0.020903870463371277, -0.03747368976473808, 0.014363151974976063, 0.012308442033827305, 0.013583551160991192, -0.0409884974360466, -0.0012734580086544156, 0.011462773196399212, 0.0009199948981404305, -0.027748500928282738, -0.018961474299430847, 0.018010098487138748, -0.004978212993592024, -0.008364190347492695, 0.030787622556090355, -0.0232162456959486, -0.007174969185143709, 0.004403422586619854, -0.020216764882206917, 0.017111575230956078, 0.0009389894548803568, -0.027193529531359673, 0.023771215230226517, -0.0031811674125492573, 0.007994210347533226, 0.0005372142768464983, 0.01157508883625269, 0.015037044882774353, -0.009520377963781357, -0.007511915639042854, 0.013689259998500347, -0.031897563487291336, 0.0023900046944618225, -0.03163329139351845, -0.02686319127678871, 0.0010661700507625937, 0.01226219441741705, -0.002812839113175869, 0.013127683661878109, 0.006246715784072876, 0.0010653442004695535, -0.02560790255665779, 8.222351607400924e-05, 0.013993171975016594, -0.015010617673397064, 0.020547103136777878, 0.04825596511363983, -0.015843072906136513, -0.02596466802060604, -0.0002661295875441283, -0.16649100184440613, 0.022991614416241646, 0.016953011974692345, -0.012044170871376991, 0.029836244881153107, 0.03747368976473808, 0.016886943951249123, -0.00023867013806011528, -0.0012040867004543543, -0.0076704784296453, 0.0246433112770319, 0.00732692563906312, -0.02906985767185688, -0.025925027206540108, -0.020666025578975677, 0.0020315865986049175, -0.012777524068951607, 0.005463812034577131, 0.03599376976490021, 0.012097024358808994, 0.01045854203402996, -0.013154110871255398, 0.017613690346479416, -0.01217630598694086, 0.020005347207188606, 0.01649053767323494, 0.003037469694390893, 0.018591495230793953, 0.019529659301042557, 0.0021207781974226236, -0.003455349011346698, 0.004621446598321199, 0.002044800203293562, -0.012017743661999702, 0.023282313719391823, 0.006246715784072876, -0.012870018370449543, -0.014904908835887909, -0.01432351116091013, 0.021855248138308525, 0.010907803662121296, 0.00519954040646553, 0.014164948835968971, -0.017230497673153877, -0.0016219659009948373, 0.028118479996919632, 1.2903878854331197e-08, 0.011766685172915459, 0.0228594783693552, -0.028224188834428787, 0.011020118370652199, -0.002981312107294798, 0.016596246510744095, -0.0006664594984613359, 0.035121671855449677, 0.016688741743564606, 0.004396815784275532, 0.012037564069032669, 0.011872394010424614, -0.022278081625699997, -0.004637963604182005, -0.0008522753487341106, 0.011647763662040234, -0.009077724069356918, 0.0028425694908946753, -0.018393291160464287, -0.027325665578246117, 0.002287599490955472, -0.035597361624240875, 0.01577700488269329, -0.007373172789812088, 0.014297084882855415, 0.03543879836797714, -0.0033859778195619583, -0.0018069559009745717, -0.009236286394298077, -0.027827782556414604, 0.02402227371931076, 0.0013560428051277995, -0.004816346801817417, -0.03599376976490021, 0.03070834092795849, -0.010372653603553772, -0.017904389649629593, 0.0116081228479743, 0.005655408836901188, 0.002589859999716282, -0.038372211158275604, -0.022714128717780113, 0.0009984505595639348, 0.01065013837069273, -0.02165704406797886, -0.013583551160991192, -0.014019599184393883, 0.020679239183664322, -0.0015682857483625412, 0.0049649993889033794, -0.015182393603026867, 0.0027401645202189684, -0.03020622394979, -0.01151562761515379, -0.03768510743975639, 0.007089081220328808, 0.04297053441405296, 0.0194239504635334, -0.0020728791132569313, 0.006824809592217207, 0.0171776432543993, 0.026612132787704468, 0.013689259998500347, -0.028514888137578964, 0.008027244359254837, 0.017190856859087944, -0.01151562761515379, -0.006253322586417198, 0.019701434299349785, -0.01902754232287407, -0.01660946011543274, 0.012004530057311058, -0.017428701743483543, 0.06691352277994156, 0.014257444068789482, -0.010656745173037052, 0.015420238487422466, -0.0005471244221553206, -0.0490487776696682, -0.11131113022565842, -0.010181057266891003, 0.0013254863442853093, 0.020811375230550766, -0.0005752032739110291, 0.01845935918390751, -0.004614839795976877, 0.013689259998500347, 0.0060914563946425915, -0.006028692238032818, -0.029651254415512085, -0.03731512650847435, 0.009546805173158646, -0.006755438633263111, 0.0002873951743822545, -0.01580343209207058, -0.0016962921945378184, -0.009890357963740826, 0.006963552441447973, 0.03290179371833801, 0.01789117604494095, -0.011588302440941334, -0.0008720956975594163, -0.029624827206134796, -0.001484875101596117, 0.0006478779250755906, -0.032373249530792236, -0.011099399998784065, 0.027048181742429733, 0.006547324825078249, -0.020454607903957367, -0.011852573603391647, 0.010901196859776974, 0.000214101150049828, -0.00950055755674839, 0.0005070707993581891, -0.04067137464880943, -0.006246715784072876, 0.013167324475944042, -0.02144562639296055, 0.009692154824733734, -0.008886126801371574, 0.03115760162472725, -0.014482074417173862, 0.009375029243528843, -0.006963552441447973, -0.01834043674170971, 0.013861036859452724, 0.009586445987224579, -0.009976246394217014, -0.005688442382961512, 0.03134259209036827, -0.029624827206134796, -0.019014328718185425, 0.02906985767185688, -0.031923990696668625, 0.036548737436532974, 0.011390098370611668, -0.014706704765558243, -0.0037295306101441383, -0.013458022847771645, 0.015023831278085709, 0.0030936275143176317, 0.010445328429341316, 0.010062134824693203, -0.001995249418541789, 0.006471346598118544, -0.028990576043725014, 0.026453569531440735, -0.0076572648249566555, -0.007538342382758856, 0.01441600639373064, -0.027021754533052444, 0.01407245360314846, 0.0006561364280059934, 0.004846077412366867, -0.022185586392879486, -0.0097119752317667, -0.0013056660536676645, -0.01254628598690033, 0.00020419097563717514, -0.017547622323036194, 0.01444243360310793, 0.008456685580313206, -0.008522753603756428, 0.0006776084774173796, 0.015697723254561424, -0.0045487722381949425, 0.004307624418288469, -0.013048402033746243, 0.008225448429584503, 0.013200357556343079, -0.013781755231320858, -0.03567664325237274, 0.01478598639369011, 0.029439836740493774, 0.013966744765639305, 0.0018383380956947803, -0.003772474592551589, -0.004261376801878214, -0.019582513719797134, -0.008945588022470474, -0.06210378557443619, 0.0324525311589241, 0.019582513719797134, 0.0014609255595132709, -0.0003852582012768835, -0.0028144908137619495, 0.015288102440536022, -0.009163611568510532, -0.04413332790136337, -0.0018003490986302495, 0.004149061627686024, 0.025713609531521797, -0.013372134417295456, -0.018155448138713837, -0.02148526720702648, 0.0267706960439682, 0.011284390464425087, -0.013451416045427322, -0.00027335574850440025, -0.0026840067002922297, 0.005949410609900951, -0.00692391162738204, 0.03131616488099098, 0.023850496858358383, -0.008522753603756428, 0.003392584389075637, 0.029598399996757507, 0.0013998127542436123, 0.009038083255290985, -0.007386386394500732, 0.01667552813887596, -0.022119518369436264, 0.017455128952860832, 0.0023404539097100496, 0.0037361374124884605, 0.030787622556090355, -0.023282313719391823, -0.005969231016933918, -0.0020877444185316563, 0.05266929790377617, 0.01360997837036848, 0.0019853392150253057, 0.0037856881972402334, -0.032875366508960724, 0.0007189008756540716, 0.035121671855449677, -0.014376365579664707, -0.00806688517332077, 0.020322473719716072, -0.002819445915520191, 0.013557124882936478, 0.019754288718104362, 0.0008588821510784328, -0.019437164068222046, -0.00841043796390295, -0.02264806255698204, 0.02975696325302124, -0.012500038370490074, 0.011694011278450489, -0.017825108021497726, 0.022040236741304398, -0.002094350988045335, 0.009348602034151554, -0.009883751161396503, 0.01989963836967945, -0.023876924067735672, -0.0075185224413871765, 0.023942992091178894, -0.023189818486571312, -0.02324267290532589, -0.0004736239498015493, 0.002660882892087102, 0.009064510464668274, 0.015420238487422466, 0.01912003755569458, 0.03279608488082886, 0.00646143639460206, -0.008298123255372047, -0.023084109649062157, 0.01057746447622776, -0.01316071767359972, -0.013035188429057598, -0.0525900162756443, 0.0158695001155138, 0.023731574416160583, -0.0017656635027378798, -0.016173411160707474, 0.0206131711602211, 0.004522345028817654, 0.010372653603553772, 0.033747460693120956, -0.010722813196480274, 0.0010463496437296271, -0.023771215230226517, 0.006649729795753956, 0.014231016859412193, -0.011766685172915459, 0.009097544476389885, 0.021009579300880432, 0.0153409568592906, 0.0010554339969530702, 0.014521715231239796, 0.016173411160707474, -0.015288102440536022, -0.004254769999533892, -0.008760597556829453, -0.0208510160446167, -0.02957197278738022, -0.011099399998784065, 0.013662832789123058, 0.01286341156810522, 0.004674301017075777, 0.012255587615072727, 0.020666025578975677, -0.011654370464384556, 0.002925154520198703, -0.0044199395924806595, -0.0062632327899336815, -0.006368941627442837, 0.03987855836749077, -0.001995249418541789, 0.02814490720629692, 0.038372211158275604, -0.005116955377161503, 0.022093091160058975, 0.018776485696434975, 0.013477843254804611, 0.0038121154066175222, 0.009031476452946663, -0.0023784427903592587, 0.018591495230793953, 0.01444243360310793, -0.03498953580856323, 0.021683471277356148, 0.008905947208404541, -0.023546583950519562, 0.00522927101701498, 0.010273551568388939, -0.024009060114622116, 0.03665444627404213, 0.014918122440576553, -0.005067404825240374, -0.009190038777887821, 0.03591448813676834, 0.03253181278705597, 0.03945572301745415, 0.014931336045265198, -0.0020728791132569313, -0.003627125406637788, 0.011211715638637543, -0.016834089532494545, 0.031448300927877426, -0.014257444068789482, -0.017190856859087944, 0.01658303290605545, -0.017164429649710655, 0.026546064764261246, -0.02888486720621586, -0.0012420756975188851, 0.009110757149755955, 0.003769171191379428, 0.03631089627742767, -0.0024296455085277557, -0.0005145034519955516, 0.00018323506810702384, 0.014852054417133331, 0.009256106801331043, -0.000506657874211669, -0.035835206508636475, -0.0011033331975340843, 0.01220273319631815, -0.008562394417822361, -0.00990357156842947, 0.028514888137578964, -0.0037592612206935883, 0.0009340343531221151, -0.023639079183340073, 0.006352424621582031, 0.014151735231280327, 0.004879111424088478, 0.007644051220268011, -0.015816645696759224, -0.008516146801412106, 0.016900157555937767, 0.0029003790114074945, -0.0015608530957251787, -0.006798382382839918, -0.02888486720621586], "53f5faff-bf43-4d45-a7c4-147fbc37536f": [-0.02285831607878208, -0.02352786436676979, 0.012620951049029827, 0.00879114493727684, -0.014930886216461658, 0.02441166527569294, -0.02731749601662159, -0.008442981168627739, -0.007545788772404194, -0.023795682936906815, 0.012955724261701107, 0.019845357164740562, 0.011114471592009068, 0.0017357992473989725, 0.00027765255072154105, 0.006323866546154022, 0.03886047750711441, 0.004947948735207319, 0.020434558391571045, -0.015627214685082436, -0.0025660370010882616, -0.007786825764924288, 0.0032439527567476034, 0.028469117358326912, -0.019751621410250664, 0.024679483845829964, 0.031870413571596146, -0.01501123234629631, 0.007940821349620819, -0.013364147394895554, -0.013591793365776539, -0.0005105292075313628, -0.0034950326662510633, -0.013424406759440899, -0.046975381672382355, -0.01556026004254818, -0.002376890042796731, -0.01825183629989624, 0.014355076476931572, -0.013069547712802887, 0.009259827435016632, 0.004244924522936344, -0.011797409504652023, 0.011382290162146091, -0.029272573068737984, 0.0008653888362459838, -0.003973758313804865, -0.03339697793126106, -0.023876028135418892, -0.006213391199707985, 0.01791706308722496, 0.012440173886716366, -0.027906697243452072, 0.031629376113414764, -0.004830778110772371, 0.00857019517570734, 0.017421599477529526, 0.02730410546064377, -0.04033347964286804, 0.03561987355351448, 0.008302376605570316, -0.01473002228885889, -0.0026078836526721716, 0.011529590003192425, -0.01793045550584793, -0.010685961693525314, -0.03393261507153511, -0.006200000643730164, -0.025389201939105988, -0.004415659233927727, 0.034334342926740646, 0.017180562019348145, -0.006287041585892439, -0.005031642038375139, 0.028388770297169685, -0.025576675310730934, -0.026487259194254875, -0.004713607020676136, -0.02383585460484028, 0.005962311290204525, 0.0016989741707220674, -0.037548165768384933, -0.010619007050991058, 0.0034197086934000254, 0.01825183629989624, 0.0009306696010753512, -0.0015910097863525152, 0.026514040306210518, -0.011984881944954395, -0.03492354601621628, 0.034120090305805206, 0.014689849689602852, -0.0012813445646315813, 0.01292894221842289, -0.005784881766885519, 0.007632829714566469, -0.03154902905225754, 0.02003283053636551, -0.0014186016051098704, -0.012741469778120518, -0.016323544085025787, -0.017729591578245163, -0.01869373768568039, -0.004810691345483065, -0.014180994592607021, 0.015854861587285995, -0.023367172107100487, -0.0063339099287986755, 0.01669848896563053, -0.018867820501327515, -0.0017592334188520908, 0.0283352080732584, -0.0152254868298769, -0.060312747955322266, -0.0024589095264673233, -0.025710584595799446, 0.030156373977661133, -0.0076261344365775585, -0.017434990033507347, -0.0032991901971399784, -0.0032272140961140394, 0.00789395347237587, -0.0066954647190868855, -0.009541037492454052, -0.0017475163331255317, 0.013498056679964066, -0.0255231112241745, -0.03237926959991455, 0.00456295907497406, -0.008007775992155075, 0.0387265682220459, -0.0011064255377277732, 0.0185732189565897, -0.025482939556241035, -0.006139741279184818, -0.0005101107526570559, -0.03299525007605553, -0.0020320736803114414, -0.009520950727164745, -0.04499352350831032, 0.016162851825356483, 0.013183370232582092, -0.007351620588451624, -0.030852701514959335, -0.009005400352180004, -0.00024019980628509074, 0.008925054222345352, 0.00727797020226717, -0.02374211885035038, 0.008054643869400024, 0.006631857715547085, 0.003505075816065073, 0.03390583395957947, -0.012225918471813202, 0.012835206463932991, -0.0094606913626194, 0.017180562019348145, 0.003916847053915262, 0.013370843604207039, -0.022657452151179314, 0.024036718532443047, 0.02295205369591713, 0.010110151953995228, -0.011154644191265106, 0.0064611234702169895, 0.02048812247812748, -0.005965659394860268, -0.019336502999067307, -0.030504537746310234, -0.01086673978716135, 0.023474300280213356, 0.016859181225299835, -0.03805702179670334, 0.013022678904235363, -0.012527214363217354, 0.005051728338003159, 0.031307995319366455, 0.023688554763793945, -0.009842333383858204, 0.005098596680909395, -0.031736504286527634, -0.017649244517087936, 0.018332183361053467, 0.019778402522206306, -0.04314557462930679, -0.003237257245928049, -0.02742462418973446, -0.010304320603609085, 0.02228250727057457, 0.014609504491090775, -0.0006302106194198132, 0.02172008715569973, 0.011663499288260937, -0.0017676027491688728, -0.6376225352287292, -0.007050324697047472, -0.01566738821566105, -0.009835638105869293, 0.011295248754322529, 0.003491685027256608, 0.01825183629989624, -0.0036523761227726936, 0.003893412882462144, -0.0020622031297534704, -0.028522679582238197, 0.02900475449860096, -0.0010244061704725027, -0.045180995017290115, -0.0037126352544873953, -0.014234558679163456, 0.02170669659972191, -0.024277755990624428, -0.004147840663790703, -0.01969805732369423, -0.005443412810564041, -0.009226350113749504, -0.0094606913626194, 0.02013995870947838, 0.007713175378739834, -0.01074622105807066, 0.022095033898949623, 0.0065012965351343155, -0.015185314230620861, 0.023206481710076332, -0.011288553476333618, 0.03762851282954216, 0.021425487473607063, 0.021010369062423706, 0.05656328797340393, -0.004978077951818705, -0.017943846061825752, 0.033530887216329575, 0.010779698379337788, 0.011214903555810452, -0.005483585875481367, -0.01960432156920433, 0.007826998829841614, 0.006688769441097975, 0.008985313586890697, -0.002318304730579257, 0.01053196657449007, 0.0011064255377277732, 0.013565011322498322, 0.025134775787591934, 0.014917495660483837, 0.004308531526476145, -0.004783909767866135, 0.007385097909718752, -0.015305832959711552, -0.0084028085693717, 0.03192397579550743, -0.009212959557771683, -0.00610626395791769, -0.017046652734279633, 0.012440173886716366, 0.027933480218052864, -0.0011382290394976735, -0.013082938268780708, 0.0011683586053550243, 0.03125442937016487, -0.012312959879636765, 0.014756804332137108, 0.02686220407485962, -0.017555508762598038, -0.0036122032906860113, 0.015546869486570358, 0.008992008864879608, -0.016752053052186966, 0.01473002228885889, 0.013899785466492176, 0.026139095425605774, -0.014863931573927402, 0.017984017729759216, 0.0015156858135014772, 0.007706480100750923, -0.009520950727164745, -0.011047516949474812, -0.032754212617874146, 0.03157581388950348, -0.012105400674045086, -0.017046652734279633, 0.013123110868036747, 0.009601296856999397, 0.00034523490467108786, -0.020863069221377373, 0.0040708426386117935, 0.0034280780237168074, 0.010009719990193844, 0.03631620109081268, 0.01483715046197176, -0.001508153509348631, -0.006983370054513216, 0.015319223515689373, -0.017301080748438835, -0.006963283289223909, -0.011355508118867874, 0.0011516199447214603, 0.008704104460775852, 0.0005615820991806686, -0.008523326367139816, -0.033316634595394135, -0.014649677090346813, 0.04456501454114914, -0.004546220414340496, -0.0025426028296351433, -0.017180562019348145, -0.007646220736205578, -0.008804536424577236, -0.0002173933753510937, -0.014770195819437504, 0.010458315722644329, 0.0012051836820319295, 0.017528727650642395, -0.011221598833799362, 0.007204320281744003, -0.004924514330923557, 0.00439557246863842, -0.011234990321099758, 0.017287690192461014, 0.02597840316593647, 0.02809417061507702, 0.015948597341775894, -0.02801382541656494, 0.0013491361169144511, 0.014904105104506016, -0.020903240889310837, 0.0005573974340222776, -0.0002066178567474708, 0.020568467676639557, -0.02518833801150322, 0.009480778127908707, -0.005450108554214239, 0.007519007194787264, -0.02129157818853855, 0.001983531517907977, 0.004904428031295538, 0.0164574533700943, 0.015546869486570358, -0.030370628461241722, -0.026380131021142006, -0.003776242258027196, 0.0012763229897245765, -0.02722376026213169, 0.022483371198177338, -0.011696976609528065, 0.005979049950838089, -0.013243629597127438, 0.0076261344365775585, 0.0023367172107100487, -0.010103456676006317, -0.01802419126033783, -0.009782074019312859, -0.0033778620418161154, -0.007485529873520136, 0.01388639397919178, 0.01869373768568039, -0.0032908208668231964, -0.012359827756881714, 0.02430453710258007, -0.02935291826725006, -0.015359396114945412, 0.018345573917031288, -0.015587042085826397, -0.03216501325368881, 0.009527646005153656, -0.01770280860364437, 0.0037193307653069496, 0.03192397579550743, -0.027746006846427917, -0.003088283119723201, -0.0076930890791118145, -0.011837582103908062, -0.004680129699409008, 0.011837582103908062, -0.011777322739362717, 0.007291361223906279, -0.016819007694721222, -0.010009719990193844, 0.026500649750232697, 0.008014471270143986, -0.01703326217830181, 9.410266648046672e-05, 0.018010800704360008, 0.013437798246741295, -0.009353564120829105, 0.01221252791583538, 0.006949892733246088, 0.0005435880739241838, 0.0033728403504937887, -0.009641469456255436, 0.01747516356408596, 0.017153780907392502, 0.010016415268182755, 0.0205015130341053, 0.008442981168627739, 0.02889762632548809, 0.024947302415966988, 0.012138877995312214, 0.01700648106634617, -0.019336502999067307, 0.0031602594535797834, 0.002920896513387561, 0.01971144787967205, -0.022215552628040314, -0.008643845096230507, -0.01321015227586031, -0.0013524838723242283, -0.022777970880270004, 0.022349461913108826, 0.0221753790974617, 0.019403457641601562, 0.008148380555212498, 0.030424192547798157, 0.016403889283537865, 0.011897841468453407, -0.00024291983572766185, -0.010511879809200764, 0.0042549679055809975, -0.020541686564683914, 0.006086177658289671, 0.023701945319771767, -0.00035778890014626086, 0.007164147216826677, 0.007318143267184496, 0.02003283053636551, -0.004559611435979605, 0.004382181912660599, 0.009440605528652668, 0.009440605528652668, -0.006538121495395899, 0.013397624716162682, -0.018050972372293472, 0.030156373977661133, -0.04544881358742714, -0.0064778621308505535, 0.012955724261701107, 0.0016855832654982805, -0.02161296084523201, -0.008998705074191093, 0.010471707209944725, 0.01439524907618761, 0.0117505406960845, 0.026353349909186363, 0.025362420827150345, -0.008583585731685162, 0.0016295087989419699, -0.004432397894561291, -0.006032614037394524, 0.021184450015425682, -0.033530887216329575, -0.007304752245545387, 0.024371491745114326, 0.017742982134222984, 0.009433910250663757, 0.012306264601647854, 0.0037293739151209593, -0.0020521599799394608, 0.013082938268780708, 0.05993780121207237, 0.0008193575195036829, 0.010431534610688686, 0.0200596135109663, -0.013062851503491402, -0.0254293754696846, -0.015640605241060257, -0.022590497508645058, -0.004358747508376837, -0.0006913067190907896, 0.011529590003192425, -0.00577149074524641, 0.008047948591411114, 0.002460583345964551, 0.027478188276290894, 0.006019223015755415, -0.01483715046197176, -0.04285097494721413, 0.03516457974910736, 0.004777214024215937, -0.00811490323394537, -0.008603672496974468, -0.007806912064552307, -0.01006997935473919, -0.010324406437575817, 0.02711663208901882, -0.011971491388976574, 0.01711360737681389, 0.010665875859558582, -0.0004661717393901199, -0.01578790694475174, 0.0184794832020998, 0.033638015389442444, -0.0344950333237648, 0.032298922538757324, 0.0040038879960775375, 0.027585314586758614, 0.013344061560928822, -0.027049677446484566, 0.00857019517570734, 0.01019719336181879, -0.013424406759440899, -0.00778013002127409, -0.0028840715531259775, 0.007565875072032213, -0.012493737041950226, -0.009648164734244347, -0.03776242211461067, -0.017488554120063782, -0.008596977218985558, 0.01287537906318903, 0.0024321277160197496, -0.002293196739628911, 0.01691274344921112, 0.02342073619365692, -0.02688898704946041, -0.0023300216998904943, 0.002401998033747077, -0.02316630817949772, -0.016269979998469353, 0.09941425919532776, 0.00395032437518239, -0.037441037595272064, -0.0051789418794214725, -0.011563067324459553, 0.020126568153500557, -0.01041814312338829, -0.03278099745512009, 0.0344950333237648, -0.006056047976016998, 0.02038099430501461, -0.012319655157625675, 0.02541598491370678, 0.013953348621726036, 0.00828898511826992, -0.01406047586351633, -0.005848488304764032, -0.010679266415536404, 0.005845140665769577, -0.008637149818241596, 0.018519654870033264, -0.020340822637081146, -0.0022295897360891104, 0.03457538038492203, -0.033102378249168396, -0.0032891470473259687, 0.014140821993350983, -0.011998273432254791, 0.01624319702386856, -0.009012095630168915, -0.008724190294742584, 0.01012354250997305, 0.017153780907392502, 0.022978834807872772, -0.0066452487371861935, 0.009206264279782772, -0.004449136555194855, 0.01849287375807762, -0.013203456997871399, -0.011214903555810452, 0.007927430793642998, 0.018104536458849907, 0.009474082849919796, -0.006082830019295216, 0.005617495160549879, -0.007880561985075474, -0.012647733092308044, -0.0022915229201316833, -0.018774082884192467, 0.01770280860364437, 0.04499352350831032, 0.006869547069072723, -0.03012959100306034, -0.019885530695319176, 0.010719439014792442, 0.0014571005012840033, 0.0003751552721951157, 0.010264148004353046, -0.01858660951256752, 0.026473868638277054, 0.005065119359642267, -0.023648381233215332, -0.00974190142005682, -0.004639957100152969, 0.0025509721599519253, -0.00579827232286334, -0.02708985097706318, -0.01995248533785343, -0.007211015559732914, 0.013317279517650604, -0.006032614037394524, -0.019550757482647896, -0.028201298788189888, 0.004988121334463358, 0.010926998220384121, 0.007478834129869938, 0.012788337655365467, -0.016952916979789734, -0.00043394981184974313, -0.000509692239575088, -0.01701987162232399, -0.019898921251296997, -0.002055507618933916, -0.014542549848556519, -0.0065515125170350075, 0.000935691234190017, 0.016055725514888763, 0.015975378453731537, -0.03797667473554611, 0.019015120342373848, 0.015024622902274132, 0.022670844569802284, -1.3142464922566433e-05, -0.004783909767866135, 0.004676782060414553, -0.0012026728363707662, -0.010063284076750278, -0.021532615646719933, 0.010692656971514225, -0.007164147216826677, 0.0007883909856900573, -0.02844233438372612, -0.0041545359417796135, -0.01376587525010109, 0.01668509840965271, -0.01580129750072956, 0.006280345842242241, 0.019229374825954437, -0.011784018017351627, -0.0337987057864666, -0.009641469456255436, -0.016203025355935097, 0.0067624193616211414, 0.0026714904233813286, 0.0033728403504937887, 0.02787991613149643, 0.021104104816913605, 0.03294168785214424, 0.0037025921046733856, 0.019403457641601562, 0.013631965965032578, -0.013953348621726036, 0.005192332901060581, -0.0066619873978197575, -0.04244924709200859, -0.006112959235906601, 0.003672462422400713, -0.01723412610590458, 0.007465443108230829, 0.0003872907836921513, 0.015466523356735706, 0.01692613586783409, 0.007967603392899036, -0.03794989362359047, -0.04410972073674202, -0.0012202485231682658, -0.02541598491370678, 0.004526134114712477, -0.010706048458814621, 0.005493628792464733, 0.0008097327663563192, -0.016979698091745377, -0.02026047743856907, -0.026072140783071518, -0.0003935677814297378, -0.025790929794311523, -0.02619265764951706, -0.00990928802639246, 0.0027350974269211292, 0.013899785466492176, -0.029942119494080544, -0.024893738329410553, -0.024813393130898476, 0.002293196739628911, -0.006337257567793131, -0.026031967252492905, -0.004713607020676136, -0.026112312451004982, 0.03417365252971649, 0.0005737176397815347, 0.017207344993948936, -0.023688554763793945, 0.02351447194814682, 0.03122764825820923, 0.0021040497813373804, 0.002869006711989641, -1.3024771760683507e-05, -0.025335639715194702, -0.0304509736597538, 0.0006528078229166567, 0.026139095425605774, 0.022228943184018135, 0.020474731922149658, 0.007719871122390032, 0.004365443252027035, 0.0526263527572155, -0.02585788443684578, -0.013966740109026432, -0.02554989419877529, -0.0238492451608181, -0.023045789450407028, -0.0016554536996409297, -0.01075291633605957, 0.005148812662810087, -0.019457021728157997, 0.00445248419418931, 0.04290453717112541, 0.013076242990791798, 0.002832181518897414, -0.007686393801122904, 0.014796976931393147, -0.001829535816796124, 0.01995248533785343, 0.006869547069072723, 0.030397409573197365, -0.004854212049394846, 0.0032975163776427507, 0.01602894254028797, 0.0009331803885288537, 7.014545553829521e-05, -0.005567279178649187, -0.012667819857597351, -0.0094606913626194, -0.04488639533519745, -0.031040174886584282, 0.006353996228426695, -0.02059525065124035, -0.012527214363217354, 0.03192397579550743, -0.008556803688406944, -0.002360151382163167, -0.01343110203742981, -0.012527214363217354, -0.03216501325368881, -0.018385745584964752, -0.009273218922317028, 0.0002000270178541541, 0.01790367253124714, -0.009708424098789692, 0.005476890131831169, -0.013397624716162682, -0.017769763246178627, 0.038110584020614624, -0.00562419043853879, 0.037360694259405136, -0.0014135800302028656, -0.028254861012101173, -0.009520950727164745, 0.011161339469254017, 0.0018864471931010485, -0.0042214905843138695, 0.024157237261533737, 0.023340390995144844, 0.0014278078451752663, 0.007023542653769255, -0.007545788772404194, -0.0034515121951699257, -0.04469892382621765, -0.03326306864619255, 0.004502700176090002, -0.008811231702566147, -0.024478619918227196, -0.003136825282126665, 0.009715119376778603, -0.0385390967130661, 0.00456295907497406, -0.003170302603393793, 0.018050972372293472, -0.024692874401807785, -0.017943846061825752, -0.02172008715569973, 0.0011691955151036382, -0.0013960044598206878, 0.019564148038625717, 0.05854514613747597, -0.024933911859989166, -0.020916631445288658, -0.014194385148584843, -0.0022697625681757927, 0.013993521220982075, 0.006718899123370647, 0.01489071361720562, -0.011991577222943306, 0.002452214015647769, 0.0006971652619540691, 0.012808424420654774, -0.015051404945552349, 0.014033694751560688, 0.0005565605242736638, 0.02170669659972191, 0.03776242211461067, 0.008362635970115662, 0.007097192574292421, 0.013190065510571003, 0.013518143445253372, 0.02876371704041958, 0.0010461664060130715, -0.011181426234543324, -0.005356371868401766, 0.0017726243240758777, 0.015131750144064426, 0.008429590612649918, 0.010116847231984138, -0.03347732499241829, -0.013806048780679703, -0.013069547712802887, 0.001929967780597508, 0.005902052391320467, 0.0009365281439386308, -0.02879049815237522, -0.014529158361256123, 0.0024873651564121246, -0.013571707531809807, 0.009313391521573067, 0.009012095630168915, 0.02563023939728737, -0.0112617714330554, 0.027103241533041, -0.03604838252067566, 0.0267550777643919, -0.019189201295375824, 0.01388639397919178, -0.021867388859391212, 0.010324406437575817, 0.015948597341775894, -0.025255292654037476, 0.0024003242142498493, -0.014207776635885239, -0.01734125427901745, -0.0001760698069119826, 0.033102378249168396, 0.012413391843438148, 0.0016378781292587519, 0.0003100837056990713, -0.007144060917198658, -0.009561123326420784, 0.025616848841309547, -0.008630454540252686, -0.030772356316447258, 0.01991231180727482, 0.007130669895559549, 0.00585518404841423, 0.0038331535179167986, -0.029486827552318573, 0.02305918000638485, 0.0018864471931010485, 0.004636609461158514, -0.009112527593970299, -0.024237582460045815, 0.0112617714330554, -0.009259827435016632, -0.003004589816555381, 0.006109611596912146, -0.00995615590363741, -0.019108856096863747, -0.016711879521608353, -0.02228250727057457, 0.009494168683886528, 0.004107667598873377, -0.016082506626844406, 0.006437689531594515, 0.017421599477529526, 0.002937635174021125, -0.008134989999234676, 0.0039034560322761536, 7.045930396998301e-05, 0.0012060205917805433, -0.005510367453098297, -0.026139095425605774, -0.007914039306342602, -0.018506264314055443, 0.041699353605508804, 0.013364147394895554, 0.005865226965397596, -0.011717063374817371, -0.011322030797600746, -0.023019008338451385, -0.01916242018342018, 0.007010151632130146, 0.011107776314020157, 0.03864622488617897, -0.010190497152507305, 0.008543413132429123, 0.018198274075984955, -0.018881211057305336, 0.004710259381681681, -0.017729591578245163, -0.019189201295375824, 0.002226242097094655, 0.004539525136351585, -0.00795421190559864, 0.007887257263064384, -0.034441471099853516, 0.0064008645713329315, 0.028281643986701965, -0.01254730112850666, 0.0036188988015055656, 0.0061832619830966, -0.004723650403320789, 0.015533477999269962, -0.003438121173530817, -0.0032171709463000298, 0.003859935561195016, 0.00023036584025248885, 0.00873088650405407, -0.026929158717393875, -0.007043628953397274, -0.012266092002391815, -0.008583585731685162, -0.01556026004254818, -0.011141253635287285, -0.006779158022254705, -0.02060864120721817, 0.009346868842840195, -0.02932613529264927, -0.014274731278419495, -0.004542872775346041, -0.02418401837348938, 0.03138833865523338, -0.007539093494415283, 0.0200596135109663, 0.02911188080906868, -0.01506479550153017, -0.02988855540752411, -0.0025509721599519253, 0.018198274075984955, 0.007478834129869938, -0.01711360737681389, -0.0008352592121809721, -0.037119656801223755, 0.0168056171387434, -0.0074587478302419186, 0.005061771254986525, -0.0038833694998174906, 0.01589503325521946, -0.01768941804766655, -0.0075926571153104305, -0.019416848197579384, 0.027826352044939995, 0.015252268873155117, 0.002306587528437376, -0.004529481753706932, 0.007324838545173407, -0.007405184209346771, 0.0006352322525344789, -0.02342073619365692, -0.01635032519698143, -0.009306696243584156, 0.009212959557771683, -0.004880994092673063, 0.01957753859460354, -0.027170196175575256, -0.005359719507396221, 0.018077755346894264, -0.009681642055511475, 0.010297625325620174, 0.21875423192977905, -0.0033828835003077984, -0.0019450325053185225, 0.023045789450407028, -0.0141676040366292, 0.0027518360875546932, 0.018961556255817413, -0.004971382673829794, 0.009166091680526733, 0.016283370554447174, -0.008831318467855453, 0.008335853926837444, 0.0064510805532336235, 0.015038014389574528, 0.017649244517087936, 0.006066091358661652, -0.04994816705584526, -0.008181857876479626, -0.0013072894653305411, -0.06240173056721687, 0.00958121009171009, -0.006929805967956781, -0.0023551296908408403, -0.022577106952667236, 0.004047408699989319, 0.0064276461489498615, -0.00694319698959589, 0.0019366631750017405, 0.018425919115543365, -0.00044775920105166733, -0.03564665466547012, -0.012553996406495571, -0.011529590003192425, -0.004747084341943264, -0.029138663783669472, 0.016390498727560043, 0.014944277703762054, -0.0036858534440398216, 0.007338229566812515, -0.010953780263662338, 0.0015324244741350412, 0.0028338555712252855, 0.019349893555045128, -0.004854212049394846, 0.0032506482675671577, 0.04804665595293045, -0.003910151310265064, -0.012607560493052006, -0.02036760374903679, -0.003672462422400713, -0.028388770297169685, 0.03160259500145912, 0.040467388927936554, 0.019751621410250664, 0.01550669688731432, -0.011636718176305294, -0.000743615091778338, 0.016939526423811913, -0.004050756338983774, 0.008657235652208328, -0.01074622105807066, 0.010625702328979969, 0.003806371707469225, 0.009045572951436043, -0.005600756499916315, 0.009701728820800781, -0.007090497296303511, -0.019644493237137794, 0.013484666123986244, -0.01734125427901745, 0.0077600437216460705, -0.025442766025662422, -0.004177969880402088, 0.008858099579811096, 0.0003550688561517745, -0.0117505406960845, 0.01913563907146454, -0.02062203176319599, 0.003086609300225973, -0.0023584775626659393, 0.00856349989771843, -0.02462591975927353, 0.003772894386202097, -0.01811792701482773, -0.006521382834762335, -0.021452268585562706, 0.006805940065532923, -0.01142246276140213, -0.026808641850948334, 0.0007406857912428677, -0.013471275568008423, -0.011161339469254017, 0.00627365056425333, -0.008355939760804176, 0.010598921217024326, -0.0053028082475066185, 0.013444493524730206, 0.0037963285576552153, 0.014703241176903248, -0.004666739143431187, 0.011121166869997978, -0.010130238719284534, 0.026460476219654083, -0.004211447201669216, -0.025000866502523422, -0.009480778127908707, -0.0030146329663693905, 0.0032489742152392864, 0.01993909478187561, -0.013806048780679703, 0.018292009830474854, -0.010779698379337788, -0.01902851089835167, -0.018961556255817413, 0.012801729142665863, 0.0322185754776001, -0.02317969873547554, -0.018613392487168312, 0.00873088650405407, 0.007057019975036383, 0.020555077120661736, -0.012895464897155762, 0.006471166852861643, -0.004455831833183765, -0.007739957422018051, -0.010565443895757198, -0.026232831180095673, 0.018104536458849907, -0.009259827435016632, 0.009641469456255436, 0.02889762632548809, -0.029299354180693626, -0.010672571137547493, -0.0025877971202135086, -0.024786610156297684, 0.01610928773880005, -0.004445788450539112, -0.028254861012101173, 0.0016002161428332329, -0.01635032519698143, -0.007673002779483795, -0.0003017143753822893, 0.011884449981153011, 0.009755291976034641, 0.0025241903495043516, -0.022577106952667236, 0.013370843604207039, -0.00995615590363741, -0.014355076476931572, -0.0026915769558399916, -0.027585314586758614, -0.010873435065150261, 0.01203175075352192, -0.006430993787944317, 0.011643413454294205, 0.007994385436177254, -0.018533047288656235, -0.03090626560151577, 0.005041684955358505, 0.015426350757479668, -0.018854428082704544, 0.006260259542614222, 0.030209938064217567, 0.0062937368638813496, -0.026259612292051315, -0.006903024390339851, -0.16979698836803436, 0.02342073619365692, 0.021974515169858932, -0.016872571781277657, 0.028174515813589096, 0.017555508762598038, 0.023768899962306023, -0.00906565971672535, 0.001971814315766096, -0.018613392487168312, 0.02643369510769844, 0.011355508118867874, -0.018104536458849907, -0.018666956573724747, -0.02103715017437935, 0.001073785126209259, -0.012795032933354378, 0.0066017284989356995, 0.03623585402965546, 0.010900217108428478, -0.00014541712880600244, -0.003128455951809883, 0.011931318789720535, -0.014274731278419495, 0.009822246618568897, 0.009420518763363361, 0.007478834129869938, 0.018171491101384163, 0.01455594040453434, -0.010331102646887302, -0.01902851089835167, 0.0036657669115811586, -0.006799244321882725, -0.005885313730686903, 0.021104104816913605, 0.01700648106634617, -0.019965875893831253, -0.021438878029584885, 0.0042884452268481255, 0.011830886825919151, 0.021318359300494194, 0.010625702328979969, 0.0010051566641777754, -0.004318574909120798, -0.0054132831282913685, 0.026781858876347542, -0.003672462422400713, 0.010886825621128082, 0.021787041798233986, -0.030718792229890823, 0.012393305078148842, -0.004867603071033955, 0.010217279195785522, 0.004248272627592087, 0.048662640154361725, 0.0026915769558399916, 0.008925054222345352, 0.009494168683886528, -0.011141253635287285, -0.011027430184185505, -0.009387041442096233, -0.002812095219269395, 0.02988855540752411, -0.014609504491090775, 0.0040038879960775375, 0.0035988122690469027, -0.005560583434998989, 0.022469980642199516, -0.020447948947548866, 0.013015983626246452, 0.013578402809798717, 0.029861772432923317, 0.03248639404773712, 0.008985313586890697, 0.0005691145197488368, -0.003161933273077011, -0.021880779415369034, 0.025777539238333702, 0.007003456354141235, 0.0015056426636874676, -0.03023671917617321, 0.03294168785214424, -0.024585746228694916, -0.020889850333333015, 0.016042333096265793, 0.014810368418693542, -0.00387667422182858, -0.03267386928200722, -0.022014688700437546, 0.0036523761227726936, 0.0037461125757545233, -0.021184450015425682, -0.006909719668328762, -0.015158532187342644, 0.012158963829278946, 0.007123974617570639, 0.004773866385221481, -0.029754646122455597, 0.005952268373221159, -0.027504969388246536, -0.011630021966993809, -0.029299354180693626, -0.008376026526093483, 0.03843196853995323, 0.019738230854272842, -0.010605616495013237, 0.015078186988830566, 0.006923110689967871, 0.027022896334528923, 0.0012235961621627212, -0.022925270721316338, 0.0026731642428785563, 0.017863500863313675, 0.010424838401377201, -7.762554741930217e-05, 0.018211664631962776, -0.012694600969552994, -0.023219872266054153, 0.010967171750962734, -0.016310151666402817, 0.0777745172381401, 0.005108639597892761, 0.008476458489894867, 0.010525270365178585, 0.0027049677446484566, -0.040253136307001114, -0.10857366025447845, 0.00024501216830685735, -0.004907775670289993, 0.01770280860364437, -0.006839417386800051, 0.009273218922317028, -0.009889201261103153, 0.020099785178899765, -0.004797300323843956, -0.003608855651691556, -0.009922678582370281, -0.03985140845179558, -0.007980993948876858, 0.007378402166068554, -0.004877645988017321, -0.019885530695319176, -0.017394818365573883, -0.01746177300810814, 0.016993090510368347, 0.03524492681026459, 0.0031267821323126554, -0.008610367774963379, 0.0003623920201789588, -0.03299525007605553, 0.015292441472411156, -0.008650540374219418, -0.020073004066944122, -8.149636414600536e-05, 0.02159957028925419, 0.01158984936773777, -0.03773564100265503, 0.0016027268720790744, 0.0013926567044109106, 0.014475595206022263, 0.004934557713568211, -0.00020923327247146517, -0.03114730305969715, -0.017060045152902603, 0.011388985440135002, -0.030504537746310234, 0.007351620588451624, 0.0026497303042560816, 0.019858749583363533, -0.020113175734877586, 0.0053362855687737465, -0.005507019814103842, -0.014140821993350983, 0.02072915993630886, 0.00520572392269969, -0.01659136265516281, -0.010605616495013237, 0.0010210584150627255, -0.030825920403003693, -0.01610928773880005, 0.02655421383678913, -0.011743845418095589, 0.04242246598005295, 0.019349893555045128, -0.031522247940301895, -0.016604753211140633, -0.017408208921551704, 0.011777322739362717, -0.018452700227499008, 0.02509460225701332, 0.011000649072229862, -0.0041545359417796135, 0.0029142010025680065, -0.025134775787591934, 0.02206825278699398, -0.014314903877675533, -0.0237555094063282, 0.008329158648848534, -0.02854946255683899, 0.012239309959113598, -0.0168993528932333, 0.009266523644328117, -0.00978876929730177, -0.004442440811544657, 0.011154644191265106, -0.005731317680329084, -0.0033494061790406704, -0.013926566578447819, 0.015252268873155117, 0.0016236501978710294, -0.016484234482049942, 0.0021207884419709444, 0.021412096917629242, -0.018425919115543365, 0.006464471109211445, -0.02261728048324585, 0.013397624716162682, 0.0009407128090970218, -0.01208531390875578, -0.02409028261899948, 0.011743845418095589, 0.031307995319366455, 0.01846609264612198, -0.00016048192628659308, -0.008871491067111492, -0.012888769619166851, -0.01768941804766655, 0.00924643687903881, -0.05423326417803764, 0.02889762632548809, 0.018653564155101776, -0.004422354511916637, -0.004613175056874752, -0.007257883902639151, 0.014917495660483837, -0.017957236617803574, -0.03749460354447365, -0.004174622241407633, -0.009507560171186924, 0.039931751787662506, -0.015881642699241638, -0.004017279017716646, -0.03283455967903137, 0.018332183361053467, 0.015292441472411156, -0.015948597341775894, -0.010438229888677597, -0.004777214024215937, -0.0016278348630294204, -0.01568077877163887, 0.024492010474205017, 0.004573002457618713, -0.011670195497572422, -0.015828078612685204, 0.011737150140106678, 0.0027501622680574656, -9.174879232887179e-05, -0.012279482558369637, 0.0066519444808363914, -0.019323112443089485, 0.0005527943139895797, -0.006213391199707985, 0.003491685027256608, 0.023112744092941284, -0.023929592221975327, -0.00022492576681543142, 0.0006996760494075716, 0.0517425537109375, 0.01259416900575161, -0.0028221383690834045, 0.010478402487933636, -0.015051404945552349, 0.00907905027270317, 0.011502808891236782, -0.006226782221347094, -0.0064109074883162975, 0.03580734506249428, -0.015332614071667194, 0.019992658868432045, 0.018318790942430496, -0.010049892589449883, -0.012701297178864479, -0.006963283289223909, -0.03414687141776085, 0.013966740109026432, -0.0075926571153104305, 0.008684017695486546, -0.014247949235141277, 0.03200432285666466, 0.002798704197630286, 0.0032054537441581488, -0.01610928773880005, 0.019631102681159973, -0.03066522814333439, 0.002907505491748452, 0.0007808585651218891, -0.03122764825820923, -0.03564665466547012, -0.0009256480261683464, 0.011670195497572422, 0.01746177300810814, 0.02597840316593647, 0.015332614071667194, 0.023219872266054153, 0.01534600555896759, -0.006815982982516289, -0.036128729581832886, 0.016711879521608353, -0.009433910250663757, -0.01019719336181879, -0.04135119169950485, 0.0017132021021097898, 0.022228943184018135, -0.005650972481817007, -0.004402268212288618, 0.007820302620530128, 0.00940712820738554, 0.005804968066513538, 0.02339395321905613, -0.011462635360658169, -0.0023618252016603947, -0.02352786436676979, 0.005634233821183443, 0.015814688056707382, -0.008208639919757843, 0.00046031319652684033, 0.01814470998942852, 0.015935206785798073, -0.0003550688561517745, 0.007144060917198658, 0.005594060756266117, -0.0307991374284029, 0.009996329434216022, 0.018666956573724747, -0.013518143445253372, -0.022777970880270004, -0.012614255771040916, 0.018867820501327515, 0.020314039662480354, 0.018988337367773056, 0.016162851825356483, 0.02801382541656494, -0.03248639404773712, 0.0063272141851484776, 0.000964983890298754, -0.005527106113731861, -0.002753509907051921, 0.05634903162717819, 0.0010461664060130715, 0.033209506422281265, 0.03189719468355179, 0.012118791230022907, 0.004844168666750193, 0.021679915487766266, 0.011636718176305294, 0.004218142945319414, 0.0013642009580507874, -0.007090497296303511, 0.035994820296764374, 0.00660842377692461, -0.058491580188274384, 0.022550325840711594, 0.0030765661504119635, -0.04223499074578285, -0.0008210313972085714, 0.011516199447214603, -0.029085099697113037, 0.020648812875151634, 0.02980821020901203, -0.020180130377411842, 0.002276458078995347, 0.024103673174977303, 0.03055810183286667, 0.027746006846427917, 0.006936501711606979, 0.008168467320501804, -0.015587042085826397, -0.00761274341493845, -0.004944600630551577, 0.028817281126976013, -0.009206264279782772, -0.023648381233215332, 0.021572787314653397, -0.012667819857597351, 0.04319914057850838, -0.0329149067401886, -0.009005400352180004, 0.02161296084523201, -0.01780993677675724, 0.03977106139063835, 0.005476890131831169, 0.005794924683868885, -0.0028388770297169685, 0.015024622902274132, 0.01712699979543686, -0.004077537916600704, -0.021974515169858932, 0.022081643342971802, 0.0025158210191875696, -0.006173218600451946, -0.009514255449175835, 0.03347732499241829, -0.00789395347237587, 0.006387473549693823, -0.01791706308722496, 0.007398488465696573, 0.024492010474205017, 0.005034989677369595, -0.013397624716162682, -0.01869373768568039, -0.020340822637081146, 0.023367172107100487, 0.004184665624052286, -0.015520087443292141, 0.0020036178175359964, -0.021746870130300522], "b3444ff9-4f43-490b-a0b9-dc866de39ee4": [-0.008002151735126972, -0.03545155003666878, 0.0025956560857594013, 0.007302803918719292, -0.01820993795990944, 0.038464125245809555, -0.022284984588623047, -0.018721001222729683, -0.014592159539461136, -0.021760473027825356, 0.012803442776203156, 0.005386322271078825, 0.022486718371510506, -0.011525788344442844, -0.0030361106619238853, 0.003261381294578314, 0.039297960698604584, -0.003752269549295306, 0.01810234598815441, -0.01564118079841137, 0.005006388295441866, -0.0016676753293722868, -0.0027570438105612993, 0.034160446375608444, -0.030717503279447556, 0.030421625822782516, 0.029560890048742294, -0.011055073700845242, 0.012776545248925686, -0.007275905925780535, -0.005682200193405151, 0.010476767085492611, 0.0007127966964617372, -0.007975254207849503, -0.04295608773827553, -0.021141819655895233, 0.010006052441895008, -0.019541388377547264, 0.030905790627002716, -0.0002870519820135087, 0.016380876302719116, 0.003490014234557748, -0.011633380316197872, 0.015439446084201336, -0.030098849907517433, 0.014242485165596008, -0.0006363055435940623, -0.021706677973270416, -0.023065024986863136, 0.013536413200199604, 0.012689126655459404, 0.006442068610340357, -0.03179342299699783, 0.019729675725102425, -0.01181494165211916, -0.002440992509946227, 0.03480599820613861, 0.023885414004325867, -0.04177257791161537, 0.02426198683679104, 0.0023569362238049507, -0.003997713793069124, 0.005164414178580046, -0.005883935373276472, -0.0353439562022686, -0.01355658657848835, -0.009447919204831123, -0.010053123347461224, -0.010288480669260025, -0.006566471885889769, 0.04072355479001999, 0.010281756520271301, -0.015842916443943977, 0.006371461320668459, 0.015896711498498917, -0.03859861567616463, -0.03117476962506771, 7.276116321008885e-06, -0.019810369238257408, 0.005026561673730612, -0.020254185423254967, -0.03300383314490318, -0.006213435437530279, 0.0003118485619779676, 0.025257211178541183, 0.006495864596217871, 0.010799543000757694, 0.015896711498498917, -0.016004303470253944, -0.025687579065561295, 0.02411404810845852, 0.011747696436941624, -0.002370385220274329, 0.011061797849833965, -0.005248470231890678, 0.009958980605006218, -0.02551274374127388, 0.03553224354982376, 0.011875462718307972, -0.015022527426481247, -0.011525788344442844, -0.018667204305529594, -0.040938738733530045, 0.0004732364905066788, -0.016206039115786552, 0.010947481729090214, -0.027032479643821716, 0.00158277852460742, 0.015816017985343933, -0.012406697496771812, -0.007860937155783176, 0.015506691299378872, -0.007289355155080557, -0.03999730944633484, -0.030233340337872505, -0.020738350227475166, 0.028431175276637077, -0.011008001863956451, -0.024853741750121117, -0.016098447144031525, -0.005241745617240667, 0.024046802893280983, -0.015157016925513744, -0.00544684287160635, 0.009219286032021046, -0.004757581744343042, -0.004656714387238026, -0.023616435006260872, 0.004895434249192476, -0.0100463991984725, 0.0307444017380476, 0.00796180497854948, 0.009192387573421001, -0.02295743301510811, -0.014417322352528572, 0.003136978019028902, -0.039432451128959656, -0.025499293580651283, -0.014175239950418472, -0.02523031458258629, 0.02255396358668804, 0.015170466154813766, -0.00017798904445953667, -0.03518256917595863, -0.02826978638768196, 0.00939412321895361, 0.013502790592610836, 0.009098244830965996, -0.02594311162829399, 0.01748369261622429, 0.010160715319216251, 0.001541591016575694, 0.0009876606054604053, -0.011391298845410347, 0.01757783629000187, -0.009649653919041157, -0.0020039002411067486, 0.010443144477903843, 0.00706744659692049, -0.01966243050992489, 0.013139667920768261, 0.021074574440717697, 0.0136776277795434, 0.006277318112552166, 0.005393046885728836, 0.02633313089609146, 0.007800417020916939, -0.019689328968524933, -0.025929661467671394, -0.018048550933599472, 0.011297155171632767, 0.01270930003374815, -0.039728328585624695, 0.0004551644087769091, -0.003550534602254629, 0.0034530293196439743, 0.032035503536462784, 0.02212359569966793, -0.014578710310161114, 0.004465066362172365, -0.030717503279447556, -0.020455921068787575, 0.02934570610523224, 0.028215991333127022, -0.03421424329280853, 0.013253984041512012, -0.023979557678103447, 0.0020039002411067486, 0.020092798396945, -0.003355524269863963, 0.022284984588623047, 0.015762221068143845, 0.0007396946894004941, 0.00455248448997736, -0.6335014700889587, -0.022473270073533058, -0.027086274698376656, -0.01205702405422926, 0.002941967686638236, 0.004888709634542465, 0.01868065446615219, -0.01196288038045168, 0.006885885260999203, 0.010355725884437561, -0.03711922466754913, 0.008997377008199692, -0.0037758052349090576, -0.03359558805823326, -0.010396072641015053, -0.014780445024371147, 0.022984331473708153, -0.04048147425055504, -1.6312160369125195e-05, -0.01757783629000187, -0.0016609508311375976, -0.005470378790050745, -0.002871360396966338, 0.009979153983294964, -0.011008001863956451, -0.010779369622468948, 0.01375159714370966, 0.005816690158098936, 0.005322439596056938, 0.02275569923222065, -0.017026428133249283, 0.03407975286245346, 0.015479792840778828, 0.017698876559734344, 0.048927441239356995, -0.006001614034175873, -0.00973034743219614, 0.02570102922618389, 0.014888036996126175, 0.009165490046143532, -0.0070539978332817554, -0.02972227893769741, 0.015331854112446308, 0.01588326320052147, 0.020200390368700027, 0.011149216443300247, 0.014753547497093678, 0.003173962701112032, 0.01014726608991623, 0.015425996854901314, 0.02256741374731064, 0.004525586497038603, -0.009111694060266018, -0.015049424953758717, 0.001911438419483602, -0.012917759828269482, 0.04346714913845062, -0.00999932736158371, -0.013744872994720936, -0.00973034743219614, -1.868937397375703e-05, 0.02454441599547863, 0.004542397800832987, -0.02270190231502056, -0.0038464125245809555, 0.02106112614274025, -0.011673727072775364, 0.0029234751127660275, 0.014457669109106064, -0.00637818593531847, -0.004925694316625595, 0.011572860181331635, 0.004344025161117315, -0.001410463359206915, 0.018129244446754456, 0.011149216443300247, 0.014538363553583622, 0.009891735389828682, 0.005453567486256361, 0.0065866452641785145, 0.013038800098001957, -0.012386524118483067, -0.021854616701602936, -0.034886691719293594, 0.011949432082474232, -0.017308855429291725, -0.018613409250974655, 0.025311008095741272, 0.005184587556868792, -0.005413220264017582, -0.004596193786710501, 0.021679779514670372, 0.0003662749659270048, 0.01593705825507641, 0.02653486654162407, 0.018949633464217186, 0.010100195184350014, -0.01256136130541563, 0.024719251319766045, -0.021141819655895233, 0.006613543257117271, -0.012326003983616829, 0.0036715755704790354, -0.0061630019918084145, 0.0043373010121285915, -0.010396072641015053, -0.03510187566280365, -0.018263734877109528, 0.043009884655475616, -0.01196288038045168, 0.009111694060266018, 0.003173962701112032, 0.00749108986929059, -0.006532849278301001, 0.023280208930373192, -0.025432048365473747, 0.00985138863325119, 0.0008649384835734963, 0.012494116090238094, -0.0033067716285586357, 0.010799543000757694, -0.006650527939200401, 0.008392172865569592, -0.021720126271247864, 0.02580862119793892, 0.02420818991959095, 0.015062874183058739, 0.007800417020916939, -0.02236567810177803, -0.001688689342699945, 0.00830475427210331, -0.013583485037088394, 0.014807343482971191, -0.0014785488601773977, 0.018169591203331947, -0.011915809474885464, 0.023710576817393303, 0.0069329566322267056, 0.014861139468848705, -0.02352229133248329, 0.0031857306603342295, 0.006472328677773476, 0.007390222512185574, 0.008829264901578426, -0.01796785742044449, -0.025674130767583847, -0.01989106275141239, 0.0005379598005674779, -0.03988971933722496, 0.016044650226831436, -0.008587183430790901, -0.00645215529948473, -0.014740098267793655, 0.007134691812098026, -0.0027082914020866156, -0.008493039757013321, -0.0011313966242596507, 0.006549660582095385, -0.006808553356677294, -0.01348261721432209, 0.012958106584846973, 0.011909084394574165, -0.01379866898059845, 0.011149216443300247, 0.03233138471841812, -0.012420146726071835, -0.01479389425367117, 0.02605070360004902, -0.009938807226717472, -0.032654158771038055, 0.012897585518658161, -0.029991257935762405, -0.013341402634978294, 0.05272005870938301, -0.04182637482881546, 0.0035303609911352396, -0.008916683495044708, -0.005705736111849546, -0.019931409507989883, 0.008950306102633476, -0.011895636096596718, 0.014740098267793655, -0.0009052854729816318, -0.003876672824844718, 0.025055477395653725, 0.0021299845539033413, -0.017940958961844444, 0.010765920393168926, 0.017416447401046753, 0.02299778163433075, 0.011021451093256474, 0.010476767085492611, 0.013670902699232101, -0.0012171340640634298, 0.0015752135077491403, -0.011868737637996674, 0.02923811413347721, 0.02184116654098034, 0.007390222512185574, 0.019729675725102425, 0.011566135101020336, 0.0125882588326931, 0.02958778850734234, -0.0019467419479042292, 0.005036648362874985, -0.03515567258000374, -0.003385784337297082, -0.0053258016705513, 0.027973908931016922, -0.022137045860290527, -0.011270257644355297, -0.016286732628941536, -0.0048315515741705894, -0.025593437254428864, 0.017954407259821892, 0.028054602444171906, 0.015600834041833878, 0.014229035936295986, 0.010382624343037605, 0.0011532512726262212, -0.006973303854465485, -0.0065698339603841305, -0.007060721982270479, -0.010026225820183754, -0.026346581056714058, 0.006374823395162821, 0.017806468531489372, 0.0065765585750341415, 0.02029453217983246, 0.005914195440709591, 0.016300180926918983, -0.009555511176586151, -0.0030630086548626423, 0.01491493545472622, 0.009185663424432278, -0.013381749391555786, 0.014027301222085953, -0.01549324207007885, 0.017846815288066864, -0.03954004496335983, -0.012742922641336918, 0.006001614034175873, -0.00013995359768159688, -0.018169591203331947, 0.0021787371952086687, 0.00011578743578866124, 0.015896711498498917, 0.017833366990089417, 0.03206240385770798, 0.03983592242002487, -0.018963081762194633, 0.006347925402224064, 0.000839301326777786, 4.284240276319906e-05, 0.009259632788598537, -0.02972227893769741, -0.005658664740622044, 0.02245982177555561, 0.02052316628396511, 0.025916213169693947, 0.008439243771135807, 0.013906260952353477, -0.0034177256748080254, 0.017026428133249283, 0.061166029423475266, -0.00014173980162013322, 0.008358550257980824, 0.02303812839090824, -0.012628605589270592, -0.04104633256793022, -0.011055073700845242, -0.014161791652441025, -0.008479591459035873, -0.006310940720140934, -0.0007960123475641012, -0.008338376879692078, -0.00845269300043583, -0.00910496897995472, 0.025311008095741272, 0.018895838409662247, -0.015304955653846264, -0.03378387540578842, 0.03916347399353981, -0.005625042133033276, -0.015062874183058739, -0.003990989178419113, -0.012204962782561779, 0.0018307444406673312, -0.0074776411056518555, 0.03467150777578354, -0.031094076111912727, 0.004475153051316738, 0.01525115966796875, -0.005117342341691256, -0.008371999487280846, 0.013348126783967018, 0.035370856523513794, -0.022930536419153214, 0.030583014711737633, 0.002007262548431754, 0.0035841569770127535, 0.01236635074019432, -0.046936992555856705, 0.009259632788598537, 0.009824490174651146, -0.018115796148777008, -0.007800417020916939, -0.00590747082605958, 0.008143366314470768, -0.020267635583877563, -0.0018055274849757552, -0.03182031959295273, -0.01231927890330553, -0.005752807483077049, 0.013502790592610836, 0.01069867517799139, -0.011660278774797916, 0.035021182149648666, 0.019595185294747353, -0.015533588826656342, -0.004532311111688614, -0.02159908600151539, -0.018142694607377052, -0.005729271564632654, 0.11146526783704758, 0.01151906419545412, -0.026507968083024025, 0.015237711369991302, -0.011868737637996674, 0.020455921068787575, -0.01096765510737896, -0.033622488379478455, 0.019581736996769905, 0.0008384607499465346, 0.012124268338084221, -0.01761818304657936, 0.019339654594659805, 0.021854616701602936, 0.020550064742565155, -0.016192588955163956, -0.0025721201673150063, -0.018411673605442047, 0.0004146072897128761, 0.0009901822777464986, 0.01224530953913927, -0.000506858981680125, 0.013724698685109615, 0.01936655305325985, -0.03569363057613373, -0.019380001351237297, 0.010927308350801468, -0.011075247079133987, 0.011902360245585442, -0.016300180926918983, -0.021141819655895233, 0.015210812911391258, 0.02648106962442398, 0.02029453217983246, -0.014766995795071125, -0.004491964355111122, -0.008123192936182022, 0.003896846203133464, -0.004885347094386816, 0.008909959346055984, 0.018653756007552147, 0.0098043167963624, 0.007148140575736761, -0.011196288280189037, 0.0032546566799283028, 0.006072221323847771, -0.021330105140805244, -0.010617981664836407, -0.025015130639076233, -0.001520577003248036, 0.0397014319896698, 0.00270492909476161, -0.006485777907073498, -0.0047205970622599125, 0.01498217973858118, 0.008533387444913387, -0.021141819655895233, 0.01042969524860382, -0.010490216314792633, 0.02352229133248329, 0.007780243642628193, -0.0032748302910476923, -0.001211250084452331, -0.017591284587979317, -0.0061293793842196465, -0.02586241625249386, -0.029641583561897278, -0.017416447401046753, 0.006176450755447149, 0.01747024431824684, -0.02474614977836609, -0.023414699360728264, -0.027516642585396767, -0.006186537444591522, 0.013933158479630947, 0.006004976108670235, 0.021531840786337852, -0.009131867438554764, -0.00040725237340666354, 0.005359424278140068, -0.00953533686697483, -0.04236433282494545, 0.01893618516623974, -0.01612534373998642, -0.024315781891345978, 0.007827314548194408, -0.004054871853441, 0.013038800098001957, -0.032707955688238144, 0.02376437373459339, 0.003832963528111577, 0.031632035970687866, 0.006593369413167238, -0.0061630019918084145, 0.01108869630843401, 0.005803241394460201, -0.01522426214069128, 0.0017071818001568317, 0.005157689563930035, -0.003331988351419568, 0.013879362493753433, -0.036043304949998856, 0.004475153051316738, -0.008513214066624641, 0.004384372383356094, -0.012816892005503178, -0.0013247259194031358, 0.002440992509946227, -0.021141819655895233, -0.022863291203975677, 0.010449868626892567, -0.005198036320507526, 0.0030008070170879364, -0.007161589805036783, 0.0011221504537388682, 0.004105305764824152, 0.017012977972626686, 0.02241947501897812, 0.014013852924108505, 0.016394324600696564, -0.0007968529243953526, -0.018169591203331947, 0.009071347303688526, 0.0003484130138531327, -0.04198776185512543, -0.01631363108754158, 0.02182771824300289, -0.01724161207675934, 0.02003900147974491, -0.0047878422774374485, 0.022540515288710594, 0.011848564259707928, 0.014000403694808483, -0.015089771710336208, -0.034106649458408356, 0.004491964355111122, -0.0156142832711339, 0.012299105525016785, -0.011377849616110325, 0.017066774889826775, -0.005050097592175007, -0.005715822800993919, -0.025741375982761383, -0.020926635712385178, -0.001520577003248036, -0.02474614977836609, -0.0033538429997861385, -0.005198036320507526, -0.010752471163868904, 0.014995628967881203, -0.000515264633577317, -0.025095824152231216, -0.02221773937344551, -0.0033252639696002007, -0.016878487542271614, -0.031067177653312683, 0.0038127899169921875, -0.013906260952353477, 0.03475220128893852, 0.007975254207849503, 0.020092798396945, -0.021908411756157875, -0.005836863536387682, 0.02037522755563259, 0.0014163472224026918, 0.011008001863956451, -0.019474145025014877, -0.018129244446754456, -0.0268710907548666, -0.004619729705154896, 0.02918431907892227, 0.032654158771038055, 0.02303812839090824, 0.014336627908051014, 0.002785623073577881, 0.04836258664727211, -0.013617106713354588, -0.013617106713354588, -0.025257211178541183, -0.015399099327623844, -0.012097370810806751, -0.011337502859532833, -0.013112769462168217, -0.001105339266359806, -0.026158295571804047, 0.012722749263048172, 0.037495795637369156, 0.017900612205266953, 0.005265281535685062, -0.0017651804955676198, 0.011734248138964176, -0.015896711498498917, 0.01603120192885399, -0.005460291635245085, 0.03015264682471752, -0.00380606553517282, 0.010691951029002666, -0.002254387829452753, 0.012305829674005508, 0.0025805258192121983, 0.007222109939903021, -0.013072422705590725, -0.006980028469115496, -0.03954004496335983, -0.02953399159014225, 0.015143567696213722, -0.016811244189739227, -0.010987828485667706, 0.029668482020497322, -0.019191715866327286, -0.015143567696213722, -0.0060419607907533646, 0.0006484937039203942, -0.029991257935762405, -0.01709367148578167, -0.010369175113737583, 0.00033559443545527756, 0.0128303412348032, -0.024853741750121117, 0.007329701911658049, 0.00796180497854948, -0.011404747143387794, 0.05750790238380432, 0.003987627103924751, 0.03346109762787819, -0.011929258704185486, -0.024194741621613503, 0.004999663680791855, 0.01309259608387947, -0.016730548813939095, 0.0006316824583336711, 0.0256606824696064, 0.03373007848858833, -0.015412547625601292, 0.020993880927562714, -0.015600834041833878, -0.0005119023844599724, -0.04096563905477524, -0.030636809766292572, -1.738912942528259e-05, -0.0006463922909460962, -0.003516911994665861, 0.003162194974720478, -0.009373948909342289, -0.0411539226770401, 0.011720798909664154, -0.007894559763371944, 0.025539640337228775, -0.00309158768504858, -0.02459821105003357, -0.025499293580651283, -0.002555309096351266, 0.01800820417702198, 0.02087284065783024, 0.04032008722424507, -0.03117476962506771, -0.013919709250330925, 0.0009262994863092899, -0.010900409892201424, 0.011552686803042889, -0.005863761529326439, 0.0034177256748080254, 0.0002549004857428372, 0.018721001222729683, -0.010631429962813854, 0.007437293883413076, -0.015062874183058739, -0.006142828147858381, -0.005235021002590656, 0.023266760632395744, 0.028538767248392105, 0.015506691299378872, 0.009629480540752411, 0.020617308095097542, 0.02381816878914833, 0.014780445024371147, -0.0013432183768600225, 0.001410463359206915, -0.0032849169801920652, -0.0056620268151164055, 0.007161589805036783, 0.00563849089667201, 0.003217671997845173, -0.028189092874526978, -0.009562235325574875, -0.01951449178159237, -0.013496066443622112, 0.014054199680685997, -0.02042902261018753, -0.03311142325401306, -0.02028108388185501, 0.0006930435192771256, -0.006314302794635296, 0.02899603173136711, -0.009044448845088482, 0.022984331473708153, -0.010544012300670147, 0.01940689980983734, -0.03451012074947357, 0.01224530953913927, -0.03698473423719406, 0.013038800098001957, -0.030905790627002716, 0.0044785151258111, 0.007571783848106861, -0.018371326848864555, 0.01578911952674389, -0.027973908931016922, -0.014753547497093678, 0.011915809474885464, 0.008815815672278404, 0.007222109939903021, -0.0032647433690726757, -0.004162463825196028, -0.007403671741485596, 0.0015844596782699227, 0.014229035936295986, -0.017066774889826775, -0.018895838409662247, 0.0069867526181042194, 0.01703987643122673, 0.00876201968640089, 0.016838140785694122, -0.027866316959261894, 0.03572053089737892, 0.0032664246391505003, 0.015130119398236275, 0.003490014234557748, -0.033568691462278366, 0.005971353501081467, 0.0035538969095796347, 0.004505413118749857, 0.01321363728493452, -0.005191312171518803, -0.0034412615932524204, -0.014081097207963467, -0.009333602152764797, -0.00394391780719161, 0.00021392307826317847, -0.03526326268911362, 0.008008875884115696, 0.024826843291521072, -0.010658328421413898, -0.003022661665454507, -0.028000807389616966, 0.01756438799202442, 0.0070203752256929874, -0.011539237573742867, -0.03902898356318474, -0.010409521870315075, -0.025136170908808708, 0.032707955688238144, -0.005887297447770834, -0.02115526795387268, -0.0051543270237743855, -0.028834644705057144, -0.029883665964007378, -0.015331854112446308, -0.008862887509167194, 0.014309730380773544, 0.03988971933722496, 0.005066908895969391, 0.009784143418073654, 0.024235088378190994, -0.021034227684140205, 8.431889000348747e-05, -0.010597807355225086, -0.008123192936182022, -0.00749108986929059, -0.022473270073533058, -0.006852262653410435, 0.005699011497199535, -0.030098849907517433, 0.0030899064149707556, 0.021074574440717697, -0.010765920393168926, -0.002469571540132165, 0.013079147785902023, -0.0014659403823316097, 0.0033269450068473816, -0.0060789454728364944, -0.0031790060456842184, 0.011734248138964176, 0.006919507868587971, 0.01196288038045168, -0.027126621454954147, -0.00845269300043583, 0.002245982177555561, -0.018371326848864555, -0.01316656544804573, -0.02910362370312214, 0.00384305021725595, -0.007639029063284397, 0.011532512493431568, -0.03771097958087921, -0.024423373863101006, -0.017537489533424377, -0.029856767505407333, 0.03711922466754913, -0.024194741621613503, 0.016542263329029083, 0.02808150090277195, -0.003614417277276516, -0.02018694020807743, -0.012386524118483067, 0.022728800773620605, 0.01200995221734047, -0.02091318741440773, 0.011882186867296696, -0.01718781515955925, -0.0060520474798977375, -0.008089570328593254, -0.0018391499761492014, -0.008123192936182022, 0.024288885295391083, -0.0059915273450315, -0.010349001735448837, -0.01616569235920906, 0.03321901708841324, 0.01660950854420662, 0.0056687514297664165, -0.0025771635118871927, 0.016004303470253944, 0.0022409388329833746, -0.003718646941706538, -0.022446371614933014, -0.009763970039784908, 0.0023855154868215322, -0.0001460476778447628, -0.0034244502894580364, 0.009131867438554764, -0.0025166431441903114, -0.005934368818998337, 0.025526192039251328, -0.03800686076283455, -0.013314505107700825, 0.21507632732391357, -0.017954407259821892, -0.004095219075679779, 0.039674535393714905, -0.010214511305093765, 0.0056115929037332535, 0.025109272450208664, 0.006980028469115496, -0.008533387444913387, 0.005120704881846905, -0.0061361039988696575, 0.01507632341235876, -0.0074776411056518555, 0.010456593707203865, 0.014161791652441025, 0.0025082374922931194, -0.03757649287581444, -0.01603120192885399, 0.0069598546251654625, -0.059767331928014755, 0.015304955653846264, -0.008472866378724575, -0.009515163488686085, -0.022096699103713036, 0.010631429962813854, 0.02135700359940529, 0.005117342341691256, 0.006045323330909014, 0.026023805141448975, 0.00026015398907475173, -0.019783470779657364, -0.008896510116755962, -0.00033769584842957556, 0.008022325113415718, -0.024907538667321205, 0.02303812839090824, 0.008506488986313343, 0.007504539098590612, 0.00467352569103241, -0.00026456694467924535, -0.011882186867296696, 0.010617981664836407, 0.014834241010248661, -0.0014785488601773977, -0.00885616336017847, 0.04387062042951584, -0.01188891101628542, -0.008405622094869614, -0.020805595442652702, 0.004962678998708725, -0.04037388041615486, 0.01912447065114975, 0.034886691719293594, 0.020644206553697586, 0.006926232483237982, -0.002906664041802287, 0.008540111593902111, 0.020106246694922447, -0.016488468274474144, 0.0031420213636010885, -0.014336627908051014, 0.02958778850734234, 0.008291305042803288, 0.009831215254962444, -0.01336157601326704, 0.004229709040373564, -0.006697599310427904, -0.009427744895219803, 0.014578710310161114, -0.02813529595732689, -0.0038464125245809555, -0.01309932116419077, -0.007423845119774342, -0.004300315864384174, 0.0006972463452257216, -0.020738350227475166, 0.0305023193359375, -0.029560890048742294, 0.018519265577197075, 0.000614871212746948, 0.007517987862229347, -0.035559140145778656, 0.011344227008521557, -0.023024678230285645, -0.010275032371282578, -0.02376437373459339, 0.008405622094869614, -0.005621679592877626, -0.02672315202653408, 0.010153991170227528, -0.016434671357274055, -0.01951449178159237, -0.002713334746658802, -0.015654629096388817, 0.007470916491001844, -0.02221773937344551, 0.02232533134520054, 0.0009372268104925752, 0.014780445024371147, -0.013691077008843422, -0.013018626719713211, -0.00796180497854948, 0.017012977972626686, -0.006240333430469036, -0.03206240385770798, -0.004266693722456694, 0.0145249143242836, 0.010322103276848793, 0.009710174053907394, -0.0039002085104584694, 0.016327079385519028, 0.0007926500984467566, -0.010301929898560047, -0.019595185294747353, 0.018532713875174522, 0.02948019653558731, -0.019245510920882225, -0.035855021327733994, 0.009219286032021046, 0.00985138863325119, 0.013489341363310814, -0.010658328421413898, 0.006344563327729702, 0.008371999487280846, 0.004539035726338625, -0.011976329609751701, -0.020160043612122536, 0.027812521904706955, 0.007222109939903021, -0.0008472866611555219, 0.023253312334418297, -0.030367830768227577, -0.00266794441267848, -0.007834039628505707, -0.026951786130666733, 0.03281554579734802, 0.02052316628396511, -0.019258961081504822, 0.030125748366117477, -0.010288480669260025, 0.015197363682091236, -0.003411001292988658, 0.008029050193727016, 0.01607154868543148, -0.005208123009651899, -0.024235088378190994, 0.013200188055634499, -0.019783470779657364, -0.0012473942479118705, -0.018021652474999428, -0.030233340337872505, -0.0008027368457987905, 0.006273956038057804, -0.014834241010248661, 0.020442472770810127, -0.004522224422544241, -0.01236635074019432, -0.04314437508583069, 0.018129244446754456, 0.02003900147974491, -0.020980432629585266, 0.027072826400399208, 0.02091318741440773, -0.0181561429053545, -0.00878219399601221, -0.01752403937280178, -0.17053325474262238, 0.017026428133249283, 0.00970344990491867, -0.01186201348900795, 0.032707955688238144, 0.018371326848864555, 0.022984331473708153, -0.009616031311452389, -0.005547710228711367, -0.0179140605032444, 0.01820993795990944, 0.006445430684834719, -0.026306234300136566, -0.005961266811937094, -0.009885011240839958, 0.0008733440772630274, -0.019877614453434944, -0.003695111256092787, 0.03233138471841812, 0.007645753677934408, -0.001719790161587298, -0.002326676156371832, 0.015237711369991302, 0.004979490302503109, 0.0006703483522869647, 0.009622755460441113, -0.002222446259111166, 0.012312554754316807, 0.007578508462756872, -0.01479389425367117, -0.006199986673891544, 0.013516239821910858, -0.0108936857432127, -0.011290431022644043, 0.031443748623132706, 0.007531437091529369, -0.017739223316311836, 0.011949432082474232, -0.003930468577891588, 0.014013852924108505, 0.017887162044644356, 0.0028394190594553947, 0.008493039757013321, 0.002424181206151843, -0.006795104593038559, 0.03297693654894829, -0.009293255396187305, -0.008748571388423443, 0.023455046117305756, -0.013812117278575897, 0.022338779643177986, -0.0011557729449123144, 0.028700154274702072, -0.0035471722949296236, 0.033192120492458344, 0.018613409250974655, 0.014498015865683556, 0.006401721388101578, -0.01128370687365532, -0.02221773937344551, 0.014471118338406086, -0.0070203752256929874, 0.03321901708841324, -0.024961333721876144, -0.017389550805091858, -0.008224059827625751, -0.014081097207963467, 0.017295407131314278, -0.03526326268911362, 0.018021652474999428, 0.010335552506148815, 0.015130119398236275, 0.020307982340455055, -0.015089771710336208, 0.004959316924214363, -0.010792817920446396, -0.021612534299492836, 0.029883665964007378, -0.0018038464477285743, 0.003570707980543375, -0.026077600196003914, 0.033622488379478455, -0.024409925565123558, -0.019729675725102425, 0.01631363108754158, 0.013973505236208439, -0.00953533686697483, -0.02392576076090336, -0.026360029354691505, 0.0009481541346758604, 0.011384573765099049, -0.032223790884017944, -0.005867124069482088, -0.013919709250330925, 0.013657454401254654, 0.02318606711924076, 0.014067647978663445, -0.02681729570031166, 0.0025771635118871927, -0.017053324729204178, 0.017497142776846886, -0.02508237585425377, -0.015896711498498917, 0.03980902582406998, 0.016596060246229172, 0.002731827087700367, -0.003278192365542054, 0.012016676366329193, 0.03617779538035393, -0.0004391937400214374, -0.0073834978975355625, 0.000554771046154201, 0.02232533134520054, 0.02523031458258629, 0.012668953277170658, 0.020738350227475166, 0.0010902091162279248, -0.021222513169050217, 0.008143366314470768, -0.014699751511216164, 0.061166029423475266, -0.007403671741485596, -0.004905520938336849, 0.011055073700845242, 0.00035450709401629865, -0.038706205785274506, -0.11125008761882782, 0.007981978356838226, -0.005423306953161955, 0.017537489533424377, 4.6782537538092583e-05, 0.015547038055956364, -0.017658529803156853, 0.0213032066822052, 0.007107793819159269, 0.011868737637996674, -0.022298432886600494, -0.04836258664727211, -0.001581097487360239, -0.007928182370960712, 0.011559410952031612, -0.015466343611478806, -0.009642928838729858, -0.005493914242833853, 0.026252437382936478, 0.031013382598757744, -0.0015357070369645953, -0.02280949428677559, 0.009360500611364841, -0.038464125245809555, 0.02081904374063015, -0.0033185393549501896, -0.020092798396945, -0.004216259811073542, 0.01955483853816986, 0.01722816191613674, -0.005799878854304552, -0.0075112637132406235, 0.013919709250330925, 0.008015600964426994, 0.0009775737999007106, -0.008217335678637028, -0.024248536676168442, -0.011142492294311523, 0.009952256456017494, -0.03268105536699295, 0.008990652859210968, -0.016138793900609016, 0.016179140657186508, -0.026709703728556633, 0.00837872363626957, -0.007921458221971989, -0.011915809474885464, 0.016394324600696564, 0.012742922641336918, -0.023508843034505844, -0.02081904374063015, 0.017308855429291725, -0.03238517791032791, -0.007430569734424353, 0.02658866159617901, -0.0017214713152498007, 0.027341805398464203, 0.019648980349302292, -0.023791272193193436, -0.015049424953758717, -0.01888238824903965, 0.01413489319384098, -0.018989980220794678, 0.024383027106523514, 0.020509716123342514, -0.0037421828601509333, 0.0007573465118184686, -0.019326206296682358, 0.023078475147485733, -0.009205836802721024, -0.010631429962813854, 0.010537287220358849, -0.03133615851402283, 0.014888036996126175, -0.013549862429499626, 0.007934906519949436, -0.021666331216692924, -0.012083921581506729, 0.014417322352528572, 0.007544885855168104, 0.0007565059349872172, -0.01858651079237461, 0.007894559763371944, 0.016730548813939095, 0.0035269989166408777, -0.004075045231729746, 0.012231860309839249, -0.007746621035039425, 0.0018122519832104445, -0.013516239821910858, 0.0036614888813346624, 0.009864837862551212, -0.00014205501065589488, -0.02748974598944187, 5.7841185480356216e-05, 0.0411539226770401, 0.008445968851447105, -0.0013692757347598672, -0.014578710310161114, 0.0026376841124147177, -0.01655571162700653, 0.00842579547315836, -0.06326407194137573, 0.031632035970687866, 0.007632304448634386, -0.004239795729517937, -0.0007565059349872172, 0.00808284617960453, 0.008755295537412167, -0.021088024601340294, -0.0348597951233387, -0.013960056938230991, -0.006613543257117271, 0.026023805141448975, -0.007504539098590612, -0.007101069204509258, -0.016918836161494255, 0.017900612205266953, 0.006690874695777893, -0.028915338218212128, -0.008412346243858337, -0.005504000931978226, 0.010133817791938782, -0.0013146392302587628, 0.03227758780121803, 0.005406495649367571, -0.019474145025014877, -0.011552686803042889, 0.019191715866327286, 0.01709367148578167, -0.006105843465775251, -0.024369578808546066, 0.009743796661496162, -0.01810234598815441, -0.008358550257980824, -0.015802569687366486, 0.006075583398342133, 0.022876739501953125, -0.03426804021000862, 0.002378790872171521, -0.005530898924916983, 0.04709837958216667, -0.0024443548172712326, 0.0006308418815024197, 0.008540111593902111, -0.03260036185383797, 0.017846815288066864, 0.030636809766292572, -0.014578710310161114, -0.001142323948442936, 0.02474614977836609, -0.020052451640367508, 0.0007266660104505718, 0.020738350227475166, -0.0012347857700660825, -0.027476295828819275, -0.015062874183058739, -0.013570035807788372, 0.018129244446754456, 0.0036883868742734194, 0.0014432452153414488, -0.01990451291203499, 0.026400376111268997, 0.0019467419479042292, 0.003560621291399002, -0.011794768273830414, 0.030609911307692528, -0.029507094994187355, 0.009205836802721024, -0.007524712476879358, -0.018115796148777008, -0.024463720619678497, 0.00417591305449605, -0.0024796584621071815, -0.000982617144472897, 0.015668079257011414, 0.003103355411440134, 0.035317059606313705, 0.016730548813939095, -0.0036816622596234083, -0.030125748366117477, 0.017201263457536697, -0.010201062075793743, -0.01263533066958189, -0.026158295571804047, 0.00788783561438322, 0.02449061907827854, -0.01363055594265461, -0.009905184619128704, 0.003099993336945772, -0.01781991869211197, 0.003490014234557748, 0.021478043869137764, -0.0012709300499409437, 0.005803241394460201, -0.0037320959381759167, 0.009252908639609814, 0.015842916443943977, -0.007195211946964264, -0.004233071114867926, 0.02463855780661106, 0.03278864920139313, -0.02223118767142296, 0.007275905925780535, 0.006795104593038559, -0.023885414004325867, -0.00019984364917036146, 0.005914195440709591, -0.017268508672714233, -0.021760473027825356, -0.0027805797290056944, 0.025674130767583847, 0.004613005090504885, 0.013960056938230991, 0.014000403694808483, 0.01942034810781479, -0.027045927941799164, 0.02387196570634842, -0.012299105525016785, -0.0007817228324711323, -0.010106919333338737, 0.05037993565201759, 0.013422097079455853, 0.027704929932951927, 0.01966243050992489, 0.0034059579484164715, 0.009905184619128704, 0.016690202057361603, 0.015694977715611458, -0.00043078811722807586, -0.013960056938230991, 0.006788379978388548, 0.007504539098590612, -0.003940555267035961, -0.04497343674302101, 0.0005854515475220978, -0.007363324519246817, -0.04274090379476547, 4.749176150653511e-05, -0.0003225657274015248, -0.025929661467671394, 0.03327281400561333, 0.020738350227475166, 0.003570707980543375, 0.005591419525444508, 0.010584359057247639, 0.02454441599547863, 0.022298432886600494, 0.005988164804875851, -0.0005951180355623364, -0.009266356937587261, 0.009414296597242355, -0.014094546437263489, 0.03227758780121803, -0.02376437373459339, -0.008405622094869614, 0.012897585518658161, -0.003192455042153597, 0.023791272193193436, -0.028242887929081917, -0.016569161787629128, 0.026548314839601517, -0.00803577434271574, 0.035747427493333817, 0.0007224631845019758, 0.0033336696214973927, -0.006273956038057804, 0.008076121099293232, 0.012937933206558228, -0.0042465198785066605, -0.016394324600696564, 0.01534530334174633, 0.008748571388423443, -0.016152242198586464, -0.007370049133896828, 0.014148342423141003, -0.006297491956502199, 0.006630354560911655, -0.009205836802721024, 0.03286934271454811, 0.008089570328593254, -0.0035135499201714993, 0.00010044717782875523, -0.017739223316311836, -0.018183041363954544, 0.019151369109749794, 0.00026624806923791766, -0.017160916700959206, -0.0038195145316421986, -0.02003900147974491], "25bb1a78-5d33-4084-95c3-d35004d19e14": [-0.0012808003230020404, -0.021622974425554276, -0.008197122253477573, 0.008374136872589588, -0.02179998904466629, 0.0263887420296669, -0.022494429722428322, -0.008183506317436695, -0.016108298674225807, -0.011219981126487255, 0.021418726071715355, 0.0012510142987594008, 0.033768877387046814, -0.006535911466926336, -0.006307835690677166, 0.0060082729905843735, 0.04172090068459511, 0.01248631440103054, 0.023039087653160095, -0.01997537910938263, 0.002430542139336467, -0.0027471252251416445, 0.006069547031074762, 0.044634830206632614, -0.01989368163049221, 0.02252166159451008, 0.02406032383441925, -0.021609358489513397, 0.006876323837786913, -0.02038387395441532, -0.009231975302100182, -0.0018858828116208315, -0.007114612031728029, -0.013745838776230812, -0.04049541801214218, -0.012356957420706749, -0.001395689439959824, -0.016993369907140732, 0.027042334899306297, -0.008060957305133343, 0.004428761079907417, -0.002641597529873252, -0.004803214222192764, 0.01631254516541958, -0.036383241415023804, 0.011192748323082924, -0.013813921250402927, -0.01207101158797741, -0.03556625172495842, 0.006791220512241125, 0.024033091962337494, 0.013364577665925026, -0.03619261085987091, 0.013568825088441372, -0.00686270697042346, 0.00041126032010652125, 0.02132341079413891, 0.03224382922053337, -0.02519049309194088, 0.027995487675070763, 0.011056583374738693, -0.007911176420748234, 0.002944564213976264, 0.004159835167229176, -0.03586581349372864, -0.00537851033732295, -0.00644059618934989, -0.015005364082753658, -0.009163892827928066, 0.004347062204033136, 0.04793001711368561, 0.019880063831806183, -0.005773388314992189, 0.013378193601965904, 0.01587681844830513, -0.03801721706986427, -0.033469315618276596, -0.009620044380426407, -0.028240583837032318, 0.005548716522753239, -0.0065052746795117855, -0.02279399149119854, -0.0003244552353862673, 0.015100679360330105, 0.029683930799365044, -0.0075571476481854916, 0.011342530138790607, 0.02110554836690426, -0.020220477133989334, -0.021364260464906693, 0.018082689493894577, 0.013527975417673588, 0.003273061942309141, 0.0122003685683012, 0.009756209328770638, 0.02497262880206108, -0.028812477365136147, 0.03521222248673439, 0.006260177586227655, -0.012227601371705532, -0.02568068541586399, -0.02102384902536869, -0.030528154224157333, 0.00121782417409122, -0.016108298674225807, 0.014283689670264721, -0.009327290579676628, -0.002554792445152998, 0.018586497753858566, -0.020996615290641785, -0.03028305619955063, 0.02031579241156578, -0.008741782046854496, -0.0465683713555336, -0.02152765914797783, -0.020642587915062904, 0.019212856888771057, -0.021051080897450447, -0.013228412717580795, -0.015304925851523876, -0.0060082729905843735, 0.01672104001045227, 0.002272250596433878, -0.006906960625201464, -0.0013190967729315162, 0.0020271537359803915, -0.011335721239447594, -0.030800484120845795, -0.005936786532402039, -0.007100995630025864, 0.02534027397632599, 0.020942149683833122, 0.012833534739911556, -0.02186807058751583, 0.0020748116075992584, 0.005201496183872223, -0.03589304909110069, -0.013419043272733688, -0.016421478241682053, -0.02765507623553276, 0.03267955780029297, 0.014828349463641644, -0.0005965721211396158, -0.02724658139050007, -0.029166504740715027, 0.01643509417772293, 0.010137471370398998, 0.009817483834922314, -0.020152393728494644, 0.01478749979287386, 0.003426247276365757, -0.011567201465368271, -0.005269578658044338, -0.01407944317907095, 0.016979753971099854, -0.008469452150166035, -0.0025990460999310017, 0.013773071579635143, 0.009293248876929283, -0.01925370655953884, 0.016966136172413826, 0.02821335196495056, 0.017184000462293625, 0.014433471485972404, 0.008380944840610027, 0.021977001801133156, -0.0040815407410264015, -0.022685060277581215, -0.03161747381091118, -0.027124032378196716, 0.023651830852031708, 0.022140400484204292, -0.03020135872066021, 0.004918954335153103, -0.016612108796834946, 0.011042967438697815, 0.024359887465834618, 0.041666436940431595, -0.008612425066530704, -0.0005774239543825388, -0.03232552856206894, -0.02610279619693756, 0.01505982968956232, 0.032434459775686264, -0.032216597348451614, 0.0006165713421069086, -0.027205731719732285, -0.004588754381984472, 0.023965008556842804, 0.0034007164649665356, 0.00896645337343216, 0.016544025391340256, -0.009020919911563396, -0.002473093569278717, -0.6365978121757507, -0.02088768407702446, -0.011247214861214161, -0.01252035517245531, -0.007359708659350872, 0.0031845548655837774, 0.007434599567204714, -0.007066954392939806, 0.0035845390520989895, 0.002884992165490985, -0.03981459513306618, 0.02293015643954277, -0.008306054398417473, -0.02534027397632599, -0.018327785655856133, -0.004387911409139633, 0.018327785655856133, -0.028458448126912117, -0.0021224692463874817, -0.027764007449150085, 0.003063708543777466, -0.007747778668999672, -0.006324856076389551, -0.0033853978384286165, -0.012588437646627426, -0.015536406077444553, 0.015631722286343575, 0.00987875834107399, -0.004667049273848534, 0.04030478745698929, -0.02026132494211197, 0.04310978204011917, 0.020642587915062904, 0.016979753971099854, 0.056699033826589584, -0.006253369618207216, -0.01849118247628212, 0.018886061385273933, 0.007563956081867218, 0.015781503170728683, -0.012867575511336327, -0.036873433738946915, 0.014746650122106075, 0.0034075246658176184, 0.018654581159353256, 0.0021820412948727608, 0.00882348045706749, -0.011104241013526917, 0.01043703407049179, 0.010423417203128338, 0.028322283178567886, 0.00815627258270979, -0.00419728085398674, -0.0014910048339515924, -0.0021241712383925915, -0.004360678605735302, 0.03450416773557663, -0.009136660024523735, -0.005334257148206234, -0.0003806232416536659, 0.006052526645362377, 0.023597363382577896, -0.007904368452727795, -0.012479506433010101, -0.00758438091725111, 0.020070694386959076, -0.02307993732392788, 0.013745838776230812, 0.005848279222846031, -0.01862734742462635, 0.0016331268707290292, 0.013003740459680557, -0.005882320459932089, -0.00576658034697175, 0.01996176317334175, 0.009694935753941536, 0.01757887937128544, -0.008081382140517235, 0.009660894051194191, -0.00783628597855568, 0.012118669226765633, -0.026906169950962067, -0.030228590592741966, -0.03338761627674103, 0.023052705451846123, -0.02456413395702839, -0.012234409339725971, 0.01111104991286993, -0.0009999604662880301, -0.002828824333846569, -0.0009565578657202423, 0.013895620591938496, -0.00033934827661141753, 0.005048310849815607, 0.03986905887722969, 0.016407860442996025, 0.006358897313475609, -0.012785877101123333, 0.020370258018374443, -0.00864646676927805, 0.005232133436948061, -0.008455835282802582, 0.010804679244756699, -0.003986224997788668, 0.0010595325147733092, -0.012084628455340862, -0.03943333402276039, -0.020234093070030212, 0.04248342663049698, -0.005817641969770193, 0.002416925737634301, -0.003965800628066063, 0.009606428444385529, -0.010069388896226883, 0.010702555067837238, -0.023039087653160095, 0.0006991212721914053, 0.00420068483799696, 0.03208043426275253, -0.012765452265739441, 0.011138282716274261, -0.014896431937813759, 0.019811982288956642, -0.0258304663002491, 0.02603471465408802, 0.034041207283735275, 0.009797058999538422, 0.022099550813436508, -0.02080598473548889, -0.010178321041166782, -0.003267955733463168, -0.022971006110310555, -0.004289192147552967, 0.007495873607695103, 0.021337028592824936, -0.010219169780611992, 0.014419854618608952, -0.0004023245128337294, 0.030854949727654457, -0.011199557222425938, 0.00014244117483031005, 0.0026075562927871943, 0.00839456170797348, 0.012710986658930779, -0.009116235189139843, -0.022630594670772552, -0.011478695087134838, -0.002559898653998971, -0.03540285304188728, 0.007563956081867218, -0.006464425008744001, 0.003126684809103608, -0.008769014850258827, 0.01643509417772293, 0.001157401013188064, -0.02235826477408409, -0.006433787755668163, 0.009415797889232635, 0.006083163432776928, -0.004507055506110191, 0.01206420361995697, 0.015141528099775314, -0.006951214279979467, 0.014038593508303165, 0.020846834406256676, -0.009170700795948505, -0.012792685069143772, 0.02821335196495056, -0.002316504018381238, -0.030228590592741966, 0.010899994522333145, -0.025667069479823112, -0.009899183176457882, 0.04989079013466835, -0.031644705682992935, 0.002976903459057212, -0.008122231811285019, -0.011771448887884617, -0.006212519947439432, 0.012425039894878864, -0.004656836856156588, 0.010471074841916561, 0.005722326692193747, -0.014215607196092606, 0.03970566391944885, 0.00037296395748853683, -0.006450808607041836, 0.010212361812591553, 0.018191620707511902, 0.03295188769698143, 0.01492366474121809, 0.015386625193059444, -0.0057938131503760815, 0.0036390048917382956, 0.006712925620377064, -0.011131474748253822, 0.014215607196092606, 0.027614226564764977, 0.013943278230726719, 0.013092247769236565, 0.001807588036172092, 0.006903556641191244, 0.03886144235730171, 0.0023079938255250454, 0.010389376431703568, -0.031100045889616013, -0.008122231811285019, -0.004918954335153103, 0.02011154405772686, -0.023406732827425003, -0.021337028592824936, -0.017184000462293625, -0.0015565342037007213, -0.03965119644999504, 0.02032940834760666, 0.016544025391340256, 0.02215401642024517, 0.0031420032028108835, 0.009061768651008606, -0.0029241396114230156, -0.001780355116352439, -0.006025293376296759, -0.0024322441313415766, -0.015359392389655113, -0.02215401642024517, 0.02081960253417492, 0.013773071579635143, 0.0004287064366508275, 0.020928533747792244, 0.0045581175945699215, 0.023243336006999016, -0.010620856657624245, 0.0018212045542895794, 0.014692184515297413, 0.02201785147190094, -0.006069547031074762, 0.02696063555777073, -0.01749718002974987, 0.02837674878537655, -0.0372546948492527, -0.0010237892856821418, -0.00467385770753026, 0.011635283939540386, -0.03169916942715645, -0.0064848498441278934, 0.004847467876970768, 0.017252083867788315, 0.016475943848490715, 0.028703544288873672, 0.02448243461549282, -0.030010728165507317, 0.00624656118452549, -0.002158212475478649, 0.010362142696976662, 0.023134402930736542, -0.02419648878276348, -0.006021889392286539, 0.011989313177764416, 0.004918954335153103, 0.020029844716191292, 0.009810675866901875, 0.013534783385694027, 0.00329008256085217, 0.009429413825273514, 0.04673176631331444, 0.012479506433010101, -0.001839927164837718, 0.022957390174269676, -0.02957499958574772, -0.04820234701037407, -0.022126784548163414, -0.02603471465408802, 0.0011854850454255939, -0.0038024026434868574, 0.017687810584902763, -0.002566706854850054, -0.00038679319550283253, 0.004418548662215471, 0.031018346548080444, -0.0005446592695079744, -0.026701921597123146, -0.038207851350307465, 0.0392427034676075, -0.006134225521236658, -0.012540780007839203, -0.0018926910124719143, -0.009851524606347084, 0.0032492331229150295, -0.018600115552544594, 0.03464033082127571, -0.03265232592821121, 0.015958517789840698, -0.0014382409863173962, -0.0030977497808635235, -0.014283689670264721, 0.015699803829193115, 0.029438834637403488, -0.03777212277054787, 0.03069155104458332, 0.01925370655953884, 0.002992222085595131, 0.012036970816552639, -0.03499436005949974, 0.01016470417380333, -0.001559087191708386, -0.009674510918557644, -0.006815049331635237, -0.009095810353755951, 0.004078136291354895, -0.016326162964105606, -0.004735131748020649, -0.037227462977170944, -0.007169078104197979, -0.003349654609337449, 0.0211736299097538, 0.0018790746107697487, -0.017388248816132545, 0.026797236874699593, 0.01111785788089037, -0.003361569019034505, 0.002309695817530155, -0.01715676859021187, -0.03028305619955063, 0.005017673596739769, 0.11688388139009476, 0.011199557222425938, -0.02962946519255638, 0.007952026091516018, -0.009708551689982414, 0.015182377770543098, -0.008054149337112904, -0.016040217131376266, 0.016339778900146484, -0.007625230122357607, 0.010981692932546139, -0.008837097324430943, 0.01284715160727501, 0.00815627258270979, 0.006369109731167555, -0.016176380217075348, -0.0063112396746873856, -0.019294556230306625, -0.0008518811664544046, -0.003931759390980005, -0.003056900342926383, -0.0016663169953972101, 0.012826726771891117, 0.011907613836228848, -0.028131652623414993, -0.00366964191198349, 0.02257612720131874, -0.011301680468022823, 0.021827220916748047, -0.01714315079152584, -0.018817977979779243, 0.015522790141403675, 0.026797236874699593, 0.029112039133906364, -0.019634967669844627, -0.008101806975901127, -0.0015063233440741897, 9.047514322446659e-05, 0.007100995630025864, -0.0029905198607593775, 0.014733034186065197, 0.007611613720655441, 0.007917984388768673, 6.361450505210087e-05, -0.0005718922475352883, -0.007169078104197979, -0.023665446788072586, -0.004275575280189514, -0.02102384902536869, -0.007952026091516018, 0.04670453444123268, 0.007986066862940788, -0.008932412602007389, -0.00733928382396698, 0.022916540503501892, -0.008326479233801365, -0.026211729273200035, 0.007563956081867218, -0.004316424950957298, 0.03605644404888153, 0.0025139430072158575, -0.011056583374738693, 0.0010757021373137832, -0.006849090568721294, -0.011070200242102146, -0.032352760434150696, -0.031426843255758286, -0.0037683614064007998, -0.0024867102038115263, 0.01016470417380333, -0.00338710006326437, -0.016407860442996025, -0.028049953281879425, -0.010505116544663906, 0.012445464730262756, 0.01672104001045227, 0.020206859335303307, -0.01960773393511772, -0.0009046450722962618, -0.00467726169154048, -0.014188374392688274, -0.036165378987789154, 0.0030262633226811886, -0.01715676859021187, -0.008741782046854496, 0.017905674874782562, 0.007434599567204714, 0.0027998893056064844, -0.027913788333535194, 0.02201785147190094, 0.015373008325695992, 0.016979753971099854, 0.007223543711006641, -0.013820729218423367, 0.0023522472474724054, -0.002493518404662609, -0.012819917872548103, -0.0015361093683168292, 0.0068797278217971325, -0.005504462867975235, 0.01252035517245531, -0.03747256100177765, 0.0033326339907944202, -0.012268451042473316, 0.0007825221982784569, -0.0162989292293787, 0.018532032147049904, 0.023869693279266357, -0.009538345970213413, -0.037145763635635376, 0.002721594413742423, -0.00786351878196001, 0.003356462810188532, -0.012785877101123333, 0.007591188885271549, 0.00021126824140083045, 0.008272012695670128, 0.030174124985933304, 0.008734973147511482, 0.014991747215390205, -0.0037683614064007998, -0.029438834637403488, 0.015073445625603199, 0.0020918322261422873, -0.02222209982573986, -0.01631254516541958, 0.026061946526169777, -0.009797058999538422, 0.011512735858559608, -0.0099196070805192, 0.013636907562613487, 0.017660576850175858, 0.02159574069082737, -0.02534027397632599, -0.0281588863581419, -0.0019352425588294864, -0.020016228780150414, 0.0019829003140330315, 0.001034001586958766, 0.022412730380892754, -0.005395531188696623, 0.001993112498894334, -0.03131790831685066, -0.020765135064721107, 0.0032271062955260277, -0.026511291041970253, -0.0012433551019057631, -0.014324539341032505, 0.01898137666285038, 0.012139094062149525, -0.001991410506889224, -0.025721535086631775, -0.03069155104458332, 0.004765769001096487, -0.02532665804028511, -0.031290676444768906, -0.0005518930265679955, -0.00352666899561882, 0.027600610628724098, 0.0038296356797218323, 0.019240088760852814, -0.01975751668214798, 0.00854434259235859, 0.011301680468022823, 0.008067766204476357, 0.006746966857463121, -0.018246086314320564, -0.024319037795066833, -0.029956260696053505, 0.011124665848910809, 0.023556513711810112, 0.020996615290641785, 0.022834841161966324, -0.0009420903516001999, -0.0061103967018425465, 0.049346134066581726, -0.0215140413492918, -0.019090307876467705, -0.018382251262664795, -0.03336038067936897, -0.013493933714926243, 0.002961584832519293, -0.011730599217116833, 0.0076592713594436646, -0.02456413395702839, 0.011097433045506477, 0.03981459513306618, 0.019376253709197044, 0.0073869419284164906, -0.0068797278217971325, 0.01756526157259941, -0.009504304267466068, 0.0184094849973917, 0.0002972222864627838, 0.03513052314519882, -0.011376570910215378, 0.0043640825897455215, 0.005388722755014896, 0.01771504431962967, -0.0005948700709268451, 0.004912145901471376, -0.018504800274968147, -0.0013752647209912539, -0.03578411415219307, -0.01714315079152584, 0.011805490590631962, -0.010961268097162247, -0.0019386466592550278, 0.025285808369517326, -0.011451461352407932, -0.022317415103316307, 0.0019097116310149431, -0.0036662379279732704, -0.03357824683189392, -0.021827220916748047, -0.010389376431703568, -0.006195499561727047, 0.01439262181520462, -0.013030973263084888, -0.0022926751989871264, 0.016598492860794067, -0.02024770900607109, 0.04763045534491539, 0.00786351878196001, 0.022494429722428322, -0.005855087656527758, -0.02152765914797783, 0.005470421630889177, 0.004438973497599363, -0.005167454946786165, -0.005106180906295776, 0.02497262880206108, 0.025571754202246666, 0.0007242266437970102, 0.017115918919444084, -0.006015080958604813, 0.005912957713007927, -0.03695513308048248, -0.018858827650547028, 0.004970015957951546, -0.012445464730262756, -0.0006880578584969044, -0.00023041640815790743, -0.0011080412659794092, -0.03779935464262962, 0.0030773249454796314, -0.015046212822198868, 0.02468668296933174, -0.0028424407355487347, -0.027859322726726532, -0.030010728165507317, 0.007523106411099434, 0.0176333449780941, 0.019280938431620598, 0.03853464499115944, -0.023052705451846123, -0.03028305619955063, 0.0010101727675646544, -0.01778312586247921, -0.0003529647656250745, 0.004564925562590361, 0.01567257195711136, -0.0008842203533276916, 0.010770637542009354, -0.006113800685852766, 0.018518416211009026, -0.029193738475441933, 0.0049598035402596, -0.005000653211027384, 0.021554891020059586, 0.027546143159270287, 0.01891329325735569, 0.008408177644014359, 0.010654897429049015, 0.019172007218003273, 0.023066321387887, 0.003218596102669835, 0.0062703900039196014, -0.00031615770421922207, -0.005351277533918619, 0.011315297335386276, 0.011648900806903839, 0.005017673596739769, -0.03578411415219307, -0.02271229214966297, -0.02588493376970291, -0.0012203772785142064, -0.004064519889652729, -0.008462644182145596, -0.023692678660154343, -0.0232841856777668, -0.0016961031360551715, -0.015155144967138767, 0.021214479580521584, -0.008707740344107151, 0.019498802721500397, -0.011812298558652401, 0.024114789441227913, -0.03592028096318245, 0.019022226333618164, -0.022889306768774986, 0.017973756417632103, -0.019948147237300873, 0.005579353775829077, 0.017755893990397453, -0.019376253709197044, 0.009034535847604275, -0.014297306537628174, -0.03513052314519882, -0.007924792356789112, 0.01305139809846878, 0.01467856764793396, 0.008857522159814835, -0.0033275277819484472, 0.011553585529327393, -0.0022228907328099012, 0.011703366413712502, -0.024387119337916374, -0.02667468972504139, 0.009048152714967728, 0.00825839675962925, 0.015645338222384453, 0.010627664625644684, -0.01714315079152584, 0.021895304322242737, 0.0040713283233344555, 0.022181250154972076, 0.007693312596529722, -0.029656698927283287, 0.013922853395342827, 0.010348526760935783, -0.0018552456749603152, 0.0007706077885814011, -0.010137471370398998, -0.018586497753858566, -0.01693890430033207, -0.017034219577908516, -0.004037287086248398, 0.011465078219771385, -0.017265699803829193, 0.009790251031517982, 0.00800649169832468, -0.021772755309939384, -0.0002884992281906307, -0.012765452265739441, 0.01587681844830513, -0.0022177845239639282, -0.015223227441310883, -0.03739086166024208, -0.01764696091413498, -0.014406238682568073, 0.03262509033083916, -0.0016739763086661696, -0.011185940355062485, 0.001158252009190619, -0.027546143159270287, -0.03344208002090454, -0.018736280500888824, -0.011601243168115616, 0.0031964692752808332, 0.04496162384748459, 0.02414202317595482, 0.002723296405747533, 0.023597363382577896, -0.012472697533667088, 0.005831258371472359, 0.00022977814660407603, -0.020547272637486458, 0.0038670809008181095, -0.00885071326047182, -0.0039045263547450304, -0.0002948819601442665, -0.015713421627879143, -0.009054960682988167, 0.013146713376045227, -0.01757887937128544, -0.014664951711893082, 0.0032475311309099197, -0.0056270114146173, 0.012690561823546886, -9.781527478480712e-05, 0.0008867733995430171, 0.020002612844109535, -0.011587626300752163, 0.006648247595876455, -0.024822847917675972, -7.223118154797703e-05, -0.008578384295105934, -0.00428578769788146, -0.012193559668958187, -0.02843121439218521, 0.008973262272775173, -0.007999683730304241, 0.016843589022755623, -0.03654664009809494, -0.024332653731107712, -0.029956260696053505, -0.030010728165507317, 0.04760322347283363, -0.01545470766723156, 0.0011420825030654669, 0.036655571311712265, -0.006821857765316963, -0.029166504740715027, -0.021854454651474953, 0.021541275084018707, 0.022848457098007202, -0.026279810816049576, 0.00020945980213582516, -0.024959012866020203, -0.0006616759346798062, -0.006406554952263832, 0.013929661363363266, -0.013847962953150272, 0.0225080456584692, -0.02519049309194088, -0.003598155453801155, -0.016339778900146484, 0.03069155104458332, 0.015413857996463776, 0.014338156208395958, -0.010573199018836021, 0.017265699803829193, -0.004129198379814625, 0.0034960319753736258, -0.023747146129608154, -0.025721535086631775, 0.002323312219232321, 0.007475448772311211, -0.001439942978322506, 0.01764696091413498, -0.018790746107697487, 0.004551309160888195, 0.015631722286343575, -0.01467856764793396, 0.005089160520583391, 0.21252605319023132, -0.013922853395342827, -0.010089813731610775, 0.02998349443078041, -0.017973756417632103, -0.006668672431260347, 0.015468323603272438, 0.0006467829225584865, -0.009136660024523735, 0.003068814752623439, -0.021759139373898506, 0.007999683730304241, 0.0027692520525306463, 0.006709521636366844, 0.014828349463641644, -0.014270073734223843, -0.03287018835544586, 0.001412710058502853, 0.004510459955781698, -0.06258135288953781, 0.016612108796834946, -0.013500742614269257, -0.01252035517245531, -0.020724285393953323, 0.016258079558610916, 0.020506422966718674, 0.0007425238145515323, -0.002656916156411171, 0.027328280732035637, -0.004418548662215471, -0.02581685036420822, -0.020833218470215797, 0.00048083203728310764, 0.0012365467846393585, -0.009565578773617744, 0.016979753971099854, 0.001276545226573944, -0.008503492921590805, 0.015713421627879143, 0.00038147426676005125, -0.01556363981217146, 0.01982559822499752, 0.018790746107697487, 0.009926415979862213, -0.005715518724173307, 0.04395400360226631, -0.009422605857253075, -0.010396184399724007, -0.008469452150166035, 0.0119212307035923, -0.032352760434150696, 0.022058701142668724, 0.048311278223991394, 0.010389376431703568, 0.0005348724662326276, -0.003999841865152121, 0.001045065000653267, 0.005007461179047823, -0.01898137666285038, 0.0019063075305894017, -0.008306054398417473, 0.023243336006999016, 0.002631385112181306, 0.015046212822198868, -0.019172007218003273, 0.0036832585465162992, -0.0020526847802102566, -0.016244463622570038, 0.011410612612962723, -0.02935713529586792, 0.0053274487145245075, -0.013248837552964687, -0.004929166752845049, 0.0026007480919361115, -0.0017939715180546045, -0.018436716869473457, 0.024741148576140404, -0.02941160276532173, 0.008632849901914597, 0.0055316961370408535, 0.00974259339272976, -0.021051080897450447, -0.0010365546913817525, -0.013167138211429119, -0.009095810353755951, -0.013398618437349796, 0.0054193600080907345, -0.010743404738605022, -0.01947156898677349, 0.008483068086206913, -0.01687082089483738, -0.006825261749327183, 0.004156431183218956, -0.0006135927396826446, 0.007849901914596558, -0.0071622696705162525, 0.018314169719815254, -0.002684149192646146, 0.007911176420748234, -0.014733034186065197, -0.0065869735553860664, -0.018368635326623917, 0.030310289934277534, -0.006934193894267082, -0.022630594670772552, -0.01224121730774641, 0.00685930298641324, 0.010763829573988914, -0.0016714232042431831, -0.009000495076179504, 0.02314802072942257, -0.009184317663311958, -0.010375759564340115, -0.019226472824811935, 0.011369762942194939, 0.027205731719732285, -0.026661071926355362, -0.027069566771388054, 0.0012697370257228613, 0.001233993680216372, 0.0013539890060201287, -0.01854564994573593, -0.010260019451379776, 0.000638272613286972, 0.009837908670306206, -0.003856868715956807, -0.03796275332570076, 0.014746650122106075, 0.013350960798561573, -0.010185129009187222, 0.031290676444768906, -0.01941710337996483, -0.005984444171190262, 0.002825420117005706, -0.025367505848407745, 0.04354551061987877, 0.0005706156953237951, -0.022957390174269676, 0.023556513711810112, 0.002398202894255519, -0.00047317275311797857, -0.0024424565490335226, 0.00044934393372386694, 0.0036015596706420183, 0.011805490590631962, -0.015849584713578224, 0.013507550582289696, -0.009184317663311958, -0.008306054398417473, -0.022276565432548523, -0.034041207283735275, 0.004585350397974253, -0.006508678663522005, -0.0025411760434508324, 0.015495557337999344, -0.006842282600700855, -0.02301185578107834, -0.0357024185359478, 0.004224513657391071, 0.03126344457268715, -0.01870904676616192, 0.02223571576178074, 0.022807607427239418, -0.008278821595013142, -0.015536406077444553, -0.013221604749560356, -0.17363739013671875, 0.02441435307264328, 0.008163081482052803, -0.007924792356789112, 0.022113166749477386, 0.025707919150590897, 0.02736913040280342, -0.011737408116459846, -0.004391315393149853, -0.015958517789840698, 0.016353394836187363, -0.003014348680153489, -0.027423596009612083, -0.008864330127835274, -0.010934035293757915, 0.007965642027556896, 0.0004761513555422425, 0.016666574403643608, 0.029057573527097702, 0.012956082820892334, -0.009974073618650436, 0.0012144200736656785, 0.017129534855484962, 0.0024101173039525747, 0.006474637426435947, 0.010804679244756699, -0.005739347543567419, 0.021990619599819183, 0.004561521578580141, -0.013459892943501472, -0.02243996225297451, 0.005072139669209719, -0.010484691709280014, -0.011410612612962723, 0.027328280732035637, 0.01559087261557579, -0.013364577665925026, 0.005718922708183527, -0.011567201465368271, 0.013854770921170712, 0.0072643933817744255, -0.000673590344376862, 0.012860767543315887, 0.01015789620578289, -0.007305242586880922, 0.020588122308254242, -0.009987689554691315, -0.0006118906894698739, 0.019321788102388382, -0.018790746107697487, 0.010743404738605022, 0.0019148178398609161, 0.018804362043738365, 0.000557424733415246, 0.04008692502975464, 0.007829477079212666, 0.020846834406256676, 0.008033724501729012, -0.011996121145784855, -0.021786371245980263, 0.007543531246483326, -0.001834820955991745, 0.023733528330922127, -0.010620856657624245, -0.016843589022755623, -0.005065331235527992, -0.016911670565605164, 0.015577255748212337, -0.03956949710845947, 0.01316033024340868, -0.0001039320559357293, 0.018613731488585472, 0.03564795106649399, -0.009586003609001637, 0.0003901973250322044, -0.0023828845005482435, -0.008081382140517235, 0.016993369907140732, 0.014610485173761845, -0.009266016073524952, -0.020343024283647537, 0.01968943327665329, -0.025136025622487068, -0.010525540448725224, 0.014283689670264721, 0.01911754161119461, -0.002187147503718734, -0.023951392620801926, -0.022671442478895187, -0.009422605857253075, 0.013670948334038258, -0.028540147468447685, 0.006518891081213951, -0.02392415888607502, 0.013929661363363266, 0.010620856657624245, 0.002229698933660984, -0.03033752366900444, 0.003305401187390089, -0.006369109731167555, 0.008224355056881905, -0.02623896114528179, -0.01898137666285038, 0.038915906101465225, 0.03409567102789879, 0.0008569873753003776, -0.001250163302756846, -0.0005769984563812613, 0.025490054860711098, 0.0032168938778340816, -0.020901300013065338, 0.0065052746795117855, 0.01503259688615799, 0.008843905292451382, 0.0007672036881558597, 0.003039879724383354, -0.006672076415270567, -0.024182872846722603, -0.006215924397110939, -0.014950897544622421, 0.07118696719408035, -0.0038228274788707495, -0.0028662695549428463, 0.010995309799909592, -0.00014627080236095935, -0.044634830206632614, -0.1179732009768486, 0.014419854618608952, 0.011431037448346615, 0.02377437800168991, -0.0017837592167779803, 0.007407366298139095, -0.010144279338419437, 0.03006519377231598, 0.013385002501308918, 0.0032543393317610025, -0.01962135173380375, -0.050626080483198166, -0.0003329655446577817, -0.010811487212777138, 0.011798681691288948, -0.006491657812148333, -0.0002667979570105672, -0.007883943617343903, 0.009960456751286983, 0.03041922114789486, 0.009313673712313175, -0.02145957574248314, 0.021064698696136475, -0.03183533623814583, 0.011478695087134838, -0.0014578145928680897, -0.023556513711810112, -0.005851683206856251, 0.017456330358982086, 0.014201991260051727, -0.01678912341594696, -0.004469610285013914, 0.00871454831212759, 0.0011701664188876748, 0.0057019018568098545, -0.0041836644522845745, -0.027546143159270287, -0.007938409224152565, 0.01572703756392002, -0.023379500955343246, 0.0026909573934972286, -0.01277226023375988, 0.02024770900607109, -0.024863697588443756, 0.014133908785879612, -0.005861895624548197, -0.008796247653663158, 0.01727931573987007, 0.008530726656317711, -0.030391989275813103, -0.013854770921170712, 0.01410667598247528, -0.03180810436606407, 0.0005952955689281225, 0.030446454882621765, -0.01072978787124157, 0.028703544288873672, 0.02166382409632206, -0.016189998015761375, -0.007938409224152565, -0.023937776684761047, 0.008911987766623497, -0.014433471485972404, 0.022140400484204292, 0.0162989292293787, -0.013242029584944248, -0.009449838660657406, -0.025490054860711098, 0.024509668350219727, -0.00400324584916234, -0.017197616398334503, 0.00039892038330435753, -0.02554452046751976, 0.013527975417673588, -0.02630704455077648, 0.016680190339684486, -0.011846339330077171, -0.0028526531532406807, 0.014338156208395958, 0.0038398480974137783, -0.010893185622990131, -0.016639340668916702, 0.007938409224152565, 0.015958517789840698, -0.0005387020646594465, -0.0037104913499206305, 0.016734657809138298, 0.00596401933580637, 0.0107570206746459, -0.02392415888607502, 0.0036321966908872128, 0.019771132618188858, -0.009654086083173752, -0.02243996225297451, 0.015100679360330105, 0.032352760434150696, 0.008408177644014359, -0.003836443880572915, -0.013793496415019035, -0.002078215591609478, -0.014964514411985874, 0.0019573692698031664, -0.05375787243247032, 0.030310289934277534, 0.0027743582613766193, 0.0037479368038475513, 0.0009744295384734869, -0.006590377539396286, 0.010532349348068237, -0.02414202317595482, -0.027559760957956314, 0.005759771913290024, -0.0010212361812591553, 0.021268945187330246, -0.012084628455340862, -0.008387752808630466, -0.010716171935200691, 0.010144279338419437, 0.003317315597087145, -0.015495557337999344, -0.0016978051280602813, -0.009681318886578083, 0.01015789620578289, -0.007502682041376829, 0.017960140481591225, -0.005562332924455404, -0.019648583605885506, -0.0005255111027508974, 0.020642587915062904, 0.0119212307035923, -0.00019424763740971684, -0.007938409224152565, 0.017184000462293625, -0.01849118247628212, -0.0006182733923196793, -0.004524076357483864, 0.010947652161121368, 0.030228590592741966, -0.02441435307264328, 0.008809864521026611, -0.005167454946786165, 0.05637223646044731, 0.005592970177531242, 0.010035347193479538, 0.009163892827928066, -0.036247074604034424, 0.021718289703130722, 0.03338761627674103, -0.020029844716191292, -0.0002361608640057966, 0.030936647206544876, -0.03104558028280735, 0.012779069133102894, 0.024441586807370186, -0.007577572483569384, -0.013786688446998596, -0.01911754161119461, -0.024754764512181282, 0.022698676213622093, 0.0018416292732581496, -0.0028271221090108156, -0.011097433045506477, 0.021350644528865814, -0.011431037448346615, -0.005919765681028366, -0.012173134833574295, 0.030582619830965996, -0.0244007371366024, 0.0013080333592370152, -0.0006629524868912995, -0.02186807058751583, -0.02561260387301445, 0.0060865674167871475, -0.0044355690479278564, 0.007679696194827557, 0.004507055506110191, 0.00959962047636509, 0.041094545274972916, 0.016339778900146484, 0.005388722755014896, -0.02802272140979767, 0.02109193056821823, -0.01128806360065937, -0.0005238090525381267, -0.037853822112083435, 0.014174758456647396, 0.019144773483276367, -0.020152393728494644, -0.009708551689982414, -0.0049325707368552685, -0.004963207989931107, -0.001483345520682633, 0.007257584948092699, -0.009014111012220383, 0.0018143962370231748, -0.007945217192173004, 0.017946524545550346, 0.018872445449233055, -0.006127417087554932, -0.005422763992100954, 0.0157406534999609, 0.028703544288873672, -0.008020108565688133, 0.009395373053848743, -0.004428761079907417, -0.022058701142668724, 0.0017131236381828785, 0.009395373053848743, -0.014324539341032505, -0.027137650176882744, -0.006175074726343155, 0.023515665903687477, -0.002440754557028413, 0.019063076004385948, 0.01962135173380375, 0.023188870400190353, -0.01481473259627819, 0.019063076004385948, -0.003380291862413287, -0.003523264778777957, -0.005902745295315981, 0.04196599870920181, 0.020166009664535522, 0.029520533978939056, 0.014229224063456059, -0.002592237899079919, 0.01650317758321762, 0.02941160276532173, 0.019988996908068657, 0.007999683730304241, -0.005861895624548197, 0.008449027314782143, 0.014283689670264721, -0.00557594932615757, -0.054329764097929, 0.009300057776272297, -0.0021514042746275663, -0.03913377225399017, 0.007652462925761938, -0.0014135610545054078, -0.026647455990314484, 0.027260197326540947, 0.0178512092679739, -0.0010467671090736985, 0.003029667306691408, 0.015332159586250782, 0.027995487675070763, 0.020097928121685982, 0.0029020127840340137, 0.005351277533918619, -0.025163259357213974, -2.2688595890940633e-06, -0.018668197095394135, 0.03684620186686516, -0.026021098718047142, -0.0034960319753736258, 0.013207987882196903, -0.01234334148466587, 0.03360547870397568, -0.019880063831806183, -0.017619729042053223, 0.019008608534932137, 0.00391814298927784, 0.020220477133989334, 0.00352666899561882, 0.006260177586227655, 0.0005850832094438374, 0.006124013103544712, 0.004350466188043356, -0.004854275844991207, -0.01700698584318161, 0.007849901914596558, 0.020370258018374443, -0.010219169780611992, -0.0031096641905605793, 0.02370629645884037, -0.007461832370609045, -0.001205909764394164, -0.011022542603313923, 0.029329903423786163, 0.0037683614064007998, -0.014651334844529629, 0.0070737628266215324, -0.022494429722428322, -0.00624656118452549, 0.014161141589283943, -0.0020424723625183105, -0.010246402584016323, -0.007257584948092699, -0.02807718701660633], "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba": [0.0037556050810962915, -0.017704511061310768, -0.005496255122125149, 0.016119638457894325, -0.005994067527353764, 0.036628153175115585, -0.015266246162354946, -0.022960325703024864, -0.017636781558394432, -0.010139117948710918, 0.021118082106113434, 0.01495469082146883, 0.03207672759890556, -0.0014621121808886528, 0.00020943254639860243, 0.0036303054075688124, 0.03776601329445839, 0.004466765560209751, 0.039201878011226654, -0.00848651584237814, -0.00030859289108775556, 0.006329328753054142, 0.0014155481476336718, 0.036330144852399826, -0.014141935855150223, 0.0372241735458374, 0.018801730126142502, -0.015266246162354946, 0.009028352797031403, -0.016742751002311707, -0.015049511566758156, -0.0021571870893239975, -0.000913502648472786, -0.01793479174375534, -0.031236881390213966, -0.006769570987671614, -0.0019133605528622866, -0.012658657506108284, 0.026698999106884003, -0.004497244022786617, 0.012177777476608753, 0.0038809047546237707, -0.006051637697964907, 0.021118082106113434, -0.025994611904025078, 0.012286145240068436, -0.014710864052176476, -0.023583438247442245, -0.04063774645328522, 0.0059094056487083435, 0.014277394860982895, 0.007504437118768692, -0.027471115812659264, 0.011642714031040668, -0.004040069412440062, -0.011371796019375324, 0.017298134043812752, 0.02588624507188797, -0.023149969056248665, 0.02836514636874199, 0.013566234149038792, -0.0083171920850873, 0.0093534542247653, 0.006911803502589464, -0.03698034957051277, -0.02172764763236046, -0.009604053571820259, -0.021592188626527786, -0.00048003336996771395, 0.0005096650565974414, 0.04193815216422081, 0.006271758582442999, -0.015523619018495083, -0.0005219410522840917, 0.020820071920752525, -0.0392831526696682, -0.03530065715312958, -0.005872154142707586, -0.0242471881210804, -0.00011270624963799492, -0.004260190296918154, -0.026685453951358795, 0.006149845663458109, 0.025330862030386925, 0.03597795218229294, -0.010003658011555672, 0.00011344704398652539, 0.027322111651301384, -0.010748683474957943, -0.02128063328564167, 0.02137545496225357, 0.015645531937479973, 0.003440662520006299, 0.0233125202357769, 0.0037217403296381235, 0.022824866697192192, -0.021348362788558006, 0.034731727093458176, 0.0006176090682856739, -0.013613644987344742, -0.035029735416173935, -0.02787749283015728, -0.01594354212284088, -0.0023282042238861322, -0.014941144734621048, 0.02133481577038765, -0.004165369085967541, -0.0013029477559030056, 0.014318032190203667, -0.006359807215631008, -0.027511753141880035, 0.02298741787672043, 0.0016128105344250798, -0.03952698037028313, -0.009834334254264832, -0.022797776386141777, 0.026793820783495903, -0.018923643976449966, -0.010633543133735657, -0.021158719435334206, 0.004178914707154036, 0.002853108337149024, 0.009455048479139805, -0.026157163083553314, 0.002804004354402423, -0.003914769738912582, -0.0010057842591777444, -0.03280820697546005, -0.0012987146619707346, -0.01051840279251337, 0.018625633791089058, -0.0008504294673912227, 0.0060143861919641495, -0.007843084633350372, 0.0037996291648596525, 0.0001266754698008299, -0.025032851845026016, -0.010477765463292599, -0.005794265307486057, -0.029557187110185623, 0.023258335888385773, 0.0202105063945055, -0.006745866034179926, -0.031832899898290634, -0.02520894818007946, 0.018056705594062805, 0.011493708938360214, 0.014236756600439548, -0.018869459629058838, 0.007829539477825165, 0.006844073534011841, -0.0011895006755366921, 0.009224768728017807, -0.02152445912361145, 0.02064397558569908, -0.006183710414916277, 0.0029072919860482216, 0.004947645589709282, 0.007043875753879547, -0.027796218171715736, 0.013810060918331146, 0.03660106286406517, 0.011195698752999306, 0.0010354159167036414, 0.01008493360131979, 0.025953974574804306, 0.007084513548761606, -0.024558745324611664, -0.02094198577105999, -0.014710864052176476, 0.012069410644471645, 0.027159560471773148, -0.031480707228183746, 0.014087751507759094, -0.024938030168414116, 0.010640316642820835, 0.02947591245174408, 0.025073489174246788, -0.01938420534133911, 0.0008720182813704014, -0.03630305454134941, -0.020278235897421837, 0.019844766706228256, 0.02535795420408249, -0.03516519442200661, -0.0071386974304914474, -0.020007316023111343, -0.0038673589006066322, 0.022134026512503624, -0.0036472377832978964, 0.008344284258782864, 0.021592188626527786, 0.008222370408475399, -0.0010565813863649964, -0.6393672227859497, -0.029773922637104988, -0.019235199317336082, -0.0083171920850873, 0.0026025089900940657, 0.009170584380626678, 0.01381683349609375, -0.001250457251444459, -0.007165789138525724, 0.003728513140231371, -0.021565096452832222, 0.035083919763565063, 0.002917451551184058, -0.019262291491031647, -0.017609689384698868, -0.006654431112110615, 0.00048172660171985626, -0.014196119271218777, -0.013410456478595734, -0.006234507542103529, 0.00015207406249828637, -0.006248053628951311, -0.0013596712378785014, 0.009814015589654446, -0.013281770050525665, -0.0009058830910362303, 0.017541959881782532, 0.006877938285470009, -0.0007335959817282856, 0.028392238542437553, -0.013247905299067497, 0.04919876530766487, 0.019208107143640518, 0.009488913230597973, 0.04589356109499931, 0.006654431112110615, -0.002675318159162998, 0.0264145340770483, 0.0020911507308483124, 0.01731167919933796, -0.02458583563566208, -0.0332687683403492, 0.024314917623996735, 0.005560598336160183, 0.015618440695106983, -0.013227586634457111, -0.0028886664658784866, -0.014155481941998005, 0.005079718306660652, 0.016024818643927574, 0.018449537456035614, 0.006735706236213446, -0.020522061735391617, 0.0014934372156858444, -0.008337510749697685, -0.0058416761457920074, 0.04126085713505745, -0.008723569102585316, 0.0011945804581046104, 0.003907996695488691, 0.008459423668682575, 0.009570188820362091, 0.009935928508639336, -0.003525324398651719, -0.008635520935058594, 0.030938871204853058, 0.003687875345349312, 0.024761933833360672, 0.013701693154871464, -0.029746830463409424, -0.0009913917165249586, 0.009272178635001183, 0.002744741039350629, -0.011195698752999306, 0.015537165105342865, 0.001106531941331923, 0.01924874633550644, -0.002499221358448267, 0.01804315857589245, 0.004480311647057533, 0.010200073942542076, -0.03137233853340149, -0.030017748475074768, -0.019451934844255447, 0.020860709249973297, -0.02308223955333233, -0.02045433223247528, 0.009685329161584377, -0.006996465381234884, 0.003449128707870841, -0.006055023986846209, 0.010498084127902985, 0.0034135705791413784, 0.00022964559320826083, 0.04732942953705788, 0.021985020488500595, -0.007402842864394188, 0.006607020273804665, 0.015537165105342865, -0.018937189131975174, -0.004456606227904558, -0.007003238424658775, 0.004256804008036852, -0.0064986529760062695, -0.0064884936437010765, -0.004063774365931749, -0.03917478770017624, -0.037549275904893875, 0.048548560589551926, -0.010579359717667103, 0.01403356809169054, -0.008066592738032341, -0.00039431313052773476, -0.01403356809169054, 0.0019032011041417718, -0.020589791238307953, 0.00984110776335001, 0.006881325040012598, 0.02122644893825054, -0.00896739587187767, 0.014196119271218777, -0.009874972514808178, 0.013417229056358337, -0.029773922637104988, 0.021212903782725334, 0.04033973440527916, 0.0015442343428730965, 0.02045433223247528, -0.02656354010105133, -0.010938326828181744, -0.0007018477190285921, -0.014020022004842758, 0.009583734907209873, 0.0029496231582015753, 0.019275836646556854, -0.01750132255256176, 0.00908930879086256, 0.0005376035114750266, 0.025859152898192406, -0.004852824378758669, -0.004693659488111734, 0.006261599250137806, 0.009536324068903923, 0.007219973020255566, -0.015306884422898293, -0.03481300175189972, -0.013302088715136051, 0.006187096703797579, -0.02850060537457466, 0.02214757166802883, -0.017826424911618233, -0.005814583972096443, -0.006048251409083605, 0.012408058159053326, -0.00018636215827427804, -0.013227586634457111, -0.007937906309962273, 0.0017508096061646938, 0.007937906309962273, -0.0028717340901494026, 0.02094198577105999, 0.023935632780194283, -0.01393874641507864, 0.009001260623335838, 0.019411297515034676, -0.01001043152064085, -0.010369398631155491, 0.021118082106113434, 0.010166209191083908, -0.027796218171715736, 0.006793276406824589, -0.03142652288079262, -0.005093263927847147, 0.03814529627561569, -0.03895805403590202, 0.0024551970418542624, -0.009610827080905437, -0.008479743264615536, -0.008418786339461803, 0.01667502149939537, -0.011879767291247845, 0.012665431015193462, 0.00498151034116745, -0.018693363294005394, 0.03611341118812561, 0.007836312055587769, -0.009035125374794006, 0.0034880731254816055, 0.02142963744699955, 0.028446422889828682, 0.014439946040511131, 0.01584872044622898, -0.002348523121327162, 0.005533506628125906, 0.008073365315794945, -0.007741490378975868, 0.009597280994057655, 0.01148693636059761, 0.011961042881011963, 0.012584155425429344, 0.011737535707652569, 0.012211642228066921, 0.03925606235861778, -0.00013514167221728712, 0.0006768724415451288, -0.021985020488500595, -0.01158175803720951, -0.0009753059130162001, 0.02492448501288891, -0.01442639995366335, -0.014047114178538322, -0.0059805214405059814, -0.0014240143354982138, -0.030126115307211876, 0.007247064728289843, 0.019275836646556854, 0.025872698053717613, 0.0005414133192971349, 0.007633123081177473, 0.0018642565701156855, -0.0006485107005573809, -0.012983759865164757, -0.01529333833605051, -0.01565907895565033, -0.017853517085313797, 0.009671783074736595, 0.0011691817780956626, 0.0066374982707202435, 0.01286861952394247, -0.004893461707979441, 0.013708466663956642, -0.005103423725813627, 0.011114423163235188, 0.006248053628951311, 0.019086195155978203, -0.0006078729638829827, 0.026211345568299294, -0.02516831085085869, 0.030261574313044548, -0.025222495198249817, -0.003962180111557245, 0.006129526533186436, 0.004514176398515701, -0.023393794894218445, -0.008337510749697685, 0.016512470319867134, 0.021592188626527786, 0.011310839094221592, 0.023773081600666046, 0.02287905104458332, -0.02167346514761448, 0.004923940170556307, -0.00516099389642477, 0.0033289087004959583, 0.030044840648770332, -0.03009902313351631, -0.004890075419098139, 0.010559041053056717, 0.001619583461433649, 0.015063057653605938, 0.004260190296918154, 0.014114843681454659, 0.006840687245130539, 0.007626350503414869, 0.04987606033682823, 0.008080138824880123, -0.00913671962916851, 0.02103680558502674, -0.031778715550899506, -0.040881574153900146, -0.016796935349702835, -0.030613768845796585, 0.0026346805971115828, -0.0015586268855258822, 0.02516831085085869, -0.008899666368961334, 0.009719193913042545, -0.0030935483518987894, 0.025249585509300232, -0.00045124831376597285, -0.016932394355535507, -0.028879892081022263, 0.029313361272215843, -0.004165369085967541, -0.011249883100390434, -0.01605190895497799, -0.006244666874408722, -0.012516425922513008, -0.02031887322664261, 0.035219378769397736, -0.028663156554102898, 0.016512470319867134, 0.0058416761457920074, -0.005831516347825527, -0.01381683349609375, 0.009116400964558125, 0.033864788711071014, -0.030017748475074768, 0.029882289469242096, 0.01529333833605051, 0.01425030268728733, 0.020386602729558945, -0.02710537612438202, 0.0071996538899838924, 0.0022841799072921276, -0.008554245345294476, -0.01876109279692173, -0.006766184698790312, 0.002179199131205678, -0.005706216674298048, -0.015780990943312645, -0.0336480550467968, -0.017731603235006332, -0.011568211950361729, 0.006996465381234884, 0.006725546903908253, -0.019560301676392555, 0.02327188290655613, 0.01652601733803749, -0.01725749671459198, 0.001424861024133861, -0.007890495471656322, -0.03302494063973427, 0.0020335805602371693, 0.1061999723315239, 0.014656680636107922, -0.01934356614947319, 0.007497664075344801, -0.00801918189972639, 0.006075343117117882, 0.006478333845734596, -0.01885591447353363, 0.03297075629234314, -0.01603836379945278, 0.02724083513021469, -0.011371796019375324, 0.004470151849091053, 0.008229143917560577, 0.006529130972921848, -0.009224768728017807, -0.011067013256251812, -0.01779933273792267, -0.006816981825977564, -0.012069410644471645, -0.017460685223340988, -0.0013909961562603712, 0.013349499553442001, 0.005729922093451023, -0.03643851354718208, -0.008120776154100895, 0.029828105121850967, -0.01391165517270565, 0.015401706099510193, -0.00879807211458683, -0.015008874237537384, 0.018544357270002365, 0.02394917793571949, 0.027565937489271164, -0.015929996967315674, -0.005828130058944225, 0.005790879018604755, 0.016200914978981018, 0.008716796524822712, 0.011879767291247845, 0.011412433348596096, 0.0032916574273258448, 0.008899666368961334, -0.0015459276037290692, 0.007964998483657837, 0.003758991602808237, -0.01529333833605051, 0.008357829414308071, -0.024057544767856598, 0.004172142129391432, 0.04272381588816643, 0.01958739385008812, -0.022946780547499657, -0.020251143723726273, 0.02142963744699955, -0.004212779458612204, -0.028717340901494026, -0.009312816895544529, -0.00407393416389823, 0.046218663454055786, -0.0053032259456813335, -0.021158719435334206, -0.014453491196036339, -0.01083673257380724, 0.0007162402616813779, -0.020332418382167816, -0.03297075629234314, -0.015333975665271282, -0.015455889515578747, 0.009028352797031403, -0.005861994810402393, -0.00984110776335001, -0.030667951330542564, -0.0019319861894473433, -0.008005635812878609, 0.0072673833929002285, 0.01778578758239746, -0.026726091280579567, -0.006403831299394369, -0.009732739999890327, -0.0038301076274365187, -0.027701396495103836, -0.006244666874408722, -0.01209650281816721, -0.009935928508639336, 0.011988135054707527, 0.005746854469180107, 0.002026807516813278, -0.026482263579964638, 0.015482980757951736, 0.018883006647229195, 0.013823607005178928, -0.0017389568965882063, -0.020522061735391617, 0.00013704656157642603, 0.0065596094354987144, 0.0071996538899838924, -0.00801918189972639, 0.00019567497656680644, -0.0029716352000832558, 0.01330886222422123, -0.032266370952129364, 0.0025026078801602125, -0.026834458112716675, -4.791338506038301e-05, -0.010890915989875793, 0.005797651596367359, 0.021687010303139687, -0.015835175290703773, -0.03180580958724022, 0.00010244098666589707, -0.0065833148546516895, 0.013274996541440487, -0.0072335186414420605, 0.0014257075963541865, 0.011276974342763424, 0.02182246930897236, 0.02361053042113781, -3.219800419174135e-05, 0.014534766785800457, 0.003012272994965315, -0.01485986914485693, 0.013749103993177414, -0.002077604876831174, -0.02701055444777012, -0.03126397356390953, 0.020183414220809937, -0.019939586520195007, 0.017569052055478096, 0.004388876724988222, 0.02098262310028076, 0.017907699570059776, 0.024518106132745743, -0.024761933833360672, -0.031101422384381294, 0.001498516881838441, -0.024748386815190315, 0.00481218658387661, -0.005354023072868586, 0.01148693636059761, -0.012611247599124908, -0.004727524239569902, -0.023624075576663017, -0.029801012948155403, -0.012279372662305832, -0.02336670458316803, -0.0047850944101810455, -0.002802311209961772, 0.019113287329673767, -0.0033306018449366093, -0.011981362476944923, -0.034298256039619446, -0.03242892026901245, -0.0011759548215195537, -0.030424125492572784, -0.03375642001628876, 0.006055023986846209, -0.018774637952446938, 0.032510194927453995, 0.00011471696780063212, 0.030424125492572784, -0.02167346514761448, 0.013796514831483364, 0.010267803445458412, 0.005631714127957821, 0.013843925669789314, -0.008716796524822712, -0.013457867316901684, -0.02069815807044506, 0.006989692337810993, 0.007477345410734415, 0.021118082106113434, 0.014561858959496021, -6.624799425480887e-05, 0.006603633519262075, 0.049957334995269775, -0.023773081600666046, -0.027647214010357857, -0.019411297515034676, -0.030071932822465897, -0.016688568517565727, 0.0077076256275177, -0.01204909197986126, 0.0018388580065220594, -0.022526856511831284, 0.014209665358066559, 0.04180269315838814, 0.019993770867586136, -0.006000840570777655, -0.001952305086888373, 0.01812443509697914, -0.004395649302750826, 0.009942702017724514, -0.0006806822493672371, 0.02860897220671177, -0.011595303192734718, 0.003752218559384346, 0.010410035960376263, 0.012408058159053326, -0.00974628608673811, 0.0058586085215210915, -0.01580808311700821, -0.0016415956197306514, -0.030126115307211876, -0.02084716409444809, 0.005848448723554611, -0.013302088715136051, -0.005059399176388979, 0.03299785032868385, -0.005814583972096443, -0.012157458811998367, -0.0037556050810962915, -0.009495686739683151, -0.04345529526472092, -0.0288527999073267, -0.004815572872757912, -0.010572587139904499, 0.01847662776708603, -0.01051840279251337, -0.004829118959605694, 0.009956248104572296, -0.01156143844127655, 0.05575498566031456, 0.018964281305670738, 0.029773922637104988, 0.0018066863995045424, -0.01687821000814438, -0.00024573138216510415, 0.0017372636357322335, -0.0033085898030549288, -0.012624792754650116, 0.021592188626527786, 0.027593029662966728, 0.0019116672920063138, 0.0121235940605402, 0.001827005296945572, 0.0034880731254816055, -0.04039391875267029, -0.031291063874959946, -0.008059819228947163, -0.01088414341211319, -0.01947902701795101, -0.005648646503686905, -0.004483697935938835, -0.04464733600616455, 0.0006912649841979146, -0.011520801112055779, 0.02113162726163864, -0.0014104684814810753, -0.01584872044622898, -0.031155604869127274, -0.0041382769122719765, 0.020874256268143654, 0.011507255025207996, 0.03912060335278511, -0.011405660770833492, -0.03771182894706726, -0.002155493712052703, -0.020440787076950073, 0.006251439917832613, -0.015564256347715855, 0.01347818598151207, -0.016255097463726997, 0.003996044863015413, -0.0022994191385805607, 0.013288542628288269, -0.018869459629058838, 0.004402422346174717, -0.00923154130578041, 0.019668668508529663, 0.02724083513021469, 0.017094945535063744, 0.0022079842165112495, 0.021009715273976326, 0.007592485751956701, 0.01977703720331192, -0.00407054740935564, 0.0009194290032610297, -0.013681374490261078, -0.000988005194813013, 0.020332418382167816, 0.015794537961483, 0.0070777409709990025, -0.019451934844255447, -0.02148382179439068, -0.024843208491802216, 0.0012436843244358897, -0.010667407885193825, -0.004124731291085482, -0.04033973440527916, -0.018110888078808784, -0.005519960541278124, -0.01260447409003973, 0.012841527350246906, -0.004483697935938835, 0.008811618201434612, -0.008303645998239517, 0.025249585509300232, -0.02336670458316803, 0.02757948264479637, -0.009685329161584377, 0.013363045640289783, -0.021876653656363487, -0.005872154142707586, 0.010559041053056717, -0.016024818643927574, 0.00576717359945178, -0.011216017417609692, -0.027430478483438492, 0.010118798352777958, 0.029150810092687607, 0.02584560588002205, 0.005770559888333082, 0.0011099184630438685, -0.005994067527353764, 0.0033475342206656933, 0.012441922910511494, -0.0154152512550354, -0.026644814759492874, 0.016932394355535507, -0.00041039890493266284, 0.003306896658614278, -0.0012809355976060033, -0.01731167919933796, 0.02549341320991516, 0.004446446895599365, 0.018192164599895477, 0.007931133732199669, -0.02511412650346756, 0.0006277685170061886, 0.008208824321627617, -0.0066273389384150505, 0.005018761847168207, -0.00836460292339325, -0.016471832990646362, -0.021592188626527786, -0.013112446293234825, 0.009367000311613083, 0.003779310267418623, -0.02539859153330326, 0.0025043010246008635, 0.020047955214977264, -0.018056705594062805, -0.022418489679694176, 0.004879916086792946, 0.004913780838251114, 0.003952020779252052, -0.010809640400111675, -0.044809889048337936, -0.017975429072976112, -0.016566654667258263, 0.03814529627561569, 0.01658019982278347, 0.00033399148378521204, -0.005526733584702015, -0.028690248727798462, -0.029638461768627167, -0.008398467674851418, -0.002719342475757003, 0.005448844283819199, 0.035083919763565063, 0.017474230378866196, -0.0008009022567421198, 0.027471115812659264, -0.014927598647773266, 0.0014240143354982138, -0.01425030268728733, -0.005628327839076519, 0.005685898009687662, 0.009339909069240093, -0.015604894608259201, 0.00775503646582365, -0.010139117948710918, -0.002649919595569372, 0.01846308261156082, -0.007829539477825165, -0.005489482078701258, -0.0008127549081109464, -0.011967816390097141, 0.010579359717667103, 0.000572314893361181, -0.005414979532361031, 0.016498925164341927, 0.009773378260433674, -0.0035693487152457237, -0.030722135677933693, -0.003178210463374853, -0.011940724216401577, -0.013992930762469769, -0.014778593555092812, -0.023718897253274918, 0.007409615442156792, -0.00753830187022686, 0.009773378260433674, -0.031914178282022476, -0.02419300563633442, -0.024518106132745743, -0.026346804574131966, 0.05727212876081467, -0.010802867822349072, 0.012943122535943985, 0.032510194927453995, 0.0019336794503033161, -0.027511753141880035, -0.017677418887615204, 0.02928626909852028, 0.020833617076277733, -0.02879861555993557, -0.003080002497881651, -0.00610920786857605, 0.017921246588230133, -0.005255815107375383, 0.0011014522751793265, -0.007680533919483423, 0.007531528826802969, -0.017135582864284515, -0.004697046242654324, -0.01609254814684391, 0.030667951330542564, 0.012631566263735294, 0.012685749679803848, -0.0005803577951155603, 0.019614486023783684, -0.015428797341883183, 0.0008648220100440085, -0.02113162726163864, -0.022662315517663956, -0.004202620126307011, -0.007341885939240456, 0.0015383079880848527, 0.023678259924054146, -0.01996667869389057, -0.009055444039404392, 0.018205709755420685, -0.0313994325697422, 0.012076183222234249, 0.2097991406917572, -0.01823280192911625, -0.0039824992418289185, 0.013342726975679398, -0.022120479494333267, -0.006251439917832613, 0.025195403024554253, -0.0026905573904514313, -0.005120356101542711, 0.002338363556191325, -0.023596985265612602, 0.01808379776775837, 0.0015577803133055568, 0.008066592738032341, 0.009319589473307133, -0.005828130058944225, -0.03443371504545212, 0.00010598620428936556, -0.006634111981838942, -0.0620402917265892, 0.008974168449640274, -0.01778578758239746, -0.005746854469180107, -0.015523619018495083, 0.023014510050415993, 0.011249883100390434, -0.013837152160704136, 0.002070831833407283, 0.02113162726163864, -0.0015315350610762835, -0.021849561482667923, -0.011784946545958519, -0.008696477860212326, -0.013661055825650692, -0.011378568597137928, -0.003364466829225421, 0.004791867453604937, -0.00047664690646342933, 0.009834334254264832, 0.0046835001558065414, -0.023041602224111557, 0.014534766785800457, 0.022215301170945168, -0.014223211444914341, -0.014494129456579685, 0.04223616421222687, -0.008947077207267284, -0.019885404035449028, -0.013112446293234825, -0.0030664566438645124, -0.039147693663835526, 0.024897392839193344, 0.034731727093458176, 0.008168186992406845, -0.0013639043318107724, -0.003298430470749736, 0.0059534297324717045, 0.008263008669018745, -0.028717340901494026, 0.0011903473641723394, -0.014616042375564575, 0.007978544570505619, -0.006217575166374445, 0.0029987269081175327, -0.015645531937479973, 0.008249462582170963, -0.012665431015193462, -0.015862267464399338, 0.01928938366472721, -0.03223927691578865, 0.0036811025347560644, -0.020102137699723244, -0.0020589791238307953, -0.0012758559314534068, -0.0022232234477996826, -0.011547892354428768, 0.021687010303139687, -0.026021704077720642, 0.017772240564227104, 0.0018473241943866014, 0.009827561676502228, -0.0230280552059412, 0.009143493138253689, -0.0006239587091840804, -0.010071388445794582, -0.008080138824880123, 0.014819230884313583, -0.009597280994057655, -0.01972285285592079, 0.015875812619924545, -0.02564241737127304, -0.005215177312493324, 0.010308441706001759, -0.009807243011891842, 0.018151527270674706, 0.008276553824543953, 0.018964281305670738, 0.005547052249312401, 0.020725250244140625, -0.019424842670559883, -0.014616042375564575, -0.01393874641507864, 0.03809111565351486, -0.0010100173531100154, -0.011480162851512432, -0.011818811297416687, -0.002590656280517578, 0.011879767291247845, 0.013789741322398186, -0.026157163083553314, 0.018354715779423714, -0.0031663577537983656, -0.010951872915029526, -0.01412838976830244, 0.023867903277277946, 0.033431317657232285, -0.027850402519106865, -0.029882289469242096, 0.013417229056358337, -0.0016060376074165106, 0.000917735742405057, -0.02283841371536255, -0.015252701006829739, 0.007890495471656322, -0.00021567636576946825, -0.020833617076277733, -0.03223927691578865, 0.014968235976994038, -0.0010743604507297277, -0.004388876724988222, 0.02394917793571949, -0.012841527350246906, -0.02530376985669136, 0.009502459317445755, -0.018937189131975174, 0.027416933327913284, -0.00940763857215643, -0.027647214010357857, 0.02205274999141693, -0.007192880846560001, 0.0065223583951592445, -0.0031155606266111135, -0.007463799323886633, 0.008527154102921486, 0.0008614355465397239, -0.01594354212284088, 0.015550711192190647, -0.017718058079481125, -0.01629573665559292, -0.022242393344640732, -0.028690248727798462, 0.0035287109203636646, 0.0046293167397379875, -0.0038571993354707956, 0.017582597211003304, -0.0010565813863649964, -0.009685329161584377, -0.03169744089245796, 0.00255679152905941, 0.026875095441937447, -0.025683054700493813, 0.017961883917450905, 0.02389499545097351, -0.006329328753054142, -0.026482263579964638, -0.005211791023612022, -0.1727375090122223, 0.02573723904788494, 0.015103695914149284, -0.010328760370612144, 0.03253728896379471, 0.026495810598134995, 0.030315758660435677, -0.010687727481126785, 0.0071996538899838924, -0.012157458811998367, 0.012150686234235764, 0.008960623294115067, -0.030180299654603004, -0.024179458618164062, -0.00870325043797493, 0.012563836760818958, 0.0004381256876513362, 0.025723693892359734, 0.03299785032868385, 0.0065596094354987144, 0.001458725775592029, 0.0014976703096181154, 0.020440787076950073, -0.01400647684931755, -0.0004266963223926723, 0.001594184897840023, -0.008588110096752644, 0.012753479182720184, 0.015523619018495083, -0.004876529332250357, -0.030478309839963913, 0.007578939665108919, -0.005384501535445452, -0.01127020176500082, 0.01774514839053154, 0.009258633479475975, -0.015184971503913403, -0.0048020267859101295, -0.018869459629058838, 0.01691884733736515, 0.01750132255256176, -0.00014826426922809333, 0.010152663104236126, 0.002759980270639062, -0.006231121253222227, 0.028636064380407333, -0.023380249738693237, -0.0008770980057306588, 0.02113162726163864, -0.02409818395972252, 0.006143072620034218, -0.006816981825977564, 0.013071808032691479, -8.00584748503752e-05, 0.03952698037028313, 0.010802867822349072, 0.006651044357568026, 0.011324385181069374, -0.009387318976223469, -0.017298134043812752, -0.00432791979983449, -0.010992510244250298, 0.016756298020482063, -0.02016986720263958, -0.010464219376444817, -0.015008874237537384, -0.01930292882025242, 0.007192880846560001, -0.040881574153900146, 0.025330862030386925, 0.003677716013044119, 0.02757948264479637, 0.026360351592302322, -0.0016424421919509768, 0.0033797058276832104, -0.002053899457678199, -0.011371796019375324, 0.02278422936797142, 0.011067013256251812, -0.010166209191083908, -0.027769125998020172, 0.04126085713505745, -0.028906982392072678, -0.009028352797031403, 0.004886689130216837, 0.01678338833153248, -0.0010396490106359124, -0.02366471476852894, -0.025385044515132904, -0.0006235354230739176, 0.0018879619892686605, -0.03131815791130066, 0.008818390779197216, -0.019844766706228256, 0.019790582358837128, 0.009245087392628193, 0.000618878984823823, -0.023136423900723457, 0.001935372594743967, -0.009509232826530933, 0.008012409321963787, -0.02259458601474762, -0.007809220347553492, 0.044918254017829895, 0.027267927303910255, 0.007653442211449146, -0.006427536718547344, 0.01599772647023201, 0.037115808576345444, -0.005475936457514763, 0.000921968836337328, 0.01476504746824503, 0.011520801112055779, 0.0010870597325265408, 0.0002751513966359198, 0.014331578277051449, -0.011067013256251812, -0.021118082106113434, -0.004087479785084724, -0.01676984317600727, 0.06296141445636749, -0.013837152160704136, -0.01639055833220482, 0.014182573184370995, -0.007280929479748011, -0.055294428020715714, -0.10993865132331848, -0.0028209369629621506, -0.002194438362494111, 0.030938871204853058, 0.0072402916848659515, 0.0032340872567147017, -0.0027379682287573814, 0.008933531120419502, 0.013796514831483364, 0.0025381657760590315, -0.030613768845796585, -0.04464733600616455, -0.0013198801316320896, -0.0033526141196489334, 0.01517142541706562, -0.018896551802754402, -0.002355295931920409, -0.011879767291247845, 0.01127020176500082, 0.03218509629368782, 0.004903621505945921, -0.00974628608673811, 0.024748386815190315, -0.031914178282022476, -0.002516153734177351, -0.007680533919483423, -0.02831096388399601, -0.002776912646368146, 0.020589791238307953, 0.00814109481871128, -0.01823280192911625, -0.005005215760320425, 0.0019167469581589103, 0.009522778913378716, -0.006759411655366421, -0.0005947503377683461, -0.018720455467700958, -0.0022249165922403336, 0.006942281499505043, -0.03622177615761757, 0.010281349532306194, -0.01846308261156082, 0.020278235897421837, -0.017514867708086967, 0.022228846326470375, -0.007714398670941591, -0.00048003336996771395, 0.01962803117930889, 0.009238313883543015, -0.018679818138480186, -0.013200494460761547, 0.02825677953660488, -0.03530065715312958, -0.000433469278505072, 0.03321458399295807, -0.01904555782675743, 0.02665836177766323, 0.012448696419596672, -0.0122184157371521, -0.013823607005178928, -0.02831096388399601, 0.01127020176500082, -0.020142776891589165, 0.02535795420408249, 0.022283030673861504, -0.0003532520786393434, -0.00563510088250041, -0.02259458601474762, 0.023976270109415054, -0.00875066127628088, -0.02045433223247528, -0.0004432054120115936, -0.023542800918221474, 0.015469435602426529, -0.0168240275233984, 0.015970634296536446, -0.009427957236766815, 0.0012047397904098034, 0.0005460696993395686, 0.0093534542247653, -0.0017025521956384182, -0.010599678382277489, 0.01226582657545805, 0.003342454554513097, 0.010037523694336414, -0.003860585857182741, 0.015049511566758156, -0.005127129144966602, 0.011940724216401577, -0.02084716409444809, 0.012103275395929813, 0.020955530926585197, -0.01538816001266241, -0.01972285285592079, 0.0077008530497550964, 0.029692646116018295, 0.01774514839053154, -0.003056297078728676, -0.011249883100390434, 0.003704807721078396, -0.029990656301379204, 0.0036065999884158373, -0.060523148626089096, 0.023353157564997673, 0.01934356614947319, -0.006562996190041304, 0.004382103681564331, 0.0007103139068931341, 0.011947497725486755, -0.01706785336136818, -0.01740650087594986, 0.012069410644471645, 0.0007081973599269986, 0.028581881895661354, -0.0019302929285913706, -0.003870745189487934, -0.0046123843640089035, 0.002785378834232688, 0.011967816390097141, -0.0116088492795825, 0.014141935855150223, -0.005591076333075762, 0.021050352603197098, -0.004781708121299744, 0.028527697548270226, -0.004852824378758669, -0.020779434591531754, 0.002658385783433914, 0.01857144944369793, 0.009488913230597973, 0.006430923473089933, -0.013180175796151161, 0.01633637398481369, -0.021538006141781807, -0.0019980224315077066, -0.007098059635609388, 0.017975429072976112, 0.016756298020482063, -0.01575389876961708, 0.004277122672647238, 0.006237893830984831, 0.04551427438855171, 0.0013605179265141487, 0.008005635812878609, 0.0014824310783296824, -0.03651978820562363, 0.01333595346659422, 0.027769125998020172, -0.0037725374568253756, 0.003952020779252052, 0.03505682945251465, -0.020183414220809937, 0.0015907983761280775, 0.01962803117930889, -0.0013952292501926422, -0.02069815807044506, -0.010769003070890903, -0.012739933095872402, 0.017176220193505287, -0.0006137992604635656, 0.004019750282168388, -0.02220175601541996, 0.0230280552059412, -0.004524335730820894, 0.0029547028243541718, -0.011087331920862198, 0.03370223566889763, -0.03719708323478699, -0.00467672711238265, 0.0023028056602925062, -0.015442343428730965, -0.025872698053717613, 0.008005635812878609, 0.007287702523171902, 0.01928938366472721, 0.01735231839120388, 0.00042838958324864507, 0.028527697548270226, 0.01017975527793169, -0.006143072620034218, -0.02971973828971386, 0.010450673289597034, -0.005337090697139502, -0.0015179890906438231, -0.051366109400987625, 0.010626770555973053, 0.02466711215674877, -0.010748683474957943, -0.0093534542247653, 0.015984179452061653, 0.0003502889012452215, -0.0071116057224571705, 0.01571326144039631, -0.018408898264169693, -0.00666797673329711, -0.007788901217281818, 0.010531948879361153, 0.017704511061310768, -0.018734000623226166, -0.000871171650942415, 0.02836514636874199, 0.020874256268143654, -0.01538816001266241, 0.013898109085857868, -0.006772957742214203, -0.01676984317600727, 0.007247064728289843, 0.007091286592185497, -0.009786923415958881, -0.027024101465940475, -0.01580808311700821, 0.02007504738867283, 0.009190903976559639, 0.005062785930931568, -0.0017228710930794477, 0.030369943007826805, -0.005838289391249418, 0.010545494966208935, -0.00038796348962932825, -0.0033949450589716434, -0.004412582144141197, 0.05851835384964943, 0.009211222641170025, 0.020034408196806908, 0.015577802434563637, -0.0025466319639235735, 0.022702954709529877, 0.014683771878480911, 0.02404399961233139, 0.009455048479139805, 0.0020488197915256023, -0.0011649486841633916, 0.01618736796081066, -0.002908985363319516, -0.05483386665582657, 0.01998022571206093, 0.010017204098403454, -0.04518917202949524, -0.009759832173585892, -0.001240297919139266, -0.007219973020255566, 0.04892784729599953, 0.009217995218932629, -0.0025788035709410906, 0.0116088492795825, 0.017528414726257324, 0.03069504350423813, 0.018192164599895477, 0.020291781052947044, -0.005963589064776897, -0.029340453445911407, 0.004869756754487753, -0.031832899898290634, 0.02646871842443943, -0.023691805079579353, -0.0001491108996560797, 0.007470572367310524, -0.018828822299838066, 0.02667190693318844, -0.006681522820144892, 0.0026617723051458597, 0.0167292058467865, -0.002658385783433914, 0.03248310461640358, 0.014372216537594795, 0.006441082805395126, -0.0005105116870254278, 0.019465479999780655, 0.01639055833220482, -0.008974168449640274, -0.04334693029522896, 0.008974168449640274, 0.019749945029616356, -0.005387887824326754, -0.011988135054707527, 0.01740650087594986, -0.004399036057293415, -0.00862874835729599, -0.012448696419596672, 0.02404399961233139, 0.018354715779423714, -0.00913671962916851, 0.010599678382277489, -0.022418489679694176, -0.006214188877493143, 0.014968235976994038, 0.004443060141056776, 0.0018557903822511435, -0.00022731738863512874, -0.016661476343870163], "87ead4aa-923c-424d-834e-7c1ae7f2b7ea": [-0.00031444805790670216, -0.015491948463022709, 0.0032196103129535913, 0.009177662432193756, -0.00985298678278923, 0.03222649544477463, -0.007887791842222214, -0.02140779234468937, -0.015302857384085655, -0.022042596712708473, 0.016504935920238495, 0.01745039038360119, 0.014492467977106571, 0.008225454948842525, -0.011629090644419193, 0.00929246749728918, 0.03873662278056145, -0.005149350501596928, 0.03344208002090454, -0.0306867528706789, -0.0037818183191120625, 0.013209350407123566, 0.0019196104258298874, 0.03184831142425537, -0.015951169654726982, 0.0302545465528965, 0.02215064875781536, -0.019287273287773132, 0.00048159091966226697, -0.013114805333316326, -0.021353766322135925, 0.0010281818686053157, -0.00594285735860467, -0.023420259356498718, -0.03122701309621334, -0.002675974043086171, 0.007448831107467413, -0.009778701700270176, 0.029957402497529984, -1.636870911170263e-05, 0.014600520022213459, 0.0008669480448588729, -0.016437401995062828, 0.009414026513695717, -0.029255066066980362, 0.02086753211915493, -0.017045194283127785, -0.030713766813278198, -0.021326754242181778, 0.012250389903783798, 0.0173423383384943, -0.003653506515547633, -0.025662338361144066, 0.012817662209272385, -0.00919116847217083, 0.0025071429554373026, 0.017247792333364487, 0.020232727751135826, -0.02161039039492607, 0.03409038856625557, 0.014830130152404308, -0.011399480514228344, 0.010204155929386616, 0.0004659740370698273, -0.04251844063401222, -0.02882285788655281, -0.018287792801856995, -0.010042077861726284, -0.01699116826057434, 0.0032111688051372766, 0.05270233750343323, 0.01722078025341034, -0.014141298830509186, -0.0014848700957372785, 0.025419220328330994, -0.04030337557196617, -0.03263168781995773, 0.005412727128714323, -0.025203116238117218, 0.0034390909131616354, -0.01111584436148405, -0.022866493090987206, 0.004298441577702761, 0.0015304546104744077, 0.030740778893232346, -0.007327272556722164, -0.0018402597634121776, 0.03114597499370575, -0.016545454040169716, -0.025270650163292885, 0.03325298801064491, 0.01664000004529953, 0.005405974108725786, 0.01691013015806675, -0.0032145455479621887, 0.0324966236948967, -0.025932468473911285, 0.03214545547962189, -0.0029106494039297104, -0.011460259556770325, -0.03417142853140831, -0.013317402452230453, -0.01784207858145237, -0.0012822727439925075, -0.0202462337911129, 0.01881454512476921, -0.0054633766412734985, -0.006047532428056002, 0.025351688265800476, -0.005041298922151327, -0.013054026290774345, 0.018747013062238693, 0.005308052059262991, -0.03436052054166794, -0.008711688220500946, -0.034387532621622086, 0.023568831384181976, -0.007962077856063843, -0.020570389926433563, -0.007867532782256603, 0.0045787012204527855, 0.014006233774125576, -0.01954389549791813, -0.025027532130479813, 0.006054285913705826, -0.00793506484478712, 0.002372077899053693, -0.02776935137808323, -0.008320000022649765, -0.014803117141127586, 0.022272208705544472, -0.00929246749728918, 0.0053316885605454445, -0.003933766391128302, -0.003125065006315708, -0.0018790909089148045, -0.042923636734485626, -0.01025818195194006, -0.006385195069015026, -0.03246961161494255, 0.016302337870001793, 0.015181298367679119, -0.003434025915339589, -0.02820155955851078, -0.023244675248861313, 0.027472207322716713, 0.009278961457312107, 0.008252467960119247, -0.010298701003193855, 0.00211883126758039, 0.011392727494239807, 0.004484155680984259, 0.00344753242097795, -0.028336623683571815, 0.02086753211915493, -0.0022083118092268705, 0.006861298810690641, -0.0039033766370266676, 0.008954805321991444, -0.013351168483495712, 0.001573506509885192, 0.031118961051106453, 0.011041558347642422, -0.0005550324567593634, 0.009177662432193756, 0.023244675248861313, 0.008157921954989433, -0.011494026519358158, -0.03033558465540409, -0.007151688449084759, 0.011534545570611954, 0.0008450000314041972, -0.03687272593379021, 0.008664415217936039, -0.006949090864509344, 0.007759480737149715, 0.03843948245048523, 0.02319064922630787, -0.010737662203609943, 0.006584415677934885, -0.03895272687077522, -0.012500260025262833, 0.01006233785301447, 0.02668883092701435, -0.03673766180872917, -0.01105506531894207, -0.0173423383384943, -0.0026422077789902687, 0.017355844378471375, 0.008968311361968517, -0.007104415446519852, 0.026283636689186096, 0.0018503896426409483, -0.001438441569916904, -0.6413963437080383, -0.026580778881907463, -0.017828570678830147, -0.02094857208430767, 0.011703376658260822, -0.0022235065698623657, 0.031551167368888855, -0.008407792076468468, -0.0005102921859361231, 0.0013405195204541087, -0.027364155277609825, 0.017207272350788116, 0.007536623626947403, -0.0271480530500412, -0.01888207718729973, -0.014492467977106571, -0.0029258441645652056, -0.02536519430577755, 0.009454545564949512, -0.011764155700802803, -0.008968311361968517, 0.008576623164117336, -0.002564545487985015, 0.012696104124188423, -0.01472207810729742, -0.009393766522407532, 0.02563532441854477, 0.010575584135949612, 0.005557922180742025, 0.034468572586774826, -0.013884675689041615, 0.05570077896118164, 0.01672104001045227, 0.010730909183621407, 0.04892051964998245, -0.00034525973023846745, -0.006837662309408188, 0.02312311716377735, 0.02594597451388836, 0.011710129678249359, -0.023420259356498718, -0.024176623672246933, 0.00466311676427722, 0.010595844127237797, 0.019260259345173836, -0.000977532472461462, 0.008819740265607834, 0.0012265584664419293, -0.007232727482914925, 0.01641038991510868, 0.017423376441001892, 0.007556883152574301, -0.026081038638949394, 0.0028464936185628176, -0.002469999948516488, -0.0009218181949108839, 0.0369267538189888, -0.018287792801856995, -0.012864935211837292, 0.010562078095972538, 0.012540779076516628, 0.009819220751523972, 0.009305974468588829, -0.00023530844191554934, -0.002161039039492607, 0.030308572575449944, -0.009778701700270176, 0.017396364361047745, 0.014276363886892796, -0.029930390417575836, -0.004197143018245697, 0.021043116226792336, 0.01740987040102482, -0.0017710389802232385, 0.015370389446616173, 0.010906493291258812, 0.023784935474395752, -0.004831948317587376, 0.01031896099448204, 0.015762077644467354, 0.0036703895311802626, -0.022015584632754326, -0.01951688341796398, -0.022393766790628433, 0.01547844149172306, -0.017801558598876, -0.020313765853643417, 0.0240145456045866, 0.001668896060436964, 0.004352467600256205, -0.0134592205286026, 0.013567272573709488, 0.0082389609888196, -0.0024092209059745073, 0.03511688485741615, 0.0238119475543499, -0.013290389440953732, 0.012351687997579575, 0.016964156180620193, -0.033415064215660095, -0.0031672727782279253, -0.013486233539879322, -0.0038932468742132187, -0.009684155695140362, 0.002345064887776971, -0.018395844846963882, -0.034927792847156525, -0.0360623374581337, 0.04014129936695099, -0.00594285735860467, 0.007469091098755598, -0.01819324679672718, -0.006756623275578022, -0.001574350637383759, 0.0013455844018608332, -0.024230649694800377, 0.021110650151968002, 0.0019229870522394776, 0.010690390132367611, -0.006192727480083704, 0.01776103861629963, 0.002878571394830942, 0.006297402549535036, -0.011494026519358158, 0.022798961028456688, 0.027634285390377045, 0.0005997727275826037, 0.006037402432411909, -0.027364155277609825, -0.011372467502951622, -0.008542857132852077, 6.79017830407247e-05, 0.010980779305100441, -0.0004018181934952736, 0.01396571472287178, -0.015951169654726982, 0.015032727271318436, -0.005392467603087425, 0.019206233322620392, -0.006118441466242075, -0.011446753516793251, 0.014114285819232464, 0.010089350864291191, 0.004369350615888834, -0.018747013062238693, -0.04022233933210373, -0.003596103982999921, -0.0017153247026726604, -0.03538701310753822, 0.010224415920674801, -0.019368311390280724, -0.016815584152936935, -0.015586493536829948, 0.008259220980107784, 0.014438441954553127, -0.010892987251281738, -0.0063885715790092945, -0.008218700997531414, 0.004703636281192303, -0.004116103984415531, 0.01574857160449028, 0.016937142238020897, -0.01566753350198269, 0.006537143141031265, 0.01931428536772728, -0.009380259551107883, -0.01578909158706665, 0.012588052079081535, 0.004791428800672293, -0.026783376932144165, 0.005601818207651377, -0.040087271481752396, -0.01039324700832367, 0.034927792847156525, -0.034387532621622086, 0.009089870378375053, -0.0005622077733278275, -0.016383375972509384, -0.011865454725921154, 0.010987532325088978, -0.007063895929604769, 0.005611948203295469, -0.00740831159055233, -0.008846753276884556, 0.03257766366004944, 0.00011617694690357894, -0.00017611200746614486, 0.002699610311537981, 0.02982233837246895, 0.02793142944574356, -0.009839480742812157, 0.020232727751135826, 0.012189610861241817, 0.00046344156726263463, 0.011331948451697826, -0.004872467368841171, 0.008657662197947502, 0.023447273299098015, 0.017707012593746185, 0.015275844372808933, 0.021961558610200882, 0.010413506999611855, 0.035819221287965775, -0.006307532545179129, 0.009353246539831161, -0.022285714745521545, -0.00979220774024725, 0.007367792073637247, 0.03398233652114868, -0.011440000496804714, -0.0095625976100564, -0.015437922440469265, -0.008076882921159267, -0.010042077861726284, 0.02281246706843376, 0.016032207757234573, 0.014735584147274494, 0.012014025822281837, 0.009994804859161377, 0.0056963637471199036, 0.006290649529546499, -0.011656103655695915, -0.020664935931563377, -0.007421818096190691, -0.012844675220549107, 0.006955844350159168, 0.004872467368841171, 0.004835324827581644, 0.011919480748474598, 0.001207987079396844, 0.010582338087260723, -0.013452467508614063, 0.00942753255367279, 0.018841559067368507, 0.008988571353256702, -0.0028887013904750347, 0.015559480525553226, -0.017517922446131706, 0.01997610367834568, -0.02947116829454899, -0.0005508117028512061, 0.008225454948842525, -0.007151688449084759, -0.020583895966410637, -0.010886234231293201, -3.358157482580282e-05, 0.022515324875712395, 0.014708571135997772, 0.018490388989448547, 0.025041040033102036, -0.008846753276884556, 0.0029258441645652056, -0.013027013279497623, 0.0017060389509424567, 0.009846233762800694, -0.02288000099360943, 0.006827532313764095, 0.01194649375975132, 0.008954805321991444, 0.024797922000288963, 0.012783896178007126, -0.0011387662962079048, -0.012047791853547096, 0.014397921971976757, 0.04964987188577652, 0.011203636415302753, -0.004734025802463293, 0.030146494507789612, -0.018409350886940956, -0.038223378360271454, -0.02277194894850254, -0.020840520039200783, -0.0017187013290822506, -0.0065607791766524315, 0.007036883383989334, -0.009596363641321659, -0.0012712987372651696, -0.007833766750991344, 0.015532467514276505, 0.0013877921737730503, -0.02225870080292225, -0.03255064785480499, 0.045084673911333084, -0.0027063635643571615, -0.011926233768463135, 0.003098051995038986, -0.014411428943276405, -0.025459740310907364, -0.0018672727746888995, 0.03835844248533249, -0.009913766756653786, 0.007995843887329102, 0.009332987479865551, -0.010433766059577465, -0.015424415469169617, 0.021731948480010033, 0.04111376777291298, -0.029065974056720734, 0.04076259955763817, 0.012716364115476608, 0.0062872725538909435, 0.024338701739907265, -0.022825974971055984, 0.010602597147226334, -0.0004858117026742548, -0.017153246328234673, -0.01254753302782774, -0.0021222077775746584, -0.003960779402405024, -0.0197870135307312, -0.0137901296839118, -0.03419844061136246, -0.01776103861629963, -0.00950181856751442, -0.008596883155405521, -0.002252207836136222, -0.022717922925949097, 0.014492467977106571, 0.012844675220549107, -0.01711272820830345, -0.00018676948093343526, -0.012554286047816277, -0.022839481011033058, 0.013844155706465244, 0.09908363968133926, 0.012317921966314316, -0.026445714756846428, 0.013344415463507175, -0.004470649175345898, 0.0009378571412526071, -0.015316363424062729, -0.018206752836704254, 0.027485715225338936, -0.013857662677764893, 0.015410909429192543, -0.01745039038360119, 0.021461818367242813, 0.004703636281192303, 0.018557922914624214, -0.012581299059092999, -0.00651688314974308, -0.014627533033490181, -0.0031554545275866985, -0.003165584523230791, 0.0002821591042447835, 0.010757922194898129, 0.00039801947423256934, 0.00861039012670517, -0.022366752848029137, -0.012669091112911701, 0.024109091609716415, -0.005740259774029255, 0.013202597387135029, -0.01799064874649048, -0.006976103875786066, 0.017950130626559258, 0.020111169666051865, 0.02482493594288826, -0.008137661963701248, -0.0008762337965890765, 0.005541039165109396, 0.0036974025424569845, -0.0045922077260911465, 0.006199480500072241, 0.014654545113444328, 0.011129350401461124, 0.00861039012670517, 0.0002929220790974796, 0.011548051610589027, 0.0029528571758419275, -0.021894026547670364, -0.0031048052478581667, -0.019300779327750206, 0.000292077922495082, 0.0445174016058445, 0.01749090850353241, -0.0116763636469841, -0.01854441501200199, 0.0233527272939682, -0.0061420779675245285, -0.02385246753692627, 0.0026219480205327272, -0.015140779316425323, 0.037331949919462204, 0.00017231331730727106, -0.012135584838688374, -0.0030355844646692276, -0.018436362966895103, -0.007448831107467413, -0.03060571476817131, -0.021704934537410736, -0.02629714272916317, -0.012027532793581486, 0.012831169180572033, -0.010291947983205318, -0.0013616234064102173, -0.03141610324382782, -0.008455065079033375, 0.002199870068579912, 0.011595324613153934, 0.02443324774503708, -0.023298701271414757, -0.008752208203077316, -0.00036277598701417446, -0.01981402561068535, -0.029525194317102432, 0.0011961688287556171, -0.0180041566491127, -0.015059740282595158, -0.0010948701528832316, 0.0022690908517688513, 0.004598961211740971, -0.03265869989991188, 0.007847272790968418, 0.013020260259509087, 0.013898181729018688, 0.00613870145753026, -0.025122078135609627, 0.00398441543802619, 0.01415480487048626, 0.01485714316368103, -0.01655896194279194, -0.0009133766288869083, -0.0095625976100564, 0.019030649214982986, -0.040627531707286835, 0.0018402597634121776, -0.02793142944574356, -0.0019854544661939144, -0.013992727734148502, 7.027597166597843e-05, 0.01830129884183407, -0.01522181835025549, -0.037872206419706345, -0.0010906493989750743, -0.006044155918061733, 0.007394805084913969, 0.01025818195194006, -0.003552207723259926, 0.01396571472287178, 0.02917402610182762, 0.00849558413028717, 0.013297143392264843, 0.0039877924136817455, 0.004636103753000498, -0.025270650163292885, 0.00849558413028717, -0.014451947994530201, -0.037223897874355316, -0.01776103861629963, 0.021745454519987106, -0.024757402017712593, 0.017126234248280525, 0.005588311702013016, 0.030983896926045418, 0.013520000502467155, 0.021434806287288666, -0.03852051869034767, -0.03684571385383606, 0.013317402452230453, -0.015654025599360466, -0.001424935064278543, -0.009549090638756752, 0.0065472726710140705, 0.004342337604612112, -0.008461818099021912, -0.016748052090406418, -0.038925714790821075, -0.00816467497497797, -0.024068571627140045, -0.011730389669537544, 0.003363116877153516, 0.0027772728353738785, 0.007637922186404467, -0.007219220977276564, -0.024149609729647636, -0.02129974029958248, 0.004588831216096878, -0.021502338349819183, -0.029741298407316208, 0.0076176621951162815, -0.00896155834197998, 0.027202079072594643, -0.003515064949169755, 0.021434806287288666, -0.0053587015718221664, -0.0020951947662979364, 0.006172467488795519, 0.004139740485697985, 0.013641558587551117, -0.0031183117534965277, -0.014384415931999683, -0.025392208248376846, 0.007550130132585764, 0.01485714316368103, 0.02420363575220108, 0.013405194506049156, 0.0026810390409082174, 6.959009624551982e-05, 0.054593246430158615, -0.022272208705544472, -0.0289309099316597, -0.021812986582517624, -0.028147533535957336, -0.02225870080292225, 0.010933506302535534, -0.005132467485964298, 0.022272208705544472, -0.014357402920722961, 0.017355844378471375, 0.04087064787745476, 0.0041735065169632435, -0.0014857143396511674, 0.0022589610889554024, 0.03373922035098076, -0.01175064966082573, 0.014560000039637089, -0.01187220774590969, 0.028957922011613846, -0.014357402920722961, 0.012122077867388725, 0.0066485716961324215, 0.00913714338093996, 0.015964675694704056, 0.0021374025382101536, -0.008218700997531414, -0.0002787824778351933, -0.022488312795758247, -0.014519480988383293, 0.019651947543025017, -0.012351687997579575, -0.013209350407123566, 0.028228571638464928, -0.0020175324752926826, -0.008758961223065853, -0.002767142839729786, -0.012574545107781887, -0.04384207725524902, -0.024041559547185898, -0.0035893507301807404, -0.002569610485807061, 0.022907013073563576, -0.011325194500386715, -0.012790649197995663, 0.008975065313279629, -0.022447792813181877, 0.05586285889148712, 0.015248831361532211, 0.03895272687077522, -0.0013481169007718563, -0.01256779208779335, -0.008313247002661228, 0.0025307792238891125, -0.018517402932047844, 0.004598961211740971, 0.012128830887377262, 0.04589506611227989, -0.008833247236907482, 0.015572987496852875, 0.0037649350706487894, 0.0011412986787036061, -0.045084673911333084, -0.03219947963953018, -0.000786753254942596, -0.007307013031095266, -0.019381817430257797, -0.007340779062360525, 0.005405974108725786, -0.044355325400829315, 0.01858493499457836, -0.00579090928658843, 0.01982753351330757, -0.0061825974844396114, -0.0025425974745303392, -0.014478961005806923, -0.006007012911140919, 0.023204155266284943, 0.01830129884183407, 0.03711584582924843, 0.0004988961154595017, -0.03995220735669136, -0.0034677921794354916, -0.01574857160449028, -0.0043457141146063805, -0.014370908960700035, 0.02246129885315895, -0.010075843892991543, 0.021272728219628334, -0.004632727243006229, -0.0036974025424569845, -0.018720000982284546, 0.000976688344962895, -0.004342337604612112, 0.028687791898846626, 0.022002078592777252, 0.012696104124188423, -0.00018465908942744136, 0.029525194317102432, 0.018909091129899025, 0.01499220822006464, 5.608360515907407e-05, -0.0008981818100437522, -0.01433038990944624, -0.005520779173821211, 0.010751169174909592, 0.006223117001354694, 0.008265974000096321, -0.022015584632754326, -0.01562701351940632, -0.010737662203609943, -0.004274805076420307, -0.004548311699181795, -0.0059090908616781235, -0.051837921142578125, -0.018990129232406616, 0.0008323376532644033, -0.01726129837334156, -0.0004096266347914934, -0.0037953245919197798, 0.008880519308149815, -0.014235843904316425, 0.029741298407316208, -0.03908779099583626, 0.020691948011517525, -0.020664935931563377, 0.005048051942139864, -0.022974545136094093, 0.0032922078389674425, -0.005527532659471035, -0.011561558581888676, 0.004737402778118849, -0.021083636209368706, -0.02242077887058258, 0.006624935194849968, 0.03257766366004944, 0.01446545496582985, 0.0013506493996828794, 0.007016623392701149, 0.008401039056479931, -0.00969766266644001, 0.009846233762800694, -0.01566753350198269, -0.01970597356557846, 0.012675844132900238, 0.012196363881230354, 0.00807012990117073, 0.014803117141127586, -0.012635325081646442, 0.035197921097278595, 0.00010219561954727396, 0.01534337643533945, -0.004355844110250473, -0.022907013073563576, -0.004217402543872595, -0.004426753148436546, 0.0033074025996029377, 0.011494026519358158, 0.00013981331721879542, -0.008380779065191746, -0.02486545406281948, -0.010305454954504967, 0.011446753516793251, 0.012804156169295311, -0.03147013112902641, -0.004818441811949015, 0.029201040044426918, -0.008198441937565804, -0.012149090878665447, -0.0022690908517688513, 0.0009412337676621974, -0.008407792076468468, 0.0017929869936779141, -0.03095688298344612, -0.01283792220056057, -0.014505974017083645, 0.03481974080204964, 0.007637922186404467, -0.0004049837589263916, -0.015383896417915821, -0.016937142238020897, -0.03060571476817131, -0.03125402703881264, -0.010325714014470577, 0.0043794806115329266, 0.020273247733712196, -6.758522795280442e-05, 0.024797922000288963, 0.011595324613153934, -0.019206233322620392, 0.008556364104151726, -0.019651947543025017, 0.0006972727132961154, -0.008306493982672691, 0.0022167533170431852, -0.0059698703698813915, -0.005828051827847958, -0.036251429468393326, 0.0004790584498550743, 0.019017143175005913, -0.010730909183621407, -0.009650389663875103, 0.013884675689041615, -0.0005275973817333579, 0.014762597158551216, -0.0011092207860201597, 0.0006546428776346147, 0.025108572095632553, 0.009940778836607933, 0.014181817881762981, -0.03265869989991188, -0.01582960970699787, -0.01264207810163498, -0.01223688293248415, -0.009251948446035385, -0.024379221722483635, 0.009184415452182293, -0.0024902597069740295, 0.016896624118089676, -0.039168830960989, -0.02839064970612526, -0.01628883183002472, -0.024379221722483635, 0.04594909027218819, -0.004919740371406078, 0.020070649683475494, 0.02482493594288826, 0.005932727362960577, -0.020313765853643417, -0.008441558107733727, 0.021961558610200882, 0.017355844378471375, -0.027296623215079308, 0.020394805818796158, -0.00814441591501236, 0.00534181809052825, -0.004139740485697985, 0.0019263636786490679, -0.0020445454865694046, 0.004561818204820156, 0.0017212338279932737, -0.006719480734318495, -0.01485714316368103, 0.023015065118670464, 0.017288312315940857, 0.00023784091172274202, -0.002047921996563673, 0.017585454508662224, -0.0011843506945297122, -0.0071854544803500175, -0.013276883400976658, -0.01636986993253231, 0.0003486363566480577, 0.01551896147429943, -0.0013827272923663259, 0.010278441943228245, -0.013952207751572132, 0.0014814934693276882, 0.024892468005418777, -0.04030337557196617, 0.0030761039815843105, 0.19881558418273926, -0.00975844170898199, 0.006371688563376665, 0.0346846766769886, -0.017274804413318634, 0.0032905195839703083, 0.03517090901732445, 0.00983272772282362, 0.005804415792226791, 0.009332987479865551, -0.020259739831089973, 0.010332467965781689, -0.004831948317587376, 0.012162597849965096, 0.0076041556894779205, -0.005902337841689587, -0.04767792299389839, -0.003038960974663496, -0.015532467514276505, -0.04386909306049347, 0.010690390132367611, -0.01297298725694418, -0.008894026279449463, -0.03103792294859886, 0.016964156180620193, 0.01508675329387188, -0.02753974124789238, -0.005733506754040718, 0.024109091609716415, 0.004062077961862087, -0.011656103655695915, -0.007583896163851023, -0.004953506402671337, 0.0029494804330170155, -0.017477402463555336, -0.0002762500080280006, 0.013067532330751419, 0.012020779773592949, 0.024649349972605705, -0.01458701305091381, -0.00025134740280918777, 0.008819740265607834, 0.009042597375810146, -0.01260831207036972, -0.021853506565093994, 0.0414109081029892, -0.01081870123744011, -0.015802597627043724, -0.01889558508992195, 0.0009040909353643656, -0.025351688265800476, 0.015167792327702045, 0.04011428728699684, 0.016423895955085754, -0.005500519648194313, -0.0037683118134737015, 0.007989090867340565, 0.01415480487048626, -0.023865973576903343, 0.02370389550924301, -0.011237402446568012, 0.02113766223192215, -0.005260779056698084, 0.006942337844520807, -0.02140779234468937, 0.019773507490754128, -0.013844155706465244, -0.02583792246878147, 0.018665974959731102, -0.028255583718419075, 0.003943895921111107, -0.033577144145965576, -0.004136363510042429, -0.0015093506081029773, -0.006844415795058012, -0.008374026045203209, 0.006111688446253538, -0.02094857208430767, 0.0030355844646692276, 0.0016528571723029017, 0.016464415937662125, -0.014668052084743977, 0.014411428943276405, -0.004409870132803917, -0.01339844148606062, -0.02043532393872738, 0.0035488312132656574, -0.0068207792937755585, -0.016194285824894905, 0.012520520016551018, -0.016964156180620193, -0.022677402943372726, 0.00018487013585399836, -0.005527532659471035, 0.026283636689186096, -0.0006069480441510677, 0.014843636192381382, 0.0035623377189040184, 0.010474286042153835, -0.01582960970699787, -0.022623376920819283, -0.010467532090842724, 0.03441454470157623, -0.005301298573613167, -0.026513246819376945, 0.0061420779675245285, 0.011264415457844734, 0.005378961097449064, 0.01054857112467289, -0.020840520039200783, 0.005378961097449064, -0.008455065079033375, -0.006297402549535036, -0.012581299059092999, 0.0046935067512094975, 0.021975064650177956, -0.019422337412834167, -0.04184311628341675, 0.0041464935056865215, 0.02144831232726574, -0.00038366884109564126, -0.017207272350788116, 0.001397077925503254, 0.014222337864339352, 0.006513506639748812, -0.018098700791597366, -0.03789922222495079, 0.02163740247488022, -0.009940778836607933, -0.02412259764969349, 0.03060571476817131, -0.013472727499902248, -0.005213506519794464, 0.015802597627043724, -0.014573507010936737, 0.02082701399922371, 0.006749870255589485, -0.02901194803416729, 0.015964675694704056, -0.0052033765241503716, 0.010886234231293201, -0.007806753274053335, -0.0015135714784264565, 0.0033850648906081915, 0.015235324390232563, -0.013182337395846844, 0.014519480988383293, -0.020691948011517525, 0.0037142857909202576, -0.0131283113732934, -0.04138389602303505, 0.0033445453736931086, 0.016964156180620193, 0.003667013021185994, 0.0031807792838662863, 0.002510519465431571, -0.011622337624430656, -0.027904415503144264, 0.0006601298809982836, 0.010042077861726284, -0.02393350750207901, 0.020462337881326675, 0.027364155277609825, -0.0012805843725800514, -0.021016104146838188, -0.018058182671666145, -0.17245091497898102, 0.019489869475364685, 0.0024396104272454977, -0.02963324636220932, 0.0422753244638443, 0.03292883187532425, 0.021002598106861115, -0.008542857132852077, 0.009866493754088879, -0.014114285819232464, 0.02198857069015503, 8.647321374155581e-05, -0.026864415034651756, -0.0071989609859883785, -0.01578909158706665, -0.0030035064555704594, -0.00485896086320281, 0.011277922429144382, 0.04432831332087517, 0.0021509090438485146, -0.0015220129862427711, -0.0041194804944098, 0.02621610462665558, -0.016423895955085754, 0.006763376761227846, 0.00880623422563076, -0.006250130012631416, 0.012203116901218891, 0.014708571135997772, -0.002892077900469303, -0.01551896147429943, 0.004534805193543434, 0.014370908960700035, -0.017423376441001892, 0.02265038900077343, 0.012014025822281837, -0.02443324774503708, -0.009110130369663239, -0.00515948049724102, 0.014303376898169518, 0.01796363666653633, 0.006996363867074251, 0.021650908514857292, -0.0001632386411074549, -0.01052831206470728, 0.02820155955851078, -0.013114805333316326, -0.0028329871129244566, 0.015356883406639099, -0.038034286350011826, 0.01181142870336771, -0.006290649529546499, 0.021894026547670364, -0.002795844106003642, 0.03757506608963013, 0.01807168871164322, -0.003704155795276165, -0.0028819481376558542, 0.012338181957602501, -0.010535065084695816, 0.003136883256956935, -0.015424415469169617, 0.00929246749728918, -0.0054768831469118595, 0.005605194717645645, -0.019570909440517426, -0.02129974029958248, 0.00942753255367279, -0.036791689693927765, 0.021650908514857292, -0.0020833767484873533, 0.012311168946325779, 0.02148883044719696, -0.022218182682991028, -0.007759480737149715, 0.0028296103700995445, -0.011257662437856197, 0.015316363424062729, 0.0030912987422198057, 0.005915844347327948, -0.03792623430490494, 0.04073558375239372, -0.020502857863903046, -0.008711688220500946, 0.008799480274319649, -0.005787532310932875, -0.0054903896525502205, -0.038115326315164566, -0.015586493536829948, -0.006094805430620909, 0.01177090872079134, -0.029660260304808617, -0.0008513311622664332, -0.016788572072982788, 0.014384415931999683, 0.004673246759921312, 0.008374026045203209, -0.02040831185877323, 9.428165503777564e-05, -0.014357402920722961, 0.008867013268172741, -0.025081558153033257, -0.01730181835591793, 0.04467948153614998, 0.0315781831741333, 0.011602077633142471, -0.010636364109814167, 0.014222337864339352, 0.03273973986506462, 0.006148830987513065, -0.0025358442217111588, 0.0015431168721988797, 0.0184633769094944, 0.008137661963701248, 0.001750779221765697, 0.026445714756846428, -0.018125714734196663, -0.011980259791016579, 0.012061298824846745, -0.011851947754621506, 0.056727271527051926, -0.004409870132803917, -0.012669091112911701, 0.017788052558898926, -0.007354285567998886, -0.04138389602303505, -0.10788986831903458, -0.0009471428929828107, -0.00810389593243599, 0.026405194774270058, 0.0006537986919283867, 0.012527273036539555, -0.007995843887329102, 0.010332467965781689, 0.015856623649597168, -0.0006326948059722781, -0.029687272384762764, -0.037602078169584274, 0.0048522078432142735, 0.005692987237125635, 0.010021817870438099, -0.01854441501200199, -0.010872727259993553, -0.011689870618283749, 0.02753974124789238, 0.03371220827102661, 0.01645090989768505, -0.011433246545493603, 0.011487272568047047, -0.02882285788655281, -0.0017794804880395532, -0.016842598095536232, -0.02408207766711712, 0.01223688293248415, 0.01985454559326172, 0.0257974024862051, -0.006756623275578022, -0.018166234716773033, 0.007712207734584808, -0.006000259891152382, -0.012196363881230354, 0.0048387013375759125, -0.01468155812472105, -0.005000779405236244, 0.0049467533826828, -0.03525194898247719, 0.005206753499805927, -0.011304935440421104, 0.02470337599515915, -0.02109714224934578, 0.012459740042686462, 0.0014874025946483016, -0.003694026032462716, 0.017977142706513405, -1.6988637071335688e-05, -0.023636363446712494, -0.010676883161067963, 0.01869298703968525, -0.03263168781995773, -0.007894545793533325, 0.030389610677957535, -0.02078649401664734, 0.03087584488093853, 0.013337662443518639, -0.018517402932047844, -0.015316363424062729, -0.0180041566491127, 0.00796883087605238, -0.006354805082082748, 0.02238026075065136, 0.013087792322039604, -0.0048522078432142735, 0.012783896178007126, -0.0364675335586071, 0.024257661774754524, -0.004541558679193258, -0.02536519430577755, 0.00342389615252614, -0.023609351366758347, 0.01745039038360119, -0.005669350735843182, 0.0033850648906081915, -0.015964675694704056, -0.0036332467570900917, 0.0032010390423238277, 0.009218181483447552, -0.0027232468128204346, -0.015694545581936836, 0.009859740734100342, 0.015248831361532211, -0.00929246749728918, 0.003325974103063345, 0.013796883635222912, -0.0016199350357055664, 0.007381298579275608, -0.02194805257022381, 0.013817142695188522, 0.015681039541959763, -0.009353246539831161, -0.039384935051202774, -0.0004925649263896048, 0.01842285692691803, 0.01904415525496006, -0.005527532659471035, 0.006584415677934885, -0.007036883383989334, -0.02839064970612526, -0.006857922300696373, -0.06656000018119812, 0.03576519340276718, 0.026270130649209023, -0.008738701231777668, 0.005412727128714323, 0.006354805082082748, 0.0029258441645652056, -0.013243117369711399, -0.032091427594423294, 0.010568831115961075, -0.013742857612669468, 0.03414441645145416, -0.004156623501330614, -0.015262337401509285, -0.014627533033490181, 0.0004765259800478816, 0.005770649295300245, -0.009488311596214771, 0.011331948451697826, -0.009468051604926586, 0.01175064966082573, -0.012561039067804813, 0.022907013073563576, 0.003943895921111107, -0.022839481011033058, 0.002743506571277976, 0.014006233774125576, -7.148944860091433e-05, 0.004241039045155048, -0.008083636872470379, 0.006695844233036041, -0.0209080521017313, 0.012027532793581486, 7.313818969123531e-06, 0.008360520005226135, 0.019800519570708275, -0.03365818038582802, -0.003351298626512289, 0.0023687013890594244, 0.051378700882196426, 0.0010830519022420049, 0.00482857134193182, -0.007800000254064798, -0.022434286773204803, 0.008792727254331112, 0.03052467480301857, 0.0009260389488190413, -0.0009302597609348595, 0.02739116922020912, -0.015437922440469265, 0.007003116887062788, 0.017085714265704155, -0.007219220977276564, -0.020354285836219788, -0.0076041556894779205, -0.012851428240537643, 0.01784207858145237, -0.014803117141127586, 0.0031149350106716156, -0.016504935920238495, 0.0251355841755867, -0.004470649175345898, 0.0073137665167450905, -0.00800935085862875, 0.027012987062335014, -0.03373922035098076, 0.000936168828047812, 0.0034289611503481865, -0.01803116872906685, -0.029741298407316208, -0.0052033765241503716, -0.0012181168422102928, 0.012068051844835281, 0.022825974971055984, 0.0134592205286026, 0.028876883909106255, 0.017355844378471375, 0.004230909049510956, -0.015600000508129597, 0.012945974245667458, -0.02292051911354065, -0.012398961000144482, -0.04484155774116516, 0.017707012593746185, 0.025419220328330994, -0.0002403733815299347, -0.013709090650081635, 0.023649869486689568, 0.0004153246700298041, 0.013297143392264843, 0.028606753796339035, -0.015235324390232563, -0.0052168830297887325, -0.010892987251281738, 0.006246753502637148, 0.010237921960651875, -0.013702337630093098, -0.007347532548010349, 0.017504416406154633, 0.004821818321943283, -0.014776104129850864, 0.00834026001393795, -0.0056625972501933575, -0.022123636677861214, -0.0015996753936633468, -0.009089870378375053, -0.016748052090406418, -0.01993558369576931, -0.012864935211837292, 0.01682909019291401, 0.015154286287724972, 0.011095584370195866, 0.024919480085372925, 0.026904935017228127, -0.010339220985770226, 0.01428986992686987, -0.008738701231777668, -0.007793246768414974, -0.010805195197463036, 0.044787533581256866, 0.0018284416291862726, 0.02726961113512516, 0.029579220339655876, 0.014397921971976757, 0.006378441583365202, 0.013979220762848854, 0.03684571385383606, 0.005210130009800196, 0.006962597370147705, -0.01221662387251854, 0.01931428536772728, 0.009447792544960976, -0.04816415533423424, 0.013418701477348804, 0.008664415217936039, -0.036521557718515396, 0.001315194764174521, 0.012804156169295311, -0.021461818367242813, 0.0494067519903183, 0.013087792322039604, 0.0031014285050332546, 0.00820519495755434, 0.004305195063352585, 0.021515844389796257, 0.02575688250362873, 0.00820519495755434, -0.0050581819377839565, -0.026472726836800575, -0.0029241559095680714, -0.024041559547185898, 0.04316675290465355, -0.01951688341796398, -0.012534026056528091, 0.015451428480446339, -0.01574857160449028, 0.027431689202785492, -0.013222857378423214, -0.018139220774173737, 0.020313765853643417, 0.008171428926289082, 0.042923636734485626, 0.012446234002709389, -0.0050581819377839565, -0.004896103870123625, 0.027607273310422897, 0.010008311830461025, -0.004082337487488985, -0.03762909024953842, 0.00992727279663086, 0.02281246706843376, -0.01672104001045227, -0.026742856949567795, 0.019422337412834167, -0.011939740739762783, 0.002279220847412944, -0.021272728219628334, 0.02683740295469761, 0.02047584392130375, 0.003445844165980816, -9.72362031461671e-05, -0.016167273744940758, -0.00952207762748003, 0.01415480487048626, -0.002633766271173954, -0.01208155881613493, -0.0018638961482793093, -0.030902856960892677], "7d6cf556-eaa4-4670-8729-534daa57c8f7": [0.007107328623533249, -0.033015552908182144, -0.006483761128038168, 0.0012052286183461547, -0.016346856951713562, 0.0253584124147892, -0.004318037535995245, -0.01833154447376728, -0.019444579258561134, -0.023869896307587624, 0.012323839589953423, 0.02053079381585121, 0.012156214565038681, -0.008314233273267746, -0.0224350206553936, 0.014576729387044907, 0.04264397174119949, -0.0013552536256611347, 0.02353464439511299, -0.00746940029785037, -0.0027993489056825638, 0.0006948084337636828, -0.012035523541271687, 0.006440178491175175, -0.019243428483605385, 0.020624663680791855, 0.019404347985982895, -0.016695518046617508, 0.004814209416508675, -0.002866399008780718, -0.010614058002829552, 0.012551810592412949, 0.0019779829308390617, -0.015153361484408379, -0.03349831700325012, -0.00243895361199975, 0.00010151830065296963, -0.012833422049880028, 0.01711122877895832, -0.021147655323147774, 0.013892816379666328, -0.00214393250644207, -0.011727092787623405, -0.004884612280875444, -0.020571023225784302, 0.01068781316280365, -0.022609351202845573, -0.027892913669347763, -0.02315916307270527, 0.009206002578139305, 0.031352706253528595, -0.0020064793061465025, -0.013450284488499165, 0.011485711671411991, -0.017044179141521454, 0.0012840126873925328, 0.022944603115320206, 0.009997195564210415, -0.023548055440187454, 0.024486759677529335, 0.02197907865047455, -0.0034061537589877844, 0.005377431865781546, -0.007288364693522453, -0.03255961090326309, -0.01021846104413271, -0.01703076809644699, -0.018318133428692818, -0.018680205568671227, 0.005578582640737295, 0.04323401302099228, 0.013141852803528309, 0.0013384909834712744, -0.00346985156647861, 0.03255961090326309, -0.021120835095643997, -0.027155360206961632, -0.015797043219208717, -0.011049884371459484, 0.006919587962329388, -0.010111181065440178, -0.04047154262661934, -0.01239759474992752, 0.019457988440990448, 0.027651531621813774, -0.004254339728504419, 0.009715584106743336, 0.04559418559074402, -0.017661040648818016, -0.03314965218305588, 0.01454990915954113, 0.02035646140575409, 0.011163869872689247, 0.0069128829054534435, -0.003025643527507782, 0.016078654676675797, -0.0209733247756958, 0.017017358914017677, 0.0021590187679976225, -0.01780855283141136, -0.024647679179906845, -0.0030759312212467194, -0.02694079838693142, -0.008320938795804977, -0.026390986517071724, 0.011130345053970814, 0.005541705060750246, -0.012256789952516556, 0.029475299641489983, -0.009474202990531921, -0.01233724970370531, 0.0169905386865139, -0.0035972469486296177, -0.04181255027651787, -0.001922666560858488, -0.023212803527712822, 0.01581045426428318, -0.004421965219080448, -0.021925438195466995, -0.002695420989766717, 0.004857792053371668, 0.026364166289567947, -0.0013736924156546593, -0.01825108379125595, 0.003865448059514165, -0.0035670744255185127, -0.0008984736050479114, -0.027544250711798668, -0.017540350556373596, -0.007523040287196636, 0.040820203721523285, -0.004267749842256308, 0.0034128588158637285, 0.00641000596806407, -0.008582434616982937, 0.0007161807152442634, -0.027383331209421158, -0.0032301468309015036, -0.013524039648473263, -0.012330545112490654, 0.016816208139061928, 0.008113082498311996, -0.013959866017103195, -0.014496268704533577, -0.03390061855316162, 0.02085263468325138, 0.017500121146440506, 0.0048544397577643394, -0.027074899524450302, 0.0038185128942131996, 0.020383281633257866, -0.020544202998280525, 0.0014139226404950023, -0.016387086361646652, 0.010211756452918053, 0.002807730110362172, 0.006872652564197779, -0.004432023037225008, -0.010459842160344124, 0.005930596496909857, 0.004566123243421316, 0.026967618614435196, 0.008113082498311996, 0.0020886159036308527, 0.007415759842842817, 0.027490610256791115, -0.003919088281691074, -0.014040326699614525, -0.028992537409067154, -0.013946456834673882, 0.01428170781582594, 0.022099768742918968, -0.04014970362186432, 0.013302774168550968, -0.02145608700811863, 0.017419660463929176, 0.023762615397572517, 0.027088308706879616, -0.008595844730734825, 0.010117885656654835, -0.04993904009461403, -0.013041277416050434, 0.01214950904250145, 0.018760666251182556, -0.014523088932037354, -0.015247231349349022, -0.019337298348546028, 0.0023434069007635117, 0.011720387265086174, 0.0213756263256073, -0.0025227663572877645, 0.014536499045789242, -0.00835446361452341, -0.011733797378838062, -0.6385331153869629, -0.017205098643898964, -0.016923489049077034, -0.012773077003657818, 0.011834372766315937, -0.003932498395442963, 0.013081507757306099, 0.00023719033924862742, 0.019578678533434868, 0.008461744524538517, -0.022099768742918968, 0.024352658540010452, -0.007938751950860023, -0.022904371842741966, -0.013296068646013737, 0.001998098101466894, -0.00376487267203629, -0.032371871173381805, 0.0072481343522667885, -0.021509727463126183, -0.023561464622616768, 0.012645681388676167, 0.0024490111973136663, 0.011090114712715149, 0.021241525188088417, -0.006694969721138477, 0.021201295778155327, 0.007717486005276442, 0.0008800348150543869, 0.019766420125961304, -0.01723191887140274, 0.04599648714065552, 0.015274051576852798, 0.01666869781911373, 0.047042470425367355, -0.0023367018438875675, -0.006135100033134222, 0.0503145232796669, 0.010573827661573887, 0.003466499038040638, -0.022140000015497208, -0.0339810773730278, 0.017821962013840675, 0.011324791237711906, 0.010660992935299873, 0.011901423335075378, 0.01182766817510128, -0.008441628888249397, -0.0112175103276968, 0.015488612465560436, 0.013443578965961933, -0.003691117512062192, -0.012719436548650265, -0.002432248555123806, 0.006235675420612097, -0.0041001238860189915, 0.028912076726555824, -0.014241477474570274, 0.018157213926315308, 0.0027088308706879616, 0.009655239060521126, 0.01306809764355421, 0.0192568376660347, 0.009728994220495224, 0.0055819349363446236, 0.02926073782145977, -0.008119788020849228, 0.013959866017103195, 0.01881430670619011, -0.016816208139061928, 0.0017919185338541865, 0.014710829593241215, 0.00590377626940608, -0.019417759031057358, 0.005038827657699585, -0.0015438324771821499, 0.034276098012924194, -0.007395644672214985, 0.020879454910755157, 0.013383233919739723, 0.014107377268373966, -0.02329326421022415, -0.023440774530172348, -0.03827229514718056, 0.020128492265939713, -0.013336298987269402, -0.012484760023653507, 0.01695030927658081, 0.00875676516443491, -0.0035301968455314636, -0.016843028366565704, 0.019980980083346367, 0.011693567037582397, -0.005930596496909857, 0.024929290637373924, 0.012457940727472305, -0.021389037370681763, 0.004499073140323162, 0.004381735343486071, -0.014925390481948853, -0.011036474257707596, -0.00619879737496376, 0.002103702165186405, -0.0051796333864331245, 0.0014290089020505548, -0.00934680737555027, -0.038057733327150345, -0.01255851611495018, 0.03575120493769646, -0.012095868587493896, 0.002125493483617902, -0.01943116821348667, -0.011666746810078621, -0.008944505825638771, 0.014026916585862637, -0.019967570900917053, 0.023910127580165863, 0.008267298340797424, 0.008582434616982937, -0.001367825549095869, 0.011365020647644997, -0.009869799949228764, 0.005115935578942299, 0.005722740665078163, 0.018867947161197662, 0.031272247433662415, -0.0011968472972512245, 0.0035234917886555195, -0.024594038724899292, -0.0028865141794085503, 0.0065407538786530495, -0.007938751950860023, 0.00835446361452341, -0.007925341837108135, 0.016226164996623993, -0.009715584106743336, 0.014107377268373966, 0.005893718916922808, 0.016735747456550598, -0.004978482611477375, -0.025988684967160225, 0.024446528404951096, 0.007831471972167492, 0.008723240345716476, -0.01645413599908352, -0.035912126302719116, -0.000848185911308974, -0.011955063790082932, -0.04116886481642723, 0.011458891443908215, -0.0220327191054821, -0.011445481330156326, -0.010466547682881355, 0.0066547393798828125, 0.021603597328066826, -0.009822865016758442, -0.008341053500771523, -0.008005802519619465, 0.004137001931667328, -0.016279805451631546, 0.01186789758503437, 0.01767445169389248, -0.02507680095732212, 0.002760794945061207, 0.025452282279729843, -0.017741501331329346, -0.020785583183169365, 0.015166771598160267, -0.009353512898087502, -0.020584432408213615, 0.01454990915954113, -0.017821962013840675, -0.008186837658286095, 0.02698102965950966, -0.03524162247776985, 0.015823863446712494, -0.005380784161388874, -0.023722385987639427, -0.020262591540813446, 0.009065196849405766, -0.009789339266717434, 0.02800019271671772, -0.015622713603079319, -0.0038084553088992834, 0.03827229514718056, -0.005001950077712536, -0.010453137569129467, 0.0027004496660083532, 0.02179133892059326, 0.02637757733464241, -0.013282658532261848, 0.009065196849405766, 0.020088260993361473, 0.003121190005913377, 0.00782476644963026, -0.004884612280875444, 0.011780732311308384, 0.03011898137629032, 0.021724287420511246, 0.013101623393595219, 0.024567218497395515, 0.005595345050096512, 0.040176521986722946, 0.0013711780775338411, 0.007288364693522453, -0.02824157476425171, 0.0021271698642522097, 0.0029652982484549284, 0.028831616044044495, -0.014616958796977997, -0.01568976417183876, -0.023548055440187454, 8.685105422046036e-05, -0.019002046436071396, 0.027785632759332657, 0.016427315771579742, 0.019149556756019592, 0.01813039369881153, -0.011405250988900661, 0.0039727287366986275, 0.009266347624361515, -0.012022113427519798, -0.013034572824835777, -0.015837274491786957, -0.008998146280646324, 0.0074224648997187614, -0.00011094724322902039, 0.01493880059570074, 0.0032569668255746365, -0.0027054783422499895, 0.026109375059604645, -0.0066245668567717075, 0.0010753186652436852, 0.021885208785533905, 0.016145706176757812, 0.002392018446698785, 0.015220411121845245, -0.027088308706879616, 0.02816111408174038, -0.021187884733080864, -0.00018554067355580628, 0.017366020008921623, 0.012243379838764668, -0.030145801603794098, -0.006547458935528994, 0.0009470850927755237, 0.00242219096980989, 0.011854487471282482, 0.015005850233137608, 0.03768225386738777, -0.010506777092814445, 0.008609254844486713, -0.010144705884158611, -0.006329545751214027, 0.00808626227080822, -0.03945237770676613, 0.006986638065427542, 0.005568524822592735, -0.0024892413057386875, 0.02503657154738903, 0.007355414796620607, 0.006155214738100767, -0.002239478984847665, 0.010815208777785301, 0.035938944667577744, 0.01459013856947422, 0.0022210401948541403, 0.012806601822376251, -0.0224350206553936, -0.04398497939109802, -0.019484808668494225, -0.003909030929207802, -0.004381735343486071, -0.004596296232193708, 0.008884160779416561, -0.010600647889077663, -0.008314233273267746, -0.004670051392167807, 0.022528890520334244, 0.012243379838764668, -0.01927024871110916, -0.03604622557759285, 0.03840639442205429, -0.003992843441665173, -0.0055148848332464695, 1.0705780368880369e-05, -0.022327739745378494, -0.016722338274121284, -0.01400009635835886, 0.01666869781911373, -0.01306809764355421, 0.0020835872273892164, 0.01800970360636711, -0.007368824910372496, -0.014684009365737438, 0.015488612465560436, 0.02926073782145977, -0.01670892722904682, 0.042617153376340866, 0.011411956511437893, 0.008320938795804977, 0.02263617143034935, -0.020061440765857697, 8.22413494461216e-05, 0.009319988079369068, -0.018948405981063843, -0.02373579517006874, -0.006225617602467537, 0.008595844730734825, -0.01674915850162506, -0.002289766678586602, -0.02584117464721203, -0.015622713603079319, -0.01239759474992752, -0.006332898046821356, 0.002386989537626505, -0.02199248969554901, 0.015743402764201164, 0.013249133713543415, -0.01023857668042183, -0.00663462420925498, -0.019900521263480186, -0.0005364021635614336, 0.015327692031860352, 0.1063685491681099, 0.011385136283934116, -0.022367971017956734, 0.010124591179192066, 0.011116934940218925, 0.009561368264257908, -0.03239868953824043, -0.027705172076821327, 0.01691007800400257, 0.008039327338337898, 0.009078606963157654, -0.017889011651277542, 0.013416759669780731, -0.0037481102626770735, 0.002839579014107585, -0.018747255206108093, -0.006088164635002613, -0.004898022394627333, 0.002762471092864871, -0.0034061537589877844, 0.004324742592871189, 0.01617252454161644, -0.008334348909556866, 0.013007752597332, -0.018827715888619423, -0.015488612465560436, 0.02629711665213108, -0.004103476647287607, 0.012390890158712864, -0.021509727463126183, -0.015475202351808548, 0.02657872810959816, 0.02479518949985504, 0.022099768742918968, -0.010969424620270729, -1.600301402504556e-05, -0.007502925116568804, 0.010131295770406723, -0.018505875021219254, 0.023387134075164795, 0.03304237499833107, 0.025452282279729843, 0.008790290914475918, 0.0056087551638484, -0.0014508002204820514, 0.011023064143955708, -0.02491588145494461, 0.0016268071485683322, -0.008810405619442463, -0.0012446206528693438, 0.03068220429122448, -0.0028043775819242, 0.0005816611228510737, -0.010526892729103565, 0.03344467654824257, -0.01275966688990593, -0.00045929435873404145, -0.005206453613936901, -0.0177951417863369, 0.037574972957372665, -0.00782476644963026, -0.007945457473397255, 0.007429169956594706, -0.018519284203648567, -0.00518298614770174, -0.02385648712515831, -0.019980980083346367, -0.019484808668494225, -0.015193591825664043, 0.023092113435268402, -0.004063246306031942, 0.0014147607143968344, -0.026230065152049065, 0.0031463338527828455, 0.01036597229540348, 0.004928194917738438, 0.011914833448827267, -0.027624711394309998, -0.004727044142782688, -0.01963231898844242, -0.008267298340797424, -0.019243428483605385, 0.013812355697154999, -0.01654800772666931, -0.010788388550281525, -0.007214609067887068, 0.010171526111662388, 0.0026417807675898075, -0.027155360206961632, 0.0028999242931604385, 0.00729506928473711, 0.015193591825664043, 0.01601160503923893, -0.017687860876321793, 0.006611156743019819, -0.005193043500185013, -0.0025613203179091215, -0.02767835184931755, 0.0003457279526628554, -0.02303847298026085, 0.002247860422357917, -0.05066318437457085, 0.006054639350622892, -0.017459889873862267, 0.0052869138307869434, -0.010352562181651592, 0.011123639531433582, 0.022542301565408707, -0.030494462698698044, -0.04881259799003601, 0.008823815733194351, -0.016762567684054375, 0.0073151844553649426, 0.004110181704163551, 0.0018656738102436066, 0.005504827480763197, 0.017205098643898964, 0.024352658540010452, 0.012719436548650265, -0.004931547213345766, -0.001661170506849885, -0.04036426171660423, 0.011411956511437893, -0.001511145499534905, -0.03612668439745903, -0.017285559326410294, 0.03441019728779793, -0.01585068367421627, 0.00012561448966152966, 0.011445481330156326, 0.030977224931120872, 0.01809016242623329, 0.003032348584383726, -0.033632416278123856, -0.04130296781659126, -3.2084601116366684e-05, -0.01400009635835886, -0.00890427641570568, -0.009387037716805935, 0.0013812355464324355, 0.0035670744255185127, -0.0036341247614473104, -0.021201295778155327, -0.023641925305128098, 0.01141866110265255, -0.02848295494914055, -0.00950772874057293, -0.0060915169306099415, 0.004797447007149458, 0.019498219713568687, -0.0062826103530824184, -0.026484856382012367, -0.02759789116680622, 0.0041470592841506, -0.015662943944334984, -0.02926073782145977, 0.017500121146440506, -0.01168015692383051, 0.02169746719300747, -0.007838176563382149, 0.025586383417248726, -0.018787486478686333, 0.0004559418302960694, 0.0073151844553649426, 0.006865947972983122, 0.010272101499140263, -0.009326692670583725, -0.01665528677403927, -0.02596186473965645, -0.0011398546630516648, 0.014093967154622078, 0.030709024518728256, 0.02191202901303768, 0.00016060634516179562, -0.0032234417740255594, 0.05347929522395134, -0.011452185921370983, -0.020289411768317223, -0.0067016747780144215, -0.031513627618551254, -0.008562319912016392, 0.006674854550510645, -0.0038084553088992834, 0.01609206572175026, -0.02065148390829563, 0.0011758941691368818, 0.04763251170516014, 0.009715584106743336, 0.0034832616802304983, -0.007489515468478203, 0.023843076080083847, -0.02279709279537201, 0.023668745532631874, -0.011183985508978367, 0.02856341563165188, 0.008032622747123241, 0.023722385987639427, 0.009138952009379864, 0.002167399972677231, 0.0036341247614473104, 0.00948761310428381, -0.009078606963157654, -0.005022065248340368, -0.015032670460641384, -0.01534110214561224, 0.021751107648015022, 0.0032854632008820772, -0.022046128287911415, 0.018304724246263504, -0.01621275581419468, -0.02077217400074005, -0.010191640816628933, -0.020141901448369026, -0.038701415061950684, -0.027302870526909828, -0.014375577680766582, 7.244572043418884e-05, 0.017339199781417847, -0.010694518685340881, -0.015166771598160267, -0.004827619530260563, -0.02613619528710842, 0.05246013030409813, 0.019498219713568687, 0.025935044512152672, 0.015220411121845245, -0.024392887949943542, -0.0028278452809900045, 0.010815208777785301, -0.018076753243803978, -0.008408104069530964, 0.01939093880355358, 0.009045081213116646, -0.006557516288012266, -0.002437277464196086, -0.006101574748754501, 0.00316980155184865, -0.043180376291275024, -0.03910371661186218, 0.0007853262941353023, -0.002021565567702055, -0.010050836019217968, -0.010868849232792854, 0.000847347779199481, -0.03998878225684166, 0.02089286409318447, -0.007214609067887068, 0.024701319634914398, -0.018237674608826637, -0.003610657062381506, -0.03475886210799217, -0.0028898667078465223, 0.014134197495877743, 0.011794142425060272, 0.04382405802607536, 0.0007606014842167497, -0.04599648714065552, -0.0058032008819282055, -0.020503973588347435, -0.011975178495049477, 0.0021171122789382935, 0.015555663034319878, -0.0006021952722221613, 0.01261886116117239, -0.007737601175904274, -0.003132923971861601, -0.021402446553111076, 0.001662846771068871, -0.015743402764201164, 0.020919684320688248, 0.0062055024318397045, 0.012297019362449646, 0.005451187025755644, 0.02397717721760273, 0.00647035101428628, 0.023185983300209045, 0.003277081996202469, 0.00033734668977558613, -0.025988684967160225, -0.0031647728756070137, 0.010520187206566334, -0.00626920023933053, -0.005511532071977854, -0.028536595404148102, -0.010855439119040966, -0.006993343122303486, -0.021107425913214684, -0.01253840047866106, -0.011814258061349392, -0.04116886481642723, -0.017379431053996086, 0.011753912083804607, -0.014496268704533577, 0.014134197495877743, -0.006926293019205332, 0.0242990180850029, -0.008428218774497509, 0.03349831700325012, -0.03620714694261551, 0.028992537409067154, -0.022005898877978325, 0.012424414977431297, -0.031245427206158638, 0.013812355697154999, 0.006145157385617495, -0.010500072501599789, 0.004649936221539974, -0.010292216204106808, -0.025009751319885254, 0.012283609248697758, 0.028992537409067154, 0.009319988079369068, 0.0010208403691649437, 0.009608304128050804, 0.011002949438989162, -0.018438825383782387, 0.014308528043329716, -0.006892767734825611, -0.01929706707596779, 0.015032670460641384, 0.022421611472964287, 0.006363070569932461, 0.0065105813555419445, -0.02133539691567421, 0.027249230071902275, 0.0028932192362844944, 0.009755814447999, -0.004847734700888395, -0.045540545135736465, 0.00566910021007061, -0.01983346976339817, 0.013215607963502407, 0.009762519039213657, -0.009541253559291363, -0.0007798784645274282, -0.03242551162838936, -0.011023064143955708, 0.009561368264257908, 0.024352658540010452, -0.03918417915701866, 0.0057260929606854916, 0.028375674039125443, -0.004740454256534576, -0.006946408189833164, 0.006383185740560293, 0.005873603746294975, -0.008267298340797424, -0.010761568322777748, -0.0249561108648777, -0.008461744524538517, -0.023346904665231705, 0.03296191245317459, -0.009782634675502777, -0.0010417936136946082, -0.006255790125578642, -0.01279989629983902, -0.022743452340364456, -0.028214754536747932, -0.015595893375575542, 0.004126944113522768, 0.022662991657853127, 0.0006554163992404938, 0.015099721029400826, -0.001070289989002049, -0.01115716528147459, 0.002549586584791541, -0.00440855510532856, 0.0006549973622895777, -0.004834324587136507, 0.0034463838674128056, 0.0010937575716525316, -0.007067098747938871, -0.01731237955391407, 0.004861144814640284, 0.02987760119140148, -0.005937301553785801, -0.0032267943024635315, 0.007368824910372496, -0.010050836019217968, 0.00038553905324079096, -0.009588188491761684, 0.02153654769062996, 0.027812452986836433, 0.00547800725325942, -0.005890366155654192, -0.024607449769973755, -0.007020163349807262, -0.013731895945966244, -0.011143755167722702, -0.024124687537550926, -0.021563367918133736, 0.006131747271865606, -0.009071901440620422, 0.014268297702074051, -0.03178182989358902, -0.012437825091183186, -0.0126792062073946, -0.004566123243421316, 0.040498364716768265, -0.015086310915648937, 0.0011289588874205947, 0.026927389204502106, 0.0035201392602175474, -0.0249561108648777, 0.00028684944845736027, 0.031030865386128426, 0.010070950724184513, -0.01475105993449688, 0.01379894558340311, -0.023762615397572517, 0.007898521609604359, -0.005816610995680094, -0.0031128088012337685, -0.00752974534407258, 0.0057428558357059956, 0.005048885475844145, -0.0003333655768074095, -0.01841200515627861, 0.025505922734737396, 0.018438825383782387, -0.01113704964518547, -0.006731847301125526, 0.0035201392602175474, -0.0012219911441206932, -0.002125493483617902, -0.025130441412329674, -0.0027172123081982136, -0.003868800587952137, 0.005394194275140762, 0.0002359331410843879, 0.018948405981063843, -0.020088260993361473, 0.007623615674674511, 0.01513995137065649, -0.03736041113734245, -0.008367873728275299, 0.21327349543571472, -0.008528794161975384, -0.00011985236051259562, 0.043180376291275024, -0.01613229513168335, 0.010332446545362473, 0.03304237499833107, 0.00896462146192789, 0.01971277967095375, -0.007858292199671268, -0.011794142425060272, 0.01009777095168829, -0.008528794161975384, 0.009259642101824284, 0.0023886659182608128, -0.00029711652314290404, -0.04162480682134628, 0.0006759505486115813, -0.007395644672214985, -0.06018432229757309, 0.01653459668159485, -0.013906226493418217, -0.020946504548192024, -0.028375674039125443, 0.022099768742918968, 0.012524990364909172, -0.01893499679863453, -0.0001141949906013906, 0.02487565018236637, 0.004676756449043751, -0.02609596587717533, -0.003329046070575714, -0.007523040287196636, -0.010721337981522083, -0.013644729740917683, 0.004173879511654377, 0.0005636413698084652, 0.0009806102607399225, 0.025251131504774094, -0.0038017502520233393, 0.004160469397902489, 0.01408055704087019, 0.0046331738121807575, -0.0003025643527507782, -0.012900471687316895, 0.03832593560218811, -0.014911980368196964, -0.010835323482751846, -0.010868849232792854, 0.0042610447853803635, -0.031594086438417435, 0.015193591825664043, 0.04959037899971008, 0.006641329266130924, 0.0005711845005862415, -0.00928646232932806, 0.013094917871057987, 0.029233917593955994, -0.011847782880067825, 0.019605498760938644, -0.010935898870229721, 0.023481005802750587, -0.005457892082631588, 0.012692616321146488, -0.025210902094841003, 0.024808600544929504, 0.004898022394627333, -0.01654800772666931, 0.023829666897654533, -0.012001998722553253, 0.009702173992991447, -0.03205002844333649, -0.006299372762441635, 0.007958867587149143, -0.011371726170182228, -0.010292216204106808, 0.02475496008992195, -0.01918978802859783, 0.005320439115166664, 0.0148717500269413, 0.01308821327984333, -0.010124591179192066, 0.0009244555840268731, -0.011767322197556496, -0.02109401486814022, -0.018760666251182556, -0.0027457086835056543, -0.00500865513458848, -0.013081507757306099, 0.017379431053996086, -0.012826716527342796, -0.022703221067786217, 0.0020131843630224466, -0.015877503901720047, 0.01534110214561224, -0.0025277952663600445, 0.013731895945966244, 0.004103476647287607, 0.012504875659942627, -0.0063396031036973, -0.008830520324409008, -0.01747330091893673, 0.03626078739762306, 0.01001731026917696, -0.027088308706879616, 0.0027339747175574303, 0.015005850233137608, 0.0020936448127031326, 0.010151411406695843, -0.02856341563165188, 0.028724336996674538, 0.00683577498421073, -0.0035134342033416033, -0.020383281633257866, 0.0038989733438938856, 0.025948455557227135, -0.016078654676675797, -0.02235455997288227, 0.013463694602251053, 0.013182083144783974, 0.017768321558833122, -0.021871797740459442, 0.0006776268128305674, -0.0037883403711020947, -0.005028770305216312, -0.008870750665664673, -0.0234944149851799, 0.009440678171813488, 0.0015270699514076114, -0.020343052223324776, 0.03500024229288101, 0.003721290035173297, -0.0031966217793524265, -0.0006596070597879589, -0.02287755161523819, 0.026672597974538803, 0.004371677525341511, -0.02531818300485611, 0.017567170783877373, -0.009467498399317265, -0.013423464260995388, -0.0024858887773007154, 0.019404347985982895, 0.018023112788796425, 0.0094272680580616, -0.015864094719290733, 0.014536499045789242, -0.00968876387923956, 0.009058491326868534, -0.009447382763028145, -0.03116496652364731, -0.01408055704087019, 0.0018841126002371311, -0.0010836999863386154, -0.013074803166091442, 0.0004463033692445606, -0.023507824167609215, -0.01857292465865612, -0.0026401043869554996, 0.013919636607170105, -0.02385648712515831, 0.02173769846558571, 0.028509775176644325, -0.006926293019205332, -0.017258739098906517, -0.004197346977889538, -0.17068317532539368, 0.016118885949254036, 0.019806649535894394, -0.01719168946146965, 0.023025063797831535, 0.024540400132536888, 0.02950211986899376, 0.00567915802821517, -0.006289315409958363, -0.006363070569932461, 0.010761568322777748, 0.003751462558284402, -0.026471447199583054, -0.031138146296143532, -0.015193591825664043, 0.006329545751214027, -0.013403349556028843, 0.020101672038435936, 0.04242940992116928, 0.008448334410786629, 0.00323517550714314, -0.013865996152162552, 0.020758764818310738, -0.021509727463126183, 0.005052237771451473, -0.0023786083329468966, -0.013510629534721375, 0.010674403049051762, 0.009387037716805935, -0.015113131143152714, -0.005863546393811703, 0.014456038363277912, 0.007241429295390844, -0.025090212002396584, 0.025264542549848557, 0.019887110218405724, -0.010446432046592236, -0.010412907227873802, -0.007067098747938871, 0.024003997445106506, 0.011525942012667656, 0.0026350757107138634, 0.025049980729818344, 0.009018261916935444, 0.0012387537863105536, 0.03076266497373581, 0.0009018261334858835, -0.001364473020657897, 0.005474654491990805, -0.033793337643146515, 0.0023065293207764626, -0.008260593749582767, 0.022810501977801323, 0.0023467594292014837, 0.03918417915701866, 0.010459842160344124, 0.006735199596732855, -0.003929146099835634, 0.00021246554388199002, -0.02580094337463379, -0.00484438193961978, -0.014482858590781689, 0.023467594757676125, -0.016883257776498795, -0.009769224561750889, -0.023802846670150757, -0.0027859387919306755, -0.0014139226404950023, -0.03282781317830086, 0.008998146280646324, 0.000387424835935235, 0.01493880059570074, 0.030092161148786545, -0.02255571074783802, -0.01129797101020813, -0.0007274954696185887, -0.0293411985039711, 0.014818109571933746, 0.010272101499140263, 0.00810637790709734, -0.0511191263794899, 0.02926073782145977, -0.022770272567868233, -0.008488564752042294, 0.01564953289926052, 0.024191737174987793, -0.004861144814640284, -0.04639878869056702, -0.02832203358411789, -0.0033793337643146515, 0.021228116005659103, -0.020705124363303185, 0.0035234917886555195, -0.0072011989541351795, 0.016561416909098625, 0.015877503901720047, 0.014308528043329716, -0.015099721029400826, 0.008984736166894436, -0.0070872134529054165, 0.0068290699273347855, -0.023910127580165863, -0.005152813158929348, 0.03652898594737053, 0.036797188222408295, 0.019525038078427315, -0.012310429476201534, 0.009232821874320507, 0.03532208129763603, 0.009809454903006554, -0.009997195564210415, 0.010681108571588993, 0.022904371842741966, -0.00013766258780378848, -0.00302229099906981, 0.026927389204502106, -0.03019944205880165, -0.011834372766315937, 0.020879454910755157, 0.00737552996724844, 0.05739503353834152, 0.004224167205393314, -0.0013150234008207917, 0.015207001008093357, -0.008709830231964588, -0.04588920623064041, -0.10765591263771057, -0.0025546152610331774, 0.003215060569345951, 0.02113424614071846, 0.004988539963960648, 0.02325303480029106, 0.0011876279022544622, 0.016722338274121284, 0.027007849887013435, 0.006004351656883955, -0.024124687537550926, -0.03896961733698845, 0.012129394337534904, -0.014965620823204517, 0.004137001931667328, -0.025264542549848557, -0.00103089795447886, -0.004757216665893793, -0.004445433150976896, 0.03491977974772453, 0.019739599898457527, -0.0032536142971366644, 0.010821913368999958, -0.016601646319031715, 0.012196443974971771, -0.0005422690883278847, -0.027624711394309998, 0.005920539144426584, 0.02507680095732212, 0.016360266134142876, -0.0028194638434797525, -0.01202881895005703, 0.005038827657699585, -0.001875731279142201, -0.01355085987597704, -0.0066849119029939175, -0.028965717181563377, 0.002588140545412898, 0.014254887588322163, -0.03247915208339691, 0.022542301565408707, -0.016722338274121284, 0.019337298348546028, -0.025385232642292976, 0.0173928402364254, 0.006389890797436237, -0.012035523541271687, 0.01865338534116745, 0.0010476604802533984, -0.014375577680766582, -0.012451235204935074, 0.022783681750297546, -0.048705317080020905, -0.009480908513069153, 0.025251131504774094, -0.02698102965950966, 0.028295215219259262, 0.010842029005289078, -0.02019554190337658, -0.005156165920197964, -0.0169905386865139, 0.0031865641940385103, 0.006014409475028515, 0.031138146296143532, -0.013054687529802322, -0.0062222653068602085, 0.006507228594273329, -0.03660944849252701, 0.03816501423716545, -0.016387086361646652, -0.019605498760938644, -0.004167174454778433, -0.025049980729818344, 0.011291265487670898, 0.004029721487313509, 0.01787560246884823, -0.013383233919739723, 0.0021623712964355946, -0.009179182350635529, -0.0019779829308390617, -0.005320439115166664, -0.016923489049077034, 0.011874603107571602, 0.0070268684066832066, -0.017902422696352005, 0.0010426316875964403, 0.015756813809275627, -0.0011180632282048464, 0.006627919152379036, -0.011975178495049477, 0.0010015633888542652, 0.012511580251157284, -0.011928243562579155, -0.01929706707596779, 0.0005431072204373777, 0.02621665596961975, 0.01454990915954113, 0.008924391120672226, 0.009092017076909542, 9.706574201118201e-05, -0.018827715888619423, -0.012806601822376251, -0.059594281017780304, 0.031969569623470306, 0.0209733247756958, -0.021228116005659103, 0.005535000003874302, -0.012390890158712864, 0.012323839589953423, -0.017982883378863335, -0.02483542077243328, 0.00014751059643458575, -0.027866093441843987, 0.03990831971168518, -0.018197443336248398, -0.030092161148786545, -0.010352562181651592, -0.0021104072220623493, 0.010580533184111118, -0.009098721668124199, 0.005585287697613239, -0.017540350556373596, 0.0075833857990801334, 0.0031530389096587896, 0.01220985408872366, 0.0077107809484004974, -0.024741550907492638, 0.002837902633473277, 0.01735261082649231, 0.009641828946769238, 0.007744306232780218, -0.008126492612063885, 0.005219863727688789, -0.017298970371484756, 0.00895791593939066, 0.004515835549682379, 0.014710829593241215, 0.018546104431152344, -0.020061440765857697, -0.00524333119392395, -0.0027540898881852627, 0.05372067540884018, 0.0036642972845584154, -0.006721789482980967, -0.00553835229948163, -0.028590235859155655, 0.010707927867770195, 0.028590235859155655, -0.005954063963145018, -0.002837902633473277, 0.02179133892059326, -0.020758764818310738, 0.015166771598160267, 0.021523136645555496, -0.019659139215946198, -0.011264445260167122, -0.0002862208348233253, -0.020705124363303185, 0.01841200515627861, -0.003858743002638221, -0.0039056784007698298, -0.021751107648015022, 0.03164772689342499, -0.0018002997385337949, 0.012907177209854126, -0.015287461690604687, 0.015247231349349022, -0.022890962660312653, -0.002536176471039653, 0.010654288344085217, -0.02299824357032776, -0.02783927321434021, -0.00849526934325695, 0.003097722539678216, 0.013986686244606972, 0.021724287420511246, 0.018224263563752174, 0.021549956873059273, 0.00995696522295475, 0.0003254033508710563, -0.019565269351005554, 0.02539864182472229, -0.02189861796796322, -0.007717486005276442, -0.026310525834560394, 0.010902374051511288, 0.026967618614435196, -0.006879357621073723, -0.00457282830029726, 0.009125541895627975, 0.0023886659182608128, 0.011774027720093727, 0.020208951085805893, -0.012216559611260891, 0.0005146108451299369, -0.022180229425430298, -0.002993794623762369, 0.01568976417183876, -0.011592991650104523, -0.0024272198788821697, 0.02275686152279377, 0.014684009365737438, -0.0037414052058011293, 0.005025418009608984, -0.0026300468016415834, -0.022944603115320206, -0.0020433571189641953, -0.0034832616802304983, -0.010520187206566334, -0.02425878867506981, -0.01901545748114586, 0.026511676609516144, 0.018465643748641014, 0.0011281208135187626, 0.024526989087462425, 0.023641925305128098, -0.02047715336084366, 0.01200870331376791, -0.00896462146192789, -0.016521187499165535, -0.0021640474442392588, 0.03304237499833107, 0.0076035005040466785, 0.03121860697865486, 0.03027990274131298, 0.009078606963157654, 0.01475105993449688, 0.037896811962127686, 0.032693713903427124, 0.01001731026917696, 0.01353074423968792, 0.004234224557876587, 0.011411956511437893, 0.01241771038621664, -0.04181255027651787, 0.008528794161975384, 0.007516335230320692, -0.03880869597196579, -0.007328594569116831, 0.009333398193120956, -0.019069097936153412, 0.04385087639093399, -0.0023802847135812044, -0.0024523637257516384, 0.005293618887662888, 0.006523991469293833, 0.027571070939302444, 0.02145608700811863, 0.012142804451286793, -0.0023886659182608128, -0.008468449115753174, 0.004076656419783831, -0.02633734606206417, 0.038996439427137375, -0.0026719532907009125, -0.006892767734825611, 0.0071341488510370255, -0.01581045426428318, 0.0511191263794899, -0.033471494913101196, -0.01585068367421627, 0.027624711394309998, 0.004247634671628475, 0.033793337643146515, -0.005015360191464424, 0.0009982108604162931, -0.012846832163631916, 0.018586335703730583, 0.010285511612892151, -0.008253888227045536, -0.03462475910782814, 0.0013058040058240294, 0.025935044512152672, -0.024003997445106506, -0.018626565113663673, 0.014563319273293018, -0.019444579258561134, 0.005521589890122414, -0.010795094072818756, 0.009065196849405766, 0.0355902835726738, -0.011706977151334286, -0.006892767734825611, -0.018116982653737068, -0.01034585665911436, 0.0036307722330093384, -0.004961720202118158, -0.007623615674674511, -0.014724239706993103, -0.03148680552840233], "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a": [0.0024375515058636665, -0.027370654046535492, 0.0005967536708340049, -0.013813353143632412, -0.014419793151319027, 0.03191221505403519, -0.008712519891560078, -0.010504886507987976, -0.006151995621621609, -0.020875008776783943, 0.0032191851641982794, 0.007351398933678865, 0.013429274782538414, 0.006515859626233578, -0.019621700048446655, 0.00013729125203099102, 0.03253212943673134, -0.007600713055580854, 0.02210136502981186, -0.02288299798965454, -0.005397315137088299, -0.017883239313960075, -0.004561775363981724, 0.026602495461702347, -0.02507965825498104, 0.030780192464590073, 0.023853302001953125, -0.006317082326859236, 0.003800356527790427, -0.011980556882917881, -0.01200077123939991, 0.009258315898478031, 0.01475670374929905, -0.013530347496271133, -0.028516151010990143, -0.0018125814385712147, 0.014824085868895054, -0.023435533046722412, 0.007695048116147518, -0.02137363702058792, 0.010450980626046658, -0.005687058437615633, -0.012330944649875164, -0.009568274021148682, -0.016966840252280235, 0.02505270577967167, -0.0013164798729121685, -0.024661889299750328, -0.030537616461515427, 0.0059262653812766075, 0.008631660602986813, 0.03072628751397133, -0.01983732171356678, 0.0018024741439148784, -0.015201426111161709, -0.0025672621559351683, 0.02281561680138111, 0.02317948080599308, -0.037653177976608276, 0.014851039275527, 0.015417049638926983, -0.0024661889765411615, 0.014473699033260345, 0.016346924006938934, -0.05161477252840996, -0.011306734755635262, -0.019136548042297363, -0.006947105750441551, -0.007876980118453503, 0.0090022636577487, 0.044445306062698364, 0.00753333093598485, 0.005003129132091999, -0.017788903787732124, 0.026777690276503563, -0.026696830987930298, -0.027815375477075577, -0.009756944142282009, -0.021764453500509262, 0.021656641736626625, -0.000763524672947824, -0.04137267544865608, -0.00776243070140481, -0.00430235406383872, 0.021252349019050598, -0.0168590284883976, 0.0013661743141710758, 0.028084905818104744, -0.027330223470926285, -0.025793910026550293, 0.016508640721440315, 0.013092363253235817, 0.019190452992916107, 0.0011244405759498477, -0.004231602884829044, 0.02098282054066658, -0.0050772493705153465, 0.022141793742775917, 0.006199163384735584, -0.024715794250369072, -0.031265344470739365, 0.0015169420512393117, -0.031588781625032425, -0.005164846312254667, -0.0008372239535674453, 0.00741878105327487, -0.02596910297870636, -0.0009585119551047683, 0.02127930149435997, -0.023651154711842537, -0.014042452909052372, 0.009116812609136105, 0.004800982307642698, -0.04180392250418663, -0.022478705272078514, -0.014271551743149757, 0.020308997482061386, -0.0112460907548666, -0.011171970516443253, 0.0018327961442992091, 0.014028975740075111, 0.036413345485925674, -0.011273043230175972, -0.02118496596813202, 0.010397074744105339, 0.009548058733344078, -0.005852144677191973, -0.035362184047698975, 0.004325937945395708, 0.004046301823109388, 0.029809890314936638, -0.0037296053487807512, 0.004133898764848709, -0.010558792389929295, -0.006428262684494257, 0.010700294747948647, -0.02665640227496624, -0.004487655125558376, -0.010329692624509335, -0.024351930245757103, 0.03045675903558731, 0.020511144772171974, -0.0034112243447452784, -0.01681859977543354, -0.025564810261130333, 0.025982579216361046, -0.0050570350140333176, 0.01990470476448536, -0.02137363702058792, 0.01006690226495266, 0.01583481952548027, 0.008685566484928131, 0.026858549565076828, -0.009190933778882027, 0.025308758020401, -0.012708284892141819, 0.025416569784283638, -0.008402561768889427, -0.004497762303799391, 0.0022017136216163635, -0.0010621120454743505, 0.03320595249533653, 0.005235597491264343, -0.013301247730851173, 0.02658901922404766, 0.03150792047381401, -0.016010012477636337, -0.00832844153046608, -0.03754536807537079, -0.015093615278601646, 0.0065327053889632225, 0.02288299798965454, -0.03301728144288063, 0.005420898552983999, -0.010545316152274609, 0.0016382299363613129, 0.03274775296449661, 0.023691585287451744, -0.019823845475912094, 0.014298505149781704, -0.04881167411804199, -0.023449009284377098, 0.013462965376675129, 0.01901526004076004, -0.02521442249417305, -0.010720509104430676, -0.011185446754097939, -0.00818020012229681, 0.005117679014801979, 0.021885741502046585, 0.008618184365332127, 0.012020986527204514, 0.003286567283794284, -0.0077085248194634914, -0.6197007298469543, -0.02052462100982666, -0.01400202326476574, -0.0070953466929495335, -0.006451846566051245, 0.0010781153105199337, 0.0016331763472408056, 0.005521972198039293, 0.004204649943858385, -0.0027441405691206455, -0.016643404960632324, 0.028731774538755417, -0.016279540956020355, -0.019028736278414726, -0.026993313804268837, -0.0065461816266179085, 0.0008338548359461129, -0.0360090546309948, -0.0007778434082865715, -0.01848967745900154, -0.0075737605802714825, -8.027958392631263e-05, -0.0002095165546052158, 0.007546807639300823, 0.005771286319941282, -0.0134427510201931, 0.012506138533353806, 0.012485923245549202, 0.002486403565853834, 0.025564810261130333, -0.026548590511083603, 0.04571209102869034, 0.023058192804455757, 0.01564614847302437, 0.04803003743290901, 0.005333302076905966, -0.015309237875044346, 0.044580068439245224, 0.006849401630461216, 0.013921164907515049, -0.025861291214823723, -0.012297253124415874, 0.022276557981967926, 0.0037531889975070953, 0.01754632778465748, 0.0170476995408535, -0.002152861561626196, -0.00935938861221075, 0.0064350008033216, 0.006627040449529886, 0.002552101155743003, -0.002700342098250985, -0.003239399753510952, -0.017465468496084213, 0.0049424851313233376, -0.00683592539280653, 0.022842569276690483, -0.014352411031723022, 0.01853010803461075, -0.014810609631240368, 0.009494153782725334, 0.019958609715104103, 0.0050839874893426895, 0.008146509528160095, 0.005087357014417648, 0.029432550072669983, -0.006869616452604532, 0.013503395020961761, 0.01865139603614807, -0.029917700216174126, 0.013489918783307076, 0.008281273767352104, 0.007189681753516197, -0.011145017109811306, 0.01937912404537201, 0.0005108413752168417, 0.033691104501485825, -0.009325698018074036, 0.01960822381079197, 0.022411322221159935, 0.007270540576428175, -0.002043365500867367, -0.017195940017700195, -0.020794149488210678, 0.02649468556046486, -0.008725996129214764, -0.0164277832955122, 0.02921692654490471, -0.006020600441843271, -0.020969344303011894, -0.009238100610673428, 0.004491024184972048, 0.01915002427995205, -0.008901190012693405, 0.04350195452570915, 0.017398087307810783, -0.021791405975818634, -0.006694422569125891, -0.001185926841571927, -0.012391588650643826, -0.0017207731725648046, -0.020147280767560005, -0.003070944221690297, -0.0008250109385699034, 0.005751071497797966, -0.0016736056422814727, -0.0404023714363575, -0.015403573401272297, 0.046898018568754196, -0.010693556629121304, 0.0025958996266126633, -0.0062833912670612335, -0.004181066062301397, -0.006805603392422199, 0.022316988557577133, -0.026157774031162262, 0.011731242761015892, 0.015174473635852337, 0.006192425265908241, 0.008153247646987438, 0.013119316659867764, -0.010855274274945259, -0.0009239785722456872, -0.010093854740262032, 0.011488666757941246, 0.03169659152626991, -0.0030220921617001295, 0.0072166346944868565, -0.01386725902557373, -0.002712134039029479, 0.0023533236235380173, -0.01169081311672926, 0.011946865357458591, 0.010329692624509335, 0.026535114273428917, -0.004238341003656387, 0.013449489139020443, 0.006259807385504246, 0.013206913135945797, -0.025780433788895607, -0.012971075251698494, 0.01006690226495266, 0.017303751781582832, 0.006216008681803942, -0.02580738626420498, -0.0472753569483757, -0.010255572386085987, -0.0056904274970293045, -0.03253212943673134, 0.0009088175720535219, -0.019055688753724098, -0.012020986527204514, -0.020120328292250633, 0.014500651508569717, 0.004534822888672352, -0.013719017617404461, -0.013934641145169735, 0.0038610005285590887, 0.012202918529510498, -0.015336191281676292, 0.016468212008476257, 0.014972327277064323, -0.032936424016952515, 0.0006043341709300876, 0.022087888792157173, -0.004332676064223051, -0.025254853069782257, 0.02239784598350525, -0.0038104639388620853, -0.015592243522405624, 0.012829572893679142, -0.010552054271101952, -0.0037801419384777546, 0.041857827454805374, -0.03393368050456047, 0.006687684450298548, -0.003099581692367792, -0.03016027621924877, -0.00719641987234354, 0.00919767189770937, -0.01267459336668253, 0.022707805037498474, -0.016778171062469482, -0.010531838983297348, 0.02528180554509163, -0.0030406222213059664, -0.029189974069595337, 0.009521106258034706, 0.015686579048633575, 0.03148096799850464, -0.009804111905395985, 0.007978053763508797, 0.002885643159970641, 0.007863503880798817, 0.012816096656024456, -0.007897195406258106, 0.008234106004238129, 0.023758966475725174, 0.008173462003469467, 0.016872504726052284, 0.02226308174431324, 0.004325937945395708, 0.042774226516485214, 0.009076383896172047, 0.014716275036334991, -0.03789575397968292, -0.002921018749475479, -0.010248834267258644, 0.00818020012229681, -0.028408339247107506, -0.01842229627072811, -0.018867019563913345, -0.0036655922885984182, -0.00832844153046608, 0.010255572386085987, 0.0275054182857275, 0.013281033374369144, 0.025133565068244934, -0.009534582495689392, 0.002944602631032467, 0.019513888284564018, -0.003204024164006114, -0.005252443253993988, 0.0069875349290668964, -0.009345912374556065, -0.005026713013648987, 0.009494153782725334, 0.010410550981760025, 0.01034316886216402, -0.011866007000207901, 0.014877991750836372, -0.010808106511831284, -0.011724504642188549, 0.013011504895985126, -0.013078887015581131, 0.006421524565666914, 0.021265825256705284, -0.010767676867544651, 0.03177744895219803, -0.03503875061869621, -0.013516871258616447, 0.01743851602077484, 0.0059970165602862835, -0.013301247730851173, -0.011454975232481956, 0.0011530780466273427, 0.004797613248229027, 0.02189921773970127, 0.014608463272452354, 0.030402852222323418, -0.014581509865820408, -0.007924147881567478, -0.0004969437723048031, -0.022977333515882492, 0.005073880311101675, -0.03045675903558731, 0.009157242253422737, 0.016939887776970863, 0.00790393352508545, 0.01963517628610134, 0.022047458216547966, 0.019338693469762802, 0.0027963616885244846, 0.0013526978436857462, 0.048865579068660736, 0.016629928722977638, 0.016010012477636337, 0.021427541971206665, -0.027559323236346245, -0.05735573545098305, -0.018664872273802757, -0.002043365500867367, 0.00970303826034069, -0.0014175532851368189, -0.002585792215541005, -0.00023204748868010938, -0.022114841267466545, 0.00016045388474594802, 0.03525437042117119, 0.009635656140744686, -0.013611206784844398, -0.03773403912782669, 0.040671899914741516, 0.004201280884444714, -0.005616307258605957, -0.015956107527017593, -0.009851278737187386, -0.021158013492822647, -0.041723065078258514, 0.025659145787358284, -0.023354673758149147, 0.007203157991170883, 0.019392600283026695, -0.00873947236686945, -0.011832316406071186, -0.007620927877724171, 0.03509265556931496, -0.01875920780003071, 0.03859652951359749, 0.003709390526637435, 0.01727679930627346, 0.018206672742962837, -0.009406556375324726, 0.012917169369757175, 0.010120808146893978, -0.010787892155349255, -0.01567310281097889, -0.0003857631527353078, 0.006266545504331589, -0.029459502547979355, -0.0042787701822817326, -0.03334071859717369, -0.007041440811008215, 0.0023061560932546854, 0.006472061388194561, 0.008314964361488819, -0.014743227511644363, 0.03183135762810707, 0.030834099277853966, -0.024715794250369072, -0.008975310251116753, -0.012506138533353806, -0.0016542332014068961, 0.006236223503947258, 0.10813497006893158, 0.018637919798493385, -0.030187230557203293, 0.014877991750836372, -0.0008245898061431944, 0.024796653538942337, -0.02347596175968647, -0.027815375477075577, 0.022236129269003868, -0.0004215599619783461, -0.0020214663818478584, -0.015915678814053535, 0.015727007761597633, 0.012142274528741837, 0.010087116621434689, -0.012438755482435226, 0.004676325246691704, -0.0077017867006361485, 0.009884970262646675, 0.0061250426806509495, -0.006785388570278883, 0.005700535140931606, -7.054075103951618e-05, 0.01960822381079197, -0.016710788011550903, -0.012142274528741837, 0.03479617461562157, -0.007438995875418186, 0.012357897125184536, -0.0072166346944868565, -0.015888724476099014, 0.024109354242682457, 0.018179720267653465, 0.022249605506658554, -0.021939648315310478, -0.011717766523361206, 0.0006662415689788759, -0.00017550960183143616, -0.0037801419384777546, 0.008267797529697418, 0.025106610730290413, 0.025403093546628952, 0.012250085361301899, -0.020443761721253395, 0.008928142488002777, 0.00764788081869483, -0.023920685052871704, -0.005208645015954971, -0.010100592859089375, 0.008133032359182835, 0.045981619507074356, -0.0011210715165361762, -0.0025942150969058275, -0.014136787503957748, 0.034311022609472275, -0.008631660602986813, 0.006522597745060921, -0.020807625725865364, -0.005764548201113939, 0.024810129776597023, 0.0004379843594506383, -0.012472447007894516, 0.00031206387211568654, -0.011320210993289948, -0.006637147627770901, -0.023691585287451744, -0.007890456356108189, -0.015983060002326965, -0.011859268881380558, 0.01475670374929905, -0.008651875890791416, 0.001648337347432971, -0.02088848501443863, 0.022923428565263748, 0.0038172020576894283, -0.006256438326090574, 0.007155990693718195, -0.01301824301481247, 0.0015725323464721441, -0.016185207292437553, -0.014460221864283085, -0.022532610222697258, -0.0016399145824834704, -0.015753960236907005, -0.009628918021917343, -0.01754632778465748, 0.0077017867006361485, 0.015727007761597633, -0.029594266787171364, 0.020187709480524063, -0.005653367377817631, 0.0049424851313233376, 0.0057409643195569515, -0.0022471966221928596, 0.007513116579502821, 0.004491024184972048, 0.010154498741030693, -0.0038441549986600876, -0.014109835028648376, -0.02160273678600788, -0.0006691895541734993, -0.04509217292070389, -0.011225876398384571, -0.0044573331251740456, 0.016023488715291023, -0.01253982912749052, 0.0005306348903104663, 0.013274295255541801, -0.0240689255297184, -0.044768739491701126, -0.0035476733464747667, -0.02173750102519989, 0.003303412813693285, -0.0034196472261101007, 0.0033522648736834526, -0.0011556048411875963, 0.009285268373787403, 0.02629253827035427, 0.00595995644107461, -0.025025753304362297, -0.005073880311101675, -0.029594266787171364, 0.006023969501256943, -0.014190693385899067, -0.03546999394893646, -0.00840929988771677, 0.023098621517419815, -0.020255092531442642, 0.0029665017500519753, -0.0006220220238901675, 0.025362662971019745, 0.012465708889067173, 9.880969446385279e-05, -0.01757328025996685, -0.04013284295797348, 0.008159985765814781, -0.010558792389929295, 0.003360687755048275, -0.012715023010969162, 0.014028975740075111, -0.004066516179591417, 0.009406556375324726, -0.015120567753911018, -0.02830052748322487, -0.0030204076319932938, -0.025645669549703598, -0.014810609631240368, -0.00182774243876338, 0.0031501182820647955, 0.0174789447337389, -0.011913174763321877, -0.022519133985042572, -0.019581269472837448, -0.0025756850372999907, -0.011333687230944633, -0.015915678814053535, 0.012721761129796505, -0.02114453725516796, 0.01869182474911213, -0.014163740910589695, 0.029594266787171364, -0.03417625650763512, 0.0024729270953685045, 0.01865139603614807, 0.008584493771195412, 0.014325457625091076, -0.03193916752934456, -0.021238872781395912, -0.035523902624845505, -0.024338454008102417, 0.01672426424920559, 0.024500170722603798, 0.017842808738350868, -0.006647254806011915, 0.0018294269684702158, 0.03503875061869621, -0.004507869947701693, -0.007883718237280846, -0.013692065142095089, -0.03541608899831772, -0.02331424504518509, 0.0063676186837255955, -0.010215142741799355, 0.005899312440305948, -0.010477934032678604, 0.002365115564316511, 0.04015979543328285, -0.0029024886898696423, -0.005730857141315937, -0.0002526832977309823, 0.01708812825381756, -0.03193916752934456, 0.025793910026550293, -0.015956107527017593, 0.03665592148900032, -0.008018482476472855, 0.014958850108087063, 0.007715262938290834, 0.004238341003656387, 0.0005188430077396333, 0.0051210480742156506, 0.014136787503957748, -0.005831930320709944, -0.0251200869679451, -0.015255331993103027, 0.009797372855246067, -0.0007361506577581167, -0.028839586302638054, 0.014810609631240368, -0.04196564108133316, -0.035065703094005585, -0.008530587889254093, -0.01668383553624153, -0.03665592148900032, -0.015794390812516212, -0.018354913219809532, 0.0014259760500863194, 0.016549071297049522, -0.009514368139207363, -0.004939116071909666, -0.009386342018842697, -0.016710788011550903, 0.04104924201965332, -0.008146509528160095, 0.03290947154164314, -0.006401309743523598, -0.03964769095182419, -0.01656254753470421, -2.6479103325982578e-05, -0.005346778314560652, 0.00011065422586398199, 0.035523902624845505, 0.0071020848117768764, -0.0015413680812343955, 0.002956394338980317, 0.006953843869268894, -0.008651875890791416, -0.036251626908779144, -0.03875824809074402, 0.002001251559704542, -0.0017148772021755576, -0.020484192296862602, 0.0037700345274060965, 0.019729511812329292, -0.02770756371319294, 0.0021663380321115255, -0.0017224577022716403, 0.01865139603614807, -0.00991866085678339, -0.012378111481666565, -0.016670359298586845, -0.018368389457464218, 0.003968812059611082, 0.010767676867544651, 0.038704339414834976, -0.011549310758709908, -0.02800404652953148, -0.015147521160542965, -0.025416569784283638, -0.004908794071525335, -0.007317707873880863, 0.002272465033456683, 0.0008031117031350732, 0.022478705272078514, -0.007641142699867487, 0.0019406076753512025, -0.026157774031162262, 0.004170958884060383, -0.03042980656027794, 0.025942150503396988, -0.0022522504441440105, 0.022451752796769142, 0.026898978278040886, 0.012586996890604496, 0.009345912374556065, 0.02557828649878502, -0.008355394005775452, -0.0032663526944816113, -0.039000824093818665, -0.0029884011019021273, 0.0052052754908800125, -0.008267797529697418, 0.008611446246504784, -0.013826829381287098, -0.016710788011550903, -0.0009475623373873532, -0.012876740656793118, -0.0008978679543361068, 0.010282524861395359, -0.03617076948285103, -0.024581030011177063, 0.011091112159192562, -0.02386677823960781, 0.019621700048446655, -0.01796409673988819, 0.030995815992355347, -0.0008502792334184051, 0.026548590511083603, -0.016468212008476257, 0.024607982486486435, -0.03301728144288063, 0.008557540364563465, -0.038380905985832214, 0.012169227004051208, 0.016050443053245544, -0.024149784818291664, 0.013469703495502472, -0.018018003553152084, -0.010835058987140656, 0.011407808400690556, 0.023219909518957138, 0.015174473635852337, -0.002580738626420498, 0.01613130047917366, -0.009676084853708744, 8.533325308235362e-05, 0.017977572977542877, -0.0010924340458586812, -0.027626706287264824, 0.02894739806652069, 0.03131924942135811, -0.00017203520110342652, -0.0064316317439079285, -0.022114841267466545, 0.024796653538942337, 0.0021377005614340305, 0.002939548809081316, 0.009332436136901379, -0.05616981163620949, 0.016899459064006805, -0.013469703495502472, 0.01970255747437477, 0.01116523239761591, 0.0006889830692671239, -0.02216874621808529, -0.019257836043834686, -0.013712279498577118, 0.007775906939059496, 0.00935938861221075, -0.032801657915115356, 0.026279062032699585, 0.0051850611343979836, 0.005636521615087986, 0.007526592817157507, -0.006293498445302248, -0.010127546265721321, -0.0011151755461469293, -0.0015379989054054022, -0.03848871961236, -0.007802859880030155, -0.006141888443380594, 0.03684459254145622, -0.0021494925022125244, -0.012351159006357193, -0.002985031809657812, -0.004555037245154381, -0.026481207460165024, -0.012694808654487133, 0.010983300395309925, 0.014015499502420425, 0.031076675280928612, 0.015956107527017593, 0.0008001637179404497, 0.010201666504144669, -0.00919767189770937, 0.007486163638532162, 0.002942918101325631, -0.01386725902557373, -0.004228233825415373, 0.004517977125942707, -0.005373731255531311, -0.007277278695255518, -0.021912693977355957, 0.002343216445297003, 0.02679116651415825, -0.008469943888485432, -0.005751071497797966, 0.0011075950460508466, -0.011219138279557228, 0.0098378024995327, -0.012533091008663177, 0.024432789534330368, 0.019554316997528076, 0.00019330270879436284, -0.020416809245944023, -0.021225396543741226, -0.005912788677960634, -0.01321365125477314, -0.0019995670299977064, -0.03417625650763512, -0.016144776716828346, 0.0013745970791205764, -0.016319971531629562, 0.02599605731666088, -0.034903984516859055, -0.005195168312638998, -0.007836551405489445, -0.0068595088087022305, 0.04228907451033592, -0.023422056809067726, 0.005885836202651262, 0.023422056809067726, 0.008732734248042107, -0.01603696495294571, 0.00444385688751936, 0.0069740586914122105, -0.0027222412172704935, -0.03026808798313141, 0.008308226242661476, -0.02288299798965454, 0.01649516448378563, -0.006485537625849247, -0.007479425054043531, -0.014433269388973713, 0.010248834267258644, -0.008941619656980038, 0.007061655633151531, -0.018826588988304138, 0.024742746725678444, 0.0035881027579307556, -0.00404967088252306, -0.012876740656793118, 0.0020905330311506987, -0.007506377995014191, -0.005100833252072334, -0.013840305618941784, 0.0034095398150384426, 0.005525341257452965, 0.003222554223611951, -0.012708284892141819, 0.007748953998088837, -0.013975069858133793, -0.0031029507517814636, 0.014662369154393673, -0.048973388969898224, -0.00741878105327487, 0.21034030616283417, -0.006512490566819906, 0.008732734248042107, 0.027451511472463608, -0.009110074490308762, 0.006259807385504246, 0.027599753811955452, 0.005946480203419924, 0.018503155559301376, -0.00962217990309, 0.002007989911362529, 0.024203689768910408, -0.0020096744410693645, 0.011104588396847248, 0.004558406304568052, -0.0064821685664355755, -0.03848871961236, 0.0005512707284651697, 0.0022589885629713535, -0.06770564615726471, 0.009938876144587994, -0.022114841267466545, -0.012580258771777153, -0.008982048369944096, 0.028974350541830063, 0.022114841267466545, -0.022734757512807846, 0.002412283094599843, 0.026144297793507576, 0.004598835948854685, -0.029594266787171364, -0.0020113589707762003, -0.01189969852566719, -0.0016222266713157296, -0.013462965376675129, 0.003995765000581741, 0.006034076679497957, 0.003018723102286458, 0.008355394005775452, 0.004440487828105688, -0.002568946685642004, -0.005107571370899677, -0.011232614517211914, -0.0009854647796601057, -0.021306253969669342, 0.041264865547418594, -0.010740724392235279, -0.00785002764314413, -0.020443761721253395, 0.006798864807933569, -0.013449489139020443, 0.025241374969482422, 0.051587820053100586, 0.01321365125477314, 0.003638639347627759, -0.009635656140744686, 0.0006990904221311212, 0.03538913652300835, -0.021090632304549217, 0.016966840252280235, -0.023368149995803833, 0.023556821048259735, -0.0069807968102395535, 0.02281561680138111, -0.013725755736231804, 0.015848295763134956, -0.0033977478742599487, -0.01596958376467228, 0.02242479845881462, -0.03361024707555771, 0.0017317227320745587, -0.03511960804462433, 0.0061823176220059395, 0.014500651508569717, -0.007802859880030155, -0.015497907996177673, 0.04196564108133316, -0.016872504726052284, -0.0012592050479725003, 0.013948117382824421, 0.008106079883873463, -0.01875920780003071, 0.0004362998006399721, -0.021791405975818634, -0.03228955343365669, -0.028650915250182152, 0.008288011886179447, -0.009642394259572029, -0.008746210485696793, -0.00026468574651516974, -0.024931417778134346, -0.013732493855059147, -0.00896857213228941, -0.006458584684878588, 0.008119556121528149, -0.013436012901365757, 0.01826057955622673, 0.014338933862745762, 0.012270300649106503, -0.009372865781188011, -0.018085384741425514, -0.02144101820886135, 0.04617029055953026, 0.0074524725787341595, -0.016023488715291023, 0.007971315644681454, 0.003453338285908103, -7.396250293822959e-05, 0.01400202326476574, -0.022546086460351944, 0.02702026627957821, -0.0035678879357874393, -0.003015353810042143, -0.022007029503583908, 0.011724504642188549, 0.029270831495523453, -0.03061847575008869, -0.03347548097372055, 0.0019052319694310427, 0.008018482476472855, 0.02121192030608654, -0.02999855950474739, 0.0029951392207294703, -0.0064316317439079285, -0.0012886847835034132, -0.0011935073416680098, -0.02235741727054119, 0.017357656732201576, 0.0011556048411875963, -0.003823940409347415, 0.011717766523361206, -0.018799636512994766, 0.005521972198039293, 0.004531453363597393, -0.021104108542203903, 0.02212831750512123, 0.0032141313422471285, -0.024877510964870453, 0.023449009284377098, -0.01944650523364544, -0.0005588512285612524, -0.010740724392235279, 0.01026231050491333, 0.001007364015094936, -0.0017401456134393811, -0.011940127238631248, 0.013678588904440403, -0.0025773695670068264, 0.01355730090290308, -0.013375368900597095, -0.04253165051341057, -0.017357656732201576, 0.014972327277064323, -0.0033707949332892895, -0.006600087508559227, 0.006037446204572916, -0.020174233242869377, -0.0042147571220994, 0.0032663526944816113, 0.024810129776597023, -0.015160997398197651, 0.02681811898946762, 0.021238872781395912, -0.006000385619699955, -0.019796893000602722, -0.011933389119803905, -0.17088128626346588, 0.021292777732014656, 0.03253212943673134, -0.004066516179591417, 0.01116523239761591, 0.017721520736813545, 0.016576023772358894, 0.00036533790989778936, -0.002880589570850134, -0.0031972858123481274, 0.02724936604499817, 0.022923428565263748, -0.02642730250954628, -0.020875008776783943, -0.015888724476099014, 0.0054478514939546585, -0.01029600203037262, 0.020767197012901306, 0.047949180006980896, 0.011906436644494534, 0.0038104639388620853, -0.00430235406383872, 0.01963517628610134, -0.01219617947936058, -0.005272658076137304, 0.01567310281097889, -0.0025487320963293314, 0.022519133985042572, 0.0275054182857275, -0.02997160702943802, -0.011299996636807919, 0.007438995875418186, 0.0049424851313233376, -0.013685327023267746, 0.011973818764090538, 0.00877316389232874, -0.010774414986371994, -0.018287532031536102, 0.00209390209056437, 0.020511144772171974, 0.01853010803461075, -0.012047939002513885, 0.02304471656680107, -0.004780767951160669, 0.0021326469723135233, 0.03894691541790962, -0.0021831835620105267, -0.00024362880503758788, 0.017263321205973625, -0.03336767107248306, 0.023139050230383873, 0.003441546345129609, 0.019621700048446655, 0.0005866463761776686, 0.04986283555626869, 0.0180045273154974, 0.006148626562207937, 0.009009001776576042, -0.010242096148431301, -0.016090871766209602, -0.005299610551446676, -0.01560571976006031, 0.008442990481853485, -0.01947345770895481, 0.007290754932910204, -0.015497907996177673, -0.015942631289362907, 0.00404967088252306, -0.03250517696142197, 0.015080138109624386, -0.021238872781395912, 0.01400202326476574, 0.02521442249417305, -0.014015499502420425, 0.002036627382040024, 0.0010326323099434376, -0.03358329460024834, 0.01681859977543354, -0.002973240101709962, 0.00677191186696291, -0.05088704451918602, 0.03102276846766472, -0.026872025802731514, -0.005599461495876312, 0.01679164730012417, 0.01888049580156803, -0.01157626323401928, -0.01570005528628826, -0.029863795265555382, -0.01355730090290308, 0.0013493287842720747, -0.03320595249533653, 0.017492420971393585, -0.009756944142282009, 0.025200946256518364, 0.0158078670501709, 0.002516725566238165, -0.008975310251116753, -0.0025638930965214968, -0.02167011797428131, -0.0005053665954619646, -0.00896857213228941, -0.00840929988771677, 0.0447956919670105, 0.023058192804455757, 0.020551573485136032, -0.0028030998073518276, 0.01976994052529335, 0.02878567948937416, 0.01878616027534008, -0.003999134059995413, 0.02285604551434517, 0.015430525876581669, 0.00837560836225748, 0.011771672405302525, 0.027788423001766205, -0.027074171230196953, -0.001122756046243012, 0.020632432773709297, -0.009736728854477406, 0.07228763401508331, -0.012142274528741837, -0.00450113182887435, -0.004090100061148405, -0.002609376097097993, -0.04042932391166687, -0.09568274021148682, 0.0006868774071335793, 0.012452232651412487, 0.010956346988677979, -0.004315830301493406, 0.004851519130170345, -0.013597729615867138, -0.004433749243617058, 0.010383598506450653, 0.010444242507219315, -0.02402849681675434, -0.04770660400390625, 0.006573134567588568, -0.013961593620479107, 0.00011749772966140881, -0.025093134492635727, 0.0007070920546539128, -0.0134427510201931, 0.00023288976808544248, 0.03420320898294449, -0.0019827215000987053, -0.004211388062685728, 0.02272128127515316, -0.027896234765648842, 0.015160997398197651, -0.009042692370712757, -0.020915437489748, -0.008746210485696793, 0.03282861411571503, 0.02082110196352005, -0.021104108542203903, -0.006805603392422199, 0.0010056794853881001, 0.01498580351471901, -0.011252828873693943, -0.022478705272078514, -0.032639943063259125, -0.0026750736869871616, 0.012890216894447803, -0.03016027621924877, 0.021953124552965164, -0.0033522648736834526, 0.01169081311672926, -0.023529866710305214, 0.009258315898478031, 0.00893488060683012, -0.009345912374556065, 0.013415797613561153, 0.021616213023662567, -0.02937864325940609, -0.017991049215197563, 0.005323194433003664, -0.03129229694604874, -0.008752948604524136, 0.015565290115773678, -0.022478705272078514, 0.02281561680138111, 0.007284016814082861, -0.009851278737187386, -0.016966840252280235, -0.02402849681675434, 0.007324445992708206, -0.0036150554660707712, 0.03606295958161354, 0.0050132363103330135, -0.005346778314560652, -0.003106319811195135, -0.019891228526830673, 0.03312509506940842, -0.016710788011550903, -0.030968863517045975, 0.0007011961424723268, -0.023462485522031784, 0.0007428888347931206, -0.0038037258200347424, 0.020335949957370758, -0.034284066408872604, 0.006569765508174896, 0.0034449154045432806, -0.003524089464917779, -0.009332436136901379, -0.010619436390697956, 0.01944650523364544, -0.004747076891362667, 0.0039149061776697636, -0.007553545758128166, 0.005858883261680603, -0.012330944649875164, 0.017398087307810783, -0.013395583257079124, -0.004470809828490019, 0.008139770478010178, -0.01136064063757658, -0.0020349426195025444, -0.0031484337523579597, 0.041291818022727966, 0.023718537762761116, 0.009217886254191399, -0.0012853156076744199, -0.002452712506055832, -0.020187709480524063, -0.004177697002887726, -0.06123695150017738, 0.028839586302638054, 0.024796653538942337, 0.0028704821597784758, -0.005700535140931606, -0.01773499697446823, 0.00573759526014328, -0.01770804449915886, -0.022505657747387886, -0.0007479425403289497, -0.02786928229033947, 0.026413826271891594, -0.00995235238224268, -0.0136583736166358, -0.025632193312048912, -0.0037734038196504116, 0.010518362745642662, -0.013368630781769753, 0.0005946480087004602, -0.0023112096823751926, 0.00987149402499199, 0.03140011057257652, 0.027303270995616913, 0.001047793310135603, -0.023395102471113205, -0.00272897956892848, 0.01695336401462555, 0.00700101163238287, -0.0010570584563538432, -0.019689081236720085, 0.007715262938290834, -0.026831595227122307, 0.009527844376862049, 0.003881215350702405, 0.011542572639882565, 0.013341677375137806, -0.012546567246317863, -0.00893488060683012, 0.016306495293974876, 0.053824909031391144, 0.004053039941936731, -0.01718246378004551, 0.0037565582897514105, -0.024257594719529152, 0.010511624626815319, 0.027464987710118294, -0.015686579048633575, 0.0052490741945803165, 0.02462145872414112, -0.015888724476099014, 0.009696300141513348, 0.018044956028461456, -0.01317995972931385, -0.023624202236533165, 0.0014150263741612434, -0.015821343287825584, 0.02455407753586769, 0.002996823750436306, 0.005828561261296272, -0.011407808400690556, 0.03700631111860275, -0.003982288762927055, 0.009056168608367443, -0.015107091516256332, 0.0397285521030426, -0.024581030011177063, -0.0030406222213059664, 0.0077017867006361485, -0.02878567948937416, -0.023192957043647766, 0.004140636883676052, -0.010565530508756638, 0.013665111735463142, 0.03509265556931496, 0.027761470526456833, 0.02324686199426651, 0.025915198028087616, -0.029863795265555382, -0.022249605506658554, 0.0273167472332716, -0.011353902518749237, 0.004103576764464378, -0.05161477252840996, 0.01633344776928425, 0.024958370253443718, -0.011825577355921268, -0.003101266222074628, 0.016158252954483032, 0.005525341257452965, 0.010969824157655239, 0.02386677823960781, -0.018597489222884178, -0.0050570350140333176, -0.01400202326476574, -0.0052625504322350025, 0.0069807968102395535, -0.014055929146707058, 0.0044169039465487, 0.059727590531110764, 0.035496946424245834, -0.006478799507021904, 0.009177456609904766, 0.002301102504134178, -0.008530587889254093, 0.0016205421416088939, -0.0073379226960241795, -0.014028975740075111, -0.024540601298213005, -2.4715584004297853e-05, 0.019823845475912094, 0.028246622532606125, -0.0020180970896035433, 0.008011744357645512, 0.021535353735089302, -0.014648891985416412, -0.0043427832424640656, -0.0066169328056275845, -0.014716275036334991, 0.0016340186120942235, 0.025659145787358284, 0.013240603730082512, 0.021993553265929222, 0.017222892493009567, 0.011879483237862587, 0.006202532444149256, 0.03617076948285103, 0.02212831750512123, 0.023516390472650528, 0.02105020172894001, 0.010504886507987976, 0.029486455023288727, 0.012856525368988514, -0.03304423391819, -0.001341748284175992, 0.010794630274176598, -0.03134620562195778, -0.004548299126327038, 0.012546567246317863, -0.005276027135550976, 0.04334023594856262, -0.00432930700480938, -0.003958704881370068, 0.008234106004238129, 0.01997208781540394, 0.026319490745663643, 0.01770804449915886, 0.008321702480316162, -0.005003129132091999, -0.007169466931372881, -0.002060211030766368, -0.02304471656680107, 0.02288299798965454, 0.006536074448376894, -0.0090494304895401, 0.003193916752934456, -0.0004552510508801788, 0.047652699053287506, -0.035200465470552444, -0.008018482476472855, 0.033556342124938965, 0.0022640421520918608, 0.02189921773970127, -0.008571016602218151, 0.004325937945395708, -0.009642394259572029, 0.013705541379749775, 0.017398087307810783, 0.006569765508174896, -0.026615973562002182, 0.011407808400690556, 0.020713292062282562, -0.014338933862745762, -0.01983732171356678, 0.019433028995990753, -0.02295038104057312, 0.006350773386657238, -0.006707898806780577, 0.016616452485322952, 0.02439235895872116, -0.014945373870432377, 0.0044067963026463985, -0.019621700048446655, -0.01846272498369217, 0.015659624710679054, -0.01803147979080677, -0.013489918783307076, -0.022209176793694496, -0.01613130047917366], "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41": [0.008593003265559673, -0.04104040190577507, 0.00016063173825386912, 0.0030461791902780533, -0.009548534639179707, 0.023108944296836853, -0.013045372441411018, -0.014421066269278526, -0.011622240766882896, -0.032691363245248795, 0.010314315557479858, -0.004140635021030903, 0.029926422983407974, 0.015925519168376923, -0.0018043274758383632, 0.002729363040998578, 0.03125467896461487, -0.016670968383550644, 0.035293661057949066, -0.02492513135075569, 0.0049470760859549046, -0.006349877454340458, -0.0014146604808047414, 0.015722215175628662, -0.021604491397738457, 0.03217632696032524, 0.029086098074913025, -0.013716276735067368, 0.005011456087231636, -0.009006389416754246, -0.00853201188147068, 0.007840776816010475, 0.011629018001258373, -0.0014993706718087196, -0.03453465923666954, 0.009602749720215797, 0.01139860600233078, -0.019923841580748558, 0.015789983794093132, -0.005865334998816252, 0.007664579898118973, -0.008911513723433018, -0.0101177878677845, -0.0022736219689249992, -0.015180069953203201, 0.029655350372195244, 0.00849812850356102, -0.010795469395816326, -0.022607460618019104, 0.0016408367082476616, 0.024057699367403984, 0.008030528202652931, -0.032393183559179306, 0.012625209987163544, -0.01611527055501938, 0.0016755679389461875, 0.0024294888135045767, 0.016874274238944054, -0.020018717274069786, 0.020560862496495247, -0.0039068348705768585, 0.0023295306600630283, 0.006221117917448282, 0.014787014573812485, -0.039983220398426056, -0.004506583325564861, -0.009900929406285286, -0.010463405400514603, -0.009575641714036465, -0.0045709628611803055, 0.037516456097364426, 0.0001902803051052615, 0.0023684974294155836, -0.011798437684774399, 0.0222550667822361, -0.031037820503115654, -0.03263714909553528, -0.0034324578009545803, -0.015613785944879055, 0.01424486842006445, 0.004574351478368044, -0.026727765798568726, -0.0031444430351257324, 0.002476926427334547, 0.02431521937251091, -0.008721763268113136, -0.0001431602577213198, 0.03678456321358681, -0.005966986995190382, -0.0241119135171175, 0.022973408922553062, 0.02239060215651989, 0.028842132538557053, 0.02653801441192627, -0.010226216167211533, 0.025263972580432892, -0.02114366739988327, 0.02775784209370613, -0.006041531916707754, -0.02565702795982361, -0.02556215226650238, 0.003247789340093732, -0.014149993658065796, -0.001306231482885778, -0.018934426829218864, 0.014746353030204773, -0.015369820408523083, -0.009975474327802658, 0.009487543255090714, -0.018893765285611153, -0.022783657535910606, 0.013438427820801735, -0.016440557315945625, -0.043181877583265305, -0.015911966562271118, -0.01303181890398264, 0.02970956452190876, -0.0097789466381073, -0.0384381040930748, -0.009562088176608086, 0.0005069905892014503, 0.020994577556848526, -0.012347360141575336, -0.009989027865231037, 0.023623982444405556, 0.0024837034288793802, -0.008559119887650013, -0.025684135034680367, -0.010917452163994312, -0.022919194772839546, 0.03315218910574913, 0.00897250510752201, 0.01803988590836525, -0.0017077578231692314, -0.011371498927474022, 0.017280882224440575, -0.03629663214087486, 0.001247781328856945, -0.011446043848991394, -0.04242287203669548, 0.01618303917348385, 0.011981411837041378, -0.003052955958992243, -0.03312508016824722, -0.017240222543478012, 0.02873370237648487, 0.003984768409281969, 0.013878921046853065, -0.008138956502079964, -0.0004013146099168807, 0.0074544986709952354, -0.005123273469507694, 0.006092358380556107, -0.0215773843228817, 0.024965792894363403, -0.01205595675855875, 0.008593003265559673, -0.006654833909124136, 0.003815347794443369, 0.0012037320993840694, 0.009175810031592846, 0.019097069278359413, 0.007549373898655176, 0.008023750968277454, 0.011486704461276531, 0.028679488226771355, 0.016752291470766068, -0.01912417635321617, -0.03485994413495064, -0.021360525861382484, 0.001999160973355174, 0.02300051599740982, -0.03827546164393425, 0.0031918806489557028, -0.008538789115846157, 0.005157157778739929, 0.02010003849864006, 0.028218664228916168, -0.022295726463198662, 0.024301664903759956, -0.03453465923666954, -0.021740028634667397, 0.024274557828903198, 0.034182265400886536, -0.03206789866089821, -0.0101177878677845, -0.007054666057229042, -0.0013121610973030329, 0.022607460618019104, 0.012008518911898136, 0.0021313088946044445, 0.017389312386512756, -0.005177488084882498, -0.01188653614372015, -0.6336594820022583, -0.016061056405305862, -0.021306311711668968, -6.01442479819525e-05, -0.0215773843228817, 0.003923777025192976, 0.005136827006936073, 0.005841616075485945, -0.012740415520966053, 0.01485478226095438, -0.019801858812570572, 0.029926422983407974, -0.01351974904537201, -0.021536722779273987, -0.014461726881563663, -0.0070478892885148525, -0.0015552794793620706, -0.03388408198952675, 0.0003983497736044228, -0.014109332114458084, -0.0018060216680169106, 0.0037577447947114706, 0.017186006531119347, 0.005617981310933828, -0.010734478011727333, -0.0015298663638532162, 0.008030528202652931, 0.013702723197638988, 0.007881438359618187, 0.03355879709124565, -0.029546920210123062, 0.05903962627053261, 0.011866206303238869, 0.005146992392838001, 0.05210016667842865, 0.004154188558459282, -0.00035641819704324007, 0.012984381057322025, 0.011608687229454517, 0.019801858812570572, -0.02778494916856289, -0.020560862496495247, 0.02066929079592228, 0.017484188079833984, 0.017619723454117775, -0.007501936051994562, 0.012557441368699074, -0.002022879896685481, 0.008416806347668171, 0.020696397870779037, 0.003447705414146185, 0.002431183122098446, -0.004438815172761679, -0.002505728043615818, -0.0002033045020652935, 0.001767055015079677, 0.028842132538557053, -0.013099586591124535, 0.005845004227012396, -0.004130469635128975, 0.006919129751622677, 0.018256744369864464, -0.0056450883857905865, -0.0036662579514086246, -0.0024277945049107075, 0.016467664390802383, -0.005990705918520689, 0.02316316030919552, 0.009853491559624672, -0.012347360141575336, 0.010178778320550919, 0.01658964715898037, 0.0009851797949522734, -0.016765844076871872, 0.022973408922553062, 0.005685749463737011, 0.029086098074913025, -0.02039821818470955, 0.014149993658065796, 0.02104879356920719, -0.001850071013905108, -0.02617206610739231, -0.03830256685614586, -0.021699367091059685, 0.016210146248340607, -0.022553246468305588, -0.015424034558236599, 0.03274557739496231, -0.0018856492824852467, -0.003737414488568902, -0.0027259746566414833, -0.0004976724740117788, 0.004371047019958496, -0.0031173357274383307, 0.02660578303039074, 0.013228346593677998, -0.012028849683701992, -0.003290144493803382, 0.020181359723210335, -0.000631938164588064, -0.0077730086632072926, -0.014976765029132366, -0.005905995611101389, -0.02789337746798992, 0.004252452403306961, -0.017375757917761803, -0.02998063713312149, -0.014841228723526001, 0.03827546164393425, -0.018026333302259445, 0.023596875369548798, -0.014000903815031052, -0.016955595463514328, -0.018094100058078766, 0.006505744066089392, -0.027364786714315414, 0.03233896940946579, -0.0038424551021307707, 0.02404414676129818, 0.0097789466381073, 0.017348650842905045, -0.008538789115846157, 0.007332515902817249, -0.009480766952037811, 0.01814831607043743, 0.049253903329372406, -0.00488269655033946, 0.0016594730550423265, -0.016955595463514328, -0.004330385942012072, 0.005855169612914324, -0.0028242385014891624, 0.00959597248584032, 0.009202917106449604, 0.022770104929804802, -0.014448173344135284, 0.026226280257105827, 0.012164385989308357, 0.028354201465845108, -0.012591325677931309, -0.017592616379261017, -0.006295662838965654, 0.017823027446866035, 0.013180908747017384, -0.023583322763442993, -0.022946301847696304, -0.011202078312635422, -0.007169872056692839, -0.034209370613098145, 0.001634059939533472, -0.015505356714129448, -0.0015823866706341505, -0.008816638961434364, 0.011547695845365524, 0.010368529707193375, -0.0195578932762146, -0.014759906567633152, 0.009562088176608086, 0.016711629927158356, -0.011656125076115131, 0.017999226227402687, 0.02134697325527668, -0.026985283941030502, 0.0074341678991913795, 0.023488447070121765, -0.0074544986709952354, -0.028381308540701866, 0.03965793177485466, 0.00033862906275317073, -0.03263714909553528, -0.0009826384484767914, -0.016535433009266853, 0.003417209954932332, 0.041121724992990494, -0.03288111463189125, 0.005570543464273214, 0.0033155574928969145, -0.03442623093724251, -0.020723504945635796, 0.013716276735067368, -0.02091325633227825, 0.005570543464273214, -0.01892087236046791, -0.017213115468621254, 0.023393571376800537, 0.010565057396888733, -0.029926422983407974, 0.011534142307937145, 0.009670517407357693, 0.025467276573181152, -0.00714954175055027, 0.005577320232987404, -0.00579079007729888, 0.004205015022307634, -0.0012986075598746538, -0.015247837640345097, -0.0025023396592587233, 0.023312250152230263, 0.011337614618241787, 0.008965728804469109, 0.0063837612979114056, 0.007678133435547352, 0.01932748220860958, -0.003105476265773177, 0.003825512947514653, -0.04160965606570244, -0.0006077957805246115, 0.001066501485183835, 0.019883180037140846, -0.019110623747110367, -0.00871498603373766, -0.013390989974141121, -0.001303690136410296, -0.003974603023380041, 0.013987349346280098, 0.017511295154690742, 0.020791273564100266, 0.0032782850321382284, -0.007800116203725338, 0.0010554891778156161, 0.006915741600096226, -0.008254162967205048, 0.0021584162022918463, -0.0023075060453265905, -0.010998773388564587, 0.009806053712964058, 0.009202917106449604, 0.016670968383550644, 0.01915128342807293, -0.010829352773725986, 0.00971117801964283, -0.0031495254952460527, -0.007562927436083555, 0.02005937695503235, 0.0031071705743670464, -0.004259229172021151, 0.022783657535910606, -0.016711629927158356, 0.03757067397236824, -0.03263714909553528, -0.004452368710190058, 0.0034510940313339233, 0.01043629739433527, -0.01539692748337984, -0.007522266823798418, 0.014461726881563663, 0.013451981358230114, -0.001452780095860362, 0.017253775149583817, 0.02336646430194378, -0.01770104467868805, 0.006604007910937071, -0.003852620255202055, -0.0031952690333127975, 0.007440944667905569, -0.04353427141904831, 0.0007149541634134948, 0.011168194003403187, 0.022133084014058113, 0.025535045191645622, 0.009365560486912727, -0.004415096249431372, 0.008471020497381687, 0.009602749720215797, 0.0640815794467926, 0.015098747797310352, 0.016914933919906616, 0.0002494715736247599, -0.010246546939015388, -0.03551052138209343, -0.02562992088496685, -0.011120756156742573, 0.014095778577029705, 3.168691182509065e-05, -0.000510379031766206, 0.0005751823191531003, -0.008030528202652931, 0.003971214406192303, 0.019734090194106102, 0.002788660116493702, -0.020479539409279823, -0.022675229236483574, 0.029086098074913025, -0.0023075060453265905, 0.004587905015796423, -0.023420678451657295, -0.005014844238758087, -0.017416419461369514, -0.021604491397738457, 0.043181877583265305, -0.01946301758289337, 0.010585388168692589, 0.02077772095799446, -0.016372788697481155, -0.003373160492628813, 0.014610816724598408, 0.030468568205833435, -0.021062346175312996, 0.01892087236046791, 0.00480476301163435, 0.02066929079592228, 0.016752291470766068, -0.024803148582577705, 0.020479539409279823, -0.00843035988509655, 0.006925906520336866, -0.01629146747291088, -0.009941590018570423, 0.008491351269185543, -0.014000903815031052, 0.00041402113856747746, -0.02012714557349682, -0.00542823038995266, -0.008138956502079964, -0.005624758079648018, 0.011547695845365524, -0.016332129016518593, 0.011791661381721497, 0.023393571376800537, -0.013011488132178783, -0.00407964363694191, -0.007935652509331703, -0.016603201627731323, 0.009887375868856907, 0.09232734888792038, 0.0063837612979114056, -0.014407512731850147, 0.008118626661598682, 0.015546017326414585, 0.014529495500028133, -0.0031783271115273237, -0.03537498414516449, 0.026781979948282242, 0.012164385989308357, 0.018256744369864464, -0.023380016908049583, 0.03122757188975811, 0.004384600557386875, 0.004238898865878582, -0.019950948655605316, -0.0022888698149472475, 0.007488382514566183, 0.0059737637639045715, 0.009047050029039383, 0.002983493497595191, 0.007088550366461277, 0.012984381057322025, 0.019923841580748558, -0.02272944338619709, -0.015600232407450676, 0.04272105172276497, 0.003527333028614521, 0.01631857454776764, -0.02599586918950081, -0.018554924055933952, 0.03494126722216606, 0.015451142564415932, 0.0241119135171175, -0.02236349508166313, 0.005770459305495024, 0.02087259478867054, 0.014665031805634499, -0.020886149257421494, 0.007440944667905569, 0.016616754233837128, 0.015830643475055695, 0.012110171839594841, -0.019869627431035042, 0.0016188120935112238, -0.0060449205338954926, -0.008843746036291122, -0.02862527407705784, -0.006925906520336866, -0.005035175010561943, 0.04334452003240585, -0.003900058101862669, -0.012164385989308357, -0.021116560325026512, 0.04478120431303978, 0.005221537314355373, 0.004903026856482029, -0.0050283982418477535, -0.00479798624292016, 0.01953078620135784, 0.0007242722786031663, 0.0031156414188444614, -0.0016577787464484572, -0.008674325421452522, -0.001554432325065136, -0.005570543464273214, -0.02481670305132866, -0.0012943720212206244, -0.023488447070121765, 0.012028849683701992, -0.013126693665981293, -0.009135149419307709, -0.01368916966021061, 0.009128372184932232, -0.004194849636405706, 0.0033494415692985058, 0.003412127261981368, -0.010646379552781582, 0.02010003849864006, -0.021306311711668968, -0.012991157360374928, -0.029817994683980942, 0.002566719427704811, -0.015898412093520164, -0.014624370262026787, -0.021468956023454666, 0.007318961899727583, 0.00905382726341486, -0.027839163318276405, 0.015871305018663406, -0.019246159121394157, 0.01040241401642561, -0.00805763527750969, -0.014610816724598408, 0.011249516159296036, -0.0005531576462090015, 0.007312185131013393, -0.015437589026987553, -0.011588356457650661, -0.013736607506871223, 0.011168194003403187, -0.043724022805690765, -0.004601458553224802, -0.0050046793185174465, 0.016345681622624397, -0.01770104467868805, 0.019341034814715385, 0.027229249477386475, -0.014773460105061531, -0.03317929431796074, -0.0069868979044258595, -0.026822641491889954, 0.010463405400514603, -0.009467213414609432, 0.0035070027224719524, 0.0013587517896667123, 0.009216470643877983, 0.0022854814305901527, 0.003276590956375003, -0.008647218346595764, -0.005604427307844162, -0.04242287203669548, 0.014217761345207691, 0.0011207161005586386, -0.01713179238140583, -0.0026700657326728106, 0.012875951826572418, -0.013512972742319107, 0.02060152217745781, -0.005424841772764921, 0.019910287111997604, 0.010348198935389519, 0.0024565961211919785, -0.017307989299297333, -0.03925132378935814, 0.009568865410983562, -0.025467276573181152, 0.006024590227752924, -0.0042219567112624645, 0.01431263703852892, -0.005624758079648018, -0.003225764725357294, -0.015017425641417503, -0.042368657886981964, -0.006539628375321627, -0.025751903653144836, -0.03082096204161644, -0.003791628871113062, 0.007569704204797745, 0.006102523300796747, -0.007671356666833162, -0.01776881329715252, -0.02724280394613743, -0.01424486842006445, -0.009318122640252113, -0.03480572998523712, 0.0073867300525307655, -0.022539691999554634, 0.021292759105563164, -0.008823415264487267, 0.021740028634667397, -0.017172453925013542, 0.006492190528661013, 0.014515941962599754, 0.005933103151619434, 0.0042321220971643925, -0.02703949809074402, -0.019978055730462074, -0.03610688075423241, -0.0071427649818360806, 0.006858138367533684, 0.016576094552874565, 0.025792565196752548, -0.021807797253131866, -0.006444752682000399, 0.023962823674082756, -0.01611527055501938, 0.005360462237149477, -0.017687492072582245, -0.026903962716460228, -0.02012714557349682, 0.008220278657972813, -0.028218664228916168, 0.0049098036251962185, -0.011764554306864738, -0.007569704204797745, 0.03982057422399521, 0.005011456087231636, 0.00949432048946619, -0.019246159121394157, 0.01932748220860958, -0.01905640959739685, 0.011439266614615917, -0.005601039156317711, 0.037923067808151245, -0.008416806347668171, 0.03935975208878517, 0.0042558410204946995, 0.002361720660701394, 0.006563346832990646, 0.009487543255090714, -0.00969762448221445, -0.006027978379279375, -0.010558280162513256, -0.0237730722874403, 0.004377823788672686, -0.02100813202559948, -0.01803988590836525, 0.032826900482177734, -0.030495675280690193, -0.02252613939344883, -0.004811539780348539, -0.00011584121239138767, -0.03410094231367111, -0.020655738189816475, -0.01912417635321617, -0.0006586218951269984, 0.01932748220860958, -0.012455789372324944, -0.013397766277194023, -0.00516732269898057, -0.017619723454117775, 0.04329030588269234, 0.008138956502079964, 0.015451142564415932, 0.00969762448221445, -0.027635859325528145, 0.0037848521023988724, 0.012936943210661411, -0.01161546353250742, -0.01423131488263607, 0.01645411178469658, 0.015844197943806648, 0.00580095499753952, 0.0033799372613430023, -0.0015705273253843188, -0.006034755147993565, -0.039332643151283264, -0.0337214395403862, -0.013106363825500011, -0.009799277409911156, -0.021699367091059685, -0.0027446108870208263, -0.00505889393389225, -0.02050664834678173, 0.003207128494977951, -0.0019551117438822985, 0.018595585599541664, -0.02010003849864006, 0.009236801415681839, -0.023244481533765793, 0.005824673920869827, 0.015247837640345097, 0.0367574542760849, 0.041094616055488586, -0.008803085424005985, -0.0337214395403862, -0.0134045435115695, -0.02943849191069603, -0.011703562922775745, 0.006305828224867582, 0.026985283941030502, 0.006651445757597685, 0.004252452403306961, -0.002165192971006036, -0.0037204723339527845, -0.0013087727129459381, 0.0032189879566431046, -0.019435910508036613, 0.024369433522224426, 0.0011080094845965505, 0.024870917201042175, 0.019856072962284088, 0.004960630089044571, 0.011629018001258373, 0.021021686494350433, -0.010693816468119621, 0.012903058901429176, -0.02488447166979313, 0.0024006874300539494, -0.003811959410086274, 0.008593003265559673, 0.006573512218892574, -0.02039821818470955, -0.011866206303238869, -0.017619723454117775, -0.016399895772337914, 0.006034755147993565, -0.0037103071808815002, -0.03431779891252518, -0.019137730821967125, 0.007474828977137804, -0.0320407897233963, 0.025385955348610878, -0.009670517407357693, 0.015911966562271118, 0.009717955254018307, 0.029736671596765518, -0.02549438551068306, 0.025114882737398148, -0.01919194497168064, -0.0007348610670305789, -0.03870917856693268, 0.008992835879325867, 0.011378275230526924, -0.020357556641101837, 0.012625209987163544, -0.02073705941438675, -0.02792048454284668, 0.00026450763107277453, 0.03678456321358681, 0.014963211491703987, 0.0030343197286128998, 0.014055117964744568, 0.011818768456578255, 0.0014790402492508292, 0.01767393760383129, -0.012557441368699074, -0.015180069953203201, 0.030468568205833435, 0.022268619388341904, 0.010476958937942982, 0.004808151628822088, -0.02590099349617958, 0.024640506133437157, 0.02728346362709999, 0.006814089138060808, 0.015857750549912453, -0.04150122404098511, 0.0005925479345023632, -0.008911513723433018, 0.009169032797217369, 0.00760358851402998, -0.005950045306235552, -0.011235962621867657, -0.030875178053975105, -0.015329159796237946, 0.0026056859642267227, 0.013187685050070286, -0.022675229236483574, 0.013973795808851719, 0.015315606258809566, -0.01351974904537201, 0.014149993658065796, 4.018440449726768e-05, -0.015830643475055695, 0.008687878958880901, -0.003374854801222682, -0.0333961546421051, -0.015505356714129448, 0.0036594809498637915, 0.02506066858768463, 0.0010885262163355947, -0.01602039486169815, -0.018568478524684906, -0.0271479282528162, -0.04171808436512947, -0.023176712915301323, 0.00578401330858469, 0.020479539409279823, 0.039603717625141144, 0.016006840392947197, 0.010083903558552265, 0.01932748220860958, -0.003889892715960741, 0.016074609011411667, -0.008850522339344025, -0.016481218859553337, -0.0033951851073652506, 0.0008161828736774623, 0.00661756144836545, 0.006058474071323872, -0.01358751766383648, 0.0045845163986086845, 0.0077594551257789135, -0.006038143765181303, 0.0020296566653996706, 0.007278301287442446, -0.012198270298540592, -0.0019042855128645897, -0.004581128247082233, 0.0061533497646451, 0.010815799236297607, -0.012042403221130371, 0.0013367270585149527, -0.023041177541017532, -0.014041564427316189, -0.019923841580748558, 0.0024735380429774523, -0.023325802758336067, -0.016210146248340607, 0.006512520834803581, -0.02728346362709999, 0.01858203113079071, -0.019544338807463646, -0.0108767906203866, -0.01649477146565914, -0.00871498603373766, 0.049118366092443466, 0.011629018001258373, 0.005207983776926994, 0.04494385048747063, 0.019774751737713814, -0.0284897368401289, -0.0013291031355038285, 0.021563831716775894, 0.024084806442260742, -0.03139021620154381, 0.027161480858922005, -0.00742739113047719, 0.015342713333666325, -0.0011215631384402514, -0.0014883583644405007, -0.013553633354604244, 0.008132180199027061, -0.0060788048431277275, -0.009318122640252113, -0.021130114793777466, 0.025453723967075348, 0.02329869568347931, -0.00488947331905365, 1.6981750377453864e-05, -0.00025582482339814305, -0.003273202572017908, 0.004747160244733095, -0.012354137375950813, -0.01638634316623211, 0.0099483672529459, 0.004008487332612276, 0.007346069440245628, 0.00443542655557394, -0.00542823038995266, 0.0020838710479438305, 0.026632890105247498, -0.03382986783981323, -0.006315993145108223, 0.214472696185112, -0.0021956886630505323, 0.009304569102823734, 0.022417709231376648, 0.005187653005123138, 0.010348198935389519, 0.026646442711353302, -0.002383745275437832, -0.004364269785583019, -0.009297792799770832, -0.005021621007472277, 0.024762488901615143, 0.008626887574791908, 0.009717955254018307, 0.009033496491611004, 0.0004913192242383957, -0.03632373735308647, -0.003574770875275135, -0.001501064863987267, -0.05611204355955124, 0.008660771884024143, -0.022715888917446136, -0.0101177878677845, -0.012537110596895218, 0.026809087023139, 0.015830643475055695, -0.010924228467047215, -0.006288886070251465, 0.02522331289947033, 0.005536659155040979, -0.03193236142396927, -0.008084742352366447, -0.0110462112352252, -0.015044533647596836, -0.020411772653460503, 0.0016899686306715012, 0.013241900131106377, 0.008681102655827999, 0.022742997854948044, -3.8834336010040715e-05, 0.011005550622940063, -0.00661078467965126, -0.002866593422368169, 0.004906415473669767, -0.010178778320550919, 0.043724022805690765, -0.007529043592512608, -0.022214405238628387, -0.011276623234152794, 0.011825545690953732, -0.024640506133437157, 0.014610816724598408, 0.06218406930565834, 0.023054730147123337, -0.0019178391667082906, -0.021441848948597908, -0.01274719275534153, 0.023867947980761528, -0.016196591779589653, 0.0023905220441520214, -0.018188975751399994, 0.009785723872482777, -0.013662062585353851, 0.02431521937251091, -0.013878921046853065, 0.018934426829218864, -0.004791209474205971, -0.02309539169073105, 0.01016522478312254, -0.03092939220368862, -0.015505356714129448, -0.006905576214194298, 0.01429908350110054, 0.002922502113506198, -0.011933973990380764, -0.0027073381934314966, 0.02596876211464405, -0.02542661689221859, 0.01749774068593979, -0.009873822331428528, 0.019029300659894943, -0.02943849191069603, 0.017186006531119347, -0.02205176092684269, -0.017091132700443268, -0.03149864450097084, 0.0031156414188444614, -0.001578151248395443, -0.01274719275534153, 0.004055924713611603, -0.02356976829469204, -0.005994094535708427, -0.005651865154504776, -0.015288498252630234, -0.0030224602669477463, -0.0033409707248210907, 0.017660384997725487, -0.003761133411899209, 0.010836130008101463, 0.0035679941065609455, -0.0002962739672511816, -0.01932748220860958, 0.04713953658938408, -0.0037340261042118073, -0.02272944338619709, 0.014122886583209038, -0.000651845068205148, -0.0009377420064993203, 0.01656254008412361, -0.03442623093724251, 0.015573125332593918, 0.011242738924920559, 0.010971666313707829, -0.021116560325026512, 0.004709887783974409, 0.027608752250671387, -0.014082225039601326, -0.021740028634667397, 0.011906866915524006, 0.0165218785405159, 0.0003604419471230358, -0.022810764610767365, -0.012740415520966053, -0.0012088146759197116, 8.343955414602533e-05, -0.015505356714129448, -0.024464309215545654, 0.01638634316623211, -0.00589244207367301, -0.026917515322566032, 0.02306828461587429, -0.010964889079332352, 0.000353876908775419, 0.005489221774041653, -0.008775977417826653, 0.021103007718920708, 0.005648477002978325, -0.03231186047196388, 0.03551052138209343, -0.0030597327277064323, 1.868919025582727e-05, -0.004750548396259546, 0.01286239828914404, 0.007556150667369366, -0.0033020039554685354, -0.02239060215651989, 0.0192190520465374, -0.018283851444721222, 0.001887343474663794, -0.02535884827375412, -0.029953530058264732, -0.00904027372598648, 0.01240835152566433, -0.011324061080813408, -0.008620111271739006, 0.0063227699138224125, -0.025480831041932106, -0.01760617084801197, -0.003100393572822213, 0.026009423658251762, -0.022851426154375076, 0.00895217526704073, 0.024708274751901627, -0.0008390546427108347, -0.008911513723433018, -0.01740286499261856, -0.17272751033306122, 0.0020110204350203276, 0.013140248134732246, -0.011283399537205696, 0.019774751737713814, 0.026700658723711967, 0.01969342865049839, 0.0009521427564322948, -0.004401542712002993, -0.00650913268327713, 0.029736671596765518, 0.014543049037456512, -0.04391377419233322, -0.01814831607043743, -0.011933973990380764, 0.012157609686255455, -0.017931457608938217, 0.015844197943806648, 0.04190783575177193, 0.002932667499408126, 0.012530334293842316, -0.011933973990380764, 0.017917903140187263, -0.016332129016518593, -0.008992835879325867, 0.018419388681650162, 0.006651445757597685, 0.009819607250392437, 0.011208854615688324, -0.032284755259752274, 0.005553601309657097, 0.013255453668534756, 0.0038051826413720846, -0.015789983794093132, 0.014434619806706905, 0.01946301758289337, -0.011696785688400269, -0.002105895895510912, -0.001919533358886838, 0.0003343935532029718, 0.010104233399033546, -0.013892474584281445, 0.025345293805003166, 0.0022278784308582544, -0.00424228748306632, 0.0458654947578907, -0.018432941287755966, 0.008762423880398273, 0.007007228676229715, -0.027324125170707703, 0.016237253323197365, 0.011391828767955303, 0.023380016908049583, 0.012692977674305439, 0.04296501725912094, 0.013567186892032623, 0.002951303729787469, 0.011276623234152794, -0.021252097561955452, -0.02413902059197426, -0.013987349346280098, -0.012726861983537674, 0.023732412606477737, -0.0008348191040568054, 0.015762876719236374, -0.015302051790058613, -0.019978055730462074, 0.014868335798382759, -0.03521234169602394, 0.009690848179161549, 0.008775977417826653, 0.013655285350978374, 0.02300051599740982, -0.01379082165658474, -0.009460436180233955, -0.009175810031592846, -0.025440169498324394, 0.011791661381721497, -0.012828513979911804, -0.013187685050070286, -0.047871433198451996, 0.01976119726896286, -0.004716664552688599, -0.002639570040628314, 0.0032884504180401564, 0.01669807732105255, 0.0005565460887737572, -0.032528720796108246, -0.012503227218985558, -0.001775525975972414, -0.0038729507941752672, -0.02590099349617958, -0.012537110596895218, -0.01611527055501938, 0.011256292462348938, 0.0009589195833541453, 0.015586678870022297, -0.009358784183859825, -0.0017467244761064649, -0.012923389673233032, 0.005851781461387873, -0.014136440120637417, -0.023190267384052277, 0.0290047749876976, 0.041528332978487015, 0.004940299317240715, 0.004154188558459282, 0.022905640304088593, 0.030441461130976677, 0.02037111110985279, 0.006095746532082558, 0.025873886421322823, 0.026632890105247498, -0.0017873854376375675, 0.00966374110430479, 0.02903188392519951, -0.016711629927158356, -0.018839551135897636, 0.029465598985552788, -0.01229314599186182, 0.06478636711835861, -0.00815928727388382, -0.00045658802264370024, -0.009867045097053051, -0.0029394442681223154, -0.029330063611268997, -0.11385051906108856, -0.00212114374153316, -0.004401542712002993, 0.020655738189816475, -0.0005019080126658082, 0.0007852636626921594, 0.00516054593026638, 0.023732412606477737, 0.009047050029039383, 0.001261334982700646, -0.009724732488393784, -0.05321156606078148, -0.0016442252090200782, 0.0024277945049107075, 0.004408319480717182, -0.028950560837984085, -0.0006954708369448781, -0.016535433009266853, -0.016616754233837128, 0.03537498414516449, 0.002343084430322051, -0.012415128760039806, 0.01396024227142334, -0.015505356714129448, 0.010395636782050133, 0.007617142051458359, -0.04020007699728012, 0.0018466825131326914, 0.02889634668827057, 0.01492255087941885, -0.03740802779793739, -0.011764554306864738, 0.013641731813549995, 0.00670227175578475, -0.007983090355992317, 0.005838227458298206, -0.026727765798568726, 0.0007145306444726884, 0.02701239101588726, -0.032528720796108246, 0.02010003849864006, -0.014366851188242435, 0.017985671758651733, -0.016169484704732895, 0.003937330562621355, 0.0026615948881953955, -0.016616754233837128, 0.016874274238944054, 0.012177939526736736, -0.02927584759891033, -0.01982896588742733, 0.01679295115172863, -0.03895314410328865, -0.008911513723433018, 0.017145346850156784, -0.030089067295193672, 0.021658705547451973, -9.402833529748023e-05, -0.014163547195494175, -0.013614624738693237, -0.0034222924150526524, 0.012191493064165115, -0.0057297986932098866, 0.03523944690823555, 0.003025848651304841, -0.001961888512596488, -0.0070343357510864735, -0.025711242109537125, 0.020072931423783302, -0.02016780711710453, -0.020615076646208763, 0.008362592197954655, -0.018134761601686478, 0.018094100058078766, -0.01658964715898037, 0.021536722779273987, -0.031688395887613297, -0.006749709602445364, 0.01547824963927269, 0.010138117708265781, -0.007190202362835407, -0.025914547964930534, 0.011263069696724415, 0.0018720956286415458, 0.01611527055501938, 0.007908545434474945, 0.006136407610028982, -0.013492641970515251, 0.010083903558552265, -0.015505356714129448, 0.0019517232431098819, 0.0025345294270664454, -0.002007632050663233, -0.020831935107707977, 0.01085646077990532, 0.027202142402529716, 0.01767393760383129, 0.015085194259881973, -0.0003102511400356889, -0.010754807852208614, -0.023759519681334496, -0.0014172018272802234, -0.06256357580423355, 0.024057699367403984, 0.022377049550414085, -0.0016205062856897712, 0.009128372184932232, -0.004567574709653854, 0.003811959410086274, -0.00732573913410306, -0.018731120973825455, 0.007684910204261541, -0.014732799492776394, 0.03689299151301384, -0.030441461130976677, -0.027337679639458656, -0.014529495500028133, 0.0036831998731940985, 0.0037035304121673107, -0.022471925243735313, -0.002993658883497119, 0.00014284258941188455, 0.02295985445380211, 0.0038221245631575584, 0.018094100058078766, 0.0031664676498621702, -0.01740286499261856, 0.005665418691933155, -0.0014188960194587708, -0.0014248257502913475, 0.010585388168692589, -0.013546857051551342, 0.013546857051551342, -0.03041435405611992, 0.0037035304121673107, 0.0096095260232687, 0.00940622203052044, 0.012354137375950813, -0.009907705709338188, -0.010382083244621754, 0.01429908350110054, 0.0441848449409008, -0.016603201627731323, -0.01860913820564747, -0.0016704853624105453, -0.013668839819729328, 0.013086033053696156, 0.03456176444888115, -0.010375306010246277, 0.003068203805014491, 0.02306828461587429, -0.002964857267215848, 0.010090679861605167, 0.019720537588000298, 0.0008627735078334808, -0.017023364081978798, -0.015695108100771904, -0.020655738189816475, 0.012184716761112213, -0.015383373945951462, -0.005102943163365126, -0.04106751084327698, 0.026985283941030502, -0.01749774068593979, 0.010205886326730251, -0.004950464703142643, 0.016399895772337914, -0.03242029249668121, -0.00017884443514049053, -0.00831515435129404, -0.025955207645893097, 0.00035345336073078215, 0.011263069696724415, -0.0072511937469244, -0.00017238527652807534, 0.01808054745197296, 0.0025785788893699646, 0.011710339225828648, 0.005872111767530441, -0.0004832717531826347, -0.02592810057103634, 0.008464244194328785, -0.0074544986709952354, -0.004496417939662933, -0.042341552674770355, 0.005736575461924076, 0.018121207132935524, -0.010422743856906891, 0.009331677109003067, 0.006373596377670765, -0.0024972569663077593, 0.00452013686299324, 0.015180069953203201, -0.0123066995292902, 0.01581709086894989, -0.014353297650814056, 0.0028140731155872345, 0.013343552127480507, -0.00814573373645544, -0.016806505620479584, 0.03521234169602394, 0.022946301847696304, -0.015017425641417503, 0.008958951570093632, 0.00588566530495882, -0.02320381999015808, 0.006566735450178385, 0.0036560925655066967, -0.020086484029889107, -0.020425325259566307, -0.0034460113383829594, 0.021794242784380913, 0.018487155437469482, -0.015654446557164192, 0.014488833956420422, 0.01658964715898037, -0.006251613609492779, -0.007834000512957573, 0.01112753339111805, -0.019666321575641632, -0.000126959421322681, 0.031688395887613297, 0.004408319480717182, 0.026226280257105827, 0.021563831716775894, 0.004347328096628189, 0.017023364081978798, 0.02182134985923767, 0.007203756365925074, 0.024261003360152245, 0.015600232407450676, -0.0017704433994367719, 0.014624370262026787, 0.002585355658084154, -0.03580870106816292, 0.010964889079332352, 0.006915741600096226, -0.04312766343355179, 0.003425680799409747, 0.01539692748337984, -0.010578610934317112, 0.03686588257551193, 0.0007945817778818309, -0.01328933797776699, 0.017755260691046715, 0.024233896285295486, 0.02941138483583927, 0.012442235834896564, -0.00424906425178051, -0.0010283819865435362, -0.016467664390802383, 0.004598070401698351, -0.024423647671937943, 0.035049695521593094, -0.00480476301163435, -0.00398815656080842, 0.004347328096628189, -0.001015675370581448, 0.04101329669356346, -0.017890796065330505, -0.027947591617703438, 0.03759777918457985, -0.002551471581682563, 0.024274557828903198, -0.0006425269530154765, 0.00031681617838330567, -0.010971666313707829, 0.020154252648353577, 0.016372788697481155, -0.002932667499408126, -0.039712145924568176, 0.005855169612914324, 0.008674325421452522, 0.009019942954182625, -0.022946301847696304, 0.02502000704407692, -0.014258422888815403, 0.009202917106449604, -0.004621788859367371, 0.016006840392947197, 0.008681102655827999, -0.012388020753860474, 0.0056586419232189655, -0.02279721200466156, -0.015085194259881973, 0.02327158860862255, -0.02198399417102337, -0.0012367690214887261, 0.0014205902116373181, -0.038898929953575134], "884f1a2d-bc91-4e73-89bb-970fbdd681b0": [-0.0015927940839901567, -0.020489318296313286, -0.003722523571923375, 2.7822432457469404e-05, -0.010402481071650982, 0.021985189989209175, -0.018266096711158752, -0.012111067771911621, -0.0155488271266222, -0.016029153019189835, 0.018636634573340416, 0.017099592834711075, 0.018924830481410027, 0.020420700311660767, 0.000511203717906028, 0.008467454463243484, 0.03661453723907471, -0.01718193292617798, 0.037959448993206024, -0.03312874585390091, -0.00034094543661922216, -0.003643613075837493, 0.0033639948815107346, 0.015878193080425262, -0.013167783617973328, 0.017662258818745613, 0.024304477497935295, -0.005660980474203825, 0.013847101479768753, -0.02150486409664154, 0.00037182349478825927, 0.01904834248125553, 0.019062066450715065, -0.002139164600521326, -0.02991742454469204, 0.006546152289956808, 0.0011656474089249969, -0.02014622837305069, 0.017415234819054604, -0.01958356238901615, 0.007163713686168194, -0.008000852540135384, -0.009723163209855556, 0.003400019370019436, -0.019556114450097084, 0.018320992588996887, -0.00804202351719141, -0.014231362380087376, -0.024084899574518204, 0.0009048991487361491, 0.018787594512104988, 0.011164139956235886, -0.03159170225262642, 0.018856212496757507, -0.026843341067433357, -0.0019487496465444565, 0.0031770109198987484, 0.021532312035560608, -0.015809575095772743, 0.030246790498495102, 0.013373637571930885, -0.007486218120902777, 0.010141732171177864, 0.026760999113321304, -0.042131420224905014, -0.006487826816737652, -0.025374917313456535, -0.014917541295289993, -0.010608334094285965, 0.010320139117538929, 0.04160992428660393, 0.009057569317519665, -0.0031049621757119894, -0.0005540899001061916, 0.014999883249402046, -0.029121456667780876, -0.027268771082162857, -0.008735064417123795, -0.00291111646220088, 0.012879588641226292, -0.0018355300417169929, -0.028270594775676727, 0.00292827095836401, 0.011719944886863232, 0.024976933375000954, -0.0288469847291708, 0.00556148448958993, 0.03359534591436386, -0.003170149167999625, -0.022026360034942627, 0.014739135280251503, 0.02096964418888092, 0.02039325423538685, 0.017703430727124214, -0.0047483621165156364, 0.02228710986673832, -0.022959565743803978, 0.015699787065386772, -0.0029951734468340874, -0.015878193080425262, -0.034967705607414246, 0.0021065708715468645, -0.025443535298109055, -0.0014504118589684367, -0.01983058638870716, 0.010402481071650982, -0.003746539819985628, -0.012509051710367203, 0.01639968901872635, -0.015933087095618248, -0.020832408219575882, 0.01465679332613945, -0.014697964303195477, -0.054757121950387955, -0.0035612713545560837, -0.01657809503376484, 0.013449117541313171, -0.011774839833378792, -0.02670610509812832, 6.958288577152416e-05, 0.01549393218010664, 0.012810970656573772, -0.01335305254906416, -0.02021484635770321, 0.004823841620236635, 0.010306415148079395, -0.004847858101129532, -0.028435276821255684, -0.0017265990609303117, -0.012776661664247513, 0.04196673631668091, 0.0017977901734411716, 0.0030552141834050417, -0.001014687935821712, -0.004878736101090908, 0.016070323064923286, -0.03219554200768471, 0.0004400125762913376, -0.00527672003954649, -0.0373007170855999, 0.017909284681081772, 0.013504011556506157, 0.0005618094583041966, -0.02674727514386177, -0.018815040588378906, 0.020132506266236305, 0.006240802351385355, 0.007788137067109346, -0.015411591157317162, -0.008988951332867146, 0.015123395249247551, -0.009064430370926857, 0.007081372197717428, -0.016317347064614296, 0.024935761466622353, -0.009846675209701061, 0.016825120896100998, -0.01639968901872635, 0.0032610679045319557, -0.001912725274451077, 0.01661926694214344, 0.026582593098282814, 0.015054777264595032, 0.004868443123996258, 0.0025851810351014137, 0.029478270560503006, 0.01576840505003929, -0.013497150503098965, -0.027543243020772934, -0.013545182533562183, 0.008282186463475227, 0.025306299328804016, -0.03837115690112114, 0.012598254717886448, -0.01165818888694048, 0.01251591369509697, 0.024030005559325218, 0.035351965576410294, -0.0144234923645854, 0.013970613479614258, -0.0400179848074913, -0.01171308383345604, 0.015137119218707085, 0.03590090945363045, -0.0425705723464489, -0.007836169563233852, -0.020338360220193863, -0.014327427372336388, 0.01740151084959507, 0.015205737203359604, -0.003677921835333109, 0.0126600107178092, -0.0006201346986927092, -0.012035587802529335, -0.6407269239425659, 0.0029625799506902695, -0.015713509172201157, -0.00859096646308899, -0.01194638479501009, 0.005962899420410395, 0.01561744511127472, 0.0033039541449397802, -0.009098739363253117, 0.0075136651284992695, -0.02585524320602417, 0.018993448466062546, -0.018526844680309296, -0.024222135543823242, -0.012570807710289955, -0.004250881727784872, -0.009023260325193405, -0.02435937151312828, 0.006302558351308107, -0.012913897633552551, -0.006319712847471237, 0.009229114279150963, 0.003770556068047881, 0.005444834008812904, -0.005997208412736654, -0.0075891450978815556, 0.014025508426129818, 0.02014622837305069, 0.0016511193243786693, 0.02503182739019394, -0.020763790234923363, 0.04053948447108269, 0.013119751587510109, 0.021655824035406113, 0.0515732504427433, -0.015288078226149082, -0.012152238748967648, 0.017813218757510185, 0.008069470524787903, 0.016097771003842354, -0.03260724991559982, -0.02453777752816677, 0.024551501497626305, 0.005712443962693214, 0.016001705080270767, 0.003015758702531457, 0.003787710564211011, -0.01693490892648697, 0.0031615719199180603, 0.0319485142827034, 0.0209010262042284, -0.002653799019753933, -0.012879588641226292, -3.296877912362106e-05, -0.006631924770772457, 0.006189338862895966, 0.027941226959228516, -0.008192982524633408, -0.001148492912761867, -0.0013174646301195025, 0.008144950494170189, 0.013696142472326756, 0.00055065902415663, 0.009366349317133427, -0.005297305528074503, 0.01604287512600422, -0.013483426533639431, 0.015329249203205109, 0.013044271618127823, -0.026898235082626343, 0.0006012647645547986, 0.014547004364430904, 0.0018115137936547399, -0.022657645866274834, 0.01976196840405464, 0.006975014228373766, 0.023796703666448593, -0.02114805206656456, 0.015439038164913654, 0.02079123817384243, 0.0025594495236873627, -0.029039114713668823, -0.03208575025200844, -0.019707074388861656, 0.023659467697143555, -0.017964178696274757, -0.0059320214204490185, 0.033567897975444794, -0.007877340540289879, 0.0010009643156081438, -0.008563519455492496, 0.0032404824160039425, 0.014574452303349972, 0.014601899310946465, 0.049981310963630676, 0.004058751743286848, -0.017236828804016113, -0.0031032466795295477, 0.006690249778330326, -0.01082105003297329, -0.008508625440299511, -0.015301802195608616, 0.003722523571923375, -0.01594681106507778, 0.002796181244775653, -0.01815630868077278, -0.036751773208379745, -0.020955920219421387, 0.041747160255908966, -0.00827532447874546, -0.001433257362805307, -0.014245085418224335, -0.01262570172548294, -0.007760689593851566, 0.009023260325193405, -0.020832408219575882, 0.009153634309768677, 0.0038288813084363937, 0.021655824035406113, 0.011651326902210712, 0.021532312035560608, -0.013531459495425224, -0.0005888277664780617, -0.01051913108676672, 0.018019072711467743, 0.032964061945676804, 0.010498546063899994, 0.003972979262471199, -0.007499941624701023, -0.008632137440145016, -0.008474316447973251, -0.010464237071573734, 0.010313277132809162, 0.0053316145204007626, 0.028682300820946693, -0.010278968140482903, 0.015150842256844044, 0.002708693500608206, 0.03502260148525238, -0.023028183728456497, -0.014560728333890438, 0.0008886024006642401, 0.014794029295444489, 0.007184299174696207, -0.01215909980237484, -0.03241511806845665, -0.0014684241032227874, -0.012001278810203075, -0.037822213023900986, -0.003336547641083598, -0.0104505131021142, -0.0027138397563248873, -0.004295483231544495, 0.008213568478822708, 0.008069470524787903, -0.011006318964064121, -0.0144234923645854, 0.0023347255773842335, 0.011280789971351624, -0.021367628127336502, 0.015095948241651058, 0.027021747082471848, -0.029862530529499054, -0.0019624733831733465, 0.01882876455783844, -0.01419019140303135, -0.010546578094363213, 0.02011878229677677, 0.009572203271090984, -0.022232213988900185, -0.0007170575554482639, -0.025416087359189987, -0.006388330832123756, 0.04108842462301254, -0.01637224294245243, -0.0035063771065324545, -0.004851288627833128, -0.021559758111834526, -0.01904834248125553, 0.021491140127182007, -0.007451909128576517, 0.0025508722756057978, -0.015384143218398094, -0.01251591369509697, 0.035681333392858505, 0.0007818157318979502, -0.011486643925309181, 0.0024650997947901487, 0.012913897633552551, 0.030246790498495102, -0.007630315609276295, 0.004734638147056103, 0.012268888764083385, 0.0017034405609592795, 0.012467880733311176, -0.004854719620198011, -0.0018097982974722981, 0.03153681010007858, 0.0026966852601617575, 0.01967962644994259, 0.014876371249556541, 0.0050742970779538155, 0.037355609238147736, -0.011514091864228249, 0.008714479394257069, -0.02917635068297386, 0.012104205787181854, -0.006957859732210636, 0.029780188575387, -0.021491140127182007, -0.010642643086612225, -0.022657645866274834, -0.0008521490963175893, -0.010663229040801525, 0.004858150612562895, 0.02214987389743328, 0.015150842256844044, -0.004086198750883341, -0.014094126410782337, 0.012296335771679878, 0.016948632895946503, -0.010086838155984879, -0.0015481924638152122, -0.008213568478822708, -0.015987981110811234, -0.010073114186525345, 0.000511203717906028, 0.013023686595261097, 0.016056599095463753, -0.007856754586100578, 0.015397867187857628, -0.01419019140303135, -0.003031197702512145, 0.015589997172355652, 0.004271467216312885, -0.004333223216235638, 0.01782694272696972, -0.01655064895749092, 0.03590090945363045, -0.03935925289988518, 0.0009477853891439736, 0.003417173633351922, 0.0239613875746727, -0.028407830744981766, -0.006477534305304289, 0.007932234555482864, 0.014025508426129818, 0.0009417813271284103, 0.014299980364739895, 0.02057166025042534, -0.025265127420425415, 0.0008367100963369012, -0.02346733771264553, -0.008241015486419201, 0.013366775587201118, -0.042598020285367966, -0.004470459185540676, -0.0004940492217428982, 0.014519557356834412, 0.023014459758996964, 0.014231362380087376, -0.004106784239411354, 0.006968152709305286, 0.003101531183347106, 0.05835270136594772, 0.015672339126467705, 0.021628376096487045, 0.01740151084959507, -0.02859996072947979, -0.01704469881951809, -0.022012637928128242, -0.011568985879421234, 0.014025508426129818, -0.0007822446059435606, 0.01757991872727871, 0.009421244263648987, 0.009963326156139374, 0.010416204109787941, 0.015823299065232277, 0.0005969761405140162, -0.026760999113321304, -0.01936398446559906, 0.029341034591197968, 0.0065598757937550545, -0.00774696609005332, -0.011527814902365208, -0.01797790266573429, -0.022602751851081848, -0.017319168895483017, 0.03850839287042618, -0.014903818257153034, 0.0004250024212524295, 0.02003644034266472, -0.015411591157317162, -0.0035303933545947075, -0.0008911755867302418, 0.008906609378755093, -0.03131723031401634, 0.03708113729953766, 0.01194638479501009, 0.015987981110811234, 0.010793603025376797, -0.03123489022254944, 0.010731847025454044, 0.00744504714384675, 0.006309420336037874, -0.01807396672666073, -0.021902848035097122, 0.009544756263494492, -0.02282232977449894, 0.0053419070318341255, -0.03241511806845665, -0.006769160274416208, -0.0035921495873481035, 0.01244729571044445, -0.0019418878946453333, -0.014409768395125866, 0.014107849448919296, 0.01836216263473034, -0.014080402441322803, -0.0013157491339370608, -0.00025753173395060003, -0.01255022268742323, 0.0006737424409948289, 0.10945934802293777, 0.006985306739807129, -0.01840333268046379, 0.006450086832046509, -0.0009237690828740597, 0.013243263587355614, -0.018856212496757507, -0.030054660513997078, 0.022026360034942627, -0.002926555462181568, 0.016674160957336426, -0.014821476303040981, 0.013545182533562183, -0.005050281062722206, 0.0028939619660377502, -0.015013606287539005, 0.004353808704763651, 0.007664624601602554, -0.00556148448958993, 0.0052938745357096195, 0.010766156017780304, 0.005486004985868931, 0.0005395085900090635, 0.018911106511950493, -0.032113198190927505, -0.023055629804730415, 0.02920379862189293, 0.006573599297553301, 0.010903391987085342, -0.017168210819363594, 5.736031380365603e-05, 0.026911959052085876, 0.01804652065038681, 0.03529707342386246, -0.020695172250270844, 0.0025302867870777845, 0.020997092127799988, 0.01871897652745247, -0.001778920297510922, 0.0016631274484097958, 0.02335754968225956, 0.018087690696120262, 0.00317872641608119, -0.012344368733465672, 0.0019418878946453333, -0.003880344796925783, -0.016811396926641464, -0.0017806356772780418, -0.01943260245025158, -0.01733289286494255, 0.04578189551830292, -0.004353808704763651, -0.02032463625073433, -0.02021484635770321, 0.03554409742355347, -0.0005888277664780617, 3.790069240494631e-05, -0.005640394985675812, 0.0016545502003282309, 0.023865321651101112, -0.006700542289763689, -0.009222252294421196, 0.004988524597138166, -0.006583891808986664, -0.01021721214056015, -0.013202092610299587, -0.025402363389730453, 0.006192769855260849, -0.02278115786612034, 0.012488466687500477, -0.00013326891348697245, -0.0011107530444860458, -0.015452761203050613, 0.020269742235541344, 0.014011784456670284, 0.01105435099452734, 0.007129404693841934, -0.0032301899045705795, 0.009730025194585323, -0.005818801932036877, -0.011802286840975285, -0.034007053822278976, 0.005595793481916189, -0.012241441756486893, -0.008886024355888367, -0.003924946766346693, 0.007424461655318737, 0.014697964303195477, -0.03074084036052227, 0.015439038164913654, -0.01171308383345604, 0.011514091864228249, -0.0032696451526135206, -0.014821476303040981, 0.003086092183366418, 0.005012541078031063, -0.003564702346920967, -0.008481178432703018, -0.0009855253156274557, -0.013037409633398056, 0.01328443456441164, -0.048197247087955475, -0.0006274253246374428, -0.02235572785139084, 0.016811396926641464, -0.014533281326293945, 0.004477321170270443, 0.028270594775676727, -0.02253413386642933, -0.035461753606796265, -6.979731551837176e-05, -0.02246551588177681, 0.015809575095772743, -0.017428958788514137, 0.000602551328483969, 0.014094126410782337, 0.013023686595261097, 0.023796703666448593, 0.00028047585510648787, -0.012378677725791931, -0.0019110097782686353, -0.037575189024209976, 0.01162387989461422, 0.003068937687203288, -0.017099592834711075, -0.011095521971583366, 0.011164139956235886, -0.01586446911096573, 0.014533281326293945, 0.006367745343595743, 0.007904787547886372, 0.024647565558552742, 0.02128528617322445, -0.02895677275955677, -0.03911222890019417, 0.001133911544457078, -0.030823182314634323, 0.0028030432295054197, -0.008096917532384396, 0.008488040417432785, -0.008584105409681797, 0.0001380936155328527, -0.018842488527297974, -0.03623027727007866, 0.00193502614274621, -0.02510044537484646, -0.02578662522137165, -0.004384686704725027, 0.010244659148156643, 0.0024668152909725904, -0.013236401602625847, -0.03120744228363037, -0.02824314683675766, 0.004374394193291664, -0.02003644034266472, -0.03793200105428696, 0.005599224474281073, -0.01929536648094654, 0.01594681106507778, -0.0024513760581612587, 0.03337576985359192, -0.029780188575387, 0.005396801512688398, 0.011973831802606583, -0.004628280643373728, 0.007335258647799492, -0.016770226880908012, -0.012049311771988869, -0.03359534591436386, -0.009002674371004105, 0.01854056864976883, 0.009537894278764725, 0.029368480667471886, -0.013764760456979275, 0.003691645571961999, 0.043805696070194244, -0.01299623865634203, -0.011692497879266739, -0.015740957111120224, -0.03392471373081207, -0.022300831973552704, 0.008906609378755093, -0.014999883249402046, 0.004038166254758835, -0.021065710112452507, -0.002406774554401636, 0.04369590803980827, 0.018458228558301926, 0.0024376525543630123, -0.007383291143923998, 0.01675650291144848, -0.033320873975753784, 0.005383078008890152, -0.003722523571923375, 0.01644086092710495, -0.008460592478513718, 0.02956061065196991, 0.0018132292898371816, -0.000570815522223711, 0.004590540658682585, 0.0014855785993859172, -0.009579065255820751, 0.007431323640048504, -0.013874548487365246, -0.024990655481815338, 0.005602655466645956, -0.01664671301841736, -0.030658498406410217, 0.02456522546708584, -0.026239503175020218, -0.023151695728302002, -0.002226652344688773, -0.016536924988031387, -0.0391671247780323, -0.01896600052714348, -0.009743748232722282, -0.0006012647645547986, 0.017607364803552628, 0.0002457380178384483, -0.023302653804421425, -0.0031615719199180603, -0.020489318296313286, 0.04015522077679634, 0.009366349317133427, 0.023865321651101112, 0.0015773550840094686, -0.02025601826608181, 0.011164139956235886, 0.01235809177160263, -0.01579585112631321, -0.010155456140637398, 0.026733551174402237, 0.007849893532693386, 0.0021614653524011374, 0.006679957266896963, -0.0036024420987814665, 0.004961077589541674, -0.0524241104722023, -0.02614343725144863, -0.010882806032896042, -0.0005077727837488055, -0.0126600107178092, -0.00828904751688242, -0.002463384298607707, -0.037739869207143784, -0.0076371775940060616, 0.010395619086921215, 0.012756076641380787, -0.008762511424720287, -0.0024650997947901487, -0.028792090713977814, -0.0035235316026955843, 0.0011656474089249969, 0.015439038164913654, 0.042817600071430206, -0.015521379187703133, -0.0390024408698082, -0.019391432404518127, -0.021875401958823204, -0.016660436987876892, -0.00412736926227808, 0.020406978204846382, -0.011719944886863232, -0.0015456192195415497, -0.00011782987712649629, -0.0014529849868267775, -0.01622128300368786, 0.012323782779276371, -0.011308237910270691, 0.025649389252066612, 0.01708586886525154, 0.019556114450097084, 0.010395619086921215, -5.853968468727544e-05, 0.0052458420395851135, 0.01526063121855259, 0.001716306433081627, 0.0052561345510184765, -0.01747012883424759, -0.003777418052777648, -0.0016665583243593574, 0.008735064417123795, 0.009977049194276333, -0.02792750485241413, -0.012666872702538967, -0.011665050871670246, -0.010306415148079395, -0.0051120370626449585, 0.00717743718996644, -0.03268959000706673, -0.020626554265618324, 0.015109672211110592, -0.0355166494846344, 0.011960107833147049, -0.01768970675766468, 0.014821476303040981, -0.0030878076795488596, 0.03131723031401634, -0.030576156452298164, 0.028572512790560722, -0.025594493374228477, 0.003297092393040657, -0.03321108594536781, 0.010930838994681835, 0.024812249466776848, -0.00577763095498085, 0.005551191978156567, -0.013167783617973328, -0.02278115786612034, 0.008536072447896004, 0.03763008117675781, 0.014739135280251503, -0.002777311485260725, 0.017991624772548676, 0.0182249266654253, -0.0008735922165215015, 0.014903818257153034, -0.009627098217606544, -0.02057166025042534, 0.019020894542336464, 0.022726263850927353, 0.0016880014445632696, -0.005825663451105356, -0.02592385932803154, 0.010649505071341991, 0.012015002779662609, 0.019940374419093132, 0.003626458579674363, -0.04328420013189316, 0.01876014657318592, -0.007198022678494453, 0.0018955707782879472, 0.009009536355733871, -0.009874122217297554, -0.019885480403900146, -0.030301684513688087, -0.017854388803243637, 0.01182287186384201, 0.03159170225262642, -0.00914677232503891, 0.024153517559170723, 0.01907578855752945, -0.011843457818031311, -0.009126187302172184, 0.007527388632297516, -0.0009820943232625723, 0.0028750919736921787, 0.009235975332558155, -0.03406194970011711, -0.010972009971737862, 0.01164446584880352, 0.03886520490050316, 0.005376216024160385, -0.014629346318542957, -0.010038805194199085, -0.008666446432471275, -0.03513238951563835, -0.02360457368195057, -0.0009537894511595368, 0.009524171240627766, 0.047620855271816254, 0.014876371249556541, 0.007273502182215452, 0.017881836742162704, -0.0038597595412284136, 0.01644086092710495, -0.01412157341837883, -0.008261600509285927, 0.006861794739961624, -9.338473319076002e-05, 0.006405485328286886, 0.004576817154884338, -0.024620119482278824, 0.004391548689454794, 0.01633107103407383, -0.006662802770733833, 0.0007573706097900867, 0.010464237071573734, -0.009338902309536934, 0.01590563915669918, -0.014903818257153034, 0.005098313558846712, 0.006209924351423979, 0.001331188133917749, -0.0011116107925772667, -0.022163596004247665, -0.009393797256052494, -0.007602868601679802, -0.003931808285415173, -0.02143624611198902, -0.023014459758996964, 0.01107493694871664, -0.021847954019904137, 0.011562123894691467, -0.02025601826608181, -0.015919363126158714, -0.01084163598716259, -0.017991624772548676, 0.03620282933115959, 0.003770556068047881, 0.0015602005878463387, 0.0400179848074913, 0.0005639537703245878, -0.024839697405695915, -0.004696898628026247, 0.012364953756332397, 0.012646287679672241, -0.035818569362163544, 0.013922581449151039, -0.020708896219730377, 0.008927194401621819, -0.0013672126224264503, -0.0016536925686523318, -0.011534676887094975, 0.017319168895483017, -0.013936305418610573, -0.009894708171486855, -0.024976933375000954, 0.02585524320602417, 0.029588058590888977, 0.0022558150812983513, 0.0032301899045705795, 0.00774696609005332, -0.012083620764315128, 0.008789959363639355, -0.019377708435058594, -0.02521023340523243, 0.00036153080873191357, 0.0038837757892906666, 0.0007903929799795151, 0.012330644764006138, -0.01117786392569542, -0.013908857479691505, 0.0283803828060627, -0.03436386585235596, 0.0115552619099617, 0.21617397665977478, -0.007410738151520491, -0.0019882048945873976, 0.023700639605522156, -0.0057879239320755005, 0.0049301995895802975, 0.023234035819768906, -0.004364101216197014, 0.0043400852009654045, -0.015576274134218693, -0.012207132764160633, 0.02014622837305069, 0.004069044254720211, 0.0077812750823795795, 0.010525993071496487, -0.009572203271090984, -0.044135063886642456, -0.0009409235790371895, -0.0049782320857048035, -0.05099685862660408, -0.0014907248551025987, -0.017607364803552628, -0.005053711589425802, -0.0172917228192091, 0.021367628127336502, 0.00857724342495203, -0.014039231464266777, -0.007431323640048504, 0.02214987389743328, 0.0034737836103886366, -0.033650241792201996, -6.989112989685964e-06, -0.0075891450978815556, -0.005005679093301296, -0.010670091025531292, 0.0008195556001737714, 0.013263849541544914, 0.0033502711448818445, 0.024647565558552742, -0.009284008294343948, 0.007760689593851566, 0.009441829286515713, 0.01269431971013546, 0.00941438227891922, -0.011733668856322765, 0.04646807163953781, -0.008906609378755093, -0.017030974850058556, -0.00558893196284771, 0.00805574655532837, -0.026911959052085876, 0.02375553362071514, 0.05245155841112137, 0.026363015174865723, 0.004755223635584116, -0.01579585112631321, -0.0186915285885334, 0.029588058590888977, -0.015164566226303577, 0.011809148825705051, -0.01860918663442135, 0.008405698463320732, -0.01611149311065674, 0.02909400872886181, -0.017497576773166656, 0.014903818257153034, -0.004607695154845715, 0.0026332137640565634, 0.011726806871592999, -0.023206589743494987, -0.0093457642942667, -0.01893855258822441, 0.004021011758595705, 0.00975061021745205, -0.011719944886863232, -0.0007273502415046096, 0.019885480403900146, -0.017525022849440575, 0.0012299766531214118, 0.006237371359020472, 0.023947663605213165, -0.0226439218968153, 0.0172917228192091, -0.019487496465444565, -0.014011784456670284, -0.036175381392240524, -0.017895560711622238, -0.01690746285021305, -0.01251591369509697, 0.009531033225357533, -0.01733289286494255, -0.017991624772548676, 0.004209711216390133, -0.002264392329379916, -0.003972979262471199, -0.004000426270067692, 0.012941344641149044, -0.007959681563079357, 0.015219460241496563, -0.0039009302854537964, -0.014176467433571815, -0.01078674104064703, 0.03790455311536789, 0.015233184210956097, -0.02253413386642933, -0.0051017445512115955, 0.015452761203050613, 0.00921539030969143, 0.02110688015818596, -0.029505716636776924, 0.03345810994505882, -0.00717743718996644, -0.008762511424720287, -0.010958286002278328, 0.0005738175823353231, 0.03441876173019409, -0.012186547741293907, -0.013305019587278366, -0.005139484070241451, 0.01167877484112978, 0.01139057893306017, -0.022945841774344444, -0.0068377782590687275, 0.0007389294914901257, 0.002401628065854311, -0.016605542972683907, -0.004141093231737614, 0.019089512526988983, -0.004755223635584116, -0.01141116488724947, 0.026692381128668785, -0.03052126243710518, -0.008659584447741508, 0.004638573154807091, -0.005496297497302294, 0.017744600772857666, 0.010045667178928852, -0.027721650898456573, 0.033787477761507034, -0.002046530367806554, 0.0005510878982022405, -0.005050281062722206, -0.0020911318715661764, 0.0017651966772973537, 0.002048245631158352, -0.01925419643521309, 0.019569838419556618, -0.01305113360285759, 0.0034754991065710783, -0.022259661927819252, -0.021696994081139565, 0.004937061108648777, 0.005691858474165201, -0.0025097012985497713, 0.00662506278604269, -0.011774839833378792, -0.030823182314634323, -0.014046093448996544, -0.0053419070318341255, 0.022657645866274834, -0.01961100846529007, 0.013057995587587357, 0.02378297969698906, -0.001321753254160285, -0.013044271618127823, -0.004720914643257856, -0.17610110342502594, 0.025951307266950607, 0.016056599095463753, -0.006192769855260849, 0.03672432526946068, 0.027406007051467896, 0.020736344158649445, 0.007541112136095762, 0.005660980474203825, -0.010230936110019684, 0.02813335880637169, 0.018664080649614334, -0.023151695728302002, -0.022204767912626266, -0.008789959363639355, 0.008858577348291874, -0.009407520294189453, 0.021120604127645493, 0.038069237023591995, 0.010292692109942436, 0.005280151031911373, -0.02538863942027092, 0.005832525435835123, -0.012735490687191486, 0.0032233281526714563, 0.011383716948330402, -0.002588612027466297, 0.01152095291763544, 0.012268888764083385, -0.020105058327317238, -0.015082224272191525, 0.00527672003954649, 0.0006994741852395236, -0.015850745141506195, 0.02304190583527088, 0.01672905497252941, -0.010196627117693424, -0.023261483758687973, -0.010292692109942436, 0.0019110097782686353, 0.021875401958823204, -0.0013208955060690641, 0.020283464342355728, 0.005877126939594746, -0.003983271773904562, 0.04399782791733742, -0.02050304226577282, -0.0012111067771911621, 0.002904254477471113, -0.03131723031401634, 0.01435487437993288, -0.0028922464698553085, 0.00011579278361750767, 0.006131013389676809, 0.03946904465556145, -0.0049301995895802975, 0.001833814661949873, 0.001148492912761867, -0.013915719464421272, -0.005187516566365957, -0.0067314207553863525, -0.01114355493336916, 0.02322031371295452, 0.0088791623711586, 0.015370420180261135, -0.011953245848417282, -0.008625275455415249, 0.007115681190043688, -0.038673073053359985, 0.018677804619073868, 0.0008946064626798034, 0.01494498923420906, 0.020489318296313286, -0.016825120896100998, -0.005640394985675812, -0.005962899420410395, -0.027227601036429405, 0.01972079835832119, 0.00861155241727829, -0.012474742718040943, -0.04874619096517563, 0.028215698897838593, -0.00692698173224926, -0.0053419070318341255, 0.008481178432703018, 0.027900056913495064, -0.002264392329379916, -0.027611861005425453, -0.014684240333735943, -0.01071812305599451, -0.0021683271043002605, -0.02182050794363022, -0.008687032386660576, -0.017360340803861618, 0.024277029559016228, 0.004878736101090908, 0.0030277669429779053, -0.022520409896969795, 0.00039348105201497674, -0.013188369572162628, -0.00035038040368817747, -0.022836051881313324, -0.012502189725637436, 0.02429075352847576, 0.035818569362163544, 0.006470672320574522, 0.0013337613781914115, 0.014396045356988907, 0.02032463625073433, 0.01191207580268383, -0.010670091025531292, 0.027570690959692, 0.01495871227234602, 0.007692071609199047, 0.01239240076392889, 0.03274448588490486, -0.010079976171255112, -0.014821476303040981, 0.024524053558707237, -0.006216785870492458, 0.07246055454015732, 0.004165109246969223, -0.005094882566481829, 0.002760156989097595, -0.005640394985675812, -0.03159170225262642, -0.11527814716100693, -0.0053041670471429825, 0.0016150949522852898, 0.031619150191545486, -0.005221825558692217, 0.004961077589541674, 0.0035475478507578373, 0.020228570327162743, 0.003650474827736616, -0.0028236284852027893, -0.001715448684990406, -0.04416251182556152, 0.003312531393021345, -0.00557177746668458, 0.0021237253677099943, -0.025292575359344482, 6.856433901702985e-05, -0.01843078061938286, -0.005184086039662361, 0.036641985177993774, 0.015397867187857628, -0.019926652312278748, 0.002828774740919471, -0.020846132189035416, 0.009537894278764725, 0.002516563283279538, -0.02656886912882328, 0.00027768826112151146, 0.019309090450406075, 0.01615266501903534, -0.03623027727007866, 0.003924946766346693, 0.013833378441631794, -0.0059217289090156555, -0.017360340803861618, -0.0043984102085232735, -0.040457140654325485, 0.005067435558885336, 0.020599108189344406, -0.027268771082162857, 0.009901570156216621, -0.006535859312862158, 0.013263849541544914, -0.004607695154845715, 0.011459196917712688, -0.003312531393021345, -0.032332777976989746, 0.007788137067109346, 0.015123395249247551, -0.0243868175894022, -0.03277193009853363, 0.01028583012521267, -0.034857917577028275, 0.0003746110887732357, 0.026115991175174713, -0.017456404864788055, 0.03505004569888115, 0.006765729747712612, -0.018211202695965767, -0.0048444271087646484, -0.0099839111790061, 0.014464663341641426, -0.0005305025260895491, 0.03686156123876572, -0.002463384298607707, -0.005952606908977032, -0.0063814688473939896, -0.01412157341837883, 0.031042758375406265, -0.0016871438128873706, -0.024688737466931343, 0.0027498642448335886, -0.022067531943321228, 0.015631169080734253, -0.009736886247992516, 0.02909400872886181, -0.0293135866522789, -0.009277146309614182, 0.005002248100936413, -0.002614343771710992, -0.004792963620275259, -0.024482883512973785, 0.001079017180018127, 0.00032872284646146, 0.012536498717963696, -0.0032782224006950855, 0.005664411466568708, -0.0067039732821285725, -0.003242197912186384, -0.014299980364739895, 0.0001539615186629817, 0.014299980364739895, -0.019569838419556618, -0.018801316618919373, 0.007246055174618959, 0.03606559336185455, 0.014780305325984955, 0.006813762243837118, -0.0077332425862550735, -0.004580248147249222, -0.031619150191545486, 0.0033434093929827213, -0.05698034167289734, 0.025306299328804016, 0.02021484635770321, -0.0008178401621989906, -0.002022513886913657, -0.01107493694871664, -0.0013354767579585314, -0.006285403855144978, -0.01102004200220108, 0.01630362495779991, -0.006233940366655588, 0.031399574130773544, -0.015329249203205109, -0.023879045620560646, -0.01836216263473034, 0.010615196079015732, -0.01679767295718193, -0.007143128197640181, -0.002796181244775653, -0.00667652627453208, 0.015288078226149082, 0.0003731100878212601, 0.013572629541158676, 0.004765516612678766, -0.006309420336037874, 0.008549796417355537, 0.007568559609353542, 0.00911246333271265, 0.008117503486573696, -0.01091025397181511, 0.014601899310946465, -0.02645908109843731, 0.004865012597292662, 0.005962899420410395, 0.005990346893668175, 0.00040291601908393204, -0.011699359863996506, -0.012852141633629799, 0.007884202525019646, 0.05527861788868904, -0.0009400658891536295, -0.012598254717886448, -0.010333863086998463, -0.015137119218707085, 0.005118899047374725, 0.03686156123876572, -0.00907815434038639, 0.00499195558950305, 0.02953316457569599, -0.010265245102345943, 0.011692497879266739, 0.01976196840405464, 0.0008465739083476365, -0.008090055547654629, -0.013106027618050575, -0.023275207728147507, 0.013208954595029354, -0.013442255556583405, -0.002353595569729805, -0.024167241528630257, 0.015754681080579758, -0.008680170401930809, 0.004099922254681587, -0.006573599297553301, 0.023343825712800026, -0.03428152576088905, -0.007122542709112167, 0.00025281423586420715, -0.03812413290143013, -0.012056172825396061, 0.006196200381964445, 0.003918084781616926, 0.003187303664162755, 0.013504011556506157, 0.01018290314823389, 0.002442798810079694, 0.0071019576862454414, 0.0031032466795295477, -0.020804962143301964, 0.02467501349747181, -0.014327427372336388, -0.003653905587270856, -0.05253389850258827, 0.0025834657717496157, 0.02161465398967266, 0.0019727658946067095, 0.011150415986776352, 0.0053899395279586315, 0.001495871227234602, 0.002130587352439761, 0.025896413251757622, -0.008048885501921177, 0.011905213817954063, -0.024194687604904175, 0.002952287206426263, 0.00968199223279953, -0.015466485172510147, 0.0029934579506516457, 0.024098623543977737, 0.015466485172510147, -0.008549796417355537, 0.014807753264904022, 0.005901143420487642, -0.014492110349237919, 0.007801860570907593, -0.00041342314216308296, -0.011363131925463676, -0.032360222190618515, -0.010066253133118153, 0.016674160957336426, 0.013195231556892395, 0.0067897457629442215, 0.026335567235946655, 0.01722310483455658, -0.001095313928090036, 0.0006214212626218796, 0.006762298755347729, -0.016235006973147392, -0.008693893440067768, 0.040923744440078735, 0.004597402643412352, 0.026157161220908165, 0.01572723314166069, 0.012172823771834373, 0.025553323328495026, 0.027831438928842545, 0.013119751587510109, 0.014107849448919296, 0.030109554529190063, 0.005461988504976034, 0.012557084672152996, 0.017566194757819176, -0.05020089074969292, 0.0024685305543243885, 0.014601899310946465, -0.03746539726853371, -0.004182263743132353, 0.015205737203359604, -0.01269431971013546, 0.036175381392240524, -0.006237371359020472, -0.028627406805753708, 0.0025097012985497713, 0.023165419697761536, 0.020846132189035416, 0.013682418502867222, -0.0019779123831540346, -0.0034429053775966167, -0.013716727495193481, 0.00413766223937273, -0.017593640834093094, 0.04531529173254967, 0.0005034841597080231, 0.0011553546646609902, 0.0012497043935582042, -0.013462841510772705, 0.043064624071121216, -0.015356696210801601, -0.017607364803552628, 0.03548920154571533, -0.0031358401756733656, 0.011232757940888405, -0.004477321170270443, -0.006179045885801315, -0.008632137440145016, 0.0076852100901305676, 0.014203915372490883, 0.0036024420987814665, -0.02703547105193138, 0.0016305339522659779, 0.020777514204382896, 0.004593971651047468, -0.023865321651101112, 0.025059273466467857, -0.013332466594874859, 0.0018990016542375088, -0.014327427372336388, 0.014684240333735943, 0.006233940366655588, -0.019446326419711113, 0.004899321589618921, -0.01381965447217226, -0.019391432404518127, 0.014032370410859585, -0.005602655466645956, -0.0015207452233880758, 0.0007376429275609553, -0.03312874585390091], "862dbfdd-c488-4f3a-91b5-c339bc5f16bb": [0.003944981377571821, -0.013174434192478657, -0.015338996425271034, 0.00312826014123857, -0.006186372600495815, 0.023489508777856827, -0.019013408571481705, -0.008738418109714985, -0.015031682327389717, -0.031185731291770935, 0.010776045732200146, 0.012693420983850956, 0.01926727592945099, 0.005618508905172348, -0.014550668187439442, 0.021124524995684624, 0.032815832644701004, -0.012486317194998264, 0.03762597218155861, -0.030143532902002335, -0.0017094362992793322, -0.01332809217274189, 0.002972932765260339, 0.03123917616903782, -0.010629069991409779, 0.025801047682762146, 0.03348390758037567, -0.010034482926130295, 0.00956015009433031, -0.010629069991409779, -0.005835633259266615, 0.015258828178048134, 0.0060393959283828735, -0.003801345359534025, -0.018385417759418488, 0.010328436270356178, 0.0152053814381361, -0.014831259846687317, 0.015860095620155334, -0.01763717457652092, 0.015432527288794518, -0.007008104585111141, -0.0072419303469359875, 0.0014739399775862694, -0.013602002523839474, 0.02633550763130188, -0.012499678879976273, -0.02358303964138031, -0.029261674731969833, 0.007141719106584787, 0.017410028725862503, 0.01207211147993803, -0.03805353865027428, 0.01667514629662037, -0.0281660333275795, -0.004162105731666088, 0.005164218135178089, 0.01687556877732277, -0.01819835603237152, 0.013261284679174423, 0.013201157562434673, -0.0029612414073199034, 0.008584761060774326, 0.013401580043137074, -0.04529546946287155, 0.001706095994450152, -0.018906516954302788, -0.008444464765489101, -0.010234905406832695, -0.013615364208817482, 0.04585665091872215, 0.008284127339720726, 0.0012083802139386535, 0.002107776002958417, 0.017129437997937202, -0.019761651754379272, -0.03810698539018631, -0.013855870813131332, -0.02322227880358696, 0.011063318699598312, -0.004739990457892418, -0.024251114577054977, -0.001415483420714736, 0.00537800183519721, 0.02278134971857071, -0.015245466493070126, 0.010969787836074829, 0.029261674731969833, -0.014523945748806, -0.024077415466308594, 0.005665273871272802, 0.016367832198739052, 0.029074614867568016, 0.002996315248310566, -0.008564718998968601, 0.020563341677188873, -0.03730529546737671, 0.020095689222216606, 0.0036176249850541353, -0.01739666797220707, -0.03212103620171547, 0.005718720145523548, -0.013461706228554249, -0.0026188530027866364, -0.009940952993929386, 0.013528513722121716, 7.954265311127529e-05, -0.01561958808451891, 0.014537307433784008, -0.018412141129374504, -0.01496487483382225, 0.01100987195968628, -0.009834060445427895, -0.04198182001709938, -0.014283438213169575, -0.01655489206314087, 0.02378346212208271, -0.016541531309485435, -0.023489508777856827, 0.009760572575032711, 0.01887979358434677, 0.025961386039853096, 0.005364640615880489, -0.011323867365717888, 0.023155471310019493, -0.00015198701294139028, -0.004098638892173767, -0.02605491690337658, -0.0073220995254814625, -0.018666008487343788, 0.027190642431378365, 0.012506360188126564, 0.0041821482591331005, 0.009934271685779095, -0.018024656921625137, 0.007302057463675737, -0.019334083423018456, 0.011798200197517872, -0.011484205722808838, -0.025667432695627213, 0.014403692446649075, 0.01974829100072384, 0.0006446921615861356, -0.02127150073647499, -0.013855870813131332, 0.027551403269171715, 0.019200468435883522, 0.01091634202748537, -0.022794710472226143, -0.0007190154865384102, 0.004168786574155092, 0.009212750941514969, 0.012225768528878689, -0.013254603371024132, 0.024478260427713394, -0.013515152968466282, 0.01608724147081375, -0.012419509701430798, -0.00570535846054554, 0.0020392981823533773, 0.013421622104942799, 0.018545756116509438, 0.016982460394501686, -0.0037946647498756647, -0.00542810745537281, 0.02350287139415741, 0.02749795839190483, -0.02398388460278511, -0.028673769906163216, -0.020843932405114174, 0.015739841386675835, 0.013842509128153324, -0.03164002299308777, 0.005745443049818277, -0.021485283970832825, 0.007849878631532192, 0.027952248230576515, 0.01982845924794674, -0.009526746347546577, 0.012366063892841339, -0.03455282747745514, -0.025346755981445312, 0.014136462472379208, 0.02406405285000801, -0.02697685919702053, -0.009847422130405903, -0.008711694739758968, -0.005120793357491493, 0.022567566484212875, 0.004048533271998167, 0.0011616150150075555, 0.028593599796295166, -0.004372549243271351, -0.02266109548509121, -0.6456274390220642, -0.004739990457892418, -0.01360868290066719, -0.015485973097383976, -0.00977393426001072, 0.0010831162799149752, 0.006988062057644129, 0.001537407049909234, -0.011103402823209763, 0.004636439029127359, -0.035648468881845474, 0.03286927938461304, -0.006443581078201532, -0.023048579692840576, -0.00925951637327671, -0.012386105954647064, -0.01588681899011135, -0.0304107628762722, -0.004372549243271351, -0.011778158135712147, -0.01256648637354374, 0.00181549321860075, 0.01675531454384327, 0.0028426581993699074, -0.0008242372423410416, -0.007849878631532192, 0.015245466493070126, 0.02115124650299549, 0.0051675583235919476, 0.03818715363740921, -0.011677946895360947, 0.04748675599694252, 0.014136462472379208, 0.023917077109217644, 0.04855567589402199, 0.010328436270356178, -0.02151200734078884, 0.03468644246459007, 0.0074623953551054, 0.026362231001257896, -0.031666744500398636, -0.024839019402861595, 0.03180035948753357, 0.0017737385351210833, 0.014229992404580116, -0.0024869083426892757, 0.014069654978811741, -0.01946769841015339, -0.008885394781827927, 0.018933238461613655, 0.008083704859018326, 0.004188828635960817, -0.008711694739758968, 0.0004346661444287747, 0.002473546890541911, 0.012987373396754265, 0.01286712009459734, -0.012519720941781998, 0.00046974007273092866, -0.009994398802518845, 0.012800312601029873, 0.01276690885424614, -0.011564373970031738, 0.012285894714295864, -0.006503707729279995, 0.029742689803242683, -0.012820354662835598, 0.006537111476063728, 0.017463475465774536, -0.021044354885816574, -0.0074022687040269375, 0.018732815980911255, 0.006827724166214466, -0.02358303964138031, 0.01623421721160412, 0.001910693827085197, 0.026228616014122963, -0.019320722669363022, 0.016140686348080635, 0.02326236292719841, 0.009633637964725494, -0.028192754834890366, -0.026268700137734413, -0.030624547973275185, 0.026990219950675964, -0.02454506792128086, -0.0044694202952086926, 0.024919189512729645, -0.00454958900809288, -0.0010196490911766887, 0.005561722442507744, -0.0008534655207768083, 0.007876602001488209, -0.001598368864506483, 0.03786647692322731, 0.011824923567473888, -0.01815827190876007, 0.003099866909906268, 0.02213999815285206, -0.010007760487496853, -0.0027574787382036448, -0.022647734731435776, -0.0013411601539701223, -0.017690619453787804, 0.001173306372947991, -0.0047065867111086845, -0.033537354320287704, -0.021124524995684624, 0.04160769656300545, -0.024197667837142944, 0.019160384312272072, -0.013014096766710281, -0.006547132972627878, -0.0040318313986063, 0.011624501086771488, -0.02390371449291706, 0.007295376621186733, 0.011063318699598312, 0.018452225252985954, 0.010535539127886295, 0.021124524995684624, -0.014002847485244274, 0.019334083423018456, 0.00061087089125067, 0.020002158358693123, 0.04131374508142471, -0.006116224452853203, -0.009927591308951378, -0.012038707733154297, -0.009353047236800194, -0.004329124465584755, 1.1639114745776169e-05, 0.012887162156403065, -0.006577196065336466, 0.037091512233018875, -0.0157264806330204, 0.014630837365984917, 0.00935972761362791, 0.04112668335437775, -0.018545756116509438, -0.006443581078201532, 0.007455714512616396, 0.01823844201862812, 0.0066373227164149284, -0.0036510287318378687, -0.01902676932513714, -0.012479636818170547, -0.012038707733154297, -0.03997759521007538, -0.0017094362992793322, -0.025066165253520012, 0.0023750057443976402, 0.0005461511318571866, 0.005047305021435022, 0.006770937703549862, -0.020055605098605156, -0.016047155484557152, -0.0058656963519752026, 0.024678682908415794, -0.012633293867111206, 0.02213999815285206, 0.026469122618436813, -0.019721567630767822, 0.004516185261309147, 0.02374337799847126, -0.0047065867111086845, -0.030945222824811935, 0.010301712900400162, 0.0005419756635092199, -0.01408301666378975, 0.008811905980110168, -0.022834796458482742, -0.011257059872150421, 0.03412526100873947, -0.01225249096751213, 0.005625189747661352, 0.002005894435569644, -0.018532393500208855, -0.016648422926664352, 0.01266669761389494, -0.011056637391448021, 0.013842509128153324, -0.017089352011680603, -0.020403003320097923, 0.029876304790377617, 0.000957852229475975, -0.01607387885451317, 0.0074957991018891335, 0.016194133087992668, 0.03679755702614784, -0.01191177312284708, -0.0015758214285597205, 0.01743675209581852, 0.0073621841147542, 0.014430414885282516, 0.0023182195145636797, 0.0049738166853785515, 0.02482565864920616, -0.0035708595532923937, 0.012853758409619331, 0.012833716347813606, 0.01191177312284708, 0.03107883781194687, -0.004021810367703438, 0.005975928623229265, -0.03436576575040817, 0.0021896150428801775, -0.0011975240195170045, 0.0139226783066988, -0.016301024705171585, -0.011637862771749496, -0.021218053996562958, -0.005418086424469948, 0.0065805367194116116, 0.018532393500208855, 0.008077023550868034, 0.00503728399053216, -5.331549982656725e-05, -0.011631181463599205, 0.0030146874487400055, 0.029635796323418617, -0.014457138255238533, 0.001490641850978136, -0.011998622678220272, -0.019761651754379272, 0.004188828635960817, -0.004770054016262293, 0.013989485800266266, 0.018652647733688354, -0.002009234856814146, 0.01807810366153717, -0.005251067690551281, -0.01157105527818203, 0.011905092746019363, 0.008203958161175251, 0.0007553420145995915, 0.02565407194197178, -0.008785183541476727, 0.032495155930519104, -0.03268221765756607, 0.002228029305115342, 0.005130814388394356, 0.023649847134947777, -0.029822858050465584, -0.002005894435569644, 0.006573855876922607, 0.013989485800266266, -0.005074027925729752, 0.019815098494291306, 0.02529331110417843, -0.023917077109217644, -0.004833520855754614, -0.02741778828203678, -0.0018221739446744323, 0.020256027579307556, -0.04679195582866669, 0.008491230197250843, -0.0016042145434767008, 0.008290807716548443, 0.029341844841837883, 0.01859920099377632, 0.004446037579327822, 0.012179003097116947, 0.0038347491063177586, 0.056919969618320465, 0.015779925510287285, 0.010241586714982986, 0.01157105527818203, -0.03316323086619377, -0.04489462450146675, -0.018385417759418488, -0.0019541187211871147, 0.015058405697345734, -0.002824285998940468, 0.015405803918838501, 0.0025720878038555384, 0.00029374411678873, 0.0035040522925555706, 0.011557693593204021, 0.01141071692109108, -0.024598512798547745, -0.024798935279250145, 0.02270118147134781, 0.00039959221612662077, -0.005120793357491493, -0.004235594067722559, -0.011684628203511238, -0.024718767032027245, -0.021204693242907524, 0.036610499024391174, -0.020924102514982224, -0.0023933779448270798, 0.014403692446649075, -0.011624501086771488, 0.0021445199381560087, 0.015632949769496918, 0.018171634525060654, -0.01011465210467577, 0.027310896664857864, 0.01272682473063469, 0.023810185492038727, 0.015178658999502659, -0.0302504263818264, 0.017610451206564903, -0.00430908240377903, 0.0013837498845532537, -0.029582351446151733, -0.011223656125366688, 0.02175251394510269, -0.018746178597211838, 0.008671610616147518, -0.030971946194767952, -0.005444809328764677, 0.006587217096239328, 0.009139263071119785, -0.00502726249396801, -0.02693677507340908, 0.015753204002976418, 0.012933927588164806, -0.010983149521052837, -0.01855911687016487, -0.0030146874487400055, -0.03180035948753357, 0.02422439120709896, 0.10208182781934738, 0.014991598203778267, -0.020803848281502724, 0.005190941039472818, 0.0010380211751908064, 0.006981381215155125, -0.02006896585226059, -0.027150558307766914, 0.024839019402861595, -0.00064218690386042, 0.003828068496659398, -0.02657601423561573, 0.026402315124869347, -0.01655489206314087, -0.00931964349001646, -0.011176890693604946, -0.005057326052337885, 0.009894187562167645, 0.007910005748271942, -0.008023577742278576, 0.000350739253917709, 0.025039441883563995, 0.001404627226293087, 0.011130125261843204, -0.021739153191447258, -0.012753547169268131, 0.035327792167663574, -0.0059892903082072735, 0.0029077953658998013, -0.020977547392249107, -0.02414422295987606, 0.013047500513494015, 0.028994444757699966, 0.024451537057757378, -0.02621525339782238, -0.006847766228020191, 0.015245466493070126, 0.017730703577399254, -0.010782727040350437, -0.005301173310726881, 0.019881905987858772, 0.024892466142773628, 0.004295720718801022, -0.006102863233536482, 0.015058405697345734, 0.0034305639564990997, -0.021338308230042458, -0.011283783242106438, -0.005381342489272356, -0.016862208023667336, 0.03759924694895744, -0.005785527639091015, 0.0013787393691018224, -0.0298495814204216, 0.026068277657032013, 0.002029277151450515, -0.011404036544263363, -0.00935972761362791, -0.006774278357625008, 0.009633637964725494, -0.00643356004729867, 0.005194281227886677, 0.0009277888457290828, -0.0049738166853785515, -0.013274645432829857, -0.021578814834356308, -0.02218008227646351, 0.0038648126646876335, -0.0150049589574337, 0.02234042063355446, -0.022353781387209892, 0.006757576484233141, -0.028860829770565033, 0.014042931608855724, 0.02685660496354103, 0.011196932755410671, 0.010168097913265228, -0.009987717494368553, 0.012773589231073856, -0.01731649786233902, -0.018412141129374504, -0.03428559750318527, 0.0013987815473228693, -0.011257059872150421, -0.012546444311738014, -0.0002563736925367266, 0.005057326052337885, 0.01611396297812462, -0.022367144003510475, 0.0017720683244988322, -0.011631181463599205, 0.003921599127352238, -0.000459301401861012, -0.017410028725862503, 0.010047844611108303, 0.014457138255238533, 0.0026238637510687113, -0.010341797955334187, -0.0015165297081694007, -0.01819835603237152, 0.000496880616992712, -0.03254860267043114, -0.0029829537961632013, -0.004429335705935955, 0.009379769675433636, -0.020082328468561172, 0.014670922420918941, 0.020015520974993706, -0.018585840240120888, -0.03236154094338417, -0.0007720438879914582, -0.03316323086619377, 0.017289774492383003, -0.00851795356720686, -0.010709238238632679, 0.014684283174574375, 0.012880481779575348, 0.01895996183156967, 0.004843541886657476, -0.02191285230219364, -0.007201846223324537, -0.041874926537275314, 0.024491621181368828, 0.004175467416644096, -0.02502608112990856, -0.0030931863002479076, 0.020162496715784073, -0.020042242482304573, 0.016728593036532402, 0.007181803695857525, -0.001257650787010789, 0.009186028502881527, 0.000731124309822917, -0.019400890916585922, -0.032495155930519104, -0.0035741999745368958, -0.0158066488802433, 0.009733849205076694, -0.01081613078713417, 0.014630837365984917, -0.012746866792440414, 0.0008538830443285406, -0.013475067913532257, -0.038881950080394745, 0.00194075726903975, -0.0320141427218914, -0.014991598203778267, 0.008411061018705368, 0.020416365936398506, -0.0007348822546191514, -0.0014605785254389048, -0.03511400893330574, -0.03551485389471054, -0.008424422703683376, -0.01557950396090746, -0.035247623920440674, 0.011043275706470013, -0.013361495919525623, 0.007001423742622137, -0.006874489597976208, 0.03567519411444664, -0.010021121241152287, 0.01568639650940895, -0.0028710514307022095, -0.003998427651822567, 0.001006287639029324, -0.02677643671631813, -0.019855182617902756, -0.03508728742599487, -0.01675531454384327, 0.019895266741514206, 0.010368520393967628, 0.028834106400609016, -0.014109739102423191, 0.004125361796468496, 0.0316934660077095, -0.008705014362931252, -0.0050038802437484264, -0.005414746236056089, -0.03957675024867058, -0.010822811163961887, 0.006974700838327408, -0.0027424469590187073, -0.006754235830157995, -0.011778158135712147, -0.009386450983583927, 0.03898884356021881, 0.01231261808425188, 0.005381342489272356, -0.013040819205343723, 0.016247577965259552, -0.02605491690337658, 0.016608338803052902, 0.004145403858274221, 0.028513431549072266, -0.015900179743766785, 0.026763075962662697, 0.0015298912767320871, 0.007201846223324537, -0.010161417536437511, 0.01875953935086727, 0.003824728075414896, 0.005204302258789539, -0.006436900235712528, -0.02617516927421093, 0.006299945060163736, -0.014938152395188808, -0.009586873464286327, 0.030196979641914368, -0.02757812663912773, -0.02322227880358696, -0.001417153631336987, -0.002037628088146448, -0.03989742696285248, -0.00560514722019434, -0.006994742900133133, 0.0016000390751287341, 0.011938496492803097, -0.0051976218819618225, -0.015566142275929451, -0.0019307361217215657, -0.014537307433784008, 0.05373993515968323, 0.02050989493727684, 0.019761651754379272, 0.008845309726893902, -0.009827380068600178, 0.012479636818170547, 0.011277101933956146, -0.016287662088871002, -0.015940263867378235, 0.018265163525938988, 0.010081248357892036, 0.009439896792173386, 0.005675295367836952, -0.003149972530081868, -0.004743331111967564, -0.04310418292880058, -0.027978971600532532, -0.008965563029050827, -0.0032652155496180058, -0.02201974391937256, -0.004770054016262293, 0.008043620735406876, -0.03359080106019974, -0.01516529731452465, 0.01695573702454567, 0.022086551412940025, -0.007395587861537933, 0.009366407990455627, -0.03083833120763302, 0.0016626711003482342, 0.013321410864591599, 0.024037329480051994, 0.03471316397190094, -0.014991598203778267, -0.03444593399763107, -0.026910051703453064, -0.03901556506752968, -0.01137063279747963, 0.0010664144065231085, 0.021044354885816574, -0.009092497639358044, -0.0018004615558311343, 0.006032715085893869, -0.0006613940349780023, -0.014203269965946674, -0.0009469959768466651, -0.01723632961511612, 0.02422439120709896, 0.00895888265222311, 0.011096722446382046, 0.017744066193699837, 0.007910005748271942, 0.016407916322350502, 0.004252295941114426, 0.005929163657128811, 0.010669154115021229, -0.03356407582759857, 0.0023349213879555464, 0.015298912301659584, 0.0016793729737401009, 0.017062630504369736, -0.007181803695857525, -0.01715615950524807, -0.013989485800266266, -0.016929015517234802, -0.006867808755487204, 0.0028192754834890366, -0.028353093191981316, -0.015512696467339993, 0.012406148947775364, -0.03351062908768654, 0.0022146678529679775, -0.013047500513494015, 0.005575084127485752, -0.0031082178466022015, 0.03228137269616127, -0.02262101136147976, 0.03671738877892494, -0.03372441604733467, 0.0008037774823606014, -0.025787686929106712, 0.000357002456439659, 0.019841820001602173, -0.008277446031570435, 0.007722944486886263, -0.003821387654170394, -0.02290160395205021, 0.017329860478639603, 0.03356407582759857, 0.027391064912080765, -0.00455961050465703, 0.024598512798547745, -0.0008401040104217827, -0.000871837604790926, 0.014684283174574375, -0.01811818778514862, -0.02159217745065689, 0.0300099179148674, 0.030624547973275185, 0.0020960846450179815, -0.006403496488928795, -0.020977547392249107, 0.033938199281692505, 0.005785527639091015, 0.013648767955601215, 0.009940952993929386, -0.048903074115514755, -0.004466079641133547, -0.014884705655276775, 0.010862896218895912, 0.005107431672513485, 0.008471188135445118, -0.009633637964725494, -0.02840653993189335, -0.022754626348614693, 0.005294492468237877, 0.016060518100857735, -0.015218743123114109, 0.01787768118083477, 0.015232104808092117, -0.00811710860580206, 0.001456403057090938, -0.0054047247394919395, -0.015392443165183067, 0.010742641985416412, 0.0020142453722655773, -0.03861472010612488, -0.013555237092077732, 0.0027708401903510094, 0.042836952954530716, -0.004569631535559893, -0.02374337799847126, -0.01137063279747963, -0.008364296518266201, -0.026322146877646446, -0.02513297274708748, -0.008070343174040318, 0.014350245706737041, 0.03436576575040817, 0.025787686929106712, 0.013034138828516006, 0.013348134234547615, -0.002077712444588542, 0.003657709341496229, -0.012219087220728397, -0.017329860478639603, 0.007976813241839409, 0.004198850132524967, -0.000774966727476567, -0.007168442476540804, -0.019320722669363022, 0.00044677499681711197, 0.006724172737449408, -0.010482093319296837, -0.005795548669993877, -0.0016476394375786185, -0.0015415825182572007, 0.013628724962472916, -0.021846044808626175, 0.0011991942301392555, 0.0035942422691732645, -0.005367980804294348, -0.0031366110779345036, -0.024758851155638695, -0.017249690368771553, -0.012065430171787739, -0.01627430133521557, -0.03471316397190094, -0.018732815980911255, 0.010408604517579079, -0.02414422295987606, 0.019694844260811806, -0.005194281227886677, -0.017450112849473953, -0.021779237315058708, -0.01005452498793602, 0.04321107640862465, -0.0025570562575012445, 0.0006167165120132267, 0.031746912747621536, 0.009606915526092052, -0.02302185632288456, -0.004713267553597689, 0.013481749221682549, 0.01564631052315235, -0.027791909873485565, 0.013428302481770515, -0.02661609835922718, -0.0008112933137454093, -0.006279902998358011, 0.002151200780645013, -0.013334772549569607, 0.010482093319296837, -0.007081592455506325, -0.006874489597976208, -0.016207493841648102, 0.026843244209885597, 0.028192754834890366, 0.003395490115508437, 0.004572971723973751, 0.003510732902213931, -0.006664046086370945, 0.0033904793672263622, -0.012753547169268131, -0.0298495814204216, 0.003410521661862731, 0.01671523042023182, -0.0017637173878028989, 0.005541680380702019, -0.006173010915517807, -0.022393865510821342, 0.025881215929985046, -0.035060565918684006, -0.0011607799679040909, 0.20897379517555237, -0.0037412187084555626, -0.0018088124925270677, 0.028860829770565033, -0.0032819174230098724, -0.003824728075414896, 0.038400936871767044, 0.0033904793672263622, -0.0023816865868866444, -0.028700491413474083, -0.003991746809333563, 0.013281326740980148, -0.0001297526468988508, 0.005842314101755619, 0.0019741610158234835, -0.012546444311738014, -0.03332357108592987, 0.007916686125099659, -0.013789063319563866, -0.041367191821336746, 0.002159551717340946, -0.023529592901468277, -0.012994054704904556, -0.020643509924411774, 0.011036595329642296, 0.005675295367836952, -0.019494421780109406, -7.844659558031708e-05, 0.02226025052368641, -0.0019273957004770637, -0.030303871259093285, -0.00030689683626405895, -0.009373089298605919, -0.007128357887268066, -0.01823844201862812, -0.010067886672914028, 0.012559805996716022, 0.008103746920824051, 0.018211718648672104, -0.00532789621502161, 0.0036610497627407312, 0.0037111553829163313, 0.0016417937586084008, 0.003049761289730668, -0.015485973097383976, 0.03228137269616127, -0.013047500513494015, -0.021859407424926758, -0.006286583840847015, 0.00851795356720686, -0.027551403269171715, 0.01747683621942997, 0.04759364575147629, 0.022487396374344826, -0.003968364093452692, -0.009867464192211628, -0.019053492695093155, 0.023917077109217644, -0.0050239223055541515, 0.005150856450200081, -0.012780270539224148, 0.013615364208817482, -0.008831948041915894, 0.039042290300130844, -0.015485973097383976, 0.010789407417178154, -0.0005808075075037777, -0.025627348572015762, 0.024371366947889328, -0.029742689803242683, -0.014042931608855724, -0.003119909204542637, -0.0016960748471319675, 0.015632949769496918, -0.007108315359801054, 0.007348822429776192, 0.03543468564748764, -0.01141071692109108, -0.007709582801908255, 0.0024585151113569736, 0.012994054704904556, 0.0028259563259780407, 0.006814362481236458, -0.020924102514982224, -0.012158961035311222, -0.020857295021414757, -0.011657904833555222, -0.007288695778697729, -0.014777814038097858, -0.0029228271450847387, -0.03706478700041771, -0.010682515799999237, 0.003098196815699339, -0.016581615433096886, -0.005064006894826889, 0.005882398225367069, 0.021084439009428024, 2.6112982141057728e-06, 0.008671610616147518, 0.008284127339720726, -0.011497566476464272, 0.00046974007273092866, 0.039122458547353745, 0.021097801625728607, -0.02274126559495926, -0.005595126189291477, 0.016020433977246284, -0.0007774720434099436, 0.011216975748538971, -0.03009008802473545, 0.03049093298614025, -0.007555925752967596, -0.005565062630921602, -0.01211219560354948, 0.011577735655009747, 0.017690619453787804, -0.025386841967701912, -0.012179003097116947, 0.006573855876922607, 0.015258828178048134, 0.005942525342106819, -0.03383130580186844, -0.009286239743232727, 0.008431104011833668, -0.0006505377823486924, -0.020376279950141907, -0.02342270128428936, 0.0304107628762722, 0.0026739693712443113, -0.016581615433096886, 0.03567519411444664, -0.02633550763130188, 0.010268309153616428, 0.006079480517655611, -0.00570535846054554, 0.012553124688565731, -0.006323327776044607, -0.01588681899011135, 0.015632949769496918, -0.010047844611108303, -0.006289924029260874, 0.003071473678573966, 0.001293559791520238, 0.011196932755410671, 0.0013695532688871026, -0.027310896664857864, 0.023088663816452026, -0.005274450406432152, -0.008885394781827927, -0.027872079983353615, -0.02002888172864914, -0.0017336540622636676, 0.026789799332618713, 4.000619810540229e-05, 0.00292783766053617, -0.01366881001740694, -0.025480370968580246, -0.0011064988793805242, 0.004572971723973751, 0.02171242982149124, -0.01942761428654194, 0.0076093715615570545, 0.023676570504903793, -0.004766713362187147, -0.025720879435539246, -0.011163529008626938, -0.1702788919210434, 0.016448000445961952, 0.025279950350522995, -0.01316775381565094, 0.008016897365450859, 0.02181932143867016, 0.02653593011200428, -0.00449948338791728, -0.006266541313380003, -0.010228225030004978, 0.04828844591975212, 0.026268700137734413, -0.038721613585948944, -0.024905826896429062, -0.015392443165183067, 0.01879962347447872, -0.026522569358348846, 0.03260204941034317, 0.036049313843250275, 0.015232104808092117, 0.015058405697345734, -0.020296111702919006, 0.00310320733115077, -0.01205206848680973, 0.010609026998281479, 0.012586528435349464, -0.009934271685779095, 0.010876256972551346, 0.007335461210459471, -0.028994444757699966, -0.010081248357892036, 0.01021486334502697, -0.0043391454964876175, -0.01651480793952942, 0.014056293293833733, 0.014270077459514141, -0.013829147443175316, -0.006440240889787674, -0.010989829897880554, 0.008304169401526451, 0.008143831044435501, -0.006303285714238882, 0.0316132977604866, 0.01875953935086727, 0.00023382616927847266, 0.04142063483595848, -0.024037329480051994, -0.00678429938852787, -0.004683203995227814, -0.05080040544271469, 0.005808910354971886, -0.0013236231170594692, 0.0005524143343791366, -0.001960799563676119, 0.03495367243885994, 0.0030363998375833035, 0.0077830711379647255, 0.003362086368724704, -0.011504247784614563, -0.013581960462033749, 0.0010455370647832751, -0.01867937110364437, 0.03244170919060707, -0.0018321950919926167, 0.017490196973085403, -0.0026071618776768446, -0.008197277784347534, 0.013074222952127457, -0.04577648267149925, 0.012005303986370564, 0.008651568554341793, 0.006363412365317345, 0.020536618307232857, -0.02601483091711998, -0.006346710491925478, 0.001980841625481844, -0.01974829100072384, 0.01370889414101839, 0.005748783238232136, -0.01197190023958683, -0.03786647692322731, 0.02781863324344158, -0.005912461783736944, -0.0027006922755390406, -0.0005820601363666356, 0.027150558307766914, 0.00493707275018096, -0.025801047682762146, -0.019561229273676872, -0.002316549187526107, 0.01007456798106432, -0.0295289047062397, 0.0013085914542898536, -0.005872377194464207, 0.020576702430844307, -0.0005841478705406189, 0.0057654851116240025, -0.02418430708348751, 0.01496487483382225, -0.01815827190876007, 0.005949205718934536, -0.01891987770795822, -0.00678429938852787, 0.020002158358693123, 0.03647688403725624, 0.012773589231073856, -0.0024100798182189465, 0.019881905987858772, 0.029315121471881866, 0.016528170555830002, -0.0019541187211871147, 0.021338308230042458, 0.019320722669363022, 0.0045930142514407635, 0.016982460394501686, 0.026789799332618713, -0.01747683621942997, 0.00031900571775622666, 0.0279255248606205, 0.0013745639007538557, 0.06568510830402374, -0.006460282951593399, 0.0009386450401507318, 0.005237706005573273, -0.0033754478208720684, -0.025961386039853096, -0.10101290792226791, 0.01241282932460308, 0.009526746347546577, 0.03214775770902634, -0.002473546890541911, 0.010388562455773354, -0.0035007118713110685, 0.012987373396754265, 0.003146632108837366, 0.0012801983393728733, -0.018225079402327538, -0.04318435490131378, 0.009212750941514969, -0.005695337429642677, 0.014149824157357216, -0.01990862749516964, -0.006607259623706341, -0.01986854337155819, 0.008912117220461369, 0.025480370968580246, 0.014229992404580116, -0.02553381770849228, 0.011557693593204021, -0.019440975040197372, 0.004843541886657476, 0.0017703981138765812, -0.03837421536445618, 0.013161073438823223, 0.03204086795449257, 0.01803801953792572, -0.016047155484557152, 0.0022180082742124796, 0.01970820501446724, -0.01326796505600214, -0.019761651754379272, -0.005541680380702019, -0.04051205515861511, -0.0007010609842836857, 0.014510584063827991, -0.016568254679441452, 0.01127042155712843, -0.011076679453253746, 0.014630837365984917, -0.01564631052315235, 0.007876602001488209, 0.004746671300381422, -0.025707516819238663, 0.013789063319563866, 0.01875953935086727, -0.03332357108592987, -0.020523257553577423, 0.00831753108650446, -0.03599586710333824, -0.007114996202290058, 0.014871344901621342, -0.01867937110364437, 0.02693677507340908, 0.00045178557047620416, -0.019921990111470222, -0.0040719155222177505, -0.013895954936742783, 0.009880825877189636, 0.005641891621053219, 0.032094310969114304, 0.0003110723046120256, -0.00017349066911265254, -0.0011006532004103065, -0.029395289719104767, 0.02605491690337658, -0.010301712900400162, -0.02589457854628563, 0.02103099413216114, -0.012519720941781998, 0.00861816480755806, -0.023208918049931526, 0.02414422295987606, -0.03332357108592987, -0.0051675583235919476, 0.009733849205076694, -0.0016918993787840009, -0.014042931608855724, -0.025039441883563995, 0.007716263644397259, 0.0008726726518943906, 0.019000045955181122, -0.0005962567520327866, 0.004242274910211563, -0.007722944486886263, 0.011697988957166672, -0.015018320642411709, -0.0020693615078926086, 0.0065437923185527325, -0.010188139975070953, -0.01611396297812462, 0.01005452498793602, 0.020563341677188873, 0.009600234217941761, 0.011196932755410671, -0.003188386792317033, 0.0028359773568809032, -0.011337229050695896, -0.007008104585111141, -0.06076808273792267, 0.0307314395904541, 0.009927591308951378, 0.002759148832410574, -0.00014081763220019639, -0.012085472233593464, 0.012479636818170547, -0.010809449478983879, -0.012880481779575348, 0.020322835072875023, -0.02087065577507019, 0.03431231901049614, -0.023035218939185143, -0.01691565290093422, -0.005458171013742685, 0.0020727019291371107, 0.00045971895451657474, -0.003995086997747421, 0.00865824893116951, -0.003727857256308198, 0.012974011711776257, 0.01075600367039442, 0.004813478793948889, -0.003828068496659398, -0.02601483091711998, -0.005361299961805344, -0.0035708595532923937, -0.005221004132181406, 0.010776045732200146, -0.013087584637105465, 0.010595666244626045, -0.026121724396944046, -0.0033019594848155975, 0.008411061018705368, 0.017129437997937202, 0.0001541791280033067, -0.007422310765832663, -0.022006383165717125, 0.01886643096804619, 0.03615620732307434, -0.010809449478983879, -0.009272878058254719, -0.015820011496543884, -0.013895954936742783, 0.007028146646916866, 0.021859407424926758, 0.0030196979641914368, 0.002809254452586174, 0.021164609119296074, -0.017289774492383003, 0.00042485378799028695, 0.01791776530444622, 0.011577735655009747, -0.02127150073647499, -0.010949745774269104, -0.021899491548538208, 0.009920910000801086, -0.008711694739758968, -0.0003922851465176791, -0.020242664963006973, 0.016407916322350502, -0.007008104585111141, 0.015472611412405968, -0.004770054016262293, -0.003828068496659398, -0.039282795041799545, -0.005691997241228819, -0.011544331908226013, -0.009880825877189636, -0.026228616014122963, -0.006052757613360882, -0.0031399514991790056, 0.005064006894826889, 0.025707516819238663, 0.010889618657529354, 0.006086161360144615, 0.008878713473677635, -0.0031599937938153744, -0.008391018956899643, 0.01017477922141552, -0.007428991608321667, 0.008725056424736977, -0.039122458547353745, 0.00482684001326561, 0.028299648314714432, 0.003961683250963688, -0.0157264806330204, 0.00845782645046711, -0.0036677306052297354, 0.00941985473036766, 0.025079527869820595, -0.015820011496543884, 0.007736305706202984, -0.018091464415192604, 0.009760572575032711, 0.014457138255238533, -0.005808910354971886, -0.0064201983623206615, 0.027685018256306648, 0.024692043662071228, -0.019601313397288322, 0.014670922420918941, 0.008978924714028835, -0.008738418109714985, 0.02354295551776886, -0.012720143422484398, -0.0147243682295084, -0.029822858050465584, -0.005190941039472818, 0.00179044040851295, 0.001331139006651938, 0.0076628178358078, 0.016648422926664352, 0.023917077109217644, -0.0013361495221033692, -0.0009227782720699906, 0.005661933682858944, -0.026669545099139214, 0.0005929163889959455, 0.0307314395904541, 0.00044552236795425415, 0.018826346844434738, 0.01051549706608057, 0.006610599812120199, 0.04043188691139221, 0.03332357108592987, 0.017503559589385986, 0.02151200734078884, 0.014176546595990658, 0.0024585151113569736, 0.017049267888069153, 0.0039817257784307, -0.03559502214193344, -0.0016726922476664186, 0.010408604517579079, -0.03925607353448868, 0.0035708595532923937, 0.009266196750104427, -0.020135773345828056, 0.03890867531299591, -0.01310762669891119, -0.020042242482304573, 0.015552780590951443, 0.03131934627890587, 0.03057110123336315, 0.019106939435005188, 0.002323230030015111, -0.011885050684213638, -0.012179003097116947, 0.004429335705935955, -0.004519525915384293, 0.03567519411444664, 0.0076895407401025295, 0.0010588985169306397, -0.004075256176292896, -0.004262316972017288, 0.029983196407556534, -0.023168833926320076, -0.02197965979576111, 0.031105561181902885, -0.00925951637327671, 0.024959273636341095, -0.0028961042407900095, 0.006610599812120199, -0.0010338457068428397, 0.01743675209581852, 0.01695573702454567, 0.00013319740537554026, -0.02414422295987606, 0.0034439254086464643, 0.022327058017253876, -0.0036142845638096333, -0.02010904997587204, 0.006724172737449408, -0.001860588206909597, 0.0015532738761976361, -0.022474035620689392, 0.014991598203778267, 0.021458562463521957, -0.022914964705705643, 0.00547821307554841, -0.011303825303912163, -0.02474549040198326, 0.023008495569229126, 0.000906076398678124, -0.006266541313380003, 0.009987717494368553, -0.03222792595624924], "53f6a2ac-8c4f-45b9-906b-04d3d023970b": [0.004363034386187792, -0.01954423449933529, -0.006046835333108902, -0.0022928707767277956, -0.0044845109805464745, 0.011216339655220509, -0.01091939676553011, -0.02047555521130562, -0.007875733077526093, -0.03482329100370407, 0.029667284339666367, 0.020286591723561287, 0.01700672321021557, 0.013497400097548962, -0.012782037258148193, 0.002490270184352994, 0.034904275089502335, -0.004251680802553892, 0.04888758063316345, -0.027831638231873512, 0.005557554308325052, -0.013443410396575928, -0.004498008638620377, 0.012863022275269032, -0.008915032260119915, 0.033932462334632874, 0.02316153794527054, -0.006212178152054548, 0.0065057468600571156, -0.011493035592138767, -0.00697140721604228, 0.010554966516792774, 0.008219916373491287, -0.0016787390923127532, -0.016790766268968582, 0.0122151467949152, 0.019962653517723083, -0.02232469990849495, 0.0023586705792695284, -0.02432231418788433, 0.007011899258941412, -0.011270328424870968, -0.02031358703970909, 0.006002968642860651, -0.012437853962182999, 0.017222682014107704, -0.009468425996601582, -0.028992414474487305, -0.030693087726831436, 0.010946391150355339, 0.028047597035765648, -0.003526195650920272, -0.028506508097052574, 0.012221895158290863, -0.01567048206925392, -0.003920994699001312, 0.013875327073037624, 0.0185589250177145, -0.025429101660847664, 0.008773310109972954, 0.01409128587692976, -0.0036746670957654715, 0.007079386152327061, 0.0037286567967385054, -0.03336557373404503, -0.002691044006496668, -0.015279056504368782, -0.01553550735116005, -0.004754459019750357, -0.01013654749840498, 0.03765774518251419, 0.014550196938216686, -0.002461588243022561, 0.001725136418826878, 0.02721075899899006, -0.023485476151108742, -0.04429846629500389, -0.01553550735116005, -0.021190917119383812, 0.007511302828788757, -0.007578790187835693, -0.026103971526026726, -0.0034114678855985403, -0.00859784334897995, 0.02486221119761467, -0.013915819115936756, 0.006714956369251013, 0.03808966279029846, -0.009934086352586746, -0.02920837327837944, 0.005608169827610254, 0.03595707193017006, 0.022014258429408073, 0.011439046822488308, -0.00014066821313463151, 0.020286591723561287, -0.028020601719617844, 0.010446987114846706, 0.0009245718829333782, -0.02198726497590542, -0.03603805601596832, 0.010372751392424107, -0.018059521913528442, -0.00036168814403936267, -0.02329651266336441, 0.01054821815341711, -0.0023283015470951796, -0.017425144091248512, 0.02115042507648468, -0.014698668383061886, -0.007734009996056557, 0.019463250413537025, -0.016385843977332115, -0.03879152610898018, -0.022095244377851486, -0.011533528566360474, 0.02769666537642479, -0.019463250413537025, -0.028749462217092514, 0.008888037875294685, 0.010811417363584042, 0.017209185287356377, -0.0027281618677079678, -0.00028471078258007765, 0.02642790973186493, -0.016493823379278183, 0.010953140445053577, -0.026063479483127594, -0.005378713831305504, -0.004821945913136005, 0.0440555140376091, -0.0007832709816284478, 0.002196701942011714, 0.009745122864842415, -0.014361233450472355, 0.01630485989153385, -0.021960269659757614, 0.006320157554000616, -0.01133106742054224, -0.03296064957976341, 0.03471531346440315, 0.015495015308260918, -0.012782037258148193, -0.02553708106279373, -0.008246911689639091, 0.020988456904888153, 0.012134162709116936, 0.025388609617948532, -0.018599417060613632, -0.0027214132715016603, 0.009886845014989376, -0.002642116043716669, 0.013875327073037624, -0.009475174359977245, 0.01630485989153385, -0.02193327434360981, 0.008138932287693024, -0.012498592026531696, -0.02198726497590542, -0.0031297095119953156, 0.010244526900351048, 0.022824103012681007, 0.017074210569262505, 0.0005141666042618454, -0.005820753518491983, 0.02667086198925972, 0.019557733088731766, -0.01783006452023983, -0.035930078476667404, -0.013288190588355064, 0.0019419384188950062, 0.026090474799275398, -0.02491619996726513, 0.009657389484345913, -0.0166018009185791, 0.0036577952560037374, 0.025820525363087654, 0.013078980147838593, -0.014982113614678383, 0.013632373884320259, -0.025375111028552055, -0.015508512035012245, 0.026805836707353592, 0.025321122258901596, -0.011789978481829166, -0.015319548547267914, -0.010568464174866676, -0.005692528560757637, 0.006164937280118465, -0.003370975609868765, -0.0014189141802489758, 0.027318736538290977, -0.012437853962182999, -0.012633565813302994, -0.6388049125671387, -0.010055562481284142, -0.018734391778707504, -0.005442826543003321, 0.001079792040400207, -0.0027619055472314358, 0.003095966065302491, -0.003397970460355282, 0.00033406063448637724, 0.004913053475320339, -0.01792454719543457, 0.027966612949967384, -0.01567048206925392, -0.023337004706263542, -0.0185589250177145, -0.004012102261185646, -0.0025105164386332035, -0.030882051214575768, -0.0016880185576155782, -0.009549410082399845, -0.010264772921800613, 0.017992034554481506, 0.019328275695443153, 0.0058781178668141365, 0.005307852290570736, 0.0029373716097325087, 0.018734391778707504, 0.01762760430574417, 0.016399340704083443, 0.045351263135671616, -0.01842395029962063, 0.04605312645435333, 0.022729622200131416, 0.013929316774010658, 0.042813751846551895, -0.0018963846378028393, -0.021676823496818542, 0.02559106983244419, 0.005209996365010738, 0.015859445556998253, -0.04114007577300072, -0.026211950927972794, 0.02588801272213459, -0.00018147676018998027, 0.010035316459834576, 0.00048464100109413266, 0.0032360015902668238, -0.012269136495888233, -0.005236991215497255, 0.016979729756712914, 0.005152632482349873, 0.0037185335531830788, -0.01016354188323021, 0.007052391301840544, -0.006903919856995344, 0.0037016619462519884, 0.02032708376646042, -0.016129393130540848, -0.009117493405938148, -0.006391018629074097, 0.009495420381426811, 0.015009108930826187, -0.004953545518219471, 0.009461677633225918, 0.001943625626154244, 0.02144736796617508, -0.006087327376008034, 0.014361233450472355, 0.0041200811974704266, -0.027426715940237045, 0.006343777757138014, 0.02939733676612377, 0.002940746024250984, -0.02299956977367401, 0.021703818812966347, 0.010608956217765808, 0.032123811542987823, -0.018207991495728493, 0.013517646118998528, 0.024727236479520798, 0.01079791970551014, -0.01768159307539463, -0.03908846899867058, -0.020651021972298622, 0.013227451592683792, -0.012991247698664665, -0.013369174674153328, 0.030693087726831436, -0.005301103927195072, -0.010635951533913612, -0.008901535533368587, 0.008206418715417385, 0.007106381002813578, -0.0058612460270524025, 0.030936039984226227, 0.005881492048501968, -0.020826488733291626, -0.0006018996937200427, 0.012593073770403862, 0.001862641191110015, -0.02163633145391941, -0.021649830043315887, 0.00465322844684124, -0.001098350971005857, 0.009812609292566776, -0.008982519619166851, -0.024497780948877335, -0.023525968194007874, 0.03825163096189499, -0.02945132739841938, 0.01611589454114437, -0.007902727462351322, 0.00394461490213871, -0.009616897441446781, 0.0014720602193847299, -0.02667086198925972, 0.017357656732201576, 0.006755448412150145, 0.02251366339623928, 0.009812609292566776, 0.022446176037192345, -0.010386249050498009, 0.008314398117363453, 0.006013091653585434, 0.01592693105340004, 0.03976333886384964, 0.00879355613142252, -0.006229049991816282, -0.004551997873932123, -0.008969021961092949, -0.012309628538787365, -0.009245718829333782, 0.017209185287356377, -0.000544957525562495, 0.018046023324131966, -0.01637234538793564, 0.017020221799612045, 0.007875733077526093, 0.028857441619038582, -0.013726855628192425, -0.013544640503823757, 0.011047622188925743, 0.019355271011590958, 0.009360446594655514, -0.004170696716755629, -0.022446176037192345, -0.007241354789584875, -0.006900545675307512, -0.03331158310174942, -0.00965064112097025, -0.01621037721633911, -0.012984498403966427, 0.008287403732538223, 0.013848332688212395, 0.004214562941342592, -0.012005937285721302, -0.016250869259238243, 0.002986299805343151, 0.022635139524936676, -0.00014731146802660078, 0.018720893189311028, 0.02544259838759899, -0.02799360640347004, 0.015009108930826187, 0.02187928557395935, -0.010777673684060574, -0.01240411028265953, 0.01637234538793564, -0.0071198781952261925, -0.014037296175956726, 0.01360537949949503, -0.021811798214912415, -0.004558746702969074, 0.04367758706212044, -0.024578765034675598, -0.0007676646346226335, 0.0013969808351248503, -0.020597031340003014, -0.014617684297263622, 0.017465636134147644, -0.013092477805912495, 0.00722785759717226, -0.006401142105460167, -0.011445795185863972, 0.027386223897337914, 0.01631835661828518, -0.028695471584796906, 0.006468628998845816, 0.020205607637763023, 0.033095624297857285, -0.003634174820035696, 0.01596742309629917, 0.0119924396276474, 5.7047604059334844e-05, 0.0057566408067941666, -0.005787010304629803, 0.014293746091425419, 0.019112318754196167, 0.005098642781376839, 0.012930508702993393, -0.0001661867427174002, 0.007787999697029591, 0.02359345555305481, -0.008294152095913887, 0.016277864575386047, -0.04397452995181084, 0.0067993151023983955, 0.0029137511737644672, 0.019503742456436157, -0.01568397879600525, -0.0005348344566300511, -0.01379434298723936, -0.003910871688276529, -0.0068701766431331635, 0.012134162709116936, 0.009603399783372879, 0.01827547885477543, -0.0006280508823692799, -0.026441406458616257, 0.00581400515511632, 0.01904483139514923, -0.03150293231010437, 0.003532944479957223, -0.007565292529761791, -0.014658176340162754, -0.004916428122669458, -0.008651833049952984, 0.03277168795466423, 0.003215755568817258, -0.012680807150900364, 0.018977344036102295, 0.003964861389249563, -0.0012611632701009512, 0.01098688319325447, 0.002952556125819683, 0.00543607771396637, 0.02471373975276947, -0.02159583941102028, 0.03053111769258976, -0.02432231418788433, -0.002178143011406064, -0.001180178951472044, 0.022540656849741936, -0.01743864081799984, -0.004713966976851225, 0.01958472654223442, 0.016547812148928642, 2.4714478058740497e-05, 0.004170696716755629, 0.025321122258901596, -0.006930914707481861, 0.003880502423271537, -0.009805860929191113, -0.009144488722085953, 0.002424470381811261, -0.04400152340531349, 0.011128606274724007, 0.01978718861937523, 0.004997412208467722, 0.015940429642796516, 0.023606952279806137, 0.006121071055531502, 0.00823341403156519, 0.010035316459834576, 0.06548938155174255, 0.0182619821280241, 0.01572447083890438, -0.0003102293121628463, -0.030018217861652374, -0.018788380548357964, -0.016574807465076447, 0.007234606426209211, 0.014523202553391457, 0.00024421856505796313, -5.783846791018732e-05, 0.010082557797431946, 0.0034215908963233232, 0.002507142024114728, 0.0009043258032761514, 0.004238183610141277, -0.025915008038282394, -0.029964227229356766, 0.026022987440228462, -0.00015290023293346167, -0.005692528560757637, -0.011634758673608303, -0.021892782300710678, -0.019611721858382225, -0.015522009693086147, 0.0407351516187191, -0.030855055898427963, 0.013544640503823757, 0.026805836707353592, -0.005567677319049835, -0.003205632558092475, 0.0035093240439891815, 0.01587294228374958, -0.02750770002603531, 0.03476930037140846, 0.018869364634156227, 0.01607540249824524, 0.01630485989153385, -0.03271769732236862, 0.022770114243030548, 0.0007933940505608916, -0.00044161805999465287, -0.03169189393520355, -0.006502372212707996, 0.023579956963658333, -0.014833642169833183, -0.003350729588419199, -0.02702179364860058, -0.016102397814393044, 0.01768159307539463, -0.012093670666217804, 0.005274109076708555, -0.0307740718126297, 0.01816749945282936, 0.03004521131515503, -0.005982722621411085, -0.0016483699437230825, -0.014320741407573223, -0.02993723377585411, 0.012296130880713463, 0.1013384759426117, 0.01607540249824524, -0.012572827748954296, -0.01062245387583971, 0.011250082403421402, 0.005510313436388969, -0.017951542511582375, -0.038953494280576706, 0.02422783337533474, -0.001871077110990882, 0.008192921988666058, -0.021811798214912415, 0.0295593049377203, -0.011513281613588333, 0.0027635926380753517, -0.017155194655060768, -0.0037387798074632883, -0.0074978056363761425, -0.007545046508312225, -0.015198072418570518, -0.0032123811542987823, 0.027966612949967384, 0.0034199035726487637, 0.01724967733025551, -0.022243715822696686, -0.021892782300710678, 0.038899507373571396, 0.010892401449382305, -0.002967740874737501, -0.02256765216588974, -0.011830470524728298, 0.02588801272213459, 0.013200457207858562, 0.029073398560285568, -0.02685982547700405, -0.01262681744992733, 0.013065483421087265, 0.018450945615768433, -0.009630395099520683, 0.0036847901064902544, 0.007990460842847824, 0.018720893189311028, 0.014226259663701057, -0.01526555884629488, 0.008064696565270424, -0.0025746289175003767, -0.016196880489587784, -0.00788922980427742, -0.012572827748954296, -0.0010679817060008645, 0.03898049145936966, -0.00368816452100873, -0.004899556282907724, -0.025226639583706856, 0.0413290373980999, -0.010453736409544945, -0.013693111948668957, -0.012383864261209965, -0.01861291378736496, 0.018140505999326706, -0.0032494990155100822, -0.002355296164751053, 0.0003557830350473523, -0.008064696565270424, 0.0016981415683403611, -0.0068330587819218636, -0.01189120952039957, -0.0174926295876503, -0.02379591576755047, 0.022149233147501945, -0.0068094381131231785, 0.014320741407573223, -0.025456096976995468, 0.012208398431539536, -0.0030774071346968412, 0.019598225131630898, 0.015805454924702644, -0.007626031059771776, 0.0021646455861628056, -0.0117697324603796, -0.004913053475320339, -0.03306863084435463, 0.0023029937874525785, -0.01949024572968483, -0.0009591589914634824, -0.010689940303564072, 0.008773310109972954, 0.008759812451899052, -0.02159583941102028, -0.012208398431539536, -0.012437853962182999, 0.0013227452291175723, -0.006087327376008034, -0.01523856446146965, 0.002461588243022561, 0.0064551313407719135, 0.001862641191110015, -0.021676823496818542, -0.005051401909440756, -0.012539084069430828, 0.0041909427382051945, -0.03293365612626076, -0.009265964850783348, -0.016736775636672974, 0.015791958197951317, -0.00991384033113718, 0.008057947270572186, 0.024011874571442604, -0.01206667535007, -0.022162729874253273, -0.004869186785072088, -0.020691514015197754, 0.01457719225436449, 0.008179424330592155, -0.00028998320340178907, 0.01792454719543457, 0.023849906399846077, 0.016480324789881706, 0.007997209206223488, -0.025753038004040718, 0.0005116357933729887, -0.04459540918469429, 0.012876519002020359, 0.006073829717934132, -0.02510516345500946, -0.010406495071947575, 0.014428720809519291, -0.028101585805416107, 0.02799360640347004, 0.005635164212435484, 0.010878904722630978, 0.024389801546931267, 0.010298515670001507, -0.01768159307539463, -0.040573183447122574, -0.0005512844072654843, -0.02285109832882881, 0.010406495071947575, -0.013004744425415993, 0.010878904722630978, -0.02266213484108448, -0.016777267679572105, -0.01069668959826231, -0.03965536132454872, 0.005449575372040272, -0.03271769732236862, -0.004751084838062525, -0.007653025910258293, 0.016439832746982574, 0.009832856245338917, -0.011857465840876102, -0.0254965890198946, -0.024578765034675598, -0.006056958343833685, -0.014712166041135788, -0.021865786984562874, 0.013193707913160324, -0.010831663385033607, 0.01523856446146965, -0.006681213155388832, 0.03703686594963074, -0.026171458885073662, -0.0018862616270780563, 0.007349334191530943, 0.0034165293909609318, 0.0023299886379390955, -0.02760218270123005, -0.02081299014389515, -0.03096303530037403, -0.007747507654130459, 0.018504934385418892, 0.02553708106279373, 0.007720512803643942, -0.006822935771197081, -0.003667918499559164, 0.04332665354013443, -0.010899150744080544, -0.008253660053014755, -0.016696283593773842, -0.041733961552381516, -0.014307243749499321, 0.0017394773894920945, -0.0071266270242631435, 0.0006326906150206923, -0.016574807465076447, -0.006083953194320202, 0.04478437453508377, 0.008489864878356457, 0.010494228452444077, -0.013504148460924625, 0.00886779185384512, -0.026400914415717125, 0.01710120588541031, -0.006546238902956247, 0.035093240439891815, -0.004012102261185646, 0.03131396695971489, -0.0011169097851961851, -0.0007714607636444271, 0.0018609539838507771, 0.01521157007664442, -0.0035633135121315718, 0.002416034461930394, -0.011398553848266602, -0.017398148775100708, 0.003974984399974346, -0.02110993303358555, -0.020111124962568283, 0.031178994104266167, -0.03873753920197487, -0.02793961763381958, -0.005668907891958952, 0.005058150738477707, -0.03101702407002449, -0.014023798517882824, -0.004859063774347305, -0.0029205000028014183, 0.01988166943192482, -0.010271521285176277, -0.018585920333862305, 0.004670100286602974, -0.013355677016079426, 0.0615481436252594, 0.02079949341714382, 0.030693087726831436, 0.014496207237243652, -0.010190537199378014, 0.006795940920710564, 0.0064652543514966965, -0.006124445237219334, -0.008469618856906891, 0.014860637485980988, 0.0016964544774964452, 0.008665330708026886, 0.0026016237679868937, -0.007686769124120474, 0.005760015454143286, -0.04389354586601257, -0.034553345292806625, 0.0030537866987288, -0.006917417515069246, -0.026657365262508392, -0.0016196880023926497, -0.003284929785877466, -0.03541717678308487, 0.0024818344973027706, 0.016763770952820778, 0.019868172705173492, -0.009994824416935444, 0.009448179975152016, -0.01934177428483963, 0.004393403884023428, 0.01128382608294487, 0.019422758370637894, 0.022743118926882744, -0.01039974670857191, -0.0310710147023201, -0.035633135586977005, -0.018869364634156227, -0.005183001514524221, -0.004302296321839094, 0.011661753058433533, -0.004558746702969074, 0.012235392816364765, -0.0032815553713589907, -0.010042065754532814, -0.0032613093499094248, 0.004896181635558605, -0.014347735792398453, 0.02515915408730507, -0.000826715724542737, 0.01685825176537037, 0.014914627186954021, 0.005223493557423353, 0.00823341403156519, 0.0061986809596419334, -0.0067824432626366615, -0.0024312192108482122, -0.02745371125638485, -4.3286581785650924e-05, 0.0064652543514966965, -0.0039007484447211027, 0.01710120588541031, -0.007281847298145294, -0.009050006978213787, -0.0016112520825117826, -0.007997209206223488, -0.0045081316493451595, 0.013834835030138493, -0.032798681408166885, -0.016912242397665977, 0.0035093240439891815, -0.03082806058228016, 0.009495420381426811, -0.00986659899353981, 0.012026183307170868, -0.00908374972641468, 0.032015834003686905, -0.032366763800382614, 0.02901940979063511, -0.02031358703970909, 0.008732818067073822, -0.04605312645435333, -0.00670483335852623, 0.010595458559691906, -0.014590688981115818, 0.013024990446865559, -0.003369288519024849, -0.02017861232161522, 0.025375111028552055, 0.02553708106279373, 0.0017496004002168775, 0.003104401985183358, 0.016547812148928642, 0.004909679293632507, -0.004001979250460863, 0.0167502723634243, -0.015360040590167046, -0.023215528577566147, 0.025658557191491127, 0.04062717407941818, 0.005051401909440756, -0.006094076205044985, -0.04446043446660042, 0.02866847813129425, 0.011526779271662235, 0.005726271774619818, 0.01626436598598957, -0.050588253885507584, 0.004632982425391674, -0.03023417480289936, 0.0004913897137157619, -0.002718038856983185, -0.005071647930890322, -0.004096460994333029, -0.027143271639943123, -0.016250869259238243, 0.005729646421968937, 0.012100419029593468, -0.021474363282322884, 0.013355677016079426, 0.020381074398756027, -0.02432231418788433, -0.0061548142693936825, -0.002853012876585126, -0.013801091350615025, 0.006590105593204498, 0.004848940763622522, -0.03131396695971489, -0.0054293288849294186, -0.007221108768135309, 0.035876087844371796, 0.0055609289556741714, -0.017992034554481506, -0.005118888802826405, -0.009873348288238049, -0.023917391896247864, -0.028803450986742973, -0.015859445556998253, 0.025294126942753792, 0.021798301488161087, 0.005209996365010738, 0.022702626883983612, 0.010804669000208378, -0.008408879861235619, 0.017209185287356377, -0.010642699897289276, -0.0032933654729276896, -0.009495420381426811, 0.0010435177246108651, 0.005537308286875486, -0.012120665051043034, -0.032501738518476486, 0.0027028543408960104, 0.015130585059523582, -0.0030386021826416254, -0.003920994699001312, 0.007720512803643942, -0.00469034630805254, 0.014158772304654121, -0.02799360640347004, -0.0017327286768704653, 0.02217622846364975, -0.01013654749840498, 0.005385462660342455, -0.01967920921742916, -0.008489864878356457, -0.02133938856422901, -0.011857465840876102, -0.009880096651613712, -0.03730681166052818, 0.004980540368705988, -0.01355813816189766, 0.01924729160964489, -0.020718509331345558, -0.015144082717597485, -0.015697475522756577, -0.01747913286089897, 0.04626908525824547, -0.006245921831578016, -0.0064989980310201645, 0.03139495104551315, 0.016129393130540848, -0.029127389192581177, -0.01448270957916975, 0.017303666099905968, 0.019368769600987434, -0.013126221485435963, 0.03325759246945381, -0.012194900773465633, 0.012977750040590763, 0.0013041862985119224, 0.018046023324131966, -0.005071647930890322, 0.009583153761923313, -0.016966231167316437, 0.009448179975152016, -0.022824103012681007, 0.03317660838365555, 0.024740733206272125, 0.004950171336531639, 0.00626279367133975, 0.0008942027343437076, 0.0032106940634548664, 0.008894786238670349, -0.016385843977332115, -0.021082937717437744, -0.0068161869421601295, 0.012046429328620434, 0.0035835597664117813, 0.008294152095913887, -0.01611589454114437, -0.011574020609259605, 0.016682786867022514, -0.030801067128777504, 0.004427147097885609, 0.20181311666965485, -0.009515667334198952, 0.010453736409544945, 0.024146847426891327, -0.0037117849569767714, 0.01969270594418049, 0.042084891349077225, -0.0030993404798209667, -0.002768654143437743, -0.015292554162442684, 0.00190819485578686, 0.012788786552846432, -0.007875733077526093, 0.0071266270242631435, -0.0005749049014411867, -0.017425144091248512, -0.041787948459386826, 0.0005310383276082575, -0.017614107578992844, -0.06100824847817421, -0.001599441864527762, -0.022702626883983612, -0.009724876843392849, -0.022932082414627075, 0.023323506116867065, 0.008287403732538223, -0.026778841391205788, -0.0045351264998316765, 0.020016644150018692, 0.014428720809519291, -0.018329469487071037, 0.0011978942202404141, -0.010258023627102375, -0.0035464419052004814, -0.0170472152531147, -0.008753064088523388, 0.0009254154865629971, 0.013180211186408997, 0.020408067852258682, -0.021028948947787285, 0.01135806180536747, -0.0036847901064902544, -0.0034165293909609318, 0.008847545832395554, -0.020839985460042953, 0.03884551674127579, -0.019517241045832634, -0.01895034871995449, -0.013699861243367195, 0.0022540658246725798, -0.015144082717597485, 0.024794723838567734, 0.05299079045653343, 0.010170291177928448, -0.002989673987030983, -0.0018137131119146943, -0.008361639454960823, 0.02212223783135414, -0.01568397879600525, -0.003624051809310913, -0.010258023627102375, 0.0042348094284534454, -0.023026563227176666, 0.0193012822419405, -0.009448179975152016, 0.018882863223552704, -0.011115108616650105, -0.014239756390452385, 0.01587294228374958, -0.025415603071451187, -0.0021089687943458557, -0.012593073770403862, -0.0009853101801127195, 0.010716935619711876, -0.01637234538793564, 0.0002705806982703507, 0.026157960295677185, -0.029775263741612434, 0.00454187486320734, -0.01360537949949503, 0.011088114231824875, -0.018666904419660568, 0.010851909406483173, -0.014847139827907085, -0.01477965246886015, -0.03536318615078926, -0.003269745036959648, -0.02027309499680996, -0.01783006452023983, 0.0038838768377900124, -0.028047597035765648, -0.00790947675704956, 0.014280249364674091, -0.01831597089767456, -0.004268552642315626, -0.009508918039500713, 0.00900951400399208, 0.0024177217856049538, 0.006404516287147999, -0.010561715811491013, -0.006229049991816282, -0.015103590674698353, 0.029721274971961975, 0.0193012822419405, -0.027183763682842255, 0.011621261015534401, 0.01573796756565571, 5.804936517961323e-05, 0.00755854370072484, -0.022594647482037544, 0.010926145128905773, -0.008125434629619122, 0.015103590674698353, -0.014928123913705349, 0.014023798517882824, 0.026306431740522385, -0.013281441293656826, -0.012363618239760399, 0.015495015308260918, 0.010190537199378014, 0.013524394482374191, -0.02262164279818535, 0.00745056476444006, 0.011978941969573498, -0.00923222117125988, -0.024794723838567734, -0.026238946244120598, 0.017222682014107704, -0.006708207540214062, -0.016250869259238243, 0.03517422452569008, -0.03125997632741928, -0.014050792902708054, 0.006050209514796734, -0.008064696565270424, 0.021217912435531616, -0.014509704895317554, -0.008915032260119915, 0.03096303530037403, -0.0032933654729276896, -0.0031938222236931324, 0.009664137847721577, 0.00849661324173212, 0.00044372701086103916, 0.009954332374036312, -0.024592261761426926, 0.024241330102086067, -0.00894202757626772, 0.003914245869964361, -0.030261170119047165, -0.00770701514557004, -0.004187568090856075, 0.02007063291966915, 0.0007339211297221482, -0.0010679817060008645, -0.012761791236698627, -0.025334618985652924, -0.005770138464868069, -0.005267360247671604, 0.027858633548021317, -0.02764267474412918, 0.014361233450472355, 0.03228577971458435, -0.0125255873426795, -0.00651924405246973, -0.02711627632379532, -0.1720108687877655, 0.021163923665881157, 0.02417384274303913, -0.01091939676553011, 0.024740733206272125, 0.027561690658330917, 0.036065053194761276, 0.0031853863038122654, 0.0014492833288386464, -0.006195306312292814, 0.03620002791285515, 0.011236585676670074, -0.03868354856967926, -0.014401725493371487, -0.01953073777258396, 0.014658176340162754, -0.016183381900191307, 0.02301306650042534, 0.03825163096189499, 0.010345757007598877, 0.02193327434360981, -0.015400533564388752, 0.0035093240439891815, -0.009265964850783348, 0.012593073770403862, 0.008874540217220783, 0.003325421828776598, 0.012208398431539536, 0.006029963493347168, -0.02515915408730507, -0.0051391348242759705, 0.0078082457184791565, 0.02096146158874035, -0.019652213901281357, 0.02256765216588974, 0.021892782300710678, -0.011695496737957, -0.01876138523221016, -0.005928732920438051, 0.003759025828912854, 0.01338267233222723, -0.0014594063395634294, 0.03976333886384964, 0.013787593692541122, -0.0037387798074632883, 0.028209565207362175, -0.018599417060613632, -0.0008271375554613769, 0.00288844364695251, -0.03566012904047966, 0.024929696694016457, -0.012593073770403862, 0.011796727776527405, 0.011364811100065708, 0.03374350070953369, -0.010824915021657944, 0.0126740587875247, -0.0011666815262287855, -0.015063098631799221, -0.011013878509402275, -0.006077204365283251, -0.007976963184773922, 0.010345757007598877, -0.0012797222007066011, 0.015643486753106117, -0.016480324789881706, -0.019274286925792694, 0.004133578855544329, -0.0238364078104496, 0.0054900674149394035, -0.002996422816067934, 0.007032145280390978, 0.035201217979192734, -0.019449753686785698, -0.005432703532278538, -0.0023924140259623528, -0.02573954127728939, 0.01890985667705536, -0.01876138523221016, -0.00559129798784852, -0.0488605871796608, 0.017843563109636307, -0.01573796756565571, -0.005314601119607687, 0.006259419023990631, 0.018990840762853622, -0.0025206394493579865, -0.03325759246945381, -0.015198072418570518, -0.004659977275878191, 0.0010350818047299981, -0.016777267679572105, -0.01714169792830944, -0.011904706247150898, 0.014617684297263622, 0.002243942813947797, 0.00935369823127985, -0.013801091350615025, 0.005432703532278538, -0.015319548547267914, 0.003268057946115732, -0.014698668383061886, -0.013402918353676796, 0.030099201947450638, 0.03223178908228874, -0.0035801853518933058, -0.010339008644223213, 0.01645333133637905, 0.03266370669007301, 0.012856272980570793, 0.0018913231324404478, 0.024821719154715538, 0.007943219505250454, 0.002986299805343151, 0.006785817909985781, 0.03657795488834381, -0.0167502723634243, -0.015575999394059181, 0.03962836414575577, -0.007929722778499126, 0.060252394527196884, 0.005118888802826405, -0.0016331854276359081, 0.013598630204796791, -0.013537892140448093, -0.031961843371391296, -0.10436189919710159, 0.0074978056363761425, 0.011850717477500439, 0.026292935013771057, 0.00011957852984778583, 0.012917011976242065, -0.0032916783820837736, 0.01967920921742916, 0.012248890474438667, 0.010494228452444077, -0.009947584010660648, -0.05390861630439758, 0.005675656720995903, 0.0010131485760211945, 0.012316376902163029, -0.036469973623752594, -0.003381098620593548, -0.0011843967949971557, -0.017695091664791107, 0.024119853973388672, 0.007173867896199226, -0.02036757580935955, 0.02583402395248413, -0.014874134212732315, 0.009927337989211082, 0.006701459176838398, -0.04254380613565445, 0.009063503704965115, 0.03347355127334595, 0.0121409110724926, -0.011115108616650105, -0.005344970151782036, 0.03169189393520355, -0.011803476139903069, -0.014307243749499321, -0.007335836999118328, -0.023849906399846077, -0.011661753058433533, 0.019895168021321297, -0.02363394759595394, 0.013051985763013363, -0.002144399331882596, 0.009799112565815449, -0.01949024572968483, 0.014131777919828892, -0.002967740874737501, -0.025915008038282394, 0.013389420695602894, 0.011324318125844002, -0.02877645567059517, -0.019625218585133553, 0.01583245024085045, -0.03028816543519497, -0.00223550689406693, 0.022054750472307205, -0.01538703590631485, 0.028830446302890778, 0.008118686266243458, -0.013564886525273323, -0.011897957883775234, -0.010379500687122345, 0.012086921371519566, 0.0030588482040911913, 0.03730681166052818, -0.0013843270717188716, 0.0029373716097325087, -0.0005913548520766199, -0.037927694618701935, 0.02202775701880455, -0.018154002726078033, -0.024511277675628662, 0.006360649596899748, -0.012309628538787365, 0.01477965246886015, -0.0010207408340647817, 0.023728428408503532, -0.018788380548357964, -0.003543067490682006, 0.01426675170660019, 0.008253660053014755, -0.010642699897289276, -0.023431485518813133, -0.0065428647212684155, -0.004791576880961657, 0.011783230118453503, 0.006067081354558468, 0.020057136192917824, -0.017303666099905968, 0.018882863223552704, -0.011027375236153603, -0.009151237085461617, 0.014509704895317554, -0.003934491891413927, -0.026009488850831985, 0.0021309019066393375, 0.039736345410346985, 0.018477940931916237, 0.017938043922185898, -0.010966637171804905, 0.00029631011420860887, -0.027440214529633522, 0.004987289197742939, -0.05998244509100914, 0.029721274971961975, 0.025901509448885918, 0.007254852447658777, 0.005382088012993336, -0.0028192694298923016, 0.008786807768046856, -0.01039974670857191, -0.00979236327111721, 0.01573796756565571, -0.021919777616858482, 0.0310710147023201, -0.010325510986149311, -0.03042314015328884, -0.010615704581141472, -0.007092883810400963, 0.007754256017506123, -0.018842369318008423, 0.0074978056363761425, -0.006269542034715414, 0.02271612361073494, 0.01348390243947506, 0.0003471362579148263, -0.008388633839786053, -0.018329469487071037, 0.002915438264608383, 0.0021764556877315044, 0.013213954865932465, 0.008982519619166851, -0.025267131626605988, 0.007659774273633957, -0.0292623620480299, 0.0018288976280018687, 0.013639122247695923, 0.02129889652132988, 0.0044305212795734406, -0.005479944404214621, -0.020529545843601227, 0.025024179369211197, 0.04821271076798439, -0.008510110899806023, -0.01943625509738922, -0.010858657769858837, -0.03101702407002449, 0.0022574402391910553, 0.027912622317671776, -0.012890016660094261, 0.0167502723634243, 0.015144082717597485, -0.0030284791719168425, 0.009299708530306816, 0.021622834727168083, 0.0018103386973962188, -0.01738465018570423, -0.0067824432626366615, -0.013672865927219391, 0.01958472654223442, -0.012545833364129066, -0.013801091350615025, -0.020678017288446426, 0.019746696576476097, -0.013625625520944595, 0.004481136798858643, -0.011749486438930035, 0.01303848810493946, -0.03147593513131142, -0.00499403802677989, -0.0036274262238293886, -0.02139337919652462, -0.023121045902371407, 0.012350120581686497, -0.006026588845998049, 0.0022220094688236713, 0.012120665051043034, 0.005058150738477707, -0.0034452113322913647, 0.01028501894325018, -0.0016829570522531867, -0.017452137544751167, 0.01700672321021557, -0.021325891837477684, 0.005098642781376839, -0.04513530433177948, 0.005614918190985918, 0.029424332082271576, -0.0036375492345541716, -0.0004114597977604717, 0.015764962881803513, 0.009616897441446781, 0.012437853962182999, 0.025037676095962524, -0.006610351614654064, 0.0015049601206555963, -0.017560116946697235, -0.0013472092105075717, 0.003062222618609667, -0.020057136192917824, 0.010231029242277145, 0.03668593242764473, 0.02622544765472412, -0.018329469487071037, 0.008462869562208652, 0.004676849115639925, -0.012356869876384735, 0.0047747050411999226, -0.007720512803643942, -0.00783524103462696, -0.02901940979063511, -0.006495623849332333, 0.006613725796341896, 0.008564100600779057, 0.0037117849569767714, 0.013220703229308128, 0.021528352051973343, -0.0005386305856518447, 0.00842237751930952, 0.00950216967612505, -0.018477940931916237, 0.006350526586174965, 0.03703686594963074, -0.003259622026234865, 0.032501738518476486, 0.0041032093577086926, -0.0015007421607151628, 0.02920837327837944, 0.007207611575722694, 0.02061052992939949, 0.020354079082608223, 0.03312261775135994, 0.00033532603993080556, 0.003998604603111744, -0.006623848807066679, -0.03927743434906006, -0.013416415080428123, 0.006549613084644079, -0.044622402638196945, -0.006880299653857946, 0.0036847901064902544, -0.019760193303227425, 0.035282202064991, -0.00573976943269372, -0.008516859263181686, 0.007565292529761791, 0.01816749945282936, 0.0316649004817009, 0.015279056504368782, 0.003536318661645055, 0.007369580212980509, -0.02066451869904995, 0.009151237085461617, -0.0191528107970953, 0.025672053918242455, -0.004349537193775177, -0.004177445080131292, 0.004636357072740793, 0.008395383134484291, 0.03028816543519497, -0.026211950927972794, -0.024592261761426926, 0.026846328750252724, -0.005186375696212053, 0.028047597035765648, -0.010939642786979675, -0.007254852447658777, 0.0012957503786310554, 0.026009488850831985, 0.012464848347008228, 0.0035093240439891815, -0.03444536402821541, 0.006357275415211916, 0.028317544609308243, -0.0034452113322913647, -0.02178480289876461, 0.01448270957916975, -0.018531929701566696, -0.006134568247944117, -0.017506128177046776, 0.004909679293632507, 0.004646480083465576, -0.01382133737206459, 0.009893594309687614, -0.010608956217765808, -0.008078194223344326, 0.020637525245547295, -0.009596651419997215, -0.0051121399737894535, 0.0016559622017666698, -0.0289654191583395], "c1056adb-88bc-4b55-813f-b36ca57ab40a": [0.004505241755396128, -0.026027249172329903, 0.0013560127699747682, 0.010445055551826954, -0.008996821008622646, 0.035440776497125626, 0.0028042481280863285, -0.017529113218188286, -0.017009934410452843, -0.025685682892799377, 0.010718307457864285, 0.005792941432446241, 0.019537514075636864, 0.016436105594038963, 0.0004301583394408226, 0.0032312043476849794, 0.02732519619166851, -0.011073535308241844, 0.04760048910975456, -0.0187587458640337, -0.01578029990196228, -0.015452397987246513, 0.003941659349948168, 0.020043030381202698, -0.013218563050031662, 0.03568670526146889, 0.017378823831677437, -0.015438735485076904, 0.01148341316729784, -0.02438773773610592, -0.009106121025979519, 0.00500392634421587, 0.011298968456685543, 0.0071933576837182045, -0.021231677383184433, -0.0002875549835152924, 0.0066161127761006355, -0.02986643835902214, 0.01148341316729784, -0.003535197116434574, 0.007425621617585421, -0.011708846315741539, -0.010766127146780491, -0.001642073504626751, -0.013163913041353226, 0.013198069296777248, 0.004525735508650541, -0.016996271908283234, -0.018963685259222984, 0.0078286686912179, 0.014605317264795303, 0.010629501193761826, -0.02481127716600895, 0.008293196558952332, -0.006131090689450502, -0.01705092191696167, 0.005738290958106518, 0.014127125963568687, -0.02408715896308422, 0.021600566804409027, 0.0062643010169267654, 0.01043822430074215, 0.004126104526221752, 0.016682032495737076, -0.04309183359146118, -0.012029916979372501, -0.0024780535604804754, -0.010998391546308994, -0.006499981041997671, -0.009133446961641312, 0.03773609548807144, 0.024210123345255852, -0.012316831387579441, -0.0034890859387815, 0.016162853688001633, -0.019646815955638885, -0.025617370381951332, -0.009358879178762436, -0.01351913996040821, 0.015889601781964302, -0.006315535865724087, -0.028582153841853142, -0.0063975113444030285, 0.019059324637055397, 0.032216403633356094, -0.01791166514158249, 0.005861254408955574, 0.033446040004491806, -0.010827608406543732, -0.03202512860298157, 0.006377017591148615, 0.022789213806390762, 0.013348357751965523, 0.01858113333582878, 0.005912489257752895, 0.031096072867512703, -0.03169722482562065, 0.022584274411201477, 0.014400377869606018, -0.0369163379073143, -0.017214873805642128, 0.0017351498827338219, -0.02833622694015503, -0.00038767620571888983, -0.021928468719124794, 0.01098472811281681, -0.018772408366203308, -0.006175494287163019, 0.015725649893283844, -0.0019810765516012907, -0.011804484762251377, 0.026423463597893715, -0.013403008691966534, -0.043911587446928024, -0.009871226735413074, -0.011667858809232712, 0.028636803850531578, -0.009352047927677631, -0.006947430782020092, 0.0011408268474042416, 0.005260100122541189, 0.019373564049601555, -0.007391465362161398, -0.01662738062441349, 0.018417181447148323, 0.008108751848340034, -0.005417219828814268, -0.04076918959617615, 0.00041692270315252244, -0.009611637331545353, 0.03210710361599922, -0.0032773155253380537, -0.0103630805388093, -0.00408853217959404, -0.007261670660227537, 0.01914129965007305, -0.024606337770819664, 0.0006596472812816501, -0.02013866975903511, -0.03145129978656769, 0.03407451882958412, 0.012023085728287697, -0.0030570062808692455, -0.031505949795246124, -0.02548074536025524, 0.022160733118653297, 0.013081937097012997, 0.02210608310997486, -0.018813397735357285, -0.009707275778055191, 0.02340403012931347, -0.0028930550906807184, 0.0066878413781523705, -0.008634761907160282, 0.02097208797931671, -0.014960544183850288, 0.02452436275780201, -0.01904566027224064, -0.002710317727178335, 0.0036410822067409754, 0.012665227986872196, 0.03180652856826782, 0.02620486170053482, -0.012692552991211414, 0.0062779635190963745, 0.03126002475619316, 0.018854385241866112, -0.019933730363845825, -0.030248992145061493, -0.02608189918100834, 0.013915355317294598, 0.003065545344725251, -0.028418203815817833, 0.007166032679378986, -0.004426681436598301, -0.002457559807226062, 0.03563205525279045, 0.038665153086185455, -0.02508452907204628, 0.01233732607215643, -0.027571121230721474, -0.014851243235170841, 0.031505949795246124, 0.030631544068455696, -0.012945311143994331, -0.00042652920819818974, -0.004532566759735346, -0.008511798456311226, 0.020534884184598923, 0.0056494842283427715, 0.014700954779982567, 0.016859645023941994, -0.01720121130347252, -0.011585882864892483, -0.6260748505592346, -0.014004162512719631, -0.00887385755777359, -0.016736682504415512, -0.02266624942421913, 0.004334459081292152, 0.0060730245895683765, 0.003900671610608697, 0.010554356500506401, 0.007835499942302704, -0.01960582844913006, 0.02157324180006981, -0.008525460958480835, -0.019633153453469276, -0.023759257048368454, -0.010233285836875439, -0.005417219828814268, -0.042791254818439484, 0.003091162769123912, -0.030631544068455696, -0.011435594409704208, 0.006322367116808891, 0.000740768969990313, -0.00030997017165645957, -0.006995250005275011, 0.0040236348286271095, 0.02425111085176468, 0.018089279532432556, 0.0015848613111302257, 0.03071351908147335, -0.027721410617232323, 0.0375174917280674, 0.02931993454694748, 0.012487614527344704, 0.047272589057683945, 0.0004948421847075224, -0.01058168150484562, 0.03759947046637535, 0.005830513779073954, 0.008921676315367222, -0.029839113354682922, -0.02298048883676529, 0.024551687762141228, 0.0026317578740417957, 0.024715639650821686, 0.005594833754003048, 0.005936398636549711, -0.005465039052069187, 0.004173923749476671, 0.012993130832910538, 0.010622669942677021, -0.0027034864760935307, -0.015192808583378792, -0.007015743758529425, -0.009051471017301083, -0.013614778406918049, 0.026942642405629158, 0.0016198717057704926, 0.0025993091985583305, -0.003472007578238845, 0.015534373931586742, 0.024715639650821686, -0.01593058928847313, -0.006438499316573143, -0.012665227986872196, 0.017242198809981346, -0.015998901799321175, 0.014277414418756962, 0.012221193872392178, -0.035987284034490585, -0.003441266715526581, 0.024729302152991295, 0.0020715913269668818, -0.012303168885409832, 0.03705296665430069, 0.003490793751552701, 0.04156162217259407, -0.01803462952375412, 0.004016803577542305, 0.02169620431959629, -0.008853362873196602, -0.021368302404880524, -0.04126104339957237, -0.023076128214597702, 0.025275805965065956, -0.004908288363367319, -0.018362531438469887, 0.035440776497125626, -0.005239606369286776, -0.004798987414687872, -0.0026266344357281923, 0.0033627068623900414, 0.0029272115789353848, 0.0016531742876395583, 0.04566040262579918, 0.012146049179136753, -0.00901731476187706, 0.0010597052751109004, 0.005222527775913477, -0.012911154888570309, -0.006704919971525669, -0.023308390751481056, 0.005499195773154497, -0.014277414418756962, 0.004904872737824917, -0.017392486333847046, -0.02747548371553421, -0.026751365512609482, 0.04702666029334068, -0.01675034500658512, 0.0023328885436058044, -0.005683640483766794, -0.014837580733001232, -0.014741943217813969, 0.013512308709323406, -0.026409801095724106, 0.0065307216718792915, -0.004085116554051638, 0.019947392866015434, 0.006561462301760912, 0.024688314646482468, -0.010561187751591206, 0.014591654762625694, -0.01403148751705885, 0.020767148584127426, 0.04462204501032829, 0.0005874917260371149, -0.0012467120541259646, -0.010096659883856773, -0.01847183145582676, -0.003975816071033478, -0.014154450967907906, 0.0011766912648454309, 0.015179146081209183, 0.023608969524502754, -0.015165483579039574, 0.020603196695446968, 0.005184955894947052, 0.02128632739186287, -0.04224475100636482, -0.01605355180799961, -0.007534922566264868, 0.019359901547431946, 0.006353107746690512, -0.0107797896489501, -0.03735354170203209, -0.017406148836016655, -0.004170508123934269, -0.023772919550538063, 0.004327627830207348, -0.012644734233617783, -0.0020118174143135548, -0.006844961550086737, -0.0068210517056286335, 0.031615249812603, -0.008580110967159271, -0.008327352814376354, 0.009440855123102665, 0.011346787214279175, -0.03565938025712967, 0.011428763158619404, 0.0223929975181818, -0.026737703010439873, 0.00310311745852232, 0.022242708131670952, -0.009065133519470692, -0.012562758289277554, 0.020043030381202698, 0.013430333696305752, -0.023718269541859627, 0.009919045493006706, -0.01679133251309395, -0.0018137098522856832, 0.03992211073637009, -0.02482493966817856, -0.007534922566264868, -0.016449768096208572, -0.025016216561198235, -0.009850732982158661, 0.014045150019228458, -0.01212555542588234, 0.012904323637485504, -0.02408715896308422, -0.006937183905392885, 0.03970350697636604, -0.003060421906411648, -0.020070355385541916, -0.00023375850287266076, 0.017843352630734444, 0.027516471222043037, 0.007097719702869654, -0.0022150485310703516, 0.006049115210771561, -0.002542950911447406, 0.012262181378901005, -0.013307370245456696, 0.01226901262998581, 0.028281576931476593, 0.004006556700915098, 0.01006250362843275, 0.012173374183475971, 0.0034771310165524483, 0.03505822643637657, -0.011182836256921291, 0.008648424409329891, -0.03451172262430191, 0.012023085728287697, -0.005868085660040379, 0.03350069001317024, -0.03617855906486511, 0.006923521403223276, -0.02578132227063179, -0.02199678309261799, -0.006810804829001427, -0.0005558969569392502, 0.024606337770819664, 0.010130816139280796, -0.004109026398509741, -0.02181916870176792, 0.006165247410535812, 0.018854385241866112, -0.015985239297151566, 0.0020664678886532784, -0.002032311400398612, -0.01747446320950985, -0.02157324180006981, 0.004235405474901199, 0.02847285382449627, 0.021928468719124794, -0.004225158132612705, 0.018253229558467865, -0.011292137205600739, -0.012672059237957, 0.015848612412810326, 0.017925327643752098, -0.0015934004914015532, 0.012911154888570309, -0.007610066793859005, 0.031232697889208794, -0.05153531953692436, -0.009727769531309605, 0.008040438406169415, 0.010718307457864285, -0.01352597214281559, -0.005574340000748634, 0.00909245852380991, 0.01464630477130413, 0.008894351311028004, 0.015165483579039574, 0.02665572799742222, -0.008634761907160282, 0.007350477389991283, -0.023062465712428093, -0.01591692678630352, 0.01550704799592495, -0.03732621669769287, 0.005243021994829178, 0.013204900547862053, 0.020903773605823517, 0.024264773353934288, 0.01528844702988863, -0.013628440909087658, 0.005700719077140093, -0.0008415306219831109, 0.06197354197502136, 0.004559891764074564, 0.008935338817536831, 0.026423463597893715, -0.029565861448645592, -0.03180652856826782, -0.022884851321578026, -0.010609007440507412, -0.0014209101209416986, -0.0036274197045713663, 0.019510189071297646, 0.0020118174143135548, 0.0050107575953006744, 0.004416434559971094, 0.013621609658002853, -0.002413156209513545, -0.017501788213849068, -0.02665572799742222, 0.020808136090636253, 0.005413804203271866, -0.008040438406169415, -0.019537514075636864, -0.023281065747141838, -0.018950022757053375, -0.03071351908147335, 0.0405505895614624, -0.019674140959978104, 0.012945311143994331, 0.019195949658751488, -0.01675034500658512, -0.007104550953954458, -0.0013799223816022277, 0.01063633244484663, -0.028992032632231712, 0.046999335289001465, -0.0007010620320215821, -0.0056016650050878525, 0.009618468582630157, -0.03568670526146889, 0.013826549053192139, 0.012658396735787392, 0.006978171877563, -0.016572730615735054, -0.01050653774291277, 0.007323152385652065, -0.01634046621620655, 0.0019230105681344867, -0.033609990030527115, -0.011783990077674389, 0.013198069296777248, -0.013539634644985199, 0.002869145479053259, -0.008716736920177937, 0.02423744834959507, 0.03410184383392334, -0.021177025511860847, -0.00447450065985322, -0.027844373136758804, -0.02847285382449627, -0.0005499195540323853, 0.09296031296253204, 0.0066980887204408646, -0.01788434013724327, 0.0029511211905628443, 0.004003141075372696, 0.007937969639897346, -0.008286365307867527, -0.02929260954260826, 0.018799735233187675, -0.00929056666791439, 0.013334695249795914, -0.010622669942677021, 0.023595307022333145, 0.0016318265115842223, 0.004160260781645775, -0.0026300500612705946, -0.014250089414417744, -0.004802403040230274, -0.016299478709697723, 0.013847042806446552, 0.0023824155796319246, 0.011749833822250366, 0.01974245347082615, 0.030768169090151787, -0.0310140959918499, -0.01635412871837616, 0.025316793471574783, 0.008580110967159271, 0.012514939531683922, -0.022638924419879913, -0.003106533084064722, 0.01676400750875473, 0.022174395620822906, 0.016449768096208572, -0.024865927174687386, -0.002602724824100733, 0.0011835225159302354, 0.026314163580536842, -0.006629775743931532, 0.006455577444285154, 0.015957914292812347, 0.011872797273099422, -0.002679576864466071, -0.014632642269134521, 0.0015558282611891627, -0.00019629309826996177, 0.0017453968757763505, -0.006066193338483572, -0.028773430734872818, -0.005779278930276632, 0.04631620645523071, -0.009768757037818432, -0.00747344084084034, -0.01665470562875271, 0.04071453958749771, -0.0059193205088377, 0.0058202664367854595, 0.0008863609982654452, 0.002542950911447406, 0.024128148332238197, -0.006055946461856365, 0.005256684496998787, 0.010335755534470081, -0.018854385241866112, -0.015616348944604397, -0.014468691311776638, -0.017952652648091316, 6.302940892055631e-05, -0.019387226551771164, 0.02310345321893692, -0.008826037868857384, 0.007671548519283533, -0.02057587169110775, 0.013013624586164951, 0.011374112218618393, 0.010759295895695686, 0.023035138845443726, -0.010178634896874428, 0.012699384242296219, 0.005031251814216375, -0.0156573373824358, -0.032052453607320786, 0.012637902982532978, -0.024838602170348167, 0.0048058186657726765, -0.006718582473695278, 0.010950571857392788, 0.010957403108477592, -0.010677319951355457, 0.006978171877563, -0.013751404359936714, 0.009024146012961864, -0.0032124181743711233, 0.005540183279663324, -0.011435594409704208, 0.014250089414417744, -0.0008009697776287794, -0.0074461158365011215, -0.016258491203188896, -0.011599545367062092, 0.0036889014299958944, -0.030631544068455696, -0.009420361369848251, -0.014810255728662014, 0.017979977652430534, -0.0118386410176754, 0.0014234718400985003, 0.01590326428413391, -0.01914129965007305, -0.036998312920331955, 0.006691257003694773, -0.02891005575656891, 0.0016668369062244892, -0.010342586785554886, -0.007138707209378481, 0.008457147516310215, 0.0018017550464719534, 0.00747344084084034, 0.0034805466420948505, -0.01127847470343113, -0.010902753099799156, -0.029538536444306374, 0.008935338817536831, -0.010383574292063713, -0.03527682647109032, -0.002887931652367115, 0.011087197810411453, -0.016873307526111603, 0.022037770599126816, -0.006995250005275011, 0.005912489257752895, 0.02703827992081642, 0.011476581916213036, -0.014700954779982567, -0.03817329928278923, 0.0101376473903656, -0.021218014881014824, -0.004662361461669207, 0.0006690403097309172, 0.005506027024239302, -0.02168254181742668, -0.009536493569612503, -0.007767186965793371, -0.01901833526790142, -0.014741943217813969, -0.019824428483843803, -0.01528844702988863, -0.0014260336756706238, 0.017706725746393204, -0.006540968548506498, -0.019209612160921097, -0.03412916883826256, -0.028117626905441284, -0.004788740538060665, -0.007794511970132589, -0.02355431765317917, -0.0042763929814100266, -0.013607947155833244, 0.02676502801477909, -0.0044813319109380245, 0.0366157628595829, -0.02396419644355774, 0.012200700119137764, 0.006766401696950197, -0.009563818573951721, 0.009878057986497879, -0.026150211691856384, -0.010479212738573551, -0.03300883620977402, -0.011374112218618393, 0.016600055620074272, 0.024688314646482468, 0.0164907556027174, 0.0059876334853470325, -0.0032414512243121862, 0.047846417874097824, 0.0027410585898905993, -0.009112952277064323, -0.01830788142979145, -0.0408511683344841, -0.026969967409968376, -0.0005362569354474545, -0.01338934525847435, 0.009604806080460548, -0.029921088367700577, -0.002459267619997263, 0.04563307762145996, 0.017146559432148933, -0.001991323661059141, -0.00986439548432827, 0.025467082858085632, -0.02254328690469265, 0.01084127090871334, 0.00021561287576332688, 0.015684662386775017, -0.004488163162022829, 0.029647836461663246, -0.003031388856470585, 0.0025566136464476585, -0.010233285836875439, -0.006185741163790226, -0.009645793586969376, -0.006780064199119806, -0.01763841323554516, -0.010069334879517555, 0.007582741789519787, -0.010834439657628536, -0.0208764486014843, 0.02240666002035141, -0.010725138708949089, -0.04202615097165108, -0.00019330441136844456, -0.004809234291315079, -0.023062465712428093, -0.00563240610063076, -0.014837580733001232, -0.013566959649324417, 0.013464489951729774, -0.014837580733001232, -0.010014683939516544, 0.005236190743744373, -0.008019944652915001, 0.047545839101076126, 0.008491304703056812, 0.03355534002184868, 0.002949413377791643, -0.022365672513842583, 0.0024831772316247225, -0.0012783068232238293, -0.007002081256359816, -0.01204357948154211, 0.02086278609931469, 0.02125900238752365, -0.012624240480363369, 0.00041799008613452315, -0.009884889237582684, -0.004098779521882534, -0.04238137975335121, -0.02929260954260826, 0.013225394301116467, -0.002768383827060461, -0.011579051613807678, -0.01015130989253521, -0.0021860157139599323, -0.02619119919836521, -0.0007826106739230454, -0.0006613550940528512, 0.01310243085026741, -0.005926151759922504, -0.012262181378901005, -0.033172786235809326, -0.0006289064767770469, 0.009755094535648823, 0.027912687510252, 0.041643597185611725, -0.009304229170084, -0.024620000272989273, -0.007767186965793371, -0.025835972279310226, -0.02225637249648571, -0.006896196398884058, 0.012221193872392178, -0.01274037268012762, 0.012357819825410843, -0.0004769100632984191, -0.013047780841588974, -0.008566448464989662, 0.009707275778055191, -0.022092420607805252, 0.02567202039062977, 0.015452397987246513, 0.013717248104512691, 0.009201759472489357, 0.015821287408471107, 0.02336304262280464, 0.0076647172681987286, -0.00020536592637654394, -0.011298968456685543, -0.017105571925640106, 0.003209002548828721, 0.004047544673085213, 0.016518080607056618, 0.01619017869234085, -0.003004063619300723, -0.016518080607056618, -0.0045530605129897594, -0.0022321268916130066, 0.00016309725469909608, 0.007835499942302704, -0.03664308786392212, -0.026983629912137985, 0.003753798780962825, -0.022051433101296425, 0.012391976080834866, -0.008648424409329891, 0.014892231673002243, -0.01063633244484663, 0.027680423110723495, -0.03180652856826782, 0.026751365512609482, -0.025699345394968987, 0.011203330010175705, -0.03240768238902092, 0.014591654762625694, 0.016381453722715378, -0.011319462209939957, 0.025016216561198235, -0.023745594546198845, -0.02395053394138813, 0.014277414418756962, 0.019824428483843803, 0.017324173822999, -0.00104689656291157, 0.008334184996783733, 0.013860705308616161, -0.002269699005410075, 0.013929018750786781, -0.010397236794233322, -0.027981000021100044, 0.028773430734872818, 0.03399254381656647, -0.002295316429808736, -0.00923591572791338, -0.027311531826853752, 0.01324588805437088, -0.004928782116621733, 0.020111342892050743, 0.008648424409329891, -0.042490679770708084, 0.0029767383821308613, -0.011975266970694065, 0.013990500010550022, 0.01133995596319437, -0.00732998363673687, -0.012214362621307373, -0.036287859082221985, -0.016121864318847656, -0.003562522353604436, 0.01576663739979267, -0.03292686119675636, 0.009126614779233932, 0.018772408366203308, -0.012446626089513302, -0.017119234427809715, -0.011674690060317516, -0.0020955009385943413, 0.015165483579039574, -0.010643163695931435, -0.04582435265183449, -0.0011220407905057073, -0.013437164947390556, 0.035714030265808105, 0.009263241663575172, -0.0166410431265831, -0.019810765981674194, -0.03030364215373993, -0.03180652856826782, -0.023144440725445747, 0.016668369993567467, 0.0143730528652668, 0.03371929004788399, 0.01789800263941288, 0.019551176577806473, 0.016709357500076294, -0.024715639650821686, 0.009973696433007717, -0.0107797896489501, -0.013143419288098812, -0.007118213456124067, 0.0014303032075986266, 0.0031270270701497793, 0.0012159711914137006, -0.023854896426200867, 0.013566959649324417, 0.014222764410078526, -0.006131090689450502, 0.0011664442718029022, 0.009440855123102665, -0.005618743132799864, 0.015261122025549412, -0.020398259162902832, 0.010158141143620014, 0.020398259162902832, 0.008218052797019482, -0.0027427664026618004, -0.011189667508006096, -0.009461348876357079, -0.009987358935177326, -0.015589023940265179, -0.03044026717543602, -0.03568670526146889, 0.012364651076495647, -0.014168113470077515, 0.014960544183850288, -0.01647709310054779, -0.021354639902710915, -0.007671548519283533, -0.026887992396950722, 0.03932095691561699, 0.003518118988722563, 0.007391465362161398, 0.03844654932618141, 0.019974717870354652, -0.022201720625162125, -0.013683091849088669, 0.011517569422721863, 0.006377017591148615, -0.04137034714221954, 0.012275843881070614, -0.01847183145582676, 0.017283186316490173, -0.007842331193387508, 0.002604432636871934, -0.02410082146525383, 0.010410899296402931, 0.0003812718787230551, 0.006916690152138472, -0.0097209382802248, 0.01435939036309719, 0.014332065358757973, -0.0008005428244359791, 0.0023533825296908617, 0.009140278212726116, -0.004214911255985498, 0.005997880361974239, -0.021901143714785576, -0.014181775972247124, 0.006739076226949692, 0.012364651076495647, 0.0042285737581551075, 0.010486043989658356, -0.002778630703687668, -0.003545443993061781, 0.004303718451410532, -0.0470539852976799, -0.004778493661433458, 0.2015506476163864, -0.01274037268012762, 0.005468454677611589, 0.01998838037252426, -0.0026146795134991407, 0.006377017591148615, 0.013546465896070004, 0.006848377175629139, 0.0014806840335950255, -0.016859645023941994, -0.00022799460566602647, 0.01774771511554718, 0.002706902101635933, 0.008839700371026993, 0.018280556425452232, -0.017091909423470497, -0.037708770483732224, 0.0011459504021331668, -0.0035864319652318954, -0.050114408135414124, -0.002918672515079379, -0.014523341320455074, -0.0015566821675747633, -0.008313690312206745, 0.02580864727497101, 0.007801343221217394, -0.01830788142979145, -0.001765890745446086, 0.014796593226492405, 0.00704306922852993, -0.010035177692770958, 0.00044403443462215364, -0.009700444526970387, -0.00630528898909688, -0.012364651076495647, 2.0467212380026467e-05, 0.010246948339045048, 0.000702342891599983, 0.013109262101352215, -0.008416160009801388, 0.017324173822999, 0.004126104526221752, -0.004006556700915098, 0.005881748162209988, -0.018991010263562202, 0.04074186459183693, -0.0017488125013187528, -0.018075617030262947, -0.026887992396950722, 0.021381964907050133, -0.02750280871987343, 0.012986298650503159, 0.03453904762864113, 0.029620511457324028, -0.0026590831112116575, -0.0042627304792404175, -0.012999962083995342, 0.02493424154818058, -0.013553297147154808, 0.011763496324419975, -0.006851792801171541, 0.020234307274222374, -0.013833380304276943, 0.029074007645249367, -0.02045290917158127, 0.006540968548506498, -0.006971340626478195, 0.00620623491704464, 0.028554828837513924, -0.03030364215373993, -0.0049253664910793304, -0.017679400742053986, 0.008826037868857384, 0.006547799799591303, -0.008197559043765068, -0.0003947209916077554, 0.02847285382449627, -0.010827608406543732, 0.014414040371775627, 0.00257369177415967, 0.022297360002994537, -0.028117626905441284, 0.00880554411560297, -0.008293196558952332, -0.01304094959050417, -0.03292686119675636, -0.0017880924278870225, -0.0238275695592165, -0.019250599667429924, -0.004672608338296413, -0.021381964907050133, -0.013088768348097801, 0.008156570605933666, -0.011743002571165562, -0.016299478709697723, 0.003369538113474846, 0.016723020002245903, 0.013819717802107334, 0.01650441810488701, 0.020370932295918465, -0.01177032757550478, -0.009679950773715973, 0.04000408574938774, 0.00817706435918808, -0.027830710634589195, -0.0033456285018473864, 0.011039379052817822, -0.0010212791385129094, 0.014222764410078526, -0.017160221934318542, 0.016012564301490784, -0.0021279496140778065, -0.003951906226575375, -0.030686194077134132, 0.00781500618904829, 0.04137034714221954, -0.03595995530486107, -0.028636803850531578, 0.0016386577626690269, 0.016886970028281212, 0.01930524967610836, -0.02550807036459446, 0.00035864318488165736, 0.00316801480948925, -0.004119273275136948, 0.004115857649594545, -0.017706725746393204, 0.023567980155348778, -5.150158904143609e-05, -0.006629775743931532, 0.029128657653927803, -0.042354051023721695, -0.004447175655514002, 0.014332065358757973, -0.014700954779982567, 0.01945553906261921, -0.008272702805697918, -0.021054062992334366, 0.03970350697636604, -0.0033934477251023054, 0.0006387264584191144, -0.004013387951999903, 0.009625299833714962, 0.005540183279663324, -0.011804484762251377, -0.018362531438469887, 0.02437407337129116, -0.02068517357110977, 0.009953202679753304, -0.019113974645733833, -0.022051433101296425, -0.008942170068621635, -0.0009700444061309099, -0.0035112875048071146, 0.012651565484702587, -0.004590632859617472, -0.009830239228904247, -0.0008949001203291118, -0.00179663160815835, 0.02114970050752163, -0.007821837440133095, 0.009215421974658966, 0.024456050246953964, -0.009106121025979519, -0.010848102159798145, -0.019250599667429924, -0.17411614954471588, 0.020343607291579247, 0.0166410431265831, -0.006691257003694773, 0.030467592179775238, 0.02844552882015705, 0.028226926922798157, 0.006199403665959835, 0.010704644955694675, -0.0005507734604179859, 0.028691455721855164, 0.01942821405827999, -0.04068721458315849, -0.032079778611660004, -0.007821837440133095, 0.014632642269134521, -0.01149707566946745, 0.03188850358128548, 0.03735354170203209, 0.011852303519845009, 0.009898551739752293, -0.011230655014514923, 0.018212242051959038, 0.0032943938858807087, 0.008682580664753914, 0.025713007897138596, 0.0019537515472620726, 0.0060593620873987675, 0.008265871554613113, -0.015534373931586742, -0.0011015469208359718, 0.009317891672253609, -0.006090102717280388, -0.01759742572903633, 0.02086278609931469, 0.010574850253760815, -0.006534137297421694, -0.0031560601200908422, 0.007548585068434477, -0.0001280868600588292, 0.024756627157330513, -0.010882259346544743, 0.02860947884619236, -0.0046486989594995975, 0.006322367116808891, 0.04421216621994972, -0.007377802859991789, -0.0068552084267139435, 0.014618979766964912, -0.023704607039690018, 0.007657886017113924, 0.00044659615377895534, 0.024701977148652077, 0.009693613275885582, 0.033609990030527115, 0.006561462301760912, 0.011257980018854141, 0.003934828098863363, -0.015233796089887619, -0.01830788142979145, 0.006493149325251579, -0.012576420791447163, 0.01563001237809658, -0.00609693443402648, 0.004857053514569998, -0.030822820961475372, -0.02143661491572857, 0.011189667508006096, -0.030467592179775238, 0.014045150019228458, -0.00795846339315176, 0.017952652648091316, 0.0287461057305336, -0.00781500618904829, -0.0036581605672836304, 0.0013227101881057024, -0.011572220362722874, 0.017570100724697113, -0.0023755840957164764, 0.00778084946796298, -0.046452831476926804, 0.039129678159952164, -0.019674140959978104, -0.019551176577806473, -0.005799772683531046, 0.023294728249311447, -0.008791881613433361, -0.02620486170053482, -0.009427192620933056, -0.009352047927677631, -0.007528091315180063, -0.030467592179775238, -0.004740921314805746, -0.013109262101352215, 0.02098575048148632, 0.019209612160921097, -0.002295316429808736, -0.025999924167990685, 0.011688352562487125, -0.015985239297151566, 0.006233560387045145, -0.018567470833659172, -0.005410388577729464, 0.03563205525279045, 0.027830710634589195, 0.009174434468150139, 0.002471222309395671, 0.0238275695592165, 0.021313652396202087, 0.013512308709323406, 0.006134506314992905, 0.015862276777625084, 0.015438735485076904, 0.0011963312281295657, 0.01212555542588234, 0.030412942171096802, -0.019769778475165367, -0.016149191185832024, 0.03355534002184868, -0.014687292277812958, 0.06935134530067444, -0.003166306996718049, -0.015862276777625084, -0.0014900770038366318, -0.008211221545934677, -0.04014071077108383, -0.1096833348274231, 0.009748263284564018, 0.0015285031404346228, 0.017802365124225616, -0.003709395183250308, 0.022324685007333755, -0.002338011981919408, -0.0007830376271158457, 0.011100860312581062, 0.0012424425221979618, -0.009324722923338413, -0.04273660480976105, 0.00020728723029606044, -0.0025873545091599226, 0.0033968633506447077, -0.028937382623553276, -0.009201759472489357, -0.010772958397865295, -0.004327627830207348, 0.03183385357260704, -0.002449020743370056, -0.021381964907050133, 0.022584274411201477, -0.021067725494503975, 0.03675238788127899, -0.001597670023329556, -0.037708770483732224, 0.004184170626103878, 0.03467567265033722, 0.017570100724697113, -0.013963175006210804, 0.0008534853695891798, 0.023786582052707672, -0.007835499942302704, -0.00887385755777359, -0.007965294644236565, -0.028773430734872818, -0.001752228126861155, 0.030194340273737907, -0.033609990030527115, 0.01435939036309719, -0.009112952277064323, 0.014441365376114845, -0.008361510001122952, 0.012166542932391167, -0.008696243166923523, -0.028090300038456917, 0.005683640483766794, 0.008354678750038147, -0.03470299765467644, -0.02336304262280464, 0.008470810949802399, -0.040250014513731, -0.011620039120316505, 0.017269523814320564, -0.0217098668217659, 0.027844373136758804, 0.012924817390739918, -0.01748812571167946, -0.02550807036459446, -0.019619490951299667, 0.005816850811243057, 0.0009819992119446397, 0.02479761466383934, 0.005922736134380102, 0.005150799173861742, -0.011749833822250366, -0.010465550236403942, 0.030330967158079147, -0.015179146081209183, -0.016012564301490784, 0.011906953528523445, -0.02311711572110653, 0.008955832570791245, -0.031751878559589386, 0.016682032495737076, -0.024469712749123573, -0.0004220461705699563, 0.012426132336258888, 0.000508077850099653, -0.010164972394704819, -0.016804995015263557, 0.004993679467588663, -0.0034344354644417763, 0.01773405261337757, 0.0002247924276161939, 0.007384634111076593, -0.004918535239994526, -0.00281620305031538, -0.009126614779233932, 0.003624004079028964, 0.009440855123102665, -0.005932983011007309, -0.008921676315367222, 0.022352010011672974, 0.04254532977938652, 0.019496526569128036, 0.017925327643752098, -0.0035591067280620337, -0.009775588288903236, -0.020944762974977493, -0.004378862679004669, -0.06935134530067444, 0.016518080607056618, 0.008921676315367222, 0.017870677635073662, 0.003299517324194312, -0.010738802142441273, 0.018499156460165977, -0.023472342640161514, -0.004908288363367319, 0.028828080743551254, -0.023171765729784966, 0.03934828191995621, -0.009167603217065334, -0.01661371812224388, -0.011667858809232712, 0.0001445246598450467, 0.0017846768023446202, -0.021081387996673584, 0.011476581916213036, -0.006643438246101141, 0.01718754693865776, 0.008689411915838718, 0.026737703010439873, -0.0012082860339432955, -0.015097170136868954, 0.006793726701289415, 0.02255694940686226, 0.0238275695592165, 0.002278238069266081, -0.018813397735357285, 0.00999419018626213, -0.03546810522675514, 0.010417730547487736, 0.005591418128460646, 0.009611637331545353, -0.00033537409035488963, -0.021928468719124794, -0.004245652351528406, 0.004945860244333744, 0.05803871527314186, -0.011906953528523445, -0.018854385241866112, -0.007541753817349672, -0.03216175362467766, 0.000196613313164562, 0.02509819157421589, -0.004607710987329483, -0.001582299591973424, 0.013280045241117477, -0.016668369993567467, 0.017078246921300888, 0.019810765981674194, -0.002449020743370056, -0.029811788350343704, -0.005868085660040379, -0.007514428813010454, 0.01457799132913351, -0.007685211021453142, -0.002472930122166872, -0.03861049935221672, 0.022597936913371086, -0.010998391546308994, 0.021177025511860847, -0.012672059237957, 0.027543796226382256, -0.031341999769210815, -0.011831809766590595, 0.006633191369473934, -0.018362531438469887, -0.014878569170832634, 0.015397747978568077, -0.004457422532141209, 0.0012535433052107692, -0.0016822073375806212, 0.018567470833659172, 0.009837070479989052, 0.0051063960418105125, -0.012631071731448174, -0.026286838576197624, 0.00845031626522541, -0.0021689373534172773, -0.009153940714895725, -0.0417528972029686, 0.012672059237957, 0.03197047859430313, -0.015821287408471107, 0.017255861312150955, 0.009358879178762436, -0.0009188096737489104, 0.004949275869876146, 0.01818491704761982, -0.013635272160172462, 0.001974245300516486, -0.012617409229278564, -0.00019373136456124485, 0.014864906668663025, -0.0088875200599432, -0.003472007578238845, 0.037982020527124405, 0.0274618212133646, -0.03749016672372818, 0.02101307548582554, 0.008156570605933666, -0.009372541680932045, -0.00024998284061439335, 0.0011254565324634314, -0.01858113333582878, -0.027584785595536232, -0.0006664785905741155, 0.025316793471574783, 0.005082486197352409, 0.002542950911447406, 0.02904668264091015, 0.017515450716018677, -0.024155473336577415, 0.004440344404429197, 0.0002563871967140585, -0.003123611444607377, -0.014537003822624683, 0.03708029165863991, 0.006978171877563, 0.029702486470341682, 0.021805506199598312, 0.00750759756192565, 0.017706725746393204, 0.02069883607327938, 0.015042520128190517, 0.026833342388272285, 0.019974717870354652, 0.02045290917158127, 0.010082997381687164, 0.017870677635073662, -0.054049234837293625, 0.0010750757064670324, 0.0016096248291432858, -0.03915700316429138, -0.0042763929814100266, 0.002442189259454608, -0.0067219980992376804, 0.04169824719429016, -0.004802403040230274, -0.019974717870354652, 0.0038084490224719048, 0.011387774720788002, 0.015602686442434788, 0.00959114357829094, -0.006079855840653181, 0.010704644955694675, 0.0019503358053043485, 0.007452947087585926, -0.015684662386775017, 0.0274618212133646, -0.02396419644355774, 0.001868360210210085, 0.012016254477202892, -0.004911703988909721, 0.021054062992334366, -0.008354678750038147, -0.0180073045194149, 0.012993130832910538, -0.00018487202760297805, 0.010889090597629547, 0.007036237977445126, -0.0114219319075346, 0.01317074429243803, 0.018567470833659172, -0.004037297796458006, 0.0034105258528143167, -0.04940395429730415, -0.0032414512243121862, 0.023021476343274117, -0.016135528683662415, -0.019646815955638885, 0.018799735233187675, -0.0166410431265831, -0.0037162266671657562, -0.008347847498953342, 0.016135528683662415, 0.008737231604754925, -0.01564367488026619, 0.005140552297234535, -0.021231677383184433, -0.004235405474901199, 0.0287461057305336, -0.0208764486014843, -0.01430473942309618, -0.005027835723012686, -0.017788702622056007], "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7": [0.007569965440779924, -0.006599284242838621, -0.008655240759253502, 0.027017293497920036, -0.019224880263209343, 0.03596913069486618, -0.010670753195881844, -0.021611139178276062, -0.003946762997657061, -0.02026297152042389, 0.016218464821577072, -0.0004520577203948051, 0.014506291598081589, 0.009551772847771645, 0.000669871165882796, 0.010522454045712948, 0.045217566192150116, -0.002622187603265047, 0.04527149349451065, -0.023026715964078903, -0.008257531560957432, -0.001339742331765592, 0.006889140233397484, 0.033164940774440765, -0.01004385482519865, 0.036454472690820694, 0.011857140809297562, -0.02370079979300499, 0.02333679422736168, -0.01170884259045124, -0.0032541414257138968, 0.005928570404648781, 0.005554453935474157, -0.003518719458952546, -0.024186139926314354, 0.0016270707128569484, -0.0012630652636289597, -0.019076582044363022, 0.009558513760566711, -0.010401119478046894, 0.00654198694974184, -0.008715908974409103, -0.007549743168056011, -0.006252130959182978, -0.02847331576049328, 0.007792413234710693, -0.0004078209458384663, -0.023390721529722214, -0.025642162188887596, 0.004624217748641968, 0.02159765735268593, 0.009511328302323818, -0.01772841438651085, 0.002438499592244625, -0.0011568969348445535, -0.010643789544701576, 0.003811946138739586, 0.014196213334798813, -0.004765775054693222, 0.027799231931567192, -0.004502882249653339, 0.01664987951517105, 0.004708478227257729, 0.018429461866617203, -0.03238300606608391, -0.018389016389846802, -0.002008770825341344, -0.015126449055969715, -0.0097742211073637, -0.014991632662713528, 0.04041808843612671, 0.025453418493270874, -0.004647810477763414, -0.007893525995314121, 0.0154500100761652, -0.025197267532348633, -0.03192462772130966, 0.004873628728091717, -0.013414275832474232, 0.00549041572958231, 0.0036299433559179306, -0.04155055060982704, -0.0075362613424658775, 0.00980792474001646, 0.027664415538311005, -0.022918863222002983, 0.0014711887342855334, 0.024186139926314354, -0.007596928626298904, -0.028527243062853813, 0.005520749371498823, 0.030306825414299965, -0.007475593592971563, 0.013104196637868881, 0.0028176719788461924, 0.02066742070019245, -0.028311535716056824, 0.03267960250377655, -0.008621537126600742, -0.03542986512184143, -0.026221875101327896, -0.0018975470447912812, -0.03332672268152237, -0.003454681485891342, -0.023026715964078903, 0.005514008458703756, -0.012072848156094551, -0.007226182613521814, 0.019130509346723557, -0.022339150309562683, -0.0017441927921026945, 0.017782341688871384, -0.013171604834496975, -0.050205789506435394, -0.005571305751800537, -0.007178996689617634, 0.031466249376535416, -0.013785021379590034, -0.0045972540974617004, -0.016663361340761185, -0.0200877096503973, 0.02732737362384796, -0.007623892277479172, -0.008075528778135777, 0.011068462394177914, 0.008473237976431847, -0.0009470882941968739, -0.03402777016162872, 0.013043529354035854, -0.003050230909138918, 0.03818012773990631, 0.00452310498803854, -0.010616825893521309, 0.004765775054693222, -0.013791762292385101, 0.02305367961525917, -0.024738889187574387, -0.018874356523156166, -0.02984844706952572, -0.02163810282945633, 0.020788757130503654, 0.014533255249261856, -0.008978801779448986, -0.030738238245248795, -0.02761048823595047, 0.02543993666768074, 0.026302766054868698, 0.007967675104737282, -0.018510350957512856, 0.000883050262928009, 0.01613757573068142, -0.011095426045358181, 0.013468202203512192, -0.01867213286459446, 0.015935350209474564, -0.008783317171037197, 0.014587181620299816, -0.00885072536766529, -0.001394511666148901, -0.001983492635190487, 0.013447979465126991, 0.017377890646457672, 0.004041134845465422, -0.013326644897460938, 0.005069113336503506, 0.031385358422994614, 0.016164539381861687, -0.018753021955490112, -0.03152017667889595, -0.022096479311585426, 0.016919512301683426, 0.018941765651106834, -0.02486022561788559, 0.0240243598818779, -0.008641758933663368, 0.017067812383174896, 0.04082253947854042, 0.037398189306259155, -0.012585151940584183, 0.00814293697476387, -0.030711276456713676, -0.008857466280460358, 0.025844387710094452, 0.017998047173023224, -0.011809955351054668, 0.0007730902871116996, -0.0007469695410691202, -0.01005733571946621, 0.021813364699482918, 0.0034917560406029224, 0.002660947386175394, 0.017270036041736603, -0.027421744540333748, -0.01628587394952774, -0.6415124535560608, -0.03195159137248993, -0.00585442129522562, -0.011654915288090706, -0.00012670675641857088, 0.010623566806316376, 0.007671078201383352, 0.005251115653663874, 0.009322584606707096, -0.004320879466831684, -0.021692030131816864, 0.016811659559607506, 0.01000340934842825, -0.02550734579563141, -0.03130447119474411, -0.004651180934160948, 0.013785021379590034, -0.03068431280553341, -0.0038153165951371193, -0.026100540533661842, -0.0028817099519073963, -0.0018132864497601986, -0.028500279411673546, -0.0018284533871337771, -0.00835864432156086, -0.006427392829209566, 0.014883778989315033, 0.010697715915739536, 0.012443593703210354, 0.029066510498523712, -0.01331990398466587, 0.015463490970432758, 0.025237713009119034, 0.017270036041736603, 0.04826442897319794, -0.01129091065376997, -0.003663647687062621, 0.025534309446811676, -0.002622187603265047, 0.003946762997657061, -0.020020300522446632, -0.02182684652507305, 0.021476322785019875, -0.0016692009521648288, 0.006734101101756096, -0.00480285007506609, 0.033380649983882904, -0.007044179830700159, 0.01656898856163025, 0.01364346407353878, 0.009383251890540123, 0.007859821431338787, -0.015072522684931755, -0.013158123008906841, -0.0076913004741072655, -0.00906643271446228, 0.027772268280386925, -0.0097742211073637, 0.005348857957869768, -0.0035996094811707735, 0.008790058083832264, 0.024253549054265022, -0.015369119122624397, -0.01303004752844572, -0.018375534564256668, 0.0097539983689785, -0.02236611396074295, 0.02101794444024563, 0.0211662445217371, -0.010091040283441544, 0.00048744713421911, 0.01132461428642273, 0.008271013386547565, -0.01481637079268694, 0.020896609872579575, 0.0061409068293869495, 0.03882724791765213, -0.009996668435633183, -0.015409564599394798, 0.014708517119288445, 0.0006210000719875097, -0.02210996113717556, -0.024509701877832413, -0.032113369554281235, 0.024334440007805824, -0.0058746435679495335, -0.009201249107718468, 0.030091118067502975, 0.013683908618986607, -0.005776901729404926, 0.01725655607879162, 0.016744250431656837, -0.0077250050380826, 0.009518069215118885, 0.021004462614655495, 0.009693331085145473, -0.005810605827718973, -0.01009778119623661, 0.02666676975786686, -0.009625921957194805, -0.009363029152154922, -0.03160106763243675, -0.004823072347790003, -0.013555833138525486, 0.003906317986547947, -0.010832533240318298, -0.03187070041894913, 0.003717574290931225, 0.05101469159126282, -0.0091742854565382, -0.006039794534444809, -0.01714870147407055, -0.007947452366352081, -0.002059327205643058, 0.025776978582143784, -0.020573049783706665, 0.008608055301010609, -0.014304066076874733, 0.024267030879855156, -0.014088359661400318, 0.01882043108344078, -0.01492422353476286, 0.013609759509563446, -0.015139930881559849, 0.022999752312898636, 0.03216729685664177, 0.0050590019673109055, -0.009228212758898735, -0.02565564401447773, -0.02301323413848877, -0.00022560755314771086, -0.012544706463813782, 0.009268657304346561, 0.010994313284754753, 0.024159178137779236, -0.022568339481949806, 0.01563875377178192, 0.01298960205167532, 0.009632662869989872, -0.018402498215436935, -0.011729065328836441, -0.005810605827718973, 0.02500852383673191, 0.01073142047971487, -0.008291235193610191, -0.035915207117795944, -0.022554857656359673, -0.005426377523690462, -0.02930918149650097, 0.004920814651995897, -0.0050590019673109055, -0.0012150367256253958, -0.003704092698171735, 0.009207990020513535, 0.009039469063282013, -0.018119383603334427, -0.023255905136466026, 0.006629617884755135, 0.005776901729404926, -0.024631036445498466, 0.003525460371747613, 0.01759359799325466, -0.011189797893166542, 0.012227887287735939, 0.013953542336821556, -0.027003813534975052, 0.004705107770860195, 0.0251837857067585, 0.014614145271480083, -0.040768612176179886, 0.030010228976607323, -0.012167220003902912, 0.0004436316667124629, 0.04621521383523941, -0.015787051990628242, 0.0021183094941079617, -0.018119383603334427, -0.008594573475420475, -0.0011788047850131989, 0.00746211176738143, -0.011661656200885773, 0.010556158609688282, -0.0009319214150309563, -0.003997319377958775, 0.03187070041894913, -0.021301060914993286, -0.003006415441632271, -0.0026626326143741608, 0.0009361344273202121, 0.036346618086099625, 0.008709168061614037, -0.006474578753113747, 0.0103134885430336, -0.0037243152037262917, 0.006892510689795017, -0.012854785658419132, 0.022420039400458336, 0.027003813534975052, 0.012848044745624065, 0.01886087656021118, 0.00872264988720417, 0.013367089442908764, 0.03650839999318123, -0.0007503399392589927, 0.005139891989529133, -0.014668071642518044, -0.0028109310660511255, -0.004853405989706516, 0.036858923733234406, -0.018065456300973892, 0.009106877259910107, -0.019737185910344124, -0.0076913004741072655, -0.02055956795811653, 0.01245033461600542, 0.029875410720705986, 0.01667684316635132, -0.0030519161373376846, -0.007158773951232433, 0.006956548895686865, 0.024091769009828568, -0.014654590748250484, -0.0016413950361311436, -0.003956874366849661, -0.008500201627612114, -0.02309412509202957, 0.018793467432260513, 0.031789809465408325, 0.03173588216304779, -0.01427710335701704, 0.02728692814707756, -0.008843984454870224, -0.017027366906404495, 0.005069113336503506, 0.022460484877228737, 0.0009445604518987238, 0.00039244338404387236, -0.006771175656467676, 0.026976849883794785, -0.028958657756447792, -0.01396702416241169, -0.005776901729404926, 0.03154714033007622, -0.01141898613423109, -0.002140217227861285, 0.003055286593735218, 0.01925184391438961, 0.0016312837833538651, 0.021260615438222885, 0.021651584655046463, -0.02384909801185131, -0.0018149716779589653, -0.018227236345410347, -0.01239640824496746, 0.01129091065376997, -0.04260212182998657, -0.003919799346476793, 0.018645169213414192, 0.02743522636592388, 0.028068866580724716, 0.006828472949564457, -0.002185717923566699, 0.0007709838100709021, 0.006454356014728546, 0.05279427394270897, -0.006713878363370895, -0.00835864432156086, 0.02507593110203743, -0.027489153668284416, -0.018726058304309845, -0.03111572563648224, -0.015948832035064697, 0.008405829779803753, -0.0011636378476396203, 0.019561924040317535, 0.008446275256574154, 0.008035083301365376, -0.008729389868676662, 0.01783626712858677, 0.0017079608514904976, -0.03130447119474411, -0.014115323312580585, 0.014991632662713528, 0.004755664151161909, 0.011176316067576408, -0.014951187185943127, -0.02634320966899395, -0.007502557244151831, -0.01989896595478058, 0.03772175312042236, -0.010515713132917881, 0.014452365227043629, 0.013158123008906841, -0.014101841486990452, -0.005938681773841381, 0.012760413810610771, 0.014978150837123394, -0.033892951905727386, 0.03257174789905548, 0.003946762997657061, 0.013178345747292042, 0.0013742891605943441, -0.03340761363506317, 0.019710222259163857, 0.022999752312898636, -0.008769835345447063, 0.0033687357790768147, -0.0149107426404953, 0.014829852618277073, -0.010643789544701576, -0.00748233450576663, -0.02529163844883442, 0.0010060706408694386, 0.0022345890756696463, -0.00683184340596199, 0.012173960916697979, -0.017054330557584763, 0.007495816331356764, 0.012875008396804333, -0.016164539381861687, -0.020802238956093788, -0.024995042011141777, -0.017108255997300148, -0.0016523489030078053, 0.08725345879793167, 0.010192153044044971, -0.019777629524469376, 0.0014029376907274127, 0.0044523258693516254, 0.021476322785019875, -0.01391309779137373, -0.0458916500210762, 0.026046613231301308, -0.00914058182388544, 0.02055956795811653, 0.002216051798313856, 0.012949157506227493, 0.007900266908109188, 0.004957889206707478, -0.010461786761879921, -0.0183485709130764, -0.01574660651385784, -0.011836918070912361, 0.008473237976431847, 0.0028041901532560587, 0.006798138841986656, 0.02606009505689144, 0.015935350209474564, -0.033785101026296616, 0.0042467303574085236, 0.021328024566173553, 0.003454681485891342, 0.023404203355312347, -0.012005439028143883, -0.009929260239005089, 0.011661656200885773, 0.0320594422519207, 0.013636723160743713, -0.02804190292954445, 0.009538291022181511, -0.004088320769369602, 0.017175665125250816, -0.011223501525819302, -0.009154063649475574, 0.02099098078906536, 0.008203604258596897, -0.008891170844435692, -0.010131485760211945, -7.746701885480434e-05, 0.0008864207193255424, -0.009895555675029755, -0.006649840623140335, -0.03456703573465347, 0.017391372472047806, 0.038881175220012665, -0.023148050531744957, -0.005170225631445646, -0.01877998560667038, 0.028284572064876556, 0.007475593592971563, -0.01201217994093895, -4.9687376304063946e-05, -0.008985542692244053, 0.03108876198530197, -0.002694651484489441, 0.0074688526801764965, 0.030657349154353142, -0.015032077208161354, -0.01423665788024664, -0.026316246017813683, -0.016380246728658676, -0.015733124688267708, -0.0044523258693516254, 0.01628587394952774, -0.016488099470734596, -0.004395029041916132, -0.012288554571568966, -0.004334361292421818, 0.005369080696254969, 0.0020509010646492243, 0.0292822178453207, -0.017027366906404495, 0.007300331722944975, -0.010091040283441544, -0.010273043066263199, -0.03068431280553341, 0.015584826469421387, -0.02627580240368843, -0.00904620997607708, 0.007226182613521814, 0.013124419376254082, 0.015072522684931755, -0.023026715964078903, 0.0023019975051283836, 0.010246079415082932, 0.015652235597372055, 0.011304391548037529, -0.007846339605748653, -0.010279783979058266, -0.008803539909422398, -0.004250100813806057, 0.006319539155811071, 0.0030906759202480316, -0.005018556956201792, -0.0016616175416857004, -0.04411206766963005, -0.01987200230360031, -0.011884104460477829, 0.027111666277050972, -0.03154714033007622, 0.02275708317756653, 0.015571344643831253, -0.0200472641736269, -0.01931925304234028, 0.023148050531744957, -0.020748311653733253, -0.005692640785127878, 0.003973726183176041, 0.007893525995314121, 0.01496466901153326, 0.006646470166742802, 0.00846649706363678, 0.001298454706557095, -0.0006728202570229769, -0.01197847630828619, -0.027219519019126892, 0.010185412131249905, -0.006127425469458103, -0.0412539541721344, -0.00841257069259882, 0.008446275256574154, -0.01322553213685751, 0.015733124688267708, -0.005857791751623154, 0.013400794006884098, 0.012254850938916206, 0.01744529977440834, 0.00521067064255476, -0.024671481922268867, -0.0018638428300619125, -0.014465847052633762, 0.0018604723736643791, -0.012767154723405838, -0.005935311317443848, -0.015220820903778076, -0.018806949257850647, -0.0005068270256742835, -0.02178640104830265, 0.0010060706408694386, -0.02533208392560482, -0.006039794534444809, -0.0011670083040371537, 0.005534231197088957, -0.01856427825987339, 0.005716233979910612, -0.037937458604574203, -0.033919915556907654, -0.012962639331817627, -0.008109232410788536, -0.02709818445146084, 0.0013262606225907803, -0.0027401521801948547, 0.03648143634200096, 0.00177958223503083, 0.022231295704841614, -0.025601716712117195, 0.007745227310806513, 0.00746211176738143, -0.002834524028003216, 0.005884754937142134, -0.010212375782430172, -0.022811008617281914, -0.04497489705681801, -0.013117678463459015, 0.023983916267752647, 0.024806298315525055, 0.009086654521524906, -0.010118003934621811, -0.008608055301010609, 0.03303012624382973, -7.483387889806181e-05, -0.009834888391196728, -0.02157069370150566, -0.03532201051712036, -0.017795823514461517, 0.0016708861803635955, -0.01264581922441721, 0.0033299759961664677, -0.017175665125250816, -0.00290361768566072, 0.047967832535505295, 0.0072194417007267475, 0.02247396670281887, -0.022568339481949806, 0.016959957778453827, -0.018793467432260513, -0.014344511553645134, -0.004024282563477755, 0.025601716712117195, 0.0010060706408694386, 0.03149321302771568, 0.0039535039104521275, 0.011068462394177914, -0.02030341513454914, -0.004880369640886784, -0.011486394330859184, -0.003144602756947279, -0.015679197385907173, -0.013340125791728497, 0.011863881722092628, -0.020937055349349976, -0.008965319953858852, 0.023148050531744957, -0.010475268587470055, -0.022082997485995293, -0.004502882249653339, 0.008378866128623486, -0.03181677311658859, -0.02051912248134613, -0.0026895960327237844, 0.012868267484009266, 0.009524809196591377, -0.01925184391438961, -0.01852383278310299, 0.004455696325749159, -0.017903676256537437, 0.06379532814025879, 0.013245753943920135, 0.029956301674246788, 0.01293567568063736, -0.012895230203866959, 0.0012436853721737862, 0.005483674816787243, 0.002642410108819604, -0.019076582044363022, 0.01362324133515358, 0.02771834284067154, -0.0194271057844162, 0.004300657194107771, -0.02279752679169178, -0.0025682607665657997, -0.01929228939116001, -0.01830812729895115, 0.025453418493270874, -0.012227887287735939, -0.01058312226086855, -0.007421666756272316, -0.00938999280333519, -0.03979793190956116, 0.009342807345092297, 0.0031665104907006025, 0.02124713361263275, -0.01369739044457674, -0.026356691494584084, -0.046916261315345764, 0.007354258559644222, 0.019265325739979744, 0.03572646155953407, 0.02529163844883442, -0.018483389168977737, -0.03462096303701401, 0.002231218619272113, -0.0400945283472538, -0.015584826469421387, -0.019993336871266365, 0.017647523432970047, -0.018294645473361015, 0.011722324416041374, 0.0073744808323681355, -0.0026761142071336508, 0.008001379668712616, -0.006265612784773111, -0.01400746963918209, 0.02855420671403408, 0.023687317967414856, 0.012962639331817627, 0.003532201051712036, 0.00868220441043377, 0.01686558686196804, 0.008924874477088451, -0.018618205562233925, -0.012214405462145805, -0.001397039508447051, 0.008277754299342632, 0.000940347439609468, 0.020977500826120377, -0.0019228251185268164, 0.009693331085145473, -0.019912447780370712, -0.01725655607879162, 0.0004461594799067825, 0.011338096112012863, -0.013239013962447643, -0.04899244010448456, -0.024509701877832413, 0.0015040503349155188, -0.016690324991941452, 0.01766100525856018, -0.006498171482235193, 0.0298214852809906, -0.0007768820505589247, 0.011284169740974903, -0.03267960250377655, 0.015530900098383427, -0.015908386558294296, 0.016151057556271553, -0.03343457728624344, 0.017431817948818207, 0.010353933088481426, -0.024267030879855156, 0.02077527530491352, -0.01588142290711403, -0.036238767206668854, 0.002121679950505495, 0.004688255488872528, 0.015112967230379581, 0.010118003934621811, 0.008169900625944138, 0.01929228939116001, -0.01400746963918209, 0.013926579616963863, -0.020276453346014023, -0.02268967404961586, 0.01957540400326252, 0.00879679899662733, 0.020815718919038773, 0.011250465176999569, -0.016663361340761185, 0.0011223502224311233, -0.0007958406349644065, 0.012369444593787193, 0.001674256636761129, -0.024442292749881744, 0.004260212182998657, -0.024563627317547798, 0.025237713009119034, 0.022743601351976395, -0.002942377468571067, -0.015045559033751488, -0.015193857252597809, -0.020802238956093788, 0.0064139110036194324, -0.0003795936645474285, -0.01624542847275734, 0.015517418272793293, 0.00324740051291883, -0.005079224240034819, -0.02153024822473526, -0.017741896212100983, -0.009342807345092297, 0.0020475308410823345, -0.02221781574189663, -0.048830658197402954, 0.003619832219555974, -0.004721959587186575, 0.027448708191514015, 0.01007755845785141, -0.0071250698529183865, -0.0032170668710023165, -0.029443997889757156, -0.03691285103559494, -0.005756678991019726, 0.003525460371747613, 0.008041824214160442, 0.038665469735860825, 0.018550796434283257, 0.014047914184629917, 0.02750263549387455, -0.01563875377178192, -0.0063127982430160046, -0.008271013386547565, -0.01245033461600542, -0.013508646748960018, 0.00684869522228837, -0.005840939469635487, 0.013886134140193462, -0.003950133454054594, 0.004603995010256767, 0.010246079415082932, -0.021975144743919373, -0.009248435497283936, 0.004583772271871567, -0.0013043528888374567, -0.009504587389528751, -0.004341102205216885, -0.003308068262413144, 0.01871257647871971, 0.00872264988720417, -0.002750263549387455, -0.018402498215436935, -0.010522454045712948, -0.007003734819591045, -0.005446600262075663, -0.0447322279214859, -0.03734426572918892, 0.004236618988215923, -0.012126774527132511, 0.01873954012989998, -0.03100787289440632, -0.010967349633574486, -0.007866562344133854, -0.04281782731413841, 0.036535363644361496, -0.0003568433166947216, 0.01235596276819706, 0.024482738226652145, 0.010576381348073483, -0.027745304629206657, -0.021503286436200142, 0.02254137583076954, 0.0028547465335577726, -0.03235604241490364, 0.0060465349815785885, -0.015369119122624397, 0.03219426050782204, -0.016272392123937607, 0.01733744516968727, -0.030738238245248795, 0.012976120226085186, -0.006070128176361322, 0.015032077208161354, -0.028715986758470535, 0.0246445182710886, -0.0019093435257673264, 0.004991593305021524, -0.013677168637514114, 0.005473563447594643, -0.006562209688127041, 0.017418336123228073, -0.02558823674917221, -0.011621211655437946, 0.0002582585148047656, -0.0019143990939483047, 0.010475268587470055, 0.021772919222712517, -0.018186790868639946, -0.005109558347612619, 0.009720293805003166, -0.028068866580724716, 0.0008206975180655718, 0.19046923518180847, -0.012093069963157177, 0.011196538805961609, 0.026437582448124886, -0.00261039100587368, 0.01824071817100048, 0.013980505988001823, 0.002814301522448659, -0.0019481033086776733, -0.0025379268918186426, -0.005561194382607937, 0.02015511691570282, -0.01147291250526905, 0.006643099710345268, 0.02312108688056469, -0.007199218962341547, -0.04106520861387253, 0.005129780620336533, -0.010232597589492798, -0.06104506552219391, -0.0010835903231054544, -0.0027805971913039684, -0.009598959237337112, 0.004674773663282394, 0.02309412509202957, 0.009706811979413033, -0.015139930881559849, 0.0022649229504168034, 0.019993336871266365, 0.0042467303574085236, -0.02095053717494011, -0.005655566230416298, 0.006292575970292091, 0.005958904046565294, -0.003518719458952546, 0.024995042011141777, 0.009612440131604671, -0.00457029091194272, 0.0015714587643742561, -0.02225825935602188, 0.00946414191275835, 0.005743197165429592, -0.004745552781969309, 0.015207339078187943, -0.018442943692207336, 0.025642162188887596, 0.00845301616936922, -0.0064307632856070995, -0.022716637700796127, 0.03108876198530197, -0.03402777016162872, 0.015099486336112022, 0.029039546847343445, 0.022878417745232582, 0.005689270794391632, -0.015247784554958344, -0.014155767858028412, 0.0016801548190414906, -0.004796109162271023, 0.02391650713980198, -0.009942742064595222, 0.032113369554281235, 0.00023550816695205867, 0.029902374371886253, -0.021152762696146965, -0.0038153165951371193, -0.009167544543743134, -0.0038827250245958567, 0.02453666366636753, -0.02428051270544529, 0.000378961703972891, -0.017971085384488106, -0.004186062607914209, 0.005187077913433313, -0.006370095536112785, 0.003372106235474348, 0.018874356523156166, 0.0014206324703991413, 0.0102932658046484, -0.001268120831809938, 0.02565564401447773, -0.014856815338134766, 0.021718991920351982, -0.00585442129522562, -0.011857140809297562, -0.017135219648480415, -0.007293590810149908, -0.0018975470447912812, -0.024361401796340942, 0.008843984454870224, -0.0038658727426081896, -0.03276049345731735, -0.004506252706050873, -0.0009824776789173484, 0.007172255776822567, -0.007064402103424072, 0.020492158830165863, 0.01464110892266035, 0.0006665007676929235, 0.0055746762081980705, -0.02388954348862171, -0.005079224240034819, 0.018173309043049812, -0.008614796213805676, -0.0343782939016819, -0.0046141063794493675, 0.0065082828514277935, 0.009922519326210022, 0.01585445925593376, 0.003188418224453926, 0.02836546301841736, -0.004823072347790003, 0.01092690508812666, -0.015625271946191788, -0.012814340181648731, 0.03626573085784912, -0.018483389168977737, -0.030198972672224045, -0.005369080696254969, 0.0029204697348177433, 0.010940385982394218, -0.013555833138525486, -0.011068462394177914, 0.01722959242761135, -0.0017964344006031752, -0.0038591320626437664, -0.016474617645144463, 0.01755315251648426, 0.0123222591355443, 4.929240822093561e-05, 0.018941765651106834, -0.03734426572918892, -0.005025297868996859, -0.0017559892730787396, -0.017243074253201485, 0.025952240452170372, -0.017499225214123726, -0.014384957030415535, 0.02548038214445114, -0.023080643266439438, 0.007920489646494389, -0.012167220003902912, 0.006380206905305386, -0.003532201051712036, 0.008695686236023903, -0.0011644804617390037, 0.013178345747292042, -0.02486022561788559, 0.002096401760354638, -0.00906643271446228, -0.03944740816950798, 0.006909362971782684, -0.010407859459519386, -0.0007701411959715188, 0.011041498742997646, -0.014425401575863361, -0.01613757573068142, -0.039393480867147446, 0.014492809772491455, 0.023404203355312347, -0.02992933802306652, 0.0038962066173553467, 0.024631036445498466, -0.008405829779803753, -0.0014914112398400903, -0.011951512657105923, -0.17127130925655365, 0.024563627317547798, 0.012969380244612694, -0.015490454621613026, 0.028823839500546455, 0.025938760489225388, 0.0342974029481411, -0.017108255997300148, 0.006690285634249449, -0.012234628200531006, 0.013764799572527409, 0.01168861985206604, -0.05915762856602669, -0.03149321302771568, -0.00845301616936922, 0.0072194417007267475, -0.0007284322055056691, 0.01654202677309513, 0.040364161133766174, 0.014034433290362358, 0.0019767519552260637, -0.0013591222232207656, 0.01406139601022005, 0.011452690698206425, 0.01899569295346737, 0.008237308822572231, -0.007657596375793219, 0.01863168738782406, 0.010246079415082932, -0.006963289808481932, -0.0011206649942323565, 0.012618856504559517, -0.012362703680992126, -0.022123442962765694, 0.026572398841381073, 0.014438883401453495, 0.001543652848340571, 0.008783317171037197, 0.00646783784031868, 0.009005764499306679, 0.00814293697476387, -0.00011712213017744943, 0.014115323312580585, -0.000701890152413398, -0.01005733571946621, 0.03491755947470665, 0.002335701836273074, -0.003399069420993328, 0.017526188865303993, -0.014762443490326405, 0.010899941436946392, -0.013110937550663948, 0.016447653993964195, -0.00031492370180785656, 0.024563627317547798, 0.000693885434884578, 0.01690603233873844, 0.005611750762909651, -0.022635746747255325, -0.009282139129936695, 0.005372451152652502, -0.019764147698879242, 0.019818075001239777, 0.0015883109299466014, -0.011156093329191208, 0.0009689960279501975, -0.027664415538311005, 0.006228537764400244, -0.02898561954498291, 0.0028564317617565393, -0.004543327260762453, 0.03057645820081234, 0.025062451139092445, -0.00014303224452305585, -0.014465847052633762, 0.0057701608166098595, -0.0035760165192186832, 0.009073173627257347, 0.0011686934158205986, 0.008769835345447063, -0.04022934287786484, 0.03470185399055481, -0.013488424941897392, -0.015396082773804665, -0.008715908974409103, 0.01701388508081436, -0.023040197789669037, -0.022878417745232582, -0.008621537126600742, -0.0024873707443475723, 0.011425727047026157, -0.021759437397122383, -0.004388288129121065, -0.007111588027328253, 0.02146284095942974, 0.021975144743919373, 0.025062451139092445, -0.031681958585977554, 0.017054330557584763, -0.010070817545056343, -0.002832838799804449, -0.0020610124338418245, -0.022271741181612015, 0.020532604306936264, 0.01559830829501152, 0.004128765780478716, 0.002546353032812476, 0.011331355199217796, 0.026114022359251976, 0.00580723537132144, 0.0035996094811707735, 0.010664012283086777, 0.00024898984702304006, -0.003183362539857626, 0.004357954487204552, 0.021193206310272217, -0.003913058899343014, -0.014654590748250484, 0.007610410451889038, -0.019925929605960846, 0.06379532814025879, -0.012821081094443798, -0.010522454045712948, 0.007199218962341547, -0.01791715808212757, -0.028284572064876556, -0.12004091590642929, 0.006110573187470436, 0.016488099470734596, 0.013185086660087109, -0.004526475444436073, 0.01132461428642273, -0.0025564644020050764, 0.005773531273007393, -0.006892510689795017, 0.008237308822572231, -0.014101841486990452, -0.02481978014111519, -0.004506252706050873, -0.002967655658721924, 0.022393077611923218, -0.01559830829501152, -0.00016588790458627045, -0.02413221448659897, 0.00885072536766529, 0.02366035431623459, -0.004563549999147654, -0.011809955351054668, 0.008500201627612114, -0.01863168738782406, 0.035591647028923035, -0.0004219345864839852, -0.02073482982814312, 0.01722959242761135, 0.021975144743919373, 0.01577357016503811, -0.012639078311622143, -0.000185794458957389, 0.020802238956093788, 0.0025497234892100096, -0.010643789544701576, 1.475875706091756e-05, -0.020910091698169708, -0.0023710911627858877, 0.022784044966101646, -0.03087305650115013, 0.01675773225724697, -0.020788757130503654, 0.029902374371886253, -0.0008548230398446321, 0.006804879754781723, -0.017741896212100983, -0.022608783096075058, 0.009861852042376995, -0.009160804562270641, -0.02011467143893242, -0.01759359799325466, 0.022029072046279907, -0.03224818781018257, -0.014883778989315033, 0.03308405354619026, -0.012794118374586105, 0.022487448528409004, 0.013582796789705753, -0.024873707443475723, -0.0016346541233360767, -0.014897260814905167, 0.007698041386902332, 0.0063532437197864056, 0.018227236345410347, 0.020923573523759842, -0.008931615389883518, -0.023067161440849304, -0.016272392123937607, 0.026033131405711174, -0.016110612079501152, -0.010704456828534603, 0.01828116364777088, -0.023822136223316193, 0.012800858356058598, -0.036130912601947784, 0.009437178261578083, -0.012517743743956089, -0.010407859459519386, 0.02254137583076954, 0.0006399586563929915, 0.002844635397195816, -0.016124093905091286, 0.002069438574835658, -0.0010928589617833495, 0.004964630119502544, 0.005851050838828087, 0.011371800675988197, 0.0025446678046137094, 0.0034479405730962753, -0.02312108688056469, 0.01337383035570383, 0.008587832562625408, -0.008190123364329338, -0.010947126895189285, 0.01581401564180851, 0.039204735308885574, 0.02558823674917221, 0.0004179321986157447, 0.0005417951615527272, -0.00897206086665392, -0.021449359133839607, -0.007367740385234356, -0.05775553360581398, 0.025709571316838264, -0.0004042398650199175, 0.017634041607379913, 0.003195159137248993, -0.013232273049652576, 0.026397136971354485, -0.0194271057844162, 0.0007389647653326392, 0.018335089087486267, -0.00389957707375288, 0.021880771964788437, -0.017849748954176903, -0.007037438917905092, -0.014115323312580585, -0.020168598741292953, 0.008769835345447063, -0.020209044218063354, 0.001660774927586317, -0.004432103596627712, 0.020573049783706665, -0.0032490857411175966, 0.012308777309954166, -0.003919799346476793, -0.02101794444024563, -0.006616136524826288, 0.019804593175649643, 0.03130447119474411, -0.002389628440141678, -0.0246445182710886, 0.01654202677309513, -0.029363106936216354, 0.010016891174018383, -0.007104847580194473, 0.012382926419377327, 0.014263621531426907, -0.017094774171710014, -0.001759359729476273, 0.004715219140052795, 0.056838780641555786, -0.012888489291071892, -0.007044179830700159, 0.0005653881235048175, -0.03435133025050163, 0.02135498635470867, 0.02804190292954445, -0.014304066076874733, -0.00017894829215947539, 0.007623892277479172, -0.018699094653129578, 0.014654590748250484, 0.03087305650115013, 0.003311438485980034, -0.029794521629810333, -0.027340855449438095, -0.024293994531035423, 0.02105838991701603, 0.002445240505039692, 0.006204945035278797, -0.033596355468034744, 0.0189282838255167, -0.01820027269423008, 0.004411880858242512, 0.005288190674036741, 0.022447003051638603, -0.012153738178312778, -0.006137536372989416, -0.010953867807984352, -0.012180700898170471, -0.010037113912403584, -0.00392654025927186, -0.007475593592971563, 0.005311783403158188, -0.004395029041916132, 0.0017391372239217162, 0.03448614850640297, -0.0036602772306650877, -0.011890845373272896, -0.033380649983882904, 0.00904620997607708, 0.00023361229978036135, -0.011931289918720722, -0.027165593579411507, 0.01427710335701704, 0.03615787625312805, -0.0027805971913039684, 0.014721998944878578, 0.003429403295740485, 0.00177958223503083, 0.0025935389567166567, 0.018375534564256668, -0.009504587389528751, 0.0018891209037974477, -0.0012335741193965077, 0.005520749371498823, 0.024914151057600975, -0.00804856512695551, -0.014223176054656506, 0.024267030879855156, 0.026140984147787094, -0.021584175527095795, 0.024118732661008835, -0.005348857957869768, -0.02963274158537388, 0.005921829491853714, -0.0097337756305933, -0.016798177734017372, -0.041307877749204636, -0.0014880408998578787, 0.028203682973980904, -0.004145617596805096, 0.0014737165765836835, 0.03427043929696083, 0.021435877308249474, -0.007077883929014206, 0.016366764903068542, 0.006144277285784483, -0.019642813131213188, -0.009780962020158768, 0.03979793190956116, 0.01772841438651085, 0.03311101719737053, 0.024118732661008835, 0.00978770200163126, 0.0137715395539999, 0.025089412927627563, 0.01574660651385784, 0.00617798138409853, 0.011452690698206425, 0.0017981196288019419, -0.005129780620336533, 0.008864207193255424, -0.05212019011378288, 0.012585151940584183, 0.005979126784950495, -0.05470867455005646, 0.002942377468571067, -0.0018200273625552654, -0.007886785082519054, 0.04435474053025246, 0.0030333788599818945, -0.01300982479006052, -0.002032363787293434, -0.006157759111374617, 0.0067475829273462296, 0.005332006141543388, 0.01170884259045124, -0.0028513760771602392, -0.00016178020450752228, 0.008533906191587448, -0.010482009500265121, 0.034971486777067184, -0.017391372472047806, -0.02666676975786686, 0.02279752679169178, -0.01306375116109848, 0.02312108688056469, -0.017458779737353325, -0.016204984858632088, 0.02887776680290699, 0.012524484656751156, 0.02391650713980198, 0.002495796652510762, -0.01660943403840065, 0.01697343960404396, 0.014937705360352993, -0.00819686334580183, 0.004155728965997696, -0.039393480867147446, -0.015517418272793293, 0.01454673707485199, -0.00775196822360158, -0.02124713361263275, 0.033272795379161835, 0.004182692617177963, 0.0018638428300619125, -0.008055306039750576, 0.019845038652420044, 0.010050595737993717, -0.0058240871876478195, 0.015733124688267708, -0.024914151057600975, -0.02399739809334278, 0.014708517119288445, -0.002082920167595148, -0.028284572064876556, -0.01400746963918209, -0.0028985620010644197], "b607bba1-a2e4-46bb-b3c9-860812bc7f98": [-0.011060117743909359, -0.02368934266269207, -0.017274057492613792, 0.010567168705165386, -0.0029438103083521128, 0.028882667422294617, -0.005766119342297316, -0.01623261533677578, -0.014996769838035107, -0.0262721199542284, 0.013406834565103054, 0.00756781455129385, 0.01745457388460636, -0.001221959013491869, 0.0036485197488218546, -0.00658191554248333, 0.03254854679107666, -0.005061409901827574, 0.021203765645623207, -0.02382820099592209, -0.008067706599831581, -0.0059813507832586765, -0.0016003497876226902, 0.023939289152622223, 0.0123723354190588, 0.02600828744471073, 0.020079009234905243, -0.01399698480963707, 0.006328498013317585, -0.013413777574896812, 0.003624219447374344, 0.011025402694940567, 0.006529843434691429, 0.011289235204458237, -0.03096555359661579, -0.016288157552480698, 0.009865930303931236, -0.01684359461069107, 0.018010009080171585, 0.005627260077744722, 0.018010009080171585, -0.001825995626859367, -0.016996338963508606, 0.010483852587640285, -0.027077501639723778, 0.01623261533677578, 0.01974574662744999, -0.024008717387914658, -0.01375398226082325, 0.004846178460866213, 0.02860495075583458, 0.02579999901354313, -0.029243702068924904, -0.0031173841562122107, -0.004932965151965618, -0.0030739905778318644, 0.019954035058617592, 0.015316145494580269, 0.0065367864444851875, 0.022953389212489128, -0.004696905147284269, 0.005623788572847843, 0.001083967974409461, 0.0027199003379791975, -0.035297952592372894, 0.007491441909223795, -0.009775672107934952, -0.01426081731915474, -0.005724461283534765, -0.017301829531788826, 0.026910871267318726, 0.0097131859511137, 0.0013703645672649145, 0.005550887901335955, 0.01491345465183258, -0.03177093341946602, -0.015010655857622623, -0.012358449399471283, -0.0032232641242444515, 0.02407814748585224, -0.009372981265187263, -0.026341548189520836, -0.00972012896090746, 0.016968566924333572, 0.020551128312945366, -0.006109795067459345, 0.004773277323693037, 0.020953821018338203, -0.03821399062871933, -0.01925974152982235, -0.007609472144395113, 0.017482345923781395, 0.00800522044301033, 0.011455865576863289, 0.00491213658824563, 0.01000478956848383, -0.022175779566168785, 0.017621204257011414, 0.006245182827115059, -0.020079009234905243, -0.019412485882639885, -0.007192895282059908, -0.03671431541442871, -0.005755704827606678, -0.02368934266269207, 0.0035079249646514654, -0.0010605354327708483, -0.010858772322535515, 0.017482345923781395, -0.017787834629416466, 0.004495559725910425, 0.030826693400740623, -0.015677178278565407, -0.0494060255587101, -0.013323519378900528, -0.015177286230027676, 0.03352055698633194, -0.020828846842050552, -0.01248342264443636, -0.02123153768479824, 0.0006669570575468242, 0.03140990063548088, 0.003171192016452551, -0.020079009234905243, 0.0038672226946800947, 0.012886113487184048, -0.011310064233839512, -0.01803778111934662, 0.010456081479787827, 0.0018016953254118562, 0.020828846842050552, 0.017010224983096123, 0.007651129737496376, 0.004381000995635986, -0.01698245294392109, 0.017496231943368912, -0.026049945503473282, 0.006113266572356224, -0.027369104325771332, -0.02496684528887272, 0.020689988508820534, 0.006200053263455629, -0.011198977008461952, -0.028938211500644684, -0.031743161380290985, 0.029493646696209908, 0.029937995597720146, 0.005037109367549419, -0.01426081731915474, 0.010824057273566723, 0.02535565011203289, -0.023133905604481697, 0.0002623132895678282, -0.008768945001065731, 0.009789558127522469, 0.001427643932402134, 0.021703658625483513, 0.0022443083580583334, -0.009157749824225903, -0.018829278647899628, 0.014045585878193378, 0.023175563663244247, 0.009872873313724995, -0.011858557350933552, -0.008026049472391605, 0.031215498223900795, -0.0056654466316103935, -0.009615984745323658, -0.02570279687643051, -0.013955327682197094, 0.009928417392075062, 0.02523067593574524, -0.026688696816563606, 0.011511409655213356, 0.0008639632142148912, 0.016635306179523468, 0.03490914776921272, 0.026730353012681007, -0.01570495031774044, -0.008102421648800373, -0.02509181760251522, -0.021023249253630638, 0.024675240740180016, -0.00021143449703231454, -0.005162082612514496, -0.00862314272671938, 0.0015838602557778358, -0.008532884530723095, -0.008282938040792942, 0.004703848157078028, 0.012643110007047653, 0.011303121224045753, -0.0329928919672966, -0.008789773099124432, -0.636307418346405, -0.02141205407679081, -0.025300106033682823, -0.012490365654230118, 0.0032510359305888414, 0.011844671331346035, 0.009602098725736141, 0.00246301107108593, 0.0046830191276967525, -0.004745505750179291, -0.020592786371707916, -0.006550672464072704, 0.004332400392740965, -0.003478417405858636, -0.02232852391898632, 0.003327408339828253, 0.023578254505991936, -0.017843378707766533, 0.010692141950130463, -0.017218513414263725, -0.03165984898805618, 0.002292908960953355, 0.003068783553317189, -0.0007702333969064057, -0.01360123697668314, -0.005700161214917898, -0.005790419410914183, 0.008060763590037823, 0.025911085307598114, 0.023536596447229385, -0.025064045563340187, 0.015718836337327957, 0.032354142516851425, 0.02470301277935505, 0.04632335528731346, -0.004554574377834797, -0.01992626301944256, 0.030326802283525467, 0.004502502270042896, 0.009289666078984737, -0.010275564156472683, -0.017885036766529083, 0.01991237699985504, 0.002388374414294958, 0.007498384919017553, -0.006036894395947456, 0.00822739489376545, -0.020287297666072845, 0.017704520374536514, -0.0002957262331619859, -0.007303982507437468, 0.00012193553993711248, -0.0011733584105968475, -0.0058563775382936, -0.006797146983444691, -0.008109364658594131, 0.032354142516851425, -0.007644186727702618, 0.027521850541234016, -0.012608395889401436, 0.0056480891071259975, 0.022175779566168785, -0.004807992372661829, -0.0014588871272280812, -0.003655462758615613, 0.015524433925747871, -0.028105057775974274, 0.00463789002969861, 0.021564800292253494, -0.02456415444612503, 0.012872227467596531, 0.007241495884954929, 0.009400753304362297, -0.01688525266945362, 0.009532668627798557, 0.004085925407707691, 0.03157653287053108, -0.024383636191487312, -0.006776318419724703, 0.02509181760251522, 0.01601044088602066, -0.012462593615055084, -0.02531399205327034, -0.01134477835148573, 0.033326156437397, -0.01680193655192852, 0.0074011837132275105, 0.0329928919672966, -0.006345855537801981, -0.0012696918565779924, 0.004884364549070597, 0.031909793615341187, -0.005849434528499842, 0.015802152454853058, 0.025647252798080444, -0.004148412030190229, -0.01559386309236288, 0.0071442946791648865, 0.006981135345995426, -0.008595370687544346, -0.00779693154618144, -0.012309848330914974, -0.0016949474811553955, -0.01292082853615284, -0.0023953174240887165, -0.008421797305345535, -0.030076855793595314, 0.002365809865295887, 0.04537911340594292, -0.02259235642850399, -0.0034992462024092674, -0.01719074137508869, -0.0164964459836483, -0.006304197944700718, 0.026216575875878334, -0.01566329225897789, 0.00927578005939722, -0.012316791340708733, 0.02084273286163807, -0.0023640741128474474, 0.02456415444612503, -0.02171754464507103, 0.017690634354948997, -0.0064951288513839245, 0.01491345465183258, 0.021773088723421097, 0.002240836853161454, -0.01430247537791729, -0.02048170007765293, -0.01828772760927677, 0.010379708372056484, -0.012969428673386574, 0.004335871897637844, 0.012476479634642601, 0.012407049536705017, -0.017232399433851242, 0.008019106462597847, 0.014427447691559792, 0.0261888038367033, -0.02754962258040905, -0.02378654293715954, -0.00949795451015234, 0.020509472116827965, -0.00017682823818176985, -0.009928417392075062, -0.02966027893126011, -0.019273625686764717, 0.0008479076786898077, -0.04760085791349411, 0.0020342841744422913, -0.014607965014874935, -0.012573680840432644, -0.008102421648800373, 0.013878955505788326, 0.011580838821828365, -0.004058153834193945, -0.02846609055995941, -0.008164907805621624, 0.0018693889724090695, -0.026216575875878334, 0.012351506389677525, 0.006026479881256819, -0.01702411100268364, 0.009393810294568539, 0.012781969271600246, -0.01578826643526554, -0.011872442439198494, 0.03746415302157402, -0.009185521863400936, -0.02943810448050499, 0.020606672391295433, 0.00927578005939722, 0.005169025622308254, 0.048767272382974625, -0.010747685097157955, 0.00031547024264000356, -0.020301183685660362, -0.012184875085949898, -0.020676102489233017, -0.002242572605609894, -0.018579332157969475, 0.04068567976355553, -0.002919510006904602, 0.00436364347115159, 0.026813669130206108, -0.009303552098572254, 0.02035672590136528, 0.008713400922715664, 0.005884149111807346, 0.020828846842050552, 0.004134526010602713, 0.007720559369772673, -0.008755058981478214, -0.006557615473866463, -0.002676506759598851, 0.011421151459217072, 0.008748115971684456, 0.03293735161423683, -0.0038672226946800947, 0.018857048824429512, 0.021509256213903427, 0.014649622142314911, 0.021439826115965843, -0.013434606604278088, -0.004151883535087109, -0.033853817731142044, 0.003537432523444295, -0.006377098616212606, 0.032048653811216354, -0.024314207956194878, 0.004124111495912075, -0.024716898798942566, -0.00507876742631197, 0.003929709084331989, 0.013635952025651932, 0.016899138689041138, 0.004085925407707691, 0.01193492952734232, -0.018315499648451805, 0.019190311431884766, 0.013295747339725494, -0.007789989002048969, 0.00265394221059978, -0.018412699922919273, -0.006588858552277088, 0.005894563626497984, 0.014399676583707333, 0.030465660616755486, 0.014121958054602146, -0.02035672590136528, 0.029049299657344818, -0.0011195505503565073, -0.007276210468262434, 0.006064665969461203, 0.01476070936769247, 0.023008933290839195, 0.00647082831710577, -0.02588331326842308, 0.04315737262368202, -0.032881807535886765, -0.00392623757943511, 0.010594939813017845, 0.03460365906357765, -0.02988245338201523, -0.0178989227861166, -0.011608610861003399, -0.005877206567674875, -0.006106323562562466, 0.025202905759215355, 0.01710742712020874, -0.007276210468262434, -0.010872658342123032, -0.012795855291187763, -0.02039838396012783, 0.002112392336130142, -0.02663315273821354, 0.0018676533363759518, 0.008567598648369312, 0.018329385668039322, 0.018829278647899628, 0.006845747586339712, 0.0007190291653387249, 0.02517513372004032, 0.004235198721289635, 0.05412723124027252, 0.00883837416768074, 0.03346501290798187, 0.0288271252065897, -0.02163422852754593, -0.04201872646808624, -0.020412269979715347, -0.014510763809084892, 0.016440903767943382, -0.01706576906144619, 0.02285618893802166, 0.0029681106097996235, 0.006342384032905102, 0.0035339610185474157, 0.017579546198248863, 0.014128901064395905, -0.01992626301944256, -0.03768632560968399, 0.0218980610370636, -0.00662357360124588, 0.007005435414612293, -0.01509397104382515, -0.023800428956747055, 0.015816038474440575, -0.026910871267318726, 0.03252077475190163, -0.023008933290839195, 0.0008826223784126341, 0.020717760547995567, -0.01925974152982235, -0.0009728807490319014, -0.002865702146664262, 0.010247793048620224, -0.017579546198248863, 0.043101828545331955, -0.016135413199663162, 0.001862446079030633, 0.012518136762082577, -0.024189233779907227, 0.00817879382520914, 0.021134337410330772, -0.013906726613640785, -0.010685198940336704, -0.00785247515887022, 0.004394886549562216, -0.010935144498944283, -0.007935790345072746, -0.027882883325219154, -0.005537001881748438, -0.002150578424334526, -0.003884579986333847, 0.00851205550134182, -0.011976586654782295, 0.016427017748355865, 0.02299504727125168, -0.002975053619593382, -0.01992626301944256, -0.015468890778720379, -0.014524649828672409, 0.007303982507437468, 0.09181355684995651, 0.031159956008195877, -0.02860495075583458, 0.0016741185681894422, 0.005849434528499842, 0.019468029960989952, -0.02693864144384861, -0.02667481079697609, 0.011330893263220787, 0.0005927542806603014, 0.0014797160401940346, -0.00701932143419981, 0.01842658594250679, 0.0074011837132275105, 0.023758770897984505, -0.010303336195647717, -0.010317222215235233, 0.0061028520576655865, -0.005151668097823858, 0.004589289426803589, 0.0077761029824614525, 0.01033110823482275, 0.020245639607310295, 0.007331754080951214, -0.010928201489150524, -0.013337405398488045, 0.018565446138381958, 0.00811630766838789, 0.018940364941954613, -0.018801506608724594, -0.0017426802078261971, 0.030076855793595314, 0.02816060185432434, 0.012712540104985237, -0.008352368138730526, -0.0030739905778318644, 0.004873950034379959, 0.020342839881777763, -0.008026049472391605, 0.004946851171553135, 0.019190311431884766, 0.03165984898805618, 0.0030496902763843536, -0.013302690349519253, 0.016218729317188263, 0.0031416844576597214, -0.000823607319034636, -0.013483206741511822, -0.034020449966192245, -0.012448707595467567, 0.03329838439822197, -0.014288589358329773, -0.0032006995752453804, -0.005557830911129713, 0.027008071541786194, -0.0005163818132132292, 0.012337620370090008, 0.003290957771241665, 0.0006882198504172266, 0.01280974131077528, -0.019579116255044937, 0.010101990774273872, 0.020162323489785194, 0.00039357843343168497, -0.027091387659311295, -0.037269748747348785, -0.0207455325871706, -0.012969428673386574, -0.009150806814432144, 0.025550052523612976, -0.015816038474440575, -0.011198977008461952, -0.021398168057203293, -0.001103061018511653, 0.01662142015993595, 0.007998277433216572, 0.0288271252065897, -0.014170559123158455, 0.00023671117378398776, -0.013497092761099339, -0.0043671149760484695, -0.04232421889901161, 0.020287297666072845, -0.012184875085949898, -0.015802152454853058, -0.0025463264901190996, 0.006686059758067131, 0.019634660333395004, -0.0411578007042408, 0.005707104224711657, 0.0004135394119657576, 0.02899375557899475, 0.018148869276046753, -0.012552851811051369, -0.005096124485135078, 0.0006808429607190192, 0.010101990774273872, 0.0063562700524926186, -0.0061618671752512455, -0.007991334423422813, 0.007158180233091116, -0.045601289719343185, 0.004745505750179291, 0.00530788442119956, 0.031298812478780746, -0.01641313172876835, 0.013101344928145409, 0.019620774313807487, -0.015510547906160355, -0.018759848549962044, 0.019954035058617592, -0.011921043507754803, 0.010511624626815319, 0.00408939691260457, 0.023175563663244247, 0.0007980052032507956, 0.011435037478804588, 0.003683234564960003, 0.009261894039809704, -0.008255166001617908, -0.013795639388263226, -0.04335177317261696, 0.005064881406724453, 0.007408126723021269, -0.01487179659307003, -0.0038602796848863363, -0.008151021786034107, -0.004040796309709549, 0.017787834629416466, 0.008414854295551777, 0.027216359972953796, 0.015635522082448006, 0.005467572249472141, -0.008394025266170502, -0.04043573513627052, 0.00574529031291604, -0.0165797621011734, -0.00010826661309693009, -0.011990472674369812, 0.007158180233091116, -0.025522280484437943, -0.027119159698486328, -0.010539396665990353, -0.030076855793595314, -0.0043254573829472065, -0.025105703622102737, -0.012136274948716164, 0.007817761041224003, -0.007977448403835297, -0.015552205964922905, 0.011268406175076962, -0.02821614407002926, -0.03496469184756279, -0.016163185238838196, -0.0071859522722661495, -0.034992463886737823, -0.005894563626497984, -0.019759632647037506, 0.025994401425123215, -0.019801290705800056, 0.04790634661912918, -0.017690634354948997, 0.01280974131077528, 0.006064665969461203, -0.015218944288790226, 0.023314421996474266, -0.007553928531706333, -0.027438534423708916, -0.038325078785419464, -0.012059902772307396, 0.030437888577580452, 0.0052905273623764515, 0.0388527438044548, -0.005158611107617617, -0.011525295674800873, 0.023967059329152107, -0.003075726330280304, -0.020912162959575653, -0.01828772760927677, -0.037130892276763916, -0.04201872646808624, 0.007081808056682348, 0.0016550255240872502, 0.00956738367676735, -0.027133045718073845, 0.0004560649686027318, 0.06420839577913284, 0.004776748828589916, 0.00497809424996376, -0.034853603690862656, 0.02663315273821354, -0.02145371213555336, -0.000613149197306484, -0.0026487349532544613, 0.022564584389328957, -0.017301829531788826, 0.027577392756938934, -0.012115445919334888, 0.002754614921286702, -0.0016689114272594452, 0.001876331982202828, 0.0026608852203935385, -0.013504035770893097, 0.000924280087929219, -0.01763509027659893, 0.003839450888335705, -0.004842706955969334, -0.02175920270383358, 0.01785726472735405, -0.020773302763700485, -0.024203119799494743, -0.01667696423828602, -0.009317437186837196, -0.02513347566127777, -0.009268837049603462, 0.0041900696232914925, 0.012268191203474998, 0.02268955670297146, -0.0046413615345954895, -0.026730353012681007, 0.011580838821828365, -0.025036273524165154, 0.05396059900522232, 0.03132658451795578, 0.028799353167414665, 0.009185521863400936, -0.016024326905608177, 0.0009529197704978287, 0.009046662598848343, 0.00972012896090746, -0.02675812505185604, 0.01399698480963707, 0.018440471962094307, -0.023439396172761917, -0.007206781301647425, -0.034103766083717346, 0.0019179896917194128, -0.03177093341946602, -0.03654768317937851, 0.0260638315230608, 0.007123465649783611, 0.0025775698013603687, -0.006443056743592024, -0.009227178990840912, -0.032131969928741455, -0.0012393164215609431, 0.007873304188251495, 0.02509181760251522, -0.014607965014874935, -0.024008717387914658, -0.03449257090687752, -0.004995451774448156, 0.005950107239186764, 0.01732960157096386, 0.026813669130206108, 0.0038359793834388256, -0.024383636191487312, 0.006543729454278946, -0.01702411100268364, -0.02052335813641548, -0.014399676583707333, 0.017010224983096123, -0.009602098725736141, 0.009379924274981022, 0.008088535629212856, -0.0006682588718831539, -0.007206781301647425, -0.002506404649466276, -0.019093109294772148, 0.02338385209441185, -0.0009763521957211196, -0.0002772840380202979, 0.012164046987891197, 0.027910655364394188, 0.010983745567500591, 0.020148437470197678, -0.0007407258963212371, 0.003445438342168927, -0.010962916538119316, 0.0045233312994241714, 0.007116522639989853, 0.011698869056999683, -0.017607318237423897, -0.018357157707214355, -0.013143002055585384, -0.009227178990840912, 0.007880247198045254, 0.012316791340708733, -0.0024959901347756386, -0.036964260041713715, -0.02220355160534382, 0.009039719589054585, -0.024855757132172585, 0.016510332003235817, -0.0055890739895403385, 0.027632936835289, -0.0026365849189460278, 0.026091601699590683, -0.011955758556723595, 0.031743161380290985, -0.010560225695371628, 0.011976586654782295, -0.027716252952814102, 0.015371689572930336, 0.014968997798860073, -0.03271517530083656, 0.012927771545946598, -0.015080085024237633, -0.03165984898805618, 0.016968566924333572, 0.009116091765463352, 0.00888003222644329, 0.008539827540516853, 0.0235088262706995, 0.02062055841088295, -0.011789127252995968, 0.00558213097974658, 0.0023796958848834038, -0.028632720932364464, 0.019204197451472282, 0.022606242448091507, -0.0003705799172166735, 0.009831216186285019, -0.021023249253630638, 0.0006595801678486168, -0.001912782434374094, 0.018857048824429512, 0.008630085736513138, -0.05284972861409187, 0.015982668846845627, -0.02421700581908226, 0.021384283900260925, 0.01123369112610817, -0.010296393185853958, -0.014330246485769749, -0.028799353167414665, -0.01820441149175167, 0.0275079645216465, -0.001862446079030633, -0.01641313172876835, 0.015760494396090508, 0.021287081763148308, -0.009602098725736141, -0.0012748989975079894, -0.018759848549962044, -0.003349972888827324, 0.004512916784733534, -0.005689746700227261, -0.04493476450443268, -6.601226050406694e-05, -0.014899568632245064, 0.03215973824262619, 0.01026167906820774, -0.01864876039326191, 0.0008379271603189409, -0.018454357981681824, -0.031965337693691254, -0.0103727662935853, 0.0063597410917282104, 0.025119589641690254, 0.020370611920952797, 0.0221063494682312, 0.023064477369189262, 0.015343917533755302, -0.008317653089761734, -0.0068110330030322075, -0.0037596069741994143, 0.002169671468436718, -0.017162969335913658, 0.0034558528568595648, 0.004873950034379959, 0.017607318237423897, -0.023592140525579453, -0.006668702699244022, 0.015191172249615192, -0.01430247537791729, -0.0019301398424431682, 0.0025272334460169077, -0.0029386032838374376, 0.015232830308377743, -0.009289666078984737, -0.01294165663421154, 0.006779789924621582, 0.014732938259840012, -0.013684552162885666, -0.018620990216732025, -0.029465876519680023, 0.0019422899931669235, -0.009553497657179832, -0.03971366956830025, -0.013191603124141693, -0.005127368029206991, -0.01050468161702156, 0.013295747339725494, -0.02846609055995941, -0.012226533144712448, -0.009025833569467068, -0.029799137264490128, 0.031298812478780746, -0.010907372459769249, 0.0065194289200007915, 0.03193756565451622, 0.011664154008030891, -0.018218297511339188, -0.012025187723338604, 0.017954466864466667, 0.015413346700370312, -0.019065337255597115, 0.013552636839449406, -0.028132829815149307, 0.01204601675271988, -0.006377098616212606, 0.005394671577960253, -0.029382560402154922, 0.0067693754099309444, -0.016968566924333572, 0.013899783603847027, -0.02535565011203289, 0.02496684528887272, -0.00912303477525711, -0.010101990774273872, -0.013594293966889381, -0.003957481123507023, 0.0003321767144370824, 0.0024317679926753044, -0.014385790564119816, -0.008220451883971691, -0.011157318949699402, 0.008886974304914474, 0.007106108125299215, 0.007449784316122532, -0.009796501137316227, -0.009289666078984737, 0.01816275529563427, -0.029771365225315094, -0.00447473069652915, 0.20428933203220367, -0.023578254505991936, 0.007720559369772673, 0.03238191455602646, -0.003028861479833722, 0.013740096241235733, 0.0330762080848217, 0.006314611993730068, -0.02185640297830105, -0.018482130020856857, -0.009331323206424713, 0.0035443755332380533, -0.011830785311758518, 0.0012748989975079894, 0.0036797630600631237, 0.008706457912921906, -0.03790850192308426, -0.0025202904362231493, -0.010122819803655148, -0.048461783677339554, -0.0011933193309232593, -0.019287511706352234, -0.009268837049603462, -0.019162539392709732, 0.0029681106097996235, 0.006411813199520111, -0.009206349961459637, -0.01960688829421997, 0.03807513415813446, 0.006061194464564323, -0.026688696816563606, -0.006321555003523827, -0.004946851171553135, -0.01662142015993595, -0.004988508764654398, 0.016440903767943382, 0.019954035058617592, -0.0011525294976308942, 0.012837512418627739, -0.009650698862969875, 0.018065553158521652, -0.0059223356656730175, 0.005707104224711657, 0.008303767070174217, 0.00314689171500504, 0.022758986800909042, -0.0007658940739929676, -0.01280974131077528, -0.016204843297600746, 0.012115445919334888, -0.036214422434568405, 0.006384041626006365, 0.0523776076734066, 0.024328093975782394, 0.006016065366566181, -0.0014580192510038614, -0.009595155715942383, 0.007078336551785469, -0.013608179986476898, 0.017218513414263725, -0.018051667138934135, 0.03415931016206741, -0.00165589340031147, 0.02149537019431591, -0.02378654293715954, -0.010719913057982922, -0.007651129737496376, 0.004592760931700468, 0.013983099721372128, -0.026508178561925888, 0.005568244960159063, -0.011636382900178432, -0.018523788079619408, 0.015316145494580269, -0.014010870829224586, -0.019593002274632454, 0.00890780333429575, -0.02352271042764187, 0.012934713624417782, 1.2116259313188493e-05, 0.02720247395336628, -0.008435683324933052, 0.012302905321121216, -0.012525079771876335, 0.0014649622607976198, -0.024355866014957428, -0.005116953514516354, -0.02175920270383358, -0.027632936835289, 0.013115230947732925, -0.016746392473578453, -0.03602001816034317, -0.0012141482438892126, -0.0019544402603060007, 0.002155785681679845, 0.0005016280920244753, 0.018620990216732025, 0.029465876519680023, -0.008095478639006615, -0.00789413321763277, -0.0261054877191782, -0.0026053416077047586, 0.020828846842050552, 0.001038838759995997, -0.030854465439915657, 0.006061194464564323, 0.008032992482185364, 0.01248342264443636, 0.015427232719957829, 0.0032510359305888414, 0.030937781557440758, -0.01430247537791729, 0.004863535985350609, -0.01099068857729435, 0.013011086732149124, 0.02746630646288395, -0.006741603370755911, -0.028632720932364464, 0.0005233247647993267, 0.011684983037412167, 0.008241280913352966, -0.011879385448992252, -0.00312085566110909, 0.0013373855035752058, 0.006151452660560608, -0.003181606298312545, -0.009095263667404652, 0.025688910856842995, 0.0026105488650500774, -0.01635758765041828, 0.010900430381298065, -0.039630353450775146, 0.0014797160401940346, 0.017357371747493744, -0.022259093821048737, 0.01755177602171898, 0.012865284457802773, -0.03163207694888115, 0.03746415302157402, -0.021245423704385757, 0.00043675489723682404, 0.0025359122082591057, 0.0102894501760602, 0.013129116967320442, 0.013087458908557892, -0.0014102865243330598, 0.013823411427438259, -0.010692141950130463, 0.010907372459769249, 0.007029735948890448, -0.027299676090478897, 0.002091563306748867, -0.009074434638023376, -0.005780004896223545, 0.013434606604278088, -0.009074434638023376, -0.00978261511772871, -0.036742087453603745, -0.003943595103919506, 0.03071560710668564, -0.030104627832770348, -0.0002690392720978707, 0.02754962258040905, -0.00796356238424778, -0.011129546910524368, -0.017787834629416466, -0.17862819135189056, 0.027119159698486328, 0.01982906274497509, -0.022134121507406235, 0.021384283900260925, 0.02250904031097889, 0.021828630939126015, -0.0036762915551662445, 0.005353013519197702, -0.019717974588274956, 0.012101559899747372, 0.01331657636910677, -0.03221528232097626, -0.02553616650402546, -0.010254736058413982, 0.018565446138381958, 0.004318514373153448, 0.016399245709180832, 0.04260193556547165, 0.02378654293715954, 0.009220235981047153, -0.027910655364394188, 0.010782400146126747, 0.009657641872763634, -0.01061576884239912, 0.00574529031291604, -0.012323734350502491, 0.021884175017476082, 0.010338051244616508, -0.01684359461069107, -0.01426081731915474, 0.010969859547913074, -0.007873304188251495, -0.030687835067510605, 0.02460581064224243, 0.006578444037586451, 0.02513347566127777, -0.005925807170569897, -0.00912303477525711, 0.015982668846845627, 0.014816253446042538, 0.014344132505357265, 0.027646822854876518, -0.0026209631469100714, -0.007366469129920006, 0.03179870545864105, 0.0045059737749397755, -0.015510547906160355, 0.006227825302630663, -0.021911947056651115, 0.026785897091031075, -0.005950107239186764, 0.014510763809084892, -0.002745936391875148, 0.012386221438646317, 0.013024972751736641, 0.026397092267870903, 0.014316360466182232, -5.337392212823033e-05, -0.013733153231441975, 0.0008722079801373184, -0.013038857840001583, 0.014691280201077461, -0.012462593615055084, -0.0073248110711574554, -0.004853121470659971, -0.017954466864466667, 0.019162539392709732, -0.020190095528960228, 0.022522926330566406, -0.01156000979244709, 0.001313085202127695, 0.003349972888827324, -0.0023675456177443266, -0.011483637616038322, 0.003143420210108161, -0.014469105750322342, 0.03329838439822197, 0.012226533144712448, -0.013212432153522968, -0.026522064581513405, 0.03421485424041748, -0.01732960157096386, -0.00883837416768074, 0.014705166220664978, 0.005300941411405802, -0.0194263719022274, -0.016607534140348434, -0.01653810404241085, -0.0018589745741337538, 0.0288271252065897, -0.022314637899398804, -0.002966374857351184, -0.009116091765463352, 0.012254305183887482, 0.028105057775974274, 0.02246738225221634, -0.0301879420876503, 0.010907372459769249, -0.01887093484401703, -0.0051967971958220005, -0.0028535521123558283, -0.014621851034462452, 0.019856834784150124, 0.027369104325771332, 0.03146544471383095, -0.004988508764654398, 0.027396876364946365, 0.01917642541229725, 0.007574757561087608, -0.005596016999334097, 0.01745457388460636, 0.01566329225897789, 0.0109490305185318, 0.01850990206003189, 0.020037351176142693, -0.002063791500404477, -0.01720462739467621, 0.017357371747493744, -0.01000478956848383, 0.05948718637228012, -0.010081161744892597, -0.015677178278565407, -0.013684552162885666, -0.009227178990840912, -0.016246501356363297, -0.11375327408313751, 0.0002594927209429443, 0.013802582398056984, 0.0029524890705943108, -0.019731860607862473, 0.01803778111934662, -0.006193110719323158, 0.01574660837650299, -0.017732292413711548, 0.016968566924333572, -0.011962701566517353, -0.0221063494682312, 0.009491011500358582, -0.008824488148093224, -0.0037318351678550243, -0.03165984898805618, 0.007595586124807596, -0.012976371683180332, 0.00713040865957737, 0.03799181804060936, 0.01917642541229725, -0.007505327928811312, 0.02803562767803669, -0.011240634135901928, 0.01120592001825571, 0.0037491924595087767, -0.014955111779272556, 0.01627427339553833, 0.03488137573003769, 0.016399245709180832, -0.003641576739028096, -0.014996769838035107, 0.02360602654516697, -0.012059902772307396, 0.004026910290122032, -0.018093325197696686, -0.034631431102752686, -0.012427878566086292, 0.02527233399450779, -0.02825780212879181, 0.009678470902144909, -0.016510332003235817, 0.02685532718896866, -0.027216359972953796, 0.0020117193926125765, -0.0003655896580312401, -0.017232399433851242, 0.008269052021205425, 0.006147981155663729, -0.019329169765114784, -0.02838277630507946, 0.018620990216732025, -0.041963182389736176, -0.00485659297555685, 0.01960688829421997, -0.0030826693400740623, 0.02545285038650036, 0.002209593541920185, 0.008859203197062016, -0.005293998401612043, -0.015566091984510422, 0.0039158230647444725, 0.001893689390271902, 0.02439752221107483, 0.009164692834019661, -0.013080515898764133, -0.017426801845431328, -0.004443487152457237, 0.021078793331980705, 0.002752879401668906, -0.028091171756386757, 0.015232830308377743, -0.021439826115965843, 0.007581700570881367, -0.0234255101531744, 0.005998707842081785, -0.0036867058370262384, 0.003936652094125748, -0.0001343026669928804, -0.00974095705896616, -0.005401614122092724, -0.016079869121313095, 0.0102894501760602, -0.015954896807670593, 0.01076851412653923, 0.031076639890670776, 0.014968997798860073, -0.02013455145061016, 0.012677825056016445, -0.028271688148379326, 0.004106754437088966, 0.018718190491199493, -0.013177717104554176, -0.014170559123158455, 0.007428955286741257, 0.031909793615341187, 0.02106490731239319, 0.022189665585756302, -0.008199622854590416, 0.0025879843160510063, -0.017621204257011414, 0.007352583110332489, -0.07137351483106613, 0.011809956282377243, 0.0034558528568595648, 0.01254590880125761, 0.009491011500358582, -0.03132658451795578, 0.021662000566720963, -0.01149752363562584, -0.002206122037023306, 0.007491441909223795, -0.023175563663244247, 0.01149058062583208, -0.005832077004015446, -0.008532884530723095, -0.010567168705165386, -0.0219813771545887, -0.0016038211761042476, -0.007692787330597639, 0.003839450888335705, -0.01441356260329485, 0.005019752308726311, 0.002072470262646675, 0.02491130121052265, -0.01944025792181492, -0.01785726472735405, 0.007366469129920006, 0.022953389212489128, 0.019148653373122215, -0.004832292441278696, -0.027188587933778763, 0.0005697557353414595, -0.03149321675300598, -0.006071608979254961, 0.002556741004809737, 0.002279022941365838, 0.02048170007765293, -0.011740527115762234, -0.007727502379566431, 0.0007533099851571023, 0.059820447117090225, -0.021564800292253494, -0.007005435414612293, 0.015871580690145493, -0.02685532718896866, 0.01559386309236288, 0.02096770517528057, -0.0163714736700058, -0.0068526905961334705, 0.019204197451472282, -0.01188632845878601, 0.008755058981478214, 0.03427039459347725, -0.007470613345503807, -0.02206469140946865, -0.00498156575486064, -0.02395317330956459, 0.03207642585039139, -0.006564558483660221, 0.005537001881748438, -0.0330762080848217, 0.019551344215869904, -0.017162969335913658, -0.008394025266170502, 0.0001516600459581241, 0.019148653373122215, 0.0035582613199949265, -0.017079655081033707, -0.019842948764562607, -0.015274487435817719, 0.008026049472391605, 0.0024959901347756386, -0.015538319945335388, -0.0017626411281526089, 0.009005004540085793, 0.015871580690145493, 0.017565660178661346, -0.013386005535721779, 0.004818406421691179, -0.022259093821048737, 0.01978740468621254, -0.005932749714702368, -0.014607965014874935, -0.017343487590551376, 0.009379924274981022, 0.0359644778072834, 0.005783476401120424, 0.008886974304914474, 0.012420935556292534, -0.008942518383264542, 0.011830785311758518, 0.017954466864466667, -0.007817761041224003, -0.0017209835350513458, -0.01498288381844759, -0.00257236254401505, 0.016954680904746056, -0.014691280201077461, -0.0011004573898389935, 0.023217221722006798, 0.031826477497816086, -0.0032180568668991327, 0.01719074137508869, 0.002428296487778425, -0.01751011796295643, -0.008275995030999184, -0.015080085024237633, -0.013101344928145409, -0.03763078525662422, 0.008137136697769165, 0.019551344215869904, 0.0010240849805995822, -0.0071442946791648865, 0.037269748747348785, 0.018843162804841995, -0.019537458196282387, 0.002228686586022377, 0.003514867974445224, -0.03751969709992409, -0.006939477752894163, 0.02478632889688015, -0.003770021256059408, 0.04212981462478638, 0.013261032290756702, 0.005703632719814777, 0.02316167764365673, 0.02092604897916317, 0.004873950034379959, 0.007935790345072746, -0.014830139465630054, 0.011060117743909359, -0.009372981265187263, 0.007220666855573654, -0.049322709441185, -0.0017348694382235408, 0.0005016280920244753, -0.037797413766384125, -0.011733584105968475, 0.00756781455129385, -0.0261054877191782, 0.04873950034379959, 0.005141253583133221, -0.0246613547205925, -0.009532668627798557, -0.011726641096174717, 0.030743379145860672, 0.00751227093860507, 0.02171754464507103, 0.0010735534597188234, -0.005432857666164637, 0.013663724064826965, -0.011018459685146809, 0.01491345465183258, -0.014649622142314911, -0.0027199003379791975, -0.009886759333312511, -0.014732938259840012, 0.029104841873049736, -0.030326802283525467, -0.013448492623865604, 0.036436595022678375, 0.0022668729070574045, 0.025258447974920273, -0.01331657636910677, -0.025591710582375526, 0.012906942516565323, 0.01803778111934662, -0.011851614341139793, 0.007422012742608786, -0.03438148275017738, -0.0019926263485103846, 0.014198331162333488, -0.02250904031097889, -0.013483206741511822, 0.01680193655192852, 0.017162969335913658, -0.0001802997139748186, -0.023800428956747055, 0.016926908865571022, 0.0005276641459204257, -0.02720247395336628, 0.017010224983096123, -0.015080085024237633, -0.01987072080373764, 0.015732722356915474, -0.006654816679656506, -0.020953821018338203, -0.001208073110319674, -0.00883837416768074], "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6": [-0.011655443347990513, -0.01993074081838131, -0.02293381839990616, 0.013641783967614174, -0.004009714815765619, 0.02533089369535446, -0.009440168738365173, -0.01698153093457222, -0.01564832590520382, -0.02390342205762863, 0.012584647163748741, 0.008928433060646057, 0.02142554707825184, -0.0065077911131083965, 0.011197575367987156, 0.012463446706533432, 0.038918811827898026, -0.0106723727658391, 0.021829547360539436, -0.01416698656976223, -0.004898518323898315, 0.008497497998178005, 0.00029311151592992246, 0.016011927276849747, 0.013082915917038918, 0.021008078008890152, 0.01493458915501833, -0.0148403225466609, -0.0007629736792296171, -0.01001923717558384, 0.007171026896685362, 0.012335512787103653, 0.006235090084373951, 0.004245382733643055, -0.037302806973457336, -0.005497787147760391, 0.001175812678411603, -0.00927856843918562, 0.0158099252730608, 0.021883415058255196, 0.01711619645357132, 0.005066852085292339, -0.008861099369823933, 0.0023364752996712923, -0.0296806450933218, 0.01479992177337408, 0.007157559972256422, -0.019190071150660515, -0.024697959423065186, 0.015082722529768944, 0.02414582297205925, 0.02116967923939228, -0.03703347221016884, -0.0148403225466609, 0.0006994276191107929, 0.0046763173304498196, 0.019809540361166, 0.009217968210577965, 0.014005385339260101, 0.016604462638497353, -0.005706521216779947, 0.002737110247835517, 0.0032118118833750486, 0.003422229550778866, -0.033424392342567444, 0.007265293970704079, 0.002792660379782319, -0.012247978709638119, -0.018988071009516716, -0.01680646277964115, 0.01999807544052601, 0.014018852263689041, -0.0022321082651615143, 0.0060869562439620495, 0.015028855763375759, -0.033208925276994705, -0.00639332365244627, -0.016267793253064156, 0.00608022278174758, 0.02530396170914173, 0.0028734607622027397, -0.023216620087623596, -0.019419005140662193, 0.013769717887043953, 0.013217582367360592, -0.008733166381716728, 0.006844459101557732, 0.01564832590520382, -0.04484416916966438, -0.0013660300755873322, -0.016698729246854782, 0.0024155923165380955, 0.012651980854570866, 0.011749710887670517, -0.005847922060638666, 0.015944592654705048, -0.006268756929785013, 0.013870718888938427, -0.0032118118833750486, -0.012066178023815155, -0.02135821245610714, -0.010160638019442558, -0.03673720359802246, -0.009426701813936234, -0.027795303612947464, 0.012557713314890862, 0.001119420863687992, -0.0028010772075504065, 0.017479797825217247, -0.022193148732185364, -0.012443246319890022, 0.032050784677267075, -0.011695844121277332, -0.058984220027923584, -0.0017776066670194268, -0.020913811400532722, 0.026246631518006325, -0.015176990069448948, -0.00789149571210146, -0.01001250371336937, 0.01567525789141655, 0.014570987783372402, 0.004848018288612366, -0.019095804542303085, 0.005194786004722118, 0.005070218816399574, -0.0067198919132351875, -0.01862446963787079, -0.001290279789827764, -0.0012128461385145783, 0.040346283465623856, 0.02252981811761856, 0.011857444420456886, 0.0008778616320341825, -0.018799537792801857, 0.027297034859657288, -0.01861100271344185, 0.0056189876049757, -0.01683339662849903, -0.017897266894578934, 0.012375912629067898, 0.004716717638075352, -0.010753173381090164, -0.03240092098712921, -0.014234320260584354, 0.03576759994029999, 0.025169294327497482, 0.007864562794566154, -0.009036167524755001, 0.011049441061913967, 0.0200115405023098, -0.013964985497295856, 0.01282704807817936, -0.0055314539931714535, 0.0171431303024292, 0.007709695491939783, 0.013183915987610817, 0.016415927559137344, -0.0013988552382215858, -0.01702192984521389, 0.016779528930783272, 0.026435164734721184, 0.004844651557505131, -0.000678385840728879, 0.0009595035808160901, 0.030138513073325157, 0.0012709214352071285, -0.012288379482924938, -0.033155057579278946, -0.010968641377985477, 0.009743169881403446, 0.04379376396536827, -0.014732588082551956, 0.021627547219395638, -0.0022270584013313055, 0.03253558650612831, 0.02569449506700039, 0.019149672240018845, -0.01416698656976223, 0.0055280872620642185, -0.016617929562926292, -0.011433242820203304, 0.017749132588505745, 0.00779722910374403, -0.002442525699734688, 0.0013374133268371224, -0.018678337335586548, -0.009036167524755001, -0.01416698656976223, 0.012732780538499355, 0.011581376194953918, -0.007352827582508326, -0.02709503471851349, -0.01071950700134039, -0.6399384140968323, -0.02131781354546547, -0.015311657451093197, -0.004063582047820091, 0.00926510151475668, 0.007878029718995094, -0.005376586690545082, -0.006827625446021557, 0.0004343016189523041, -0.008874566294252872, -0.024347824975848198, -0.013318583369255066, 0.0007027942920103669, -0.00042819950613193214, -0.026152364909648895, 0.0038279143627732992, 0.02131781354546547, -0.013897651806473732, 0.0027556270360946655, -0.01494805607944727, -0.03530973196029663, 0.0027000766713172197, 0.007595228496938944, 0.00034929296816699207, -0.012759714387357235, -0.0148403225466609, -0.019001537933945656, -0.001324788318015635, 0.02145248092710972, 0.016375528648495674, -0.033289723098278046, 0.01270584762096405, 0.026085030287504196, 0.028037704527378082, 0.043470561504364014, -0.013419583439826965, -0.018112733960151672, 0.01566179096698761, 0.0010041120694950223, 0.012483646161854267, -0.00934590119868517, -0.01698153093457222, 0.02817237190902233, -0.004922084975987673, 0.0007423528004437685, -0.009588302113115788, 0.006581857800483704, -0.024415157735347748, 0.018664870411157608, 0.014463254250586033, -0.013513850048184395, -0.003578779986128211, -0.00992497056722641, -0.00913043413311243, -0.004359849728643894, -0.004484416916966438, 0.029438244178891182, -0.0025199593510478735, 0.019809540361166, -0.001967824064195156, 0.01266544684767723, 0.012274912558495998, -0.003168045077472925, 0.005255386233329773, -0.008100230246782303, 0.0038649477064609528, -0.02819930575788021, 0.009103500284254551, 0.02849557250738144, -0.02286648564040661, 0.019122738391160965, 0.0029441609513014555, 0.0030855615623295307, -0.02421315759420395, 0.002720276825129986, 0.009103500284254551, 0.0340169258415699, -0.03291265666484833, -0.0014485137071460485, 0.010180838406085968, -0.0007549778092652559, -0.010174104943871498, -0.02430742420256138, -0.015944592654705048, 0.020604077726602554, -0.017345132306218147, 0.006117256358265877, 0.022071948274970055, -0.01214697863906622, 0.0037201805971562862, -0.000546243682038039, 0.03269718959927559, 0.006120623089373112, 0.016186993569135666, 0.0224759504199028, 0.00789149571210146, -0.019580606371164322, -0.001440096995793283, 0.005760387983173132, -0.017816467210650444, -0.00456858379766345, -0.014032319188117981, 0.0006320940447039902, -0.018839936703443527, 0.00012088482617400587, -0.016213927417993546, -0.03118891641497612, -0.0019560407381504774, 0.04239322617650032, -0.019311271607875824, -0.0010411455295979977, -0.01548672467470169, -0.014557520858943462, 0.007150826510041952, 0.020644476637244225, -0.017291264608502388, 0.008551365695893764, -0.003575413255020976, 0.038999613374471664, 0.004831184633076191, 0.02398422360420227, -0.023755289614200592, 0.02397075667977333, -0.005787321832031012, 0.018853403627872467, 0.0008888033335097134, -0.013816851191222668, -0.007945363409817219, -0.015998460352420807, -0.016496729105710983, 0.010396305471658707, -0.01848980225622654, 0.003881781129166484, 0.01479992177337408, 0.010254904627799988, -0.0029020775109529495, 0.004521450027823448, 0.010658906772732735, 0.02565409615635872, -0.023687954992055893, -0.01862446963787079, -0.009621969424188137, 0.023701421916484833, 0.0054472871124744415, -0.00490861851722002, -0.02390342205762863, -0.02127741277217865, -0.0017170064384117723, -0.03803000971674919, 0.001704381313174963, -0.014449787326157093, -0.015958059579133987, -0.0071440935134887695, 0.009318968281149864, 0.013709117658436298, 3.435722533140506e-07, -0.03552519902586937, -0.00913043413311243, -0.0006636566249653697, -0.017924200743436813, 0.006437090691179037, 0.009076567366719246, -0.009871103800833225, 0.006894959136843681, 0.004770584404468536, -0.010160638019442558, -0.009500768966972828, 0.033397458493709564, -0.012773181311786175, -0.03673720359802246, 0.015217389911413193, 0.0036124468315392733, 0.013022315688431263, 0.044898033142089844, -0.010281838476657867, -0.0025165926199406385, -0.01415351964533329, -0.010955174453556538, -0.023755289614200592, -0.0032353787682950497, -0.02133128046989441, 0.03396306186914444, 0.004885051399469376, -0.00034739921102300286, 0.02549249492585659, -0.000254815531661734, 0.021991148591041565, 0.011170641519129276, 0.006265390198677778, 0.01840900257229805, 0.001610114355571568, 0.010382838547229767, -0.005911888554692268, -0.006834358908236027, 0.0009132117265835404, 0.005578587297350168, 0.02429395727813244, 0.03369372710585594, 0.012200845405459404, 0.0267449002712965, 0.012120045721530914, 0.01492112223058939, 0.02665063366293907, -0.0012549296952784061, -0.006127356085926294, -0.03372066095471382, 0.0041275485418736935, -0.02246248349547386, 0.02383608929812908, -4.1557446820661426e-05, -0.001755723264068365, -0.028630239889025688, 0.009844169951975346, -0.0024610424879938364, 0.017964599654078484, 0.020253941416740417, 0.00038548477459698915, 0.017789533361792564, -0.013964985497295856, 0.01214024517685175, 0.006231723353266716, 0.00791169609874487, 0.003418862819671631, -0.01704886369407177, 0.005262119695544243, 0.005056752357631922, 0.0042588491924107075, 0.030165445059537888, 0.005214985925704241, -0.02246248349547386, 0.017372064292430878, 0.0035316464491188526, -0.0029508944135159254, 0.010120238177478313, 0.014005385339260101, 0.023687954992055893, 0.00934590119868517, -0.013257983140647411, 0.029465176165103912, -0.02697383426129818, -0.003481146413832903, 0.012449979782104492, 0.03237398713827133, -0.030219312757253647, -0.006605424452573061, -0.0028886108193546534, -0.0027068101335316896, -0.010780107229948044, 0.012752980925142765, 0.02266448549926281, -0.002883560722693801, -0.007743362337350845, -0.00595902232453227, -0.023257020860910416, -0.001137095969170332, -0.03703347221016884, -0.008625431917607784, 0.012456713244318962, 0.014368986710906029, 0.022395150735974312, 0.016119660809636116, 0.0038009807467460632, 0.02686610072851181, 0.005006251856684685, 0.057529814541339874, 0.014301653020083904, 0.013305116444826126, 0.019419005140662193, -0.021748747676610947, -0.03493266552686691, -0.0429588258266449, -0.00500961858779192, 0.016469795256853104, -0.015163523145020008, 0.027512501925230026, -0.002851577242836356, 0.006874759215861559, 0.0038279143627732992, 0.024509424343705177, 0.014719122089445591, -0.02573489584028721, -0.025196228176355362, 0.01976913958787918, 0.0017304731300100684, 0.012396113015711308, -0.011628510430455208, -0.027714503929018974, 0.007009426131844521, -0.02258368395268917, 0.042016156017780304, -0.023041551932692528, 0.011163908056914806, 0.008813966065645218, -0.0298153106123209, -0.013224315829575062, -0.0012818630784749985, 0.008686032146215439, -0.015284723602235317, 0.02422662451863289, -0.027552902698516846, 0.009507502429187298, 0.01068583969026804, -0.02393035590648651, 0.013035781681537628, 0.01686033047735691, -0.007298960816115141, -0.004797517787665129, -0.014772988855838776, 0.007029626052826643, -0.008308964781463146, -0.020684877410531044, -0.027660636231303215, -0.005403520073741674, -0.0032774622086435556, 0.011810311116278172, 0.0017018563812598586, -0.012066178023815155, 0.00568295456469059, 0.02547902800142765, 0.011534242890775204, -0.015971526503562927, -0.011002307757735252, -0.019513273611664772, -0.0005458228988572955, 0.09372834861278534, 0.038918811827898026, -0.02142554707825184, 0.01281358115375042, 0.002292708493769169, 0.008955366909503937, -0.04126201942563057, -0.026031164452433586, 0.023728355765342712, 0.004504616837948561, -0.004157848656177521, -0.008659099228680134, 0.01703539676964283, -0.004514717031270266, 0.01690072938799858, -0.015958059579133987, -0.008295497857034206, -0.004743651021271944, -0.0025721429847180843, -0.008659099228680134, 0.0010588206350803375, 0.013055982068181038, 0.030273180454969406, 0.0066693914122879505, -0.02263755165040493, -0.002284291898831725, 0.0253443606197834, 0.00529915327206254, 0.01976913958787918, -0.022260483354330063, -0.012274912558495998, 0.03517506644129753, 0.03396306186914444, 0.017708733677864075, -0.015311657451093197, -0.00779049564152956, 0.006440457422286272, 0.01216044556349516, -0.010308771394193172, 0.007931896485388279, 0.01201231125742197, 0.022018082439899445, 0.009534435346722603, -0.01056463923305273, 0.006480857729911804, 0.007191226817667484, -0.0023078585509210825, -0.005800788290798664, -0.03867641091346741, -0.016537128016352654, 0.0341515950858593, -0.00740669434890151, -0.005551653914153576, 0.0062451898120343685, 0.020698344334959984, 0.005194786004722118, -0.005652654450386763, -0.005433820188045502, -0.0014316804008558393, 0.0229472853243351, -0.01830126903951168, 0.01125144213438034, 0.008140630088746548, -0.005942188668996096, -0.03258945420384407, -0.030192378908395767, -0.017466332763433456, -0.017681799829006195, -0.009063100442290306, 0.01412658579647541, -0.02112927846610546, -0.01267891377210617, -0.02397075667977333, -0.005332820117473602, 0.0019240571418777108, 0.0012667130213230848, 0.03234705328941345, -0.001412321929819882, 0.006908425595611334, -0.01558099128305912, -0.0083695650100708, -0.03792227432131767, 0.019095804542303085, -0.012746247462928295, -0.017466332763433456, -0.0036797805223613977, 0.005322719924151897, 0.010766640305519104, -0.038864944130182266, 0.0035148130264133215, 0.0049523850902915, 0.023459021002054214, 0.022071948274970055, -0.024711426347494125, 0.002378558972850442, -0.017681799829006195, 0.0048917848616838455, 0.023714888840913773, -0.006410157307982445, -0.017762599512934685, 0.006554924417287111, -0.04934205114841461, 0.00859849900007248, -0.0034407461062073708, 0.02565409615635872, -0.011298575438559055, 0.021573681384325027, 0.020334742963314056, -0.012901115231215954, -0.016725663095712662, 0.021869948133826256, -0.02106194570660591, 0.014988455921411514, 0.003619180293753743, 0.01548672467470169, 0.009204501286149025, 0.013608117587864399, 0.0028364271856844425, 0.0013096382608637214, -0.0001506588887423277, -0.007777029182761908, -0.03926894813776016, 0.006645824760198593, 0.011433242820203304, -0.023485954850912094, -0.0077298954129219055, -0.005211619660258293, 0.005854655057191849, 0.01348691713064909, 0.0033683625515550375, 0.03097344934940338, 0.0049759517423808575, 0.009090034291148186, -0.01559445820748806, -0.040319349616765976, 0.006908425595611334, -0.026273565366864204, 0.0013921218924224377, -0.01055117230862379, 0.014490187168121338, -0.009844169951975346, -0.026071563363075256, -0.014018852263689041, -0.036144670099020004, 0.001662297872826457, -0.027135435491800308, -0.017345132306218147, 0.012389379553496838, -0.0037605806719511747, -0.008086763322353363, 0.0036057133693248034, -0.03221238777041435, -0.03283185511827469, -0.014382453635334969, -0.014476721175014973, -0.047456711530685425, -7.0884379965718836e-06, -0.013332049362361431, 0.031700652092695236, -0.013641783967614174, 0.047429777681827545, -0.014692188240587711, 0.011971911415457726, 0.015203922986984253, -0.006841092370450497, 0.01842246949672699, -0.014597921632230282, -0.02104847878217697, -0.04244709014892578, -0.005713254678994417, 0.021937282755970955, 0.002459359122440219, 0.02978837862610817, -0.006982492748647928, -0.008861099369823933, 0.016550594940781593, -0.01337245013564825, -0.013089648447930813, -0.02122354507446289, -0.028118504211306572, -0.028711041435599327, 0.013897651806473732, 0.011702576652169228, 0.008686032146215439, -0.01861100271344185, 0.0033969793003052473, 0.04567910358309746, 0.005491053685545921, 0.0021984416525810957, -0.03719507157802582, 0.019311271607875824, -0.029357442632317543, -0.0060869562439620495, -0.01416698656976223, 0.02397075667977333, -0.01137264259159565, 0.028064638376235962, -0.007581761572510004, 0.002493025967851281, -0.005039918702095747, 0.010645439848303795, 0.0004502933588810265, -0.014193919487297535, 0.00849076546728611, -0.030219312757253647, -0.00791169609874487, -0.009467101655900478, -0.023755289614200592, 0.005787321832031012, -0.03563293442130089, -0.012254712171852589, -0.016685262322425842, -0.018826469779014587, -0.01995767466723919, -0.014853788539767265, 0.017776066437363625, 0.005487686954438686, 0.016038859263062477, -0.003565313294529915, -0.04134282097220421, 0.013816851191222668, -0.02002500742673874, 0.04979991912841797, 0.021519813686609268, 0.01212677825242281, 0.03592919930815697, -0.004302616231143475, -0.0005786480032838881, 0.012093111872673035, 0.006470757536590099, -0.025761829689145088, 0.015527124516665936, 0.013042515143752098, -0.0022943918593227863, -0.003723547328263521, -0.02258368395268917, 0.006171123124659061, -0.03504039719700813, -0.031215850263834, 0.034717194736003876, 0.013702384196221828, 0.004696517717093229, -0.013621584512293339, -0.016617929562926292, -0.03436706215143204, -0.008962100371718407, 0.005575221031904221, 0.02809157222509384, -0.01861100271344185, -0.023687954992055893, -0.04390149563550949, 0.0034239126835018396, 0.007958829402923584, 0.0238764900714159, 0.0076490952633321285, -0.006581857800483704, -0.01559445820748806, 0.015338590368628502, -0.014988455921411514, -0.007534628268331289, -0.015352057293057442, 0.021856481209397316, -0.0106723727658391, -0.010120238177478313, 0.016483262181282043, -0.008147363550961018, -0.0034390627406537533, -0.012423045933246613, -0.01684686355292797, 0.024980759248137474, 0.0003158366016577929, -0.0025755097158253193, 0.002546892734244466, 0.016442861407995224, 0.005390053614974022, 0.016779528930783272, -0.008968833833932877, 0.002055357675999403, -0.008376297540962696, 0.008726432919502258, 0.006928625982254744, 0.01424778625369072, -0.014853788539767265, -0.017277797684073448, -0.01967487297952175, -0.005787321832031012, 0.0038211809005588293, 0.01861100271344185, 0.011884377337992191, -0.03143131732940674, -0.007278760429471731, 0.013156982138752937, -0.019055403769016266, 0.011769910342991352, 0.0023987588938325644, 0.027795303612947464, 0.0015730808954685926, 0.03285878896713257, -0.02108887955546379, 0.023378221318125725, -0.010275105014443398, 0.01283378154039383, -0.03652173653244972, 0.013527316972613335, 0.010194304399192333, -0.023432087153196335, 0.0021125911734998226, -0.01997114159166813, -0.037518274039030075, 0.005777221638709307, 0.008335897698998451, 0.017398998141288757, 0.00927183497697115, 0.018974604085087776, 0.03258945420384407, -0.004238649271428585, 0.015540591441094875, -0.006238456815481186, -0.02266448549926281, 0.01718353107571602, 0.017318198457360268, 0.0018752403557300568, 0.010234705172479153, -0.0184763353317976, 0.0014156886609271169, 0.007844362407922745, 0.012167179025709629, -0.00032362205092795193, -0.040211617946624756, 0.02844170667231083, -0.014544053934514523, 0.02403808943927288, 0.012086378410458565, -0.012483646161854267, -0.015931125730276108, -0.025802230462431908, -0.020227009430527687, 0.024657558649778366, 0.003494613105431199, -0.005501153878867626, 0.0200788751244545, 0.021708346903324127, -0.012611580081284046, 0.002420642413198948, -0.011540976352989674, -0.001794440089724958, 0.011096574366092682, -0.005918622016906738, -0.037706807255744934, -0.01137264259159565, -0.010807040147483349, 0.030219312757253647, 0.008813966065645218, -0.011015774682164192, 0.010120238177478313, -0.01979607343673706, -0.03417852893471718, -0.001130362506955862, -0.01359465066343546, 0.017385531216859818, 0.033505190163850784, 0.018678337335586548, 0.013197382912039757, 0.02546556107699871, -0.01983647421002388, -0.00778376217931509, -0.006915159057825804, -0.009372835047543049, -0.01858406886458397, 0.001412321929819882, -0.008181030862033367, 0.009682569652795792, -0.013857251964509487, -0.013002115301787853, 0.019203538075089455, -0.0021816082298755646, 0.007945363409817219, -0.0004101036174688488, -0.014315119944512844, 0.002629376482218504, 0.0017102730926126242, -0.016698729246854782, 0.00913043413311243, 0.013816851191222668, -0.015257790684700012, -0.0285494402050972, -0.004191515501588583, -0.0002846948045771569, -0.005814255215227604, -0.044655632227659225, -0.0212100800126791, 0.0005121560534462333, -0.0200115405023098, 0.016186993569135666, -0.03964601457118988, -0.006467390805482864, -0.014517121016979218, -0.017708733677864075, 0.03223932161927223, -0.004837918095290661, 0.009049633517861366, 0.030488647520542145, 0.0024475757963955402, -0.017304731532931328, -0.01970180682837963, 0.020267408341169357, 0.008308964781463146, -0.013251249678432941, 0.008659099228680134, -0.025950362905859947, 0.013547517359256744, -0.008207963779568672, 0.0021816082298755646, -0.025007693096995354, 0.00635629054158926, -0.01415351964533329, 0.012954981997609138, -0.0341515950858593, 0.020698344334959984, 0.010450172238051891, -0.005369853228330612, -0.005831088405102491, -0.008167563937604427, -0.0005420353845693171, -0.005379953421652317, -0.021991148591041565, -0.010261638090014458, -0.016671795397996902, 0.004349749535322189, 0.0001233046205015853, -0.001621055998839438, -0.008531165309250355, -0.008194496855139732, 0.026260098442435265, -0.03436706215143204, 0.0003840118588414043, 0.22128508985042572, -0.01137937605381012, -0.001523422310128808, 0.03541746735572815, -0.004898518323898315, 0.015944592654705048, 0.026515966281294823, 0.003168045077472925, -0.010658906772732735, -0.020200075581669807, -0.012093111872673035, 0.007635628338903189, -0.02685263380408287, 0.005181319545954466, 0.01708926446735859, 0.003487879643216729, -0.04104655236005783, 0.0010419872123748064, -0.0008319906191900373, -0.060007691383361816, 0.009520969353616238, -0.0070902262814342976, -0.0182743351906538, -0.004191515501588583, 0.006750192027539015, 0.01976913958787918, -0.011540976352989674, -0.004100615158677101, 0.030300112441182137, -0.0018685070099309087, -0.033451326191425323, -0.005427086725831032, -0.00013782343012280762, -0.016294727101922035, -0.008389764465391636, 0.01962100714445114, 0.020657943561673164, -0.0050230855122208595, 0.020927278324961662, -0.0027000766713172197, 0.019580606371164322, -0.00924490112811327, 0.027714503929018974, 0.007467294577509165, 0.004460849799215794, 0.022314349189400673, -0.0008997450349852443, -0.011318775825202465, -0.019338205456733704, -0.001748989918269217, -0.02959984354674816, 0.008948633447289467, 0.0510927252471447, 0.02860330604016781, 0.005773854907602072, -0.006006155628710985, -0.01575605943799019, -0.002770777093246579, -0.004750384483486414, 0.01838206872344017, -0.024576758965849876, 0.04077721759676933, 0.012914581224322319, 0.026542898267507553, -0.026502499356865883, -0.0038178141694515944, -0.011790110729634762, 0.00016181102546397597, 0.013035781681537628, -0.02978837862610817, 0.005252019502222538, -0.019257405772805214, -0.014570987783372402, 0.010443438775837421, -0.009736436419188976, -0.01962100714445114, 0.01481338869780302, -0.017883799970149994, 0.012086378410458565, 0.00679059186950326, 0.022368216887116432, -0.008766832761466503, 0.005868121981620789, -0.008753365837037563, -0.010086570866405964, -0.02686610072851181, -0.0014628220815211535, -0.020496342331171036, -0.03450172767043114, 0.013843785040080547, -0.016658328473567963, -0.03926894813776016, -0.01414005272090435, 0.003314495785161853, 0.0042521157301962376, -0.0015065890038385987, 0.021843014284968376, 0.026260098442435265, -0.012544246390461922, -0.005703154485672712, -0.02409195713698864, -0.014503654092550278, 0.01205271203070879, 0.0035451131407171488, -0.02108887955546379, 0.01575605943799019, 0.01127164252102375, 0.010463639162480831, 0.011211042292416096, 0.0053967866115272045, 0.030084645375609398, -0.014651788398623466, 0.009366101585328579, -0.00991823710501194, 0.011069641448557377, 0.029330508783459663, -0.013688918203115463, -0.023768754675984383, -0.005652654450386763, 0.008255097083747387, 0.006854558829218149, -0.01984994113445282, -0.003223595442250371, -0.007447094656527042, 0.016240861266851425, -0.012301845476031303, -0.004420449957251549, 0.018732203170657158, 0.020294342190027237, -0.01850326918065548, 0.007709695491939783, -0.037410538643598557, 0.011783377267420292, 0.01568872481584549, -0.0269469004124403, 0.017277797684073448, 0.009312234818935394, -0.029465176165103912, 0.032050784677267075, -0.014059252105653286, -0.0002947948523797095, 0.00847729854285717, 0.002577192848548293, 0.013621584512293339, 0.022354749962687492, 0.005228452850133181, 0.008874566294252872, -0.006901692599058151, 0.012456713244318962, -0.000500793510582298, -0.024361291900277138, 0.006622258108109236, -0.005194786004722118, -0.00859849900007248, -4.98426343256142e-05, -0.019136205315589905, -0.014409387484192848, -0.024792226031422615, -0.003213495248928666, 0.011217774823307991, -0.03156598284840584, 0.0033750960137695074, 0.017991533502936363, -0.010073103941977024, -0.016658328473567963, -0.011527509428560734, -0.17151211202144623, 0.027512501925230026, 0.022193148732185364, -0.011022508144378662, 0.01479992177337408, 0.02698730118572712, 0.02718930132687092, -0.003112494945526123, -0.0056627546437084675, -0.023405153304338455, 0.007150826510041952, 0.012941515073180199, -0.030919581651687622, -0.027768369764089584, -0.017533665522933006, 0.005921988748013973, -0.0007015317678451538, 0.014988455921411514, 0.024657558649778366, 0.027270101010799408, 0.007689495570957661, -0.0171431303024292, 0.008726432919502258, 0.002225375035777688, 0.0001661245769355446, 0.012227779254317284, -0.016267793253064156, 0.015163523145020008, 0.017466332763433456, -0.020455943420529366, -0.0229472853243351, 0.010517505928874016, -0.008409964852035046, -0.025883030146360397, 0.019513273611664772, -0.0024576757568866014, 0.025007693096995354, -0.00028932400164194405, -0.016200460493564606, 0.02437475696206093, 0.013991919346153736, 0.02403808943927288, 0.044628698378801346, -0.0077298954129219055, -0.01855713687837124, 0.021735280752182007, 0.0017776066670194268, -0.014368986710906029, 0.006123989354819059, -0.015419390983879566, 0.031808383762836456, -0.0008534531807526946, 0.006426990497857332, -0.005379953421652317, 0.023687954992055893, 0.011278375051915646, 0.02838783897459507, 0.02006540820002556, 0.0012263129465281963, -0.023122353479266167, -0.007844362407922745, -0.01851673610508442, 0.015001922845840454, -0.022314349189400673, -0.0035451131407171488, -0.0014527221210300922, -0.01567525789141655, 0.02421315759420395, -0.010126970708370209, 0.011608310043811798, -0.00791169609874487, 0.002923961030319333, 0.01203251164406538, -0.005134185776114464, -0.018099267035722733, 0.0036595803685486317, -0.01699499599635601, 0.023162752389907837, 0.009453635662794113, -0.014557520858943462, -0.023270487785339355, 0.040588684380054474, -0.010214504785835743, -0.010160638019442558, 0.018126200884580612, -0.0010697622783482075, -0.023809155449271202, -0.011944977566599846, -0.012382646091282368, 0.007467294577509165, 0.013655250892043114, -0.023351287469267845, 0.004002981819212437, -0.004494516644626856, 0.008127164095640182, 0.02574836276471615, 0.019230471923947334, -0.024644091725349426, 0.010234705172479153, -0.019540205597877502, -0.003932281397283077, 0.0020250575616955757, -0.015311657451093197, 0.016402460634708405, 0.04220468923449516, 0.0372220054268837, 0.0005437186919152737, 0.028711041435599327, 0.027929970994591713, 0.0075144278816878796, -0.019028471782803535, 0.020792610943317413, 0.020604077726602554, 0.00779049564152956, 0.018974604085087776, 0.024751825258135796, -0.008423431776463985, -0.006396690383553505, 0.016160059720277786, -0.009076567366719246, 0.060384757816791534, -0.012914581224322319, 0.0031007116194814444, -0.012274912558495998, -0.021977681666612625, -0.025209693238139153, -0.11764524132013321, -0.007197960279881954, 0.02989611215889454, 0.007837628945708275, -0.007278760429471731, 0.013076182454824448, -0.0010436705779284239, 0.031889185309410095, -0.014597921632230282, 0.023432087153196335, -0.0075682951137423515, -0.01069930661469698, 0.005642554257065058, -0.005901788827031851, 0.0007381444447673857, -0.031754519790410995, 0.026125431060791016, -0.017722198739647865, 0.0013121631927788258, 0.03972681611776352, 0.023135820403695107, -0.0061677563935518265, 0.02712196856737137, -0.01699499599635601, 0.013150248676538467, 0.0028061270713806152, -0.017776066437363625, 0.012436512857675552, 0.03431319445371628, 0.011594843119382858, -0.005420353729277849, -0.011810311116278172, 0.02285301871597767, -0.010416505858302116, -0.0022792418021708727, -0.016011927276849747, -0.027512501925230026, -0.00496585201472044, 0.030246246606111526, -0.027903037145733833, 0.015527124516665936, -0.010423239320516586, 0.02285301871597767, -0.02293381839990616, 0.00016959646018221974, 0.0006354607176035643, -0.024778759106993675, 0.00267145992256701, 0.009090034291148186, -0.004144382197409868, -0.022125815972685814, 0.015244323760271072, -0.03824547678232193, 0.004696517717093229, 0.036036934703588486, 0.0010722873266786337, 0.009951903484761715, -0.012584647163748741, 0.0037403807509690523, 0.006581857800483704, -0.0016429395182058215, 0.00860523246228695, 0.007837628945708275, 0.011695844121277332, 0.00462581729516387, -0.013513850048184395, -0.01707579754292965, -0.001742256456054747, 0.024940360337495804, 0.006450557615607977, -0.017883799970149994, 0.019351672381162643, -0.022300884127616882, 0.015459790825843811, -0.007608694955706596, 0.0049725850112736225, -0.01134570874273777, -3.5534249036572874e-05, 0.005423720460385084, 0.0004784892953466624, -0.003484512912109494, -0.024388223886489868, 0.00427904911339283, -0.03302038833498955, 0.013278182595968246, 0.01858406886458397, 0.016213927417993546, -0.01138610951602459, 0.013042515143752098, -0.036414001137018204, 0.0012970131356269121, 0.0013365716440603137, -0.005568487569689751, -0.011015774682164192, 0.0019038571044802666, 0.03582146763801575, 0.020321276038885117, 0.0012296795612201095, -0.003240428864955902, -0.006369757000356913, -0.01984994113445282, 0.002041890984401107, -0.0649634450674057, 0.023014619946479797, -0.003105761483311653, 0.010975373908877373, 0.013843785040080547, -0.020846478641033173, 0.01568872481584549, -0.011143708601593971, 0.0036292802542448044, -0.0030384280253201723, -0.017385531216859818, 0.009978837333619595, -0.017291264608502388, -0.006497690919786692, -0.016213927417993546, -0.02116967923939228, -0.00563245452940464, -0.007709695491939783, -0.0005390894948504865, -0.019203538075089455, 0.01271258108317852, 0.004864851478487253, 0.008834166452288628, -0.014409387484192848, -0.015527124516665936, 0.0003524492203723639, 0.01719699800014496, 0.023405153304338455, -0.004955751821398735, -0.019486339762806892, -0.006608791183680296, -0.033397458493709564, -0.008867832832038403, 0.012274912558495998, 0.003673047060146928, 0.020092342048883438, -0.004396883305162191, 0.006787225138396025, -0.0100057702511549, 0.04290496185421944, -0.014974988996982574, -0.01058483961969614, 0.02131781354546547, -0.01708926446735859, 0.008834166452288628, 0.014894189313054085, -0.02402462251484394, -0.01147364266216755, 0.018207000568509102, -0.015352057293057442, 0.008632165379822254, 0.03436706215143204, -0.008914967067539692, -0.011796844191849232, 0.0032303286716341972, -0.031889185309410095, 0.028037704527378082, -0.011857444420456886, 0.017762599512934685, -0.025842629373073578, 0.007985763251781464, -0.012375912629067898, -0.02110234461724758, -0.007622161880135536, 0.012651980854570866, -0.010854173451662064, -0.02403808943927288, -0.01137937605381012, -0.02706810086965561, -0.0005533979274332523, -0.0052351863123476505, -0.006662658415734768, 0.0022068582475185394, 0.0011909627355635166, 0.006622258108109236, 0.008133896626532078, -0.008551365695893764, 0.004349749535322189, -0.0309465155005455, 0.024792226031422615, -0.006659291684627533, -0.0035181797575205564, -0.016577528789639473, 0.018893804401159286, 0.03638707101345062, -0.0038211809005588293, 0.008039630018174648, 0.005120719317346811, -0.005723354872316122, 0.004871584940701723, 0.012766447849571705, -0.0058209882117807865, -0.015325123444199562, -0.007500961422920227, 0.013722584582865238, 0.016631394624710083, -0.01723739691078663, -0.0007415111176669598, 0.01496152300387621, 0.028764907270669937, 0.005854655057191849, 0.0084705650806427, 0.008719699457287788, -0.018099267035722733, 0.0025435262359678745, 0.003279145574197173, -0.015069256536662579, -0.040400151163339615, 0.004050115123391151, 0.01698153093457222, 0.0009031117078848183, -0.0002371404698351398, 0.030111579224467278, 0.019230471923947334, -0.020725278183817863, -0.0017607732443138957, 0.008066563867032528, -0.03835320845246315, -0.012732780538499355, 0.028576374053955078, -0.001895440393127501, 0.038918811827898026, 0.014220853336155415, 0.0004881685017608106, 0.01826086826622486, 0.02573489584028721, 0.012066178023815155, 0.006551557686179876, -0.0016749228816479445, -0.010443438775837421, -0.013722584582865238, 0.007985763251781464, -0.041881490498781204, -0.0001731735683279112, 0.008167563937604427, -0.0340169258415699, -0.009655635803937912, 0.006255290005356073, -0.03679107129573822, 0.0422854907810688, 0.01479992177337408, -0.015890726819634438, -0.011540976352989674, -0.011702576652169228, 0.030165445059537888, 0.014746055006980896, 0.023889955133199692, 0.010362639091908932, -0.010234705172479153, 0.017681799829006195, -0.019338205456733704, 0.015554058365523815, -0.006262023467570543, -0.0052856863476336, -0.006288956850767136, -0.004905251786112785, 0.04066948592662811, -0.023055018857121468, -0.017803000286221504, 0.04085801914334297, -0.008106963708996773, 0.020280875265598297, -0.006578491069376469, -0.011177374981343746, 0.011796844191849232, 0.017452865839004517, -0.00214289128780365, 0.005996055901050568, -0.02951904386281967, 0.006908425595611334, 0.015338590368628502, -0.01282031461596489, -0.008679298684000969, 0.010746439918875694, 0.005390053614974022, 0.005858021788299084, -0.024657558649778366, 0.012571180239319801, -0.019647939130663872, -0.02266448549926281, 0.017978066578507423, -0.020671410486102104, -0.01818006858229637, 0.02269141748547554, -0.014611387625336647, -0.015984993427991867, 0.00600952235981822, -0.011823777109384537], "959ecb33-6cbf-4d64-83df-89efff550a84": [-0.012502145953476429, -0.02150718867778778, -0.013974964618682861, 0.013167941011488438, -0.011163831688463688, 0.031151125207543373, -0.01919372007250786, -0.010390433482825756, -0.01295945979654789, -0.024977391585707664, 0.00868895836174488, 0.002355501288548112, 0.017512420192360878, -0.0026934423949569464, 0.0030011204071342945, 0.009226974099874496, 0.028649350628256798, -0.0025925645604729652, 0.011352136731147766, -0.010881372727453709, -0.004969922825694084, 0.007935735397040844, 0.004731177818030119, 0.012683726847171783, 0.0003560152545105666, 0.03311488404870033, 0.01466093584895134, -0.019099567085504532, 0.007417895365506411, -0.0099129443988204, -0.012293664738535881, 0.005444049369543791, -0.006779001094400883, -0.015952173620462418, -0.04384830221533775, -0.007438071072101593, -0.0011298335157334805, -0.015683166682720184, 0.02980608493089676, 0.017512420192360878, 0.0117152975872159, -0.004737903364002705, -0.012979635037481785, -0.006321687716990709, -0.020888470113277435, 0.008339247666299343, 0.000830982462503016, -0.02247561700642109, -0.011392488144338131, 0.012730803340673447, 0.014593683183193207, 0.018036985769867897, -0.029025962576270103, 0.005924900993704796, -0.0032365024089813232, 0.0007809638045728207, 0.008177842944860458, 0.006553707178682089, 0.009139546193182468, 0.02067326381802559, -0.0006952175172045827, 0.007989536970853806, 0.0070278337225317955, -0.010679617524147034, -0.035751160234212875, -0.002920418046414852, -0.010619089938700199, -0.006926955655217171, -0.020000744611024857, -0.016893701627850533, 0.019274422898888588, 0.003320567309856415, -0.0032096016220748425, 0.006587333045899868, 0.020619463175535202, -0.023322992026805878, -0.005403697956353426, -0.010948625393211842, -0.014418828301131725, 0.008567904122173786, -0.004388192668557167, -0.03429851680994034, -0.009220249019563198, 0.01782177947461605, 0.022368013858795166, -0.005652530584484339, -0.001374462735839188, 0.002207546727731824, -0.03217335417866707, 0.0041561732068657875, -0.009260600432753563, 0.009052119217813015, 0.011345411650836468, 0.012327291071414948, -0.016611242666840553, 0.0024799173697829247, -0.005659255664795637, 0.017714176326990128, -0.0003190266725141555, -0.02371305413544178, -0.03610087186098099, -0.013652155175805092, -0.027949929237365723, -0.009764989838004112, -0.01569661684334278, 0.005433961283415556, -0.010007097385823727, 0.00690005486831069, 0.019314773380756378, -0.007707078941166401, -0.007929010316729546, 0.025905469432473183, 0.001999065512791276, -0.04495123401284218, -0.007559124380350113, -0.028891457244753838, 0.01359835360199213, -0.024022413417696953, 0.011056228540837765, -0.00033878194517455995, 0.001708200783468783, 0.02263702265918255, 0.007982811890542507, -0.008520827628672123, 0.006705024279654026, 0.0036484207957983017, -0.0005048103048466146, -0.020215950906276703, 0.010921724140644073, 0.0006166167440824211, 0.030666910111904144, 0.007942460477352142, 0.024264520034193993, 0.00437474250793457, -0.028299640864133835, 0.014674386009573936, -0.02318848855793476, -0.0022092279978096485, -0.014432278461754322, -0.021090226247906685, 0.011311786249279976, 0.0006905939662829041, -0.003877077717334032, -0.03758041560649872, -0.02174929529428482, 0.03147393465042114, 0.017216511070728302, 0.011513542383909225, -0.015064447186887264, 0.017055107280611992, 0.008218194358050823, -0.01834634505212307, 0.018131138756871223, -0.01710890792310238, 0.018077336251735687, -0.009670836851000786, 0.005723144859075546, 0.008144216611981392, -0.0035710809752345085, -0.008910889737308025, 0.016772648319602013, 0.027048753574490547, -0.004805155098438263, -0.0026329157408326864, -0.009758264757692814, 0.02699495106935501, -0.0009364840807393193, -0.011305061168968678, -0.031151125207543373, -0.009617035277187824, 0.014365026727318764, 0.03236166015267372, -0.051165319979190826, 0.023201938718557358, -0.013248643837869167, 0.020377354696393013, 0.015548661351203918, 0.005101064220070839, -0.0234305951744318, -0.0026732669211924076, -0.010343356989324093, -0.009045393206179142, 0.02435867302119732, 0.015589012764394283, -0.0056962440721690655, -0.00941528007388115, -0.0024698295164853334, -0.015710067003965378, -0.009348027408123016, 0.01069306768476963, 0.00952960830181837, 0.003085185308009386, -0.024600781500339508, -0.01626153290271759, -0.6314155459403992, -0.018655704334378242, -0.003957780078053474, 0.0052591064013540745, -0.0054574995301663876, 0.005376797169446945, -0.0025488506071269512, -0.0068933297879993916, 0.004509246442466974, -0.016032876446843147, -0.027949929237365723, 0.002511862199753523, 0.006372126750648022, -0.0031104048248380423, -0.019893141463398933, -0.0064124781638383865, 0.017176160588860512, -0.022973282262682915, 0.017566220834851265, -0.028864556923508644, -0.02375340461730957, -0.002619465347379446, -0.003233139868825674, 0.0049564721994102, -0.008453575894236565, -0.007572575006633997, -0.00999364722520113, 0.012629925273358822, 0.02219315990805626, 0.016799548640847206, -0.010760319419205189, 0.043955907225608826, 0.019597232341766357, 0.040189795196056366, 0.0448705330491066, -0.01565626449882984, -0.024977391585707664, 0.02174929529428482, 0.0035071915481239557, 0.0176200233399868, -0.027815425768494606, -0.018561551347374916, 0.01662469282746315, -0.007021108642220497, 0.0055180261842906475, -0.00518849166110158, 0.00973136443644762, -0.023040534928441048, 0.004448719788342714, 0.015548661351203918, -0.01503754686564207, -0.009778439998626709, -0.02431832253932953, -0.004892583005130291, -0.016274983063340187, 0.006530168931931257, 0.016436388716101646, 0.0052893697284162045, 0.018817108124494553, 0.007807957008481026, 0.018010085448622704, 0.011708572506904602, 0.0002942275023087859, -0.009960020892322063, -0.011251259595155716, 0.009401828981935978, -0.020861569792032242, 0.011049503460526466, 0.015467959456145763, -0.023215388879179955, 0.02026975154876709, 0.015387256629765034, 0.010908273980021477, -0.015589012764394283, 0.005639079958200455, 0.0075523993000388145, 0.03553595393896103, -0.028461044654250145, -0.018117688596248627, 0.020283201709389687, -0.005164953414350748, -0.005645805038511753, -0.02227386087179184, -0.022932931780815125, 0.012078458443284035, -0.004112459719181061, 0.016288433223962784, 0.03892545774579048, -0.0010079393396154046, 0.008211469277739525, -0.00018977673607878387, 0.028111334890127182, -0.0009953295812010765, -6.861805013613775e-05, 0.022166257724165916, 0.006066130008548498, -0.024224169552326202, 0.006230897735804319, 0.023215388879179955, -0.01978553831577301, -0.013685781508684158, -0.013867361471056938, 0.013167941011488438, -0.01548140961676836, -0.007417895365506411, -0.008157667703926563, -0.03228095918893814, -0.0014450772432610393, 0.05299457535147667, -0.00867550726979971, -0.007438071072101593, -0.003196151228621602, -0.021762745454907417, 0.005689518991857767, 0.009751539677381516, -0.02306743524968624, -0.005423873662948608, 0.011708572506904602, 0.037876326590776443, 0.001815803931094706, 0.02051186002790928, -0.018413597717881203, 0.020780866965651512, -0.010047448799014091, -0.0018712867749854922, 0.01926097273826599, -0.004852231591939926, -0.01593872345983982, -0.012804780155420303, -0.005803847219794989, 0.009563233703374863, -0.008709133602678776, 0.012031381949782372, 0.004398280754685402, 0.020377354696393013, -0.007054734509438276, 0.017041655257344246, 0.013026711530983448, 0.012508871033787727, -0.015373806469142437, -0.025744063779711723, -0.002303380984812975, 0.015198951587080956, 0.008285446092486382, -0.012138985097408295, -0.010350082069635391, -0.0051414151675999165, 0.015508310869336128, -0.04411730915307999, 0.023565100505948067, -0.025730613619089127, -0.00021667752298526466, -0.019287873059511185, 0.013235192745923996, 0.011708572506904602, -0.00655034463852644, -0.031662240624427795, 0.006254435516893864, 0.013053612783551216, -0.015871470794081688, -0.008944516070187092, 0.020337004214525223, -0.011116755194962025, 0.013665606267750263, 0.002076405333355069, -0.006321687716990709, -0.014028766192495823, 0.030855216085910797, -0.010861197486519814, -0.0428529717028141, 0.018561551347374916, 0.0034735656809061766, -0.004263776820152998, 0.051649533212184906, -0.009294225834310055, -0.0020965810399502516, -0.009146271273493767, -0.01470128633081913, -0.014069117605686188, 0.0002925461740233004, -0.016638144850730896, 0.02656453847885132, 0.0018965062918141484, -0.0020041095558553934, 0.03752661496400833, -0.002799364272505045, 0.013174666091799736, 0.003793012583628297, 0.014391927048563957, 0.025367453694343567, -0.010336631909012794, 0.0009432092774659395, 0.01009452436119318, -0.0047849793918430805, 0.0092135239392519, -0.014593683183193207, 0.026725944131612778, 0.030344100669026375, 0.022852228954434395, 0.017162710428237915, 0.00434447918087244, 0.018158039078116417, 0.03905995935201645, 0.006779001094400883, -0.004075470846146345, -0.03701549768447876, 0.002530356403440237, -0.012132260017096996, 0.026376232504844666, -0.004552960395812988, -0.0038636273238807917, -0.017633473500609398, 0.0019267697352916002, -0.00501699885353446, 0.02154753915965557, 0.030505506321787834, -0.0030431528575718403, 0.008843638002872467, -0.006859703920781612, 0.0034836535342037678, 0.018158039078116417, -0.007989536970853806, 0.0014803846133872867, -0.01858845166862011, -0.005373434629291296, 0.004226787947118282, -0.007962636649608612, 0.03628917783498764, 0.0016443113563582301, -0.017767976969480515, 0.011688397265970707, 0.005470950156450272, -0.00893106497824192, 0.0015400707488879561, 0.014674386009573936, 0.014432278461754322, 0.02099607326090336, -0.00835269782692194, 0.029698481783270836, -0.026725944131612778, -0.0043343910947442055, 0.0018242103978991508, 0.02215280756354332, -0.009886043146252632, 4.791704850504175e-05, -0.0005123761366121471, -0.0010138239013031125, -0.005238930694758892, 0.010121425613760948, 0.02187034860253334, -0.0015736967325210571, 0.00038501768722198904, -0.004700914490967989, -0.016678495332598686, 0.011762374080717564, -0.05194544419646263, 0.003340743016451597, 0.0019671209156513214, 0.021251631900668144, 0.019677935168147087, 0.017445167526602745, 0.002858209889382124, 0.028030632063746452, 0.02134578302502632, 0.043794501572847366, 0.0038871653378009796, 0.009408554062247276, 0.017485519871115685, -0.015992524102330208, -0.029133565723896027, -0.03572425991296768, -0.011695122346282005, 0.01333607081323862, -0.01566971465945244, 0.021090226247906685, 0.0017132445937022567, 0.008460300974547863, -0.0032280958257615566, 0.02322883903980255, 0.014822340570390224, -0.03357219696044922, -0.023699603974819183, 0.023847557604312897, 0.011923778802156448, 0.02047150768339634, -0.00761965150013566, -0.029752284288406372, 0.0012088546063750982, -0.007693628314882517, 0.046484582126140594, -0.019597232341766357, 0.007115261163562536, 0.004082196392118931, -0.033303190022706985, -0.02543470449745655, 0.0063553135842084885, 0.02575751580297947, -0.016436388716101646, 0.02883765660226345, -0.02499084174633026, 0.014243973419070244, 0.005773583892732859, -0.02539435401558876, 0.0073102922178804874, 0.025286750867962837, -0.015642814338207245, -0.011305061168968678, -0.016409486532211304, 0.01023575384169817, -0.02535400353372097, -0.015804219990968704, -0.015642814338207245, -0.0014030447928234935, -0.005995515733957291, 0.009872592985630035, -5.6271008361363783e-05, -0.0016947502736002207, 0.004253688734024763, 0.03865644708275795, -0.009092469699680805, -0.011002426967024803, -0.016732297837734222, -0.016880251467227936, -0.001012142514809966, 0.10066279023885727, 0.022327663376927376, -0.030101994052529335, 0.014634034596383572, -0.001661964925006032, -0.0020343728829175234, -0.027546418830752373, -0.017767976969480515, 0.03416401520371437, 0.01618083007633686, 0.004653837997466326, 0.0022714361548423767, 0.019920041784644127, -0.006805902346968651, 0.003392863320186734, -0.012798055075109005, -0.0099129443988204, 0.005195216741412878, -0.010773769579827785, -0.013773209415376186, 0.0055180261842906475, 0.005396972876042128, 0.03938277065753937, 0.004569773096591234, -0.02126508206129074, -5.826754932058975e-05, 0.02427797019481659, -0.0028548473492264748, 0.01743171736598015, -0.006358676124364138, -0.0029893512837588787, 0.03400260955095291, 0.025690263137221336, 0.018359795212745667, -0.024372123181819916, 0.002453016582876444, -0.0028044083155691624, 0.01425742357969284, 0.005043899640440941, 0.006056042388081551, 0.01642293855547905, 0.018453948199748993, 0.007861758582293987, -0.012643375433981419, 0.012643375433981419, 0.004515971522778273, -0.0073102922178804874, -0.013060337863862514, -0.03671959042549133, -0.012004481628537178, 0.04982027783989906, 0.0002152063971152529, -0.014486080035567284, -0.0002576592087280005, 0.03384120389819145, 0.013840461149811745, 0.006694936193525791, -0.011762374080717564, -0.01666504517197609, 0.03265757113695145, -0.02166859433054924, 0.005121239461004734, 0.014728187583386898, -0.005824022926390171, -0.028703153133392334, -0.03561665862798691, -0.004771529231220484, -0.018440498039126396, 0.003497103927657008, 0.011083128862082958, -0.018332894891500473, -0.008971416391432285, -0.015925273299217224, -0.0011138612171635032, 0.0011937229428440332, -0.004616849590092897, 0.03440612182021141, -0.011930503882467747, -0.0053835222497582436, -0.017014754936099052, -0.011661496013402939, -0.030666910111904144, 0.008863813243806362, -0.01774107664823532, -0.01757967285811901, 0.003930879291146994, 0.009408554062247276, 0.011742198839783669, -0.033141784369945526, -0.006291424389928579, 0.003988043405115604, 0.012112084776163101, 0.026053423061966896, -0.013436948880553246, 0.0013441992923617363, -0.015333455055952072, -0.0022209971211850643, 0.025703713297843933, -0.0020898557268083096, -0.018817108124494553, 0.009025217965245247, -0.040189795196056366, -0.0007141321548260748, 0.002229403704404831, 0.03171604126691818, -0.005551652517169714, 0.013114139437675476, 0.02134578302502632, -0.014324675314128399, -0.026927700266242027, 0.011036052368581295, -0.02495049126446247, 0.005612179171293974, -0.003584531368687749, 0.014539881609380245, 0.005003548692911863, 0.008117316290736198, -0.0009953295812010765, 0.000818793079815805, -0.005000186152756214, -0.0055920034646987915, -0.03997458890080452, 0.00997347105294466, 0.009462355636060238, -0.026295531541109085, -0.012993086129426956, 0.009038668125867844, 0.001916681881994009, 0.030613109469413757, 0.014916492626070976, 0.012569398619234562, 0.0020141974091529846, 0.006661310326308012, -0.019570332020521164, -0.04414420947432518, -0.001975527498871088, -0.027573319151997566, -0.0012794692302122712, -0.003658508649095893, 0.013329345732927322, 4.2820607632165775e-05, -0.018252192065119743, -0.008863813243806362, -0.035347647964954376, -0.005262468941509724, -0.029617778956890106, -0.01223986316472292, 0.010289555415511131, -0.011130205355584621, -0.012011206708848476, -0.002291611861437559, -0.028810756281018257, -0.03263067081570625, -0.027169806882739067, -0.02407621592283249, -0.042314957827329636, -0.0010844384087249637, -0.0017031568568199873, 0.026739394292235374, -0.015871470794081688, 0.048206232488155365, -0.01826564222574234, 0.013544552028179169, 0.0250311940908432, -0.01223986316472292, 0.017606573179364204, -0.01614047959446907, -0.015414157882332802, -0.02907976321876049, -0.006025779061019421, 0.030209597200155258, -0.006079580634832382, 0.03389500826597214, -0.007303566671907902, -0.016490189358592033, 0.018938163295388222, -0.020807767286896706, -0.00861498061567545, -0.02478908561170101, -0.0324423648416996, -0.014391927048563957, 0.025892019271850586, 0.016893701627850533, 0.019126467406749725, -0.008520827628672123, 0.004065383225679398, 0.05912795662879944, 0.0003244908875785768, 0.004290677607059479, -0.021574441343545914, 0.01786212995648384, -0.03940967097878456, -0.0003314262430649251, -0.012623200193047523, 0.019126467406749725, -0.0007523817475885153, 0.02207210473716259, -0.00046698105870746076, 0.006735287606716156, -0.0027741449885070324, 0.006913505494594574, 0.013712681829929352, -0.01067289151251316, 0.010390433482825756, -0.035105541348457336, -0.004515971522778273, -0.003091910621151328, -0.021251631900668144, 0.0017586397007107735, -0.0336528979241848, -0.025663362815976143, -0.013611804693937302, -0.015575562603771687, -0.02663179114460945, -0.027492616325616837, -0.00029023439856246114, 0.011843076907098293, 0.01778142899274826, -0.01226003933697939, -0.03341079130768776, 0.030505506321787834, -0.015763867646455765, 0.05264486372470856, 0.013033436611294746, 0.011069678701460361, 0.027048753574490547, -0.004462169948965311, -0.0025925645604729652, 0.005558377597481012, 0.004808517638593912, -0.014674386009573936, -0.00837287399917841, 0.017727626487612724, -0.016893701627850533, -0.005060712806880474, -0.008547728881239891, 0.0011836352059617639, -0.039113759994506836, -0.026820097118616104, 0.04002838954329491, 0.0019368574721738696, 0.0018427047180011868, -0.0234305951744318, -0.019314773380756378, -0.02138613536953926, -0.015346906147897243, 0.0026665416080504656, 0.01870950497686863, -0.01714925840497017, -0.019153369590640068, -0.04470912739634514, 0.007438071072101593, 0.0168264489620924, 0.028810756281018257, 0.0014484398998320103, -0.009751539677381516, -0.01610012724995613, 0.014795439317822456, -0.031985048204660416, -0.0031911071855574846, -0.012414718978106976, 0.031070422381162643, -0.004603399429470301, -0.01225331425666809, 0.0125155970454216, -0.0003446664777584374, -0.007821407169103622, -0.006987482309341431, -0.01702820509672165, 0.024170367047190666, 0.004589948803186417, 0.007303566671907902, 0.02415691688656807, 0.01994694210588932, 0.009401828981935978, 0.02098262310028076, -0.000984401092864573, -0.0049463845789432526, -0.02035045437514782, 0.014243973419070244, 0.013241917826235294, -0.0028329903725534678, -0.008366148918867111, -0.01614047959446907, -0.015400707721710205, -0.008271995931863785, -0.0008099662372842431, 0.007955911569297314, -0.009247149340808392, -0.051891639828681946, -0.012004481628537178, 0.023053985089063644, -0.020041095092892647, 0.028380343690514565, -0.010397158563137054, 0.03335699066519737, 0.001646833261474967, 0.035428352653980255, -0.004109097179025412, 0.020363904535770416, -0.008897439576685429, 0.011257984675467014, -0.03209265321493149, 0.006187183782458305, -0.013255368918180466, -0.009569958783686161, -0.0006805061711929739, -0.01630188338458538, -0.03133942931890488, -0.0022277224343270063, 0.007417895365506411, 0.027452265843749046, 0.010464411228895187, 0.009825516492128372, 0.011365587823092937, -0.006002240814268589, 0.017472069710493088, -0.01577731780707836, -0.032792072743177414, 0.013813559897243977, 0.017889032140374184, -0.003024658653885126, 0.017754526808857918, -0.02255631983280182, 0.007350643165409565, 0.010928449220955372, 0.0066512227058410645, -0.0061468323692679405, -0.04626937583088875, 0.03201195225119591, -0.03733830899000168, 0.017727626487612724, 0.010410608723759651, -0.011802725493907928, -0.017673823982477188, -0.024264520034193993, -0.019355125725269318, 0.013759758323431015, 0.0011189051438122988, -0.014405378140509129, 0.018077336251735687, 0.022811876609921455, -0.014284323900938034, 0.010914999060332775, -0.014943393878638744, -0.002076405333355069, 0.005027086939662695, -0.017754526808857918, -0.047291602939367294, 0.0003072575491387397, -0.015844570472836494, 0.02980608493089676, 0.012650100514292717, -0.010444235056638718, 0.0029120114631950855, -0.024130016565322876, -0.03585876524448395, 0.0015661309007555246, -0.011560617946088314, 0.017714176326990128, 0.027949929237365723, 0.0162211824208498, 0.01838669553399086, 0.012212962843477726, -0.021251631900668144, -0.002676629461348057, 0.0013475619489327073, -0.01275770366191864, -0.010914999060332775, -0.008567904122173786, -0.023322992026805878, -0.0024210719857364893, -0.002552213380113244, -0.009489256888628006, 0.020417707040905952, -0.003431533230468631, 0.004532784689217806, 0.005262468941509724, -0.005171678494662046, 0.0031238552182912827, 0.003729123156517744, 0.004216700326651335, 0.008103866130113602, 0.01589837297797203, -0.005494488403201103, -0.024573879316449165, -0.0026329157408326864, -0.0009591816342435777, -0.016772648319602013, -0.040431901812553406, -0.011587519198656082, -0.0004079253994859755, -0.0027068927884101868, 0.024587329477071762, -0.0336528979241848, 0.0057063321582973, -0.026860447600483894, -0.028461044654250145, 0.04339098930358887, -0.007962636649608612, -0.0017014755867421627, 0.04548925161361694, -0.005151502788066864, -0.022018304094672203, -0.0282458383589983, 0.02174929529428482, 0.007464971859008074, -0.02071361429989338, 0.005615541711449623, -0.03139323368668556, 0.014405378140509129, -0.014687836170196533, 0.005010273773223162, -0.01946272887289524, 0.008480477146804333, -0.0007019427139312029, 0.012024656869471073, -0.014956844039261341, 0.021924151107668877, 0.006543619558215141, -0.005087613593786955, -0.0074784220196306705, -0.012488695792853832, 0.011708572506904602, -0.006072855554521084, -0.03416401520371437, -0.008594805374741554, -0.011493366211652756, 0.0031574813183397055, -0.0019217258086428046, -0.01075359433889389, -0.02399551309645176, 0.0014375114114955068, 0.020162148401141167, -0.03211955353617668, 0.0025908832903951406, 0.22004853188991547, -0.009018492884933949, -0.003628245322033763, 0.03981318324804306, -0.0070278337225317955, 0.011110030114650726, 0.027102554216980934, 0.004542872309684753, -0.012011206708848476, -0.0006603305228054523, -0.013093964196741581, 0.021762745454907417, -0.03970557823777199, 0.0063553135842084885, 0.016194280236959457, -0.0022193158511072397, -0.0412658266723156, 0.0027960017323493958, -0.00044890708522871137, -0.04769511520862579, -0.0053835222497582436, -0.00899159163236618, -0.03308798372745514, -0.0003946851647924632, 0.007229589857161045, 0.009220249019563198, -0.013827010989189148, 0.0114126643165946, 0.032227158546447754, -0.011923778802156448, -0.022704273462295532, -0.0007065663230605423, 0.0058744619600474834, -0.020283201709389687, -0.017243411391973495, 0.010518212802708149, 0.014876142144203186, 0.0032465902622789145, 0.020444607362151146, -0.004559685476124287, 0.02263702265918255, -0.009697738103568554, 0.009307675994932652, 0.0008877263753674924, 0.0008810011786408722, 0.03249616548418999, -0.012387817725539207, -0.016476739197969437, -0.01686680130660534, -0.010007097385823727, -0.022690823301672935, 0.010323181748390198, 0.04105062037706375, 0.01923407055437565, -0.0058744619600474834, 0.0023756767623126507, -0.0041998871602118015, -0.0046303002163767815, -0.00019807815260719508, 0.03147393465042114, -0.015320004895329475, 0.031178025528788567, 0.002526993863284588, 0.03596636652946472, -0.027183257043361664, 0.005699606612324715, -0.0024916864931583405, -0.012017931789159775, 0.012831681407988071, -0.017673823982477188, 0.003910703584551811, -0.023739954456686974, -0.009058844298124313, 0.011701847426593304, -0.011540442705154419, -0.020538760349154472, 0.01858845166862011, -0.004912758246064186, -0.0032869414426386356, 0.015683166682720184, 0.022892579436302185, -0.013544552028179169, 0.021090226247906685, -0.00889071449637413, -0.012737528420984745, -0.025448156520724297, -0.012522322125732899, -0.015750417485833168, -0.042718470096588135, 0.01310068927705288, -0.024600781500339508, -0.02515224739909172, -0.008399774320423603, 0.009966745972633362, 0.01458023302257061, -0.001171866082586348, 0.022690823301672935, 0.02988678775727749, -0.008776385337114334, 0.008218194358050823, -0.011143655516207218, -0.013033436611294746, 0.018211841583251953, 0.018857460469007492, -0.02267737314105034, 0.01774107664823532, 0.00669829873368144, 0.003413038793951273, 0.011829626746475697, 0.006812627427279949, 0.019798988476395607, -0.018211841583251953, 0.007666727527976036, -0.01654399186372757, 0.006846253294497728, 0.03311488404870033, -0.012529047206044197, -0.025058094412088394, -0.0016829812666401267, 0.0006918549188412726, 0.02559611015021801, -0.03459442779421806, 0.00012998550664633512, -0.005551652517169714, 0.004468895029276609, -0.023094335570931435, -0.022704273462295532, 0.029752284288406372, 0.020417707040905952, -0.01650363951921463, 0.01899196393787861, -0.014607133343815804, 0.016248082742094994, 0.016234632581472397, -0.016880251467227936, 0.0031927884556353092, 0.0020192412193864584, -0.032469265162944794, 0.020202500745654106, -0.0075523993000388145, 0.013584903441369534, -0.007875208742916584, 0.014997195452451706, -0.003866989864036441, 0.022731175646185875, 0.012488695792853832, 0.01618083007633686, -0.00640911515802145, 0.015320004895329475, 0.00782813224941492, -0.032307859510183334, 0.008742759935557842, -0.005316270515322685, -0.01425742357969284, 0.0011466465657576919, -0.007505322806537151, -0.014163270592689514, -0.016046326607465744, -0.00492620887234807, 0.0117152975872159, -0.03733830899000168, 0.012535772286355495, 0.008581355214118958, -0.00718923844397068, -0.01974518597126007, -0.01023575384169817, -0.17076626420021057, 0.020780866965651512, 0.007337193004786968, -0.011331961490213871, 0.015790769830346107, 0.026456935331225395, 0.033303190022706985, -0.013961514458060265, -0.011520267464220524, -0.0216282419860363, 0.015010645613074303, 0.021883800625801086, -0.049201563000679016, -0.029537077993154526, -0.007976086810231209, 0.014929943718016148, 0.0001640318223508075, -0.0013450399274006486, 0.032388560473918915, 0.015131698921322823, 0.02207210473716259, -0.025448156520724297, 0.011385763064026833, -0.007357368711382151, 0.005124602001160383, 0.007633101660758257, -0.006335138343274593, 0.012394542805850506, 0.011426114477217197, -0.01548140961676836, -0.031151125207543373, -0.0019250884652137756, 0.0017519145039841533, -0.015925273299217224, 0.024466276168823242, -0.00784830842167139, 0.019637582823634148, -0.013853911310434341, -0.020901920273900032, 0.03634297847747803, 0.015535211190581322, 0.028730053454637527, 0.0328458771109581, -0.017445167526602745, -0.008446850813925266, 0.028407244011759758, -0.005205304361879826, -0.011822900734841824, 0.008204743266105652, -0.010760319419205189, 0.023699603974819183, -0.005148140247911215, 0.010888098739087582, -0.0025690263137221336, 0.039517272263765335, 0.014929943718016148, 0.023121235892176628, 0.02247561700642109, -0.0068193525075912476, -0.023982062935829163, -0.003517279401421547, -0.015454509295523167, 0.021359235048294067, -0.023134687915444374, -0.005134690087288618, 0.0076263765804469585, -0.026456935331225395, 0.018050435930490494, -0.015346906147897243, 0.015683166682720184, 0.007929010316729546, -7.707709301030263e-05, 0.011923778802156448, -0.019045766443014145, -0.02110367640852928, 0.00829217117279768, -0.014230522327125072, 0.0344599224627018, 0.013329345732927322, -0.00780123146250844, -0.03451372683048248, 0.03938277065753937, -0.0121188098564744, -0.011816175654530525, 0.005107789300382137, -0.00666803540661931, -0.019772086292505264, -0.005558377597481012, -0.011506816372275352, 0.0064292908646166325, 0.0048286933451890945, -0.03626227751374245, 0.004193162079900503, 7.959904178278521e-05, 0.01515860017389059, 0.011580794118344784, 0.011560617946088314, -0.027411913499236107, 0.003866989864036441, -0.015454509295523167, -0.0013198204105719924, -0.018965063616633415, -0.010807395912706852, 0.009509432129561901, 0.03349149599671364, 0.020525310188531876, 0.0033810941968113184, 0.020928822457790375, 0.03236166015267372, 0.005033812019973993, -0.011405938304960728, 0.01702820509672165, 0.02663179114460945, 0.012340741232037544, 0.011224358342587948, 0.017014754936099052, -0.017794879153370857, -0.0032180079724639654, 0.01790248230099678, -0.01666504517197609, 0.056706883013248444, -0.012535772286355495, -0.0030297024641186, 0.007841583341360092, -0.024331772699952126, -0.029537077993154526, -0.11933194100856781, -0.007142161950469017, 0.016880251467227936, 0.005608816631138325, 0.003281897399574518, 0.027627119794487953, 0.0008116475655697286, 0.021883800625801086, -0.009691013023257256, 0.009825516492128372, -0.013268819078803062, -0.007182513363659382, 0.016436388716101646, -0.012771153822541237, -0.008271995931863785, -0.013665606267750263, 0.016893701627850533, -0.022139357402920723, 0.0031238552182912827, 0.048125527799129486, 0.015293104574084282, -0.009724638424813747, 0.03185054659843445, -0.029859887436032295, 0.02768092229962349, 0.005010273773223162, -0.031823646277189255, 0.0081105912104249, 0.03693479672074318, 0.01478198915719986, -0.0030347462743520737, -0.02079431712627411, 0.02223351038992405, -0.009307675994932652, -0.004559685476124287, -0.02482943795621395, -0.019153369590640068, -1.5263050954672508e-05, 0.02739846333861351, -0.011426114477217197, 0.012421444058418274, -0.015266203321516514, 0.02851484715938568, -0.022583220154047012, 0.003044834127649665, 0.005454136990010738, -0.03650438413023949, 0.0014534838264808059, 0.012226413004100323, -0.004778254311531782, -0.03349149599671364, 0.0055079385638237, -0.044682227075099945, 0.0024362036492675543, 0.03774182125926018, 0.0015627682441845536, 0.011849801987409592, -0.00664113461971283, 0.0016459926264360547, -0.007276665885001421, -0.01458023302257061, 0.01445917971432209, 0.0017956283409148455, 0.006826077587902546, 0.00952960830181837, -0.021318882703781128, -0.012468520551919937, -0.007209414150565863, 0.011722022667527199, 0.020579110831022263, -0.011116755194962025, 0.008836911991238594, -0.02347094751894474, 0.009179897606372833, -0.020162148401141167, 0.011163831688463688, -0.02291947975754738, -0.006419203244149685, 0.004324303474277258, -0.0005661777686327696, -0.0036854094360023737, -0.018696054816246033, -0.006590695586055517, -0.02452007867395878, 0.02523295022547245, 0.013342795893549919, 9.641204087529331e-05, -0.003248271532356739, 0.0013046887470409274, -0.037472814321517944, -0.004267139360308647, 0.006594058126211166, 0.004300765227526426, -0.01698785461485386, -0.0067756385542452335, 0.02980608493089676, 0.0176200233399868, 0.004677376244217157, -0.006240985356271267, -0.0028817481361329556, -0.008103866130113602, -0.0034702031407505274, -0.05347878858447075, 0.0198258887976408, 0.001995702972635627, 0.012334016151726246, 0.013194842264056206, -0.01147319097071886, 0.025259850546717644, -0.019220620393753052, -0.02146683819591999, -0.0027926391921937466, -0.02387445978820324, 0.005578553304076195, -0.018010085448622704, -0.016369136050343513, -0.023565100505948067, -0.017162710428237915, -0.008702408522367477, -0.02043115720152855, 0.00457649864256382, -0.0014249016530811787, 0.021359235048294067, 0.007707078941166401, 0.01147319097071886, -0.009953295812010765, -0.030989719554781914, 9.656966722104698e-05, 0.017969733104109764, 0.014674386009573936, -0.004996823612600565, -0.013988415710628033, -0.009327852167189121, -0.034029509872198105, -0.006600783672183752, 0.005639079958200455, -0.005386884789913893, 0.027250509709119797, -0.0014501211699098349, 0.014109469018876553, -0.0021487013436853886, 0.04626937583088875, -0.01049803663045168, -0.009428730234503746, 0.016490189358592033, -0.0216282419860363, 0.0022109095007181168, 0.010760319419205189, -0.012824956327676773, -0.013524376787245274, 0.016557442024350166, -0.00020585415768437088, 0.003379412926733494, 0.025945819914340973, -0.009422005154192448, -0.008850363083183765, -0.00044764610356651247, -0.01974518597126007, 0.035509053617715836, -0.0074784220196306705, 0.01445917971432209, -0.010148325935006142, 0.01470128633081913, -0.020928822457790375, -0.0139211630448699, -0.00915299728512764, 0.012004481628537178, -0.006553707178682089, -0.024815987795591354, -0.0026446848642081022, -0.016113579273223877, 0.00108611979521811, 0.011083128862082958, 0.009502707049250603, -0.004152810666710138, -0.003897253191098571, 0.0030717349145561457, 0.012091909535229206, 0.005891275126487017, 0.013773209415376186, -0.035347647964954376, 0.02800373174250126, -0.013369697146117687, -0.005901362746953964, -0.01255594752728939, 0.0188305601477623, 0.04339098930358887, -0.0044218190014362335, 0.010719968006014824, 0.013786659575998783, -0.004092284012585878, 0.008742759935557842, 0.009677562862634659, 0.004035119898617268, -0.009623760357499123, 9.861875150818378e-05, 0.024331772699952126, 0.01400186587125063, -0.016960954293608665, 0.00013713102089241147, 0.034271616488695145, 0.02511189505457878, 0.004882494919002056, 0.013746308162808418, 0.0180235356092453, -0.023175038397312164, 0.002120119286701083, -0.005723144859075546, -0.022690823301672935, -0.03088211640715599, -0.005877824500203133, 0.02207210473716259, 0.01425742357969284, -0.00901176780462265, 0.01810423843562603, 0.01986623927950859, -0.011110030114650726, 0.005393610335886478, 0.006752100307494402, -0.028057532384991646, -0.01075359433889389, 0.03357219696044922, -0.001508966670371592, 0.0412658266723156, 0.02452007867395878, 0.006072855554521084, 0.02247561700642109, 0.015306554734706879, 0.013288994319736958, 0.0013215017970651388, -0.001834298251196742, 0.0084132244810462, -0.008924339897930622, 0.008218194358050823, -0.036907896399497986, 0.0025438067968934774, 0.00802988838404417, -0.01826564222574234, -0.004832055885344744, 0.0025135434698313475, -0.026147576048970222, 0.04024359583854675, 0.01119745709002018, -0.009926394559442997, -0.004361291881650686, 0.0006784045253880322, 0.03677339106798172, 0.014795439317822456, 0.025300201028585434, 0.006947131361812353, -0.004122547339648008, 0.018090786412358284, -0.018090786412358284, 0.012461795471608639, 0.002027647802606225, -0.001886418554931879, -0.004337753634899855, 0.004943021573126316, 0.0340564101934433, -0.027169806882739067, -0.016449838876724243, 0.03572425991296768, 0.005699606612324715, 0.023053985089063644, -0.006156920455396175, -0.01081412099301815, 0.006106481421738863, 0.04193834587931633, 0.005454136990010738, 0.013255368918180466, -0.020565660670399666, 0.02018904872238636, 0.020377354696393013, -0.02367270365357399, -0.020969172939658165, 0.0050371745601296425, -0.0021419760305434465, 0.0027371563483029604, -0.026618340983986855, 0.0029305056668817997, -0.005595366004854441, -0.020848119631409645, 0.01400186587125063, -0.017566220834851265, -0.017687276005744934, 0.013362972065806389, -0.021399585530161858, -0.004478983115404844, -0.000237693777307868, -0.013759758323431015], "e82c6ebc-eedb-4585-b85a-b25eb370b24c": [0.0005884869024157524, -0.020346766337752342, -0.004877000581473112, 0.008590555749833584, -0.009503724984824657, 0.0307636596262455, -0.01969739980995655, -0.009415790438652039, -0.032035332173109055, -0.027787404134869576, 0.007839728146791458, 0.0159906093031168, 0.011708860285580158, -0.003130141645669937, 0.0014213311951607466, 0.013386385515332222, 0.031575366854667664, -0.011404470540583134, 0.03073660284280777, -0.02449999563395977, -0.0037439942825585604, -0.013278158381581306, -0.009348148480057716, 0.021212585270404816, -0.006419242359697819, 0.028734395280480385, 0.016802316531538963, -0.01875041052699089, 0.017113469541072845, -0.013738125562667847, -0.005556804593652487, 0.018615126609802246, 0.008813775144517422, -0.009977220557630062, -0.03690556809306145, -0.00445085484534502, -0.0005381780210882425, -0.01500303391367197, 0.014326612465083599, 0.023079508915543556, 0.011844144202768803, -0.007000965066254139, -0.01572004146873951, -4.2038554965984076e-05, -0.026502203196287155, 0.015084204263985157, 0.01724875345826149, -0.025433456525206566, -0.015341244637966156, 0.004515115171670914, 0.011932079680263996, 0.019413303583860397, -0.028274428099393845, 0.008793482556939125, -0.0049412609077990055, 0.0026363537181168795, 0.0047755371779203415, 0.02037382312119007, -0.013217280618846416, 0.017776362597942352, -0.0033465963788330555, 0.01526007428765297, 0.005279471632093191, -0.004917585756629705, -0.038096070289611816, 0.0016902087954804301, -0.019183320924639702, 0.0044576190412044525, -0.019548587501049042, -0.016125893220305443, 0.03252235800027847, 0.010667170397937298, 0.007853256538510323, 0.01096479594707489, 0.008705548010766506, -0.019927384331822395, -0.00790737010538578, -0.009341384284198284, -0.023255378007888794, 0.00034011329989880323, -0.010498065501451492, -0.02981667034327984, -0.005235504359006882, 0.015977080911397934, 0.01654527522623539, -0.015557699836790562, 0.01969739980995655, 0.023904744535684586, -0.020454993471503258, -0.017992818728089333, 0.0045996676199138165, 0.0167887881398201, 0.017898118123412132, 0.012229705229401588, -0.01154651865363121, -0.006865680683404207, -0.01526007428765297, 0.009348148480057716, -0.007487988565117121, -0.020603805780410767, -0.03290115296840668, -0.018588069826364517, -0.02957315742969513, -0.008204995654523373, -0.024919375777244568, 0.01139094214886427, -0.002264321781694889, 0.0011735917069017887, 0.015287131071090698, -0.02037382312119007, -0.002719215350225568, 0.029843727126717567, -0.011282714083790779, -0.03441633656620979, -0.01102567370980978, -0.01981915719807148, 0.025744611397385597, -0.014137214049696922, -0.005073162727057934, -0.019399775192141533, -0.0040754410438239574, 0.020576748996973038, -0.0022305005695670843, -0.02981667034327984, -0.0027800933457911015, 0.023782987147569656, -0.005823991261422634, -0.024445882067084312, -0.006480120122432709, 0.005414756014943123, 0.031331855803728104, 0.01773577742278576, 0.016220593824982643, -0.006229843944311142, -0.0018601597985252738, 0.023011866956949234, -0.04058530181646347, -0.005573715083301067, -0.028707338497042656, -0.031521253287792206, 0.014516009949147701, 0.010396601632237434, -0.014529538340866566, -0.026583373546600342, -0.024351181462407112, 0.021767251193523407, 0.02707039751112461, 0.000484487070934847, -0.005702235270291567, 0.00553651200607419, 0.015300659462809563, -0.014488953165709972, 0.02413472719490528, -0.012581444345414639, 0.018669240176677704, -0.005499308463186026, 0.031521253287792206, -0.005583861377090216, 0.0011769738048315048, -0.014827163890004158, 0.024581165984272957, 0.024905847385525703, 0.016964657232165337, -0.011918550357222557, 0.0020901430398225784, 0.027232738211750984, -0.004833033308386803, -0.0032434421591460705, -0.02067144773900509, -0.010714519768953323, 0.02263307012617588, 0.03168359398841858, -0.03863720968365669, 0.011478876695036888, -0.0150300906971097, 0.013095524162054062, 0.03373991698026657, 0.01783047616481781, -0.016991714015603065, 0.00524565065279603, -0.022673655301332474, -0.019859742373228073, 0.043020423501729965, 0.0076841507107019424, 0.004917585756629705, -0.0028832475654780865, -0.019656814634799957, -0.005397845525294542, -0.0008641287568025291, 0.014732465147972107, 0.002047866815701127, 0.0004950561560690403, -0.02464880794286728, -0.026109877973794937, -0.6350788474082947, -0.01780341938138008, -0.01814163103699684, -0.012486744672060013, -0.011147430166602135, 0.006960379425436258, 0.0033567429054528475, -0.0058341375552117825, -0.002220354275777936, -0.004041619598865509, -0.02636691927909851, -0.00880701094865799, 0.0004646171582862735, -0.01096479594707489, -0.02835559844970703, -0.0010061772773042321, 0.010897153988480568, -0.015706513077020645, 0.00437306659296155, -0.00819823145866394, -0.008834067732095718, 0.0031944015063345432, 0.006699956953525543, -0.007440639194101095, -0.005066398531198502, -0.00863790512084961, 0.007751793134957552, 0.00880701094865799, 0.020022083073854446, 0.026921585202217102, -0.019886799156665802, 0.0190886203199625, 0.020996131002902985, 0.02355300448834896, 0.0520574152469635, -0.018209272995591164, -0.034795135259628296, 0.020536163821816444, 0.0025957683101296425, 0.01221617590636015, -0.017045827582478523, -0.02220016159117222, 0.016004137694835663, -0.0038285469636321068, -0.0022423379123210907, 0.000448129401775077, 0.010545414872467518, -0.014597181230783463, 0.009287270717322826, 0.007975012063980103, -0.009990748949348927, 0.005445194896310568, -0.007501516956835985, -0.010004277341067791, -0.010085447691380978, -0.004410269670188427, 0.030871886759996414, -0.0024520286824554205, 0.010396601632237434, -0.006814948748797178, -0.003473425516858697, 0.02144256792962551, -0.0019666962325572968, -0.01523301750421524, 0.0006946005742065609, 0.014258969575166702, -0.011600632220506668, 0.0024469555355608463, 0.01801987551152706, -0.005999860819429159, 0.009003173559904099, 0.0011144047603011131, 0.0045962855219841, -0.014975977130234241, 0.010430422611534595, 0.013325507752597332, 0.02753036469221115, -0.028896735981106758, 0.0010120959486812353, 0.018736882135272026, -0.0012792826164513826, -0.005468869581818581, -0.022213689982891083, -0.01743815280497074, 0.02119905687868595, -0.009652538225054741, -0.007251240778714418, 0.03839369863271713, -0.002404679311439395, 0.006439534947276115, 0.001792517607100308, 0.0204008799046278, -0.006300868466496468, 0.00857702735811472, 0.03257647156715393, 0.005489162169396877, -0.01773577742278576, 0.002758109476417303, -0.0006299177184700966, -0.01630176417529583, -0.007014493457973003, -0.007460931781679392, 0.017668135464191437, -0.014286027289927006, -0.002966109197586775, -0.012053835205733776, -0.03801489993929863, -0.0004722269077319652, 0.051976244896650314, -0.039286572486162186, -0.023065980523824692, -0.011458584107458591, -0.030574262142181396, 0.0007136249332688749, 0.034632790833711624, -0.01743815280497074, -0.0010907300747931004, -0.004197197034955025, 0.036472659558057785, -0.004768772982060909, 0.013569019734859467, -0.010870097205042839, 0.007440639194101095, -0.01535477302968502, 0.019318604841828346, 0.02857205457985401, 0.01984621398150921, -0.000134438814711757, -0.013853116892278194, -0.02886967919766903, 0.0245270524173975, -0.010403365828096867, 0.009145221672952175, 0.00478568347170949, 0.02266012690961361, -0.013474320992827415, 0.03138596937060356, 0.013251101598143578, 0.026894528418779373, -0.02207840420305729, -0.013447264209389687, -0.0029322882182896137, 0.009963692165911198, 0.005019049160182476, -0.011397706344723701, -0.02008972503244877, -0.018452784046530724, -0.0002851540339179337, -0.04385918378829956, 0.014827163890004158, -0.02159138210117817, -0.005539894104003906, 0.0007212346536107361, 0.00428851367905736, 0.005421520210802555, -0.004985228180885315, -0.029843727126717567, 0.009754001162946224, 0.023417720571160316, -0.011762973852455616, -0.00012355265789665282, 0.0034666613209992647, -0.04358861595392227, 0.018033403903245926, 0.021510211750864983, -0.01003133412450552, -0.009003173559904099, 0.033198777586221695, -0.009415790438652039, -0.042614568024873734, 0.010193675756454468, 0.0013705994933843613, -0.004988610278815031, 0.055737148970365524, 0.00040141402860172093, -0.002287996467202902, -0.024784091860055923, -0.0018787613371387124, -0.004961553495377302, 0.006814948748797178, -0.018696296960115433, 0.01488127838820219, -0.01712699793279171, -0.008245580829679966, 0.02003561146557331, -0.005854430142790079, 0.006314396858215332, 0.007670622318983078, 0.010450715199112892, 0.03371286019682884, -0.01102567370980978, 0.014461896382272243, -0.009530781768262386, 0.00351739302277565, 0.00265326420776546, 0.006037063896656036, 0.017884589731693268, 0.03441633656620979, -0.002433427143841982, 0.0006100478349253535, 0.007947955280542374, 0.016897015273571014, 0.02287658303976059, -0.003909717779606581, 0.001647932454943657, -0.03652677312493324, 0.005719145759940147, -0.0012674451572820544, 0.02379651553928852, -0.01709994114935398, -0.0008197386050596833, -0.022227218374609947, -0.002585622016340494, 0.0028342069126665592, 0.023985914885997772, 0.03195416182279587, 0.008245580829679966, -0.008292930200695992, -0.002972873393446207, 0.00767738651484251, 0.002551801037043333, -0.010389837436378002, -0.003520775120705366, -0.010024569928646088, -0.009956927970051765, -0.001148225856013596, -0.0010518358321860433, 0.039719484746456146, 0.013528434559702873, -0.022213689982891083, 0.018425727263092995, 0.002548418939113617, -0.007352704182267189, -0.009666066616773605, 0.009896050207316875, 0.010146325454115868, 0.01957564428448677, -0.011580339632928371, 0.0448332317173481, -0.03149419650435448, -0.00587134063243866, -0.004156611394137144, 0.04253339767456055, -0.0190886203199625, -0.0118644367903471, -0.007278297562152147, 0.0031013935804367065, -0.0006612022407352924, 0.023187736049294472, 0.02547404170036316, -0.005830755457282066, -0.011147430166602135, -0.022944224998354912, -0.011208307929337025, 0.004085587337613106, -0.04504968598484993, 0.005688706878572702, 0.006862298585474491, 0.01296700444072485, 0.024148255586624146, 0.018520426005125046, -0.004447472747415304, 0.02290363982319832, 0.015895910561084747, 0.04991992190480232, 0.011600632220506668, 0.014286027289927006, 0.01877746731042862, -0.022863054648041725, -0.029383759945631027, -0.02440529502928257, -0.011235364712774754, 0.022010762244462967, -0.005938982591032982, 0.009348148480057716, -0.0005030886386521161, 0.015327716246247292, -0.012080891989171505, 0.020238537341356277, 0.013386385515332222, -0.029491987079381943, -0.02183489315211773, 0.025027602910995483, 0.013623133301734924, 0.00781267136335373, -0.023512419313192368, -0.025244059041142464, 0.020333237946033478, -0.00938873365521431, 0.04293924942612648, -0.018669240176677704, 0.012229705229401588, 0.03241413086652756, -0.016951128840446472, -0.0025433457922190428, -0.00013306483742780983, 0.011167722754180431, -0.0174922663718462, 0.03493041917681694, -0.01783047616481781, 0.010788926854729652, 0.002825751667842269, -0.020292650908231735, 0.012283818796277046, 0.020914960652589798, -0.002536581363528967, -0.017789890989661217, -0.006882591173052788, 0.006787891965359449, -0.014204856008291245, -0.0012277053901925683, -0.03300938010215759, -0.0013705994933843613, -0.0007969093276187778, -0.0016344039468094707, -0.00387251446954906, 0.00551283685490489, 0.010836276225745678, 0.01561181340366602, 0.0012370062759146094, -0.02146962471306324, -0.007961483672261238, -0.008739368990063667, 0.005698853172361851, 0.09843289107084274, 0.020684976130723953, -0.019562115892767906, -0.003043897682800889, -0.001900745090097189, 0.009963692165911198, -0.017059355974197388, -0.030330749228596687, 0.023566532880067825, 0.011289478279650211, 0.010410130023956299, -0.012594972737133503, 0.012459687888622284, -0.006537615787237883, 0.011871200986206532, -0.0026600284036248922, -0.0028528086841106415, 0.016382934525609016, 0.0034226938150823116, 0.0056075360625982285, 0.01608530804514885, 0.012182354927062988, 0.01743815280497074, 0.005918690003454685, -0.01831750012934208, -0.017397567629814148, 0.01593649573624134, -0.00021169886167626828, 0.01923743449151516, -0.0188992228358984, -0.007893841713666916, 0.02389121614396572, 0.03330700471997261, 0.01630176417529583, -0.012168826535344124, 0.006311014760285616, 0.0069671436212956905, 0.017302867025136948, 0.003327994840219617, -0.005035959649831057, 0.020387351512908936, 0.010809219442307949, 0.01593649573624134, -0.009151985868811607, 0.011323299258947372, -0.0026634105015546083, -0.010051626712083817, -0.007609744556248188, -0.04015239328145981, -0.015341244637966156, 0.03655382990837097, -0.0063583641313016415, -0.010531886480748653, -0.013413443230092525, 0.029140247032046318, 0.012926419265568256, 0.002364093903452158, -0.00024055247195065022, -0.005123894661664963, 0.02284952625632286, -0.009321091696619987, 0.008982880041003227, 0.025514626875519753, -0.007264769170433283, -0.03141302615404129, -0.04096410050988197, -0.01500303391367197, -0.012926419265568256, -0.009490196593105793, 0.006896119564771652, -0.006940086837857962, -0.004873618483543396, -0.025068189948797226, 0.002577166771516204, 0.010173383168876171, 0.008360572159290314, 0.02156432531774044, -0.02073908969759941, -0.0059795682318508625, -0.026042236015200615, -0.008786718361079693, -0.028328541666269302, 0.004315570462495089, -0.02501407451927662, -0.015828268602490425, 0.004021327011287212, 0.018087517470121384, 0.013947815634310246, -0.04085587337613106, 0.0037034088745713234, -0.01313611026853323, 0.022795412689447403, 0.0167887881398201, -0.015544171445071697, 0.009233156219124794, -0.017992818728089333, -0.006172348279505968, 0.007278297562152147, -0.011959136463701725, -0.021280227228999138, 0.010768634267151356, -0.04266868159174919, -0.003514010924845934, 0.007839728146791458, 0.026556316763162613, -0.014110157266259193, 0.009409026242792606, 0.013386385515332222, -0.015977080911397934, -0.030547205358743668, 0.009517253376543522, -0.022984810173511505, 0.00445085484534502, -0.011627689003944397, 0.013481085188686848, -0.004613196011632681, 0.0064733559265732765, 0.00015082090976648033, 0.017762834206223488, -0.0054959263652563095, -0.013697540387511253, -0.029708441346883774, -0.0008239662274718285, 0.013575783930718899, -0.027543893083930016, -0.006233226042240858, -0.002112126909196377, -0.00877995416522026, 0.010362780652940273, 0.013575783930718899, 0.023065980523824692, 0.012053835205733776, 0.0014517700765281916, -0.02156432531774044, -0.015368301421403885, -0.0076232729479670525, -0.020874373614788055, -0.004369684495031834, -0.005479015875607729, 0.015273602679371834, -0.025988122448325157, -0.015111261047422886, 7.315791776818514e-07, -0.03961125761270523, 0.011722388677299023, -0.027016283944249153, -0.02758447825908661, 0.007143013644963503, -0.008421450853347778, -0.011708860285580158, -0.0061013237573206425, -0.030357807874679565, -0.029167305678129196, -0.009726944379508495, 0.002754727378487587, -0.031142456457018852, -0.0032079301308840513, -0.01620706543326378, 0.02563638426363468, -0.012249997816979885, 0.03687851130962372, -0.023931801319122314, 0.012960240244865417, 0.013359328731894493, -0.014367197640240192, 0.007724735885858536, -0.031331855803728104, -0.02486526221036911, -0.031575366854667664, -0.021861949935555458, 0.03214355930685997, 0.020225008949637413, 0.01938624680042267, -0.012074127793312073, -0.00767738651484251, 0.023444777354598045, -0.011938843876123428, -0.012892598286271095, -0.014326612465083599, -0.040937043726444244, -0.027733290567994118, 0.0007453321595676243, -0.0018703060923144221, 0.008949059061706066, -0.019535059109330177, 0.013907230459153652, 0.06547762453556061, -0.0018432491924613714, -0.0003993001882918179, -0.020130310207605362, 0.013792239129543304, -0.010653642006218433, 0.003233295865356922, -0.00010415837459731847, 0.009902814403176308, 0.0036729699932038784, 0.020806731656193733, -0.005874722730368376, 0.011830615811049938, -0.006720250006765127, -0.004907439462840557, 0.016315292567014694, -0.0020597041584551334, -0.016437048092484474, -0.02067144773900509, -0.017113469541072845, -0.0055466582998633385, -0.03398342803120613, 0.013142874464392662, -0.026840414851903915, -0.006277193780988455, -0.002402988262474537, -0.010477772913873196, -0.028247371315956116, -0.01279789861291647, -0.008313222788274288, 0.018696296960115433, 0.012594972737133503, -0.011532990261912346, -0.02462175115942955, 0.007197127211838961, -0.02275482751429081, 0.051056310534477234, 0.0006679664365947247, 0.012290582992136478, 0.009760765358805656, -0.011790030635893345, 0.005022431258112192, -0.0015955097042024136, 0.013156402856111526, -0.024540580809116364, 0.031331855803728104, -0.0002756418543867767, -0.010917446576058865, 0.003984123934060335, -0.023133622482419014, -0.008664961904287338, -0.04810711368918419, -0.031304799020290375, 0.014705408364534378, 0.004116026218980551, -0.009165514260530472, -0.00524565065279603, -0.008651433512568474, -0.030871886759996414, 0.00767738651484251, -0.0006523241754621267, 0.016626445576548576, -0.008150882087647915, -0.030871886759996414, -0.03706790879368782, 0.014083100482821465, 0.009179042652249336, 0.020225008949637413, 0.020346766337752342, -0.014597181230783463, -0.03701379522681236, 0.006869062781333923, -0.016125893220305443, -0.010714519768953323, -0.0030641905032098293, 0.024662336334586143, 0.002330272924154997, -0.0015633796574547887, 0.008441743440926075, 0.010768634267151356, -0.021185528486967087, -0.0072850617580115795, -0.022159576416015625, 0.02605576440691948, 0.00854997057467699, 0.022470729425549507, 0.022930696606636047, 0.0281391441822052, 0.005336967296898365, 0.017316395416855812, -0.004176903981715441, 0.00322653166949749, -0.019426831975579262, 0.0006844542222097516, 0.012270290404558182, 0.022917168214917183, -0.006476738024502993, -0.015760626643896103, -0.010890389792621136, 9.834537922870368e-05, 0.010646877810359001, 0.00039951156941242516, 0.005130658857524395, -0.05600772053003311, -0.028057973831892014, 0.017776362597942352, -0.02547404170036316, 0.016234122216701508, 0.0027868575416505337, 0.020752618089318275, -0.0033178485464304686, 0.037419650703668594, -0.008820539340376854, 0.0293567031621933, -0.01856101304292679, 0.010464244522154331, -0.019426831975579262, 0.015165374614298344, 0.004484675824642181, -0.021239642053842545, 0.02272777073085308, -0.01816868782043457, -0.02125317044556141, 0.006520705297589302, 0.012168826535344124, 0.01734345220029354, 0.0033635071013122797, 0.015733569860458374, 0.020103253424167633, 0.011188015341758728, 0.009368441067636013, -0.010755105875432491, -0.02367476001381874, 0.021212585270404816, 0.019710928201675415, 0.007176834624260664, 0.012195883318781853, -0.013345800340175629, 0.013054938986897469, -3.604059384088032e-05, 0.014110157266259193, 0.0026651015505194664, -0.04545554146170616, 0.02464880794286728, -0.021699609234929085, 0.018114574253559113, 0.010166618973016739, -0.000931770948227495, -0.0181957446038723, -0.03233295679092407, -0.015178903937339783, 0.010105740278959274, 0.0017265664646402001, -0.0038657502736896276, 0.026285748928785324, 0.008468800224363804, -0.011661510914564133, 0.0133187435567379, -0.02418884076178074, 6.75893243169412e-05, 0.015327716246247292, -0.015111261047422886, -0.0550607293844223, 0.010667170397937298, -0.008536442182958126, 0.033469345420598984, 0.013947815634310246, -0.017302867025136948, -0.006919794250279665, -0.021550796926021576, -0.037392593920230865, -0.0009131693514063954, -0.00468083843588829, 0.036256205290555954, 0.041640520095825195, 0.024662336334586143, 0.019886799156665802, 0.035065703094005585, -0.021036716178059578, 0.0005026658764109015, 0.00854997057467699, -0.013866645283997059, -0.010849804617464542, 0.009239920414984226, -0.012074127793312073, 0.015057147480547428, -0.020698504522442818, -0.00900993775576353, 0.012635557912290096, 0.0007774622063152492, 0.0060100071132183075, -0.0005538202822208405, 0.0035816531162708998, 0.01515184622257948, -0.010389837436378002, -0.01232440397143364, 0.00588825112208724, 0.0273409653455019, -0.006693192757666111, -0.010410130023956299, -0.023106565698981285, -0.00930079910904169, -0.004247928503900766, -0.017140526324510574, -0.021144943311810493, -0.01157357543706894, -0.013934287242591381, 0.020914960652589798, -0.02770623378455639, 0.007345939986407757, -0.019034506753087044, -0.018939808011054993, 0.03842075541615486, -0.007176834624260664, 0.002264321781694889, 0.03731142356991768, -0.001143998233601451, -0.017965760082006454, -0.009977220557630062, 0.0140695720911026, 0.010220732539892197, -0.03162948042154312, 0.006852152291685343, -0.027868574485182762, 0.014340140856802464, -0.0034379134885966778, 0.0014433148317039013, -0.030384864658117294, 0.0014872822212055326, -0.006182494573295116, -0.0030523529276251793, -0.016220593824982643, 0.02406708523631096, 0.013832824304699898, 0.009381969459354877, -0.00632454315200448, 0.008292930200695992, -0.004214107524603605, 0.010166618973016739, -0.02229486033320427, -0.009415790438652039, -0.006710103712975979, 0.012980532832443714, 0.011952372267842293, -0.0015878999838605523, -0.005671796388924122, -0.0003988774260506034, 0.00493111414834857, -0.03327994793653488, -0.012337932363152504, 0.21439862251281738, -0.01296700444072485, -0.013420207425951958, 0.0339563712477684, -0.0025602562818676233, 0.012682907283306122, 0.02857205457985401, -0.0015160301700234413, -0.020725561305880547, -0.002330272924154997, 0.006727014202624559, 0.021861949935555458, -0.020779674872756004, 0.005225357599556446, 0.016964657232165337, 0.00645306333899498, -0.03969242796301842, 0.0007279989076778293, -0.0020901430398225784, -0.057793471962213516, -0.0030540439765900373, -0.02132081240415573, -0.012101184576749802, -0.006253518629819155, 0.005952510982751846, 0.002610987750813365, -0.0011059495154768229, -0.0055466582998633385, 0.03371286019682884, -0.01244615949690342, -0.025514626875519753, -0.004778919275850058, 0.0008725840016268194, -0.017898118123412132, -0.012168826535344124, 0.00757592311128974, 0.025189945474267006, 0.008583791553974152, 0.02088790200650692, -0.010525122284889221, 0.010186911560595036, 0.0022846143692731857, 0.02309303730726242, -0.0013021117774769664, 0.005874722730368376, 0.0408017598092556, -0.0041397009044885635, -0.008076475001871586, -0.022808941081166267, -0.00037224331754259765, -0.030222522094845772, 0.005719145759940147, 0.05562892183661461, 0.03712202608585358, -0.01113390177488327, -0.011397706344723701, -0.010119268670678139, 0.003980741836130619, -0.006808184552937746, 0.017478737980127335, -0.023769458755850792, 0.02654278837144375, -0.0043121883645653725, 0.028247371315956116, -0.023404192179441452, 0.004575992934405804, -0.004985228180885315, 0.007927662692964077, 0.012500273063778877, -0.027138039469718933, -0.019223906099796295, -0.03027663566172123, -0.009524017572402954, 0.0005669259699061513, -0.005942364688962698, -0.014813635498285294, 0.0188992228358984, -0.020197952166199684, -0.007630037143826485, -0.006838623434305191, 0.02483820542693138, -0.008874652907252312, 0.027638591825962067, -0.005999860819429159, -0.0166940875351429, -0.038096070289611816, -0.005462105385959148, -0.01642351970076561, -0.03706790879368782, 0.0033550518564879894, -0.02100965939462185, -0.028761452063918114, 0.0002314630546607077, -0.010944503359496593, 0.004346009809523821, -0.011397706344723701, 0.014935391955077648, 0.02067144773900509, 0.0008315759478136897, -0.005604153964668512, -0.019616229459643364, -0.019981497898697853, 0.013974872417747974, 0.006544379983097315, -0.025798724964261055, 0.00012545508798211813, 0.01868276856839657, 0.005776641424745321, 0.01538182981312275, 0.005901779513806105, 0.029032019898295403, -0.008042654022574425, -0.0018804523861035705, -0.02067144773900509, 0.00921962782740593, 0.029735498130321503, -0.019291548058390617, -0.02731390856206417, -0.011012145318090916, 0.0074271103367209435, 0.02144256792962551, -0.01611236482858658, -0.0003752026823349297, 0.005225357599556446, -0.007785614114254713, -0.012162062339484692, -0.011857672594487667, 0.018033403903245926, 0.013643425889313221, -0.00880701094865799, 0.005431666504591703, -0.054276078939437866, 0.00428851367905736, 0.012750549241900444, -0.01180355902761221, 0.00863790512084961, -0.006923176348209381, -0.026678072288632393, 0.028923792764544487, -0.01773577742278576, 0.004613196011632681, -0.0022372647654265165, -0.0008167792111635208, 0.01313611026853323, 0.006510559003800154, -0.0028595728799700737, 0.018182216212153435, -0.01003133412450552, 0.0042208717204630375, -0.01067393459379673, -0.03866426646709442, 0.01465129479765892, -0.004511733073741198, -0.01215529814362526, -0.0003982432826887816, -0.011661510914564133, -0.008597319945693016, -0.021970177069306374, 0.0007191208424046636, 0.024242954328656197, -0.036256205290555954, 0.009605188854038715, 0.007562394719570875, 0.0028578818310052156, -0.007961483672261238, -0.013866645283997059, -0.17218992114067078, 0.027611535042524338, 0.014894806779921055, -0.012331168167293072, 0.01914273388683796, 0.023160679265856743, 0.034335166215896606, -0.004782301373779774, 0.009030230343341827, -0.016288235783576965, 0.01442131120711565, 0.00907081551849842, -0.03890777751803398, -0.024513524025678635, -0.0003426498733460903, 0.01945388875901699, -0.012730256654322147, 0.014516009949147701, 0.033415231853723526, 0.024080613628029823, 0.017992818728089333, -0.010998616926372051, 0.02178077958524227, 0.0001856988965300843, -0.009706651791930199, 0.004657163750380278, -0.0028612639289349318, 0.019399775192141533, 0.005874722730368376, -0.017898118123412132, -0.025095246732234955, 0.00828616600483656, -0.010728048160672188, -0.0204008799046278, 0.04532025381922722, 0.0065545267425477505, 0.00967959500849247, 0.002940743463113904, -0.013853116892278194, 0.017113469541072845, 0.018736882135272026, 0.02226780354976654, 0.02811208739876747, -0.001039152848534286, -0.0018567775841802359, 0.03774433210492134, -0.004393359180539846, -0.025406399741768837, 0.014556595124304295, -0.009645774029195309, 0.02220016159117222, -0.010180147364735603, 0.02673218585550785, -0.0009960309835150838, 0.02600165084004402, 0.010511593893170357, 0.006835241336375475, 0.00816441047936678, -0.017397567629814148, -0.015219489112496376, 0.0029289061203598976, -0.006811566650867462, 0.014015458524227142, -0.011647982522845268, -0.005448576994240284, 0.01009221188724041, -0.011722388677299023, 0.023133622482419014, -0.02168608084321022, 0.012973768636584282, -0.012277054600417614, 0.014083100482821465, 0.02862616814672947, -0.00861084833741188, -0.009841935709118843, -0.0010205513099208474, -0.01780341938138008, 0.027570949867367744, 0.010944503359496593, -0.01180355902761221, -0.027787404134869576, 0.035038646310567856, -0.010579235851764679, -0.013014353811740875, 0.0008569417987018824, 0.02073908969759941, -0.01255438756197691, -0.00877995416522026, -0.014461896382272243, 0.006770981475710869, 0.02125317044556141, -0.02816620096564293, -0.011357121169567108, 0.0013486158568412066, 0.006686428561806679, 0.01914273388683796, 0.020252065733075142, -0.021144943311810493, 0.009720180183649063, -0.01615295000374317, 0.001828029751777649, -0.018709825351834297, -0.0036120919976383448, 0.012764077633619308, 0.0333881750702858, 0.030574262142181396, 0.0004191701009403914, 0.019710928201675415, 0.01596355251967907, 0.01200648583471775, -0.006940086837857962, 0.008326751179993153, 0.01957564428448677, 0.00828616600483656, 0.010471008718013763, 0.0188992228358984, -0.0062974863685667515, -0.017018770799040794, 0.002908613532781601, -0.023742401972413063, 0.060823842883110046, -0.014177799224853516, 0.0007499826024286449, 0.0021408747415989637, -0.004149847198277712, -0.027449194341897964, -0.11407175660133362, -0.0076232729479670525, 0.021997233852744102, 0.010930974967777729, -0.009686359204351902, 0.020103253424167633, -0.014258969575166702, 0.018520426005125046, -0.004545554053038359, 0.016098836436867714, -0.006321161054074764, -0.028463825583457947, -0.0009199335472658277, 0.0054959263652563095, 0.0020630862563848495, -0.02862616814672947, 0.008631140924990177, -0.021307284012436867, -0.0029221419245004654, 0.035985637456178665, 0.0029255240224301815, -0.011411234736442566, 0.025271115824580193, -0.023444777354598045, 0.016288235783576965, 0.008002068847417831, -0.02343124896287918, 0.0015904365573078394, 0.03655382990837097, 0.006940086837857962, -0.012716728262603283, -0.01308875996619463, 0.013785474933683872, -0.008624376729130745, -0.01009221188724041, -0.02596106566488743, -0.03804195672273636, -0.0042208717204630375, 0.014813635498285294, -0.02144256792962551, 0.016437048092484474, -0.015895910561084747, 0.019995026290416718, -0.024445882067084312, 0.011769738048315048, 0.00805618241429329, -0.028761452063918114, -5.236983997747302e-05, 0.01290612667798996, -0.015855325385928154, -0.032738812267780304, 0.017898118123412132, -0.04101821407675743, -0.0009672830929048359, 0.03736553713679314, 0.003970595542341471, 0.03679734095931053, -0.0032113122288137674, -0.0017908265581354499, -0.008942294865846634, -0.017600493505597115, 0.010078683495521545, 0.00957136694341898, 0.016409991309046745, 0.0034582060761749744, -0.004846561700105667, -0.005052870139479637, -0.0022423379123210907, 0.02309303730726242, 0.01255438756197691, -0.00932785589247942, -0.0018703060923144221, -0.02449999563395977, 0.012473216280341148, -0.01171562448143959, -0.0011964208679273725, -0.027814460918307304, 0.004640253260731697, 0.017208168283104897, 0.0015972007531672716, -0.010403365828096867, -0.022551899775862694, -0.0003593490400817245, -0.023228321224451065, 0.014854220673441887, 0.018831580877304077, 0.00301684089936316, -0.020333237946033478, 0.014015458524227142, -0.024689393118023872, 0.006426006555557251, 0.01319698803126812, -0.012513801455497742, -0.023634174838662148, 0.00048321878421120346, 0.03241413086652756, 0.03360463306307793, 0.015097732655704021, -0.006811566650867462, -0.0072241839952766895, -0.017573436722159386, 0.010220732539892197, -0.06639755517244339, 0.021943120285868645, 0.011992957442998886, 0.014028986915946007, -0.005137423053383827, -0.011343592777848244, 0.01743815280497074, -0.023715345188975334, -0.005377552937716246, -0.00294412556104362, -0.01003133412450552, 0.022984810173511505, -0.020536163821816444, -0.008306458592414856, -0.015219489112496376, -0.018222801387310028, -0.00997045636177063, 0.002046175766736269, 0.0024266629479825497, -0.008881417103111744, 0.012473216280341148, 0.013819295912981033, 0.018209272995591164, -0.005976186133921146, -0.028220314532518387, 0.018736882135272026, 0.011566811241209507, 0.025744611397385597, 0.0030236050952225924, -0.024026500061154366, 0.013501377776265144, -0.037176139652729034, -0.0034835718106478453, -0.004095733631402254, -0.0001104469847632572, 0.013724597170948982, -0.015679456293582916, 0.006260283291339874, -0.012912890873849392, 0.05343731492757797, -0.015192432329058647, -0.004592903424054384, 0.014204856008291245, -0.019494473934173584, 0.020576748996973038, 0.01969739980995655, -0.011965900659561157, -0.006784509867429733, 0.024026500061154366, -0.002227118471637368, -0.002479085698723793, 0.02673218585550785, 0.004562464542686939, -0.025217002257704735, -0.0020630862563848495, -0.03465984761714935, 0.03406459838151932, -0.005316674709320068, 0.011519461870193481, -0.03582329303026199, 0.022835997864603996, -0.017965760082006454, -0.011735917069017887, -0.007636801339685917, 0.009889286011457443, -0.01734345220029354, -0.022308388724923134, -0.00980135053396225, -0.027016283944249153, 0.0012124859495088458, 0.0017908265581354499, 0.014975977130234241, -0.005489162169396877, 0.011181251145899296, 0.010687462985515594, 0.01896686479449272, -0.0009123238269239664, 0.01244615949690342, -0.025271115824580193, 0.0013071850407868624, -0.003013458801433444, -0.01168180350214243, -0.0176816638559103, 0.002822369569912553, 0.028896735981106758, 0.010295138694345951, 0.013230809010565281, -0.0004975927295163274, -0.00019806473574135453, 0.013947815634310246, 0.013697540387511253, -0.009496960788965225, 0.0013892011484131217, -0.008123825304210186, 0.008306458592414856, 0.017140526324510574, -0.010748340748250484, 0.008177938871085644, 0.026312805712223053, 0.04415680840611458, -0.0015912820817902684, 0.011350356973707676, 0.016382934525609016, -0.007900605909526348, 0.008543206378817558, -0.011532990261912346, -0.023769458755850792, -0.02495996095240116, 0.0029813286382704973, 0.01981915719807148, 0.014245441183447838, -0.0025670204777270555, 0.010870097205042839, 0.024702921509742737, -0.010119268670678139, -0.012209411710500717, 0.0018770702881738544, -0.027814460918307304, 0.0012234777677804232, 0.03755493462085724, 0.013731361366808414, 0.031115399673581123, 0.021550796926021576, 0.0010476080933585763, 0.022835997864603996, 0.022132519632577896, -0.0011389250867068768, 0.012378517538309097, -0.002835898194462061, 0.012689671479165554, -0.009226392023265362, 0.007555630523711443, -0.044941458851099014, 0.0007969093276187778, 0.019927384331822395, -0.03925951570272446, -0.006960379425436258, 0.007447403389960527, -0.012229705229401588, 0.034822192043066025, 0.010471008718013763, -0.027381550520658493, -0.0014788269763812423, 0.007521809544414282, 0.020684976130723953, 0.014962448738515377, 0.008922002278268337, 0.006571437232196331, 0.0018753792392089963, 0.007264769170433283, -0.02309303730726242, 0.008211759850382805, -0.005969421938061714, -0.0068724448792636395, 0.014286027289927006, 0.0033601250033825636, 0.031764764338731766, -0.019683871418237686, -0.023160679265856743, 0.023512419313192368, -0.004843179602175951, 0.0261234063655138, 0.010836276225745678, -0.009652538225054741, 0.007474460173398256, 0.03000606782734394, 0.003544449806213379, 0.013920758850872517, -0.028788508847355843, -0.002041102619841695, 0.014461896382272243, -0.01868276856839657, -0.011580339632928371, 0.0035309214144945145, 0.0014881277456879616, -0.0021831511985510588, -0.028707338497042656, 0.008144117891788483, 0.0007520964136347175, -0.02314715087413788, 0.009354912675917149, -0.02859911136329174, -0.021280227228999138, 0.02006266824901104, -0.004968317691236734, -0.012020014226436615, -0.006317778956145048, -0.014407782815396786], "8f0fec39-2a1f-4177-801d-bf302b6f63a1": [0.008660736493766308, -0.014226414263248444, -0.0015059568686410785, -0.0006460766890086234, -0.012862144038081169, 0.019208373501896858, -0.0110499057918787, -0.013418711721897125, -0.03545743599534035, -0.02230343222618103, 0.018556782975792885, 0.014375736936926842, 0.01278748270124197, -0.001875022309832275, -0.00947522558271885, -0.004964991472661495, 0.03325831517577171, -0.010629085823893547, 0.04607294872403145, -0.022805701941251755, 0.00013818744628224522, -0.006179938092827797, -0.00481566833332181, 0.019873540848493576, -0.013900618068873882, 0.026701675727963448, 0.01771514303982258, -0.013608759269118309, 0.014335012063384056, -0.034317150712013245, -0.001800360856577754, 0.01748437061905861, 0.005338299088180065, -0.0067297182977199554, -0.033285465091466904, -0.010601935908198357, 0.0032834101002663374, -0.01897760108113289, 0.012739970348775387, 0.005457078572362661, 0.012834994122385979, -0.0016714000375941396, -0.013812381774187088, -0.008477476425468922, -0.042814988642930984, 0.008402815088629723, 0.009285178035497665, -0.011280677281320095, -0.02305004745721817, 0.020633729174733162, 0.020701603963971138, 0.002706480212509632, -0.019792091101408005, 0.010486550629138947, -0.008199192583560944, 0.0018648412078619003, -0.0015907995402812958, 0.030869146808981895, -0.017375772818922997, 0.01193905621767044, 0.006315686274319887, 0.009794234298169613, 0.007581538055092096, -0.006190118845552206, -0.029728861525654793, -0.006193512585014105, -0.018163112923502922, 0.0011911906767636538, -0.028262780979275703, -0.011491087265312672, 0.030434751883149147, 0.016493409872055054, 0.004374486394226551, 0.013520522974431515, 0.013439074158668518, -0.023525167256593704, -0.014375736936926842, 0.00027701121871359646, -0.026850998401641846, -0.0044762976467609406, -0.010031793266534805, -0.03700496628880501, -0.002341656945645809, 0.010058943182229996, 0.015407423488795757, -0.028670024126768112, 0.02189618907868862, 0.031412139534950256, -0.027285393327474594, -0.024203907698392868, 0.009794234298169613, 0.02905011922121048, 0.010120030492544174, -0.00424213195219636, -0.010140391997992992, 0.009115492925047874, -0.02606365829706192, 0.01960204355418682, -0.006936734076589346, -0.007954846136271954, -0.03002750687301159, -0.012841781601309776, -0.016941377893090248, -0.006281748879700899, -0.023932412266731262, 0.0183667354285717, 0.0021838494576513767, 0.0027709605637937784, 0.01176937110722065, -0.020389383658766747, -0.012665309011936188, 0.02864287607371807, -0.013968491926789284, -0.03570178151130676, 0.0014117815298959613, -0.007791948039084673, 0.025072697550058365, -0.03399135544896126, -0.020335083827376366, -0.02083735167980194, 0.00023246883938554674, 0.006919765844941139, -0.011029543355107307, -0.024461830034852028, 0.00539599172770977, 0.012095166370272636, -0.007690136786550283, -0.0376022569835186, -0.010941307060420513, 0.00300342938862741, 0.030896294862031937, 0.02305004745721817, 0.012611010111868382, 0.0010495034512132406, -0.001939502777531743, 0.01859750598669052, -0.04371092841029167, 0.0009213910670951009, -0.018923303112387657, -0.025072697550058365, 0.019642768427729607, 0.00763583742082119, 0.009095131419599056, -0.02586003579199314, -0.018190262839198112, 0.01624906249344349, 0.017959490418434143, -0.005416354164481163, -0.019194798544049263, 0.004666345193982124, 0.02552066557109356, -0.01142321340739727, 0.023416569456458092, -0.03059764951467514, 0.018529633060097694, -0.008192405104637146, 0.007052120286971331, -0.00300342938862741, 0.011945843696594238, -0.0038722180761396885, 0.017294323071837425, 0.017606545239686966, 0.023660914972424507, -0.0013693602522835135, 0.006448040716350079, 0.02660665102303028, 0.00835530273616314, -0.008253492414951324, -0.020131461322307587, -0.006027221214026213, 0.029674561694264412, 0.03860679641366005, -0.031357839703559875, 0.004313400015234947, -0.018556782975792885, 0.012237702496349812, 0.03806380182504654, 0.02683742344379425, -0.017321472987532616, 0.007629049941897392, -0.031276389956474304, -0.015746794641017914, 0.03062479943037033, 0.011043118312954903, 0.011531811207532883, -0.0024332869797945023, -0.012495623901486397, -0.006743292789906263, 0.007880184799432755, 0.008959382772445679, 0.022208409383893013, 0.005579251796007156, -0.016059014946222305, -0.02678312361240387, -0.6346501111984253, -0.00915621779859066, -0.031249241903424263, -0.014674383215606213, -0.020226486027240753, -0.003381827613338828, 0.0006460766890086234, -0.0015339548699557781, -0.02405458502471447, 0.0020565856248140335, -0.023348694667220116, 0.00022334825189318508, -0.023348694667220116, -0.013452649116516113, -0.027801236137747765, -0.009319115430116653, 0.006587182637304068, -0.019669918343424797, -0.001981924055144191, -0.014362161979079247, -0.00019789545331150293, -0.008205980062484741, 0.004170864354819059, -0.0007237077224999666, -0.0018410852644592524, -0.0028761655557900667, 0.014239988289773464, 0.0022992354352027178, 0.004360911902040243, 0.04200049862265587, -0.02032150886952877, 0.014389311894774437, 0.0012395509984344244, 0.008592862635850906, 0.049873895943164825, -0.014104240573942661, -0.022398456931114197, 0.016371235251426697, 0.0036414461210370064, 0.011443574912846088, -0.010567999444901943, -0.02724466845393181, 0.01673775538802147, -0.00021369739260990173, -0.004557746462523937, 0.0030017325188964605, 0.010771621949970722, -0.006546458229422569, -0.0008993319934234023, 0.007703711744397879, 0.0005247517256066203, -0.0035735720302909613, -0.016425535082817078, -0.0124141750857234, -0.003624477656558156, -0.007235380355268717, 0.036896366626024246, -0.01882827840745449, 0.009685635566711426, -0.006587182637304068, 0.0028948308899998665, 0.019914263859391212, -0.0012454899260774255, -0.014443610794842243, -0.004931054078042507, 0.012665309011936188, -0.011470724828541279, 0.018760403618216515, 0.01428071316331625, 0.003916336223483086, 0.02150251902639866, 0.01828528568148613, -0.0020481012761592865, -0.02264280430972576, 0.010255778208374977, 0.01303182914853096, 0.03165648505091667, -0.0311406422406435, 0.004961597733199596, 0.011633622460067272, -0.006668631453067064, -0.014321438036859035, -0.022466331720352173, -0.012251277454197407, 0.015040903352200985, -0.018719680607318878, -0.01730789802968502, 0.043412283062934875, 0.004717250820249319, 0.0028507127426564693, -0.009943556971848011, 0.007812310475856066, -0.007581538055092096, -0.0035701782908290625, 0.04400957375764847, 0.014294288121163845, -0.013574822805821896, -0.0008636980783194304, -0.0054536848329007626, -0.01759297028183937, -0.0009739935048855841, -0.01403636671602726, 0.015461722388863564, -0.010086093097925186, 0.004717250820249319, -0.007432215381413698, -0.04417247325181961, -0.0015729825245216489, 0.04824491962790489, -0.03306826576590538, -0.014348587021231651, -0.010072518140077591, -0.022289859130978584, -0.007676561828702688, 0.025330618023872375, -0.014158539474010468, -0.01102275587618351, 7.376007124548778e-05, 0.03010895662009716, -0.01400921680033207, 0.010961669497191906, -0.009522737935185432, 0.0038688243366777897, -0.013126852922141552, 0.023660914972424507, 0.03754795715212822, 0.011307827197015285, 0.0030967562925070524, -0.016629157587885857, -0.02500482276082039, 0.01573321968317032, -0.01557032112032175, 0.0031442681793123484, 0.0034666701685637236, 0.013900618068873882, -0.02261565439403057, 0.03822670131921768, 0.005294180940836668, 0.028697174042463303, -0.02086450159549713, 0.0011411334853619337, 0.007466152310371399, 0.006739899516105652, 0.009678848087787628, -0.0076426248997449875, -0.013147215358912945, -0.020973101258277893, -0.007072482258081436, -0.04718608409166336, 0.0086810989305377, -0.01699567772448063, 0.004062265623360872, 0.002552066696807742, -0.0006248660502023995, 0.012834994122385979, -0.020593006163835526, -0.03165648505091667, 0.01730789802968502, 0.004136926960200071, -0.027719786390662193, 0.002217786619439721, -0.0033275282476097345, -0.04748472943902016, 0.02261565439403057, 0.025968635454773903, -0.002173668472096324, -0.0005485076690092683, 0.03456149622797966, -0.004612045828253031, -0.040290072560310364, 0.007052120286971331, -0.005507984198629856, 0.0009722966351546347, 0.04623584449291229, -0.004642589017748833, 0.005630157422274351, -0.018502483144402504, 0.012597435154020786, -0.0006851043435744941, 0.014375736936926842, -0.01457935944199562, 0.007439002860337496, -0.012258064933121204, -0.01931697130203247, 0.029321616515517235, -0.016642732545733452, 0.007045332808047533, 0.007751223631203175, 0.005650519859045744, 0.030706247314810753, -0.009169792756438255, 0.0006151091656647623, -0.012841781601309776, 0.012563497759401798, 0.012122316285967827, 0.0018088450888171792, 0.016289787366986275, 0.03657057136297226, 0.005840567406266928, 0.007561176083981991, -2.9562357667600736e-05, 0.009482013061642647, 0.02526274509727955, -0.013568035326898098, -0.010880219750106335, -0.031846534460783005, 0.004221769981086254, -0.005684456788003445, 0.03010895662009716, -0.02287357486784458, -0.005959346890449524, -0.027203943580389023, 0.006281748879700899, -0.016031865030527115, 0.03469724580645561, 0.03906833752989769, 0.0051278891041874886, -0.0014558996772393584, 0.00046960401232354343, -0.0013201514957472682, 0.007425427902489901, 0.0005599614232778549, 0.012977530248463154, -0.0032766228541731834, -0.004595077596604824, 0.006950309034436941, 0.0039943912997841835, 0.035348836332559586, 0.004391455091536045, -0.012644946575164795, 0.023443717509508133, -0.008362090215086937, 0.0006621967768296599, 0.003841674653813243, 0.014402886852622032, -0.012129103764891624, 0.0258328877389431, -0.021624691784381866, 0.05603686720132828, -0.03822670131921768, -0.012047654949128628, -0.012834994122385979, 0.03404565528035164, -0.03309541568160057, -0.016683457419276237, 0.015556746162474155, 0.01820383593440056, 0.009868895635008812, 0.021950487047433853, 0.03005465678870678, -0.014117815531790257, 0.008294216357171535, -0.010221840813755989, -0.008077018894255161, -0.00320365815423429, -0.04457971826195717, 0.012353088706731796, 0.012522773817181587, 0.006685600150376558, 0.029267316684126854, 0.022086236625909805, 0.003414067905396223, 0.01900475099682808, 0.0087557602673769, 0.05068838596343994, 0.01214267872273922, 0.015651769936084747, 0.006631300784647465, -0.025588540360331535, -0.017063552513718605, -0.025479940697550774, -0.012936805374920368, 0.018407458439469337, -0.007350766099989414, 0.010133604519069195, 0.005823598708957434, 0.005375629756599665, -0.0010019915644079447, 0.02474690042436123, 0.00417765136808157, -0.013439074158668518, -0.019642768427729607, 0.019561318680644035, 0.0016501893987879157, -0.003405583556741476, -0.018719680607318878, -0.028860071673989296, 0.015719644725322723, -0.0019411996472626925, 0.04110456258058548, -0.01576036959886551, 0.027339691296219826, 0.01985996589064598, -0.0009332690387964249, -0.009088343940675259, 0.005243275314569473, 0.023945987224578857, -0.027570463716983795, 0.033801306039094925, -0.014973029494285583, -0.00563355116173625, 0.00040978993638418615, -0.0311406422406435, 0.017375772818922997, 0.02273782715201378, 0.003532847622409463, -0.01874683052301407, -0.01550244726240635, 0.005521559156477451, -0.012577072717249393, -0.0011190744116902351, -0.04213624820113182, -0.0009587218519300222, -0.017687993124127388, 0.00766298733651638, -0.005090558435767889, 0.003879005555063486, 0.0124141750857234, 0.012135891243815422, 0.00851141382008791, -0.014172114431858063, -0.0030865753069519997, -0.028697174042463303, 0.004493266344070435, 0.09773872047662735, 0.020416533574461937, -0.01928982324898243, -0.00651591457426548, 0.0005336601752787828, 0.009081556461751461, -0.024448255077004433, -0.036814916878938675, 0.03314971551299095, 0.005619976669549942, 0.01340513676404953, -0.018869003280997276, 0.020443681627511978, -0.014891579747200012, 0.0037602258380502462, -0.00811095628887415, -0.011626834981143475, 0.01985996589064598, 0.004700282122939825, 0.0034955167211592197, 0.005575858056545258, 0.004299825057387352, 0.014864430762827396, 0.007751223631203175, -0.04050726816058159, -0.00855213776230812, 0.025534240528941154, 0.0013523916713893414, 0.013140427879989147, -0.015339549630880356, -0.007914121262729168, 0.023172222077846527, 0.02287357486784458, 0.0295659638941288, -0.0034072804264724255, -0.001740970998071134, -0.006733112037181854, 0.03162933513522148, 0.003563390811905265, 0.0007508573471568525, 0.02264280430972576, 0.009482013061642647, 0.02114957384765148, -0.00312220910564065, 0.006454828195273876, -0.003916336223483086, -0.011253527365624905, 0.0012285214615985751, -0.0347243957221508, -0.005199157167226076, 0.03510449081659317, -0.0008064293069764972, -0.01673775538802147, -0.011233165860176086, 0.025479940697550774, 0.004269281402230263, 0.0002598305873107165, -0.007567963562905788, -0.01696852780878544, 0.029375916346907616, -0.010866645723581314, -0.007880184799432755, 0.030733397230505943, -6.262447277549654e-05, -0.02405458502471447, -0.017810167744755745, -0.025466367602348328, -0.008497838862240314, -0.020022863522171974, 0.017375772818922997, -0.0035939342342317104, -0.011674347333610058, -0.03105919435620308, -0.000833578931633383, 0.0017664238112047315, 0.003699138993397355, 0.015977565199136734, -0.021393919363617897, -0.0031849925871938467, -0.02603650838136673, -0.005243275314569473, -0.020050013437867165, 0.011755796149373055, -0.020742328837513924, -0.016425535082817078, 0.0026284249033778906, 0.015855392441153526, 0.020742328837513924, -0.02962026186287403, 0.008565712720155716, 0.0001084394971258007, 0.011613260954618454, 0.009393776766955853, -0.005233094096183777, 0.0074729397892951965, -0.021203871816396713, -0.014620083384215832, -0.009855320677161217, -0.010235415771603584, -0.02809988148510456, 0.001835994771681726, -0.036842066794633865, 0.00553173990920186, 0.001676490530371666, 0.018556782975792885, -0.021855464205145836, 0.015882542356848717, 0.02204551175236702, -0.02462472766637802, -0.025357767939567566, -0.004001178778707981, -0.008898296393454075, 0.007106419652700424, -0.009332690387964249, 0.00691637210547924, 0.0020430106669664383, 0.015095202252268791, 0.012617797590792179, 0.016194762662053108, -0.005280605982989073, -0.01238702517002821, -0.0300003569573164, 0.002920283703133464, 0.002562247682362795, -0.01983281597495079, -0.0043541244231164455, 0.010805558413267136, -0.018271710723638535, 0.0046459827572107315, -0.0061052762903273106, 0.002328081987798214, 0.013859893195331097, -0.0026657558046281338, -0.014348587021231651, -0.012176615186035633, -0.013018254190683365, -0.014158539474010468, -0.0034361269790679216, -0.008877933956682682, 0.02078305371105671, -0.024841925129294395, -0.015665344893932343, -0.0016654609935358167, -0.03366556018590927, 0.006230843253433704, -0.022439181804656982, -0.0324438251554966, 0.007574751041829586, 0.001175918965600431, 0.0021227628458291292, -0.013608759269118309, -0.029946058988571167, -0.022805701941251755, 0.003648233599960804, -0.005592826753854752, -0.025995785370469093, 0.0043541244231164455, 0.0007050423300825059, 0.022208409383893013, -0.002333172596991062, 0.03551173582673073, -0.030190404504537582, 0.007825884968042374, 0.0007707953918725252, -0.0023297788575291634, -0.0016035259468480945, -0.02752973884344101, -0.034290000796318054, -0.03228092938661575, -0.015353123657405376, 0.031249241903424263, 0.02761118859052658, 0.011586111038923264, -0.009237666614353657, -0.017199300229549408, 0.03947558254003525, -0.013751295395195484, 0.0010800467571243644, -0.022968599572777748, -0.04091451317071915, -0.015122352167963982, 0.0008967866888269782, -0.008172042667865753, 0.008871146477758884, -0.02686457335948944, 0.005803236737847328, 0.052344515919685364, 0.005650519859045744, 0.010282928124070168, -0.009577036835253239, 0.011674347333610058, 0.007615475449711084, 0.006023827474564314, -0.004771550185978413, 0.014402886852622032, 0.0031018469016999006, 0.011144929565489292, -0.0005510529736056924, 0.013011467643082142, 0.0017579394625499845, 0.007900546304881573, 0.006434465758502483, -0.018163112923502922, -0.014511484652757645, -0.013914193026721478, -0.004544171970337629, -0.0150001784786582, -0.034887295216321945, 0.015339549630880356, -0.01684635505080223, -0.00172909302636981, -0.012407387606799603, -0.0087557602673769, -0.023240095004439354, -0.029375916346907616, -0.006722930818796158, 0.00898653268814087, -0.0001765787455951795, -0.010663023218512535, -0.026593076065182686, 0.014973029494285583, -0.009583824314177036, 0.0421905480325222, 0.0019479870097711682, 0.0028812559321522713, 0.014592934399843216, -0.005195763427764177, 0.014375736936926842, 0.009067981503903866, 0.016941377893090248, -0.025099845603108406, 0.032851070165634155, -0.013344050385057926, 0.002599578583613038, 0.01380559429526329, -0.006767048966139555, -0.010357589460909367, -0.046887435019016266, -0.03966563194990158, 0.015773942694067955, -0.0019140499643981457, -0.010181116871535778, -0.00923087913542986, -0.009543100371956825, -0.030896294862031937, 0.01584181748330593, -0.0017545458395034075, 0.01633051037788391, -0.02024006098508835, -0.018448183313012123, -0.036353375762701035, 0.023688064888119698, 0.008620012551546097, 0.02640303038060665, 0.03822670131921768, -0.025642840191721916, -0.029321616515517235, 0.005653913598507643, -0.0023705032654106617, -0.007696924265474081, 0.01627621240913868, 0.02773336134850979, -0.0004670587368309498, -0.00213803444057703, 0.008368877694010735, 0.00838245265185833, -0.01923552341759205, -0.0022958419285714626, -0.023701639845967293, 0.025303468108177185, 0.0037568320985883474, 0.019507018849253654, 0.01656128279864788, 0.026172257959842682, -0.0020854321774095297, 0.010513699613511562, 0.003963848110288382, 0.007737648673355579, -0.01430786307901144, -0.005922016222029924, 0.017090700566768646, 0.02724466845393181, -0.005731968674808741, -0.009454864077270031, -0.021882614120841026, 0.007221805397421122, 0.003817918710410595, 0.010887007229030132, 0.0056233699433505535, -0.04981959983706474, -0.04121316224336624, 0.004065659362822771, -0.01650698482990265, 0.003841674653813243, -0.007065695244818926, 0.016574857756495476, -0.006122244987636805, 0.034887295216321945, -0.022574929520487785, 0.024407530203461647, -0.01169470977038145, 0.019995713606476784, -0.022900724783539772, 0.02000928856432438, 0.02083735167980194, -0.023185797035694122, 0.024122459813952446, -0.0028201693203300238, -0.02637588046491146, 0.0010079306084662676, 0.014945879578590393, 0.0150001784786582, 0.005901653785258532, 0.010941307060420513, 0.02147536911070347, 0.00587111059576273, 0.020742328837513924, -0.011090629734098911, -0.017986640334129333, 0.01828528568148613, 0.015950417146086693, -0.001146224094554782, 0.020511556416749954, -0.014878005720674992, 0.02078305371105671, 0.004734219517558813, 0.013018254190683365, -0.004703675862401724, -0.042760688811540604, 0.00563355116173625, -0.01052048709243536, 0.01702282764017582, 0.0030865753069519997, -0.00763583742082119, -0.013113277964293957, -0.029783159494400024, -0.007588325534015894, 0.0030220947228372097, 0.016031865030527115, -0.0034259457606822252, 0.028887221589684486, 0.005277212243527174, -0.013025041669607162, 0.012346301227807999, -0.014769406989216805, 0.0038518558721989393, 0.00583377992734313, -0.008226342499256134, -0.051421426236629486, 0.013554460369050503, -0.015230950899422169, 0.022154109552502632, 0.003987604286521673, -0.009746722877025604, -0.013995641842484474, -0.02024006098508835, -0.03154788538813591, -0.0022245740983635187, -6.691963062621653e-05, 0.033394064754247665, 0.051394276320934296, 0.022466331720352173, 0.02431250736117363, 0.03450720012187958, -0.028289929032325745, -0.0033411032054573298, 0.013181152753531933, -0.007310041692107916, -0.012224127538502216, 0.004021541215479374, -0.00424213195219636, 0.010513699613511562, -0.013649484142661095, -0.0003580359334591776, 0.01581466756761074, 0.018733255565166473, 0.004483085125684738, 0.007690136786550283, 0.011362126097083092, 0.016832780092954636, -0.0035226664040237665, 0.0016001322073861957, 0.016669882461428642, 0.02307719737291336, 0.0014253563713282347, -0.011457149870693684, -0.01671060547232628, -0.016344085335731506, 4.4303764298092574e-05, -0.007988782599568367, -0.01957489363849163, -0.0030254884622991085, -0.012536348775029182, 0.022887149825692177, -0.014172114431858063, 0.004164076875895262, -0.01584181748330593, -0.02037580870091915, 0.04599149897694588, -0.006465008947998285, -0.0034361269790679216, 0.034290000796318054, -0.005589433014392853, -0.019452720880508423, -0.01550244726240635, 0.013758082874119282, 0.01998213864862919, -0.029240166768431664, 0.013893830589950085, -0.029918909072875977, 0.022710677236318588, 0.014402886852622032, 0.0007958239875733852, -0.021882614120841026, 0.010344014503061771, 0.005348479840904474, -0.0027319330256432295, -0.009767084382474422, 0.02433965727686882, 0.016371235251426697, 0.003337709465995431, -0.01313364040106535, -0.0002848591539077461, -0.01383274421095848, 0.009916407987475395, -0.020050013437867165, -0.026050083339214325, -0.004255706910043955, 0.0006325019057840109, 0.0010418676538392901, 0.0034344301093369722, -0.016371235251426697, 0.00357696576975286, 0.008742185309529305, -0.013445861637592316, 0.001039322349242866, 0.21936912834644318, -0.02279212698340416, -0.006879041437059641, 0.02474690042436123, -0.012909656390547752, 0.017891615629196167, 0.0009129067766480148, -0.0001500654179835692, -0.02083735167980194, -0.010629085823893547, -0.003950273152440786, 0.023321544751524925, -0.022398456931114197, 0.005104133393615484, 0.01099560596048832, 0.0023772907443344593, -0.04265209287405014, -0.009353052824735641, -0.00878291018307209, -0.0648876503109932, 0.012298788875341415, -0.006875647697597742, -0.0015068053035065532, -0.013568035326898098, 0.007242167834192514, 0.007622262928634882, -0.00424213195219636, -0.004591683857142925, 0.0330139696598053, -0.015746794641017914, -0.027339691296219826, -0.009332690387964249, -0.009088343940675259, -0.021285321563482285, -0.011789733543992043, 0.023267244920134544, 0.030190404504537582, 0.007649412378668785, 0.02812703140079975, -0.008429965004324913, 0.024122459813952446, -0.0014372343430295587, 0.01823098585009575, 0.009658485651016235, -0.003186689456924796, 0.033366914838552475, -0.011185653507709503, -0.012536348775029182, -0.021163148805499077, -0.006661843974143267, -0.02106812410056591, 0.006695780903100967, 0.05215446650981903, 0.02686457335948944, -0.015258099883794785, -0.012101953849196434, -0.004211588762700558, 7.927483966341242e-05, -0.011606473475694656, 0.010350801981985569, -0.0004874209698755294, 0.015068053267896175, 0.0010495034512132406, 0.03154788538813591, -0.005446897353976965, 0.012176615186035633, -0.0060883075930178165, 0.0062749614007771015, 0.015977565199136734, -0.029891759157180786, -0.028452828526496887, -0.02799128368496895, 0.009271604008972645, 0.0016077680047601461, -0.009135855361819267, -0.015380273573100567, 0.0124888364225626, -0.019126925617456436, -0.00980102177709341, -0.0026165470480918884, 0.016927802935242653, -0.01064944826066494, 0.02299574948847294, -0.003763619577512145, -0.01673775538802147, -0.03925838693976402, -0.011138142086565495, -0.008871146477758884, -0.02281927689909935, 0.013113277964293957, -0.0061052762903273106, -0.02812703140079975, -0.001382934977300465, -0.007187868468463421, -0.0021193691063672304, -0.01532597467303276, 0.011755796149373055, 0.0033682528883218765, 0.010052155703306198, -0.00963133666664362, -0.003655020846053958, -0.018760403618216515, 0.008538562804460526, 0.004316793289035559, -0.029430214315652847, -0.003142571309581399, 0.005212731659412384, 0.006315686274319887, 0.021190296858549118, 0.003943485673516989, 0.025303468108177185, -0.0016001322073861957, -0.009522737935185432, -0.025276320055127144, -0.0012276730267331004, 0.026850998401641846, -0.02637588046491146, -0.017986640334129333, -0.003879005555063486, 0.0011334976879879832, 0.013812381774187088, -0.0124141750857234, 0.0035023042000830173, -0.004652770236134529, 0.0014329921687021852, -0.012393812648952007, -0.013853106647729874, 0.0065430644899606705, 0.003553209826350212, -0.009088343940675259, 0.017864465713500977, -0.045801449567079544, -0.0033750401344150305, 0.010506912134587765, -0.02011788636445999, 0.02204551175236702, -0.002523220144212246, -0.024896224960684776, 0.026593076065182686, -0.0020328296814113855, 0.008789697661995888, -0.0014372343430295587, -0.013466224074363708, 0.005514771677553654, 0.0019954987801611423, -0.008301003836095333, 0.0014932304620742798, -0.021624691784381866, 0.0005871110479347408, -0.02528989315032959, -0.025208445265889168, 0.008389240130782127, 0.000862001208588481, -0.0025096451863646507, 0.011138142086565495, 0.004221769981086254, -0.013364412821829319, -0.03475154563784599, 0.006003465037792921, 0.01204086747020483, -0.04265209287405014, 0.015095202252268791, 0.02112242393195629, 0.011653984896838665, -0.009142642840743065, -0.026457328349351883, -0.17288893461227417, 0.013995641842484474, -0.004187832586467266, -0.014674383215606213, 0.027516165748238564, 0.031249241903424263, 0.020253634080290794, 0.00015292885655071586, -0.005138070322573185, -0.01156574860215187, 0.026660950854420662, 0.005368842277675867, -0.04846211522817612, -0.022968599572777748, 0.006295323837548494, 0.009563462808728218, -0.015095202252268791, 0.02034865878522396, 0.02127174660563469, 0.024421105161309242, 0.013703783042728901, -0.006305505055934191, 0.017552245408296585, 0.0007351614767685533, 0.0026080626994371414, 0.01062229834496975, -0.004388061352074146, 0.024638302624225616, -0.003251170041039586, -0.022425606846809387, -0.014226414263248444, 0.005877898074686527, -0.008911870419979095, -0.023633765056729317, 0.03768370673060417, 0.004639195743948221, 0.0006698326324112713, 0.0011589505011215806, -0.01923552341759205, 0.016398385167121887, 0.01805451326072216, 0.0027319330256432295, 0.018326010555028915, 0.0007733406382612884, -0.0004763914330396801, 0.038280997425317764, -0.0034547923132777214, -0.023036474362015724, 0.02161111682653427, -0.01661558263003826, 0.008104168809950352, 0.0017986639868468046, 0.037276461720466614, 0.0014168721390888095, 0.028208481147885323, 0.0037805880419909954, 0.001987014664337039, -0.003783981781452894, -0.02557496540248394, -0.01278748270124197, -0.006777230184525251, -0.0019717428367584944, 0.012468473985791206, -0.010900582186877728, -0.008864358998835087, 0.004326974507421255, 0.0014236595015972853, 0.018611080944538116, -0.016384810209274292, 0.012176615186035633, 0.006997820921242237, 0.026932448148727417, 0.0327153205871582, -0.004669738933444023, -0.0046934946440160275, -0.007696924265474081, -0.03871539235115051, 0.018719680607318878, 0.005117707885801792, -0.015190226025879383, -0.024434680119156837, 0.025724288076162338, -0.0014703229535371065, -0.013113277964293957, 0.004907298367470503, 0.004350730683654547, -0.010289715602993965, -0.020226486027240753, -0.016493409872055054, 0.0018258135532960296, 0.012590647675096989, -0.025303468108177185, -0.02313149720430374, -0.0008102472056634724, 0.017131425440311432, 0.013147215358912945, 0.014144964516162872, -0.014402886852622032, 0.0054367161355912685, -0.00798199512064457, 0.019181223586201668, -0.0341542512178421, -0.016289787366986275, 0.028751473873853683, 0.04352087900042534, 0.025710713118314743, 0.00855213776230812, 0.011592898517847061, 0.020389383658766747, 0.009862108156085014, -0.016941377893090248, 0.013215089216828346, 0.02163826674222946, -0.0030373665504157543, 0.008463901467621326, 0.019873540848493576, -0.011077054776251316, -0.01888257823884487, 0.0006549851968884468, -0.012400600127875805, 0.05305040627717972, -0.010730897076427937, 0.00942771416157484, 0.002901618368923664, -0.0017282445915043354, -0.02196406200528145, -0.11544028669595718, -0.014687958173453808, 0.013656271621584892, 0.015855392441153526, -0.004842817783355713, 0.02554781548678875, -0.013228664174675941, 0.015801092609763145, -0.007690136786550283, 0.0010469581466168165, -0.015285249799489975, -0.028697174042463303, 0.008328153751790524, -0.0041980138048529625, -0.0009816293604671955, -0.02281927689909935, 0.0033716463949531317, -0.02135319635272026, -0.005989890545606613, 0.031222091987729073, 0.004859786480665207, -0.015665344893932343, -0.0008267915109172463, -0.021909764036536217, 0.01079198345541954, 0.014348587021231651, -0.026077233254909515, 0.0034666701685637236, 0.02413603477180004, 0.021393919363617897, -0.023918837308883667, -0.0025452792178839445, 0.007350766099989414, 0.0011199228465557098, 0.005382417235523462, -0.021312471479177475, -0.031330689787864685, -0.003246079431846738, 0.029213016852736473, -0.03355696052312851, 0.01353409793227911, -0.009088343940675259, 0.009957131929695606, -0.021570391952991486, 0.010439038276672363, 0.002706480212509632, -0.022982174530625343, 0.0035701782908290625, 0.016004715114831924, -0.017687993124127388, -0.03293251991271973, -0.0009230879368260503, -0.04175615310668945, 0.0015678920317441225, 0.044308219105005264, -0.0014949273318052292, 0.023606615141034126, 0.01557032112032175, -0.011613260954618454, -0.006336048245429993, -0.01825813576579094, 0.007581538055092096, 0.0075000892393291, 0.018502483144402504, 0.0043201870284974575, -0.0014491123147308826, -0.00947522558271885, -0.007975208573043346, 0.027000321075320244, 0.014022791758179665, -0.009305540472269058, 0.004062265623360872, -0.028697174042463303, 0.016683457419276237, -0.0200907364487648, -0.0034989104606211185, -0.01630336232483387, -0.01027614064514637, 0.022900724783539772, -0.0031934769358485937, -0.007927696220576763, -0.02505912259221077, -0.008769335225224495, -0.019276248291134834, 0.01931697130203247, 0.017783017829060555, 0.007859822362661362, -0.016629157587885857, -0.0013167577562853694, -0.022086236625909805, 0.002244936302304268, 0.02037580870091915, 0.0005264485953375697, -0.027936983853578568, 0.005535133648663759, 0.02634873054921627, 0.02637588046491146, 0.013079341500997543, -0.013371200300753117, -0.0025113420560956, -0.011491087265312672, 0.011918693780899048, -0.058426033705472946, 0.031765084713697433, 0.007065695244818926, -9.550099639454857e-05, -0.005351873580366373, 0.0009129067766480148, 0.014837280847132206, -0.023891687393188477, -0.008334941230714321, 0.014769406989216805, -0.0031408744398504496, 0.0238238126039505, -0.02132604643702507, -0.01400921680033207, -0.02362019009888172, -0.005463866051286459, -0.01116529107093811, -0.00039451828342862427, 0.006848497781902552, 0.0008925445727072656, 0.016086164861917496, -0.00823991745710373, 0.018964026123285294, 0.003448004834353924, -0.017212875187397003, 0.009386989288032055, 0.011966206133365631, 0.027258243411779404, 0.004944629035890102, -0.02454327791929245, 0.01753867045044899, -0.02657950296998024, -0.0021991212852299213, 0.008253492414951324, 0.016941377893090248, 0.013364412821829319, -0.010215054266154766, 0.013411924242973328, -0.019072625786066055, 0.04702318459749222, -0.007296467199921608, 0.001981924055144191, 0.012997892685234547, -0.01800021529197693, 0.018393883481621742, 0.0295659638941288, -0.016154037788510323, -0.0025486729573458433, 0.03067909926176071, -0.003485335735604167, 0.010554424487054348, 0.020362233743071556, -0.005165219772607088, -0.02761118859052658, -0.01211552880704403, -0.05258886143565178, 0.04314078390598297, -0.006702568382024765, 0.007696924265474081, -0.03822670131921768, 0.009916407987475395, -0.014701532199978828, 0.002633515512570739, -0.002787929028272629, 0.003325831377878785, -0.012149466201663017, -0.012923230417072773, -0.017878040671348572, -0.021543243899941444, -0.015040903352200985, 0.012298788875341415, 0.017321472987532616, -0.009658485651016235, -0.005168613512068987, 0.01400921680033207, 0.022669954225420952, 0.0006448040367104113, 0.0112671023234725, -0.03160218521952629, 0.008524988777935505, -0.00918336771428585, -0.026050083339214325, -0.015624620951712132, -0.003352981060743332, 0.027176793664693832, 0.003563390811905265, 0.023199371993541718, -0.002787929028272629, -0.001074956264346838, 0.013893830589950085, 0.006081520579755306, -0.0036618083249777555, 0.012794270180165768, -0.011966206133365631, 0.006268174387514591, 0.015719644725322723, -0.016832780092954636, 0.003984210547059774, 0.019588468596339226, 0.032335225492715836, -0.0005531740025617182, -0.0028507127426564693, 0.011715071275830269, 0.005348479840904474, 0.004948022775352001, -0.009420926682651043, -0.017063552513718605, -0.011117779649794102, -0.008226342499256134, 0.024679027497768402, 0.01201371755450964, 0.0023382632061839104, 0.023443717509508133, 0.024013860151171684, -0.007452577352523804, -0.005643732380121946, 0.0150001784786582, -0.021828314289450645, -0.014362161979079247, 0.03505019098520279, 0.020633729174733162, 0.03572893142700195, 0.02302289940416813, 0.009332690387964249, 0.010540849529206753, 0.020945951342582703, -0.0043371557258069515, 0.011178866028785706, -0.0007924302481114864, 0.01774229295551777, 0.006122244987636805, 0.011918693780899048, -0.04905940964818001, -0.0022313613444566727, 0.008586075156927109, -0.0321451798081398, -0.0027675668243318796, 0.001927624805830419, -0.016167612746357918, 0.025534240528941154, 0.013439074158668518, -0.02034865878522396, 0.001851266366429627, 0.015746794641017914, 0.014389311894774437, 0.017443647608160973, 4.37734997831285e-05, 0.007350766099989414, -0.0086132250726223, -0.001486443099565804, -0.02503197267651558, 0.016887079924345016, -0.014199264347553253, -0.012834994122385979, 0.014945879578590393, 0.004517022054642439, 0.028344228863716125, -0.011117779649794102, -0.01353409793227911, 0.026308005675673485, -0.001223430852405727, 0.01759297028183937, 0.01771514303982258, 0.003040760289877653, 0.0137784443795681, 0.016113314777612686, -0.00039218508754856884, 0.008837209083139896, -0.041403207927942276, -0.016642732545733452, 0.01833958551287651, -0.021448219195008278, 0.005172007251530886, 0.010384739376604557, 0.016941377893090248, -0.0021227628458291292, -0.012583860196173191, 0.01730789802968502, -0.008742185309529305, -0.020172186195850372, 0.0248283501714468, -0.027176793664693832, -0.014416460879147053, 0.02408173494040966, -0.005446897353976965, -0.016547707840800285, -0.009149430319666862, -0.023226521909236908], "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490": [-0.0009228690178133547, -0.016599668189883232, -0.0025949811097234488, -0.005668930243700743, -0.00033506390172988176, 0.03568997234106064, 0.00042273217695765197, -0.01086573489010334, -0.028354914858937263, -0.030106570571660995, 0.01696915738284588, 0.023209428414702415, 0.023004157468676567, 0.005213910713791847, -0.0034673872869461775, 0.0033835680224001408, 0.03796164691448212, -0.0012478830758482218, 0.0245642252266407, -0.021211447194218636, 0.004964163061231375, -0.019090302288532257, 0.005152328871190548, 0.020075608044862747, -0.014054294675588608, 0.01427325140684843, 0.021580936387181282, -0.012117894366383553, 0.00847089383751154, -0.02185463346540928, -6.601849236176349e-06, 0.005764724221080542, 0.005696299951523542, -0.0050428505055606365, -0.022990472614765167, -0.0020031132735311985, 0.009675157256424427, -0.010160967707633972, 0.019500846043229103, 0.006195795256644487, 0.000643185805529356, -0.005586821585893631, -0.011296805925667286, 0.0028293333016335964, -0.027944371104240417, 0.00946304202079773, 0.012617389671504498, -0.033007748425006866, -0.021991482004523277, 0.013171624392271042, 0.02281256951391697, 0.02487897500395775, -0.024249473586678505, 0.013609537854790688, -0.010236234404146671, -0.0002371320006204769, 0.007581381592899561, 0.02065037004649639, -0.01183051336556673, 0.015012230724096298, 0.0032569835893809795, -0.00210574921220541, 0.01579226553440094, 0.011625241488218307, -0.0198429673910141, 0.00442019198089838, -0.02188200317323208, -0.008204040117561817, -0.010078858584165573, -0.012754238210618496, 0.02663063071668148, 0.019459791481494904, 0.008621427230536938, 0.013212678954005241, 0.023045212030410767, -0.029230743646621704, -0.014861698262393475, -0.009729895740747452, -0.01795446313917637, 0.010626250877976418, -0.009791477583348751, -0.025412682443857193, -0.004143074620515108, 0.013356368988752365, 0.015573307871818542, -0.02754751220345497, 0.004782839212566614, 0.02862861193716526, -0.03481414169073105, -0.017571289092302322, 0.01577858068048954, 0.02188200317323208, 0.01425956655293703, -0.0004099026555195451, -0.001201696926727891, 0.01795446313917637, -0.024057887494564056, 0.020349305123090744, -0.0032364563085138798, -0.021567251533269882, -0.03284353017807007, -0.011625241488218307, -0.03755110502243042, -0.010585196316242218, -0.021964112296700478, 0.022976787760853767, -0.0014608529163524508, -0.014588002115488052, 0.010954686440527439, -0.023989463225007057, -0.010462033562362194, 0.02969602681696415, -0.017584973946213722, -0.0496758408844471, -0.004143074620515108, -0.021129338070750237, 0.028957046568393707, -0.023031527176499367, -0.01699652709066868, -0.040972303599119186, 0.01529961172491312, 0.017338648438453674, -0.0020116663072258234, -0.01881660707294941, 0.005200225859880447, 0.010578353889286518, -0.00886091124266386, -0.02466001734137535, -0.007075043860822916, -0.0008416154887527227, 0.029942352324724197, 0.01327426079660654, 0.01676388643682003, 0.00767717557027936, -0.005248122848570347, 0.022579926997423172, -0.027219075709581375, 0.01768076792359352, -0.023236798122525215, -0.02466001734137535, 0.026261139661073685, 0.008299834094941616, -0.009250927716493607, -0.0396859347820282, -0.03697634115815163, 0.018091311678290367, 0.025508476421236992, 0.002389708999544382, -0.020007183775305748, -0.00034383073216304183, 0.02262098155915737, -0.012083682231605053, 0.02353786490857601, -0.015094339847564697, 0.023332592099905014, -0.011488393880426884, 0.01668177731335163, 0.005176277365535498, 0.013424793258309364, 0.003920696675777435, 0.01684599369764328, 0.016120700165629387, 0.006544757634401321, 0.0015643442748114467, -0.007287158630788326, 0.02684958651661873, -0.002904599765315652, -0.005018902011215687, -0.029039155691862106, -0.01769445277750492, 0.027150653302669525, 0.03136557340621948, -0.03782480210065842, 0.007170837838202715, -0.009134607389569283, 0.016161754727363586, 0.03079081140458584, 0.018378693610429764, -0.00986674427986145, -0.001599411596544087, -0.019199781119823456, -0.016585983335971832, 0.015436459332704544, 0.00382490293122828, 0.006223164964467287, -0.0007898698095232248, -0.013506902381777763, -0.019938761368393898, -0.006544757634401321, 0.014588002115488052, 0.020362989977002144, 0.00991464126855135, -0.016462819650769234, -0.017215484753251076, -0.6362887024879456, -0.008108247071504593, -0.018296584486961365, -0.004563882481306791, -0.014697480015456676, -0.012542123906314373, 0.0074719032272696495, -0.006295009981840849, 0.0026514308992773294, -0.006206058897078037, -0.010680990293622017, 0.00023862878151703626, -0.00768401799723506, -0.019555585458874702, -0.0298602432012558, -0.010646778158843517, 0.009504096582531929, -0.020308250561356544, 0.018036572262644768, -0.02758856676518917, -0.015053285285830498, -0.00787560548633337, -0.005918677896261215, 0.005350758787244558, -0.007711387239396572, -0.008334046229720116, 0.0017200089059770107, 0.006000787019729614, 0.023387331515550613, 0.030380265787243843, -0.03640158101916313, 0.025275833904743195, 0.023305222392082214, 0.015217502601444721, 0.04349030926823616, -0.009579363279044628, -0.030298158526420593, 0.00422518327832222, 0.006784242112189531, 0.021320926025509834, -0.018310269340872765, -0.021184077486395836, 0.026890641078352928, -0.0031030294485390186, -0.0034314647782593966, -0.002545373747125268, 0.016421765089035034, -0.015203817747533321, 0.02069142460823059, 0.021430404856801033, -0.001680665067397058, 0.0018833712674677372, -0.007512957789003849, -0.004129389766603708, -0.0005563728627748787, -0.003366461955010891, 0.019103987142443657, -0.01666809245944023, 0.014067979529500008, -0.0068252962082624435, 0.010468875989317894, 0.022388340905308723, -0.005795514676719904, -0.006021314300596714, -0.013527429662644863, 0.0007441112538799644, -0.01889871619641781, 0.0015113155823200941, 0.012665286660194397, -0.016107015311717987, 0.02768436074256897, 0.004553618840873241, 0.006565284915268421, -0.013527429662644863, -0.004666518419981003, 0.011632083915174007, 0.03894695267081261, -0.02375682070851326, 0.011378915049135685, 0.006291588768362999, 0.00885406881570816, -0.02671273797750473, -0.03262457624077797, -0.023332592099905014, 0.014423783868551254, -0.010687832720577717, -0.0028430181555449963, 0.0196513794362545, 0.0024256317410618067, -0.002240886678919196, 0.003041447838768363, 0.0245642252266407, -0.01436904538422823, 0.004351767711341381, 0.029203373938798904, 0.012104209512472153, -0.005672351457178593, -0.010612566024065018, -0.00643185805529356, -0.010975213721394539, -0.003989120479673147, -0.0063326433300971985, 0.011638926342129707, -0.01784498617053032, 0.003369883168488741, -0.010619408451020718, -0.040151216089725494, -0.010106228291988373, 0.05421919748187065, -0.02370208129286766, -0.010208864696323872, 0.0018337637884542346, -0.007259788922965527, 0.005925520323216915, 0.014218511991202831, -0.020924067124724388, 0.0015771737089380622, -0.013780598528683186, 0.03768795356154442, -0.0020424569956958294, 0.009059340693056583, -0.01528592687100172, 0.008751432411372662, -0.007424006704241037, 0.012323166243731976, 0.026083238422870636, -0.0032381669152528048, 0.0063360645435750484, -0.0012889375211670995, -0.025303203612565994, -0.003506731241941452, -0.025946389883756638, -0.0016986264381557703, -0.00545339472591877, 0.012692656368017197, -0.009401461109519005, 0.026288509368896484, 0.0027745941188186407, 0.027479087933897972, -0.03084554895758629, 0.0007637831731699407, -0.010181494988501072, 0.016435449942946434, 0.017393385991454124, -0.022922048345208168, -0.024181049317121506, -0.009716211818158627, -0.005248122848570347, -0.04151969775557518, -0.004570724908262491, -0.0011717614252120256, -0.01230263989418745, -0.00888143852353096, -0.00018410339544061571, 0.013965343125164509, -0.016531243920326233, -0.02080090343952179, 0.004132810980081558, 0.006900562904775143, -0.016093330457806587, -0.0010999161750078201, 0.002673668786883354, -0.04047965258359909, 0.03070870228111744, 0.010516772046685219, -0.007314528338611126, -0.0021947005297988653, 0.03782480210065842, 0.004146495833992958, -0.026151662692427635, 0.014998545870184898, -0.0007107545388862491, 0.0037051609251648188, 0.039111170917749405, -0.005135222803801298, -0.00028417352586984634, -0.003354487707838416, -0.0016053986037150025, -0.006859508343040943, 0.010099385865032673, -0.022183068096637726, 0.02780752256512642, -0.002548794960603118, -0.001132417586632073, 0.03793427720665932, -0.014670110307633877, 0.01564173214137554, 0.009203030727803707, 0.015121709555387497, 0.027314869686961174, -0.011960519477725029, 0.008518790826201439, -0.009155134670436382, 0.006924511399120092, 0.01538172084838152, 0.005234437994658947, 0.021567251533269882, 0.01536803599447012, 0.006370276678353548, 0.012063154950737953, 0.004365452565252781, 0.009551993571221828, 0.026179030537605286, -0.006240271031856537, -0.0007770403171889484, -0.03478677198290825, 0.00542260380461812, 0.0004327819624450058, 0.026192715391516685, -0.007287158630788326, -0.013944815844297409, -0.01591542735695839, 0.012610547244548798, -0.023373646661639214, 0.024016832932829857, 0.021033544093370438, 0.0013838758459314704, 0.007362424861639738, -0.024181049317121506, -0.008286149241030216, 0.006004208233207464, 0.0017182982992380857, 0.007991925813257694, -0.010749414563179016, -0.0012572914129123092, 0.010455191135406494, -0.00010766092600533739, 0.02656220644712448, 0.01291161309927702, -0.02188200317323208, 0.022183068096637726, -0.015422774478793144, 0.0013299919664859772, 0.0058297268114984035, 0.022456765174865723, 0.008169827982783318, 0.002909731585532427, -0.02070510946214199, 0.026890641078352928, -0.03256983682513237, -0.0006602918147109449, 0.007923501543700695, 0.020417729392647743, -0.02975076623260975, -0.0066816057078540325, -0.004669939633458853, 0.00987358670681715, 0.00022708222968503833, 0.027219075709581375, 0.01670914702117443, -0.02082827314734459, -0.004810208920389414, -0.009367248974740505, -0.013992712832987309, 0.0008518790709786117, -0.04669255390763283, -0.00542260380461812, 0.01681862585246563, 0.009168819524347782, 0.0196924339979887, 0.013411108404397964, 0.01532698143273592, 0.010325185023248196, -0.0006927932263351977, 0.06125318631529808, 0.025111617520451546, 0.019240835681557655, 0.02166304551064968, -0.027273815125226974, -0.04354504868388176, -0.02363365702331066, -0.014683795161545277, 0.015450144186615944, -0.009545151144266129, 0.004341504070907831, -0.005083905067294836, 0.0061307926662266254, -0.00010600378300296143, 0.010482560843229294, 0.009579363279044628, -0.02884756773710251, -0.024947399273514748, 0.019405053928494453, 0.006510545965284109, 0.008799329400062561, -0.007259788922965527, -0.035087838768959045, 0.010037804022431374, -0.017448125407099724, 0.03664790838956833, -0.01872081309556961, 0.012336851097643375, 0.016271233558654785, -0.009298824705183506, -0.004502300638705492, -0.0003530251851771027, 0.01896713860332966, -0.020034553483128548, 0.0398227833211422, -0.002713012509047985, 0.0018269214779138565, 0.00992148369550705, -0.04039754346013069, 0.014163772575557232, 0.020486151799559593, -0.0009083289187401533, -0.030462374910712242, -0.011242067441344261, 0.0005358456401154399, 0.0012324877316132188, 0.0019483740907162428, -0.027424348518252373, -0.004088335204869509, -0.0197608582675457, 0.006315537262707949, -0.0011614977847784758, -0.0008467473089694977, 0.016517559066414833, 0.013513744808733463, -0.004512564279139042, -0.011372072622179985, 0.00047383634955622256, -0.019446106627583504, 0.006243692245334387, 0.09557467699050903, 0.03377409651875496, -0.03070870228111744, 0.006093159317970276, 0.003007235936820507, 0.0196650642901659, -0.028135959059000015, -0.013253733515739441, 0.02086932770907879, -0.006808190140873194, 0.01679125614464283, -0.013664277270436287, 0.021156707778573036, 0.0022750988136976957, 0.013459005393087864, -0.014642741531133652, -0.014013240113854408, -0.005323389079421759, -0.0020441676024347544, 0.000874972203746438, 0.00885406881570816, 0.014410099014639854, 0.01431430596858263, 0.016517559066414833, -0.023373646661639214, -0.003050000872462988, 0.0298055037856102, 0.009634102694690228, 0.014410099014639854, -0.023962093517184258, -0.0076224361546337605, 0.020540891215205193, 0.027205392718315125, 0.023975778371095657, -0.015203817747533321, 0.00033570537925697863, -0.00784139335155487, 0.020431414246559143, -0.002591559896245599, 0.012815820053219795, 0.012241058051586151, 0.032214030623435974, 0.015436459332704544, -0.015422774478793144, 0.017543919384479523, -0.0034006740897893906, -0.01594279706478119, -0.007232419215142727, -0.02389366924762726, -0.012384748086333275, 0.031228724867105484, -0.002062984276562929, -0.012973194941878319, -0.004974426701664925, 0.039029061794281006, -0.005172856152057648, 0.028190698474645615, 0.0005922954296693206, -0.012808977626264095, 0.02784857712686062, -0.017160745337605476, -0.0008997758850455284, 0.0197882279753685, -0.0039001693949103355, -0.020034553483128548, -0.01776287704706192, -0.021047228947281837, -0.008970389142632484, -0.010434663854539394, 0.020171402022242546, -0.009620417840778828, -0.018118681386113167, -0.01795446313917637, -0.009565678425133228, 0.010455191135406494, 0.008621427230536938, 0.020335620269179344, -0.010167810134589672, -0.005860517732799053, -0.011146273463964462, -0.014437468722462654, -0.0399596281349659, 0.02972339652478695, -0.016476504504680634, -0.003185138339176774, -0.009524623863399029, 0.01327426079660654, 0.017092321068048477, -0.02470107190310955, -0.007950871251523495, -0.011057321913540363, 0.020020868629217148, 0.004485194571316242, -0.009114080108702183, 0.0008381942752748728, -0.0006731213070452213, 7.205904694274068e-05, 0.0005623599281534553, 0.01293214038014412, -0.021389350295066833, 0.0019808753859251738, -0.03697634115815163, 0.005761303007602692, -0.003359619528055191, 0.018269214779138565, -0.012371063232421875, 0.016408080235123634, 0.017283909022808075, -0.019322944805026054, -0.02487897500395775, 0.01577858068048954, -0.005877623800188303, 0.0004870935226790607, -0.010728887282311916, 0.01763971336185932, -0.005884466227144003, 0.011016267351806164, -0.00025808686041273177, 0.006291588768362999, -0.00645238533616066, -0.005053114145994186, -0.04026069492101669, 0.008594057522714138, 0.02472844161093235, -0.01865238882601261, -0.00746506080031395, 0.012685813941061497, -0.001516447402536869, 0.012973194941878319, 0.010154125280678272, 0.006158161908388138, 0.014451153576374054, 0.016175439581274986, -0.009709369391202927, -0.03059922344982624, -0.004522827919572592, -0.009510939009487629, 0.003349355887621641, 0.006893720477819443, 0.009579363279044628, -0.021074598655104637, -0.01332215778529644, -0.012097367085516453, -0.0395217165350914, 4.9286678404314443e-05, -0.02386629953980446, -0.02964128740131855, -0.005915256682783365, -0.001616517547518015, -0.0077592842280864716, -0.005213910713791847, -0.021074598655104637, -0.03393831476569176, -0.00769770285114646, -0.0022904942743480206, -0.03363725170493126, 0.006750029977411032, -0.008299834094941616, 0.01539540570229292, -0.007985083386301994, 0.03558049350976944, -0.02664431557059288, -0.0008223712211474776, 0.003992541693150997, -0.004779417999088764, 0.008600899949669838, -0.018009202554821968, -0.023154688999056816, -0.037167929112911224, -0.01328110322356224, 0.02775278314948082, 0.00893617793917656, 0.013780598528683186, -0.0037462152540683746, -0.005641560535877943, 0.02884756773710251, -0.001609675120562315, -0.00988042913377285, -0.013452162966132164, -0.03787953779101372, -0.019227150827646255, -0.004307292401790619, -0.02175883948802948, 0.01677757129073143, -0.014423783868551254, 0.007075043860822916, 0.057859353721141815, 0.003361330134794116, 0.009770950302481651, -0.01536803599447012, 0.032104551792144775, -0.009640945121645927, -0.0075608547776937485, 0.0021895687095820904, 0.03464992716908455, -0.014889067970216274, 0.02682221680879593, -0.011454181745648384, 0.010420979000627995, -0.010455191135406494, -0.0015575018478557467, -0.0010639935499057174, -0.007252946496009827, -0.012035786174237728, -0.02367471158504486, -0.006096580531448126, -0.00442361319437623, -0.03793427720665932, 0.019514530897140503, -0.010441506281495094, -0.015121709555387497, -0.01785867102444172, -0.01284318882972002, -0.01874818280339241, -0.041930243372917175, 0.0017097452655434608, -0.0018850818742066622, 0.01576489582657814, -0.013465847820043564, -0.016161754727363586, 0.01878923736512661, -0.014136402867734432, 0.05449289083480835, 0.028984416276216507, 0.014533262699842453, 0.007348740007728338, -0.016627037897706032, 0.01290477067232132, 0.005124959163367748, 0.017106005921959877, -0.03872799873352051, 0.023099949583411217, 0.00666792131960392, -0.011426812037825584, 0.011043637059628963, -0.014410099014639854, -0.011447339318692684, -0.04228604584932327, -0.029422329738736153, 0.024509485810995102, 0.002068116096779704, -0.00446808896958828, -0.01798183284699917, -0.00271130190230906, -0.033089857548475266, 0.004071229603141546, -0.0005046271835453808, 0.018556594848632812, -0.019938761368393898, -0.026192715391516685, -0.033117227256298065, 0.0007231563795357943, 0.005751039367169142, 0.010988898575305939, 0.03163926675915718, -0.008210882544517517, -0.021074598655104637, 0.0027882789727300406, -0.0198840219527483, -0.01092731673270464, -0.006845823489129543, 0.021047228947281837, -0.008286149241030216, 0.0007265775930136442, -0.002682221820577979, 0.010468875989317894, -0.025303203612565994, 0.01386954914778471, -0.024139994755387306, 0.027383293956518173, 0.014560632407665253, 0.012152106501162052, 0.015244872309267521, 0.016531243920326233, 0.01391060370951891, 0.01583331823348999, -0.005107853561639786, 0.004632306285202503, -0.002854992402717471, 0.004563882481306791, -0.0006607194663956761, 0.013137412257492542, -0.008067192509770393, -0.008806171827018261, -0.019952446222305298, -0.013130569830536842, 0.006606339477002621, 0.0038112180773168802, 0.01583331823348999, -0.04655570536851883, -0.019528215751051903, 0.00023649053764529526, -0.015409090556204319, 0.018447116017341614, -0.012179476208984852, 0.02884756773710251, -0.004474930930882692, 0.02686327137053013, -0.022169383242726326, 0.017626028507947922, -0.013055304065346718, 0.021238816902041435, -0.02964128740131855, 0.015025915578007698, 0.01681862585246563, -0.029011785984039307, 0.01779024675488472, -0.01599753648042679, -0.03292563930153847, 0.009688842110335827, 0.010995741002261639, 0.008984073996543884, 0.012959510087966919, 0.012090524658560753, 0.02066405490040779, -0.016353340819478035, 0.015025915578007698, -0.003224482061341405, -0.02062300033867359, -0.0012590020196512341, 0.016613353043794632, -0.0008963547297753394, 0.019103987142443657, -0.02253887429833412, 0.00994885340332985, 0.0003814639349002391, 0.01587437279522419, 0.006585812196135521, -0.044995639473199844, 0.02062300033867359, -0.006722660269588232, 0.019555585458874702, 0.0016558613860979676, -0.010783625766634941, -0.01880292221903801, -0.02285362407565117, -0.01893976889550686, 0.022922048345208168, 0.010776783339679241, -0.02070510946214199, 0.023318907245993614, 0.013144254684448242, -0.0196924339979887, 0.00890880823135376, -0.0005260097095742822, 0.013062146492302418, 0.0001158931918325834, -0.01094100158661604, -0.04554302990436554, -0.0022939154878258705, -0.020540891215205193, 0.02174515463411808, -0.005029165651649237, -0.011775774881243706, 0.009025128558278084, -0.021115653216838837, -0.04075334966182709, -0.0038933269679546356, 0.0022750988136976957, 0.02583691105246544, 0.04047965258359909, 0.017064951360225677, 0.016462819650769234, 0.016476504504680634, -0.026096923276782036, -0.004875211510807276, 0.003989120479673147, -0.0034417284186929464, -0.007355582434684038, 0.020937751978635788, 0.002379445359110832, -0.0027472246438264847, -0.012418960221111774, 0.004379137419164181, 0.016216494143009186, -0.0010263603180646896, -0.0021262764930725098, -0.007218734361231327, 0.0029268376529216766, 0.013760071247816086, 0.0038899057544767857, -0.004885475151240826, 0.02576848678290844, 0.012596862390637398, -0.0012418960686773062, -0.03566260263323784, -0.011125746183097363, -0.010256760753691196, -0.002393130213022232, -0.027054859325289726, -0.029011785984039307, -0.00842299684882164, -0.008067192509770393, 0.013445320539176464, -0.01893976889550686, -0.008347731083631516, -0.0013949947897344828, -0.022128328680992126, 0.05148223415017128, -0.005148907657712698, -0.004334662109613419, 0.0397680439054966, 0.0076155937276780605, -0.03330881521105766, -0.01573752611875534, 0.01881660707294941, 0.013192151673138142, -0.01865238882601261, 0.014013240113854408, -0.022005166858434677, 0.01579226553440094, 0.0008724062936380506, 0.00888828095048666, -0.014245881699025631, 0.010174652561545372, -0.02263466641306877, 0.009723053313791752, -0.01531329657882452, 0.021320926025509834, 0.024030517786741257, -0.02372945100069046, -0.00745137594640255, 0.005203647073358297, -0.00644896412268281, -0.0014069690369069576, -0.02667168527841568, -0.018228160217404366, -0.005070220213383436, 0.007102413568645716, 0.004663097206503153, 0.004125968553125858, -0.01791340857744217, -0.005778408609330654, 0.019213465973734856, -0.03473203256726265, -0.007971398532390594, 0.20570997893810272, -0.013965343125164509, -0.0018046835903078318, 0.02474212646484375, 0.0013701911084353924, 0.01796814799308777, 0.023318907245993614, 0.009216715581715107, -0.020937751978635788, -0.0197198037058115, -0.004071229603141546, 0.005015480797737837, -0.026042183861136436, 0.0030192099511623383, 0.006924511399120092, -0.004574146121740341, -0.0395490862429142, -0.007389794569462538, 0.0006141056073829532, -0.0693545937538147, 0.010571511462330818, -0.00788929034024477, -0.010482560843229294, -0.012583177536725998, 0.020157717168331146, 0.01571015641093254, -0.018460800871253014, 0.0015771737089380622, 0.05170119181275368, 0.009969380684196949, -0.03144768252968788, 0.003332250053063035, -0.013602696359157562, -0.020020868629217148, -0.01781761646270752, 0.02769804559648037, 0.02953180857002735, -0.007348740007728338, 0.025289518758654594, -0.009723053313791752, 0.014601686969399452, 0.007718229666352272, 0.005819463171064854, 0.01083152275532484, -0.013691646978259087, 0.042203936725854874, -0.007382952142506838, -0.011023109778761864, -0.02175883948802948, 0.010270445607602596, -0.019172411412000656, 0.006089738104492426, 0.05334337055683136, 0.018036572262644768, -0.01187841035425663, -0.00982568971812725, -0.003345934674143791, 0.01669546216726303, -0.01430062111467123, 0.011194170452654362, -0.005942626390606165, 0.029203373938798904, -0.006353170610964298, 0.026165347546339035, -0.003975435625761747, -0.006103422958403826, 0.00384200899861753, 0.00642501562833786, 0.007772969081997871, -0.03251509740948677, -0.01532698143273592, -0.015053285285830498, -0.005124959163367748, 0.01898082345724106, -0.014656425453722477, -0.009025128558278084, 0.009613575413823128, -0.03429412096738815, 7.906182145234197e-05, 0.0038864845409989357, 0.01425956655293703, -0.01798183284699917, 0.012145264074206352, -0.019514530897140503, 0.004351767711341381, -0.037113189697265625, -0.0015686207916587591, -0.02188200317323208, -0.015080654993653297, 0.014533262699842453, 0.002713012509047985, -0.040041737258434296, -0.005528660956770182, 0.0037427940405905247, -0.0005097590037621558, -0.006527652032673359, 0.02089669741690159, 0.023401016369462013, 0.009962538257241249, -0.009346721693873405, -0.018447116017341614, 0.0007385517819784582, 0.030900288373231888, 0.00987358670681715, -0.02854650281369686, 0.010345712304115295, 0.009428830817341805, 0.019446106627583504, 0.013178466819226742, -0.015203817747533321, 0.030298158526420593, -0.009408303536474705, 0.011967361904680729, -0.015080654993653297, 0.0071229408495128155, 0.04179339483380318, -0.010701517574489117, -0.004936793353408575, 0.0030209205579012632, 0.006955301854759455, 0.003366461955010891, -0.018200790509581566, 0.008327203802764416, -0.007300843484699726, 0.0021553568076342344, -0.0028207802679389715, -0.013370053842663765, 0.009285139851272106, 0.012624232098460197, -0.015162763185799122, 0.016038591042160988, -0.04154706746339798, -0.018091311678290367, 0.0063326433300971985, -0.024003148078918457, 0.029942352324724197, 0.012487384490668774, -0.030872918665409088, 0.03875536844134331, -0.008395628072321415, 0.001773892785422504, 0.0045501976273953915, 0.003506731241941452, 0.007027147337794304, 0.009052498266100883, -0.003205665620043874, -0.006715817842632532, 0.004851263482123613, 0.0040507023222744465, -0.010694675147533417, -0.03076344169676304, 0.0009639234049245715, -0.006787663325667381, 0.0018217896576970816, 0.01583331823348999, -0.0037222669925540686, -0.02253887429833412, -0.029121264815330505, -0.00211601285263896, -0.0015575018478557467, -0.04253237321972847, 0.0198155976831913, 0.028272805735468864, -0.018104996532201767, -0.0045501976273953915, -0.0197334885597229, -0.17483706772327423, 0.0074171642772853374, 0.005805778317153454, -0.020965121686458588, 0.03730477765202522, 0.036182623356580734, 0.02768436074256897, -0.0025008979719132185, 0.0008672744734212756, -0.013411108404397964, 0.020007183775305748, 0.014150087721645832, -0.035224687308073044, -0.025015823543071747, -0.01539540570229292, 0.01287055853754282, -0.007923501543700695, 0.012576335109770298, 0.032131921499967575, 0.02680853195488453, 0.008265621960163116, -0.022552557289600372, -0.004707572981715202, 0.014546947553753853, -0.002897757338359952, 0.014984861016273499, -0.01081099547445774, 0.022196752950549126, 0.004273080267012119, -0.026069553568959236, -0.023469440639019012, 0.012035786174237728, -0.009497254155576229, -0.03057185374200344, 0.030872918665409088, 0.010516772046685219, 0.00784823577851057, -0.005210489500313997, -0.024400006979703903, 0.011337860487401485, 0.007478745654225349, 0.0026582733262330294, 0.02773909829556942, -0.006849244702607393, 0.00883354153484106, 0.024208419024944305, 0.003670948790386319, -0.01862501911818981, 0.004314134828746319, -0.007444533985108137, 0.00994885340332985, 0.012637916952371597, 0.01564173214137554, 0.007424006704241037, 0.02586428076028824, -0.00762927858158946, 0.02665800042450428, 0.010544141754508018, -0.0029867086559534073, -0.008676166646182537, -0.0038933269679546356, -0.004509143065661192, 0.005939205177128315, -0.008689850568771362, -0.009408303536474705, 0.0021570674143731594, -0.01870712824165821, 0.016339655965566635, -0.022333601489663124, 0.011447339318692684, 0.0019996920600533485, 0.015559623017907143, 0.01326741836965084, -0.011207855306565762, -0.02285362407565117, 0.011132588610053062, -0.02470107190310955, 0.01889871619641781, 0.009996749460697174, -0.01583331823348999, -0.026890641078352928, 0.03473203256726265, -0.008614584803581238, -0.00161480694077909, 0.006924511399120092, 0.0045501976273953915, -0.008320361375808716, -0.028874937444925308, -0.006394225172698498, -0.003318565199151635, 0.0024547118227928877, -0.007786653935909271, -0.008306676521897316, -0.013705331832170486, 0.022963102906942368, 0.016093330457806587, 0.011289963498711586, -0.034239381551742554, 0.004758890718221664, -0.0018081048037856817, 0.00421491963788867, -0.0036127883940935135, -0.017051266506314278, 0.025262149050831795, 0.043189242482185364, 0.023209428414702415, -0.007937186397612095, 0.014067979529500008, 0.02668537013232708, 0.0004545921110548079, -0.017557604238390923, 0.019062932580709457, 0.018611334264278412, 0.004488615784794092, 0.022114643827080727, 0.013684804551303387, -0.009784635156393051, -0.019103987142443657, 0.01766708306968212, 0.0037633213214576244, 0.06639867275953293, -0.003207375993952155, 0.001276108087040484, -0.0066234455443918705, -0.016353340819478035, -0.01887134648859501, -0.11648505926132202, 0.004204656463116407, 0.01573752611875534, 0.014006397686898708, -0.0052549648098647594, 0.021416720002889633, -0.013766913674771786, 0.016284918412566185, -0.001046032295562327, 0.009011443704366684, -0.024044202640652657, -0.03768795356154442, -0.0018012623768299818, 0.00022430250828620046, -0.006801348179578781, -0.024906344711780548, 0.020321935415267944, -0.027123283594846725, 0.00442703440785408, 0.042121827602386475, 0.01888503134250641, -0.007909816689789295, 0.00645922776311636, -0.018460800871253014, 0.01181682851165533, 0.005124959163367748, -0.022579926997423172, -0.00030320396763272583, 0.03136557340621948, 0.005521818529814482, -0.01435536053031683, -0.018146051093935966, 0.024112625047564507, 0.0013034776784479618, 0.001768760965205729, -0.015586992725729942, -0.033226706087589264, -0.014670110307633877, 0.029230743646621704, -0.030407635495066643, 0.013766913674771786, -0.005497870501130819, 0.009449358098208904, 0.0017294172430410981, -0.0061821104027330875, -0.0008903676061891019, -0.031228724867105484, -0.008019295521080494, 0.009723053313791752, -0.022976787760853767, -0.03640158101916313, 0.0006637130281887949, -0.05372654274106026, -0.004923108499497175, 0.030133940279483795, -0.012398432940244675, 0.014437468722462654, 0.001929557416588068, -0.010270445607602596, -0.014191142283380032, -0.017283909022808075, 0.01569647155702114, 0.0018012623768299818, 0.005679193884134293, 0.002092064591124654, -0.013965343125164509, -0.01884397678077221, -0.02263466641306877, 0.03059922344982624, 0.01435536053031683, -0.014834328554570675, 0.011413127183914185, -0.02281256951391697, 0.0022015429567545652, -0.02279888466000557, 0.005757881794124842, -0.01093415915966034, -0.007150310557335615, 0.015628047287464142, -0.004758890718221664, 0.004317556042224169, -0.02483792044222355, 0.0035648916382342577, -0.003917275462299585, 0.01568278670310974, 0.01774919219315052, 0.02687695622444153, -0.006315537262707949, -0.0012872269144281745, -0.02656220644712448, -0.0034400178119540215, 0.023442070931196213, -0.010530456900596619, -0.029203373938798904, 0.020034553483128548, 0.03870062902569771, 0.025946389883756638, 0.013527429662644863, -0.009647787548601627, 0.0011076139053329825, -0.01329478807747364, 0.006199216470122337, -0.06552284210920334, 0.017543919384479523, 0.0045433552004396915, 0.012802135199308395, 0.010318342596292496, -0.01430062111467123, 0.013589011505246162, -0.007807181216776371, -0.007547169923782349, 0.011638926342129707, -0.007321370765566826, 0.02773909829556942, -0.0199113916605711, -0.026384303346276283, -0.03150242194533348, -0.011201012879610062, -3.576224480639212e-05, -0.019322944805026054, 0.0043996647000312805, 0.0015121708856895566, 0.005268649663776159, 0.004102020058780909, 0.02282625436782837, -0.00541234016418457, -0.011242067441344261, 0.01535435114055872, 0.017584973946213722, 0.014683795161545277, 0.006250534672290087, -0.01584700308740139, -0.003924117889255285, -0.01698284223675728, -0.0042525529861450195, 0.009073025546967983, 0.014245881699025631, 0.012535281479358673, -0.016613353043794632, 0.0019449528772383928, -0.007985083386301994, 0.0493200346827507, -0.008587215095758438, -0.003636736888438463, 0.013773756101727486, -0.018187105655670166, 0.0073282127268612385, 0.0298055037856102, -0.016284918412566185, -0.002528267679736018, 0.009387776255607605, -0.012596862390637398, 0.01883029192686081, 0.025412682443857193, -0.012179476208984852, -0.015545938163995743, -0.006541336886584759, -0.03582681715488434, 0.022908363491296768, -0.010722044855356216, 0.013650592416524887, -0.022963102906942368, 0.00745137594640255, -0.013623222708702087, -0.0023486546706408262, -0.012795292772352695, 0.01575121097266674, -0.0006265074480324984, -0.025440052151679993, -0.008388785645365715, -0.02587796561419964, -0.008162986487150192, 0.008032980374991894, 0.002410236280411482, -0.0024786603171378374, 0.007731914520263672, 0.004580988548696041, 0.019008193165063858, -0.0019945602398365736, 0.011043637059628963, -0.03771532326936722, 0.02279888466000557, -0.008032980374991894, -0.008375100791454315, -0.018036572262644768, 0.017612343654036522, 0.022922048345208168, 0.0031475049909204245, 0.024892659857869148, 0.006168425548821688, 0.00422518327832222, 0.017010211944580078, 0.013985870406031609, -0.001751655014231801, 0.002579585649073124, -0.028354914858937263, 0.01285003125667572, 0.021088283509016037, -0.01432799082249403, -0.002401683246716857, 0.02667168527841568, 0.020376674830913544, -0.0022956260945647955, 0.001761918654665351, 0.007232419215142727, -0.010290972888469696, 0.0010905078379437327, -0.006996356416493654, -0.01876186765730381, -0.03196770325303078, -0.0048991600051522255, 0.0050428505055606365, 0.021143022924661636, -0.013609537854790688, 0.03229613974690437, 0.011474709026515484, -0.014122718945145607, 0.0015369746834039688, -0.0026120871771126986, -0.03155716136097908, -0.012651601806282997, 0.030298158526420593, 0.007259788922965527, 0.03730477765202522, 0.021252501755952835, 0.006250534672290087, 0.03059922344982624, 0.027369609102606773, 0.021184077486395836, 0.009456200525164604, -0.004372294992208481, 0.014779589138925076, 0.00019297712424304336, 0.020171402022242546, -0.05462973937392235, -0.0031132930889725685, 0.003783848602324724, -0.03079081140458584, -0.007814023643732071, 0.00946988444775343, -0.03574471175670624, 0.04721257463097572, 0.009716211818158627, -0.024057887494564056, 0.0006059802835807204, 0.003506731241941452, 0.016011221334338188, 0.012124736793339252, -0.002589849289506674, 0.005932362750172615, -0.01688704825937748, 0.0069724079221487045, -0.016394395381212234, 0.024098942056298256, -0.0021468037739396095, -0.007027147337794304, 0.006513967178761959, -0.003677791217342019, 0.04335346072912216, -0.012733710929751396, -0.02386629953980446, 0.04056176170706749, -0.014245881699025631, 0.030435005202889442, -0.0028139380738139153, -0.012453172355890274, 0.00881985668092966, 0.019213465973734856, 0.005066798999905586, 0.012699498794972897, -0.028464393690228462, -0.00444414047524333, 0.022429395467042923, -0.020581945776939392, -0.005388391669839621, 0.013972185552120209, 0.013807968236505985, 0.0033989634830504656, -0.021498829126358032, 0.021594621241092682, -0.003195401979610324, -0.028902307152748108, 0.010024119168519974, -0.026986435055732727, -0.018022887408733368, 0.009346721693873405, -0.009421988390386105, -0.0034280435647815466, -0.008381943218410015, -0.003207375993952155], "300c85a4-9959-45d3-ac1d-29dab974439d": [-0.007193600758910179, -0.012814236804842949, -0.014441441744565964, -0.012536255642771721, -0.003374754684045911, 0.03411705791950226, -0.0021475711837410927, -0.013180357404053211, -0.017885690554976463, -0.02070617862045765, 0.017234809696674347, 0.012895597144961357, 0.016529686748981476, 0.010725990869104862, 0.0036747704725712538, 0.023702947422862053, 0.04095131903886795, -0.005020604468882084, 0.0394597128033638, -0.016136446967720985, -0.005207054782658815, -0.030455846339464188, 0.00599014712497592, 0.03243561461567879, -0.004864663816988468, 0.023241907358169556, 0.010353089310228825, -0.012136234901845455, 0.018116211518645287, -0.01503808330744505, -0.0008347898838110268, 0.00582403689622879, 0.010495469905436039, 0.011431112885475159, -0.021167220547795296, -0.007261400576680899, -0.0060376073233783245, -0.010529370047152042, 0.01775008998811245, -0.0005508766043931246, 0.0035391701385378838, -0.0023950417526066303, -0.01189215388149023, -0.00043328560423105955, -0.027933679521083832, 0.003067958867177367, 0.007763122208416462, -0.022129982709884644, -0.014780442230403423, -0.00609523756429553, 0.007166480645537376, 0.03620530292391777, -0.02397414855659008, -0.0034662848338484764, -0.010203929618000984, 0.0006237617926672101, 0.02010953798890114, 0.02543863281607628, -0.020990939810872078, 0.03503914177417755, 0.000296837737550959, 0.0021458761766552925, 0.00048180512385442853, 0.018306052312254906, -0.03433401882648468, 0.013248157687485218, -0.010739550925791264, -0.007261400576680899, 0.002635732525959611, -0.008264843374490738, 0.034984901547431946, 0.014671961776912212, -0.0033205144573003054, -0.006312198005616665, 0.0051290844567120075, -0.031215209513902664, -0.013682079501450062, -0.01017002947628498, -0.007315640803426504, 0.010658190585672855, -0.006915619596838951, -0.019187454134225845, -0.013200697489082813, 0.01577032543718815, 0.023892788216471672, -0.01252269558608532, 0.003100163768976927, 0.031106729060411453, -0.030347367748618126, -0.020068857818841934, -0.001966205658391118, 0.01419736072421074, 0.012468455359339714, 0.009810687974095345, -0.00041485243127681315, 0.018306052312254906, -0.020095977932214737, 0.02368938736617565, 0.0026899727527052164, -0.019295934587717056, -0.021587582305073738, -0.0026899727527052164, -0.04219884052872658, -0.0037832509260624647, -0.01282779686152935, 0.02812352031469345, 0.002928968286141753, -0.01366173941642046, 0.014251600950956345, -0.022563904523849487, -0.011234492063522339, 0.03926987200975418, -0.008007203228771687, -0.047595735639333725, -0.017777210101485252, -0.0335204154253006, 0.01625848561525345, -0.023540226742625237, -0.022618144750595093, -0.02208930253982544, 0.007871602661907673, 0.017533130943775177, 0.007430901285260916, -0.022618144750595093, -0.0003046771162189543, 0.0073292008601129055, -0.0012043009046465158, -0.021655382588505745, -0.007830922491848469, 0.005712166428565979, 0.03769690915942192, 0.002908628433942795, 0.000952592701651156, -0.002189946360886097, -0.020150218158960342, 0.012054874561727047, -0.021574022248387337, -0.00350187998265028, -0.020882459357380867, -0.011702313087880611, 0.029018482193350792, 0.013607499189674854, -0.01716700941324234, -0.039595313370227814, -0.03761554881930351, 0.01993325725197792, 0.016339845955371857, 0.0038951211608946323, -0.016936488449573517, -0.0037120606284588575, 0.02181810326874256, 0.0011339582270011306, 0.018428092822432518, -0.018807774409651756, 0.019295934587717056, 0.000895810080692172, 0.013431218452751637, -0.001888235448859632, -0.0037391807418316603, -0.01806197129189968, 0.019255254417657852, 0.018590813502669334, 0.010590390302240849, -5.964298179605976e-05, -0.0005915567162446678, 0.029018482193350792, 0.006868159864097834, 0.003840880934149027, -0.02425890974700451, -0.0034696748480200768, 0.019946817308664322, 0.023255467414855957, -0.031920332461595535, 0.0138041190803051, -0.0007894485024735332, 0.015065203420817852, 0.033981457352638245, 0.03129656985402107, -0.0051053548231720924, 0.01941797509789467, -0.019892577081918716, -0.01715344935655594, 0.018211131915450096, 0.013349858112633228, -0.013797339051961899, 0.00019693837384693325, -0.011187031865119934, -0.0077292220667004585, 0.0025475923903286457, 0.001996715785935521, 0.005651146173477173, 0.021872343495488167, -0.020936699584126472, -0.011383652687072754, -0.6348267793655396, -0.01503808330744505, -0.014495681039988995, -0.006254567764699459, -0.018726414069533348, 0.01187859382480383, -0.006207107566297054, -0.0008119073463603854, -0.0025526774115860462, -0.008976745419204235, -0.011736213229596615, 0.018400972709059715, -0.004993484355509281, -0.012854916974902153, -0.02081465907394886, -0.002974733477458358, 0.008441124111413956, -0.01655680686235428, 0.01198707427829504, -0.026374274864792824, -0.02869304269552231, 0.00878012552857399, -0.0072275009006261826, -0.0024374169297516346, -0.00552571564912796, -0.014766882173717022, 0.006274907849729061, 0.01514656376093626, 0.005905396770685911, 0.02869304269552231, -0.024096189066767693, 0.020258698612451553, 0.0305643267929554, 0.018604373559355736, 0.04577869176864624, -0.013546478934586048, -0.018577253445982933, 0.018129771575331688, 0.00996662862598896, 0.014563481323421001, -0.029560884460806847, -0.023743627592921257, 0.025913234800100327, 0.0012136234436184168, 0.004210392013192177, -0.006576618645340204, 0.01262439601123333, -0.011614173650741577, 0.009512367658317089, 0.015539804473519325, -0.0030001585837453604, 0.002567932242527604, -0.01303119771182537, -0.007146140560507774, -0.005986757110804319, 0.004132421687245369, 0.026781076565384865, -0.012407435104250908, 0.012868477031588554, -0.004576513078063726, 0.009308966808021069, 0.007986863143742085, -0.0068071396090090275, 0.016394086182117462, -0.01104465126991272, 0.0034459447488188744, -0.01793993078172207, 0.006468138657510281, 0.024326710030436516, -0.02149266190826893, 0.015133003704249859, 0.007668201811611652, 0.016828007996082306, -0.026564115658402443, 0.013953279703855515, 0.00515620457008481, 0.03658498451113701, -0.016434766352176666, 0.010590390302240849, 0.01658392697572708, 0.012298955582082272, -0.023919908329844475, -0.032896652817726135, -0.02248254418373108, 0.0364765040576458, -0.014604161493480206, -0.004566343035548925, 0.030537206679582596, -0.0022323213052004576, -0.016746647655963898, 0.013899039477109909, 0.0256555937230587, -0.002015360863879323, -0.002276391489431262, 0.026197994127869606, 0.0076004015281796455, -0.007525821682065725, -0.0023696168791502714, 0.007722442038357258, -0.01357359904795885, 0.00029365959926508367, -0.014536361210048199, -0.00508501473814249, 0.003993431571871042, 0.010868371464312077, -0.0015831345226615667, -0.03471370041370392, -0.0003705704293679446, 0.0404631569981575, -0.01775008998811245, -0.00030192272970452905, -0.0067969695664942265, -0.0033832297194749117, 0.008414003998041153, 0.011295512318611145, -0.014170240610837936, -6.462205783464015e-05, -0.011187031865119934, 0.021668942645192146, -0.00757328188046813, 0.008373323827981949, -0.014631281606853008, 0.01015646941959858, -0.016841568052768707, 0.006207107566297054, 0.02773027867078781, -0.0015365219442173839, 0.00572572648525238, -0.012976957485079765, -0.015648284927010536, 0.003559510223567486, -0.025669153779745102, 0.007403781171888113, -0.001234811032190919, 0.01962137594819069, -0.01606864668428898, 0.012143014930188656, 0.003067958867177367, 0.01606864668428898, -0.03465946018695831, 0.0011526033049449325, 0.005640976130962372, 0.01855013333261013, 0.017817890271544456, -0.02004173770546913, -0.030049046501517296, -0.01375665981322527, 0.0015602519270032644, -0.042958203703165054, 0.007783462293446064, 0.004410402849316597, -0.010264948941767216, 0.0005470628384500742, 0.007525821682065725, 0.002737432951107621, -0.00942422728985548, -0.02337750606238842, -0.008915725164115429, 0.00026293762493878603, -0.011431112885475159, 0.013926159590482712, 0.010820911265909672, -0.030428726226091385, 0.009776787832379341, 0.019946817308664322, -0.008807245641946793, -0.009071665816009045, 0.020190898329019547, 0.013336298055946827, -0.022333383560180664, 0.003461199812591076, -0.008515704423189163, 0.0005601990851573646, 0.04076147824525833, -0.021641822531819344, -0.006135917734354734, -0.015160123817622662, -0.010739550925791264, -0.01252269558608532, 0.009803907945752144, -0.017316170036792755, 0.02339106611907482, -0.004149371758103371, 0.005210444796830416, 0.03609682247042656, -0.006020657252520323, 0.010136129334568977, -0.00045002379920333624, 0.010285289026796818, 0.03276105225086212, -0.004369722679257393, 0.003347634570673108, -0.00020445995323825628, -0.004027331713587046, 0.016326285898685455, -0.005190104711800814, 0.018685733899474144, 0.026998037472367287, 0.009098785929381847, 0.011370092630386353, 0.009376767091453075, 0.004749403800815344, 0.02831336110830307, -0.0037324007134884596, -0.009173366241157055, -0.04274124279618263, 0.01134297251701355, -0.011668412946164608, 0.029669364914298058, -0.0013483763905242085, -0.01410244032740593, -0.018984055146574974, 0.006512208841741085, -0.008095343597233295, 0.004095131531357765, 0.03482218086719513, 0.024299589917063713, 0.004898563958704472, -0.01071243081241846, 0.013532918877899647, 0.013254937715828419, -0.007790242321789265, 0.0017170399660244584, -0.015946606174111366, -0.01873997412621975, -0.009539487771689892, 0.008447904139757156, 0.015566924586892128, 0.02248254418373108, -0.021275701001286507, 0.021343501284718513, -0.007091900333762169, -0.012258275412023067, 0.004003601614385843, 0.01144467294216156, 0.014780442230403423, 0.01773652993142605, -0.018482333049178123, 0.0315406508743763, -0.03493066132068634, -0.009675087407231331, 0.020950259640812874, 0.029316803440451622, -0.03219153359532356, -0.00912590604275465, -0.011607393622398376, -0.0027323479298502207, 0.0024255518801510334, 0.018523013219237328, 0.021885903552174568, -0.015024523250758648, -0.0018543353071436286, -0.015539804473519325, -0.019689176231622696, 0.011810793541371822, -0.037452828139066696, -0.0226859450340271, 0.02722855843603611, 0.02021801844239235, 0.02309274673461914, 0.01090905163437128, 0.011729433201253414, 0.012339635752141476, -0.0026899727527052164, 0.04949413985013962, 0.01570252515375614, 0.01784501038491726, 0.013682079501450062, -0.01727548986673355, -0.04743301495909691, -0.027445519343018532, -0.011180251836776733, 0.011973514221608639, -0.01806197129189968, 0.020584138110280037, 0.0018221301725134254, -0.007254620548337698, -0.0037120606284588575, 0.02249610424041748, -0.005857936572283506, -0.02693023718893528, -0.03281529247760773, 0.02752687968313694, 0.012109114788472652, 0.006963079795241356, 9.725090058054775e-05, -0.03471370041370392, 0.006393558345735073, -0.022116422653198242, 0.03514762222766876, -0.018780654296278954, 0.002781502902507782, 0.020245138555765152, -0.01153959333896637, -0.012543035671114922, 0.005373165477067232, 0.011336192488670349, -0.006722389254719019, 0.03495778143405914, -0.009688647463917732, 0.026360714808106422, 0.023024946451187134, -0.03493066132068634, 0.00286286324262619, 0.022848665714263916, -0.006071507465094328, -0.01658392697572708, -0.01168197300285101, 0.010753110982477665, -0.01302441768348217, -0.014631281606853008, -0.031106729060411453, 0.001100905705243349, -0.0018407752504572272, 0.010393769480288029, 0.012644736096262932, -0.008563164621591568, 0.013207477517426014, 0.02378430776298046, -0.00024471632787026465, -0.017207689583301544, -0.008447904139757156, -0.01164129376411438, 0.004413792863488197, 0.09725259989500046, 0.04152083769440651, -0.02504539117217064, 0.011770113371312618, 0.0027577728033065796, 0.028638802468776703, -0.004698553588241339, -0.02189946360886097, 0.027648918330669403, -0.006152867805212736, 0.009932728484272957, 0.004183271899819374, 0.012393875047564507, 0.009817468002438545, 0.019404415041208267, -0.007241060957312584, -0.01836029253900051, -0.009729327633976936, -0.0055291056632995605, 0.00599353713914752, 0.003725620685145259, 0.005654536187648773, 0.00562402606010437, 0.004651093389838934, -0.014834682457149029, 0.006769849453121424, 0.01793993078172207, 0.009885268285870552, 0.019879017025232315, -0.01494316291064024, -0.022672384977340698, 0.029018482193350792, 0.02614375576376915, 0.015349963679909706, -0.0212079007178545, 0.0061664278618991375, 0.011410772800445557, 0.0019594256300479174, -0.0041968319565057755, 0.02309274673461914, 0.014563481323421001, 0.034279778599739075, 0.0003209915303159505, -0.013519358821213245, 0.012617615982890129, 0.0018136551370844245, -0.017492450773715973, -0.01475332211703062, -0.01715344935655594, -0.02218422293663025, 0.0271336380392313, -0.0010195453651249409, -0.011356532573699951, -0.0028848983347415924, 0.02052989788353443, -0.0029035434126853943, 0.00912590604275465, -0.009085225872695446, -0.008332643657922745, 0.03913427144289017, -0.019553575664758682, 0.0043358225375413895, 0.01017002947628498, -0.003705280600115657, -0.0014085490256547928, -0.017628051340579987, -0.02947952412068844, -0.010332749225199223, -0.006617298815399408, 0.015309283509850502, -0.0072749606333673, -0.003122198861092329, -0.012380314990878105, 0.007769902236759663, 0.0019831557292491198, 0.012149794958531857, 0.007566501852124929, -0.013776999898254871, -0.0003209915303159505, -0.017695849761366844, -0.01503808330744505, -0.060911692678928375, 0.010881931520998478, -0.017139889299869537, -0.011478573083877563, -0.0037493507843464613, 0.012136234901845455, 0.017790770158171654, -0.03425265848636627, -0.0030984687618911266, 0.0032730542588979006, 0.014346521347761154, 0.006674929056316614, -0.017139889299869537, -0.0009780178079381585, -0.00709868036210537, 0.009268286637961864, -0.012014194391667843, 0.00783770252019167, -7.818209996912628e-05, 0.0026425125543028116, -0.04068011790513992, 0.001508554327301681, -0.014468561857938766, 0.012244715355336666, -0.011946394108235836, 0.012204035185277462, 0.02260458469390869, -0.01095651090145111, -0.024787750095129013, 0.004444302525371313, -0.006742729339748621, -0.02112654037773609, -0.000554690312128514, 0.014251600950956345, 0.010197149589657784, 0.008529264479875565, 0.006969859823584557, 0.00535621540620923, 0.0007835159776732326, 0.00021971500245854259, -0.029018482193350792, -0.0001323163160122931, 0.00608845753595233, -0.022170662879943848, -0.006542718503624201, -4.211027771816589e-05, -0.022916465997695923, 0.021072300150990486, 0.005698606371879578, 0.027201438322663307, 0.0064172884449362755, 0.027567557990550995, -0.007030880078673363, -0.044449806213378906, 0.0013399013550952077, -0.023065626621246338, 0.0033696696627885103, -0.004251072183251381, 0.00030107522616162896, -0.012712536379694939, -0.015309283509850502, -0.027960799634456635, -0.04683637246489525, -0.0005301127675920725, -0.02977784536778927, -0.007634301669895649, 0.004186661913990974, 0.002376396907493472, -0.005579955875873566, 0.0014924517599865794, -0.039324112236499786, -0.033384814858436584, -0.005444355774670839, -0.0167602077126503, -0.03796811029314995, -0.0019390855450183153, -0.019282374531030655, 0.025601353496313095, -0.00010148841829504818, 0.03392721712589264, -0.010481909848749638, 0.009410667233169079, -0.004590073134750128, 0.006925789639353752, 0.00488500390201807, -0.009085225872695446, -0.02290290594100952, -0.029615124687552452, -0.007491921540349722, 0.030049046501517296, 0.015214363113045692, 0.027798078954219818, 0.0014288891106843948, -0.015187243930995464, 0.045724451541900635, 0.006291857920587063, -0.009308966808021069, -0.017302609980106354, -0.03189321234822273, -0.021438421681523323, -0.0046273632906377316, -0.008895385079085827, -0.0007830922259017825, -0.019865456968545914, 0.012909157201647758, 0.05386047437787056, 0.005485035479068756, 0.00514942454174161, -0.021655382588505745, 0.03425265848636627, -0.023106306791305542, -0.008983525447547436, 0.004125641658902168, 0.03097112849354744, -0.01766873151063919, 0.028584562242031097, 0.0014221090823411942, 0.005701996386051178, -0.013831239193677902, 0.004173101857304573, 0.0031984741799533367, -0.0011136181419715285, -0.013526138849556446, -0.020055297762155533, -0.011092111468315125, -0.0016890723491087556, -0.036259543150663376, 0.02672683633863926, -0.026564115658402443, -0.02278086543083191, -0.00892250519245863, -0.02023157849907875, -0.026984477415680885, -0.03216441348195076, -0.009851368144154549, 0.004695163574069738, 0.021885903552174568, -0.010468349792063236, -0.010481909848749638, 0.0024475869722664356, -0.015811005607247353, 0.04510068893432617, 0.012543035671114922, 0.02170962281525135, 0.022211343050003052, -0.015187243930995464, 0.010942951776087284, -0.000236029431107454, -0.008983525447547436, -0.02455723099410534, 0.019797656685113907, 0.02299782633781433, -0.03384585678577423, 0.015838125720620155, -0.025614913552999496, -0.005373165477067232, -0.03238137438893318, -0.026875996962189674, 0.012129454873502254, 0.0007699559791944921, -0.0027967579662799835, -0.0038883411325514317, -0.0036917205434292555, -0.026794636622071266, 0.0029933785554021597, -0.006220667622983456, 0.019865456968545914, -0.009044545702636242, -0.0325440913438797, -0.045317649841308594, -0.014319401234388351, 0.007247840519994497, 0.01647544652223587, 0.026509875431656837, -0.003356109606102109, -0.02378430776298046, -0.012543035671114922, -0.02377074770629406, -0.021343501284718513, -0.011193811893463135, 0.01804841123521328, -0.01243455521762371, -0.001353461411781609, -0.012868477031588554, -0.013993959873914719, -0.02062481828033924, 0.0011805709218606353, -0.025533553212881088, 0.026455635204911232, 0.018821334466338158, 0.012393875047564507, 0.0027781128883361816, 0.01804841123521328, 0.02918120287358761, 0.015960166230797768, -0.00461380323395133, 0.004393452778458595, -0.01567540504038334, -0.011871813796460629, 0.0057969167828559875, -0.0011941308621317148, -0.017709409818053246, -0.017994171008467674, -0.012373534962534904, -0.023052066564559937, 0.008542824536561966, -0.001898405491374433, 0.019201014190912247, -0.03983939439058304, -0.02161470241844654, 0.012902377173304558, -0.013180357404053211, 0.01272609643638134, 0.0009390327031724155, 0.01855013333261013, -0.0015119443414732814, 0.023024946451187134, -0.024489430710673332, 0.023133426904678345, -0.01905185543000698, 0.009437787346541882, -0.03314073383808136, 0.011559933423995972, 0.005583345890045166, -0.01697716861963272, 0.012868477031588554, -0.019350174814462662, -0.01922813430428505, 0.03078128769993782, 0.014902482740581036, 0.00783770252019167, 0.0014390591531991959, 0.020868899300694466, 0.01104465126991272, -0.008508924394845963, 0.009275066666305065, -0.01628560572862625, -0.024936910718679428, 0.029859205707907677, 0.02575051411986351, -0.00932930689305067, -0.0006843582377769053, -0.01271931640803814, 0.006664759013801813, 0.011173471808433533, 0.014495681039988995, 0.007159700617194176, -0.05141966789960861, 0.03175761178135872, -0.01625848561525345, 0.019607815891504288, 0.011037871241569519, 0.0015543194022029638, -0.020557017996907234, -0.010278508998453617, -0.010420889593660831, 0.03265257179737091, 0.007444461341947317, -0.02070617862045765, 0.014766882173717022, 0.00545113580301404, -0.020963819697499275, 0.0025543724186718464, 0.005027384497225285, -0.00039641925832256675, 0.007512261625379324, -0.020665498450398445, -0.05456559732556343, -0.010692090727388859, -0.010420889593660831, 0.03238137438893318, 0.006474918685853481, -0.010515809990465641, 0.007519041653722525, -0.017831450328230858, -0.026374274864792824, -0.0013305788161233068, -0.008258063346147537, 0.023838547989726067, 0.04312092438340187, 0.013234597630798817, -0.010644630528986454, 0.016746647655963898, -0.014956722967326641, 0.008007203228771687, 0.0023136816453188658, -0.004800253547728062, -0.014699081890285015, 0.005844376515597105, 0.010088669136166573, -0.0007530059083364904, -0.004481592681258917, -0.0012127759400755167, 0.003308649407699704, -0.011126011610031128, -0.002295036567375064, -0.012407435104250908, 0.005925736855715513, 0.007810582406818867, -0.012597275897860527, -0.0004152761830482632, 0.031432170420885086, 0.012102334760129452, -0.01514656376093626, -0.024909790605306625, -0.02218422293663025, 0.003922241274267435, 0.005671486258506775, -0.04520916938781738, -0.029235443100333214, -0.0049765342846512794, -0.01587880589067936, -0.0018272151937708259, -0.03514762222766876, -0.000700036995112896, -0.016204247251152992, -0.02090957947075367, 0.046510934829711914, -0.00272387289442122, 0.0007017320021986961, 0.019201014190912247, 0.008963185362517834, -0.029913445934653282, -0.014780442230403423, 0.01793993078172207, -0.00599014712497592, -0.03137793019413948, -0.006013877224177122, -0.03018464706838131, 0.003657820401713252, -0.0002879389503505081, 0.014617721550166607, -0.02181810326874256, 0.006339318118989468, -0.019187454134225845, 0.002079770900309086, -0.023038506507873535, 0.021479101851582527, 0.01484824251383543, -0.01208877470344305, -0.00636643823236227, 0.017099209129810333, -0.019458655267953873, -0.0055291056632995605, -0.012346415780484676, -0.009715767577290535, -0.0034578097984194756, -0.003512050025165081, -0.017302609980106354, 0.011037871241569519, -0.01696360856294632, -0.013831239193677902, 0.005329095292836428, -0.03908003121614456, 0.002937443321570754, 0.21088571846485138, -0.005532495677471161, 0.0018170451512560248, 0.03395433723926544, 0.011654853820800781, 0.004159541800618172, 0.01982477679848671, -0.008088563568890095, -0.0064376285299658775, -0.018007731065154076, -0.021058740094304085, 0.004101911559700966, -0.010624290443956852, 0.0075868419371545315, 0.006085067521780729, -0.005688436329364777, -0.041466597467660904, 0.002925578271970153, 0.003844270948320627, -0.06633570790290833, -0.006759679410606623, -0.010678530670702457, -0.01875353418290615, -0.003093383740633726, 0.022170662879943848, 0.004298532381653786, -0.02170962281525135, -0.008169922977685928, 0.029533764347434044, -0.005393505562096834, -0.026021715253591537, 0.006891889497637749, 0.0047155036590993404, -0.015634724870324135, -0.0062681278213858604, 0.007749562151730061, 0.02358090691268444, -0.024421630427241325, 0.01568896509706974, -0.022157102823257446, 0.009993748739361763, 0.008332643657922745, 0.005932516884058714, 0.011159911751747131, -0.0042070019990205765, 0.03411705791950226, -0.0069495197385549545, -0.011403992772102356, -0.013858359307050705, 0.012712536379694939, -0.03116096928715706, 0.014360081404447556, 0.03701890632510185, 0.03197457268834114, 0.0034306899178773165, 0.0008606387418694794, -0.01164129376411438, 0.02329614758491516, -0.017112769186496735, 0.0033900097478181124, -0.014495681039988995, 0.033384814858436584, -0.008691985160112381, 0.01745177060365677, -0.019255254417657852, -0.008915725164115429, -0.01163451373577118, 0.0018034852109849453, 0.025072511285543442, -0.03126944974064827, -0.004295142367482185, -0.02625223435461521, -0.014373641461133957, 0.02405550889670849, -0.007681761868298054, -0.0052782450802624226, 0.008373323827981949, -0.01410244032740593, -0.005318925250321627, 0.0003881560987792909, 0.006471528671681881, -0.008759785443544388, -0.003451029770076275, -0.008841144852340221, -0.00877334550023079, -0.04013771563768387, 0.008414003998041153, -0.01619068719446659, -0.036747705191373825, 0.009105565957725048, -0.01337019819766283, -0.033683136105537415, -0.007593621965497732, 0.00048604264156892896, 0.012888817116618156, 0.0011492132907733321, 0.022143542766571045, 0.022943586111068726, 0.002306901616975665, -0.007824142463505268, -0.01982477679848671, -0.01646188646554947, 0.03587986156344414, 0.013397318311035633, -0.01726192981004715, -0.003200169187039137, 0.017397530376911163, 0.0012127759400755167, 0.01667884737253189, -0.017682289704680443, 0.02839472144842148, -0.014726202003657818, 0.005881666671484709, -0.015458444133400917, 0.014143120497465134, 0.036151062697172165, -0.011709093116223812, -0.020163778215646744, -0.007159700617194176, 0.008651304990053177, 0.01548556424677372, -0.02001461759209633, 0.00757328188046813, 0.004796863533556461, -0.012034534476697445, -0.006891889497637749, -0.014332961291074753, 0.01746533066034317, 0.011126011610031128, -0.011614173650741577, 0.026781076565384865, -0.04407012462615967, -0.005929126869887114, 0.006969859823584557, -0.011302292346954346, 0.026455635204911232, 0.00313236890360713, -0.005861326586455107, 0.040002115070819855, -0.006379998289048672, 0.00976322777569294, 0.008475024253129959, -0.005088404752314091, 0.015851685777306557, 0.01578388549387455, -0.016624607145786285, 0.011071771383285522, -0.007234280928969383, -0.003064568853005767, -0.00803432334214449, -0.03186609223484993, 0.007254620548337698, 0.013688859529793262, -0.016950048506259918, 0.00966152735054493, -0.01090227160602808, -0.019987497478723526, -0.025886114686727524, -0.0005220614839345217, 0.015458444133400917, -0.028340481221675873, 0.010658190585672855, -0.0006669844151474535, -0.01567540504038334, -0.01421092078089714, -0.01570252515375614, -0.17280913889408112, 0.014956722967326641, 0.014671961776912212, -0.0007627521990798414, 0.028286240994930267, 0.024340270087122917, 0.03829354792833328, 0.0019492555875331163, 0.025099631398916245, -0.024489430710673332, 0.01559404470026493, 0.02142486162483692, -0.02398770861327648, -0.02160114236176014, -0.010963290929794312, 0.008624184876680374, -0.007451241370290518, 0.0211943406611681, 0.036449383944272995, 0.00636643823236227, 0.015268603339791298, -0.008698765188455582, 0.015417763963341713, 0.008549604564905167, 0.010922611691057682, 0.012495575472712517, -0.0007186820730566978, 0.012115894816815853, 0.013485458679497242, -0.01745177060365677, -0.014292281121015549, -0.0006957994773983955, -0.01647544652223587, -0.020299378782510757, 0.023716507479548454, 0.004451082553714514, 0.008698765188455582, -0.0018763703992590308, -0.010014088824391365, 0.014387201517820358, 0.006542718503624201, 0.004681603517383337, 0.038808830082416534, -0.004000211600214243, 0.00663085887208581, 0.036557864397764206, 9.025901090353727e-05, -0.016055086627602577, 0.0033018693793565035, -0.009553046897053719, 0.026713276281952858, -0.00848858430981636, 0.013451558537781239, 0.002540812361985445, 0.02644207514822483, -0.004095131531357765, 0.02812352031469345, 0.010997191071510315, -0.009532707743346691, -0.012326075695455074, -0.008007203228771687, -0.0072275009006261826, 0.017682289704680443, -0.009932728484272957, 0.008244503289461136, -0.012258275412023067, -0.024041948840022087, 0.02151978202164173, -0.030401606112718582, 0.008108903653919697, -0.008664865046739578, 0.009586947038769722, 0.009098785929381847, -0.00673255929723382, -0.012312515638768673, 0.00922082643955946, -0.02524879202246666, 0.020245138555765152, 0.024733511731028557, -0.01577032543718815, -0.0315406508743763, 0.03460521996021271, -0.011756553314626217, 0.008400443941354752, 0.011024311184883118, 0.011939614079892635, -0.014766882173717022, -0.015160123817622662, 0.0014763491926714778, -0.014061760157346725, 0.006285077892243862, -0.011824353598058224, -0.005732506513595581, -0.018672173842787743, 0.015539804473519325, 0.023608027026057243, 0.02191302180290222, -0.025180991739034653, 0.007966523058712482, -0.0005474865902215242, 0.006502038799226284, -0.008224163204431534, -0.018089091405272484, 0.02151978202164173, 0.02782519906759262, 0.019784096628427505, -0.01864505372941494, 0.01856369338929653, 0.030618567019701004, -0.007315640803426504, -0.010536150075495243, 0.023214787244796753, 0.011614173650741577, -0.002812013030052185, 0.01578388549387455, 0.02307918667793274, 0.0023865667171776295, -0.014251600950956345, 0.013214257545769215, -0.008888605050742626, 0.07262756675481796, -0.009817468002438545, -0.0038646110333502293, 0.0051155248656868935, -0.016339845955371857, -0.028964243829250336, -0.11336192488670349, -0.011729433201253414, 0.016150007024407387, 0.0074376813136041164, -0.007932622916996479, 0.010848031379282475, -0.013336298055946827, 0.016624607145786285, 0.0024357219226658344, 0.01559404470026493, -0.009078445844352245, -0.0315948911011219, -0.007546161767095327, -0.011953174136579037, 0.018672173842787743, -0.03563578054308891, -0.0005233327392488718, -0.026170874014496803, 0.0026526825968176126, 0.04708045348525047, 0.00838688388466835, -0.0037730808835476637, 0.030916888266801834, -0.015512684360146523, 0.009505587629973888, -0.004623973276466131, -0.020692618563771248, 0.007912282831966877, 0.028096400201320648, 0.01954001560807228, -0.005759626626968384, -0.005210444796830416, 0.02820488065481186, -0.00515620457008481, -0.01803485117852688, -0.010251388885080814, -0.036937545984983444, -0.011207371950149536, 0.028937123715877533, -0.032788172364234924, 0.009173366241157055, -0.017926370725035667, 0.028286240994930267, -0.00903098564594984, 0.010536150075495243, -0.008305523544549942, -0.010664970614016056, 0.011553153395652771, 0.0015695744659751654, -0.00868520513176918, -0.0212214607745409, 0.004169711843132973, -0.04165643826127052, 0.0018831504276022315, 0.020692618563771248, -0.024530110880732536, 0.023214787244796753, -0.0024933521635830402, -0.0013500713976100087, -0.00986492820084095, -0.02999480627477169, 0.017614491283893585, -0.007871602661907673, 0.01803485117852688, -0.0024391119368374348, -0.017017848789691925, -0.019973937422037125, -0.003583240322768688, 0.034686580300331116, 0.004644313361495733, -0.021153660491108894, 0.014671961776912212, -0.02062481828033924, 0.010658190585672855, -0.02309274673461914, 0.011756553314626217, -0.01080057118088007, -0.016828007996082306, 0.016529686748981476, -0.003922241274267435, -0.011858253739774227, -0.02484199032187462, 0.011675192974507809, -0.006888499949127436, 0.01696360856294632, 0.022672384977340698, 0.02435383014380932, -0.011831133626401424, 0.0006174055160954595, -0.032110173255205154, 0.004620583262294531, 0.02526235207915306, -0.0006991894915699959, -0.014726202003657818, 0.010983631014823914, 0.041168276220560074, 0.01658392697572708, -0.006207107566297054, -0.0020645158365368843, -0.0056375861167907715, -0.017994171008467674, -0.0074376813136041164, -0.0641118660569191, 0.019458655267953873, 0.004817203618586063, 0.012739656493067741, 0.002471317071467638, -0.028638802468776703, 0.017506010830402374, -0.01716700941324234, -0.01015646941959858, 0.016014406457543373, -0.007051220163702965, 0.03164913132786751, -0.011953174136579037, -0.029642244800925255, -0.031513530761003494, -0.011105671525001526, 0.007756342180073261, -0.01911965385079384, 0.009695427492260933, 0.0015636419411748648, 0.01208877470344305, 0.003220509272068739, 0.020177338272333145, -0.018482333049178123, -0.0044578625820577145, 0.003386619733646512, 0.037832509726285934, 0.0211943406611681, -0.0025255572982132435, -0.022319823503494263, -0.004966364242136478, -0.03691042587161064, -0.00737666105851531, 0.005495205521583557, 0.0017780601046979427, 0.017506010830402374, -0.015566924586892128, -0.006963079795241356, -0.0006220667855814099, 0.04708045348525047, -0.008651304990053177, -0.0197162963449955, 0.011898933909833431, -0.03975803405046463, 0.008163142949342728, 0.03658498451113701, -0.010725990869104862, 0.004915514029562473, 0.011492133140563965, -0.021628262475132942, 0.015458444133400917, 0.0290998425334692, -0.0021950313821434975, -0.012359975837171078, 0.011519253253936768, -0.02259102463722229, 0.02427246980369091, 0.0018594203284010291, 0.004793473519384861, -0.009708987548947334, 0.010793791152536869, -0.0030493137892335653, 0.0007678372203372419, -0.016814447939395905, 0.02198082208633423, -0.014509241096675396, -0.009634407237172127, -0.020692618563771248, -0.021167220547795296, -0.0069393496960401535, 0.0039052912034094334, -0.006112187635153532, -0.0018967104842886329, 0.02535727247595787, 0.0072071608155965805, 0.023038506507873535, -0.0014865192351862788, -0.0023577518295496702, -0.029669364914298058, 0.016122886911034584, -0.0031883041374385357, -0.014563481323421001, -0.02644207514822483, 0.021858783438801765, 0.034469619393348694, -0.0025340323336422443, 0.020868899300694466, 0.029018482193350792, 0.010827691294252872, 0.009397107176482677, 0.01292949728667736, -0.00857672467827797, 0.002215371234342456, -0.009397107176482677, 0.008007203228771687, 0.030157526955008507, -0.009146246127784252, -0.0045866831205785275, 0.04558885097503662, 0.02034005895256996, -0.017980610951781273, 0.008658085018396378, 0.01814333163201809, -0.01775008998811245, -0.0005144339520484209, 0.006647808942943811, -0.017831450328230858, -0.016502566635608673, -0.00010085279063787311, 0.011403992772102356, 0.002217066241428256, 0.0029137134552001953, 0.02287578582763672, 0.02337750606238842, -0.01903829537332058, 0.004051061812788248, -3.7687372241634876e-05, -0.017709409818053246, -0.005101964809000492, 0.0354730598628521, -0.0040680114179849625, 0.023906348273158073, 0.030428726226091385, 0.0002928120957221836, 0.019689176231622696, 0.028557442128658295, 0.009444567374885082, 0.008515704423189163, -0.0011526033049449325, 0.015458444133400917, 0.0043561626225709915, 0.012766776606440544, -0.06492546945810318, -0.0029510033782571554, 0.011817573569715023, -0.029533764347434044, -0.016109326854348183, 0.011607393622398376, -0.0138041190803051, 0.03791387006640434, 0.007932622916996479, -0.028042159974575043, -0.0048578837886452675, 0.012590495869517326, 0.014034640043973923, -0.0008085173321887851, 0.012359975837171078, -1.961173620657064e-05, -0.009010645560920238, 0.006556278560310602, -0.01217691507190466, 0.022862225770950317, -0.0036917205434292555, -0.0034781498834490776, 0.010780231095850468, -0.010678530670702457, 0.04038179665803909, -0.022862225770950317, -0.02181810326874256, 0.03048296645283699, -0.0031747440807521343, 0.0226995050907135, 0.003678160486742854, -0.014238040894269943, 0.0010170028544962406, 0.02189946360886097, 0.00848858430981636, 0.01638052612543106, -0.03471370041370392, 0.003840880934149027, 0.02891000360250473, -0.010563270188868046, -0.01589236594736576, 0.01015646941959858, 0.0014755016891285777, 0.01030562911182642, -0.02754043973982334, 0.01440076157450676, 0.010109009221196175, -0.031622011214494705, 0.008169922977685928, -0.02160114236176014, -0.010034428909420967, 0.008556384593248367, -0.02080109901726246, 0.0033917047549039125, -0.004576513078063726, -0.008129242807626724], "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1": [-0.008322495967149734, -0.005007835105061531, -0.009278319776058197, 0.009244183078408241, -0.0026626524049788713, 0.04402252286672592, -0.00976988673210144, -0.01482892595231533, -0.007052615284919739, -0.023977527394890785, 0.021328529343008995, 0.023513270542025566, 0.021519694477319717, -0.0007411902770400047, 0.009305628947913647, 0.02448274753987789, 0.0285927914083004, -0.0013501013163477182, 0.041100431233644485, -0.029439378529787064, -0.014132539741694927, -0.010186352767050266, 0.009783540852367878, 0.021724512800574303, -0.018201619386672974, 0.02324017696082592, 0.018379129469394684, -0.0058749038726091385, 0.007182334549725056, -0.01200241781771183, -0.009285147301852703, 0.004065665416419506, 0.00370040419511497, -0.005868076346814632, -0.01700001209974289, -0.008704825304448605, -0.00019169817096553743, -0.013695592060685158, 0.012582739815115929, 0.004082733765244484, 0.0012024607276543975, -0.0012886555632576346, -0.009387556463479996, 0.0071959891356527805, -0.021751822903752327, 0.021383147686719894, -0.011729325167834759, -0.014282740652561188, -0.02176547795534134, -0.008732134476304054, 0.010807638056576252, 0.02236628159880638, -0.02512451633810997, 0.00012257162597961724, -0.010418481193482876, 0.0044479952193796635, 0.024387165904045105, 0.019444189965724945, -0.022693991661071777, 0.0229943934828043, 0.015238565392792225, 0.0017059751553460956, 0.00041198573308065534, 0.008882335387170315, -0.027500420808792114, -3.050956001970917e-05, -0.00717550702393055, -0.012220892123878002, -0.00013857314479537308, -0.008704825304448605, 0.036512475460767746, 0.013101615943014622, -0.004983939230442047, -0.008718480356037617, 0.0027462870348244905, -0.0257662832736969, -0.02071407064795494, -0.009933741763234138, -0.015252219513058662, 0.011319686658680439, -0.0016462360508739948, -0.026216886937618256, -0.006332333665341139, 0.009196392260491848, 0.033863477408885956, -0.018201619386672974, -0.011196794919669628, 0.0402265340089798, -0.023622507229447365, -0.02823777124285698, 0.012958242557942867, 0.0047415695153176785, 0.0015045693144202232, 0.010104425251483917, 0.003365865908563137, 0.011449405923485756, -0.016781538724899292, 0.02677672542631626, -2.5229059247067198e-05, -0.004608436953276396, -0.03547472506761551, -0.004908838775008917, -0.021956641227006912, -0.0017546197632327676, -0.02094619907438755, 0.021369492635130882, 0.0005692273261956871, -0.010227316059172153, 0.01391406636685133, -0.018078727647662163, -0.02224338985979557, 0.025042587891221046, -0.0022205838467925787, -0.047627344727516174, -0.004389963112771511, -0.025151824578642845, 0.007025306113064289, -0.008827717043459415, -0.031050624325871468, -0.013640973716974258, 0.010220489464700222, 0.014965472742915154, -0.0025090379640460014, -0.013552218675613403, 0.0031013074330985546, 0.015730131417512894, -0.00879358034580946, -0.029384760186076164, 0.006919482722878456, 0.002945986110717058, 0.028920503333210945, -0.005506228655576706, -0.0001231050118803978, 0.000839332933537662, -0.011695189401507378, 0.0033214883878827095, -0.027814477682113647, -0.002152310684323311, -0.018324511125683784, -0.026926927268505096, 0.01730041392147541, 0.01900724321603775, -0.00742811756208539, -0.03888837993144989, -0.01852933131158352, 0.026913272216916084, -0.003121789311990142, -0.003679922316223383, -0.029493996873497963, 0.006547394208610058, 0.010404827073216438, 0.005786148831248283, 0.018993588164448738, -0.009667476639151573, 0.027145400643348694, 0.0001407066738465801, 0.0033129542134702206, 0.004577714018523693, 0.00663273548707366, -0.014965472742915154, 0.015129327774047852, 0.017491579055786133, 0.00047023125807754695, -0.002490262733772397, 0.0005986700998619199, 0.02688596211373806, -0.0048542204312980175, -0.017505234107375145, -0.03574781492352486, -0.0013518081977963448, 0.019867483526468277, 0.022311663255095482, -0.02924821339547634, -0.005110244732350111, -0.008814062923192978, -0.00750321801751852, 0.034218497574329376, 0.02530202642083168, -0.01787390746176243, 0.01623535342514515, -0.0284289363771677, -0.013374708592891693, 0.020686762407422066, 0.02900242991745472, -0.03359038382768631, 0.002993777161464095, -0.019976720213890076, -0.006192374043166637, -0.004686951171606779, 0.0047483970411121845, 0.004430926870554686, 0.02253013662993908, 0.0022683751303702593, -0.0009353420464321971, -0.6361964344978333, -0.03353576734662056, -0.015907641500234604, -0.01032972615212202, -0.0129104508087039, 0.01149719674140215, 0.0076192826963961124, -0.00011051714682253078, 0.003942773677408695, -0.0028435762505978346, -0.013579527847468853, 0.02829238958656788, -0.009080328047275543, -0.02818315289914608, -0.01953977346420288, -0.007544182240962982, 0.005376509856432676, -0.020727725699543953, -0.0025192787870764732, -0.03159680962562561, -0.020154230296611786, -0.003417070722207427, -0.001012149266898632, 0.010322898626327515, -0.0023622505832463503, -0.015156636945903301, 0.0143510140478611, 0.0142417773604393, 0.009114464744925499, 0.023089976981282234, -0.027254637330770493, 0.040445007383823395, 0.024810459464788437, 0.01308796089142561, 0.059042613953351974, -0.009913260117173195, -0.017491579055786133, 0.026804035529494286, 0.009844986721873283, 0.018078727647662163, -0.02982170879840851, -0.03094138763844967, 0.02711809240281582, -0.0011905129067599773, 0.01771005243062973, -0.009701613336801529, 0.022816883400082588, -0.009107637219130993, 0.01582571491599083, 0.02135583758354187, 0.0022837365977466106, -0.0004416418669279665, 0.0016624509589746594, -0.007728519383817911, -0.004454822279512882, -0.002616568235680461, 0.03667633235454559, -0.008117676712572575, 0.016167080029845238, -0.001833133865147829, 0.010889565572142601, 0.02629881352186203, 0.010862256400287151, 0.004082733765244484, -0.008752617053687572, 0.015798404812812805, -0.015934951603412628, -7.04600170138292e-05, 0.012582739815115929, -0.015934951603412628, 0.004226107615977526, 0.004717674106359482, 0.022284353151917458, -0.018215274438261986, 0.018542984500527382, 0.010172697715461254, 0.024974314495921135, -0.012125309556722641, 0.009653822518885136, 0.0199494119733572, 0.02370443381369114, -0.02358154207468033, -0.03861529007554054, -0.026694798842072487, 0.028865883126854897, -0.00650301668792963, -0.0003891568921972066, 0.030285965651273727, 0.008090367540717125, -0.008486350998282433, 0.010097597725689411, 0.016071496531367302, 0.015293183736503124, 0.003056929912418127, 0.02489238791167736, 0.016344590112566948, -0.008220085874199867, -0.00041454596794210374, 0.012739768251776695, -0.0078104473650455475, -0.004594782367348671, -0.021751822903752327, -0.007161852438002825, -0.006902414374053478, 0.00660542631521821, -0.011271895840764046, -0.040636174380779266, 0.0027343393303453922, 0.04331247881054878, -0.024073109030723572, 0.0085887610912323, -0.005639361217617989, -0.0036218902096152306, -0.004922493360936642, 0.008295186795294285, -0.02446909435093403, 0.010268280282616615, 0.00578273506835103, 0.028265079483389854, -0.019143788143992424, 0.011333341710269451, -0.011818080209195614, 0.00891647208482027, -0.02459198608994484, 0.01318354345858097, 0.018215274438261986, 0.002964761108160019, 0.017669089138507843, -0.0043421718291938305, -0.010862256400287151, -0.00024044947349466383, -0.02823777124285698, 0.004704019520431757, -0.0028009056113660336, 0.024987969547510147, -0.024701222777366638, 0.00976988673210144, 0.006076309364289045, 0.02501527965068817, -0.012589567340910435, -0.013838965445756912, -0.0027411666233092546, 0.017696397379040718, 0.013463463634252548, -0.010363862849771976, -0.03492853790521622, -0.0022205838467925787, 0.004113456699997187, -0.03159680962562561, -0.0005734943551942706, 0.005796389654278755, -0.012316474691033363, 0.001821186044253409, 0.022106843069195747, -0.0016769589856266975, -0.01182490773499012, -0.010896393097937107, -0.002951106522232294, 0.020331742241978645, -0.023226521909236908, 0.025575118139386177, 0.028401626273989677, -0.02471487782895565, 0.007243780419230461, 0.015839368104934692, -0.004198797978460789, -0.006134341470897198, 0.024455439299345016, 0.015839368104934692, -0.03842412307858467, -0.008527315221726894, -0.02713174559175968, -0.009783540852367878, 0.046753447502851486, -0.03277110680937767, -0.007393981330096722, -0.011121694929897785, -0.023622507229447365, -0.01385944802314043, 0.014692380093038082, -0.021983951330184937, 0.015183946117758751, -0.009114464744925499, -0.007346190046519041, 0.03211568668484688, -0.009346593171358109, 0.010834947228431702, 0.004226107615977526, 0.021519694477319717, 0.033972714096307755, -0.010725710541009903, 0.009203219786286354, 0.009537757374346256, 0.0025773111265152693, 0.007066269870847464, -0.016754228621721268, 0.02035905048251152, 0.01659037359058857, 0.0068853460252285, 0.02141045778989792, 0.013600009493529797, 0.0029289177618920803, 0.024605639278888702, -0.00912129133939743, -0.0038676734548062086, -0.03375424072146416, 0.0032446810510009527, -0.008957436308264732, 0.029548615217208862, -0.010978320613503456, -0.0062777153216302395, -0.026899617165327072, -0.0036218902096152306, -0.01852933131158352, 0.0067658680491149426, 0.030695604160428047, 0.012193582952022552, 0.002812853315845132, -0.011633743532001972, 0.01911647990345955, 0.021642586216330528, 0.0005931229097768664, 0.0006477414281107485, -0.012316474691033363, -0.012207238003611565, -0.0062811290845274925, 0.01106024906039238, 0.01441928744316101, 0.018078727647662163, -0.005315063986927271, 0.014610452577471733, -0.005158036015927792, -0.006513257510960102, 0.008814062923192978, 0.010875911451876163, 0.025397608056664467, 0.01671326532959938, -0.015620894730091095, 0.03714058920741081, -0.029958253726363182, -0.007032133638858795, 0.009865469299256802, 0.02048194222152233, -0.026503633707761765, -0.013081133365631104, 0.0020430737640708685, 0.012760249897837639, 0.003539962461218238, 0.017150212079286575, 0.026722107082605362, -0.02070041559636593, 0.003172994125634432, -0.007216470781713724, -0.008670688606798649, 0.02053656056523323, -0.034382354468107224, -0.013456636108458042, 0.014951817691326141, 0.022844193503260612, 0.027582349255681038, 0.01200241781771183, 0.00912129133939743, 0.016576718538999557, 0.008984745480120182, 0.058223333209753036, 0.013169888406991959, 0.012309647165238857, 0.025547809898853302, -0.03408195078372955, -0.03793255612254143, -0.019198406487703323, -0.016631336882710457, 0.002130121923983097, -0.013046997599303722, 0.00553012453019619, -0.006584944203495979, 0.001973093720152974, 0.010172697715461254, 0.011695189401507378, -0.0005909893661737442, -0.026749417185783386, -0.018665876239538193, 0.027568694204092026, 0.00516486307606101, 0.001769981230609119, -0.00303644803352654, -0.022625718265771866, 0.006523498799651861, -0.021751822903752327, 0.027746204286813736, -0.018502021208405495, 0.010391172021627426, 0.01618073508143425, -0.007776310667395592, -0.005332132335752249, -0.009749404154717922, 0.036922115832567215, -0.017805635929107666, 0.030449820682406425, -0.0019270094344392419, 0.027281947433948517, 0.026339776813983917, -0.04284822195768356, 0.011026112362742424, 0.015061055310070515, -0.009599203243851662, -0.018993588164448738, -0.015183946117758751, 0.0077080377377569675, -0.014924508519470692, -0.01267832238227129, -0.0325799435377121, -0.00805623084306717, 0.0031320303678512573, 0.008165467530488968, 0.010295589454472065, -0.012876314111053944, 0.02623054012656212, 0.015416075475513935, 0.0024356443900614977, -0.02030443213880062, -0.00701847905293107, -0.029220905154943466, 0.016494790092110634, 0.0989687442779541, 0.02823777124285698, -0.012173101305961609, 0.006137755233794451, 0.0005005274433642626, 0.01888435147702694, -0.00033240485936403275, -0.03528355807065964, 0.03222492337226868, -0.014009648934006691, 0.020727725699543953, -0.009401211515069008, -0.0018911659717559814, 0.001238304073922336, 0.022693991661071777, -0.018624912947416306, -0.020099611952900887, -0.0005154621903784573, 0.010275107808411121, -0.013538563624024391, 0.007919684052467346, 0.0016291678184643388, -0.0010155629133805633, 0.022434553131461143, -0.01689077541232109, 0.00025282398564741015, 0.03148757293820381, -0.000634940224699676, 0.03129640594124794, -0.010213661938905716, -0.01906186155974865, 0.011258240789175034, 0.021970296278595924, 0.024687567725777626, -0.02240724489092827, 0.006714663468301296, 0.015293183736503124, -0.006349402014166117, -0.004925907123833895, 0.026558252051472664, 0.015211256220936775, 0.023144595324993134, 0.0064893621020019054, -0.01414619479328394, 0.009100809693336487, 0.0041271112859249115, -0.015142982825636864, -0.018392784520983696, -0.021110055968165398, -0.010377516970038414, 0.04183778166770935, 0.010090770199894905, -0.0009097395814023912, -0.0053594415076076984, 0.02530202642083168, -0.001727310474961996, 0.003932532854378223, -0.016918083652853966, -0.009571894071996212, 0.02647632360458374, 0.004243175499141216, -0.009995187632739544, 0.004983939230442047, -0.01123775914311409, -0.011988763697445393, -0.009612858295440674, -0.03369962051510811, -0.007967475801706314, -0.004847392905503511, 0.020372705534100533, -0.01017952524125576, -0.009872295893728733, -0.029849017038941383, 0.007789965253323317, -0.007953820750117302, 0.014228122308850288, 0.010022496804594994, -0.012009245343506336, 0.021219292655587196, -0.009428520686924458, -0.013224507682025433, -0.0478731244802475, 0.019157443195581436, -0.011217276565730572, -0.02123294770717621, -0.00013494612358044833, 0.005591570399701595, 0.021369492635130882, -0.03607552871108055, 0.004280725959688425, 0.008697997778654099, 0.015839368104934692, -0.004069079179316759, -0.011599606834352016, 0.00560522498562932, 0.0018297202186658978, 0.012896796688437462, -0.006844382267445326, 0.008465869352221489, 0.00742811756208539, 0.0068853460252285, -0.03484661132097244, -0.002451005857437849, -0.015866678208112717, 0.015115673653781414, -0.00974257756024599, 0.005386750679463148, 0.023909253999590874, -0.007639764342457056, -0.03705866262316704, 0.002282029716297984, -0.008991573005914688, -0.008090367540717125, 0.003142271190881729, 0.010138561017811298, 0.019143788143992424, 0.018338166177272797, 0.0010386051144450903, -0.0029067290015518665, 0.0004646840679924935, -0.00454699108377099, -0.02747311256825924, 0.007673901040107012, -0.005198999773710966, -0.01799679920077324, -0.014596797525882721, 0.002558535896241665, -0.02946668677031994, 0.015784749761223793, 0.0016283143777400255, 0.02046828716993332, 0.010753019712865353, 0.01829720102250576, -0.020427323877811432, -0.04224741831421852, 0.0021198811009526253, -0.025288371369242668, -0.005830526351928711, -0.003319781506434083, 0.0015489468351006508, 0.005304823163896799, -0.014637761749327183, -0.027664275839924812, -0.04661690071225166, -0.004714260343462229, -0.023158248513936996, -0.014760653488337994, -0.009858641773462296, 0.016522100195288658, -0.00946948491036892, -0.0077012102119624615, -0.03746829926967621, -0.024196000769734383, -0.007571491412818432, -0.01138796005398035, -0.027841785922646523, 0.0033863477874547243, -0.013313262723386288, 0.017027322202920914, -0.015620894730091095, 0.036157455295324326, -0.014938163571059704, 0.00529458187520504, 0.010555027984082699, 0.011026112362742424, -0.0009728922741487622, 0.0006989462999626994, -0.017314068973064423, -0.03897031024098396, -0.002870885655283928, 0.028510862961411476, 0.016208043321967125, 0.02900242991745472, 0.005297995638102293, -0.017518887296319008, 0.04978477582335472, -0.0053628552705049515, -0.01194779947400093, -0.009708440862596035, -0.03588436171412468, -0.02341768704354763, 0.007755829021334648, -0.010664264671504498, 0.000839332933537662, -0.021465076133608818, 0.0057656667195260525, 0.03954380378127098, 0.0029903636313974857, 0.0027223913930356503, -0.03460082784295082, 0.016098806634545326, -0.02818315289914608, -0.006069482304155827, 0.02930283173918724, 0.02736387401819229, -0.004157834220677614, 0.011961454525589943, -0.004942975472658873, 0.005246791057288647, -0.006755627226084471, -0.002345182467252016, -0.004352412652224302, 0.0015549208037555218, -0.023800017312169075, -0.03252532333135605, 0.004762051627039909, -0.00022764825553167611, -0.017518887296319008, 0.026489978656172752, -0.016344590112566948, -0.01787390746176243, -0.012582739815115929, -0.02341768704354763, -0.03806910291314125, -0.020741380751132965, -0.006561048794537783, -0.012562258169054985, 0.022147806361317635, -0.0012528121005743742, -0.005649602506309748, -0.0017512061167508364, -0.02089158073067665, 0.03001287207007408, 0.009885950945317745, 0.023554233834147453, 0.018979933112859726, -0.02141045778989792, 0.0008517074165865779, 0.010753019712865353, -0.029084358364343643, -0.026694798842072487, 0.022379934787750244, 0.03506508469581604, -0.01570282317698002, 0.008138158358633518, -0.016931738704442978, 0.0061718919314444065, -0.03765946626663208, -0.025725319981575012, 0.00375160900875926, 0.00018423079745844007, -0.005922695156186819, -0.008124503307044506, 0.00031490984838455915, -0.0170136671513319, -0.007680728565901518, 0.00573494378477335, 0.018488366156816483, -0.008274704217910767, -0.01817430928349495, -0.044159065932035446, -0.012780731543898582, 0.021314874291419983, 0.022748610004782677, 0.03124178946018219, 0.008288359269499779, -0.031214479357004166, -0.01659037359058857, -0.02117832750082016, -0.012603221461176872, -0.013907238841056824, 0.01635824516415596, -0.01441928744316101, -0.0010881031630560756, 0.005284341052174568, -0.008308840915560722, -0.011230931617319584, 0.011599606834352016, -0.015457038767635822, 0.024018490687012672, 0.02941206842660904, 0.013750210404396057, 0.0007514312746934593, 0.00239126686938107, 0.024250619113445282, 0.00894378125667572, -0.0010249505285173655, 0.019020896404981613, -0.029985563829541206, -0.00879358034580946, -0.008554624393582344, 0.0038642596919089556, -0.00017281639156863093, -0.025861864909529686, -0.02430523745715618, -0.01321085263043642, 0.00722329830750823, -0.006195787340402603, 0.01923937164247036, -0.035911671817302704, -0.009858641773462296, 0.0099747059866786, -0.00976988673210144, -0.0003981177578680217, 0.003748195478692651, 0.00926466565579176, 0.010432136245071888, 0.02677672542631626, -0.021396802738308907, 0.020632144063711166, -0.006318679079413414, 0.00480984291061759, -0.031077934429049492, 0.0033692794386297464, 0.009100809693336487, -0.0028350420761853456, 0.004932734649628401, -0.028374318033456802, -0.019212061539292336, 0.022748610004782677, 0.02347230538725853, 0.019976720213890076, 0.002104519633576274, 0.01215261872857809, 0.004110042937099934, -0.0006537153385579586, 0.012439366430044174, -0.019212061539292336, -0.027759859338402748, 0.023786362260580063, 0.015921296551823616, -0.00501466216519475, -0.00750321801751852, -0.010077115148305893, 0.021738167852163315, -0.001795583637431264, 0.013791174627840519, 0.010363862849771976, -0.047572724521160126, 0.023608852177858353, -0.01630362682044506, 0.0022973911836743355, 0.008261050097644329, 0.005076108034700155, -0.026790380477905273, -0.0063596428371965885, -0.0114152692258358, 0.011149004101753235, 0.011142176575958729, -0.02759600430727005, 0.009203219786286354, 0.017737362533807755, -0.017163867130875587, 0.011401614174246788, 0.006291369907557964, -0.0057451846078038216, 0.0026285159401595592, -0.017163867130875587, -0.05505546182394028, -0.009838159196078777, -0.004034942481666803, 0.03298958018422127, 0.0027684757951647043, -0.015306837856769562, 0.004205625504255295, -0.020140577107667923, -0.024086764082312584, -0.012289165519177914, -0.004789360798895359, 0.006690767593681812, 0.04172854498028755, 0.00478253373876214, 0.005905626807361841, 0.00987912341952324, -0.007462254259735346, 0.006718077231198549, -0.009483139030635357, -0.017109248787164688, 0.004215866327285767, -0.008302014321088791, -0.0002850403543561697, -0.002773596439510584, -0.016249006614089012, -0.006195787340402603, 0.02329479530453682, -0.014542179182171822, 0.010869083926081657, 0.0020652625244110823, -0.0030415684450417757, 0.0031559260096400976, -0.017368687316775322, 0.0031200824305415154, 0.029029740020632744, 0.00645522540435195, -0.015743786469101906, -0.019553426653146744, -0.015675513073801994, -0.005209240596741438, -0.0066873542964458466, -0.030504439026117325, -0.02070041559636593, -0.004949802532792091, -0.0228305384516716, 0.003823295934125781, -0.04593417048454285, -0.00478253373876214, -0.0129104508087039, -0.026093995198607445, 0.04407713934779167, -0.014583142474293709, 0.010268280282616615, 0.03290765359997749, 0.004925907123833895, -0.02700885385274887, 0.0022632547188550234, 0.032088376581668854, -0.01824258267879486, -0.0343550443649292, 0.003388054668903351, -0.03113255277276039, 0.01159277930855751, -0.000514608807861805, 0.003065464086830616, -0.005431128200143576, 0.00463233282789588, -0.01149719674140215, 0.004847392905503511, -0.025288371369242668, 0.02829238958656788, 0.013791174627840519, -0.012794386595487595, -0.002193274674937129, 0.013074306771159172, -0.009571894071996212, -9.467564086662605e-05, -0.01801045425236225, -0.02818315289914608, -0.0003181101637892425, 0.0008960849954746664, -0.007380326744168997, 0.012398402206599712, -0.016604028642177582, -0.010077115148305893, 0.025370299816131592, -0.027732549235224724, 0.016208043321967125, 0.21224753558635712, -0.0032037170603871346, 0.006622494664043188, 0.030559057369828224, -0.007632937282323837, -0.002930624643340707, 0.02435985580086708, -0.008779926225543022, -0.0033095404505729675, -0.01465141586959362, -0.009640167467296124, 0.003611649153754115, -0.001357782050035894, 0.006690767593681812, 0.025616083294153214, -0.007946993224322796, -0.03137833625078201, -0.006246992386877537, -0.004410444758832455, -0.06996631622314453, 0.015989569947123528, -0.017368687316775322, -0.013702419586479664, -0.010957838967442513, 0.01646748185157776, 0.012610048986971378, -0.0085341427475214, -0.00362530373968184, 0.025206442922353745, -0.006356229539960623, -0.029985563829541206, -0.005079521797597408, 0.00717550702393055, -0.010985148139297962, -0.0033385565038770437, -0.007161852438002825, 0.015197601169347763, -0.0046391598880290985, 0.00941486656665802, -0.021669894456863403, -0.00843856018036604, 0.008575106039643288, 0.0018689772114157677, 0.00375160900875926, -0.022461863234639168, 0.029193595051765442, -0.010636955499649048, -0.01787390746176243, -0.013224507682025433, 0.009954224340617657, -0.023444997146725655, 0.017846599221229553, 0.04749079793691635, 0.024086764082312584, 0.006485948339104652, -0.011312859132885933, -0.019089169800281525, 0.022284353151917458, -0.026790380477905273, 0.003231026465073228, -0.015457038767635822, 0.030313273891806602, -0.004041770007461309, 0.022106843069195747, -0.012377920560538769, -0.002913556294515729, -0.005932935979217291, -0.017505234107375145, 0.01432370487600565, -0.03143295273184776, -0.0002477034868206829, -0.019375916570425034, -0.012132137082517147, 0.021451421082019806, 0.0008747496176511049, -0.009305628947913647, 0.023922909051179886, -0.012186755426228046, 0.0009472898091189563, 0.007653418928384781, 0.003519480349496007, -0.010295589454472065, 0.005513056181371212, -0.011135349050164223, -0.011783944442868233, -0.028510862961411476, 0.006212855689227581, -0.015866678208112717, -0.029275523498654366, -0.0032617493998259306, -0.023199213668704033, -0.01877511292695999, -0.0030842390842735767, -0.005178517661988735, 0.01753254234790802, 0.01952611841261387, 0.03135102614760399, 0.0171229038387537, 0.00029762822668999434, -0.016249006614089012, -0.016522100195288658, -0.008732134476304054, 0.026285158470273018, 0.008336150087416172, -0.02489238791167736, -0.013012860901653767, 0.012009245343506336, 0.005188758485019207, 0.005400405265390873, -0.02747311256825924, 0.029794398695230484, -0.01450121495872736, -0.005236549768596888, -0.028155842795968056, 0.011988763697445393, 0.028510862961411476, -0.014173503965139389, -0.028046606108546257, -0.011394787579774857, 0.012821695767343044, 0.01244619395583868, -0.026872308924794197, 0.0035160668194293976, 0.006721490528434515, -0.0022939774207770824, -0.012309647165238857, -0.024277929216623306, 0.02030443213880062, 0.019457845017313957, -0.010049805976450443, 0.025138169527053833, -0.03113255277276039, -0.006741972640156746, 0.01215261872857809, -0.015238565392792225, 0.025698009878396988, 0.002176206326112151, -0.01783294416964054, 0.034273117780685425, -0.00501466216519475, 0.013251816853880882, 0.0017452321480959654, -0.008315668441355228, 0.009134946390986443, 0.011954626999795437, -0.011688361875712872, 0.01934860832989216, -0.006642976775765419, 0.015334147028625011, -0.012200410477817059, -0.025738973170518875, 0.014569488354027271, 0.009210046380758286, -0.02448274753987789, 0.005233136471360922, -0.009203219786286354, -0.00891647208482027, -0.025383953005075455, 0.00357409892603755, 0.02059117890894413, -0.026503633707761765, 0.008650206960737705, 0.0009575308067724109, -0.002258134074509144, -0.01876145973801613, -0.019608046859502792, -0.174888476729393, 0.026148613542318344, 0.01123775914311409, -0.009503621608018875, 0.03288034349679947, 0.03563857823610306, 0.02946668677031994, -0.0004523095558397472, 0.014255431480705738, -0.01806507259607315, 0.009892778471112251, 0.016385553404688835, -0.012248201295733452, -0.022844193503260612, -0.009906432591378689, 0.01570282317698002, -0.0022513067815452814, 0.02429158426821232, 0.0420016348361969, -0.003413656959310174, 0.005977313499897718, -0.004847392905503511, 0.01805141754448414, 0.0057690804824233055, -0.0009814264485612512, 0.010650609619915485, -0.006226510275155306, 0.005816871766000986, 0.010964666493237019, -0.016508445143699646, -0.019389571622014046, -0.0013842378975823522, -0.0026746003422886133, -0.005731530021876097, 0.01403695810586214, 0.005263858940452337, 2.6935887945001014e-05, 0.010268280282616615, -0.016604028642177582, 0.019430536776781082, 0.0031576326582580805, 0.010227316059172153, 0.02541126310825348, -0.005970485974103212, 0.001986748306080699, 0.02654459699988365, -0.008575106039643288, -0.0035672716330736876, -0.0028845402412116528, -0.021465076133608818, 0.01988113857805729, -0.007359844632446766, 0.009578721597790718, 0.00480984291061759, 0.023977527394890785, 0.007011651527136564, 0.013798002153635025, 0.012207238003611565, 0.003966669552028179, -0.02788275107741356, -0.004417272284626961, 0.0008188509964384139, 0.03492853790521622, -0.01988113857805729, 0.007271089591085911, -0.006485948339104652, -0.024018490687012672, 0.01149719674140215, -0.03460082784295082, 0.02041366882622242, -0.006236751563847065, 0.001986748306080699, 0.02364981546998024, 0.0014200813602656126, -0.008868681266903877, 0.008104021660983562, -0.024619294330477715, 0.02364981546998024, 0.008336150087416172, -0.019212061539292336, -0.02664017863571644, 0.03372693061828613, -0.013333744369447231, 0.0014234950067475438, 0.0013279125560075045, 0.0142963957041502, -0.01347029022872448, -0.023158248513936996, 0.00029848163831047714, -0.0026387569960206747, 0.008732134476304054, -0.022693991661071777, -0.009141773916780949, -0.02236628159880638, 0.015020091086626053, 0.006584944203495979, 0.01214579213410616, -0.017109248787164688, 0.0011068782769143581, -0.00480984291061759, -0.0017460855888202786, -0.018488366156816483, -0.01858394965529442, 0.03760484606027603, 0.01917109824717045, 0.011135349050164223, -0.004714260343462229, 0.020085958763957024, 0.03632131218910217, -0.008315668441355228, -0.0010275107342749834, 0.006967274006456137, 0.020755033940076828, -0.013784347102046013, 0.01450121495872736, 0.036457858979701996, -0.008465869352221489, -0.011367477476596832, 0.0037618500646203756, -0.0006430476205423474, 0.06963860243558884, -0.005946590565145016, -0.009749404154717922, 0.009544584900140762, -0.0284289363771677, -0.03694942221045494, -0.10590529441833496, 0.002608034061267972, 0.014869890175759792, 0.020277122035622597, 0.002382732694968581, 0.01648113690316677, -0.012780731543898582, 0.008342977613210678, -0.0011999004054814577, 0.008076712489128113, -0.012364265508949757, -0.04929320886731148, -0.002084037521854043, 0.003184942062944174, 0.018433747813105583, -0.021314874291419983, -0.0029613475780934095, -0.022693991661071777, 0.006345988251268864, 0.040089987218379974, 0.0028981948271393776, -0.008930127136409283, 0.008274704217910767, -0.01765543408691883, 0.011790771037340164, 0.007168679963797331, -0.03582974523305893, 0.007359844632446766, 0.0380144864320755, 0.0170682854950428, -0.01612611673772335, -0.009681131690740585, 0.02235262654721737, 0.002189860912039876, -0.0285381730645895, -0.0008849906153045595, -0.04435023292899132, -0.01929398998618126, 0.024018490687012672, -0.031787972897291183, 0.004277312196791172, -0.023567888885736465, 0.029849017038941383, -0.007742173969745636, 0.009401211515069008, -0.010022496804594994, -0.010131734423339367, 0.002981829456984997, 0.011934145353734493, -0.013961857184767723, -0.021792786195874214, 0.0035945808049291372, -0.028865883126854897, 0.00506245344877243, 0.021028127521276474, -0.03378155082464218, 0.029220905154943466, -0.015211256220936775, -0.015566276386380196, -0.002188154263421893, -0.025698009878396988, 0.014610452577471733, -0.018024109303951263, 0.021779131144285202, 0.0035433759912848473, -0.005888558458536863, -0.031077934429049492, -0.01288314163684845, 0.035092394798994064, 0.004417272284626961, -0.029685162007808685, 0.01788756251335144, -0.030504439026117325, 0.017614470794796944, -0.005400405265390873, 0.022557444870471954, -0.020509252324700356, -0.008691171184182167, 0.011940971948206425, -0.013777519576251507, 0.0017938767559826374, -0.016494790092110634, 0.014200813136994839, 0.0014277620939537883, 0.008185949176549911, 0.02247551828622818, 0.024919696152210236, -0.013244989328086376, 0.004475304391235113, -0.030914077535271645, 0.004512854386121035, 0.00014017328794579953, -0.009257838129997253, -0.0128012141212821, 0.017955835908651352, 0.042220111936330795, 0.0047415695153176785, -0.006704422645270824, -0.009763059206306934, 0.006001208908855915, -0.01776467077434063, -0.0029033152386546135, -0.06942012906074524, 0.01888435147702694, 0.011435750871896744, 0.0021488971542567015, -0.0003650479484349489, -0.02930283173918724, 0.01646748185157776, -0.0009600910707376897, -0.01217992790043354, 0.0077012102119624615, -0.011149004101753235, 0.03042251244187355, -0.00929880142211914, -0.0171229038387537, -0.02258475497364998, -0.010957838967442513, 0.009128118865191936, -0.022571099922060966, 0.02089158073067665, 0.006236751563847065, 0.009162255562841892, -0.004161247983574867, 0.002913556294515729, -0.006257233209908009, -0.015730131417512894, 0.009059845469892025, 0.030695604160428047, 0.01959439180791378, 0.010848602280020714, -0.013395190238952637, 0.005055625922977924, -0.045032963156700134, -0.01877511292695999, 0.002307632239535451, -0.017218485474586487, 0.007441772148013115, -0.006134341470897198, -0.004608436953276396, 0.0008269583922810853, 0.04770927131175995, -0.003094480140134692, -0.012091172859072685, -0.0029579338151961565, -0.027486765757203102, 0.009210046380758286, 0.04437754303216934, -0.017095593735575676, -0.009223701432347298, 0.009708440862596035, -0.02242089994251728, 0.021028127521276474, 0.02829238958656788, 0.011906836181879044, -0.007393981330096722, 0.004622091539204121, -0.017095593735575676, 0.01859760284423828, -0.0021779132075607777, 0.022229734808206558, -0.01032972615212202, 0.007100406568497419, -0.015334147028625011, 0.002270082011818886, -0.0189526230096817, 0.01817430928349495, -0.008732134476304054, -0.007448599673807621, -0.012405229732394218, -0.02188836969435215, -0.012227719649672508, -0.005963658913969994, 0.0023315276484936476, 0.011135349050164223, 0.023909253999590874, 0.010063461028039455, 0.030395202338695526, -0.005414059851318598, 0.005792975891381502, -0.031678736209869385, 0.014569488354027271, -0.0034648620057851076, -0.005950004328042269, -0.03951649367809296, 0.015402420423924923, 0.02471487782895565, -0.0053628552705049515, 0.004867875017225742, 0.01847471110522747, -0.002304218476638198, 0.005239963531494141, 0.015156636945903301, -0.018092382699251175, 0.004410444758832455, -0.006905828136950731, 0.017027322202920914, 0.029903635382652283, -0.017163867130875587, -0.01805141754448414, 0.03263456001877785, 0.02735022082924843, -0.011285549961030483, 0.006482534576207399, 0.010903220623731613, -0.02059117890894413, 0.0040247016586363316, 0.0023810258135199547, -0.005379923619329929, -0.02389559894800186, -0.003430725308135152, 0.01409157644957304, 0.006243578623980284, 0.010555027984082699, 0.014159849844872952, 0.02405945397913456, -0.018488366156816483, 0.007953820750117302, 0.0045299227349460125, -0.009080328047275543, -0.00912129133939743, 0.037085969001054764, -0.01355904620140791, 0.020345395430922508, 0.026872308924794197, -0.003666267730295658, 0.02729560248553753, 0.021874714642763138, 0.01964901015162468, 0.012637358158826828, 0.004867875017225742, 0.015375111252069473, 0.013545391149818897, 0.0099747059866786, -0.06292052567005157, 0.0010403119958937168, 0.007967475801706314, -0.03522894158959389, -0.0046357461251318455, 0.0021454833913594484, -0.004676710348576307, 0.047927744686603546, 0.020277122035622597, -0.017669089138507843, -0.0030466888565570116, 0.012241373769938946, 0.015730131417512894, 0.005082935560494661, 0.01694539375603199, 0.0012246494879946113, -0.010643783025443554, 0.010985148139297962, -0.011155831627547741, 0.031269099563360214, -0.006079723127186298, -0.005584742873907089, 0.0008875508210621774, -0.01167470682412386, 0.0420016348361969, -0.03137833625078201, -0.016016878187656403, 0.012753422372043133, 0.00501466216519475, 0.0285927914083004, -0.004331931006163359, -0.009510448202490807, 0.01123775914311409, 0.019908448681235313, 0.0033010062761604786, 0.006482534576207399, -0.025274716317653656, 0.004758637864142656, 0.021861059591174126, -0.005195586010813713, -0.01462410669773817, 0.011667879298329353, 0.001833133865147829, -0.0028179739601910114, -0.015088364481925964, 0.008008439093828201, 0.012616876512765884, -0.021615276113152504, 0.013361053541302681, -0.03312612697482109, -0.009489966556429863, 0.008254222571849823, 0.0017401116201654077, 0.0027957851998507977, -0.005847594700753689, -0.015511658042669296], "9f9746bb-a323-4f71-86a3-cc9695cab68f": [-0.003592801047489047, -0.019731568172574043, -0.004725941456854343, 0.0077080680057406425, -0.0029685560148209333, 0.0407659076154232, -0.025553330779075623, -0.015931816771626472, -0.015266859903931618, -0.027290361002087593, 0.02868812531232834, 0.01979942061007023, 0.028742408379912376, 0.007762350142002106, 0.005014315247535706, 0.02030153200030327, 0.0366676039993763, 0.006225486285984516, 0.033383533358573914, -0.035663384944200516, -0.01117534190416336, 0.0027056268882006407, -0.0032755895517766476, 0.023938436061143875, -0.027656765654683113, 0.028416715562343597, 0.027819611132144928, -0.011962433345615864, 0.015497558750212193, -0.013964087702333927, -0.02199784852564335, 0.006496896967291832, 0.0042306166142225266, -0.0028565991669893265, -0.018903765827417374, -0.0136316092684865, -0.0006416321848519146, -0.019772280007600784, 0.0009796235244721174, -0.002057633362710476, 0.007280596066266298, -0.00604567676782608, -0.01704460009932518, 0.012545966543257236, -0.023327762261033058, 0.026788249611854553, -0.008861564099788666, -0.01772312819957733, -0.017763840034604073, 0.008094828575849533, 0.011127844452857971, 0.02743963710963726, -0.029068101197481155, 0.013950517401099205, -0.016393214464187622, 0.00020748087263200432, 0.022187836468219757, 0.015904676169157028, -0.02020653709769249, 0.0203829538077116, -0.0005517273675650358, 0.011494249105453491, 0.00907190702855587, 0.01330591645091772, -0.032325033098459244, -0.005268762819468975, -0.011385684832930565, -0.017980968579649925, 0.00483450572937727, -0.0032755895517766476, 0.026883244514465332, 0.013373768888413906, -0.005546959117054939, -0.0008646979695186019, 0.007077037822455168, -0.02391129545867443, -0.02277136966586113, -0.01768241636455059, -0.018930906429886818, 0.009926851838827133, -0.007599503733217716, -0.03517484664916992, -0.005563922226428986, 0.01078858133405447, 0.030913695693016052, -0.016922466456890106, -0.015104013495147228, 0.036993298679590225, -0.012125279754400253, -0.026014728471636772, 0.0016394911799579859, 0.015199007466435432, 0.00582854775711894, 0.033383533358573914, -0.0012501862365752459, 0.008949772454798222, -0.011962433345615864, 0.024060571566224098, 0.0033281755167990923, -0.01097178366035223, -0.027819611132144928, -0.008067687042057514, -0.0217671487480402, -0.010184692218899727, -0.03503913804888725, 0.01635250262916088, 0.0025427802465856075, -0.004023665562272072, 0.01424906961619854, -0.026720397174358368, -0.019080182537436485, 0.030072322115302086, -0.002495283493772149, -0.041390154510736465, -0.012328837998211384, -0.03740041330456734, 0.010822507552802563, -0.011589243076741695, -0.029258089140057564, -0.009261894971132278, 0.011935291811823845, 0.021468598395586014, -0.00036258791806176305, -0.011826727539300919, -0.00014694352285005152, 0.009397600777447224, -0.0032077368814498186, -0.02510550245642662, 0.013000579550862312, -0.005126272328197956, 0.025987587869167328, -0.013923375867307186, 0.013590898364782333, -0.004654695745557547, -0.011562101542949677, 0.0032603228464722633, -0.027846751734614372, -0.007362019270658493, -0.009574017487466335, -0.024820521473884583, 0.007083822973072529, 0.010279685258865356, -0.01475117914378643, -0.028742408379912376, -0.026123294606804848, 0.025784030556678772, 0.010469673201441765, -0.0052416217513382435, -0.02230997197329998, 0.012539180926978588, 0.0201522558927536, -0.0015470418147742748, 0.016203226521611214, -0.01438477449119091, 0.023205626755952835, 0.007362019270658493, -0.0021475383546203375, 0.0017302441410720348, 0.009743649512529373, -0.01511758379638195, 0.00547571387141943, 0.017288871109485626, 0.004597021266818047, -0.005143235437572002, 0.005323044955730438, 0.029393794015049934, 0.004308647010475397, -0.012647745199501514, -0.03457774221897125, 0.0041831196285784245, 0.014737608842551708, 0.021929996088147163, -0.03316640481352806, 0.006228878628462553, -0.0036810096353292465, -0.006049069110304117, 0.03550053760409355, 0.015592552721500397, -0.034252047538757324, 0.004698800388723612, -0.02685610204935074, -0.007287381216883659, 0.021468598395586014, 0.029475217685103416, -0.034794870764017105, -0.013604468666017056, -0.02593330666422844, -0.004993959330022335, -0.0074841538444161415, 0.012125279754400253, 0.0054655359126627445, 0.018795201554894447, -0.008529085665941238, 0.0028040132019668818, -0.6305416822433472, -0.03240645304322243, -0.01868663728237152, -0.0017709557432681322, -0.011100703850388527, 0.0006259412621147931, 0.013950517401099205, 0.014493338763713837, -0.00930260680615902, 0.00455970223993063, 0.0008358605555258691, 0.02743963710963726, -0.0008172011002898216, -0.016230368986725807, -0.027928175404667854, -0.015131154097616673, 0.01209135353565216, -0.013394124805927277, -0.004037236329168081, -0.01585039310157299, -0.014683326706290245, 0.005041456315666437, -0.010713943280279636, 0.000930430309381336, 0.002478320151567459, -0.013414480723440647, 0.010795366019010544, 0.01051716972142458, 0.005872651934623718, 0.023477038368582726, -0.03691187500953674, 0.03468630462884903, 0.021183615550398827, 0.01708531193435192, 0.05099809914827347, -0.012674886733293533, -0.021373603492975235, 0.023517750203609467, 0.0033366570714861155, 0.0153482835739851, -0.022784940898418427, -0.032650724053382874, 0.008596938103437424, 0.004803971853107214, 0.01727529987692833, -0.00749093946069479, 0.020233677700161934, -0.011691021732985973, 0.025444766506552696, 0.025634754449129105, -0.00465130340307951, -0.007267025299370289, 0.00364708318375051, -0.010761439800262451, -0.008746214210987091, 0.005065205041319132, 0.030208026990294456, -0.017845263704657555, 0.0055571370758116245, 0.003752254880964756, 0.00218146457336843, 0.02680182084441185, 0.0004965970292687416, -0.006188167259097099, -0.013109143823385239, 0.023124203085899353, -0.009451882913708687, -0.0008049028110690415, 0.005166984163224697, -0.004597021266818047, 0.016705337911844254, 0.008447662927210331, 0.016610343009233475, -0.015171865932643414, 0.022459248080849648, 0.014276210218667984, 0.013197352178394794, -0.010184692218899727, 0.011942077428102493, 0.012016715481877327, 0.018998758867383003, -0.024684816598892212, -0.03050657920539379, -0.023164914920926094, 0.02648969739675522, -0.00897691398859024, -0.0022951180581003428, 0.030669424682855606, 0.0003867604536935687, -0.006982043851166964, 0.006490111816674471, 0.0066088540479540825, -0.0005746276583522558, 0.012674886733293533, 0.031727928668260574, 0.02762962318956852, -0.008420521393418312, 0.015239719301462173, 0.013095573522150517, -0.011168556287884712, -0.0004885395173914731, -0.015538270585238934, 0.009356888942420483, -0.00421365350484848, -0.00112211424857378, -0.008841208182275295, -0.040847331285476685, -0.005445179995149374, 0.04559702053666115, -0.024291271343827248, 0.017071742564439774, -0.010110054165124893, -0.013726603239774704, -0.009716507978737354, 0.0039015309885144234, -0.027846751734614372, 0.03042515553534031, 0.010327182710170746, 0.04044021666049957, -0.023395614698529243, 0.026788249611854553, -0.009370459243655205, 0.0024749275762587786, -0.025268349796533585, 0.010245759040117264, 0.03330210968852043, 0.005546959117054939, 0.012702027335762978, 0.002332436852157116, -0.0010084608802571893, -0.00218146457336843, -0.020260820165276527, 0.026815392076969147, -0.006367976777255535, 0.023395614698529243, -0.021468598395586014, 0.01737029477953911, 0.008366239257156849, 0.01498187892138958, -0.015823252499103546, -0.018632354214787483, -0.0012315267231315374, 0.011548531241714954, 0.007002399768680334, -0.01365196518599987, -0.040114521980285645, -0.0052755484357476234, -0.0026869673747569323, -0.02574331872165203, 0.0069684735499322414, -0.0008371328003704548, -0.024711957201361656, -0.00820339284837246, 0.015796111896634102, 0.00018458058184478432, -0.010747869499027729, -0.013251634314656258, 0.002676789416000247, 0.024861233308911324, -0.023952007293701172, 0.01589110493659973, 0.03308498114347458, -0.031402233988046646, 0.0167189072817564, 0.010713943280279636, 0.0012450972571969032, 0.002624203683808446, 0.019623003900051117, 0.008183036930859089, -0.03797037526965141, 0.00018977555737365037, -0.02693752571940422, -0.019717996940016747, 0.039924535900354385, -0.035663384944200516, 0.0014020066009834409, -0.0018744311528280377, -0.018211668357253075, -0.018116673454642296, 0.016393214464187622, -0.02309706248342991, 0.009628299623727798, -0.0033044270239770412, -0.01745171658694744, 0.013529830612242222, -0.006663136184215546, 0.004060984589159489, -0.0036335126496851444, 0.023124203085899353, 0.03151080012321472, -0.01165709551423788, 0.001906661200337112, 0.017071742564439774, 0.0027887464966624975, -0.003241663333028555, -0.01914803497493267, 0.0254311952739954, 0.020600082352757454, 0.008501945063471794, 0.011202482506632805, 0.016162516549229622, -0.012830947525799274, 0.020002979785203934, -0.010137194767594337, 0.006781878415495157, -0.026788249611854553, -0.003962598275393248, 0.001982995541766286, 0.028742408379912376, -0.016637485474348068, 0.00011418339272495359, -0.02203856036067009, 0.0007277203258126974, -0.024766240268945694, -0.0007264480809681118, 0.032922133803367615, 0.012355978600680828, 0.005519818048924208, -0.017126023769378662, 0.01868663728237152, 0.005482499022036791, -0.007769135292619467, -0.002837939653545618, -0.007233099080622196, -0.012193132191896439, -0.004485064186155796, 0.00410169642418623, 0.01314985565841198, 0.022988498210906982, -0.010408605448901653, 0.015863964334130287, 0.002943111350759864, -0.0039490279741585255, 0.009316177107393742, 0.015823252499103546, 0.00913976039737463, 0.015171865932643414, -0.014683326706290245, 0.03707472234964371, -0.029475217685103416, 0.006646173074841499, 0.004712370689958334, 0.009261894971132278, -0.02836243249475956, -0.0023612743243575096, 0.0044172112829983234, 0.018252378329634666, 0.006351013667881489, 0.012518825009465218, 0.018170956522226334, -0.00630012433975935, 8.322559006046504e-05, 0.0011246587382629514, -0.01092428620904684, 0.024426976218819618, -0.01947372779250145, -0.012464542873203754, 0.011568887159228325, 0.01754671148955822, 0.031917914748191833, -0.0007535891490988433, 0.01737029477953911, 0.009404385462403297, 0.007558791898190975, 0.05672486498951912, 0.014995449222624302, 0.02433198131620884, 0.01781812123954296, -0.02597401849925518, -0.015863964334130287, -0.007056681904941797, -0.007077037822455168, -0.0004230192571412772, -0.014941167086362839, 3.313120760140009e-05, 0.001441870117560029, 0.010795366019010544, -0.005580885335803032, 0.01760099269449711, -0.005024493206292391, -0.03674902766942978, -0.021862143650650978, 0.03862176463007927, 0.01200314424932003, -0.0011068473104387522, -0.004169548861682415, -0.017655275762081146, 0.011752089485526085, -0.01694960705935955, 0.02790103480219841, -0.021740008145570755, 0.002469838596880436, 0.031212247908115387, -0.01874091848731041, 0.0017073438502848148, -0.002630988834425807, 0.026788249611854553, -0.02007083222270012, 0.03520198538899422, -0.008162681013345718, 0.027276789769530296, 0.01477832067757845, -0.0366676039993763, 0.02030153200030327, 0.017872404307127, -0.012362764216959476, -0.0226763766258955, -0.016528921201825142, 0.0033434422221034765, -0.018225237727165222, -0.010042200796306133, -0.02313777431845665, -0.013441622257232666, -0.0022476210724562407, 0.005248407367616892, 0.01576896943151951, -0.005781050771474838, 0.014791890978813171, 0.02387058362364769, -0.004814149811863899, -0.011412826366722584, -0.005387505050748587, -0.024033430963754654, 0.007470583543181419, 0.10422176122665405, 0.027005378156900406, -0.014846173115074635, 0.012294910848140717, 0.01737029477953911, 0.006585105787962675, -0.00764021510258317, -0.03398063778877258, 0.043507158756256104, 0.00675813015550375, 0.019120894372463226, -0.024426976218819618, 0.010456102900207043, 0.010082912631332874, 0.019853703677654266, -0.016338933259248734, -0.02739892527461052, -0.003765825415030122, 0.008128754794597626, -0.0033247829414904118, 0.0023731484543532133, 0.0013629912864416838, 0.012376334518194199, 0.021129334345459938, -0.03403491899371147, -0.002790442667901516, 0.022622093558311462, 0.008658005855977535, 0.02034224197268486, -0.00913976039737463, -0.004963425919413567, 0.013991229236125946, 0.02735821343958378, 0.03197219595313072, -0.01947372779250145, 0.014737608842551708, 0.0011043028207495809, 6.562629278050736e-05, -0.002692056354135275, 0.01662391424179077, 0.01005577202886343, 0.016556061804294586, 0.018252378329634666, -0.016461066901683807, 0.011731733568012714, 0.009675796143710613, 0.0015970831736922264, -0.01369946263730526, -0.013509474694728851, -0.012213488109409809, 0.03854034096002579, 0.016556061804294586, -0.018890194594860077, -0.013346628285944462, 0.029258089140057564, -0.010211832821369171, 0.011114274151623249, -0.01708531193435192, -0.013224493712186813, 0.026693256571888924, -0.006354406476020813, -0.008196607232093811, 0.006788663566112518, -0.01947372779250145, -0.0038608191534876823, -0.021495738998055458, -0.030208026990294456, -0.0013757137348875403, -0.012512040324509144, 0.018768059089779854, -0.011426396667957306, -0.01960943266749382, -0.01772312819957733, 0.01152139063924551, -0.02304278127849102, 0.0100761279463768, -0.0012773273047059774, -0.02323276735842228, 0.01207099761813879, -0.020952917635440826, -0.007070252671837807, -0.04000595957040787, 0.012491684406995773, -0.009784361347556114, -0.019989408552646637, -0.012980223633348942, 0.005031278356909752, 0.010707157664000988, -0.020274389535188675, 0.02088506519794464, 0.01273595355451107, 0.020355813205242157, -0.01438477449119091, -0.023748448118567467, 0.005027886014431715, -3.403237496968359e-05, -0.0017862225649878383, -0.011847083456814289, 0.006697062402963638, 0.005706413183361292, 0.017465287819504738, -0.040521640330553055, 0.0024969796650111675, -0.022798510268330574, 0.013360198587179184, -0.01278345100581646, 0.00054960697889328, 0.020559370517730713, -0.008854778483510017, -0.01294629741460085, 0.0011857261415570974, -0.021929996088147163, -0.0025597435887902975, 9.324446727987379e-05, -0.004027058370411396, 0.006764915306121111, 0.01381481159478426, 0.0014664666960015893, 0.00529251154512167, -0.008169466629624367, 0.0027497310657054186, -0.031999338418245316, 0.010530740953981876, 0.007192387245595455, -0.025851882994174957, -0.0024121638853102922, 0.01131783239543438, -0.03341067582368851, 0.012132064439356327, 0.011093918234109879, 0.025824742391705513, 0.0089362021535635, 0.012301696464419365, -0.009044766426086426, -0.030262308195233345, 0.00015860571875236928, -0.03349209949374199, -0.012505254708230495, 0.001899875933304429, -0.004817542620003223, -0.005204302724450827, -0.016338933259248734, -0.014873314648866653, -0.03913744539022446, -0.02317848615348339, -0.027005378156900406, -0.03908316045999527, 0.0009558750898577273, -0.004176334477961063, 0.006154241040349007, -0.006995614618062973, -0.02790103480219841, -0.02487480454146862, -0.002759909024462104, -0.0015444973250851035, -0.03607049956917763, 0.006021928042173386, -0.00654100114479661, 0.020084401592612267, 0.00247323140501976, 0.037129003554582596, -0.013780885376036167, 0.010042200796306133, 0.011053206399083138, 0.007205958012491465, 7.119233487173915e-05, 0.008929416537284851, -0.02423698827624321, -0.030479438602924347, 0.0025750102940946817, 0.029258089140057564, 0.027154654264450073, 0.01640678569674492, 0.01042217668145895, -0.015687547624111176, 0.047714024782180786, -0.00895655807107687, -0.014900455251336098, -0.022472817450761795, -0.04220438748598099, -0.01617608591914177, -0.0007603744161315262, -0.019894415512681007, -0.002622507279738784, -0.030398014932870865, 0.006001572124660015, 0.04619412496685982, 0.0145476208999753, 0.005852296482771635, -0.02923094853758812, 0.017424575984477997, -0.03050657920539379, -0.012722383253276348, 0.036396194249391556, 0.011487463489174843, -0.011046421714127064, 0.016664626076817513, -0.001242552767507732, 0.009716507978737354, -0.0029227554332464933, -0.007884484715759754, 0.0030313199386000633, 0.001502937520854175, -0.02456268109381199, -0.030615143477916718, 0.013339842669665813, -0.0010542614618316293, -0.008454447612166405, 0.018903765827417374, -0.04117302596569061, -0.015388994477689266, -0.008854778483510017, -0.015728257596492767, -0.03715614601969719, -0.025539759546518326, -0.014466198161244392, -0.004766652826219797, 0.021455027163028717, -0.0017947042360901833, -0.005380719900131226, -0.007144890259951353, -0.018360944464802742, 0.04193297401070595, 0.013590898364782333, 0.03547339886426926, 0.018198097124695778, -0.01814381405711174, -0.0004944766405969858, 0.0164882093667984, -0.023517750203609467, -0.02666611596941948, 0.019215887412428856, 0.03341067582368851, -0.0035113778430968523, 0.0014741001650691032, -0.02882383204996586, -0.003752254880964756, -0.04014166444540024, -0.019161606207489967, -0.0022781547158956528, 0.021142905578017235, 0.00222726515494287, -0.008026976138353348, 0.004518990404903889, -0.013950517401099205, -0.010530740953981876, -0.004695407580584288, 0.011439966969192028, -0.009126189164817333, -0.01152139063924551, -0.03446917608380318, -0.0020796856842935085, 0.013373768888413906, 0.01947372779250145, 0.01548398844897747, -0.001982995541766286, -0.04187869280576706, -0.00562498951330781, -0.031049400568008423, -0.0020796856842935085, -0.01308200228959322, 0.027819611132144928, -0.003708150703459978, 0.007545221596956253, 0.0015852089272812009, -0.002312081167474389, -0.018550930544734, 0.008583367802202702, -0.010686801746487617, 0.024128424003720284, 0.025254778563976288, 0.01827952079474926, 0.012627389281988144, 0.00038760859752073884, 0.015687547624111176, 0.024155564606189728, -0.0021390567999333143, 0.0077012828551232815, -0.029800910502672195, -0.005909970961511135, -0.016881754621863365, 0.013414480723440647, -0.0033112121745944023, -0.02647612802684307, -0.02111576311290264, -0.022513529285788536, 0.008447662927210331, -0.006171204149723053, 0.015497558750212193, -0.03902887925505638, -0.018863053992390633, 0.0019575506448745728, -0.013896235264837742, 0.021156474947929382, -0.005021100398153067, 0.009580803103744984, 0.0022018204908818007, 0.03197219595313072, -0.007362019270658493, 0.028878113254904747, -0.003965991083532572, 0.01172494888305664, -0.03693901747465134, 0.007504509761929512, 0.012355978600680828, -0.015782540664076805, 0.007321307435631752, -0.035527680069208145, -0.020410096272826195, 0.01723458804190159, 0.02121075801551342, 0.014601903036236763, -0.007647000718861818, 0.013346628285944462, 0.012742739170789719, -0.004627554677426815, 0.005394290667027235, -0.028389574959874153, -0.02950235828757286, 0.012844517827033997, 0.011053206399083138, -0.0031551511492580175, -0.007348448503762484, -0.017098883166909218, 0.01737029477953911, 0.0043154326267540455, 0.01662391424179077, 0.02982805110514164, -0.046709805727005005, 0.026218287646770477, -0.0014596814289689064, 0.0004834505671169609, -0.0037861813325434923, 0.0013095573522150517, -0.015931816771626472, -0.019690856337547302, -0.011691021732985973, 0.015728257596492767, 0.005743731744587421, -0.01846950873732567, 0.013550186529755592, 0.02207927219569683, -0.01037467923015356, 0.0026360778138041496, 0.009777575731277466, 0.0008719073375687003, 0.007775920443236828, -0.004013488069176674, -0.061176005750894547, 0.005719983484596014, 0.0008591849473305047, 0.03110368177294731, 0.00046860778820700943, -0.01654249057173729, 0.0034384361933916807, -0.014941167086362839, -0.029529498890042305, -0.01184029784053564, -0.0041831196285784245, 0.015388994477689266, 0.04768688604235649, 0.002995697082951665, 0.0011356847826391459, 0.016759619116783142, 0.00024702626978978515, 0.020002979785203934, -0.007741994224488735, -0.010666445828974247, 0.0019202317344024777, -0.0023205627221614122, 0.003524948377162218, -0.0016768100904300809, -0.017845263704657555, -0.0067411670461297035, 0.012132064439356327, -0.020491518080234528, 0.013936947099864483, 0.00998791866004467, -0.01003541611135006, 0.0005521514103747904, -0.02020653709769249, 0.01021861843764782, 0.027371782809495926, 0.00730773713439703, -0.018998758867383003, -0.01621679775416851, -0.0069243693724274635, 0.0008320438791997731, 0.004023665562272072, -0.013964087702333927, -0.025960447266697884, -0.01621679775416851, -0.01511758379638195, 0.006856516469269991, -0.04057592153549194, -0.009370459243655205, -0.01161638367921114, -0.03354638069868088, 0.040385931730270386, 0.001013549859635532, 0.012328837998211384, 0.027616053819656372, 0.00254786922596395, -0.010116838850080967, -0.00711096404120326, 0.04280148819088936, -0.010082912631332874, -0.037590403109788895, 0.008841208182275295, -0.0295566413551569, 0.01937873475253582, -0.010931071825325489, 0.004936284851282835, -0.004569880198687315, -0.0023460073862224817, -0.015185436233878136, -0.001625072443857789, -0.012953082099556923, 0.02977376990020275, -0.0032620190177112818, -0.014208357781171799, 0.003728506388142705, 0.01097178366035223, -0.011487463489174843, 0.012566322460770607, -0.028009599074721336, -0.0153482835739851, 0.0007726727635599673, 0.005401075817644596, -0.00604567676782608, 0.005879437550902367, -0.007585932966321707, -0.005360363982617855, 0.0295566413551569, -0.029475217685103416, 0.018075961619615555, 0.2010611593723297, -0.007253454998135567, 0.010618949308991432, 0.016053952276706696, -0.006646173074841499, -0.002844724804162979, 0.02171286754310131, -0.01617608591914177, 0.002690359950065613, -0.01216599065810442, -0.020735789090394974, 0.01943301595747471, -0.0013774100225418806, 0.006500289775431156, 0.022432105615735054, -0.0062831612303853035, -0.0366676039993763, 0.0010881877969950438, -0.0011356847826391459, -0.0627501904964447, 0.011731733568012714, -0.014574762433767319, -0.020762929692864418, -0.009160116314888, 0.029882334172725677, 0.008746214210987091, -0.0018014895031228662, -0.010890359990298748, 0.02720893733203411, 0.00610335124656558, -0.026652544736862183, -0.01685461401939392, -0.0005958316032774746, -0.01198278833180666, -0.005289118736982346, -0.016162516549229622, 0.02346346713602543, -0.0029125777073204517, 0.016379645094275475, -0.014927596785128117, -0.004841290879994631, 0.0006344228750094771, 0.005265370476990938, 0.002736160531640053, -0.024535540491342545, 0.02016582526266575, -0.012525610625743866, -0.0060117500834167, -0.012634174898266792, 0.01255275122821331, -0.023354902863502502, 0.024901945143938065, 0.055422093719244, 0.01906661130487919, -1.1350751265126746e-05, -0.004770045634359121, -0.015022589825093746, 0.0164882093667984, -0.02346346713602543, 0.0017794372979551554, -0.032867852598428726, 0.020966487005352974, -0.003925279248505831, 0.0245083998888731, -0.029665205627679825, 0.0034028133377432823, -0.012776665389537811, 0.0033349606674164534, 0.012016715481877327, -0.02693752571940422, 0.004576665349304676, -0.02213355340063572, -0.013319486752152443, 0.006859909277409315, -0.007721638306975365, -0.019080182537436485, 0.029312370344996452, -0.011629954911768436, 0.003965991083532572, 0.0035860156640410423, 0.015361853875219822, -0.00964186992496252, -0.01131783239543438, -0.020735789090394974, -0.011942077428102493, -0.026598263531923294, -0.0030313199386000633, -0.016800330951809883, -0.01800810918211937, 0.009010840207338333, -0.021047910675406456, -0.02080364152789116, 0.011256764642894268, -0.01650177873671055, 0.014506909996271133, 0.02308349311351776, 0.027846751734614372, 0.009601159021258354, 0.011073562316596508, -0.007728423923254013, -0.022228548303246498, -0.007328092586249113, 0.01906661130487919, 0.006663136184215546, -0.023517750203609467, -0.007199172396212816, 0.008495159447193146, -0.009499379433691502, -0.0014003103133291006, -0.03427919000387192, 0.03642333671450615, -0.008535871282219887, -0.0021933389361947775, -0.028715267777442932, 0.01704460009932518, 0.029665205627679825, 0.0069684735499322414, -0.018360944464802742, 0.000327813409967348, 0.005329830572009087, 0.021929996088147163, -0.027426065877079964, 0.006588498130440712, -0.003630120074376464, -0.01422192808240652, -0.01223384402692318, -0.009791146032512188, 0.013950517401099205, 0.009472238831222057, -0.011989573948085308, 0.028335291892290115, -0.029393794015049934, -0.007925196550786495, -0.002256102627143264, -0.010544311255216599, 0.013407696038484573, 0.014995449222624302, -0.02281208150088787, 0.025309061631560326, 0.00037764274748042226, 0.006642780266702175, 0.008698717691004276, -0.0062492345459759235, 0.012410260736942291, 0.020627224817872047, -0.011738519184291363, 0.01823880895972252, -0.0025733141228556633, 0.015185436233878136, -0.011053206399083138, -0.030479438602924347, 0.006069425027817488, 0.002052544616162777, -0.017994539812207222, -0.0006331506301648915, -0.004149193409830332, -0.009540091268718243, -0.03294927626848221, -0.0013587505090981722, 0.03476772829890251, -0.023192057386040688, 0.013434836640954018, 0.019256599247455597, -0.006276375614106655, -0.015063301660120487, -0.010849648155272007, -0.17305155098438263, 0.025159785524010658, 0.015429706312716007, -0.014004799537360668, 0.03368208557367325, 0.04407712072134018, 0.016976747661828995, 0.0037420769222080708, 0.01017112098634243, -0.0145476208999753, 0.0011628258507698774, 0.014534050598740578, -0.02171286754310131, -0.0222149770706892, 0.0014249068917706609, 0.0109921395778656, -0.010680017061531544, 0.010042200796306133, 0.04527132958173752, 0.014493338763713837, 0.008434091694653034, -0.01704460009932518, 0.02011154405772686, -0.0015054820105433464, -0.0023222591262310743, 0.010306826792657375, -0.00925510935485363, -0.005268762819468975, -0.0015953868860378861, -0.008691932074725628, -0.006337443366646767, 0.01445262786000967, -0.0056928424164652824, -0.011507819406688213, 0.014113363809883595, 0.022106412798166275, -0.009289036504924297, 0.0014359329361468554, -0.011114274151623249, 0.013027720153331757, -0.00639172550290823, 0.004257757682353258, 0.0160403810441494, -0.008596938103437424, -0.004084733314812183, 0.03289499506354332, -0.0033841540571302176, 0.004393463023006916, 0.010815721936523914, -0.017872404307127, 0.022594952955842018, -0.007328092586249113, 0.01511758379638195, 0.0039083161391317844, 0.03677617013454437, 0.010428961366415024, 0.010734299197793007, 0.019487299025058746, -0.0062424493953585625, -0.026828961446881294, 0.004624162334948778, -0.0006683492101728916, 0.024318411946296692, -0.009227968752384186, 0.00355548202060163, -0.00036979728611186147, -0.019582292065024376, -0.011127844452857971, -0.0380246601998806, 0.01575540006160736, -0.00474290456622839, 0.00617459649220109, 0.015931816771626472, -0.00537054194137454, -0.0033366570714861155, -0.0054960697889328, -0.026367563754320145, 0.02030153200030327, -0.004244186915457249, -0.0279553160071373, -0.036314770579338074, 0.040250226855278015, -0.025919735431671143, -0.0024206454399973154, 0.0021763755939900875, 0.01598609797656536, -0.007694497238844633, -0.027846751734614372, -0.0016683285357430577, -0.0006823438452556729, 0.014479768462479115, -0.02117004618048668, -0.02240496501326561, -0.03221646696329117, 0.00911940447986126, -0.0027259825728833675, 0.006303516682237387, -0.024847662076354027, 0.003019445575773716, -0.012491684406995773, -0.007185602094978094, -0.024901945143938065, -0.013624824583530426, 0.038187503814697266, 0.029665205627679825, 0.014968307688832283, -0.013950517401099205, 0.008576582185924053, 0.0439956970512867, 0.0042815059423446655, 0.0018354158382862806, 0.008780140429735184, 0.02895953692495823, -0.0018812164198607206, 0.005071990191936493, 0.0398702546954155, -0.0018218453042209148, -0.007362019270658493, 0.012308482080698013, -0.006534215994179249, 0.07718924432992935, -0.005170376505702734, -0.01585039310157299, -0.00017641704471316189, -0.019215887412428856, -0.044239968061447144, -0.10405891388654709, -0.0023595779202878475, -0.001791311544366181, 0.01223384402692318, 0.01441191602498293, 0.011806371621787548, -0.019175175577402115, 0.008535871282219887, 0.020762929692864418, 0.0017505999421700835, -0.021183615550398827, -0.04293719679117203, -0.008047331124544144, -0.007280596066266298, 0.017492428421974182, -0.01754671148955822, -0.005116094369441271, -0.01704460009932518, 0.01868663728237152, 0.029583781957626343, -0.011304261162877083, -0.008250889368355274, 0.0051839472725987434, -0.0217671487480402, -0.000373613991541788, 0.007056681904941797, -0.045651305466890335, 0.011921721510589123, 0.028932396322488785, 0.0201522558927536, -0.010483243502676487, -0.018727349117398262, 0.0277246180921793, 0.0037793959490954876, -0.02001654915511608, -0.010320397093892097, -0.04041307419538498, -0.01514472533017397, 0.025919735431671143, -0.03441489487886429, 0.005960860755294561, -0.017695987597107887, 0.027873894199728966, -0.010157550685107708, 0.01685461401939392, -0.00013369104999583215, -0.0060592470690608025, -0.0035724451299756765, 0.013400910422205925, -0.005455357953906059, -0.029122384265065193, 0.004644518252462149, -0.02767033502459526, 0.009282250888645649, 0.02625899948179722, -0.018523789942264557, 0.029719486832618713, -0.01273595355451107, -0.014289780519902706, -0.0032128258608281612, -0.0145476208999753, 0.010157550685107708, -0.004352751187980175, 0.01625750958919525, 0.01106677670031786, -0.006435829680413008, -0.0320807620882988, -0.0035792305134236813, 0.03151080012321472, 0.0009329747990705073, -0.019907984882593155, 0.017207447439432144, -0.033519238233566284, 0.013529830612242222, -0.018035249784588814, 0.025024080649018288, -0.030995117500424385, -0.017628135159611702, 0.016420356929302216, -0.019948696717619896, 0.002310384763404727, -0.017248159274458885, 0.0167189072817564, -0.01253239531069994, 0.015253289602696896, 0.024399835616350174, 0.01933802291750908, -0.014004799537360668, 0.013685891404747963, -0.022608522325754166, 0.005343400873243809, 0.008807281963527203, -0.006988829001784325, -0.023341331630945206, 0.017098883166909218, 0.048229705542325974, 0.0005826851702295244, -0.004892180673778057, -0.022228548303246498, 0.005703020375221968, -0.02487480454146862, 0.006018535234034061, -0.06329300999641418, 0.028850972652435303, 0.013780885376036167, -0.005289118736982346, -0.0016004758654162288, -0.013455192558467388, 0.011032850481569767, 0.002759909024462104, -0.01625750958919525, 0.0040067024528980255, -0.0076605710200965405, 0.029990898445248604, -0.007728423923254013, -0.013760529458522797, -0.019867273047566414, -0.014629044570028782, 0.012837733142077923, -0.02570260688662529, 0.022852793335914612, 0.011894579976797104, 0.0030957800336182117, 0.0030533720273524523, 0.010205048136413097, 0.006222093477845192, -0.03210790455341339, 0.0012467935448512435, 0.021780719980597496, 0.020410096272826195, 0.01328556053340435, -0.02180786058306694, 0.012308482080698013, -0.038513198494911194, -0.012491684406995773, 0.0062424493953585625, -0.006473148707300425, 0.012104923836886883, -0.0016606950666755438, 0.007267025299370289, -0.0021237898617982864, 0.05607347935438156, -0.0011373810702934861, -0.019270170480012894, -0.003969383426010609, -0.021740008145570755, -0.003445221344009042, 0.042584359645843506, -0.018496649339795113, -0.008942986838519573, 0.018306661397218704, -0.021753579378128052, 0.016664626076817513, 0.0233684740960598, 0.011121059767901897, -0.01887662336230278, -0.006893835496157408, -0.014954737387597561, 0.014371204189956188, -0.005506247282028198, 0.018673066049814224, -0.005984609015285969, 0.002218783600255847, -0.004960033111274242, 0.001189118716865778, -0.0080201905220747, 0.025851882994174957, -0.004929499235004187, -0.01507687196135521, -0.01897161826491356, -0.013034505769610405, -0.016732478514313698, -0.006564749870449305, 0.00265643373131752, 0.002150930929929018, 0.007049896754324436, 0.016108233481645584, 0.02249995805323124, -0.008868349716067314, 0.004312039818614721, -0.0343606136739254, 0.018306661397218704, -0.014466198161244392, -0.0030618535820394754, -0.03957170248031616, 0.003562267404049635, 0.01758742332458496, -0.004630947485566139, 0.011609598994255066, 0.02767033502459526, -0.00022900289332028478, -0.0005220418097451329, 0.02437269315123558, -0.012423831038177013, -0.0067513445392251015, -0.016094662249088287, 0.031402233988046646, 0.029475217685103416, -0.012885229662060738, 0.0002578402927611023, 0.043778568506240845, 0.024820521473884583, -0.006870086770504713, 0.00024342160031665117, -0.002508854027837515, -0.02258138172328472, -0.0036436906084418297, -0.0031534547451883554, 0.0017056475626304746, -0.021685726940631866, -0.0018574679270386696, 0.017994539812207222, 0.0006713177426718175, -0.0048243277706205845, 0.010103268548846245, 0.01381481159478426, -0.0026191147044301033, 0.006507074926048517, 0.002469838596880436, -0.008637649938464165, -0.00446810107678175, 0.040521640330553055, -0.010205048136413097, 0.026543980464339256, 0.02184857241809368, 0.0005691146361641586, 0.027521058917045593, 0.007165246177464724, 0.02226926013827324, 0.01326520461589098, 0.004481671378016472, 0.004708978347480297, 0.009635085240006447, 0.013190566562116146, -0.052572280168533325, 0.0038268929347395897, 0.009546875953674316, -0.033383533358573914, -0.011372114531695843, -0.006914191413670778, -0.00932296272367239, 0.049369633197784424, 0.03170078620314598, -0.022567812353372574, 0.0080201905220747, 0.021821431815624237, 0.020464377477765083, 0.003796359058469534, 0.012953082099556923, -0.01000827457755804, -0.016895325854420662, 0.016325362026691437, -0.017153164371848106, 0.01928373984992504, -0.006235664244741201, -0.0051907324232161045, 0.01115498598664999, -0.00934331864118576, 0.03349209949374199, -0.020925775170326233, -0.008847993798553944, 0.027018949389457703, 0.010523955337703228, 0.030479438602924347, -0.008841208182275295, -0.009879354387521744, 0.0056080264039337635, 0.02382987178862095, 0.011202482506632805, 0.00556731503456831, -0.019446587190032005, -0.004037236329168081, 0.016936035826802254, -0.005930326879024506, -0.01933802291750908, 0.005207695532590151, -0.009160116314888, 0.001350268954411149, -0.012708812952041626, 0.015497558750212193, 0.0073348782025277615, -0.012098138220608234, 0.01511758379638195, -0.030588002875447273, -0.009010840207338333, -0.0006263653631322086, 0.0032213074155151844, 0.011039636097848415, -0.007497724611312151, -0.015171865932643414], "5fde48b8-41f2-449a-b8e7-acd042828b18": [0.0016904110088944435, -0.021405043080449104, 0.00521807698532939, 0.012867613695561886, -0.01191142201423645, 0.024410218000411987, -0.02386382222175598, -0.010914250276982784, -0.021637260913848877, -0.025899145752191544, 0.02009369432926178, 0.00919310376048088, 0.035160548985004425, 0.0029078484512865543, -0.006546501070261002, 0.009609730914235115, 0.03682705760002136, 0.003869163105264306, 0.026322603225708008, -0.02923215925693512, -0.011351366527378559, 0.009541431441903114, -0.015544951893389225, 0.01829058863222599, -0.016282586380839348, 0.014957576058804989, 0.025503009557724, -0.02016199380159378, 0.0053444309160113335, -0.01415164303034544, -0.016924601048231125, 0.014206282794475555, 0.0007956884219311178, -0.011535774916410446, -0.030488867312669754, -0.02118648588657379, 0.007417318876832724, -0.0238911435008049, 0.013707696460187435, -0.003133236663416028, 0.0026909976731985807, 0.004873164929449558, -0.02013467438519001, 0.010654712095856667, -0.02271639183163643, 0.028849681839346886, -0.018755024299025536, -0.009732669219374657, -0.017798833549022675, 0.007642706856131554, 0.015572271309792995, 0.01926044002175331, -0.03903995826840401, 0.02751101367175579, -0.029532676562666893, 0.0007218396640382707, 0.018522806465625763, 0.016651403158903122, -0.0173617172986269, 0.023167168721556664, 0.002257296349853277, 0.01506685558706522, 0.007970544509589672, 1.5824258525753976e-06, -0.02753833308815956, -0.016651403158903122, -0.014711698517203331, -0.028576483950018883, 0.0012806144077330828, -0.0010381514439359307, 0.02561228908598423, 0.02450583688914776, -0.005429805256426334, 0.010545432567596436, 0.02018931321799755, -0.03912191838026047, -0.03212805464863777, -0.01741635613143444, -0.03275641053915024, 0.0026705078780651093, -0.006157194264233112, -0.027551991865038872, -0.00859889853745699, 0.010606902651488781, 0.027866169810295105, -0.0034696112852543592, 0.000848620489705354, 0.019506318494677544, -0.019328739494085312, -0.009316042996942997, 0.0042004152201116085, 0.019369719550013542, 0.015749849379062653, 0.028139367699623108, -0.0014163595624268055, 0.01831790804862976, -0.011214767582714558, 0.026090385392308235, 0.0013745261821895838, -0.018973583355545998, -0.025011252611875534, -0.014561439864337444, -0.009473131969571114, -0.00411162618547678, -0.03125382214784622, 0.017867133021354675, -0.00013286374451126903, 0.001005709171295166, 0.00455215759575367, -0.03010639175772667, -0.02297593094408512, 0.020804008468985558, -0.008687688037753105, -0.04204513132572174, -0.0058020371943712234, -0.03122650273144245, 0.019369719550013542, -0.010251745581626892, -0.022620772942900658, -0.008899416774511337, 0.003000052645802498, 0.00775881577283144, 0.008537429384887218, -0.02087230794131756, 0.009903417900204659, -0.007697346620261669, 0.010238085873425007, -0.032455891370773315, -0.0048287701793015, -0.015708869323134422, 0.017102178186178207, -0.009637050330638885, 0.029614634811878204, -0.0043848236091434956, -0.007950054481625557, 0.0011243794579058886, -0.02569424733519554, -0.001072301180101931, -0.0082778912037611, -0.02458779700100422, 0.011597244068980217, 0.014807317405939102, -0.006566990632563829, -0.02999711222946644, -0.03658117726445198, 0.026199663057923317, 0.011651883833110332, 0.0019157992210239172, -0.017812492325901985, 0.005272716283798218, 0.01189776137471199, 0.001036443980410695, -0.006594310514628887, -0.008619388565421104, 0.02846720442175865, 0.009944397956132889, 0.0044326335191726685, -0.005545914173126221, -0.0008166051120497286, -0.016938259825110435, 0.008230081759393215, 0.026008425280451775, 0.02001173421740532, 0.005180512089282274, 0.022484173998236656, 0.030625466257333755, 0.0046580214984714985, -0.009404832497239113, -0.03013371117413044, -0.011788482777774334, -0.002912970958277583, 0.01656944304704666, -0.02568058855831623, 0.008530599996447563, -0.012191449292004108, 0.011125978082418442, 0.03540642932057381, 0.02637724205851555, -0.03567962348461151, -0.008100313134491444, -0.02469707652926445, -0.0057986220344901085, 0.02278469130396843, 0.024341918528079987, -0.022415874525904655, -0.01408334355801344, -0.021596280857920647, -0.011781652458012104, 0.022429535165429115, 0.016241606324911118, 0.015859128907322884, 0.022402215749025345, -0.014834637753665447, -0.007676856592297554, -0.6338187456130981, -0.010907419957220554, -0.021623602136969566, -0.0031878761947155, -0.013291070237755775, -0.0039033128414303064, 0.014793657697737217, 0.007055331952869892, -0.017976410686969757, 0.016747022047638893, -0.0055254241451621056, 0.022634433582425117, 0.007410488557070494, -0.007260229904204607, -0.03111722320318222, -0.012860783375799656, 0.0004230296181049198, -0.018959922716021538, 0.004446293227374554, -0.019315080717206, -0.007219250313937664, 0.00391355762258172, -0.006099139805883169, 0.00710997125133872, 0.007574407383799553, -0.0021172824781388044, 0.010183446109294891, 0.009841948747634888, 0.005931805819272995, 0.025079552084207535, -0.023358406499028206, 0.04054254665970802, -0.0040160068310797215, 0.026677759364247322, 0.05147045478224754, -0.0011619441211223602, -0.03308424726128578, 0.018072031438350677, 0.005026838276535273, 0.015408352948725224, -0.016897279769182205, -0.028521845117211342, 0.004647776484489441, -0.003998931962996721, 0.026213323697447777, -0.003753053955733776, 0.01837254874408245, -0.01010831631720066, 0.014930256642401218, 0.01921946182847023, -0.0017757853493094444, -0.007144120987504721, 0.006870923098176718, -0.0033569172956049442, -0.002860038774088025, 0.010395173914730549, 0.027620291337370872, -0.00961656030267477, 0.011849951930344105, -0.0026329432148486376, 0.012826633639633656, 0.020325912162661552, -0.008858436718583107, -0.006003520451486111, -0.02014833316206932, 0.03133578225970268, -0.012799314223229885, 0.004938049241900444, 0.015258094295859337, -0.005562989041209221, 0.017662234604358673, 0.015503971837460995, 0.0007730642682872713, -0.007328529376536608, 0.01818130910396576, 0.007909074425697327, 0.015367372892796993, -0.028877001255750656, 0.02100890688598156, 0.010873270221054554, 0.005890826229006052, -0.02088596671819687, -0.03412239998579025, -0.017730534076690674, 0.019014563411474228, -0.028931640088558197, -0.01544933207333088, 0.015422012656927109, 0.003807693487033248, 0.006406486965715885, -0.0020489830058068037, 0.007424148730933666, 0.003206658409908414, 0.014984896406531334, 0.0421270914375782, 0.024191660806536674, 6.426416803151369e-06, 0.014889276586472988, 0.01330472994595766, -0.021582622081041336, -0.001176457735709846, -0.013680377043783665, 0.0018201799830421805, -0.016227945685386658, -0.005474200006574392, 0.006286962889134884, -0.04636165872216225, -0.016910940408706665, 0.045104946941137314, -0.02660945989191532, 0.0007329382933676243, -0.004852674901485443, -0.007861264981329441, -0.008783307857811451, -0.004374579060822725, -0.029587315395474434, 0.02204705774784088, 0.00828472152352333, 0.013045192696154118, -0.006358677521348, 0.028685763478279114, 0.00502000842243433, 0.01457509957253933, -0.02843988500535488, 0.021719221025705338, 0.03581622242927551, 0.0028258892707526684, 0.01639186404645443, -0.013147640973329544, -0.007820285856723785, -0.015162474475800991, -0.009459472261369228, 0.027729570865631104, 0.0013130566803738475, 0.023126188665628433, -0.015394693240523338, 0.02915019914507866, 0.0011790189892053604, 0.019875135272741318, -0.02457413636147976, -0.004873164929449558, -0.005364920478314161, 0.005542499013245106, -0.0029402906075119972, -0.0051566073670983315, -0.028549164533615112, -0.0072738900780677795, 0.00457947701215744, -0.036198701709508896, 0.0038589180912822485, -0.02380918338894844, -0.02387748286128044, -0.01284712366759777, 0.006239153444766998, 0.0008853314211592078, -0.01098937913775444, -0.025407390668988228, -0.0056756832636892796, 0.02189680002629757, -0.022265616804361343, 0.004179925657808781, 0.019642917439341545, -0.030925985425710678, 0.007799795363098383, 0.0034559513442218304, -0.00413894560188055, -0.02102256566286087, 0.023576965555548668, -0.024369237944483757, -0.028084728866815567, -0.003326182486489415, -0.021664580330252647, -0.013748676516115665, 0.0331115648150444, -0.02655482105910778, 0.003496931167319417, -0.0022914460860192776, -0.022484173998236656, -0.015148814767599106, 0.02379552274942398, 0.0002458779781591147, 0.0015119788004085422, -0.01000586710870266, -0.015312733128666878, 0.02734709344804287, 0.0035584005527198315, -0.001490635215304792, 0.0014983188593760133, 0.012246089056134224, 0.029778553172945976, 0.007656366564333439, 0.005545914173126221, 0.013352539390325546, -0.010203936137259007, 0.002347793197259307, -0.009493621997535229, 0.005894241388887167, 0.014493140392005444, 0.024205319583415985, 0.017976410686969757, 0.021446023136377335, -0.0036847544834017754, 0.01323643047362566, -0.0051156277768313885, 0.01639186404645443, -0.020681068301200867, -0.0005613359971903265, 0.0005878020310774446, 0.03390384092926979, -0.019861476495862007, -0.0010518112685531378, -0.015422012656927109, -0.009029185399413109, -0.024382898584008217, 0.0024707322008907795, 0.023413047194480896, 0.005795207340270281, -0.0051566073670983315, -0.0025475688744336367, 0.011228427290916443, -0.00870134774595499, -0.01236902829259634, -0.005440050270408392, 0.0005506642046384513, -0.021568961441516876, 0.006102554500102997, 0.00014022727555129677, 0.010777651332318783, 0.020558129996061325, 0.0005967663018964231, 0.009070165455341339, -0.00018803687999024987, 0.0017228532815352082, 0.009869268164038658, 0.009964887984097004, 0.003389359451830387, 0.031363099813461304, -0.008954055607318878, 0.03024299070239067, -0.03267445042729378, 0.007430978585034609, 0.009664369747042656, 0.020476171746850014, -0.03210073336958885, -0.0007205590372905135, -0.0010979134822264314, 0.008796967566013336, 0.014397521503269672, 0.023945782333612442, 0.022620772942900658, -0.011324046179652214, -0.003061522264033556, -0.01632356457412243, 0.00526930158957839, 0.02364526502788067, -0.020380550995469093, -0.004087721463292837, 0.011214767582714558, 0.019902454689145088, 0.0300790723413229, 0.006806038785725832, 0.00014321538037620485, 0.006700174883008003, 0.007683686446398497, 0.05103333666920662, 0.022579792886972427, 0.020831327885389328, 0.02020297385752201, -0.029915152117609978, -0.018550125882029533, -0.018577447161078453, -0.017593935132026672, -0.009903417900204659, 0.004982443992048502, 0.020284932106733322, 0.0008776477770879865, 0.016009388491511345, 0.00688458327203989, 0.02476537600159645, 0.006655780132859945, -0.012935913167893887, -0.02923215925693512, 0.03666313737630844, 0.0005284668877720833, -0.00460338220000267, -0.0022299764677882195, -0.0059044864028692245, -0.0020592280197888613, -0.018522806465625763, 0.03289300948381424, -0.02180117927491665, 0.005812282208353281, 0.02196509763598442, -0.01908286288380623, -0.013174961321055889, 0.006648950278759003, 0.01723877713084221, -0.020817667245864868, 0.03731881082057953, 0.008469129912555218, 0.003169093746691942, 0.011235257610678673, -0.03658117726445198, 0.021282104775309563, 0.014657058753073215, -0.007157780695706606, -0.014943916350603104, -0.005924975965172052, -0.011727012693881989, -0.01229389850050211, 0.010087826289236546, -0.03199145570397377, -0.01464339904487133, -0.005207831971347332, 0.009268233552575111, 0.01647382415831089, -0.012020700611174107, 0.010176615789532661, 0.026882657781243324, -0.0006496983696706593, -0.006249398458749056, -0.004839015193283558, -0.031581658869981766, 0.006105969659984112, 0.10097388923168182, 0.018864303827285767, -0.015176134184002876, 0.010456643998622894, 0.016036707907915115, 0.00273026991635561, -0.019519979134202003, -0.040487904101610184, 0.019765857607126236, -0.003276665462180972, 0.012485137209296227, -0.03398580104112625, 0.017511975020170212, -0.006717249285429716, 0.01826326921582222, -0.007055331952869892, -0.01994343474507332, 0.002025078283622861, 0.017129497602581978, -0.007854434661567211, -0.00015847603208385408, 0.008202762342989445, 0.014479480683803558, 0.02273005247116089, -0.03923119604587555, 0.00206435052677989, 0.018632085993885994, 0.01236902829259634, 0.02734709344804287, -0.021295763552188873, -0.005122457630932331, 0.012464647181332111, 0.02548934891819954, 0.026882657781243324, -0.010490793734788895, -0.008626218885183334, -0.002177044516429305, 0.008851607330143452, 0.010784480720758438, 0.004152605775743723, 0.009937567636370659, 0.02450583688914776, 0.01812667027115822, -0.014206282794475555, 0.008831117302179337, -0.0033056926913559437, 0.006887997966259718, -0.013789655640721321, -0.025803526863455772, -0.00954826083034277, 0.04819208011031151, 0.01138551626354456, -0.018686724826693535, -0.01235536765307188, 0.03565230593085289, -0.005088307894766331, -0.002209486672654748, -0.005781547166407108, -0.006990447174757719, 0.033193524926900864, -0.0032647131010890007, 0.0044701979495584965, -0.0048048654571175575, -0.02359062433242798, -0.009964887984097004, -0.017156818881630898, -0.02819400653243065, -0.0060240100137889385, -0.01721145771443844, 0.0327017717063427, -0.012765164487063885, -0.021568961441516876, -0.02659580111503601, -0.0008008108707144856, -0.0208586473017931, 0.01820863038301468, 0.013468648307025433, -0.022320255637168884, 0.013980894349515438, -0.0075402576476335526, -0.0055288393050432205, -0.03300228714942932, 0.006778718903660774, -0.02659580111503601, -0.014438500627875328, -0.01499855611473322, 0.01650114357471466, 0.017006559297442436, -0.018918944522738457, 0.019929775968194008, 0.013516458682715893, 0.01633722521364689, -0.005894241388887167, -0.013052022084593773, 0.01191142201423645, -0.010258574970066547, -0.009295552968978882, -0.00412187073379755, -0.0028976036701351404, -0.010238085873425007, 0.008783307857811451, -0.04731784760951996, 0.024369237944483757, -0.022497834637761116, -0.0014146520989015698, -0.008974545635282993, 0.002598793478682637, 0.012765164487063885, -0.015189794823527336, -0.01997075416147709, 0.0020267858635634184, -0.027879830449819565, -0.004142360761761665, 0.000992049346677959, -0.016200626268982887, 0.0015691795852035284, 0.013291070237755775, 0.009001865983009338, 0.00828472152352333, -0.009001865983009338, 0.001365134958177805, -0.03387651965022087, 0.017771514132618904, -0.00039464267319999635, -0.024273619055747986, 0.007553917821496725, 0.013618907891213894, -0.03117186203598976, 0.019178481772542, 0.010094656608998775, 0.023044230416417122, 0.023385725915431976, 0.015148814767599106, -0.021527981385588646, -0.03914923593401909, 0.0016289415070787072, -0.02650018036365509, -0.010688861832022667, 0.003852088237181306, 0.008728668093681335, -0.016869960352778435, -0.012048020027577877, -0.012676374986767769, -0.03759200870990753, -0.0114743048325181, -0.02647286094725132, -0.029478035867214203, 0.006013765465468168, 0.005293206311762333, 0.013495968654751778, -0.0041184560395777225, -0.02206071838736534, -0.014943916350603104, -0.0003391493810340762, -0.01819496974349022, -0.04832867905497551, -0.009855608455836773, -0.005781547166407108, 0.010675202123820782, -0.002136064926162362, 0.038903359323740005, -0.016678722575306892, 0.007239740341901779, 0.010900589637458324, -0.0030239576008170843, -0.0006398803670890629, -0.002364868065342307, -0.013816975988447666, -0.037154894322156906, 0.001705778413452208, 0.020325912162661552, 0.02193777821958065, 0.012771994806826115, 0.010285895317792892, -0.004722905810922384, 0.051607053726911545, -0.014711698517203331, -0.026295281946659088, -0.031608980149030685, -0.038356963545084, -0.004951708950102329, 0.011692862957715988, -0.022607114166021347, -0.009357023052871227, -0.037892527878284454, -0.0014530705520883203, 0.05297304317355156, 0.01661042310297489, -0.002257296349853277, -0.018454506993293762, 0.024164339527487755, -0.0209269467741251, -0.007103141397237778, 0.0036608497612178326, 0.007601727265864611, -0.0033961895387619734, 0.014657058753073215, -0.007806625682860613, 0.008421320468187332, 7.753053068881854e-05, -0.005781547166407108, -0.001840669778175652, -0.0036062102299183607, -0.019369719550013542, -0.015941089019179344, 0.016036707907915115, -0.004149190615862608, -0.00707582151517272, 0.020489830523729324, -0.031363099813461304, -0.016637742519378662, -0.005552744027227163, 0.0006876899278722703, -0.029450716450810432, -0.0208586473017931, -0.008831117302179337, -0.00596937071532011, 0.011515284888446331, -0.0002699962060432881, -0.010832290165126324, 0.012765164487063885, -0.010934739373624325, 0.051006019115448, 0.007588067092001438, 0.03466879203915596, -0.001266100793145597, -0.010559093207120895, 0.0023324256762862206, 0.013441328890621662, -0.01509417500346899, -0.01008099690079689, 0.024218980222940445, 0.03412239998579025, 0.0069392225705087185, 0.00870134774595499, -0.004149190615862608, 0.006047915201634169, -0.05513130500912666, -0.032373931258916855, 0.007553917821496725, 0.015162474475800991, -0.008141293190419674, -0.009835118427872658, -0.00022496127348858863, -0.015503971837460995, -0.01284712366759777, -0.009589240886271, 0.016637742519378662, -0.01647382415831089, -0.00570300268009305, -0.02182850055396557, 0.006874338258057833, 0.019178481772542, 0.018140330910682678, 0.01909652166068554, -0.016282586380839348, -0.04772764444351196, 0.012218768708407879, -0.033248163759708405, 0.007048501633107662, -0.005549329333007336, 0.02734709344804287, -0.007704176474362612, 0.002981270430609584, -0.004589722026139498, -0.0173617172986269, -0.03379455953836441, 0.001791152753867209, -0.008926736190915108, 0.024055061861872673, 0.016255265101790428, 0.007915904745459557, 0.014301901683211327, 0.010559093207120895, 0.004705830942839384, 0.01727975718677044, 0.010320045053958893, 0.0010859610047191381, -0.01928776130080223, 0.012109490111470222, -0.0038179385010153055, 0.02089962735772133, 0.007478788029402494, -0.03450487554073334, -0.014342881739139557, -0.007219250313937664, -0.00041257127304561436, 0.0033842369448393583, 0.008947226218879223, -0.039777591824531555, -0.022279275581240654, -0.0009800968691706657, -0.02482001483440399, 0.02293495088815689, -0.005016593728214502, 0.019547298550605774, 0.0016844348283484578, 0.029095560312271118, -0.01923312060534954, 0.026718739420175552, -0.013318389654159546, 0.010333704762160778, -0.03363064303994179, -0.005375165492296219, 0.011289896443486214, -0.014902937225997448, 0.004142360761761665, -0.04259152710437775, -0.025803526863455772, 0.015777168795466423, 0.029860513284802437, 0.012751504778862, -0.0024536573328077793, 0.010675202123820782, -0.0007786135538481176, -0.003111039288341999, 0.01629624515771866, -0.02369990386068821, -0.025134192779660225, 0.007062161806970835, 0.027005596086382866, -0.0019175066845491529, 0.004033081699162722, -0.03671777620911598, 0.02285299077630043, -0.0028036918956786394, 0.008817457593977451, 0.02017565257847309, -0.04729053005576134, 0.010634222067892551, 0.0063996571116149426, 0.016637742519378662, -0.018495487049221992, -0.010907419957220554, -0.009596070274710655, -0.03644457831978798, -0.015968408435583115, 0.005023423582315445, 0.008380340412259102, -0.022292936220765114, 0.014848297461867332, 0.022169996052980423, -0.0018492072122171521, 0.002286323579028249, 0.014206282794475555, 0.007212420459836721, 0.018140330910682678, -0.005180512089282274, -0.039777591824531555, 0.0016630912432447076, 0.0001864361111074686, 0.030925985425710678, -0.0024758544750511646, -0.012963232584297657, 0.0020267858635634184, -0.012642225250601768, -0.026104044169187546, -0.021391382440924644, -0.0001921988878166303, 0.020407872274518013, 0.0457606203854084, 0.00951411109417677, 0.009022355079650879, 0.014902937225997448, -0.005125872790813446, 0.010682031512260437, -0.01421994250267744, 0.000363694503903389, 0.011433325707912445, 0.0016178429359570146, 0.004091136157512665, -0.0038725780323147774, -0.023303767666220665, -0.0026739228051155806, 0.01841352880001068, -0.005091723054647446, 0.001293420558795333, 0.03111722320318222, -0.006621630396693945, 0.008339361287653446, -0.011808972805738449, 0.01187727227807045, 0.03218269348144531, 0.013250090181827545, -0.013482308946549892, -0.024137020111083984, -0.0032015361357480288, -0.004999518860131502, 0.003146896604448557, -0.0016861422918736935, -0.01008099690079689, -0.004265299998223782, -0.014260922558605671, 0.015462992712855339, -0.016992900520563126, -0.0053854105062782764, -0.014479480683803558, -0.03305692598223686, 0.05554110184311867, 0.003712074365466833, 0.00954826083034277, 0.029969792813062668, -0.004084306303411722, -0.012833463959395885, -0.018932603299617767, 0.03830232471227646, 0.010859610512852669, -0.03562498465180397, 0.01727975718677044, -0.028904320672154427, 0.014739017933607101, -0.006983617320656776, 0.007738326210528612, -0.009821458719670773, -0.00017491058679297566, -0.012239258736371994, 0.0008422174141742289, -0.022620772942900658, 0.026882657781243324, 0.0012268286664038897, -0.008783307857811451, 0.006146949250251055, 0.006191344000399113, -0.008380340412259102, -0.00177749281283468, -0.02020297385752201, -0.01566789112985134, -0.007588067092001438, 0.003807693487033248, 0.004736565984785557, 0.009520941413939, -0.0015435672830790281, -0.007294379640370607, 0.019574617967009544, -0.028631122782826424, 0.0012575633591040969, 0.20019930601119995, -0.016241606324911118, -0.0006556746084243059, 0.007116801105439663, -0.009575581178069115, -0.004084306303411722, 0.01833156868815422, -0.005122457630932331, 0.0021343573462218046, -0.006987032480537891, -0.02180117927491665, 0.016747022047638893, -0.006611385382711887, 0.003640359966084361, 0.015503971837460995, -0.016910940408706665, -0.04851992055773735, 0.004938049241900444, 0.003172508906573057, -0.054393671452999115, 0.019383380189538002, -0.025803526863455772, -0.012382688000798225, -0.014547780156135559, 0.03483271226286888, -0.00868085864931345, 0.0045760623179376125, -0.012526116333901882, 0.02544836886227131, 0.011255746707320213, -0.030652787536382675, -0.02451949752867222, -0.00010885222582146525, -0.010675202123820782, -0.009377512149512768, -0.00997171737253666, 0.002967610489577055, 0.010770821012556553, 0.01841352880001068, 0.0006048768991604447, -0.000356864562490955, -0.005241981707513332, 0.006263058166950941, -0.007465128321200609, -0.016965579241514206, 0.028822362422943115, -0.010743501596152782, -0.006061574909836054, -0.024205319583415985, 0.003985272254794836, -0.02647286094725132, 0.035078588873147964, 0.0401054285466671, 0.019861476495862007, -0.009179444052278996, 0.0039306324906647205, -0.002842963906005025, 0.00617768382653594, -0.007813455536961555, 0.00019646759028546512, -0.01639186404645443, 0.018031051382422447, -0.008134462870657444, 0.029423397034406662, -0.02833060547709465, 0.008359851315617561, -0.005060988012701273, -0.004692171234637499, 0.018072031438350677, -0.019519979134202003, 0.0036847544834017754, -0.012997382320463657, -0.006041084881871939, 0.007062161806970835, -0.01088692992925644, -0.01551763154566288, 0.0366084985435009, -0.020530810579657555, 0.020735708996653557, -0.0020148332696408033, 0.019492659717798233, -0.01737537607550621, -0.00868085864931345, -0.019929775968194008, -0.005067818332463503, -0.019847815856337547, -0.003326182486489415, -0.014943916350603104, -0.009835118427872658, 0.01088692992925644, -0.026759719476103783, -0.015749849379062653, 0.006823113653808832, -0.024109700694680214, -0.006198173854500055, 0.019041882827878, 0.027060236781835556, 0.017798833549022675, 0.0009263110696338117, -0.0037769589107483625, -0.015818148851394653, 0.0020045884884893894, 0.017826152965426445, -0.007349019404500723, -0.019629258662462234, 0.0008793552406132221, 0.014657058753073215, 0.0026158683467656374, -0.008387170732021332, -0.019560959190130234, 0.03412239998579025, -0.0145341195166111, -0.00026252595125697553, -0.023413047194480896, 0.015749849379062653, 0.028795043006539345, -0.003951122518628836, -0.013420838862657547, 0.004343844018876553, 0.0033210599794983864, 0.020708389580249786, -0.024464858695864677, -0.010272235609591007, -0.008926736190915108, -0.007786135654896498, -0.018877964466810226, -0.007854434661567211, 0.018864303827285767, 0.0007393413688987494, -0.006990447174757719, 0.03267445042729378, -0.02939607761800289, -0.006826528813689947, 0.008926736190915108, -0.011508454568684101, 0.004849259741604328, 0.012526116333901882, -0.023426705971360207, 0.02573522739112377, 0.006099139805883169, 0.009596070274710655, 0.004996103700250387, 0.015121495351195335, 0.0003639079222921282, 0.008687688037753105, -0.014875616878271103, 0.015435672365128994, -0.008844777010381222, 0.003496931167319417, -0.018591105937957764, -0.02641822211444378, 0.000534443068318069, 0.006806038785725832, -0.0146707184612751, 0.012102659791707993, -0.00612645922228694, -0.02089962735772133, -0.026308942586183548, 0.0030683521181344986, 0.028112048283219337, -0.021691901609301567, 0.007512937765568495, 0.03827500343322754, -0.002137772273272276, -0.017949091270565987, 0.001737366896122694, -0.17473727464675903, 0.021582622081041336, 0.019178481772542, -0.010306384414434433, 0.026145024225115776, 0.035215187817811966, 0.02196509763598442, -0.0032408081460744143, -0.0064850314520299435, -0.007751985918730497, 0.016856301575899124, 0.019875135272741318, -0.032537851482629776, -0.033248163759708405, 7.283494778675959e-05, -0.0028036918956786394, -0.015913767740130424, -0.00275588221848011, 0.03464147448539734, 0.0172934178262949, -0.0009749744203872979, -0.019683897495269775, 0.018768684938549995, 0.0006385997403413057, 0.00410479586571455, 0.01911018230021, -0.011856782250106335, 0.006969957612454891, 0.0010210765758529305, -0.021568961441516876, 0.005320526193827391, 0.012007040902972221, -0.009466301649808884, -0.014698038809001446, 0.007212420459836721, 0.02387748286128044, -0.018577447161078453, -0.010190275497734547, -0.008865267038345337, 0.017020219936966896, -0.002573181176558137, 0.013181790709495544, 0.018481826409697533, 0.00685043353587389, 0.001364281284622848, 0.020353231579065323, -0.012218768708407879, 0.008168612606823444, 0.01510783564299345, -0.030543508008122444, 0.018905283883213997, -0.00017960616969503462, 0.021623602136969566, -0.0032886178232729435, 0.045241545885801315, 0.024888314306735992, 0.016200626268982887, 0.012211939319968224, -0.0011516992235556245, -0.02297593094408512, 0.008448639884591103, -0.01725243777036667, 0.018932603299617767, -0.011617734096944332, 0.0015290536684915423, -0.008933566510677338, -0.015244433656334877, -0.003794033546000719, -0.03540642932057381, 0.022251956164836884, -0.005586893763393164, 0.004873164929449558, 0.026008425280451775, -0.005873751360923052, 0.0012490259250625968, -0.012198279611766338, -0.022224636748433113, 0.020339572802186012, -0.006317697931081057, -0.018891623243689537, -0.04100698232650757, 0.05141581594944, -0.026841677725315094, -0.003198120975866914, 0.002834426471963525, 0.02189680002629757, -0.014588759280741215, -0.03559766709804535, -0.01419262308627367, 0.004412143491208553, 0.018427187576889992, -0.024109700694680214, -0.007403658702969551, -0.023071549832820892, 0.007594897411763668, 0.001898724352940917, -0.002416092436760664, -0.02369990386068821, -0.002617575926706195, -0.01230072882026434, 0.0011602366575971246, -0.025407390668988228, -0.005101968068629503, 0.035078588873147964, 0.04458587244153023, 0.020489830523729324, -0.010388344526290894, 0.01047030370682478, 0.04291936382651329, 0.013898935168981552, -0.0004635824298020452, 0.004910729359835386, 0.03401311859488487, 0.017634915187954903, -0.001131209428422153, 0.026732400059700012, -0.014356541447341442, -0.008817457593977451, 0.0347234345972538, -0.007765645626932383, 0.06813551485538483, -0.001464169123210013, -0.018140330910682678, -0.00458630733191967, -0.0030666447710245848, -0.03682705760002136, -0.11201107501983643, -0.008004694245755672, -0.020353231579065323, 0.03215537592768669, 0.013263750821352005, 0.013680377043783665, -0.010641052387654781, 0.012806144542992115, 0.020462511107325554, 0.007697346620261669, -0.025188831612467766, -0.048984356224536896, 0.005593723617494106, -0.0011704815551638603, 0.016856301575899124, -0.021227464079856873, -0.004323354456573725, -0.01099620945751667, 0.01909652166068554, 0.02846720442175865, -0.0022333916276693344, -0.014383860863745213, 0.02193777821958065, -0.01819496974349022, 0.0015299073420464993, -0.000817032007034868, -0.042564209550619125, 0.012034360319375992, 0.026896318420767784, 0.019916115328669548, -0.004459952935576439, -0.01725243777036667, 0.020585449412465096, -0.011665543541312218, -0.005361505784094334, -0.010675202123820782, -0.03871212154626846, 0.0027985693886876106, 0.020790347829461098, -0.03677241504192352, 0.012922253459692001, -0.008803796954452991, 0.010326874442398548, -0.010784480720758438, 0.015121495351195335, -0.0027541746385395527, -0.023413047194480896, 0.006047915201634169, 0.0031929987017065287, -0.011556264944374561, -0.031663618981838226, 0.0015546658542007208, -0.02936875820159912, 0.0029488280415534973, 0.03089866414666176, -0.0008020914974622428, 0.030324948951601982, -0.005914730951189995, -0.01654212363064289, -0.009753159247338772, -0.0012046312913298607, 0.001091083511710167, 0.00772466603666544, 0.029040919616818428, 0.0011508455500006676, 0.0022248541936278343, -0.021241124719381332, -0.0004665705200750381, 0.025407390668988228, -0.002293153665959835, -0.015299073420464993, 0.0037735437508672476, -0.030871344730257988, 0.01562691107392311, -0.017552955076098442, 0.03204609453678131, -0.0293414369225502, -0.01366671733558178, 0.017621254548430443, -0.000846486131194979, -0.0012370735639706254, -0.019765857607126236, 0.011740673333406448, -0.001978976186364889, 0.013058852404356003, 0.022497834637761116, 0.009992207400500774, -0.00815495289862156, 0.004074061289429665, -0.016883620992302895, 0.015394693240523338, 0.009179444052278996, -0.011692862957715988, -0.04652557522058487, 0.006222078576683998, 0.03199145570397377, 0.0013728186022490263, 0.0006010350189171731, -0.017580274492502213, 0.0003276238567195833, -0.02100890688598156, 0.0035003460943698883, -0.06283547729253769, 0.03346672281622887, 0.014260922558605671, -0.0010108316782861948, -0.002339255763217807, 0.007137291133403778, 0.01738903671503067, -0.00015836932288948447, -0.02184215933084488, 0.005060988012701273, -0.017020219936966896, 0.04409411549568176, -0.010620562359690666, -0.016651403158903122, -0.009268233552575111, 0.009015525691211224, 0.007471958175301552, -0.01092107966542244, 0.013953574933111668, -0.007048501633107662, 0.0071304612793028355, -0.00028194859623908997, 0.018877964466810226, 0.006314282771199942, -0.025926465168595314, 0.006232323590666056, 0.013523288071155548, 0.010285895317792892, -3.743129127542488e-05, -0.012478306889533997, 0.010852780193090439, -0.03272908926010132, -0.007656366564333439, 0.020558129996061325, 0.010101486928761005, 0.014165302738547325, -0.00910431519150734, 0.014479480683803558, -0.008926736190915108, 0.05857359617948532, -0.011119147762656212, -0.013803316280245781, 0.004248225130140781, -0.015189794823527336, -0.004623871762305498, 0.03991419076919556, -0.0025663513224571943, 0.0057610576041042805, 0.015230773948132992, -0.013120321556925774, 0.014274582266807556, 0.020653748884797096, 0.006590895354747772, -0.02574888803064823, -0.014561439864337444, -0.015394693240523338, 0.022238295525312424, -0.0017271219985559583, 0.008161782287061214, -0.010053676553070545, -0.003927217330783606, -0.007615386974066496, 0.009302383288741112, -0.012935913167893887, 0.023208148777484894, -0.010968889109790325, -0.01095522940158844, -0.007711006328463554, -0.0113718556240201, -0.027811530977487564, 0.010190275497734547, -0.006324527785181999, -0.005679097957909107, 0.008824286982417107, 0.012225599028170109, 0.01549031212925911, 0.014739017933607101, -0.005658608395606279, -0.01831790804862976, 0.023522324860095978, -0.011105488054454327, -0.017580274492502213, -0.024096040055155754, -0.0013565975241363049, 0.025817187502980232, 0.0007410488906316459, 0.00997171737253666, 0.02278469130396843, -0.010340534150600433, 0.005740567576140165, 0.02206071838736534, -0.013967234641313553, -0.016965579241514206, -0.020530810579657555, 0.025858165696263313, 0.017511975020170212, -0.023057889193296432, -0.002009710995480418, 0.03089866414666176, 0.03016103059053421, -0.012771994806826115, 0.004818525165319443, 0.006614800542593002, -0.009350192733108997, 0.0033569172956049442, -0.013748676516115665, -0.014848297461867332, -0.028931640088558197, -0.0030273725278675556, 0.015148814767599106, -0.009145294316112995, -0.01236219797283411, 0.016842640936374664, 0.011563094332814217, 0.0005536522949114442, 0.013052022084593773, 0.0009809506591409445, -0.011248917318880558, -0.011665543541312218, 0.04772764444351196, -0.0046546063385903835, 0.022101696580648422, 0.01812667027115822, 0.0028856510762125254, 0.02666410058736801, 0.019424360245466232, 0.02201973833143711, 0.006737739313393831, 0.0018748195143416524, -0.004695586394518614, 0.004002347122877836, 0.002066057873889804, -0.048000842332839966, -0.0020302007906138897, 0.005894241388887167, -0.03955903276801109, -0.011105488054454327, 0.004651191644370556, -0.019916115328669548, 0.05297304317355156, 0.019875135272741318, -0.01834522932767868, 0.014711698517203331, 0.010723011568188667, 0.02559862844645977, 0.008926736190915108, 0.004856090061366558, 0.003753053955733776, -0.011037188582122326, -0.002364868065342307, -0.021664580330252647, 0.026732400059700012, -0.015176134184002876, -0.008387170732021332, 0.01138551626354456, -0.011296726763248444, 0.02296227030456066, -0.006034255027770996, -0.024874653667211533, 0.028904320672154427, 0.00864670891314745, 0.03488735109567642, -0.008578409440815449, -0.005911316256970167, -0.012649055570363998, 0.019451679661870003, 0.010736671276390553, -0.01464339904487133, -0.029505357146263123, -0.003623285098001361, 0.011808972805738449, -0.010231255553662777, -0.01503953617066145, 0.011972891166806221, -0.01284712366759777, -0.004996103700250387, -0.008079823106527328, 0.02371356450021267, -0.0012447572080418468, -0.01004684716463089, 0.016842640936374664, -0.016036707907915115, -0.012403177097439766, 0.002779786940664053, -0.015599590726196766, 0.003633529879152775, -0.004634116776287556, -0.035215187817811966], "53760522-dbe6-4ac0-8639-cf27672ecb67": [-0.0058801486156880856, -0.012152758426964283, 0.0010522014927119017, 0.019068192690610886, 0.006688754074275494, 0.030449561774730682, -0.013925599865615368, -0.017268285155296326, -0.005108759738504887, -0.029150381684303284, 0.012660250999033451, 0.012592585757374763, 0.022451477125287056, -0.00369454687461257, -0.009473197162151337, 0.003031423082575202, 0.0370808020234108, 0.0025882127229124308, 0.03136981651186943, -0.026416687294840813, -0.006516206543892622, -0.012626418843865395, -0.005413255654275417, 0.02863612212240696, -0.010163387283682823, 0.031613413244485855, 0.024779176339507103, -0.015536043792963028, 0.0012729609152302146, -0.02269507385790348, -0.01985311508178711, 0.014629323035478592, 0.005778650287538767, -0.007030465640127659, -0.02955637499690056, -0.018797529861330986, 0.006384258158504963, -0.014927051961421967, 0.021341759711503983, -0.0060763792134821415, 0.01216629147529602, -0.005802333354949951, -0.016510428860783577, 0.002415665192529559, -0.01963658444583416, 0.01751188188791275, -0.002023204229772091, -0.01734948344528675, -0.012491087429225445, 0.010379917919635773, 0.022722139954566956, -0.0050241779536008835, -0.025442300364375114, 0.014954118058085442, -0.016375098377466202, -0.0005764271481893957, 0.004706148989498615, 0.014615789987146854, -0.0032530282624065876, 0.022654473781585693, 0.012511386536061764, 0.004915912635624409, 0.0030466478783637285, 0.0032344202045351267, -0.04433456435799599, -0.008695041760802269, -0.007659756578505039, -0.021179363131523132, -0.015211247839033604, -0.014561657793819904, 0.04176326468586922, 0.02944811061024666, -0.013648170977830887, 0.004986961837857962, 0.016226233914494514, -0.03099088743329048, -0.017254751175642014, -0.006221860647201538, -0.027039211243391037, 0.005890298634767532, -0.005653468891978264, -0.03323739022016525, -0.005301607307046652, 0.022668007761240005, 0.026105424389243126, -0.009155168198049068, 0.0013617720687761903, 0.0264572873711586, -0.014927051961421967, -0.007226696237921715, 0.008620609529316425, 0.015590175986289978, 0.016821691766381264, 0.02204548381268978, 0.004296771716326475, 0.01724121905863285, -0.024183718487620354, 0.0268362145870924, 0.0088371392339468, -0.019081726670265198, -0.035808686167001724, -0.014020332135260105, -0.010082188062369823, -0.002963757375255227, -0.011611432768404484, 0.010758845135569572, -0.002972215646877885, 0.0022245096042752266, 0.012409888207912445, -0.016077369451522827, -0.012396355159580708, 0.02035384066402912, -0.006265843287110329, -0.031667545437812805, -0.013479006476700306, -0.025509966537356377, 0.024968640878796577, -0.016009703278541565, -0.018526867032051086, 0.001133400364778936, -0.00021822185954079032, 0.018838129937648773, -0.007497359067201614, -0.02044857293367386, 0.008627375587821007, -0.0013660012045875192, 0.00052356329979375, -0.03683720529079437, -0.003170137759298086, -0.006739503238350153, 0.03800105303525925, 0.006340275518596172, 0.011760297231376171, -0.004587734118103981, -0.011970060877501965, 0.010481416247785091, -0.032479532063007355, 0.015414245426654816, 0.002847034018486738, -0.02220788039267063, 0.011164839379489422, 0.005670384969562292, 0.0020671868696808815, -0.046824660152196884, -0.025131039321422577, 0.032858461141586304, 0.009926557540893555, -0.00981829222291708, -0.01301211304962635, 0.008850673213601112, 0.014859386719763279, -0.006424857769161463, 0.006468840409070253, -0.019447119906544685, 0.025821229442954063, -0.014466925524175167, 0.0011706164805218577, 0.007037232164293528, 0.002740460680797696, -0.009852125309407711, 0.022722139954566956, 0.029664641246199608, 0.017146486788988113, 0.007930419407784939, 0.005785416811704636, 0.025442300364375114, 0.0025966709945350885, -0.01188886258751154, -0.03288552910089493, -0.020638037472963333, 0.010068655014038086, 0.004675699397921562, -0.019514786079525948, 0.003481399966403842, -0.010129554197192192, 0.021788353100419044, 0.0357816182076931, 0.02509043924510479, -0.024968640878796577, 0.00045378305367194116, -0.032317135483026505, 0.004591117147356272, 0.027688801288604736, 0.012531686574220657, -0.02291160449385643, -0.006905284244567156, -0.020001979544758797, -0.015752574428915977, 0.019555386155843735, 0.0010555848712101579, 0.008471745066344738, 0.012430188246071339, -0.025604698807001114, -0.021720686927437782, -0.6331343650817871, -0.013052712194621563, -0.00335452682338655, -0.024251384660601616, -0.0086476756259799, 0.004550518002361059, 0.009730326943099499, 0.007422926835715771, -0.010955075733363628, 0.012991813011467457, -0.03440123796463013, 0.019717782735824585, -0.006167727988213301, -0.002718469360843301, -0.007307894993573427, -0.008031917735934258, -0.0016324348980560899, -0.036025214940309525, -0.0005776958423666656, -0.02597009390592575, -0.010109255090355873, 0.007876287214457989, 0.012450487352907658, 0.010129554197192192, -0.0002554380043875426, -0.0032022788655012846, 0.014033865183591843, 0.007605623919516802, -0.001994446385651827, 0.027147475630044937, -0.01625330001115799, 0.0380551852285862, 0.0019521552603691816, 0.025334035977721214, 0.05383482575416565, -0.008830373175442219, -0.029962370172142982, 0.036025214940309525, 0.011821196414530277, 0.025604698807001114, -0.012348989024758339, -0.029664641246199608, 0.016402164474129677, -0.0025256220251321793, 0.028338393196463585, 0.002168685430660844, 0.009649127721786499, -0.015062383376061916, 0.006800402421504259, 0.002483330899849534, -0.003471250180155039, 0.006834235042333603, -0.019731316715478897, 0.010752079077064991, -0.013594037853181362, 0.004394887015223503, 0.02689034678041935, 0.004202039446681738, 0.011320470832288265, -0.006634621415287256, 0.023249931633472443, 0.023858923465013504, -0.0028402674943208694, 0.0066583044826984406, -0.011611432768404484, 0.01762014627456665, -0.009608528576791286, 0.009703260846436024, 0.02634902112185955, -0.015779640525579453, 0.018310336396098137, 0.01641569659113884, -0.0024139736779034138, -0.01887872815132141, 0.018689265474677086, 0.010555848479270935, 0.020989898592233658, -0.02944811061024666, -0.003498316276818514, 0.019568918272852898, 5.265236904961057e-05, -0.022519143298268318, -0.029258646070957184, -0.022329678758978844, 0.009114569053053856, -0.010156620293855667, -0.021558290347456932, 0.022735673934221268, -0.004381353501230478, 0.006248926743865013, -0.0021653021685779095, 0.023764191195368767, 0.011205438524484634, 0.01180766336619854, 0.04005809128284454, 0.007192863151431084, -0.000709643994923681, -0.003938143607228994, 0.007510892115533352, -0.016713427379727364, 0.00213992758654058, -0.023696526885032654, 0.001760999672114849, -0.02923157997429371, -0.00016525230603292584, -0.006834235042333603, -0.04162793606519699, -0.010454350151121616, 0.04931475967168808, -0.010704712942242622, -0.009892724454402924, -0.009398764930665493, -0.0083770127967, -0.002239734400063753, 0.015468377619981766, -0.019379455596208572, -0.00026051292661577463, 0.0019487719982862473, 0.01382410153746605, 0.0052745407447218895, 0.022613875567913055, -0.003119388595223427, 0.01646983064711094, -0.015021784231066704, 0.02388598956167698, 0.03529442474246025, -0.007280828896909952, -0.004855013452470303, -0.02406192012131214, -0.0023479994852095842, -0.013276008889079094, 0.01025811955332756, 0.009391997940838337, 0.014277461916208267, 0.022167282178997993, -0.009608528576791286, 0.026173090562224388, 0.0025070139672607183, 0.024860376492142677, -0.022816872224211693, -0.012355756014585495, 0.005683918483555317, 0.008485278114676476, -0.0020790284033864737, -0.006056079640984535, -0.028121862560510635, -0.013790268450975418, 0.002522238763049245, -0.03572748601436615, 0.012768516317009926, -0.02749933861196041, -0.015116516500711441, -0.007686822675168514, 0.019623050466179848, 0.018080273643136024, -0.011902395635843277, -0.01202419400215149, -0.011421969160437584, 0.015996169298887253, -0.02100343070924282, 0.014412793330848217, 0.02350706234574318, -0.028771452605724335, 0.0014801870565861464, 0.022059015929698944, -0.02262740768492222, -0.015563109889626503, 0.025225771591067314, -0.0046689328737556934, -0.030801424756646156, 0.004310304764658213, -0.022519143298268318, 0.004462552722543478, 0.05480921268463135, -0.01860806532204151, -0.005132442805916071, -0.007639457006007433, -0.01871633157134056, -0.015549576841294765, 0.004547134507447481, 0.00018629211990628392, 0.012565519660711288, -0.008938638493418694, -0.009263433516025543, 0.028500789776444435, -0.0021280860528349876, -0.006448540836572647, 0.013391041196882725, 0.01112424023449421, 0.02253267541527748, 0.0015427778707817197, 0.008221382275223732, 0.0048956130631268024, -0.003745296271517873, 0.008952171541750431, -0.005968114361166954, 0.010961842723190784, 0.02787826582789421, 0.013702303171157837, 0.012477554380893707, 0.018946394324302673, 0.009013070724904537, 0.03272312879562378, 0.007619156967848539, 0.011814430356025696, -0.021341759711503983, -0.0056264023296535015, -0.004662166349589825, 0.034671902656555176, -0.029854103922843933, -0.0007785783964209259, -0.006925583817064762, -0.021125229075551033, -0.0074296933598816395, 0.017308885231614113, 0.02029970847070217, 0.004584350623190403, 0.006350425537675619, -0.0004423644859343767, -0.003931376617401838, 0.0056974515318870544, -0.010643813759088516, -0.008410845883190632, -0.0031938208267092705, -0.01711942069232464, 0.005761733744293451, 0.003657330758869648, 0.024941574782133102, 0.010867110453546047, -0.007876287214457989, 0.0272151418030262, -0.013715836219489574, -0.011185139417648315, 0.005098610185086727, 0.014981185086071491, -0.003461100161075592, 0.015319513157010078, -0.003168446244671941, 0.03840704634785652, -0.034942563623189926, 0.007835687138140202, 0.003090630518272519, 0.025509966537356377, -0.024305516853928566, -0.010434050112962723, 0.0057245176285505295, 0.0018641898641362786, 0.013526372611522675, 0.015860838815569878, 0.03337271884083748, -0.010670879855751991, -0.0016704967711120844, -0.013729369267821312, -0.006289526354521513, 0.011164839379489422, -0.021179363131523132, 0.014277461916208267, 0.011205438524484634, 0.013350441120564938, 0.025185171514749527, 0.008695041760802269, -0.002072261879220605, 0.006864684633910656, 0.010427283123135567, 0.05361829698085785, 0.006776719354093075, 0.01066411379724741, 0.02230261266231537, -0.023168733343482018, -0.02121996134519577, -0.02395365573465824, -0.01947418600320816, 0.013648170977830887, -0.003958443179726601, 0.031072087585926056, 0.00594443129375577, 0.0016992547316476703, 0.009554396383464336, 0.030584894120693207, 0.006996632553637028, -0.01985311508178711, -0.037622127681970596, 0.039570897817611694, -0.012545219622552395, -0.0019301639404147863, -0.002485022647306323, 0.0008686583605594933, -0.021125229075551033, -0.029421044513583183, 0.03889423981308937, -0.013303075917065144, 0.011036274954676628, 0.01722768507897854, -0.016104435548186302, -0.012450487352907658, 0.004269705154001713, 0.03434710577130318, -0.005680534988641739, 0.047528382390737534, 0.0018506566993892193, -0.006188027560710907, 0.007923652417957783, -0.030341297388076782, 0.012105392292141914, 0.019406521692872047, -0.014115063473582268, -0.013370741158723831, -0.011273104697465897, 0.007923652417957783, -0.016009703278541565, -0.002290483796969056, -0.02717454358935356, -0.008573243394494057, -0.001413367222994566, -0.005332056898623705, -1.125999460782623e-05, -0.010684412904083729, 0.002315858379006386, 0.03399524465203285, 0.0012408196926116943, -0.01860806532204151, -0.01839153654873371, -0.023534128442406654, 0.00698309950530529, 0.10090308636426926, 0.017335951328277588, -0.017308885231614113, 0.00553505402058363, -0.008600309491157532, 0.0055993362329900265, -0.01860806532204151, -0.04422629624605179, 0.012348989024758339, -0.0177284125238657, 0.002200826769694686, -0.022383810952305794, 0.029366910457611084, -0.022451477125287056, 0.013215109705924988, -0.003491549752652645, -0.014602256938815117, -0.003735146252438426, 0.011848263442516327, -0.010623513720929623, 0.0038298782892525196, 0.008451445028185844, 0.012829415500164032, 0.02023204229772091, -0.019812515005469322, -0.008092816919088364, 0.03423884138464928, -0.011489635333418846, 0.014872919768095016, -0.014196262694895267, 0.0051527428440749645, 0.03310205787420273, 0.026159556582570076, 0.023141667246818542, -0.019135858863592148, -0.02181541919708252, 0.008958937600255013, 0.014615789987146854, 0.003853561356663704, 0.00278951833024621, 0.015278914012014866, 0.02743167243897915, 0.002288792049512267, -0.0030872472561895847, 0.0022938670590519905, -0.00855971034616232, -0.012633184902369976, -0.006225243676453829, -0.03261486440896988, 0.004783964715898037, 0.0525897778570652, -0.008992770686745644, -0.006553422659635544, -0.017904343083500862, 0.030611960217356682, 0.0022075932938605547, -0.0031075470615178347, -0.0033680598717182875, -0.017972009256482124, 0.019609518349170685, -0.016348032280802727, 0.0076800561510026455, 0.008823606185615063, -0.01942005380988121, -0.021030498668551445, -0.019501253962516785, -0.0261324904859066, 0.004736598581075668, -0.006918817292898893, 0.019866647198796272, -0.013262475840747356, -0.011259571649134159, -0.028230126947164536, 0.004286621697247028, 0.012903847731649876, 0.00463848328217864, 0.02798653021454811, -0.0017474665073677897, 0.01088741049170494, -0.007375560700893402, -0.0064316242933273315, -0.032046474516391754, 0.013898533768951893, -0.02847372367978096, -0.030693158507347107, -0.0015495443949475884, 0.020096711814403534, 0.027418138459324837, -0.01871633157134056, -0.0010192145127803087, -0.0009718485525809228, 0.005832782946527004, 0.010332551784813404, -0.013269242830574512, -0.000231120633543469, -8.283761417260394e-05, 0.0028487257659435272, 0.0003533418057486415, -0.013370741158723831, -0.009439364075660706, 0.003100780537351966, -0.03605228289961815, 0.010691179893910885, -0.021747754886746407, 0.010542315430939198, -0.007578557822853327, 0.012206891551613808, 0.020868100225925446, -0.02389952354133129, -0.035646289587020874, -0.01538717932999134, -0.022708607837557793, 0.005565503146499395, -0.013221876695752144, -0.011530234478414059, -0.0034272673074156046, 0.02389952354133129, 0.009168701246380806, -0.002522238763049245, -0.011442269198596478, -0.005352356471121311, -0.035592153668403625, 0.015590175986289978, -0.006742886267602444, -0.02607835829257965, 0.0006724278209730983, 0.01609090156853199, -0.01707882061600685, 0.02809479646384716, 0.006191411055624485, 0.022600341588258743, 0.027472272515296936, 0.014142130501568317, -0.02449498139321804, -0.0336163155734539, 0.0030957055278122425, -0.022329678758978844, -0.0015622316859662533, -0.0036234979052096605, 0.00269986130297184, -0.018337402492761612, -0.011915928684175014, -0.019880181178450584, -0.02852785587310791, -0.004090391099452972, -0.02176128700375557, -0.01374290231615305, 0.02563176490366459, -0.0018608066020533442, -8.838831126922742e-05, -0.016077369451522827, -0.038975439965724945, -0.016226233914494514, 5.133077138452791e-05, -0.0262948889285326, -0.04035582020878792, 0.007937186397612095, -0.007531191688030958, 0.02149062417447567, -0.01113100629299879, 0.038488246500492096, -0.027188075706362724, 0.014006799086928368, 0.0088371392339468, -0.012497853487730026, 0.004232489038258791, -0.018350936472415924, -0.0264031533151865, -0.038163453340530396, -0.0026846365071833134, 0.028771452605724335, 0.016835223883390427, 0.014087997376918793, -0.02219434827566147, 0.0025290052872151136, 0.03759505972266197, -0.026173090562224388, -0.025442300364375114, -0.01859453320503235, -0.03256073221564293, -0.010873877443373203, 0.012545219622552395, -0.006550039164721966, -0.007768021896481514, -0.028446657583117485, 0.0018134405836462975, 0.0667995736002922, 0.006688754074275494, 0.007280828896909952, -0.011455802246928215, 0.021422958001494408, -0.02933984436094761, 0.010028055869042873, -0.006228627171367407, 0.012152758426964283, -0.011597899720072746, 0.02215374819934368, 0.009182234294712543, 0.013627870939671993, 0.0009109494276344776, -0.0009033370297402143, -0.010758845135569572, -0.015427778474986553, -0.009825059212744236, -0.024427315220236778, 0.012606118805706501, -0.013499305583536625, -0.010434050112962723, 0.02825719304382801, -0.030287165194749832, -0.02177482098340988, -0.02356119453907013, 0.000853856501635164, -0.042629387229681015, -0.0038501780945807695, 0.00048000350943766534, 0.009019836783409119, 0.015481910668313503, -0.010609980672597885, -0.017214152961969376, 0.01140166912227869, -0.018838129937648773, 0.05640612170100212, 0.006996632553637028, 0.025997160002589226, 0.0018794146599248052, -0.017146486788988113, -0.0012687317794188857, 0.007463525980710983, -0.005284690763801336, -0.004421953111886978, 0.009310799650847912, 0.014615789987146854, -0.0007536266930401325, 0.0039685931988060474, -0.012626418843865395, 0.00127211504150182, -0.05781356990337372, -0.029096247628331184, 0.02329053170979023, -0.006056079640984535, -0.00769358966499567, -0.006367341615259647, -0.007889820262789726, -0.026755016297101974, -0.00010995675256708637, 0.0028622588142752647, 0.015062383376061916, -0.00941229797899723, -0.0031430714298039675, -0.02798653021454811, 0.0025611466262489557, 0.0187569297850132, 0.02874438650906086, 0.0350237637758255, -0.015468377619981766, -0.032912593334913254, -0.00584969948977232, -0.02579416334629059, -0.012457254342734814, -0.013127144426107407, 0.015779640525579453, -0.010758845135569572, 0.013411340303719044, 0.0006796173402108252, -0.009757393039762974, -0.019988445565104485, -0.011225738562643528, -0.01657809503376484, 0.024860376492142677, 0.019595984369516373, 0.014060931280255318, 0.009588228538632393, 0.01887872815132141, 0.009006303735077381, 0.005433555226773024, 0.009567929431796074, 0.010116021148860455, -0.016605161130428314, 0.005890298634767532, 0.007903353311121464, 0.017538947984576225, -0.0014497374650090933, -0.01293091382831335, -0.019717782735824585, -0.0007760409498587251, -0.0016688051400706172, -0.0019064809894189239, 0.006110212299972773, -0.04146553575992584, -0.02525283768773079, 0.0015233239391818643, -0.04855690151453018, 0.015048850327730179, 0.006319975946098566, 0.026795614510774612, -0.005007261410355568, 0.03109915368258953, -0.03261486440896988, 0.022938670590519905, -0.008275514468550682, 0.009669427759945393, -0.02034030854701996, 0.010576147586107254, 0.005017411429435015, -0.004966661799699068, 0.006506056524813175, -0.01017015427350998, -0.023967189714312553, 0.009534096345305443, 0.024779176339507103, 0.009263433516025543, 0.0009210992720909417, 0.01706528849899769, 0.007152264006435871, -0.00014209795335773379, 0.014020332135260105, -0.019379455596208572, -0.028554923832416534, 0.009216067381203175, 0.031667545437812805, 0.0015207864344120026, 0.019880181178450584, -0.03142394870519638, 0.022992802783846855, 0.012091859243810177, 0.02912331558763981, 0.004970045294612646, -0.04920649155974388, 0.008275514468550682, -0.013113611377775669, 0.01684875786304474, 0.003745296271517873, -0.020326774567365646, -0.018580999225378036, -0.026335489004850388, -0.015752574428915977, 0.003589665051549673, 0.0017390083521604538, -0.02481977641582489, 0.02040797285735607, 0.030043568462133408, -0.007619156967848539, -0.005196725483983755, -0.00590383168309927, -0.0005734667647629976, 0.011449035257101059, -0.010725012980401516, -0.03938143327832222, -0.004070091526955366, -0.0132286436855793, 0.03791985660791397, -0.001071655424311757, -0.007930419407784939, -0.013005346059799194, -0.02525283768773079, -0.03948969766497612, -0.01450752466917038, -0.004452402703464031, 0.009344632737338543, 0.03710786625742912, 0.013621103949844837, 0.009777693077921867, 0.025726497173309326, -0.012159525416791439, 0.0017110962653532624, -0.004110691137611866, -0.007010166067630053, -0.014899985864758492, -0.004767048172652721, -0.012700851075351238, -0.01418272964656353, -0.02628135494887829, -0.010359617881476879, 0.009473197162151337, -0.0003914037370122969, 0.001382917631417513, 0.017877276986837387, 0.01251815352588892, 0.008498811163008213, -0.009622061625123024, 0.008600309491157532, 0.013377508148550987, 0.018350936472415924, -0.005037711001932621, -0.020692169666290283, -0.018364468589425087, -0.0023226249031722546, -0.024305516853928566, -0.021896619349718094, -0.02197781763970852, 0.0007062606746330857, -0.021477092057466507, 0.016537494957447052, -0.02235674485564232, -0.013979732058942318, -0.0061068288050591946, -0.02722867578268051, 0.042845916002988815, -0.011760297231376171, 0.006468840409070253, 0.030963821336627007, -0.008309347555041313, -0.026660284027457237, -0.02035384066402912, 0.02078690193593502, 0.025266369804739952, -0.028771452605724335, 0.014913518913090229, -0.0378386564552784, -0.0017762244679033756, -0.006255693268030882, 0.014629323035478592, -0.010197220370173454, 0.016564561054110527, -0.0006948420777916908, 0.0038400280755013227, -0.029366910457611084, 0.021625956520438194, 0.007368794176727533, -0.002847034018486738, -0.008485278114676476, 0.006509440019726753, -0.006292909383773804, -0.0007392477127723396, -0.020164376124739647, -0.019501253962516785, 0.0019910631235688925, 0.007727422285825014, 0.0032428784761577845, -0.0009946856880560517, -0.010373150929808617, -0.005335439927875996, 0.02399425581097603, -0.038596510887145996, 0.0029975902289152145, 0.208843395113945, -0.016726959496736526, -0.0015986020443961024, 0.020583903416991234, -0.029421044513583183, 0.0042291060090065, 0.02044857293367386, 0.007436459884047508, -0.001759308041073382, -0.014277461916208267, -0.007443226408213377, 0.019947847351431847, -0.01180766336619854, 0.007673289626836777, 0.01257228571921587, -0.016104435548186302, -0.0342659093439579, 0.023534128442406654, -0.0010293644154444337, -0.04384737089276314, 0.006550039164721966, -0.012051260098814964, -0.006790252402424812, 0.0073011284694075584, 0.01887872815132141, -0.0058530825190246105, -0.0009913024259731174, -0.007571791298687458, 0.02220788039267063, 0.0021788354497402906, -0.031721677631139755, 0.0031329216435551643, -0.013458706438541412, -0.015400712378323078, -0.020096711814403534, -0.000594189390540123, 0.014074464328587055, 0.011110707186162472, 0.0171870868653059, 0.00418850639835, 0.009994222782552242, 0.0008906496805138886, 0.007876287214457989, -0.0008272131090052426, -0.021206429228186607, 0.02553703263401985, -0.0016324348980560899, -0.020150844007730484, -0.029691707342863083, 0.00949349720031023, -0.033832848072052, 0.019812515005469322, 0.032046474516391754, 0.022830404341220856, -0.01023105252534151, -0.008796540088951588, -0.00021240684145595878, 0.009581462480127811, -0.0076800561510026455, 0.01805320754647255, -0.01844566874206066, 0.019352387636899948, 0.006925583817064762, 0.02820306085050106, -0.018229138106107712, 0.010488182306289673, -0.013404574245214462, -0.01722768507897854, 0.02465737983584404, -0.01630743220448494, -0.003033114830031991, -0.012538453564047813, -0.013844400644302368, 0.0037216132041066885, -0.012856481596827507, -0.008471745066344738, 0.034563638269901276, -0.013580504804849625, 0.01669989340007305, -0.004763664677739143, 0.012545219622552395, -0.012288089841604233, 0.006854534614831209, -0.011523467488586903, -0.006912050768733025, -0.024616779759526253, -0.006380875129252672, -0.006323358975350857, -0.024319050833582878, 0.003955059684813023, -0.03702666610479355, -0.015671374276280403, 0.01391206681728363, -0.007991318590939045, -0.005206875037401915, -0.00033579100272618234, 0.017471281811594963, 0.005886915605515242, 0.0019724550656974316, 0.0012568902457132936, -0.0067259701900184155, -0.007043998688459396, 0.029989436268806458, -0.007267295382916927, -0.016929956153035164, 0.0004909991985186934, 0.01839153654873371, 0.014155663549900055, 0.006296292878687382, -0.01619916781783104, 0.021747754886746407, -0.0134181072935462, -0.008255214430391788, -0.027039211243391037, 0.004384736996144056, 0.019839581102132797, -0.023222865536808968, -0.030720224604010582, 0.001531782210804522, 0.01587437279522419, 0.009114569053053856, -0.025266369804739952, -0.003217503661289811, -0.0027066278271377087, -0.0023818323388695717, -0.016266832128167152, -0.02492804266512394, 0.04057234898209572, 0.004915912635624409, -0.00820784829556942, 0.02339879795908928, -0.01936592161655426, -0.0028335009701550007, 0.008931871503591537, -0.022952202707529068, 0.022992802783846855, -0.010623513720929623, -0.031396880745887756, 0.03399524465203285, -0.006817318499088287, 0.007571791298687458, -0.003119388595223427, 0.01707882061600685, 0.004756898153573275, 0.004838096909224987, -0.008546177297830582, 0.025158105418086052, -0.025063373148441315, 0.006597405299544334, -0.021625956520438194, -0.03759505972266197, 0.00639440817758441, 0.018675731495022774, -0.00661432184278965, 0.019866647198796272, 0.002346307970583439, -0.009371698834002018, -0.01659162901341915, 0.008248448371887207, 0.021044030785560608, -0.014859386719763279, 0.010461116209626198, 0.03223593533039093, -0.005379422567784786, -0.02460324577987194, -0.01472405530512333, -0.17214152216911316, 0.018513333052396774, 0.008735640905797482, -0.008762707002460957, 0.021896619349718094, 0.02814892865717411, 0.03396817669272423, -0.01175353117287159, -0.008945404551923275, -0.007145497482270002, 0.018783995881676674, 0.014710522256791592, -0.04281885176897049, -0.018283270299434662, -0.007145497482270002, -0.004780581220984459, -0.006157577969133854, 0.012673784978687763, 0.03207353875041008, 0.017417149618268013, -0.005257624667137861, -0.014426326379179955, 0.004851630423218012, -0.003863711142912507, 0.0036843970883637667, 0.01238282211124897, -0.015860838815569878, 0.012443721294403076, 0.009121336042881012, -0.027133943513035774, -0.005869999062269926, 0.01713295467197895, 0.006580488756299019, -0.02601069211959839, 0.019717782735824585, 0.006857918109744787, -0.006025630049407482, -0.009425831027328968, -0.006922200322151184, 0.015969103202223778, 0.022289080545306206, 0.01039345096796751, 0.021260561421513557, 0.0027438439428806305, 0.0012340530520305037, 0.02944811061024666, 0.001382917631417513, -0.0027066278271377087, 0.02438671700656414, -0.02890678495168686, 0.010149854235351086, -0.0049226791597902775, 0.007179330103099346, 0.006736119743436575, 0.025496434420347214, 0.010508482344448566, 0.011834729462862015, 0.005819249898195267, -0.003961826208978891, -0.02388598956167698, 0.0010674262885004282, -0.016984088346362114, 0.021666554734110832, -0.011949761770665646, -0.0014006798155605793, -0.0179449412971735, -0.02628135494887829, 0.014006799086928368, -0.030314231291413307, 0.02368299290537834, -0.004611417185515165, 0.018256204202771187, 0.026200156658887863, -0.012727917172014713, -0.002376757562160492, -0.00832288060337305, -0.03147808089852333, 0.021409425884485245, -0.001935238833539188, -0.004455786198377609, -0.04820504039525986, 0.04046408459544182, -0.00539972260594368, -0.02073276787996292, 0.0016493513248860836, 0.013323375023901463, -0.022383810952305794, -0.02672794833779335, -0.019595984369516373, 0.0006001100991852582, 0.024454381316900253, -0.04000395908951759, -0.007321428041905165, -0.004942979197949171, 0.026308421045541763, 0.009026603773236275, 0.009101036004722118, -0.01472405530512333, 0.004357670899480581, -0.018296804279088974, 0.005355739500373602, -0.023534128442406654, 0.0034949330147355795, 0.025834761559963226, 0.02051623910665512, 0.02154475636780262, -0.00905366986989975, 0.015833772718906403, 0.03331858664751053, 0.013580504804849625, -0.007490592543035746, 0.013032413087785244, 0.015224780887365341, 0.013979732058942318, 0.009229600429534912, 0.0260242260992527, -0.0187569297850132, -0.005369273014366627, 0.030557828024029732, -0.011015974916517735, 0.06154871731996536, -0.018039673566818237, -0.004536984954029322, 0.004097157623618841, -0.010055121965706348, -0.028446657583117485, -0.11898335814476013, -0.0021889852359890938, 0.0051764254458248615, 0.027959464117884636, -0.002667719963937998, 0.013634636998176575, -0.004235872533172369, 0.012443721294403076, -0.006912050768733025, 0.0055959527380764484, -0.02766173519194126, -0.03234420344233513, 0.010373150929808617, -0.0072334627620875835, 0.020651569589972496, -0.02334466390311718, -0.00427985517308116, -0.01893286034464836, 0.015468377619981766, 0.017051754519343376, 0.01860806532204151, -0.01870279759168625, 0.032425399869680405, -0.017823144793510437, 0.022505609318614006, -0.003833261551335454, -0.03077435865998268, 0.020922232419252396, 0.0336163155734539, 0.0015385487349703908, -0.006309825927019119, -0.005795566830784082, 0.023601794615387917, -0.007740955334156752, -0.009581462480127811, -0.015021784231066704, -0.03050369583070278, 0.006012097001075745, 0.015536043792963028, -0.02159889042377472, 0.013566971756517887, -0.012971513904631138, 0.02116582915186882, -0.01724121905863285, 0.02046210505068302, 0.004043025430291891, -0.015725506469607353, 0.012274556793272495, -0.0011731539852917194, -0.023466462269425392, -0.0272151418030262, 0.024684445932507515, -0.041384339332580566, -0.0008991078939288855, 0.027188075706362724, -0.006901900749653578, 0.0356733538210392, 0.00688836770132184, 0.002984057180583477, -0.012152758426964283, -0.007436459884047508, 0.01107010804116726, 0.006245543714612722, 0.02804066427052021, 0.009919790551066399, -0.007111664395779371, -0.0021094779949635267, -0.012802349403500557, 0.02078690193593502, 0.008688274770975113, -0.019352387636899948, 0.007409393321722746, -0.031072087585926056, 0.018892262130975723, -0.010867110453546047, 0.01684875786304474, -0.026497885584831238, -0.0007857678574509919, 0.004032875411212444, 0.01893286034464836, -0.01391206681728363, -0.03326445445418358, 0.017038222402334213, -0.0077815549448132515, 0.017376549541950226, 0.008329646661877632, 0.0034594086464494467, -0.01592850498855114, 0.006001946981996298, -0.019271189346909523, 0.00828904751688242, 0.01153700053691864, -0.018797529861330986, -0.04059941694140434, 0.008904805406928062, 0.029664641246199608, 0.01464285608381033, 0.007490592543035746, -0.01194299478083849, -0.0025865212082862854, -0.02755347080528736, 0.00729436194524169, -0.06333509087562561, 0.027851199731230736, 0.010163387283682823, 0.013634636998176575, 0.008498811163008213, -0.0009422447765246034, 0.013729369267821312, -0.011956527829170227, -0.015346579253673553, -0.0002277373569086194, -0.026308421045541763, 0.03429297357797623, -0.0129579808562994, -0.00355921545997262, -0.008634142577648163, 0.007186096627265215, 0.0017136336537078023, -0.017769010737538338, -0.0017390083521604538, -0.015779640525579453, 0.015346579253673553, 0.012849715538322926, 0.015481910668313503, -0.00042375639895908535, -0.032912593334913254, -0.0036167313810437918, 0.01603676937520504, 0.01450752466917038, -0.0008162174490280449, -0.013221876695752144, 0.004665549844503403, -0.03432004153728485, -0.0014497374650090933, 0.005369273014366627, 0.006072996184229851, 0.008228148333728313, -0.0179449412971735, 0.0006631237920373678, 0.013458706438541412, 0.059870604425668716, -0.002163610653951764, -0.01383086759597063, -0.00012148106907261536, -0.023371729999780655, 0.010860343463718891, 0.024454381316900253, 0.0041208406910300255, 0.012362522073090076, 0.024129586294293404, -0.022925136610865593, 0.01404739823192358, 0.024400249123573303, -0.003528765868395567, -0.030314231291413307, -0.012186591513454914, -0.0184862669557333, 0.03169460967183113, -0.004557284526526928, 0.012937680818140507, -0.018012607470154762, 0.009229600429534912, -0.01805320754647255, 0.007246995810419321, -0.007957485504448414, 0.017254751175642014, -0.025171637535095215, -0.015305980108678341, -0.001169770723208785, -0.010961842723190784, -0.01404739823192358, 0.00494974572211504, -0.009094269014894962, -0.0007794242119416595, 0.0034391088411211967, 0.014940585009753704, 0.02831132709980011, 0.015021784231066704, -0.0019995211623609066, -0.01717355288565159, 0.017038222402334213, -0.006248926743865013, -0.008816840127110481, -0.02809479646384716, 0.014115063473582268, 0.030368363484740257, -0.006989866029471159, -0.0010234436485916376, 0.012288089841604233, -0.014493991620838642, 0.005842932499945164, 0.02231614664196968, -0.01598263718187809, -0.026159556582570076, -0.014791720546782017, 0.01211215928196907, 0.016659293323755264, -0.006702287122607231, -0.007768021896481514, 0.03921903669834137, 0.026064826175570488, -0.017958475276827812, 0.024088988080620766, 0.01464285608381033, -0.004381353501230478, -0.0007341727614402771, -0.00878300704061985, -0.015116516500711441, -0.032479532063007355, -0.0055012209340929985, 0.01058291457593441, -0.004963278770446777, 0.006834235042333603, 0.022505609318614006, 0.022654473781585693, -0.015942037105560303, 0.013269242830574512, -0.0010479724733158946, -0.020326774567365646, -0.019758382812142372, 0.03756799176335335, 0.00254423008300364, 0.025293435901403427, 0.022898070514202118, 0.003951676655560732, 0.004340754356235266, 0.030639026314020157, 0.004296771716326475, 0.022221414372324944, -0.0013490847777575254, -0.003012815024703741, 0.015914971008896828, -0.0011570833157747984, -0.04046408459544182, 0.00265926169231534, 0.006160961464047432, -0.021693620830774307, -0.007740955334156752, 0.01641569659113884, -0.01996137946844101, 0.03442830592393875, 0.004760281648486853, -0.011469335295259953, 0.003498316276818514, 0.011936228722333908, 0.023060468956828117, 0.01115807332098484, 0.017484815791249275, 0.0038061952218413353, -0.003521999344229698, 0.0002989977947436273, -0.0176742784678936, 0.026430219411849976, -0.0058801486156880856, -0.005288073793053627, 0.010494949296116829, -0.00908750295639038, 0.021030498668551445, -0.01849980093538761, -0.02002904564142227, 0.029935302212834358, 0.00279459310695529, 0.03345391899347305, -0.004415186587721109, -0.0166457612067461, 0.0008957246318459511, 0.009710026904940605, 0.012626418843865395, -0.003518616082146764, -0.03594401851296425, -0.0022549591958522797, 0.017552481964230537, -0.01027841866016388, -0.014859386719763279, 0.02111169695854187, 0.004235872533172369, -0.008045450784265995, -0.018635131418704987, 0.015265380963683128, -0.0066819870844483376, -0.009804759174585342, 0.023534128442406654, -0.012673784978687763, -0.014886452816426754, 0.02323639951646328, -0.008776240982115269, -0.012863248586654663, 0.008146950043737888, -0.02733694016933441], "ff57d127-4592-40df-a7f3-d3775d9dda96": [-0.009098974987864494, -0.009559682570397854, -0.008956697769463062, -0.0065312073566019535, -0.012242626398801804, 0.023428335785865784, -0.018685758113861084, -0.0015786009607836604, -0.00182589259929955, -0.03241213411092758, 0.02139580249786377, 0.016870027408003807, 0.025623472407460213, 0.006991914939135313, -0.002068102825433016, 0.022832125425338745, 0.03303544223308563, 0.008028507232666016, 0.04246639832854271, -0.021856509149074554, -0.003052187617868185, -0.00598581088706851, 0.008746668696403503, 0.03785932436585426, -0.008035282604396343, 0.03043380007147789, 0.027859259396791458, 0.0010560705559328198, 0.0152304507791996, -0.0275882538408041, -0.010813077911734581, -0.00395666528493166, -0.003025087295100093, -0.004271707963198423, -0.03577258810400963, 0.0016311081126332283, 0.004712089896202087, -0.01867220737040043, 0.005863858852535486, -0.008706018328666687, 0.010792752727866173, -0.017737241461873055, -0.006873350590467453, 0.007676201406866312, -0.014552939683198929, 0.01677517592906952, 0.009193826466798782, -0.030189896002411842, -0.029322681948542595, -0.004071841947734356, 0.016111215576529503, 0.011158608831465244, -0.023875493556261063, 0.01795404590666294, -0.007676201406866312, -0.004634176380932331, 0.01274398434907198, 0.010657249949872494, -0.02294052764773369, 0.028645170852541924, 0.013529897667467594, -0.014552939683198929, 0.004363171756267548, 0.014715542085468769, -0.03796772658824921, -0.0228456761687994, -0.012391678988933563, -0.01964782364666462, -0.021951360628008842, -0.003753411816433072, 0.0466940701007843, 0.025826724246144295, -0.020365985110402107, -0.011578665114939213, 0.0234689861536026, -0.024363301694393158, -0.0386994369328022, 0.001101802452467382, -0.01869930699467659, -0.0023441885132342577, -0.007188393268734217, -0.02506791241466999, 0.007079991512000561, 0.016842927783727646, 0.01955297216773033, -0.014891695231199265, -0.0017970983171835542, 0.030948709696531296, -0.02613838016986847, -0.024376850575208664, 0.02219526469707489, 0.030325399711728096, 0.015501455403864384, 0.019458120688796043, -0.005914672277867794, 0.02077249251306057, -0.02651778608560562, 0.02239851839840412, 0.0006576092564500868, -0.01134831178933382, -0.03306254372000694, -0.013157266192138195, -0.021057046949863434, -0.0022781312000006437, -0.013489247299730778, 0.006453293841332197, -0.022290116176009178, -0.012290052138268948, 0.012019047513604164, -0.01590796187520027, 0.0002521611750125885, 0.031138412654399872, -0.005884184502065182, -0.04758838191628456, -0.009132849983870983, -0.021761657670140266, 0.02397034503519535, -0.025352466851472855, -0.02104349620640278, -0.005057620815932751, 0.0016251798951998353, 0.007811703719198704, -0.009424179792404175, -0.009891662746667862, 0.013767026364803314, -0.012486530467867851, -0.011395737528800964, -0.040460966527462006, 0.015569206327199936, 0.0007939583738334477, 0.04116557911038399, -0.005081333685666323, -0.009207376278936863, 0.0008231760584749281, -0.012276502326130867, 0.0024949347134679556, -0.034390464425086975, -0.004332683980464935, -0.009979738853871822, -0.033414848148822784, 0.023834843188524246, 0.018292801454663277, 0.004776453599333763, -0.03707341104745865, -0.015582756139338017, 0.023306382820010185, 0.016287367790937424, 0.020636988803744316, -0.034119460731744766, 0.011991946958005428, 0.014498738572001457, 0.0038855264429003, 0.016517721116542816, -0.014051580801606178, 0.016395770013332367, -0.013401170261204243, 0.015298201702535152, -0.006819149944931269, 0.002926848130300641, -0.024580104276537895, 0.023997444659471512, 0.019187115132808685, 0.017845643684267998, 0.012913362123072147, -0.0023120068944990635, 0.030325399711728096, 0.005697868764400482, -0.016490621492266655, -0.024024546146392822, -0.026355184614658356, 0.011714167892932892, 0.011876770295202732, -0.04111137613654137, 0.011280560865998268, 0.0015955388080328703, 0.005677543580532074, 0.025935126468539238, 0.024078745394945145, -0.019309068098664284, 0.0006127241649664938, -0.04005445912480354, -0.01600281335413456, 0.02151775360107422, 0.022561121731996536, -0.027805058285593987, -0.008435013704001904, -0.021463552489876747, -0.016409320756793022, 0.016991980373859406, 0.009430955164134502, 0.00644651846960187, 0.014945896342396736, -0.014065131545066833, 0.001912275212816894, -0.6430394053459167, -0.022479819133877754, -0.02219526469707489, -0.019431019201874733, -0.005487840157002211, 0.007547474000602961, 0.00960033293813467, -0.008780544623732567, -0.0010823240736499429, 0.010501422919332981, -0.026571987196803093, 0.021599056199193, 0.00028264918364584446, -0.02136870101094246, -0.021138347685337067, -0.010291394777595997, 0.01602991297841072, -0.03401105850934982, -0.0004103176761418581, -0.017439136281609535, -0.0025779299903661013, -0.0052744243294000626, -0.010291394777595997, 0.009017673321068287, -0.002799814799800515, -0.004515612032264471, 0.004732415545731783, 0.00048103291192092, -0.007628775667399168, 0.050271328538656235, -0.0158537607640028, 0.03731731325387955, 0.029241381213068962, 0.01508139818906784, 0.05506810545921326, -0.00738487159833312, -0.013089515268802643, 0.01819794997572899, 0.011409287340939045, 0.011700617149472237, -0.02584027498960495, -0.029973093420267105, 0.019837526604533195, 0.009227701462805271, 0.005934997461736202, -0.004850979894399643, 0.01677517592906952, 0.0011653192341327667, 0.004637563601136208, 0.017086831852793694, 0.015054297633469105, 0.002999680582433939, -0.01612476445734501, -0.004888243041932583, -0.01650417223572731, 0.001951232086867094, 0.029376883059740067, -0.010711451061069965, -0.002054552547633648, 0.0012635582825168967, 0.010494647547602654, 0.02373998984694481, -0.002764245495200157, 0.013502797111868858, -0.0016539740609005094, 0.026775240898132324, -0.008170784451067448, 0.02062343992292881, 0.01955297216773033, -0.005660605616867542, 0.008868620730936527, 0.019160015508532524, 0.0025762361474335194, -0.019105814397335052, 0.030027294531464577, 0.0010408265516161919, 0.04317101091146469, -0.006798824295401573, 0.001868237042799592, 0.02107059769332409, 0.004010865930467844, -0.024824008345603943, -0.0282115638256073, -0.035013776272535324, 0.017696591094136238, -0.014227733947336674, -0.015758909285068512, 0.02676169015467167, -0.010860503651201725, 0.003008149564266205, 0.006331341806799173, 0.005802882835268974, 0.005616567563265562, 0.016612572595477104, 0.04474283754825592, 0.01289303693920374, 0.0026355183217674494, -0.0006067959475331008, 0.02764245495200157, -0.009275127202272415, -0.011009556241333485, -0.008265635930001736, -0.003939727321267128, -0.003058962756767869, -0.0079268803820014, -0.009281902574002743, -0.034417565912008286, 0.000268675503320992, 0.04146368056535721, -0.005030520260334015, 0.011937746778130531, 0.002103672130033374, -0.0002587245835456997, -0.006355054676532745, 0.01789984479546547, -0.021734558045864105, 0.004745965823531151, -0.006287303287535906, 0.034065261483192444, 0.008584066294133663, 0.027669554576277733, -0.020311783999204636, 0.011504139751195908, -0.018631557002663612, 0.03330644965171814, 0.03913304582238197, 0.01760173961520195, -0.005013582296669483, -0.017642389982938766, -0.002007126808166504, -0.006914001423865557, 0.005352338310331106, 0.010819853283464909, 0.0026016428600996733, 0.01932261884212494, -0.019756225869059563, 0.01582666113972664, -0.006348279304802418, 0.020203381776809692, -0.012242626398801804, -0.01588086225092411, 0.012960787862539291, 0.012425554916262627, -0.002149404026567936, -0.015149149112403393, -0.024837559089064598, -0.002306925365701318, -0.006853025406599045, -0.016368668526411057, 0.017086831852793694, -0.009153176099061966, -0.011470263823866844, -0.00035061201197095215, 0.006917388644069433, 0.005210060626268387, -0.010365920141339302, -0.0036788855213671923, 0.002989517990499735, 0.002168035600334406, -0.007174842990934849, 0.014864594675600529, 0.016544822603464127, -0.018509604036808014, 0.00998651422560215, 0.02379419095814228, -0.007093541789799929, -0.02302182838320732, 0.021138347685337067, 0.014837494120001793, -0.02239851839840412, 0.004159918520599604, -0.01677517592906952, -0.006192451808601618, 0.049620915204286575, -0.022981178015470505, -0.007201943546533585, -0.00575545709580183, -0.007107092067599297, -0.021626155823469162, 0.006080662366002798, -0.0007909942651167512, 0.004905180539935827, -0.010142342187464237, -0.016490621492266655, 0.024187147617340088, 0.0014862901298329234, -0.01804889738559723, -0.002103672130033374, 0.0155421057716012, 0.026179030537605286, -0.007181618362665176, 0.007574574556201696, 0.004745965823531151, 0.010291394777595997, 0.018563805148005486, -0.023401234298944473, 0.012750759720802307, 0.01409223210066557, 0.01349602174013853, 0.0123578030616045, 0.012019047513604164, 0.01068435050547123, 0.03392975777387619, 0.003858425887301564, 0.00015085209452081472, -0.0292142815887928, 0.0038076126947999, 0.0031470393296331167, 0.0222223661839962, -0.037263114005327225, -0.007323895581066608, -0.02723594754934311, 0.006287303287535906, -0.02127384953200817, 0.0257183238863945, 0.019403919577598572, 0.0024712218437343836, 0.011693842709064484, 0.0042818705551326275, -0.0015083091566339135, 0.020338885486125946, -0.009546131826937199, -0.01682937704026699, -0.003197852522134781, -0.01994592882692814, -0.0012356109218671918, 0.005071171093732119, 0.013875428587198257, 0.018333451822400093, -0.01243232935667038, 0.026328083127737045, -0.0013939791824668646, -0.01487814448773861, 0.015718258917331696, 0.008956697769463062, -0.004024416208267212, -0.0065074944868683815, -0.026748139411211014, 0.03588099032640457, -0.04563714936375618, -0.0009273433825001121, -0.007947205565869808, 0.020081430673599243, -0.013916078954935074, -0.011145058088004589, 0.00983746163547039, 0.015867311507463455, 0.006571858190000057, 0.02042018622159958, 0.04097587615251541, -0.023929694667458534, -0.0005682624760083854, -0.0007101163500919938, -0.003943115007132292, 0.02281857468187809, -0.03333354741334915, 0.0006635374738834798, 0.015094948001205921, 0.0064600687474012375, 0.01662612333893776, 0.017032630741596222, 0.005931610241532326, -0.005433639511466026, 0.0034586943220347166, 0.050244227051734924, -0.002784570911899209, 0.007865904830396175, 0.019485220313072205, -0.025758974254131317, -0.038536835461854935, -0.01875350810587406, -0.012425554916262627, 0.012981113977730274, -0.016287367790937424, 0.02619258128106594, -0.0030928384512662888, 0.0017344285733997822, 0.016138315200805664, 0.01590796187520027, 0.004430923145264387, -0.03842843323945999, -0.02551507018506527, 0.029431084170937538, -0.00952580664306879, -0.009668083861470222, -0.024431051686406136, -0.009356428869068623, -0.003932952415198088, -0.023008279502391815, 0.03130101412534714, -0.020718291401863098, 0.014810393564403057, 0.013888978399336338, -0.026409383863210678, -0.003997315652668476, 0.023306382820010185, 0.03832003101706505, -0.02406519651412964, 0.0424392968416214, 0.006297466345131397, 0.021463552489876747, 0.011029881425201893, -0.03607069328427315, 0.0023035379126667976, 0.01440388709306717, 0.009884887374937534, -0.008753444068133831, -0.014214184135198593, 0.01892966218292713, -0.01441743690520525, -0.010819853283464909, -0.02975628897547722, -0.01083340309560299, 0.006808986887335777, 0.013306318782269955, 0.008678917773067951, -0.007493273355066776, 0.021951360628008842, 0.019444569945335388, -0.010630150325596333, -0.008983797393739223, -0.01331986952573061, -0.03647720068693161, -0.006121313199400902, 0.10444512218236923, 0.018482504412531853, -0.021057046949863434, 0.002721901051700115, 0.008780544623732567, 0.011375412344932556, -0.015962162986397743, -0.03972925245761871, 0.020704740658402443, -0.007737177424132824, 0.015189800411462784, -0.02296762727200985, 0.02326573245227337, 0.0035569334868341684, 0.01037269551306963, -0.014647791162133217, -0.010664025321602821, -0.0025084849912673235, 0.0014896776992827654, 0.001016266760416329, 0.0052642617374658585, 0.002638906007632613, 0.012513631023466587, 0.02050148695707321, -0.03330644965171814, -0.005972260609269142, 0.021558403968811035, -0.015189800411462784, 0.017940495163202286, -0.023401234298944473, 0.00579272024333477, 0.030596403405070305, 0.006392317824065685, 0.023482536897063255, -0.016815826296806335, -0.00877376925200224, 0.010162667371332645, 0.0015896105905994773, -0.008218210190534592, 0.005880796816200018, 0.013983829878270626, 0.007147742435336113, 0.010250743478536606, -0.014661340974271297, 0.001995270373299718, -0.0001427007809979841, -0.0200949814170599, 0.006348279304802418, -0.033414848148822784, 0.008123358711600304, 0.03552868589758873, -0.013902529142796993, 0.004593525547534227, -0.019837526604533195, 0.03008149564266205, -0.007723627146333456, -0.0008346090326085687, 0.003739861538633704, -0.012391678988933563, 0.02788635902106762, -0.007201943546533585, 0.0023831455036997795, 0.00822498556226492, -0.006260203197598457, -0.000224849020014517, -0.019742675125598907, -0.025908026844263077, -0.012005497701466084, -0.015365952625870705, 0.005921447649598122, -0.009627433493733406, -0.013414721004664898, -0.025379568338394165, 0.0044715735130012035, 0.0011856445344164968, 0.0011958071263507009, 0.03200562670826912, -0.009756160899996758, -0.004705314990133047, -0.0003683966933749616, -0.02542021870613098, -0.03552868589758873, 0.0059587107971310616, -0.022615322843194008, -0.013313094154000282, -0.006348279304802418, 0.008231760933995247, 0.012486530467867851, -0.02501371130347252, 0.012378129176795483, -0.0017784667434170842, 0.019512321799993515, -0.010630150325596333, -0.006182289216667414, 0.0009214151650667191, -0.0030572691466659307, -0.005152472294867039, -0.005247323773801327, 0.0013406252255663276, 0.001841136603616178, 0.0015684383688494563, -0.02319798246026039, -0.01745268702507019, -0.010040715336799622, -0.005057620815932751, -0.0187264084815979, 0.0007435684674419463, 0.008597616106271744, -0.01715458184480667, -0.026802340522408485, 0.008143683895468712, -0.028048962354660034, 0.007134192623198032, -0.008909272029995918, 0.0007223962456919253, 0.005138922017067671, 0.015691157430410385, 0.013888978399336338, -0.002830302808433771, -0.002777795772999525, 0.002676169155165553, -0.025975776836276054, 0.009783261455595493, 0.004559650085866451, -0.03704630956053734, -0.019756225869059563, 0.009905212558805943, -0.028292866423726082, 0.014173532836139202, -0.0013863572385162115, 0.016707424074411392, 0.010332045145332813, 0.009952639229595661, -0.019837526604533195, -0.02616547979414463, -0.0033655366860330105, -0.013739925809204578, 0.006893675774335861, -0.010955355130136013, 0.012683008797466755, -0.005972260609269142, -0.009580007754266262, -0.017208782956004143, -0.016070565208792686, -0.0034824074245989323, -0.025975776836276054, -0.02249336987733841, -0.0014219265431165695, 0.008516315370798111, 0.006785274017602205, -0.014498738572001457, -0.03674820438027382, -0.050244227051734924, -0.00869924295693636, -0.007344220764935017, -0.03414656221866608, 0.01727653481066227, -0.00045181525638327, 0.021788759157061577, 0.00859084166586399, 0.03197852522134781, -0.020609889179468155, 0.0070122405886650085, 0.006206002086400986, -0.0014812087174504995, 0.002847240539267659, -0.015867311507463455, -0.03813032805919647, -0.03398396074771881, -0.0117344930768013, 0.020162731409072876, 0.013292768970131874, 0.005769007373601198, 0.0017132563516497612, -0.006266978103667498, 0.044553134590387344, -0.010975680314004421, -0.008197885006666183, -0.010880828835070133, -0.03230373188853264, -0.023712890222668648, -0.0023763703648000956, -0.008096258156001568, 0.003970215562731028, -0.016666773706674576, -0.0006601499044336379, 0.030704805627465248, 0.01506784837692976, 0.016707424074411392, -0.0014998402912169695, 0.020162731409072876, -0.01378057710826397, 0.00785235408693552, -0.006263590417802334, 0.025000160560011864, -0.011077307164669037, 0.013448596000671387, 0.011991946958005428, 0.015054297633469105, -0.006991914939135313, 0.00571141904219985, -0.0017903231782838702, -0.0025220352690666914, -0.029349783435463905, -0.01524400059133768, -0.0062093897722661495, -0.027547603473067284, -0.008482439443469048, 0.029647888615727425, -0.02444460242986679, -0.015813110396265984, -0.01638221926987171, 0.0036179095041006804, -0.033170945942401886, -0.02172100730240345, -0.0032893165480345488, -0.006307628937065601, 0.019160015508532524, -0.022412069141864777, -0.013611199334263802, 0.010630150325596333, -0.01682937704026699, 0.04940411448478699, 0.007933655753731728, 0.025081463158130646, 0.001132290461100638, -0.03254763409495354, 0.0051931231282651424, -0.0006305088172666728, 0.0030928384512662888, -0.018157299607992172, 0.009309003129601479, 0.021558403968811035, -0.0013355438131839037, -0.0010586112039163709, -0.016788726672530174, 0.012256177142262459, -0.03436336666345596, -0.025284716859459877, 0.005426864139735699, -0.00943773053586483, -0.01506784837692976, 0.0026710876263678074, 0.001993576530367136, -0.027628904208540916, 0.018916111439466476, -0.000912946299649775, 0.015257551334798336, -0.011477039195597172, -0.016937779262661934, -0.025501519441604614, -0.010643700137734413, 0.008794094435870647, 0.01573180966079235, 0.041192676872015, -0.020338885486125946, -0.034390464425086975, -0.02486465871334076, -0.0073713213205337524, -0.0016107828123494983, -0.008136908523738384, 0.025853825733065605, -0.013848328031599522, 0.024878209456801414, -0.012771084904670715, -0.003155508078634739, -0.020067879930138588, -0.005708031356334686, -0.021612605080008507, 0.02109769731760025, 0.024458153173327446, 0.023035379126667976, 0.010338820517063141, 0.02192426100373268, 0.013983829878270626, 0.015094948001205921, 0.006229714956134558, -0.005182960070669651, -0.0001129538140958175, 0.003018312156200409, 0.0018479116261005402, 0.011991946958005428, 0.004288645461201668, -0.003855038434267044, -0.023780642077326775, -0.013346970081329346, -0.0026134992949664593, 0.012649132870137691, 0.006527820136398077, -0.03357745334506035, -0.02791345864534378, 0.002904829103499651, -0.029593687504529953, 0.011300886049866676, 0.010765652172267437, 0.01907871477305889, -0.004251382313668728, 0.022466270253062248, -0.04349621757864952, 0.015257551334798336, -0.015271101146936417, 0.013374069705605507, -0.03078610636293888, 0.0035637086257338524, 0.008760219439864159, -0.019458120688796043, 0.006080662366002798, -0.014322585426270962, -0.0025321978610008955, -0.0016344956820830703, 0.0277102068066597, 0.009241252206265926, 0.0075135985389351845, 0.006822537165135145, 0.0023966957814991474, 0.0034366752952337265, 0.012201976031064987, -0.01834700256586075, -0.027832157909870148, 0.010738551616668701, 0.022113963961601257, 0.0022205428685992956, -0.0032334220595657825, -0.02142290212213993, 0.025596370920538902, 0.020460836589336395, 0.006985140033066273, -0.002627049572765827, -0.03211402893066406, 0.01524400059133768, -0.011700617149472237, 0.006236490327864885, 0.01907871477305889, -0.0031182451639324427, -0.03336064890027046, -0.018496055155992508, -0.01932261884212494, -0.0025711548514664173, 0.008482439443469048, -0.0240922961384058, 0.029105879366397858, 0.01612476445734501, -0.0013457065215334296, -0.010291394777595997, -0.004986482206732035, 0.0022866001818329096, -0.010122017003595829, -0.0060908254235982895, -0.03750701621174812, -0.004227669443935156, -0.01118570938706398, 0.03655850142240524, 0.00921415165066719, -0.012405228801071644, -0.010020390152931213, -0.03165332227945328, -0.02596222795546055, -0.019756225869059563, 0.0073035703971982, 0.009878112934529781, 0.033767156302928925, -0.00566738098859787, 0.0031775273382663727, 0.026870092377066612, -0.01730363443493843, 0.010548848658800125, -0.00555559154599905, -0.015135599300265312, -0.0005957863759249449, -0.004634176380932331, -0.007967530749738216, 0.0033553738612681627, -0.01792694441974163, -0.005552203860133886, 0.019688474014401436, -0.022588221356272697, -0.00400070333853364, 0.0063415043987333775, -0.0030691255815327168, -0.0063042412512004375, -0.006717523094266653, 0.0005606404738500714, 0.01165996678173542, -0.006819149944931269, 0.003020005999132991, -0.014200633391737938, -0.005392988678067923, -0.010460772551596165, -0.02601642906665802, -0.02678879164159298, -0.030569303780794144, 0.009966189041733742, -0.013672174885869026, 0.016111215576529503, -0.02104349620640278, -0.01579955965280533, -0.012310377322137356, -0.024105846881866455, 0.03832003101706505, 0.00446818582713604, 0.012466205283999443, 0.03303544223308563, 0.003048800164833665, -0.03262893855571747, -0.0035467708948999643, 0.036992110311985016, 0.012838836759328842, -0.0269649438560009, 0.008441789075732231, -0.02414649724960327, 0.015718258917331696, -0.00753392418846488, 0.008455338887870312, -0.015867311507463455, 0.007676201406866312, -0.015257551334798336, 0.002025758381932974, -0.022805025801062584, 0.03737151622772217, 0.016585472971200943, 5.637104550260119e-05, -0.019932378083467484, 0.017859194427728653, -0.008299511857330799, 0.005762232467532158, -0.02456655353307724, -0.010785977356135845, 0.005623342469334602, -0.0032300343737006187, 0.00011581206490518525, 0.016666773706674576, -0.023956794291734695, -0.010989231057465076, 0.02012208104133606, -0.026382284238934517, 0.010860503651201725, 0.2132263034582138, -0.007445847615599632, 0.005125371739268303, 0.027127547189593315, -0.014498738572001457, 0.0014727398520335555, 0.027019144967198372, -0.005928222555667162, 0.00038978064549155533, -0.008218210190534592, 0.0007753268000669777, 0.014864594675600529, -0.008407913148403168, 0.011388962157070637, 0.01615186594426632, -0.009566457010805607, -0.028048962354660034, 0.003838100703433156, -0.016544822603464127, -0.06206002086400986, -0.007594900205731392, -0.0014422518434002995, -0.010901154018938541, -0.015338852070271969, 0.029403984546661377, 0.011639641597867012, -0.020840242505073547, -0.002095203148201108, 0.02761535532772541, 0.0076152253895998, -0.02663973905146122, -0.012317152693867683, -0.010460772551596165, 0.00890249665826559, -0.015487904660403728, 0.0023204756435006857, 0.009539357386529446, 0.00982391182333231, 0.01632801815867424, -0.013699275441467762, 0.002103672130033374, -0.00381100014783442, 0.02089444361627102, 0.006510882172733545, -0.009356428869068623, 0.025230515748262405, -0.005027132574468851, 0.0004249265184625983, -0.019810425117611885, 0.005416701547801495, -0.03336064890027046, 0.025149213150143623, 0.03384845703840256, 0.013313094154000282, 0.0027930396609008312, -0.010250743478536606, 0.0016599022783339024, 0.005606404971331358, -0.02376709133386612, 0.007649100851267576, -0.004749353043735027, 0.009444504976272583, 0.0036483975127339363, 0.024160047993063927, -0.015203350223600864, 0.014309035614132881, -0.02281857468187809, -0.023861942812800407, 0.009254802018404007, -0.022750824689865112, 0.018333451822400093, -0.028780674561858177, -0.008279186673462391, -0.009593557566404343, -0.0012804961297661066, -0.0016878496389836073, 0.028970377519726753, -0.02329283393919468, 0.0063652172684669495, -0.0005322697106748819, 0.0039634401910007, -0.006805599667131901, -0.002982742851600051, -0.009620658122003078, -0.01234425324946642, -0.021206099539995193, 0.009166725911200047, -0.0010941805085167289, -0.016368668526411057, 0.009552907198667526, -0.018983863294124603, -0.018685758113861084, 0.009485156275331974, -0.001856380607932806, 0.0051084342412650585, -0.0013279218692332506, 0.019783325493335724, 0.026571987196803093, 0.004647726658731699, -0.0055488161742687225, -0.014525839127600193, -0.008868620730936527, 0.039431147277355194, -0.006832699757069349, -0.02388904243707657, -0.004142980556935072, 0.013875428587198257, 0.016815826296806335, 0.013733151368796825, -0.007330670487135649, 0.014647791162133217, -0.011490589007735252, -0.012174875475466251, -0.021151898428797722, 0.0034383691381663084, 0.03048800118267536, -0.02441750094294548, -0.025528620928525925, -0.0025406668428331614, 0.004593525547534227, 0.003567096311599016, -0.010081365704536438, 0.000463248259620741, 0.009031224064528942, -0.01565050706267357, -0.015664057806134224, -0.0384555347263813, 0.02279147505760193, 0.00209689699113369, -0.006612509023398161, 0.03010859526693821, -0.030298298224806786, -0.014065131545066833, -0.0014227734645828605, -0.011524464935064316, 0.011219584383070469, 0.01318436674773693, -0.01762883923947811, 0.009369979612529278, -0.002676169155165553, 0.007350996136665344, -0.0026405996177345514, -0.0022391744423657656, 1.5151372281252407e-05, -0.00046875301632098854, 0.004637563601136208, 0.026097729802131653, -0.016639674082398415, 0.0030877571552991867, -0.00951225683093071, -0.03289994224905968, -0.0003849110216833651, -0.004569812677800655, -0.010108466260135174, 0.0015506536001339555, -0.00822498556226492, -0.028780674561858177, -0.03777801990509033, 0.012229076586663723, 0.013739925809204578, -0.01724943332374096, 0.024322649464011192, 0.023428335785865784, 0.004302195739001036, -0.02331993356347084, -0.007425522431731224, -0.17311765253543854, 0.02601642906665802, 0.010203317739069462, -0.009654534049332142, 0.03308964520692825, 0.018184399232268333, 0.03607069328427315, -0.011253460310399532, -0.00762200029566884, -0.008678917773067951, 0.022263016551733017, 0.01164641696959734, -0.036016494035720825, -0.017818544059991837, -0.005091496277600527, 0.019607173278927803, 0.0025796236004680395, 0.022506920620799065, 0.044498931616544724, 0.0053116874769330025, 0.0022154615726321936, -0.010481097735464573, 0.017791442573070526, 0.002132466295734048, 0.010420121252536774, -0.009180275723338127, 0.0006978365126997232, 0.011754818260669708, 0.004190406296402216, -0.021558403968811035, -0.028726473450660706, 0.0033943308517336845, 0.0027439200785011053, -0.013082739897072315, 0.019119365140795708, 0.011768369004130363, -0.02281857468187809, -0.016870027408003807, -0.005210060626268387, 0.004966156557202339, 0.016910677775740623, -0.004068454261869192, 0.011009556241333485, 1.7784666852094233e-05, 0.006348279304802418, 0.03737151622772217, -0.00614163838326931, 0.0034891823306679726, 0.019254866987466812, -0.025501519441604614, 0.01371960062533617, -0.009403854608535767, 0.018739959225058556, 0.00808948278427124, 0.03934984654188156, 0.014173532836139202, 0.019038062542676926, 0.006703972816467285, -0.01600281335413456, -0.00423105712980032, -0.006924164015799761, -0.021057046949863434, 0.021436452865600586, -0.009993289597332478, 0.0027252885047346354, -0.0046511138789355755, -0.013916078954935074, 0.013191142119467258, -0.02249336987733841, 0.021328050643205643, -0.002662618877366185, 0.028103161603212357, 0.03512217849493027, -0.010453997179865837, 0.0024661405477672815, 0.00044207603787072003, -0.019580071792006493, 0.014241284690797329, 0.0031419580336660147, 1.7295060388278216e-05, -0.04027126356959343, 0.01632801815867424, -0.020664090290665627, -0.014119332656264305, -0.0005420089000836015, 0.015786008909344673, -0.0023357197642326355, -0.02249336987733841, -0.022574670612812042, 0.006646384485065937, 0.010094916447997093, -0.02554216980934143, -0.008482439443469048, -0.006548145320266485, 0.02888907492160797, 0.011869994923472404, 0.011964847333729267, -0.021829409524798393, -0.0007223962456919253, -0.009519031271338463, 0.003040331183001399, -0.016463521867990494, -0.008529865182936192, 0.033767156302928925, 0.024471702054142952, 0.002965805120766163, -0.001915662782266736, -0.0030572691466659307, 0.015786008909344673, 0.0018716244958341122, -0.014539388939738274, 0.009187051095068455, 0.01707328110933304, 0.006243265233933926, 0.008292736485600471, 0.02044728584587574, -0.003753411816433072, -0.018333451822400093, 0.01745268702507019, -0.025135664269328117, 0.06406545639038086, -0.004105717409402132, 0.0004742578021250665, 0.005758844781666994, -0.007750727701932192, -0.02646358497440815, -0.11008200794458389, 0.002974273869767785, -0.0005597936105914414, 0.005223610904067755, 0.01072500180453062, 0.0035535460337996483, -0.009329328313469887, 0.009695184417068958, 0.0011729411780834198, 0.0016488927649334073, -0.026585537940263748, -0.03891624137759209, -0.014986546710133553, -0.009783261455595493, 0.013428270816802979, -0.03130101412534714, -0.014065131545066833, -0.0362061969935894, 0.01632801815867424, 0.02626033127307892, 0.0035569334868341684, -0.017046179622411728, 0.005386213771998882, -0.03615199401974678, 0.04181598871946335, -0.0304609015583992, -0.01302176434546709, 0.006985140033066273, 0.023780642077326775, 0.021937811747193336, -0.029729189351201057, -0.002938704565167427, 0.018604455515742302, 0.006202614400535822, 0.009464831091463566, -0.011869994923472404, -0.026653287932276726, -0.017466237768530846, 0.024336200207471848, -0.027628904208540916, 0.006521044764667749, -0.005569141823798418, 0.014837494120001793, -0.007249369286000729, 0.01682937704026699, 0.00015910925867501646, -0.010216868482530117, 0.016016364097595215, 0.006724298000335693, -0.02266952395439148, -0.02296762727200985, 0.011727717705070972, -0.027452751994132996, -0.007635550573468208, 0.030325399711728096, -0.005010195076465607, 0.028943276032805443, 0.013807677663862705, -0.013367295265197754, -0.009722284972667694, -0.020555688068270683, 0.0146071407943964, -0.006842862814664841, 0.03230373188853264, 0.01855025440454483, -0.0042750951834023, -0.0013694193912670016, -0.028997477144002914, 0.02397034503519535, -0.008367262780666351, -0.02269662357866764, 0.022655973210930824, -0.022263016551733017, 0.008787319995462894, -0.0021663419902324677, 0.02269662357866764, -0.022005561739206314, -0.0010763958562165499, 0.02237141877412796, 0.0044851237908005714, -0.008340162225067616, -0.02002722956240177, 0.011050206609070301, -0.002688025590032339, 0.011382187716662884, -0.003980378154665232, 0.01632801815867424, -0.0024237961042672396, 0.011287335306406021, -0.02062343992292881, 0.0011136590037494898, 0.01955297216773033, -0.014864594675600529, -0.028428368270397186, 0.010813077911734581, 0.02426845021545887, 0.011930971406400204, 0.010352370329201221, 0.0031419580336660147, -0.004878080449998379, -0.029322681948542595, -0.0015498067950829864, -0.057507146149873734, 0.03802192583680153, 0.007323895581066608, 0.013502797111868858, 0.0025034036953002214, -0.0077710528858006, 0.007879454642534256, -0.019038062542676926, -0.016964878886938095, 0.010203317739069462, -0.005724969319999218, 0.03257473558187485, -0.018089547753334045, -0.02344188652932644, -0.025908026844263077, -0.008949922397732735, 0.004776453599333763, -0.018035346642136574, 0.00816400907933712, -0.0022899876348674297, 0.012405228801071644, -0.00023077723744791, 0.017994696274399757, -0.0016827683430165052, -0.01552855595946312, -0.005338788032531738, 0.021233199164271355, 0.0352034792304039, -0.0032960916869342327, -0.02029823325574398, 0.00215617916546762, -0.022534020245075226, -0.006676872260868549, -0.003983765374869108, 0.007574574556201696, 0.014837494120001793, -0.018509604036808014, -0.007439072243869305, 0.02468850649893284, 0.053713083267211914, 0.009383529424667358, -0.010745326988399029, 0.010718226432800293, -0.011951296590268612, 0.009471605531871319, 0.031870122998952866, -0.006402480415999889, 0.018685758113861084, 0.028130263090133667, -0.029295582324266434, 0.012730434536933899, 0.0181030984967947, 0.002049471251666546, -0.020555688068270683, 3.379616100573912e-05, -0.006504107266664505, 0.01385510340332985, -0.004810329061001539, 0.01612476445734501, -0.024403952062129974, 0.013001439161598682, 0.0002695223956834525, 0.0031605896074324846, -0.010785977356135845, 0.03712761029601097, -0.02287277579307556, -0.0015125436475500464, -0.007283244747668505, -0.024078745394945145, -0.02826576493680477, 0.0015633569564670324, 0.0024136335123330355, 0.012689784169197083, 0.012954013422131538, 0.006009523756802082, 0.031490717083215714, 0.01644997112452984, -0.005677543580532074, -0.03008149564266205, -0.002842159243300557, -0.0028167525306344032, -0.008177559822797775, -0.041707586497068405, 0.010630150325596333, 0.021463552489876747, -0.012493305839598179, -0.009390304796397686, 0.002937010722234845, 0.004441085737198591, 0.007906555198132992, 0.024485252797603607, -0.005237161181867123, 0.006338116712868214, -0.019729124382138252, 0.008177559822797775, 0.019986579194664955, -0.015515005216002464, -0.00967485923320055, 0.026842990890145302, 0.02254757098853588, -0.020054329186677933, 0.015623407438397408, -0.003223259234800935, -0.013116615824401379, 0.0013355438131839037, 0.00877376925200224, 0.003101307200267911, -0.02850966900587082, 0.0008460420649498701, 0.01582666113972664, -0.0011814100435003638, 0.008285961113870144, 0.03135521709918976, 0.02643648535013199, -0.01967492327094078, 0.013475696556270123, -0.00021225154341664165, -0.007635550573468208, -0.0005809658323414624, 0.044580232352018356, 0.004410597495734692, 0.02027113363146782, 0.0123578030616045, 0.00869924295693636, 0.01819794997572899, 0.010237193666398525, 0.02853677049279213, 0.007791378069669008, 0.006544757634401321, 0.002937010722234845, 0.022181715816259384, -0.000934118521399796, -0.04512224346399307, 0.012405228801071644, 0.0015074623515829444, -0.04192439094185829, -0.015013647265732288, 0.016395770013332367, -0.02596222795546055, 0.03013569675385952, 0.008651817217469215, -0.007947205565869808, 0.013875428587198257, 0.01852315478026867, 0.007947205565869808, 0.005589467007666826, 0.016856476664543152, 0.009844237007200718, -0.019634272903203964, 0.010318494401872158, -0.015501455403864384, 0.025406667962670326, -0.007981081493198872, -0.014078681357204914, 0.025799624621868134, -0.0042344448156654835, 0.032195329666137695, -0.023658689111471176, -0.01680227741599083, 0.024525903165340424, 0.0030640442855656147, 0.03590809181332588, 0.016612572595477104, -0.000988319399766624, 0.004264932591468096, 0.017466237768530846, 0.0011543096043169498, 0.009369979612529278, -0.02216816507279873, 0.000126292317872867, 0.013089515268802643, -0.006002748850733042, -0.013455371372401714, 0.018536705523729324, -0.008265635930001736, 0.0018021796131506562, -0.007486497983336449, 0.025027262046933174, 0.014864594675600529, -0.012913362123072147, 0.003675498068332672, -0.01331986952573061, -0.013828002847731113, 0.02032533474266529, -0.01712748222053051, -0.009153176099061966, -0.00617212662473321, -0.016558373346924782], "679c948a-9f6c-4fb6-96a3-5140a1d414ea": [-0.006265254225581884, -0.02290896326303482, -0.005282945930957794, 0.013016456738114357, -0.02436680719256401, 0.029573388397693634, -0.0095454016700387, -0.019687823951244354, -0.007733510807156563, -0.01684155873954296, 0.032433539628982544, 0.009482922032475471, 0.044346198439598083, 0.016411148011684418, -0.002334284596145153, 0.002905273111537099, 0.02785174548625946, -0.010315975174307823, 0.056120019406080246, -0.021409466862678528, -0.012009850703179836, 0.0057862489484250546, 0.0017650314839556813, 0.026130102574825287, 0.006688722874969244, 0.026477208361029625, 0.010732501745223999, -0.006858804728835821, 0.009448211640119553, -0.013391329906880856, -0.00864986889064312, -0.0012947035720571876, 0.017271969467401505, -0.008261110633611679, -0.02347821556031704, 0.011537786573171616, -0.002799405949190259, -0.013196950778365135, 0.00651169940829277, -0.017105359584093094, 0.00853879563510418, 0.005557158961892128, -0.0142590943723917, 0.01521710492670536, -0.019576750695705414, 0.02408912219107151, 0.0009233006276190281, -0.0223397109657526, -0.0188131183385849, 0.0018865184392780066, 0.02735191397368908, 0.009253832511603832, -0.022617394104599953, -9.740648238221183e-05, -0.01977112889289856, 0.005696001462638378, 0.01025349646806717, 0.01521710492670536, -0.02297838404774666, 0.028004471212625504, 0.010170191526412964, -0.005071211606264114, -0.0001313577377004549, 0.02324218489229679, -0.04695643112063408, -0.0031204784754663706, -0.01207232940942049, -0.030184295028448105, -0.0014222648460417986, 0.005074682645499706, 0.03870920464396477, 0.00817086361348629, -0.010649196803569794, -0.005598811898380518, 0.028545957058668137, -0.020909635350108147, -0.03218362107872963, 0.005977156572043896, -0.022214751690626144, 0.010364570654928684, 0.0027855215594172478, -0.04987211897969246, -0.014370167627930641, 0.006310378201305866, 0.045012641698122025, -0.016050158068537712, 0.0048525347374379635, 0.030628589913249016, -0.01729973778128624, -0.03312774747610092, 0.002309987088665366, 0.028490420430898666, 0.006247899029403925, 0.0050399717874825, -0.013759261928498745, 0.022756237536668777, -0.018341055139899254, 0.014661736786365509, -0.011503076180815697, -0.026852082461118698, -0.021298393607139587, 0.0027699018828570843, -0.020520877093076706, -0.002490482060238719, -0.03632111847400665, 0.014578430913388729, -0.030850736424326897, -0.012599930167198181, 0.012454145587980747, -0.01269017718732357, -0.012613814324140549, 0.0333498977124691, -0.027865629643201828, -0.07114274054765701, -0.01842436008155346, -0.01297480333596468, 0.02943454682826996, -0.014925536699593067, -0.03687648847699165, -0.010774155147373676, 0.008163921535015106, 0.007233678828924894, 0.014342399314045906, 2.71311764663551e-05, 0.018285518512129784, -0.007712684106081724, 0.016716601327061653, -0.032322462648153305, 0.016647180542349815, -0.0008109252084977925, 0.029156861826777458, 0.0030788257718086243, 0.015536442399024963, -0.0020704842172563076, -0.024394575506448746, 0.001971559366211295, -0.02307557314634323, -0.0019420552998781204, -0.017938412725925446, -0.030961811542510986, 0.027032576501369476, 0.020465340465307236, -0.009913332760334015, -0.032655686140060425, -0.012113981880247593, 0.03060082159936428, 0.007997310720384121, 0.016661064699292183, -0.01966005563735962, -0.009517633356153965, 0.02370036393404007, -0.00946209579706192, 0.007070539053529501, -0.01650833711028099, 0.021659383550286293, -0.008497143164277077, 0.017896760255098343, -0.007056654896587133, -0.01131563913077116, 0.0026675057597458363, 0.009954986162483692, 0.015078263357281685, 0.013849509879946709, -0.0044082398526370525, 0.0063936831429600716, 0.024852754548192024, 0.007525247521698475, -0.013995293527841568, -0.02303392067551613, -0.012120923958718777, -0.0022232106421142817, 0.02678265981376171, -0.034460633993148804, 0.012822077609598637, -0.008990032598376274, 0.008712348528206348, 0.02449176460504532, 0.027490755543112755, -0.025366470217704773, 0.012190345674753189, -0.02987884171307087, -0.009642590768635273, 0.02724084071815014, 0.03093404322862625, -0.002622382016852498, -0.006379798986017704, -0.0049636089242994785, -0.005220466759055853, 0.014161904342472553, 0.0012539186282083392, 0.01897972822189331, 0.009698127396404743, -0.01813279092311859, -0.013231662102043629, -0.6308989524841309, -0.027823977172374725, -0.018452128395438194, -0.022506320849061012, -0.023103341460227966, 0.009330196306109428, 0.013377445749938488, 0.00453666877001524, -0.012572160921990871, -0.003752210410311818, -0.01378703024238348, 0.008996974676847458, -0.010711675509810448, -0.020701372995972633, -0.028490420430898666, -0.008573506027460098, 0.022728469222784042, -0.03432179242372513, 0.004977493081241846, -0.007594668306410313, -0.008295821957290173, 0.016772137954831123, -0.018327170982956886, 0.0012530508683994412, -0.0005957198445685208, 0.001209662645123899, 0.032655686140060425, -7.603780250065029e-05, 0.01567528396844864, 0.031933706253767014, -0.025366470217704773, 0.025616386905312538, 0.021326161921024323, 0.002464449033141136, 0.04853923246264458, 0.003977829124778509, -0.030517516657710075, 0.027171418070793152, 0.0065845912322402, 0.007927889935672283, -0.022534089162945747, -0.019174108281731606, 0.029323473572731018, 0.004095844924449921, 0.013217777945101261, -0.008240284398198128, 0.02549142763018608, -0.021270625293254852, 0.0022249461617320776, 0.008372184820473194, 0.01002440694719553, -0.017258085310459137, -0.023991933092474937, -0.007476652506738901, -0.002535605803132057, 0.010739443823695183, 0.04101398587226868, -0.010170191526412964, 0.004460305906832218, -0.003085767850279808, 0.01002440694719553, 0.026324480772018433, 0.001130696153268218, -0.0012304889969527721, -0.006768557243049145, 0.029573388397693634, -0.00917746964842081, 0.032433539628982544, 0.024783333763480186, -0.023728132247924805, 0.009878622367978096, 0.02606068179011345, 0.002433209680020809, -0.004047250375151634, 0.02167326770722866, 0.007483594585210085, 0.02701869234442711, -0.04734519124031067, -0.0005683852359652519, 0.04126390069723129, 0.007310041692107916, -0.013856451958417892, -0.04670651629567146, -0.015633631497621536, 0.00830970611423254, -0.011051839217543602, -0.006310378201305866, 0.023172764107584953, 0.0023273422848433256, 0.006240956950932741, 0.003410311648622155, 0.0023047805298119783, 0.014689505100250244, 0.012849845923483372, 0.04043084755539894, 0.014647852629423141, 0.00042021460831165314, 0.00025121759972535074, 0.014397935941815376, -0.009524575434625149, -0.02307557314634323, -0.003759152488783002, 0.008524911478161812, -0.013717609457671642, -0.0011914396891370416, -0.007421115878969431, -0.03487716242671013, -0.00652905460447073, 0.04345760866999626, -0.01673048548400402, 0.0005605753976851702, -0.006115999072790146, -0.016772137954831123, -0.00785846821963787, 0.03634888678789139, -0.029795536771416664, 0.016383379697799683, -0.006629715207964182, 0.016605528071522713, -0.011024070903658867, 0.00993415992707014, -0.015286526642739773, 0.01297480333596468, -0.02290896326303482, 0.028962483629584312, 0.04273562878370285, 0.025852417573332787, -0.01700817048549652, -0.00677897036075592, -0.00855962187051773, -0.004501958377659321, 0.0055432748049497604, 0.01936848647892475, 0.007823757827281952, 0.0030215533915907145, -0.02453341707587242, 0.007851526141166687, 0.003648078767582774, 0.01859096996486187, -0.0139814093708992, -0.012044561095535755, -0.0034884102642536163, 0.012225056067109108, -0.009566227905452251, -0.0023984990548342466, -0.03262791782617569, -0.010649196803569794, -0.007969542406499386, -0.02825438790023327, 0.011864066123962402, -0.005758480168879032, -0.0054773250594735146, 9.979282913263887e-05, 0.007407231256365776, 0.011669686995446682, -0.014328515157103539, -0.005782777909189463, 0.011732165701687336, 0.00783764198422432, -0.014016120694577694, 0.02622729167342186, 0.018438244238495827, -0.016883211210370064, 0.004980964120477438, 0.0027161005418747663, -0.0171886645257473, -0.008066731505095959, 0.011655802838504314, -0.003523120889440179, -0.033155519515275955, -0.00102830003015697, -0.009469037875533104, 0.003193370532244444, 0.043374303728342056, -0.015536442399024963, -0.0002670543035492301, -0.011565555818378925, -0.026213407516479492, -0.010593660175800323, 0.02032649889588356, -0.009496806189417839, 0.0004111030721105635, -0.016688833013176918, -0.00465815607458353, 0.01892419159412384, 0.001030903309583664, -0.020812446251511574, -0.0002978599222842604, 0.004755345173180103, 0.030850736424326897, 0.010295148938894272, 0.00465815607458353, 0.00794177409261465, 0.010246554389595985, 0.016688833013176918, -0.0017398663330823183, 0.011725223623216152, 0.015425368212163448, 0.013932814821600914, 0.00960093829780817, 0.004488074220716953, -0.0019975921604782343, 0.032711222767829895, -0.026199523359537125, 0.00745582627132535, -0.039792176336050034, 0.007900121621787548, 0.009337138384580612, 0.020118234679102898, -0.03148940950632095, -0.0034346089232712984, -0.018396591767668724, -0.007948716171085835, -0.01230141893029213, 0.0034762616269290447, 0.042652323842048645, 0.01920187659561634, 0.003413782687857747, -0.003011140273883939, -0.002592878183349967, 0.021034592762589455, -0.028795871883630753, 0.0034918813034892082, 0.0011636711424216628, -0.02150665782392025, -0.01949344575405121, 0.014689505100250244, 0.03026759997010231, 0.018896423280239105, -0.0030649416148662567, 0.014356283470988274, -0.002028831746429205, -0.0013537114718928933, 0.009892506524920464, 0.014036946929991245, 0.0013233397621661425, 0.014606199227273464, -0.01392587274312973, 0.04206918552517891, -0.039458952844142914, -0.0002464449207764119, -0.0060569909401237965, 0.026102334260940552, -0.020076582208275795, -0.014953305013477802, 0.010788039304316044, 0.014509010128676891, 0.0054773250594735146, 0.009066395461559296, 0.014953305013477802, -0.007830699905753136, -0.004425595048815012, -0.01039233896881342, -0.013849509879946709, 0.021548310294747353, -0.03412741422653198, 0.003189899493008852, 0.0063659148290753365, 0.02414465881884098, 0.026921503245830536, -0.006810210179537535, 0.0007432396523654461, 0.004175679292529821, 0.0142590943723917, 0.04487380012869835, -0.003596012946218252, 0.008254168555140495, 0.02004881389439106, -0.015314294956624508, -0.03235023468732834, -0.009517633356153965, -0.0027594887651503086, 0.0047171637415885925, -0.001234827795997262, 0.019285181537270546, -0.0021208145190030336, 0.0052031115628778934, 0.00912193302065134, 0.011155971325933933, -0.001391025260090828, -0.019049150869250298, -0.03076743148267269, 0.021937068551778793, -0.007601610384881496, -0.0017112301429733634, -0.026865966618061066, -0.02195095270872116, -0.002160731703042984, -0.02375590056180954, 0.04581792652606964, -0.028545957058668137, 0.019174108281731606, 0.020701372995972633, -0.012419435195624828, -0.003655020846053958, 0.007365578785538673, 0.018271634355187416, -0.03201701119542122, 0.04162489250302315, 0.001237431075423956, 0.010524238459765911, 0.009489864110946655, -0.023117225617170334, 0.005518977530300617, 0.013141414150595665, 0.012572160921990871, -0.01083663385361433, -0.0016270570922642946, 0.002875769045203924, -0.022922847419977188, -0.006483930628746748, -0.023894742131233215, -0.0035613025538623333, 0.005369721911847591, -0.0028913889545947313, -0.00304064410738647, -0.028060009703040123, 0.01684155873954296, 0.04395744204521179, -0.008163921535015106, 0.0036098973359912634, -0.016244538128376007, -0.02252020500600338, -0.0032176680397242308, 0.10390949994325638, 0.02421407960355282, -0.023714248090982437, -0.010475643910467625, 0.015744704753160477, 0.005029558669775724, -0.023061688989400864, -0.032766759395599365, 0.024561185389757156, -0.00608128821477294, 0.011267044581472874, -0.03607120364904404, 0.025199860334396362, 0.00853879563510418, 0.009087221696972847, -0.008531853556632996, -0.007657147478312254, 0.005355837754905224, -0.006400625687092543, -0.0069212839007377625, -0.0030632060952484608, 0.0016079662600532174, 0.005709885619580746, 0.008920611813664436, -0.032044779509305954, -0.0021954423282295465, 0.025644155219197273, -0.012377781793475151, 0.00712954718619585, -0.020520877093076706, -0.018743697553873062, 0.025283165276050568, 0.017882876098155975, 0.04015316441655159, -0.012579103000462055, -0.013891162350773811, 0.00457832170650363, 0.01752188615500927, -0.007518304977566004, 0.006563764996826649, 0.022825658321380615, 0.010239612311124802, 0.0049254270270466805, -0.019507329910993576, 0.014286862686276436, 0.002848000731319189, -0.013370503671467304, -0.009517633356153965, -0.019729476422071457, 0.002537341322749853, 0.037820614874362946, -0.01593908481299877, -0.017827339470386505, -0.014245210215449333, 0.03146164119243622, 0.006709549576044083, 0.0005471250624395907, -0.00496707996353507, -0.008268052712082863, 0.032877832651138306, -0.003391220699995756, 0.012204229831695557, 0.009510690346360207, -0.0060257515870034695, -0.0010413165437057614, -0.023547638207674026, -0.02453341707587242, -0.011662744916975498, -0.019562866538763046, 0.025630271062254906, 0.0022214751224964857, 0.0029226283077150583, -0.021603846922516823, 0.0030198178719729185, 0.002884446643292904, 0.001416190410964191, 0.02274235337972641, -0.019243529066443443, -0.000513282255269587, -0.0015732557512819767, -0.007559957914054394, -0.03773730993270874, 0.012516624294221401, -0.026477208361029625, -0.021909300237894058, -0.01706370711326599, 0.012329187244176865, 0.012627698481082916, -0.01953509822487831, 0.007525247521698475, -0.0019229644676670432, 0.014009177684783936, -0.012926208786666393, -0.004776171874254942, 0.002979900687932968, -0.007587726227939129, -0.009871680289506912, -0.0016114372992888093, 0.004522784613072872, -0.002639737445861101, 0.01841047592461109, -0.022728469222784042, -0.004311050288379192, -0.014939420856535435, 0.01286373008042574, -0.018438244238495827, -0.0033790720626711845, 0.021242856979370117, -0.015814127400517464, -0.015272642485797405, 0.012787366285920143, -0.007115663029253483, -0.007733510807156563, 0.0043770004995167255, 0.003807747270911932, 0.008045905269682407, 0.020909635350108147, -0.0016869327519088984, -0.0018969315569847822, 0.0005640464369207621, 0.0022041199263185263, -0.03196147456765175, 0.00488724559545517, -0.0029608099721372128, -0.023797553032636642, -0.010468701831996441, 0.00971201155334711, -0.031156189739704132, 0.014272978529334068, 0.007282273378223181, 0.020451456308364868, 0.015286526642739773, 0.013155298307538033, -0.01617511734366417, -0.0387369729578495, 0.002320400206372142, -0.021201204508543015, -0.009718953631818295, -0.01645280048251152, -0.0004000391054432839, -0.006785912439227104, -0.02617175504565239, -0.013613478280603886, -0.016480568796396255, -0.014217440970242023, -0.0223397109657526, -0.020812446251511574, 0.0012053238460794091, 0.0247139111161232, -0.0013163975672796369, -0.002001063199713826, -0.025977374985814095, -0.034627243876457214, -0.014703389257192612, -0.006240956950932741, -0.03559913858771324, 0.0009753664489835501, -0.00421038968488574, 0.033266592770814896, 0.006969878450036049, 0.03323882445693016, -0.021298393607139587, 0.001259125187061727, -0.0012773482594639063, 0.0021416409872472286, -0.0016114372992888093, -0.01041316520422697, -0.026366133242845535, -0.0343773290514946, -0.021909300237894058, 0.03196147456765175, 0.021756572648882866, 0.021381698548793793, 0.0030267599504441023, -0.0037973341532051563, 0.055064816027879715, 0.00903862714767456, -0.012315303087234497, -0.008608216419816017, -0.041874807327985764, -0.032988905906677246, 0.00965647492557764, -0.010628370568156242, -0.01187795028090477, -0.0301009900867939, 0.000849974574521184, 0.04442950338125229, 0.01573082059621811, -0.003564773593097925, -0.01914633996784687, 0.006851862650364637, -0.012905382551252842, -0.0008781769429333508, -0.0034606419503688812, 0.02106236107647419, -0.00018494215328246355, 0.03934787958860397, -0.008726232685148716, 0.006581120193004608, 0.004935840144753456, 0.0018292460590600967, -0.004859476815909147, -0.0020461869426071644, -0.017605191096663475, -0.007990368641912937, 0.009205237962305546, -0.010912996716797352, -0.008136153221130371, 0.018007833510637283, -0.01831328682601452, -0.01847989670932293, -0.00040719815297052264, 0.006383270025253296, -0.025533080101013184, -0.025310933589935303, -0.0050399717874825, -0.004665098153054714, 0.010899112559854984, -0.027171418070793152, -0.0052725328132510185, -0.0033530392684042454, -0.0045436108484864235, 0.04431843012571335, 0.021409466862678528, 0.024005817249417305, 0.005800133105367422, -0.021367814391851425, -0.003210725961253047, -0.007601610384881496, -0.00797648448497057, -0.02544977515935898, 0.02252020500600338, 0.021034592762589455, -0.013266372494399548, 0.008608216419816017, -0.028601493686437607, 0.001746808411553502, -0.02976776845753193, -0.037876151502132416, 0.007955658249557018, -0.004258984699845314, -0.00996887031942606, 0.0011411093873903155, -0.002474862150847912, -0.02224252000451088, 0.010878286324441433, 0.00038680568104609847, 0.012877614237368107, -0.01055200770497322, -0.014009177684783936, -0.021159552037715912, -0.0010595394996926188, 0.021992605179548264, 0.021937068551778793, 0.027643483132123947, -0.014397935941815376, -0.03146164119243622, -0.01791064441204071, -0.01541148405522108, -0.0013424304779618979, -0.006459633354097605, 0.021090131253004074, -0.009364906698465347, 0.01645280048251152, 0.0011168119963258505, -0.006171535700559616, -0.00589385163038969, 0.0055398037657141685, -0.02375590056180954, 0.02325606904923916, 0.008129211142659187, 0.01221117191016674, 0.025422006845474243, 0.017438581213355064, 0.027546292170882225, 0.007615494541823864, 7.240403647301719e-05, -0.004050721414387226, -0.027643483132123947, -0.000590947107411921, -0.004699808545410633, 0.01064225472509861, 0.016633296385407448, -0.005074682645499706, -0.015425368212163448, -0.019187992438673973, 0.008941438049077988, 0.0033027089666575193, -0.002749075647443533, -0.04554024338722229, -0.019410138949751854, 0.0017841223161667585, -0.029351241886615753, 0.008004252798855305, 0.0011940429685637355, 0.013183066621422768, -0.009184411726891994, 0.027435218915343285, -0.02196483686566353, 0.02320053242146969, -0.01496718917042017, 0.015203220769762993, -0.040292005985975266, 0.002315193647518754, 0.008358300663530827, -0.022784005850553513, 0.02167326770722866, -0.02172880433499813, -0.02100682444870472, 0.01566139981150627, 0.01927129738032818, 0.017285853624343872, 0.005296830087900162, 0.013738435693085194, 0.00128862913697958, -0.006883102003484964, 0.01685544289648533, -0.012155634351074696, -0.03668211027979851, 0.023519868031144142, 0.011475307866930962, -0.0008434663759544492, -0.0021954423282295465, -0.018549317494034767, 0.005397490691393614, 0.0002666204236447811, 0.012190345674753189, 0.009295484982430935, -0.027476871386170387, 0.01892419159412384, -0.01803560182452202, 0.008622100576758385, 0.014703389257192612, -0.01667494885623455, -0.02263127826154232, -0.028795871883630753, -0.00616112258285284, 0.004363116342574358, 0.018521549180150032, -0.02049310877919197, 0.01927129738032818, 0.023617058992385864, -0.0010326388292014599, -0.011301754973828793, -0.0158418957144022, -0.005682117305696011, 0.020201539620757103, 0.00019079956109635532, -0.0354880653321743, -0.015994621440768242, 0.0032194035593420267, 0.04612337797880173, 0.007823757827281952, -0.00018223038932774216, -0.003655020846053958, -0.021201204508543015, -0.035849057137966156, -0.014620083384215832, 0.008150037378072739, 0.027101997286081314, 0.030961811542510986, 0.007094836328178644, 0.001976765925064683, 0.02779620885848999, -0.01870204508304596, 0.003214197000488639, 0.0008408630965277553, -0.014314631000161171, -0.014370167627930641, -0.00847631599754095, 0.006029222626239061, 0.006768557243049145, -0.01582801155745983, 0.007039299700409174, 0.009864738211035728, -0.003554360242560506, -0.002287425333634019, 0.0020878396462649107, -0.006667896639555693, 0.013509346172213554, -0.01953509822487831, 0.009114990942180157, 0.022756237536668777, 0.0067130206152796745, 0.005380135495215654, -0.0034328734036535025, -0.0059216199442744255, -0.00969118531793356, -0.015189336612820625, -0.006890044081956148, -0.026019029319286346, 0.007830699905753136, -0.006341617554426193, 0.009920274838805199, -0.017383042722940445, -0.010961592197418213, -0.01274571381509304, -0.017549654468894005, 0.04165266081690788, 0.0012443732703104615, 0.005119806155562401, 0.025699691846966743, 0.010184075683355331, -0.019798897206783295, -0.012613814324140549, 0.022478552535176277, 0.013606535270810127, -0.026296712458133698, 0.013266372494399548, -0.021687151864171028, 0.025741344317793846, -0.007546073757112026, -0.005925090983510017, -0.010197959840297699, -0.0003288824518676847, -0.00411320012062788, 0.012225056067109108, -0.015911316499114037, 0.029851073399186134, 0.01628619059920311, 0.003554360242560506, 0.0009024743339978158, -8.319685002788901e-05, -0.016827674582600594, 0.020146002992987633, -0.00946209579706192, -0.010558949783444405, 0.0026570926420390606, 0.026810429990291595, -0.013349677436053753, 0.01058671809732914, -0.03632111847400665, -0.00467551127076149, 0.004467247985303402, -0.03393303230404854, 0.004991377238184214, 0.20515324175357819, -0.007934832014143467, 0.01807725429534912, 0.010753328911960125, 0.005761951208114624, 0.01925741322338581, 0.02432515285909176, -0.016494452953338623, -5.0601473049027845e-05, -0.011961255222558975, -0.009899448603391647, 0.015425368212163448, -0.0031187429558485746, 0.009066395461559296, 0.0013485049130395055, -0.0092677166685462, -0.04773394763469696, -0.007733510807156563, -0.015425368212163448, -0.05328763648867607, -0.0028219677042216063, -0.014384051784873009, -0.005449556279927492, -0.005827901419252157, 0.021312277764081955, 0.012474971823394299, -0.01836882345378399, -0.015189336612820625, 0.02229805663228035, 0.007969542406499386, -0.0234087947756052, -0.019521214067935944, -0.007198967970907688, 0.005876495968550444, 1.1877516044478398e-05, -0.015647515654563904, 0.005827901419252157, 0.015480905771255493, 0.006143767386674881, -0.005105921998620033, -0.002783786039799452, 0.00013862525520380586, -0.0002549056080169976, -0.008740116842091084, -0.019632287323474884, 0.025741344317793846, -0.0171886645257473, -0.003703615628182888, -0.024227963760495186, 0.005220466759055853, -0.025241512805223465, 0.012231998145580292, 0.039792176336050034, 0.016466684639453888, 0.0035925419069826603, -0.005761951208114624, 0.017480233684182167, 0.021367814391851425, -0.014981073327362537, 0.00921218004077673, -0.015966853126883507, 0.01702205464243889, -0.010003580711781979, 0.010440933518111706, -0.021020708605647087, 0.021701036021113396, 0.0029156862292438745, -0.004495016299188137, 0.006549880839884281, -0.014217440970242023, 0.015994621440768242, -0.029018020257353783, -0.009698127396404743, -0.006140296347439289, -0.0032211390789598227, 0.0028375873807817698, 0.028851410374045372, -0.01628619059920311, 0.00496707996353507, 0.00741417333483696, 0.0027143650222569704, -0.02347821556031704, 0.013134472072124481, -0.00517881428822875, -0.002752546686679125, -0.029795536771416664, 0.0069525232538580894, -0.02156219445168972, -0.009982754476368427, 0.01859096996486187, -0.034738317131996155, -0.021298393607139587, 0.002743869088590145, -0.01864650845527649, -0.0050399717874825, -0.01092688087373972, 0.04048638418316841, 0.01524487417191267, 0.006768557243049145, -0.0024106476921588182, -0.015342063270509243, -0.014925536699593067, 0.03371088579297066, 0.004856005776673555, -0.01353711448609829, -0.00836524274200201, 0.009364906698465347, 0.004630387295037508, 0.018285518512129784, -0.0068483916111290455, 0.012544392608106136, -0.02937901020050049, -0.009760607033967972, -0.018105022609233856, 0.007622437085956335, 0.026699354872107506, -0.01824386604130268, -0.023617058992385864, -0.0028219677042216063, 0.009982754476368427, 0.027476871386170387, -0.021992605179548264, -0.010017464868724346, 0.0185354333370924, 0.006463104393333197, -0.0030701481737196445, -0.032100316137075424, 0.029129093512892723, -0.001900402596220374, -0.004272868856787682, 0.017674611881375313, -0.04956666752696037, -0.006494343746453524, 0.001973294885829091, -0.005866082850843668, 0.009010858833789825, 0.012683235108852386, -0.02089575119316578, 0.03148940950632095, -0.002639737445861101, -0.00027291171136312187, 0.016077926382422447, 0.01768849603831768, 0.0005236954311840236, -0.004609561059623957, -0.0051684011705219746, 0.021687151864171028, -0.026407787576317787, 0.006553351879119873, -0.028934715315699577, -0.024519532918930054, -0.016258422285318375, -0.0006568971439264715, -0.011294812895357609, -0.0015585037181153893, -0.013273314572870731, -0.01373149361461401, -0.035682447254657745, -0.0006369386101141572, 0.025644155219197273, -0.032155852764844894, 0.012113981880247593, 0.025685807690024376, -0.006518641486763954, -0.020062698051333427, -0.01139894500374794, -0.17816230654716492, 0.025394238531589508, 0.02117343619465828, -0.01482834666967392, 0.027490755543112755, 0.016202885657548904, 0.032155852764844894, 0.009128875099122524, 0.0018188328249379992, -0.006143767386674881, 0.026268944144248962, 0.01058671809732914, -0.039681099355220795, -0.040847375988960266, -0.005123277194797993, 0.013717609457671642, -0.0018049486679956317, 0.025310933589935303, 0.03801499307155609, 0.014370167627930641, 0.01960451900959015, -0.008274994790554047, 0.002077426528558135, 0.00453666877001524, 0.002882711123675108, 0.0007245827582664788, -0.004272868856787682, 0.012738771736621857, 0.014092483557760715, -0.031239494681358337, -0.009850854054093361, -0.0006130750989541411, 0.013509346172213554, -0.01835493929684162, 0.025352586060762405, -0.0018587500089779496, -0.009392675012350082, -0.016369495540857315, 0.007198967970907688, -0.00038940898957662284, 0.003616839414462447, -0.00292609934695065, 0.013849509879946709, -0.00760855246335268, 0.007122605107724667, 0.03723747655749321, -0.0008829496218822896, 0.0030163468327373266, 0.004182621371001005, -0.021576078608632088, 0.008656810969114304, -0.0018847829196602106, 0.023006152361631393, 0.006449220236390829, 0.04162489250302315, 0.002332549076527357, 0.021687151864171028, 0.011516960337758064, -0.010322917252779007, -0.01870204508304596, 0.009371848776936531, -0.02027096226811409, 0.025227628648281097, -0.011003244668245316, 0.0060257515870034695, -0.012787366285920143, -0.019979393109679222, 0.0001974162587430328, -0.016411148011684418, 0.01971559226512909, -0.0036897314712405205, 0.015758590772747993, 0.03923680633306503, -0.011461423709988594, -0.0012669351417571306, 0.001596685266122222, -0.011024070903658867, 0.018729813396930695, -0.02106236107647419, -0.007344752550125122, -0.04520701989531517, 0.037654004991054535, -0.020701372995972633, -0.016883211210370064, 0.013627362437546253, 0.030017683282494545, -0.0029625454917550087, -0.012544392608106136, -0.011676629073917866, 0.006928225979208946, -0.009517633356153965, 0.0012218113988637924, -0.011433655396103859, -0.004619974177330732, 0.020576413720846176, 0.018938075751066208, 0.011412829160690308, -0.0185354333370924, 0.013898104429244995, -0.004974022042006254, -0.0011897041695192456, -0.013669014908373356, -0.013245546258985996, 0.03207254782319069, 0.025116553530097008, 0.0048525347374379635, 0.00016650217003189027, 0.0017416018527001143, 0.018743697553873062, 0.003344361437484622, 0.010239612311124802, 0.018882539123296738, 0.01269017718732357, 5.868252264917828e-05, 0.019243529066443443, 0.015453137457370758, -0.0017546183662489057, -0.009989696554839611, 0.021312277764081955, -0.016716601327061653, 0.057924967259168625, 0.005744596011936665, -0.0188131183385849, 0.01044787559658289, -0.012412493117153645, -0.03182263299822807, -0.11662744730710983, -0.009524575434625149, 0.0013936285395175219, 0.0140994256362319, 0.00921218004077673, 0.019812781363725662, -0.010031349025666714, 0.002752546686679125, -0.0004998319200240076, 0.0037105579394847155, -0.01628619059920311, -0.03379419073462486, 0.0047588166780769825, -0.001541148405522108, 0.006730375811457634, -0.042930006980895996, 0.008490200154483318, -0.02987884171307087, 0.011961255222558975, 0.03354427590966225, -0.005473854020237923, -0.023853089660406113, 0.020743025466799736, -0.034516170620918274, 0.028712566941976547, -0.016605528071522713, -0.019507329910993576, 0.007532189600169659, 0.0134468674659729, 0.022825658321380615, 0.0067754993215203285, 0.007074010092765093, 0.011871008202433586, 0.0018622210482135415, 0.0026050268206745386, -0.0025026306975632906, -0.03418295085430145, -0.01656387373805046, 0.023158879950642586, -0.04137497767806053, 0.00025078371982090175, -0.010177133604884148, 0.019965508952736855, -0.005945917218923569, 0.011392002925276756, -0.00679632555693388, -0.029129093512892723, 0.014030004851520061, 0.0052031115628778934, -0.01578635908663273, -0.02050699293613434, 0.009219122119247913, -0.023658711463212967, -0.017369158565998077, 0.023519868031144142, -0.020687488839030266, 0.028490420430898666, -0.0018136262660846114, -0.005636993329972029, 0.0019941211212426424, -0.010517296381294727, 0.0019316421821713448, -0.0009718954097479582, 0.039681099355220795, 0.012537450529634953, 0.006907399743795395, -0.019909972324967384, -0.03729301691055298, 0.027810093015432358, -0.022478552535176277, -0.022492436692118645, 0.017049822956323624, -0.02711588144302368, 0.009503748267889023, -0.0046442714519798756, 0.01920187659561634, -0.027032576501369476, -0.0022718054242432117, 0.01226670853793621, 0.00774739496409893, -7.65259173931554e-05, -0.013842567801475525, 0.019285181537270546, -0.012086213566362858, 0.010121596045792103, 0.005147574469447136, 0.021034592762589455, -0.003904936835169792, 0.008622100576758385, -0.008906727656722069, 0.010079943574965, 0.010753328911960125, -0.01628619059920311, -0.030739663168787956, 0.0003911445091944188, 0.0349326990544796, 0.014245210215449333, 0.004651213530451059, -0.011322581209242344, -0.003602955024689436, -0.0381816066801548, 0.00839995313435793, -0.06086841970682144, 0.02768513560295105, 0.013669014908373356, 0.016605528071522713, -0.01145448163151741, -0.01949344575405121, 0.006896986160427332, -0.01729973778128624, 3.5557975479605375e-06, 0.005859140772372484, -0.02583853341639042, 0.014661736786365509, -0.011037955060601234, -0.01678602211177349, -0.023769784718751907, -0.021825993433594704, -0.0007766485796310008, -0.026421671733260155, 0.013606535270810127, 0.0024019700940698385, -0.0030944454483687878, 0.005664761643856764, 0.02089575119316578, -0.014425705187022686, -0.023339373990893364, -0.007615494541823864, 0.01502272579818964, 0.024783333763480186, -0.003042379627004266, -0.03587682545185089, 0.006459633354097605, -0.02701869234442711, 0.001952468417584896, -0.003936176188290119, -0.0057480670511722565, 0.010572833940386772, -0.012627698481082916, -0.022492436692118645, 0.014953305013477802, 0.0461789146065712, -0.019285181537270546, -0.01617511734366417, -0.0031829574145376682, -0.0333498977124691, 0.015230989083647728, 0.019854435697197914, -0.009663417004048824, 0.0066123600117862225, 0.017757916823029518, -0.01577247492969036, 0.002594613702967763, 0.01813279092311859, -0.012627698481082916, -0.020312614738941193, 0.006556822918355465, -0.01813279092311859, 0.026699354872107506, -0.013821741566061974, 0.003241965314373374, -0.03690425679087639, 0.0027907283511012793, -0.004474190063774586, 0.020395919680595398, 0.0015645780367776752, 0.02095128782093525, -0.014231326058506966, 0.0004555759660433978, -0.014106367714703083, -0.021201204508543015, -0.01927129738032818, 0.0134468674659729, -0.0045540244318544865, 0.011287870816886425, 0.016105694696307182, 0.005033029709011316, 0.010100769810378551, 0.00627566734328866, 0.010732501745223999, -0.03173932805657387, 0.009066395461559296, -0.009642590768635273, -0.011301754973828793, -0.047428496181964874, 0.016411148011684418, 0.0343773290514946, 0.006001454312354326, -0.0036411366891115904, 0.02532481774687767, -0.006417980883270502, 0.006910870783030987, 0.009767549112439156, -0.005886909551918507, -0.0011523902649059892, -0.019632287323474884, -0.00043822071165777743, 0.03393303230404854, -0.00672343373298645, 0.0003082730690948665, 0.03448840230703354, 0.03801499307155609, -0.013384387828409672, 0.018577085807919502, -0.0017094946233555675, -0.0007128679426386952, -0.005324598401784897, -0.005730711854994297, -0.00028874838608317077, -0.011898776516318321, 0.012981745414435863, 0.021409466862678528, 0.00901780091226101, 0.003448493080213666, 0.03015652671456337, 0.017993949353694916, -0.013655130751430988, 0.0139814093708992, 0.006494343746453524, -0.0021902357693761587, -0.0048212953843176365, 0.029240166768431664, 0.01818832755088806, 0.04143051430583, 0.013078935444355011, 0.017508001998066902, 0.01685544289648533, 0.002372466027736664, 0.012183403596282005, 0.017785685136914253, 0.020534761250019073, 0.0005202243919484317, 0.0064040967263281345, -0.00672343373298645, -0.03848705813288689, -0.008670695126056671, -0.012502740137279034, -0.023436563089489937, -0.021825993433594704, 0.007580784149467945, -0.01667494885623455, 0.04101398587226868, 0.011336465366184711, -0.013849509879946709, -0.010572833940386772, -0.004224273841828108, 0.00313783367164433, 0.0027039519045501947, 0.020187655463814735, 0.003205519402399659, -0.026324480772018433, 0.014495125971734524, -0.0037487393710762262, 0.03132279962301254, -0.024408459663391113, -0.0018136262660846114, 0.008358300663530827, -0.0069212839007377625, 0.04370752349495888, -0.028601493686437607, -0.002990313805639744, 0.030684126541018486, 0.014141078107059002, 0.02065971866250038, 0.0006529922247864306, -0.011225392110645771, -0.003191635012626648, 0.02937901020050049, -0.0011654067784547806, 0.00338948518037796, -0.03807053342461586, -0.00853879563510418, 0.01825775019824505, -0.004446421284228563, -0.019798897206783295, 0.007587726227939129, -0.0047171637415885925, 0.007379462942481041, -0.0052343509159982204, 0.012134808115661144, 0.0126346405595541, -0.015230989083647728, 0.01807725429534912, -0.009607880376279354, -0.018604854121804237, 0.016300074756145477, -0.018341055139899254, -0.019021380692720413, -0.002183293690904975, -0.029740000143647194], "c1b4432b-c5f5-4740-95c6-65ea65531886": [-0.0022184010595083237, -0.015577486716210842, -0.011161547154188156, -0.0004192100022919476, -0.01796974427998066, 0.023755667731165886, -0.006825581658631563, -0.01897115260362625, 0.0018863362492993474, -0.014993331395089626, 0.03107152320444584, 0.017496855929493904, 0.027858665212988853, 0.014687344431877136, -0.004610657691955566, 0.0027834326028823853, 0.03246236965060234, -0.003998685162514448, 0.03916625306010246, -0.021140875294804573, -0.0272049680352211, 0.006578706670552492, -0.000265130220213905, 0.02602274715900421, -0.010626071132719517, 0.018331363797187805, 0.012684524990618229, -0.014492626301944256, 0.004516775719821453, -0.007385397795587778, -0.014979422092437744, 0.005069637205451727, 0.010646933689713478, -0.018261821940541267, -0.02357485704123974, 0.016662348061800003, -0.0027277986519038677, -0.022044925019145012, 0.015966923907399178, -0.004781036637723446, 0.005998027976602316, -0.007795697543770075, -0.01897115260362625, -0.012448080815374851, -0.018943335860967636, 0.024548450484871864, 0.0045028673484921455, -0.019513584673404694, -0.03454864025115967, -0.002084532054141164, 0.023602673783898354, 0.005879805888980627, -0.009722020477056503, -0.008289447985589504, -0.018164461478590965, 0.0028129881247878075, 0.010876423679292202, 0.01650935411453247, -0.017594214528799057, 0.026217466220259666, -0.0021592900156974792, -0.003786581102758646, -0.0019315388053655624, 0.017663756385445595, -0.04400639981031418, -0.009617706760764122, 0.0018950290977954865, -0.0078652398660779, -0.004182972479611635, -0.01002105325460434, 0.049847956746816635, 0.014840337447822094, -0.0008918806561268866, -0.005911099724471569, 0.03357504680752754, -0.025939296931028366, -0.026829440146684647, -0.0014473501360043883, -0.01702396757900715, 0.01170397736132145, 0.0004161675169598311, -0.04809549078345299, -0.01144667062908411, 0.01941622421145439, 0.041558507829904556, -0.013637254945933819, 0.0013039191253483295, 0.026120107620954514, -0.009728974662721157, -0.023978203535079956, 0.006151020992547274, 0.04573104903101921, 0.0033154315315186977, 0.012197728268802166, -0.01187087967991829, 0.012712341733276844, -0.023129785433411598, 0.018998971208930016, -0.01536885928362608, -0.030292648822069168, -0.019889112561941147, -0.01304614543914795, -0.021349502727389336, -0.0056398846209049225, -0.02618964947760105, 0.0025469886604696512, -0.01021577138453722, -0.0027695242315530777, 0.01234376709908247, -0.017955835908651352, 0.0024287665728479624, 0.027218876406550407, -0.024200737476348877, -0.05785923823714256, -0.008338128216564655, -0.011523167602717876, 0.03218419849872589, -0.009374309331178665, -0.018943335860967636, 0.0004076920449733734, -0.004450710490345955, 0.014353541657328606, 0.004812330938875675, -0.0006528288358822465, 0.02344968169927597, -0.02389475144445896, 0.025786304846405983, -0.027121517807245255, 0.00853980053216219, -0.005980642046779394, 0.03134969249367714, 0.008783198893070221, 0.017037875950336456, -0.013213046826422215, -0.01741340570151806, 0.0151741411536932, -0.006554366555064917, -0.003101588925346732, -0.01746903918683529, -0.02109915018081665, 0.03410356864333153, 0.00046245663543231785, -0.00019276270177215338, -0.022962884977459908, -0.009888922795653343, 0.0383039265871048, 0.005462551489472389, 0.02413119561970234, -0.029625041410326958, -0.0051217940635979176, 0.02435373142361641, -0.02607838250696659, -0.001021403237245977, -0.015285409055650234, 0.012448080815374851, 0.0006450053188018501, 0.01728822849690914, 0.0011830892181023955, -0.019499676302075386, 0.00415515573695302, 0.015132416039705276, 0.011467534117400646, 0.013317360542714596, -0.007183725014328957, 0.014089280739426613, 0.020236823707818985, 0.010876423679292202, 0.0002486139128450304, -0.018776435405015945, -0.020807070657610893, -0.0012500237207859755, 0.018595624715089798, -0.04728879779577255, 0.017719391733407974, -0.008741473779082298, 0.02222573570907116, 0.028192469850182533, 0.026120107620954514, -0.016815340146422386, 0.013978012837469578, -0.031321875751018524, -0.005160042550414801, 0.02367221564054489, 0.0383039265871048, 0.0036614048294723034, -0.0011109390761703253, -0.006206654943525791, -0.0012882720911875367, 0.00235053151845932, 0.006450053304433823, 0.012907060794532299, 0.017149144783616066, -0.020459359511733055, -0.007294992450624704, -0.6235445141792297, -0.02407556213438511, -0.01717696152627468, -0.027914300560951233, -0.01948576606810093, 0.00470106303691864, 0.012941831722855568, 0.0021453816443681717, -0.012003010138869286, -0.005459074396640062, -0.0027990797534585, 0.005479937419295311, -0.008734519593417645, -0.012218590825796127, -0.025007430464029312, -0.013393856585025787, 0.007698338478803635, -0.023435773327946663, 0.01578611321747303, -0.00895705446600914, -0.002999013988301158, 0.007893056608736515, -0.009096140041947365, -0.003689221804961562, -0.00046115272562019527, -0.006039753090590239, 0.03310215845704079, -0.00257480563595891, 0.01674579828977585, 0.03107152320444584, -0.011585756205022335, 0.01885988563299179, 0.02004210650920868, 0.0016768400091677904, 0.044785276055336, 0.006147543899714947, -0.017107417806982994, 0.03157222643494606, 0.0060814786702394485, 0.02198929153382778, -0.01870689168572426, -0.013143504038453102, 0.030292648822069168, 0.00492707546800375, 0.0007067241240292788, 0.001969787059351802, 0.032490186393260956, -0.009443851187825203, 0.008797107264399529, -0.005796355195343494, 0.007879148237407207, -0.010500894859433174, -0.03902716934680939, -0.007013346068561077, 0.01248285174369812, 0.01791410893201828, 0.039500053972005844, -0.010639979504048824, 0.0028825304470956326, -0.00010317259875591844, 0.013080916367471218, 0.016690164804458618, 0.012614982202649117, -0.005027912091463804, -0.01774720847606659, 0.015521853230893612, -0.014409175142645836, 0.028345461934804916, 0.010987691581249237, -0.016272909939289093, 0.007434077560901642, 0.02463190071284771, -0.008379853330552578, -0.013226955197751522, 0.022267460823059082, 0.0013082654913887382, 0.041502874344587326, -0.025104789063334465, -0.00352579727768898, 0.04242083430290222, 0.014110143296420574, -0.01415882259607315, -0.0396113246679306, -0.02122432552278042, 0.011231089942157269, -0.0031867781654000282, -0.008205997757613659, 0.0269267987459898, -0.0006389203481376171, 0.0019680485129356384, 1.6964530004770495e-05, 0.0058763287961483, 0.013386902399361134, 0.008435486815869808, 0.03365849703550339, 0.010820790193974972, 0.008073867298662663, -0.0006632601725868881, 0.008018232882022858, -0.009812425822019577, -0.020083831623196602, -0.03440955653786659, -0.0001036072353599593, -0.032657086849212646, 0.002447890816256404, -0.004238606430590153, -0.02317151241004467, -0.009506439790129662, 0.046092670410871506, -0.012448080815374851, -0.006067570298910141, -0.003054647706449032, 0.0004633259086403996, -0.012211636640131474, 0.01913805492222309, -0.020125556737184525, 0.02272644080221653, -0.009464713744819164, 0.02379739284515381, -0.011655298061668873, 0.02172503061592579, -0.012434172444045544, 0.0005580773577094078, -0.01413796003907919, 0.03363068029284477, 0.03749723732471466, 0.01256630290299654, -0.025257783010601997, -0.0134633993729949, -0.0040612732991576195, -0.006161452271044254, 0.012886197306215763, 0.014909880235791206, 0.014895971864461899, -0.015716571360826492, -0.0007375835557468235, 0.022142285481095314, 0.010146229527890682, 0.016384178772568703, -0.0205428097397089, -0.007420168723911047, -0.005170473828911781, 0.024562358856201172, -0.004951415583491325, 0.010146229527890682, -0.03357504680752754, -0.022795982658863068, 0.002020205371081829, -0.039388787001371384, -0.0038143980782479048, -0.012747112661600113, -0.007315855473279953, 0.0024183352943509817, -0.008324219845235348, 0.022017108276486397, -0.0069611892104148865, -0.00026100114337168634, 0.009089184924960136, -0.004572409670799971, -0.01354685053229332, 0.014659527689218521, 0.008525892160832882, -0.017371678724884987, 0.017274320125579834, 0.011488396674394608, -0.01954140141606331, -0.00870670285075903, 0.009499485604465008, 0.004395076539367437, -0.03677399456501007, 0.008720611222088337, -0.010702568106353283, 0.009979327209293842, 0.03346377983689308, -0.010327039286494255, -0.0030337851494550705, -0.005549479741603136, -0.03538314998149872, -0.019889112561941147, 0.012302041985094547, 0.0005811132723465562, 0.007607933133840561, -0.014068418182432652, -0.00036792250466533005, 0.0194301325827837, -0.0073714894242584705, -0.016092099249362946, 0.008671930991113186, -0.00034553854493424296, 0.03296307474374771, 0.00895705446600914, 0.00601541344076395, 0.017204778268933296, 0.0041725412011146545, 0.005698995664715767, -0.01144667062908411, 0.030153563246130943, 0.024325914680957794, 0.008157317526638508, 0.021794572472572327, 0.011356266215443611, -0.006752562243491411, 0.03084898740053177, -0.014882063493132591, 0.012183819897472858, -0.02648172713816166, 0.012420264072716236, 0.001768983551301062, 0.027997750788927078, -0.040167663246393204, -0.002460060641169548, -0.032545819878578186, -0.008185135200619698, -0.015062873251736164, -0.00438116816803813, 0.04706626385450363, 0.00940212607383728, 0.0114744883030653, -0.021905841305851936, -0.015827838331460953, 0.0202646404504776, -0.027455320581793785, 0.013532941229641438, -0.0024009495973587036, -0.019457949325442314, -0.028512364253401756, 0.00895705446600914, 0.029040886089205742, 0.02132168412208557, -0.00862325169146061, 0.01680143177509308, 0.0030337851494550705, -0.011940421536564827, 0.01107809692621231, 0.016606712713837624, -0.003002491081133485, 0.01116850133985281, -0.004485481884330511, 0.02344968169927597, -0.030904620885849, -0.007941736839711666, -0.0050661601126194, 0.02161376364529133, -0.016300726681947708, -0.017775025218725204, 0.005858943331986666, 0.012573257088661194, -0.000811906938906759, 0.014576076529920101, 0.01097378320991993, 0.007253267336636782, -0.007656612899154425, -3.4119217161787674e-05, -0.016161642968654633, 0.019291048869490623, -0.03240673616528511, 0.01337994821369648, 0.005765060894191265, 0.02300461009144783, 0.0266486294567585, 0.008567617274820805, 0.0033310786820948124, 0.022907251492142677, 0.014478717930614948, 0.048846546560525894, -0.004951415583491325, -0.003991730976849794, 0.014882063493132591, -0.00709679676219821, -0.020445451140403748, -0.01234376709908247, 0.00650916388258338, 0.01913805492222309, -0.002048022346571088, 0.012392447330057621, 0.027789123356342316, -0.0016942255897447467, 0.007135045249015093, 0.023533131927251816, -0.0035918625071644783, -0.013338223099708557, -0.020306367427110672, 0.02557767741382122, -0.006769947707653046, -0.005476460326462984, -0.03799794241786003, -0.01965266838669777, 0.0026739034801721573, -0.020848797634243965, 0.04489654302597046, -0.012747112661600113, 0.011384082958102226, 0.010187954641878605, -0.015271500684320927, -0.007802651729434729, 0.0024583220947533846, 0.014033646322786808, -0.04192012920975685, 0.03129405900835991, 0.00021090891095809639, -0.001980218570679426, 0.004770605359226465, -0.017552489414811134, 0.014353541657328606, 0.027566587552428246, 0.0026339166797697544, -0.004165587015450001, -0.017163053154945374, 0.014631710946559906, -0.023547040298581123, -0.00538605498149991, -0.017830658704042435, -0.0018706892151385546, -0.0003583604411687702, -0.01351903285831213, -0.0038665547035634518, -0.015911290422081947, 0.005744198337197304, 0.030515184625983238, -0.0009866320760920644, 0.0016681471606716514, -0.010758201591670513, -0.0154523104429245, 0.0005276526208035648, 0.10386845469474792, 0.014165776781737804, -0.02198929153382778, -0.007176770828664303, 0.01813664473593235, -0.004353351425379515, -0.03318560868501663, -0.03933315351605415, 0.03274054080247879, 0.0039882538840174675, 0.0165649875998497, -0.01863734982907772, 0.021683305501937866, 0.0016281603602692485, 0.020389817655086517, -0.0064430986531078815, -0.006387465167790651, -0.010048869997262955, -0.014993331395089626, 0.0025313415098935366, -0.014617802575230598, -0.007552299182862043, 0.004878396168351173, 0.019958654418587685, -0.029402505606412888, -0.0036405420396476984, 0.03351941332221031, 0.001995865488424897, 0.011829153634607792, -0.005441688932478428, -0.009269995614886284, 0.030515184625983238, 0.02783084847033024, 0.029402505606412888, -0.02385302633047104, -0.01870689168572426, 0.004322057124227285, 0.011982147581875324, -0.005660747643560171, -0.0005193944671191275, 0.022309185937047005, 0.009082230739295483, 0.006060616113245487, -0.02709370106458664, 0.01553576160222292, 0.011620527133345604, -0.01741340570151806, 0.0060536619275808334, -0.022698624059557915, 0.017274320125579834, 0.04612048715353012, -0.012239454314112663, -0.021182600408792496, -0.011001599952578545, 0.03190603107213974, 0.0001610340113984421, 0.0036092479713261127, -0.019513584673404694, -0.007677475456148386, 0.04539724811911583, -0.005233061965554953, 0.0015768727753311396, 0.010897286236286163, -0.005393009167164564, 0.00028425437631085515, -0.016050374135375023, -0.00772615522146225, -0.012545440346002579, -0.014270090498030186, 0.012434172444045544, 0.0011717886663973331, -0.012308996170759201, -0.010792972519993782, 0.01027140486985445, 0.005900668445974588, 0.001623813877813518, 0.025841938331723213, -0.017427314072847366, 0.016439812257885933, -0.003268490545451641, -0.010570437647402287, -0.0263704601675272, -0.0077331094071269035, -0.026287008076906204, -0.018901610746979713, -0.006397896446287632, 0.0046176123432815075, 0.004975755233317614, -0.012934877537190914, 0.006683019921183586, -0.005991073790937662, 0.0036440191324800253, -0.0060536619275808334, -0.002778216963633895, 0.014589984901249409, -0.00884578749537468, -0.0027121517341583967, 0.011377128772437572, 0.011071142740547657, -0.007322809658944607, 0.0020149897318333387, -0.040835268795490265, -0.01079992763698101, -0.02363049052655697, 0.010626071132719517, -0.019110238179564476, -0.0015473173698410392, 0.024103378877043724, -0.0064430986531078815, -0.009422988630831242, 0.0056816102005541325, -0.020306367427110672, -0.017663756385445595, -0.012531531974673271, -0.008039095439016819, 0.005671178922057152, 0.0084215784445405, 0.0043185800313949585, 0.0004994010087102652, -0.005111362785100937, -0.0004798422160092741, -0.03096025437116623, 0.0024165967479348183, 0.0009683772223070264, -0.03883244842290878, 0.0011639650911092758, 0.01623118482530117, -0.027274509891867638, 0.020973972976207733, -0.0048644873313605785, 0.013644209131598473, 0.010688659735023975, 0.0237834844738245, -0.008435486815869808, -0.03301870822906494, -0.0038978487718850374, -0.019694393500685692, -0.011592710390686989, -0.020848797634243965, 0.003922188654541969, -0.006540458183735609, -0.006495255511254072, -0.009200452826917171, -0.027969934046268463, -0.0029555498622357845, -0.021405136212706566, -0.020292459055781364, -0.00302856951020658, 0.012719295918941498, -0.006905555725097656, -0.0039013258647173643, -0.031989481300115585, -0.03096025437116623, -0.006321399938315153, -0.020473267883062363, -0.0453416146337986, -0.0028529749251902103, -0.01531322579830885, 0.027107609435915947, 0.005073114763945341, 0.027302326634526253, -0.03922188654541969, 0.0051635196432471275, 0.009923693723976612, -0.0013039191253483295, 0.0012048212811350822, -0.012503715232014656, -0.024270281195640564, -0.06075219810009003, -0.0192493237555027, 0.03415920212864876, 0.01270538754761219, 0.02363049052655697, -0.0005519923870451748, 0.004888827446848154, 0.04247646778821945, 0.00848416704684496, 0.0017255195416510105, -0.012573257088661194, -0.03357504680752754, -0.03632892295718193, 0.004363782703876495, -0.009269995614886284, -0.013706797733902931, -0.027663948014378548, 0.0015073304530233145, 0.046259570866823196, 0.010243588127195835, 0.007068980019539595, -0.01220468245446682, 0.016926608979701996, -0.0303482823073864, -0.000999671290628612, -0.00538605498149991, 0.014729070477187634, 0.00596325658261776, 0.035466600209474564, -0.01824791356921196, 0.00856066308915615, 0.014409175142645836, 0.0002523083530832082, -0.011863925494253635, -0.007816560566425323, -0.013574667274951935, -0.008108638226985931, 0.01735777035355568, -0.009728974662721157, -0.013887607492506504, 0.019235413521528244, -0.037580687552690506, -0.026342643424868584, -0.00870670285075903, 0.008658022619783878, -0.026300916448235512, -0.012037781067192554, 0.008470258675515652, 0.016551079228520393, 0.011432762257754803, -0.028734900057315826, -0.008873604238033295, 0.003602293785661459, -0.006133635528385639, 0.045091260224580765, 0.016411995515227318, 0.03271272033452988, 0.00610234122723341, -0.022990701720118523, 7.236751116579399e-05, -0.003218072233721614, 0.006808196194469929, -0.01767766661942005, 0.020556719973683357, 0.010925102978944778, -0.014854246750473976, -0.004488958977162838, -0.03246236965060234, 0.014770795591175556, -0.025549860671162605, -0.02215619385242462, 0.02468753419816494, 0.0060536619275808334, -0.01701005920767784, -0.0003644453827291727, -0.0012500237207859755, -0.02685725688934326, 0.014339633285999298, -0.005848511587828398, 0.009610752575099468, -0.006676065735518932, -0.011982147581875324, -0.016551079228520393, 0.02048717625439167, 0.015813929960131645, 0.02344968169927597, 0.012816655449569225, -0.018776435405015945, -0.020125556737184525, -0.020195098593831062, -0.025730669498443604, -0.007343672215938568, -0.005260878708213568, 0.023074151948094368, -0.011794382706284523, 0.022462179884314537, 0.01701005920767784, -0.007110705599188805, -0.006547412369400263, 0.0010553052416071296, -0.021140875294804573, 0.035132795572280884, 0.009506439790129662, 0.019291048869490623, 0.022239644080400467, 0.017761116847395897, 0.016996150836348534, 0.00027034588856622577, 0.0018533036345615983, -0.018039286136627197, -0.022434363141655922, -0.0037239929661154747, -0.012781884521245956, 0.010959874838590622, 0.006505686789751053, 0.005719858221709728, -0.01002105325460434, -0.01673188991844654, -0.0008649330120533705, 0.0034371307119727135, 0.008094729855656624, -0.03471554070711136, -0.03262927010655403, -0.007141999434679747, -0.02820637822151184, 0.021405136212706566, -0.0067004053853452206, 0.023533131927251816, -0.011314540170133114, 0.031099339947104454, -0.036078572273254395, 0.01993083767592907, -0.03207293152809143, 0.02228136919438839, -0.035744767636060715, 0.014882063493132591, 0.00632487703114748, -0.01287924312055111, 0.02176675572991371, -0.026690354570746422, -0.03399230167269707, 0.005984119139611721, 0.019680485129356384, 0.008609343320131302, -0.0006615216261707246, 0.010208817198872566, 0.0006615216261707246, -0.015327134169638157, 0.012142094783484936, -0.025341233238577843, -0.025174330919981003, 0.031210606917738914, 0.015619211830198765, 0.0035883854143321514, 0.009631616063416004, -0.019861295819282532, 0.0005107016186229885, 0.01536885928362608, 0.002583498368039727, -0.007420168723911047, -0.036245472729206085, 0.018206188455224037, -0.008936191909015179, 0.016759706661105156, 0.01723259501159191, -0.021530311554670334, -0.016648439690470695, -0.016370270401239395, -0.003970868419855833, 0.000490708218421787, 0.010897286236286163, -0.019388407468795776, 0.027747398242354393, 0.003068556310608983, -0.014325723983347416, -0.0191519632935524, -0.018484357744455338, -0.01930495724081993, 0.012468943372368813, -0.027789123356342316, -0.035577867180109024, -0.02356094866991043, -0.002423550933599472, 0.04036238044500351, 0.006109295412898064, -0.006915987003594637, -0.0022079695481806993, -0.005573819391429424, -0.030709901824593544, -0.014617802575230598, 0.0009988020174205303, 0.019040696322917938, 0.03040391579270363, 0.008066913112998009, 0.0022983746603131294, 0.02524387277662754, -0.0188737940043211, 0.0068881697952747345, 0.004961846861988306, -0.02344968169927597, -0.007837423123419285, -0.01745513081550598, 0.0058241719380021095, 0.004568932577967644, -0.02222573570907116, 0.012934877537190914, 0.002202753908932209, -0.0011804813984781504, -0.0095759816467762, 0.012726250104606152, -0.0005015741917304695, 0.00768442964181304, 0.0011248475639149547, 0.0157304797321558, 0.024812711402773857, 0.005191336385905743, -0.003169392701238394, -0.020834889262914658, 0.002990321023389697, -0.003068556310608983, -0.003876986214891076, -0.016843156889081, -0.037302516400814056, 0.011968238279223442, -0.005879805888980627, -0.0030059681739658117, -0.02396429516375065, -0.0019367544446140528, -0.011286723427474499, -0.013831974007189274, 0.03407575190067291, 0.0067004053853452206, -0.005765060894191265, 0.014026692137122154, 0.018845977261662483, -0.005667701829224825, -0.01936059072613716, 0.013171321712434292, 0.0036335878539830446, -0.03440955653786659, 0.0021801528055220842, -0.02082098089158535, 0.03749723732471466, -0.023101968690752983, 0.007607933133840561, -0.0235053151845932, 0.005267833359539509, -0.013984967023134232, 0.008970963768661022, -0.01723259501159191, 0.025897571817040443, 0.009909785352647305, -0.003908280283212662, 0.004982709418982267, -0.017663756385445595, -0.005698995664715767, 0.029319055378437042, -0.009304766543209553, -0.014325723983347416, -0.003647496225312352, 0.018845977261662483, -0.008233814500272274, 0.011196319013834, -0.017816750332713127, -0.0035744768101722, 0.008755382150411606, -0.035633500665426254, -0.0018985061906278133, 0.19661013782024384, -0.009652478620409966, 0.009534256532788277, 0.0311827901750803, -0.0007501881336793303, 0.03446519002318382, 0.015354950912296772, -0.004353351425379515, -0.0025974067393690348, -0.004419416654855013, -0.01728822849690914, 0.019054604694247246, -0.003317170077934861, 0.011745703406631947, 0.00912395678460598, 0.0014456115895882249, -0.045425064861774445, -0.010264450684189796, -0.022517813369631767, -0.053603243082761765, -0.0002807772543746978, -0.01306700799614191, 0.0012256839545443654, -0.004986186511814594, 0.0157304797321558, 0.02176675572991371, -0.0084215784445405, -0.012698433361947536, 0.01847044937312603, 0.010201863013207912, -0.019861295819282532, -0.016523262485861778, -0.012733204290270805, 0.0036822676192969084, 0.0005415610503405333, 0.005038343369960785, 0.010403535328805447, 0.001723780995234847, 0.013532941229641438, -0.008275539614260197, 0.020473267883062363, 0.007712246850132942, -0.002496570348739624, 0.0008249461534433067, -0.035244062542915344, 0.019610943272709846, -0.010876423679292202, -0.005264355801045895, -0.02333841286599636, 0.01419359352439642, -0.017705483362078667, 0.027191059663891792, 0.04817894101142883, 0.009868059307336807, 0.01007668673992157, -0.014909880235791206, -0.007110705599188805, 0.020403726026415825, -0.006776902358978987, 0.01796974427998066, -0.02614792436361313, 0.026996340602636337, -0.007872194051742554, 0.026843348518013954, -0.031933847814798355, -0.0008866649586707354, 0.0013343439204618335, 0.009158727712929249, 0.011439716443419456, -0.0325736366212368, -0.0009257825440727174, -0.02502133883535862, -0.008873604238033295, -0.007760926615446806, -0.012663662433624268, -0.002314021810889244, 0.03382540121674538, -0.013254771940410137, 0.002766047138720751, -0.008866650052368641, 0.0017741991905495524, -0.02653736062347889, 0.016439812257885933, -0.002693027490749955, -0.0005476460210047662, -0.03666272759437561, 0.005490368697792292, -0.013338223099708557, -0.015716571360826492, 0.011286723427474499, -0.023129785433411598, -0.030097929760813713, -0.01553576160222292, -0.003362372750416398, -0.0014638664433732629, -0.009117002598941326, 0.020570628345012665, 0.012079506181180477, 0.003431915072724223, 0.008546754717826843, -0.02413119561970234, -0.02876271679997444, 0.041836678981781006, -0.005726812873035669, -0.023241054266691208, 0.0007080280920490623, 0.018512174487113953, 0.009958464652299881, 0.03218419849872589, -0.01965266838669777, 0.028873983770608902, -0.01102941669523716, -0.0009092662367038429, -0.013894561678171158, 0.004054319113492966, 0.02161376364529133, -0.018818160519003868, -0.03185039758682251, -0.01728822849690914, 0.012455035001039505, 0.0340479351580143, -0.0260922908782959, -6.247945566428825e-05, 0.005893714260309935, 0.003145052818581462, -0.007538390811532736, -0.025396866723895073, 0.024979611858725548, 0.0024739692453294992, -0.012037781067192554, 0.025786304846405983, -0.0342426523566246, -0.005685087293386459, 0.0073297638446092606, -0.006989006418734789, 0.02306024357676506, -0.0012804485158994794, -0.023936476558446884, 0.031210606917738914, 0.0003035958216059953, 0.006168406456708908, -0.004283808637410402, 0.021460769698023796, 0.004749742802232504, 0.003023353638127446, 0.0018689506687223911, 0.021182600408792496, -0.02357485704123974, 0.004669768735766411, -0.025563769042491913, -0.03496589511632919, -0.01312264148145914, 0.004419416654855013, -0.01057739183306694, -0.005340852774679661, -0.031766947358846664, -0.018609533086419106, -0.022044925019145012, -0.004645429085940123, 0.016245093196630478, -0.036523643881082535, 0.012322904542088509, 0.026217466220259666, 0.00015255853941198438, -0.011370174586772919, -0.006658680271357298, -0.1780284196138382, 0.01125195249915123, 0.025396866723895073, 4.387144508655183e-05, 0.02450672537088394, 0.011564892716705799, 0.03727469965815544, 0.009019643068313599, -0.019235413521528244, 0.0009805471636354923, 0.013359085656702518, 0.012816655449569225, -0.044590555131435394, -0.020181190222501755, -0.011940421536564827, 0.008831878192722797, 0.0018637350294739008, 0.019388407468795776, 0.037691954523324966, 0.008915329352021217, 0.025049155578017235, -0.017163053154945374, 0.007698338478803635, -0.003970868419855833, -0.005472983233630657, -0.008094729855656624, 0.0036822676192969084, 0.011238044127821922, 0.02826201170682907, -0.033686313778162, -0.001429964555427432, 0.005698995664715767, 0.008324219845235348, -0.03173913061618805, 0.019527493044734, -0.0004789729428011924, -0.013651163317263126, -0.012156003154814243, 0.009290858171880245, 0.006721268408000469, 0.009409080259501934, -0.012051689438521862, 0.012211636640131474, 5.392248567659408e-05, -0.016467629000544548, 0.03566131740808487, -0.00537562370300293, -0.008574572391808033, 0.00348407169803977, -0.016523262485861778, 0.004676722921431065, -0.006547412369400263, 0.01830354705452919, 0.008804061450064182, 0.03899935260415077, -0.006140589714050293, 0.0232271458953619, 0.007267175707966089, -0.026912890374660492, -0.005723335314542055, -0.0060849557630717754, -0.016300726681947708, 0.015146324411034584, 0.004652383271604776, -0.00965943280607462, -0.023018518462777138, -0.01061216276139021, -0.005459074396640062, -0.014562168158590794, 0.01553576160222292, -0.005900668445974588, -0.0025956681929528713, 0.023046335205435753, -0.01723259501159191, -0.0017820227658376098, 0.001475167111493647, -0.0057546296156942844, -0.0009857628028839827, -0.01680143177509308, -0.002362701343372464, -0.0479285903275013, 0.04244865104556084, -0.03235110267996788, -0.01234376709908247, 0.0015255853068083525, 0.03301870822906494, -0.014812520705163479, -0.0040612732991576195, -0.01052871160209179, 0.006022367626428604, -0.0032128565944731236, -0.019694393500685692, -0.014854246750473976, -0.014603894203901291, 0.02854018099606037, 0.02093224786221981, 0.02100178971886635, -0.015911290422081947, 0.006505686789751053, 0.007350626401603222, -0.007406260352581739, -0.012941831722855568, -0.014701252803206444, 0.03402011841535568, 0.03435392305254936, 0.004040410742163658, -0.005166996736079454, 0.007614887319505215, 0.032990891486406326, 0.009054413996636868, 0.01920759677886963, 0.0188737940043211, 0.009395171888172626, -0.000860586587805301, 0.006950757931917906, 0.013762431219220161, -0.005667701829224825, -0.0047636511735618114, 0.020278548821806908, -0.01847044937312603, 0.061809241771698, -0.0009501223685219884, -0.018985062837600708, -0.005688564386218786, -0.016314635053277016, -0.03924970328807831, -0.11827763170003891, -0.013143504038453102, 0.01405450887978077, 0.02161376364529133, 0.004221220966428518, 0.0030981118325144053, -0.0024531064555048943, 0.02614792436361313, -0.005462551489472389, -0.0009822857100516558, -0.007308901287615299, -0.018887702375650406, 0.016439812257885933, -0.0003092461556661874, 0.01606428250670433, -0.03471554070711136, 0.011022462509572506, -0.02457626722753048, 0.005650315899401903, 0.027789123356342316, -0.002402688143774867, -0.014117097482085228, 0.017037875950336456, -0.029485957697033882, 0.026287008076906204, -0.022809891030192375, -0.026718171313405037, 0.012795792892575264, 0.012385493144392967, 0.011057233437895775, 0.005187859293073416, 0.011140684597194195, 0.014784703962504864, -0.009311720728874207, 0.008532846346497536, 4.0638809878146276e-05, -0.008477212861180305, -0.014923788607120514, 0.03173913061618805, -0.04008421301841736, 0.0034875490237027407, -0.0012708865106105804, 0.019012879580259323, -0.0010535665787756443, 0.013275634497404099, -0.008692793548107147, -0.018498266115784645, 0.0019732641521841288, 0.004854056052863598, -0.010486986488103867, -0.019624851644039154, 0.00836594495922327, -0.016384178772568703, -0.010292268358170986, 0.03185039758682251, -0.020834889262914658, 0.022434363141655922, 0.0037309471517801285, -0.007406260352581739, -0.0003372803912498057, -0.007378443609923124, 0.0030163994524627924, 0.006425713188946247, 0.04639865830540657, 0.02396429516375065, -0.0049375067465007305, -0.005740721244364977, -0.029597224667668343, 0.02827592007815838, -0.012997465208172798, -0.01214904896914959, -0.009770700708031654, -0.024339823052287102, 0.024145103991031647, -0.02339404635131359, 0.008498075418174267, -0.010264450684189796, 0.00361620238982141, 0.005243493244051933, 0.002032375195994973, -0.0046176123432815075, -0.021196508780121803, 0.006648248992860317, -0.008268585428595543, 0.008755382150411606, -0.0006128419772721827, 0.019235413521528244, -0.0084215784445405, 0.006585660856217146, -0.009144819341599941, 0.0024617991875857115, 0.005931962747126818, -0.03084898740053177, -0.03140532597899437, 0.0031641770619899035, 0.041113439947366714, 0.012274225242435932, 0.013678980991244316, -0.008386807516217232, 0.005622499156743288, -0.03471554070711136, -0.004843624774366617, -0.06531417369842529, 0.025160422548651695, 0.020292459055781364, 0.018094919621944427, 0.0034093137364834547, -0.007983461953699589, 0.01304614543914795, -0.0064152819104492664, 0.00415515573695302, 0.01144667062908411, -0.020292459055781364, 0.04141942411661148, -0.015076781623065472, -0.02876271679997444, -0.009888922795653343, -0.013512078672647476, -0.006237948779016733, -0.02810901775956154, -0.0014012784231454134, -0.007121136877685785, 0.007225450128316879, -0.004040410742163658, 0.01909632980823517, -0.021683305501937866, -0.02810901775956154, -0.014339633285999298, 0.00592153100296855, 0.029652858152985573, 0.00338671263307333, -0.03271272033452988, 0.004468095954507589, -0.04136379063129425, 0.007037686184048653, -0.0034614705946296453, -0.0009144819341599941, 0.011773520149290562, -0.017900200560688972, -0.022962884977459908, 0.020501084625720978, 0.054715923964977264, -0.018053194507956505, -0.03229546919465065, -0.013665071688592434, -0.026231374591588974, 0.026885073632001877, 0.012858380563557148, 0.0011778735788539052, 0.008039095439016819, 0.0012456773547455668, -0.019054604694247246, 0.00656132074072957, 0.033686313778162, -0.013449491001665592, -0.0194301325827837, -0.01559139508754015, -0.013553804717957973, 0.015007239766418934, -0.008991826325654984, 0.00828249379992485, -0.04353351145982742, 0.01874861866235733, -0.0202646404504776, 0.02892961911857128, 0.011098959483206272, 0.01680143177509308, -0.030042296275496483, -0.0006884692702442408, -0.007468848489224911, -0.017399495467543602, -0.012281179428100586, 0.020348092541098595, -0.0015820885309949517, 0.009847196750342846, 0.001995865488424897, -0.0019019832834601402, 0.014172730967402458, 0.0010344424517825246, 0.003265013452619314, -0.02524387277662754, 0.023519223555922508, -0.003181562526151538, -0.009464713744819164, -0.040112029761075974, 0.015507944859564304, 0.04670464247465134, -0.002974674105644226, 0.008185135200619698, 0.008345082402229309, 0.007552299182862043, 0.02328277938067913, 0.018901610746979713, 0.006258811801671982, -0.011676160618662834, -0.024145103991031647, -0.008880558423697948, 0.013790247961878777, 0.001360422233119607, 0.001562964404001832, 0.028512364253401756, 0.019499676302075386, -0.003096373286098242, 0.031766947358846664, 0.0011770043056458235, -0.02759440429508686, -0.0020862706005573273, -0.0015890427166596055, -0.011606618762016296, -0.022629080340266228, 0.005146134179085493, 0.03599512204527855, -0.003852646332234144, -0.009311720728874207, 0.02798384241759777, 0.01791410893201828, -0.006745608057826757, 0.017872383818030357, 0.01713523454964161, -0.009360400959849358, -0.0073714894242584705, 0.018720801919698715, 0.0194301325827837, 0.040334563702344894, 0.016606712713837624, 0.018665166571736336, 0.006328354123979807, 0.0065926150418818, 0.011495350860059261, 0.024047745391726494, 0.02339404635131359, -0.007461894303560257, 0.0024391980841755867, 0.006091909948736429, -0.04080745205283165, -0.009944556280970573, -0.005900668445974588, -0.04244865104556084, -0.019040696322917938, -0.002141904318705201, -0.017538581043481827, 0.035188429057598114, 0.02059844508767128, -0.020348092541098595, -0.008053004741668701, -0.009833288379013538, 0.01958312653005123, -0.0017759378533810377, 0.012496760115027428, 0.016815340146422386, -0.031655676662921906, 0.01819228008389473, -0.006825581658631563, 0.033046524971723557, -0.014979422092437744, -0.012907060794532299, 0.006098864134401083, 0.0038143980782479048, 0.04281027242541313, -0.022809891030192375, -0.011815245263278484, 0.018734710291028023, 0.0066691115498542786, 0.018108827993273735, 0.002696504583582282, -0.012461989186704159, -0.010431353002786636, 0.03271272033452988, 0.003918711561709642, -0.001360422233119607, -0.018053194507956505, -0.008393761701881886, 0.005504277069121599, -0.01536885928362608, -0.020403726026415825, 0.01892942748963833, 0.007197633385658264, 0.014854246750473976, -0.0008518937975168228, 0.015911290422081947, 0.017941927537322044, -0.008602389134466648, 0.023213237524032593, -0.011884788051247597, -0.03541096672415733, 0.014756887219846249, -0.018331363797187805, -0.004934029653668404, -0.012587165459990501, -0.0192493237555027], "9edd2eb0-12b6-4c60-a46d-cd8e72094039": [-0.004248034209012985, -0.01629607193171978, -0.01643255539238453, 0.007581631653010845, -0.019544368609786034, 0.03174595162272453, 0.0010014441795647144, -0.018165890127420425, -0.012413131073117256, -0.018193187192082405, 0.01828872412443161, 0.012836228124797344, 0.01893019489943981, -0.002422573510557413, -0.003961419686675072, 0.012938590720295906, 0.029807891696691513, -0.002727954415604472, 0.041763804852962494, -0.02022678405046463, -0.008407354354858398, 0.0011908143060281873, -0.0006018048152327538, 0.023693451657891273, -0.011798957362771034, 0.02666878141462803, 0.016705522313714027, -0.013798433355987072, 0.00962887704372406, -0.015572712756693363, -0.00964252557605505, 0.002690421650186181, 0.014685573056340218, -0.002219555201008916, -0.02227402850985527, 0.00039729353738948703, -0.010898169130086899, -0.02227402850985527, 0.015122318640351295, 0.0007510831346735358, 0.005943835712969303, -0.007916015572845936, -0.017606308683753014, -0.00487585598602891, -0.013020480051636696, 0.0349123552441597, 0.011642001569271088, -0.027242010459303856, -0.04097220301628113, 0.0048792678862810135, 0.02251969836652279, 0.0030248048715293407, -0.013928092084825039, 0.004367456771433353, -0.00685485964640975, -0.002316799247637391, 0.014276123605668545, 0.01688295044004917, -0.020213134586811066, 0.02009030058979988, -0.00487585598602891, 0.0004768375656567514, 0.0020916021894663572, 0.01602310687303543, -0.033438339829444885, -0.01842520758509636, 0.001288911560550332, -0.00922625232487917, -0.010768510401248932, -0.0061826808378100395, 0.04618585482239723, 0.00922625232487917, -0.010782158933579922, -0.004118375014513731, 0.024171143770217896, -0.035485584288835526, -0.021646207198500633, -0.011723891831934452, -0.011498694308102131, 0.0075270384550094604, 0.0020131245255470276, -0.04061734676361084, -0.0036406845320016146, 0.021891877055168152, 0.043619971722364426, -0.024389516562223434, 0.006288455333560705, 0.022151194512844086, -0.015477174893021584, -0.026464058086276054, -0.0014074811479076743, 0.017879275605082512, 0.010086094960570335, 0.02354332059621811, -0.0013716543326154351, 0.02318846434354782, -0.02817009575664997, 0.02254699543118477, -0.014644628390669823, -0.033438339829444885, -0.02246510423719883, -0.0005310042761266232, -0.027651458978652954, -0.0018732293974608183, -0.019025733694434166, 0.012808931060135365, -0.007731763180345297, 0.003000920405611396, 0.012481371872127056, -0.0038283488247543573, -0.00605984590947628, 0.021960118785500526, -0.02316116914153099, -0.05896066501736641, -0.014835704118013382, -0.012092395685613155, 0.026300277560949326, -0.006885568145662546, 2.7483201847644523e-05, -0.007977432571351528, -0.00403307331725955, 0.013866675086319447, -0.0060939667746424675, -0.014630979858338833, 0.012570085935294628, -0.006332812365144491, 0.011689770966768265, -0.04299215227365494, 0.02357061766088009, -0.010222578421235085, 0.031309206038713455, -0.0006005252944305539, 0.01645985245704651, -0.020677177235484123, -0.018807360902428627, 0.02871602773666382, -0.023666156455874443, -0.01798846200108528, -0.0234887283295393, -0.022669829428195953, 0.031008942052721977, 0.011723891831934452, 0.0007664374425075948, -0.02774699777364731, -0.01850709691643715, 0.02509922720491886, 0.015681898221373558, 0.009888194501399994, -0.031527578830718994, -0.002340683713555336, 0.025863531976938248, -0.00803884956985712, 0.00302992295473814, -0.005892654415220022, 0.02811550162732601, -0.012017330154776573, 0.01914856769144535, -0.016760114580392838, -0.007144886068999767, -0.007670345716178417, 0.016118643805384636, 0.012447251006960869, 0.01058425847440958, -0.007131238002330065, 0.010324940085411072, 0.025877181440591812, 0.005858533550053835, -0.01131444238126278, -0.025112874805927277, -0.022792665287852287, 0.010980059392750263, 0.02354332059621811, -0.0401260070502758, 0.012297119945287704, -0.007267720997333527, 0.014863001182675362, 0.03835172951221466, 0.031445689499378204, -0.006517064291983843, 0.010945938527584076, -0.0270099900662899, -0.015054076910018921, 0.033110782504081726, 0.015504471026360989, -0.014057750813663006, -0.00868714414536953, -0.012283471412956715, -0.014071399345993996, 0.009703942574560642, 0.007431500591337681, 0.007445148658007383, 0.017278749495744705, -0.02060893550515175, -0.012611031532287598, -0.6341546773910522, -0.014876648783683777, -0.015327042900025845, -0.019912872463464737, -0.01834331825375557, -0.00930814165621996, 0.011505519039928913, 0.004770081490278244, -0.002693833550438285, -0.00039857305819168687, -0.0036475087981671095, 0.008223102428019047, 0.0016983605455607176, -0.015122318640351295, -0.025836234912276268, -0.009779008105397224, 0.005432024132460356, -0.03231918066740036, 0.009608404710888863, -0.018698174506425858, -0.01203780248761177, 0.005998428910970688, -0.008229926228523254, -0.00113963324110955, -0.012310768477618694, -0.014003157615661621, 0.02827928215265274, 0.0010398300364613533, 0.020909199491143227, 0.03261944279074669, -0.02841576561331749, 0.03065408580005169, 0.026818914338946342, 0.013859850354492664, 0.047960132360458374, -0.011471398174762726, -0.010270346887409687, 0.03444831445813179, 0.007322314195334911, 0.014412607066333294, -0.030927052721381187, -0.018602635711431503, 0.013887147419154644, 0.014549089595675468, 0.007868246175348759, 0.011021004058420658, 0.02003570646047592, 0.003934123087674379, 0.003719162195920944, 0.009042000398039818, 0.008762209676206112, 0.0017572188517078757, -0.02731025218963623, -0.01413964107632637, 0.0029429150745272636, 0.0064829434268176556, 0.030735976994037628, -0.00290879444219172, 0.0051454100757837296, 0.004596065729856491, 0.015354339964687824, 0.025959070771932602, -0.008612078614532948, 0.0038215245585888624, -0.01826142892241478, 0.015013132244348526, -0.00764987338334322, 0.02271077409386635, 0.023120224475860596, -0.026859859004616737, 0.012986359186470509, 0.02523571066558361, 0.0019517071777954698, -0.018916547298431396, 0.0380241684615612, -0.0021871402859687805, 0.039607372134923935, -0.013532291166484356, 0.0002753118460532278, 0.03837902471423149, 0.006298691499978304, -0.02208295278251171, -0.03794227913022041, -0.029917078092694283, 0.02116851694881916, -0.006308927666395903, -0.010836752131581306, 0.031200017780065536, -0.007028875406831503, 0.012761162593960762, 0.001679594162851572, 0.012447251006960869, 0.010911817662417889, 0.012501844204962254, 0.03229188174009323, 0.00465407082810998, 0.005015750881284475, 0.007977432571351528, 0.00424120994284749, -0.0023219173308461905, -0.012590558268129826, -0.01299318391829729, 0.009697118774056435, -0.02714647352695465, 0.0007826448418200016, -0.016664577648043633, -0.031418390572071075, -0.01605040393769741, 0.04929766803979874, -0.01925775408744812, -0.009799480438232422, -0.018548041582107544, -0.004323099739849567, -0.006752497516572475, 0.02365250699222088, -0.022233083844184875, 0.020076652988791466, -0.008734913542866707, 0.025808939710259438, -0.0049236249178647995, 0.025030985474586487, -0.014658275991678238, 0.006865095812827349, -0.010502368211746216, 0.03993493318557739, 0.03644096478819847, 0.00994961243122816, -0.017879275605082512, -0.010092919692397118, -0.007786356378346682, -0.011102893389761448, -0.00011931601329706609, 0.003995540551841259, 0.008318640291690826, -0.001650591497309506, -0.008373233489692211, 0.013382160104811192, 0.0055753313936293125, 0.023952770978212357, -0.026832561939954758, -0.017415232956409454, -0.0009502630564384162, 0.018834656104445457, -0.00922625232487917, -0.008850923739373684, -0.023707101121544838, -0.013334390707314014, 0.005053283646702766, -0.027132824063301086, 0.00591312674805522, -0.004036485217511654, -0.005687929689884186, -0.000577493803575635, -0.004787141922861338, 0.033192671835422516, -0.015777437016367912, -0.007861422374844551, 0.01539528463035822, 0.0019653555937111378, -0.011307618580758572, 0.008502892218530178, 0.013798433355987072, -0.0024038071278482676, 0.016528094187378883, 0.012836228124797344, -0.014398958534002304, -0.01596851274371147, 0.026859859004616737, -0.002850789111107588, -0.03919792175292969, 0.0030316291376948357, -0.017251454293727875, -0.0048007904551923275, 0.05047142133116722, -0.013900795951485634, -0.006817326880991459, -0.006711552385240793, -0.026272980496287346, -0.012529141269624233, 0.017783736810088158, -0.0060939667746424675, 0.004722312558442354, -0.010434126481413841, -0.00898058246821165, 0.022874554619193077, -0.0055753313936293125, -0.01906667836010456, 0.004807614255696535, 0.002002888359129429, 0.021373240277171135, 0.00902152806520462, 0.003471786854788661, 0.017224157229065895, -0.0003299050440546125, 0.01640525832772255, -0.012140165083110332, 0.02155066840350628, 0.022792665287852287, 0.010290820151567459, 0.021946469321846962, 0.00797060877084732, 0.002879791660234332, 0.029644111171364784, -0.01119160745292902, 0.005909714847803116, -0.03403886407613754, 0.013034128583967686, 0.0005007220897823572, 0.031582169234752655, -0.03420264646410942, -0.0027194241993129253, -0.0391160324215889, -0.012010505422949791, -0.017647255212068558, 0.008557485416531563, 0.027733350172638893, 0.0080661466345191, 0.009355911053717136, -0.01539528463035822, -0.0019858279265463352, 0.025249358266592026, -0.017797386273741722, 0.003562206868082285, -0.0013528879499062896, -0.01362782996147871, -0.02774699777364731, -0.0002806432021316141, 0.031036239117383957, 0.0263685192912817, -0.00565722119063139, 0.0284703578799963, 0.009581107646226883, -0.013272973708808422, 0.01632336899638176, 0.0361952967941761, -0.010843575932085514, 0.018002109602093697, -0.00902152806520462, 0.043483491986989975, -0.039443593472242355, -0.007411027792841196, 0.005254596471786499, 0.025686103850603104, -0.01723780483007431, -0.0245396476238966, 0.009076121263206005, 0.006186092738062143, 0.009424152784049511, 0.015258802101016045, 0.02423938363790512, -0.00975171197205782, -0.008093442767858505, -0.003562206868082285, -0.0016821532044559717, 0.029453035444021225, -0.033820491284132004, 0.006145148072391748, 0.010359060950577259, 0.02504463493824005, 0.026382166892290115, 0.012692920863628387, -0.004831498954445124, 0.016910245642066002, 0.005384255200624466, 0.06463836133480072, -0.00961522851139307, -0.0054081398993730545, 0.02410290203988552, -0.018411559984087944, -0.022642532363533974, -0.02814279869198799, -0.018220482394099236, 0.0016437673475593328, -0.004343572072684765, 0.027883481234312057, 0.012406306341290474, -0.0028763797599822283, -6.275020132306963e-05, 0.01275433786213398, 0.0005979662528261542, -0.021755393594503403, -0.025713400915265083, 0.029726002365350723, -0.004125199280679226, -0.004739372991025448, -0.02564515918493271, -0.033492933958768845, -0.0036543328315019608, -0.03174595162272453, 0.04689556732773781, -0.018971139565110207, 0.017688199877738953, 0.02221943624317646, -0.013163787312805653, -0.002129135187715292, 0.010850399732589722, 0.017251454293727875, -0.02722836285829544, 0.04921577870845795, 0.0006645016837865114, -0.007472445257008076, 0.01947612687945366, -0.03076327219605446, 0.013593709096312523, 0.014453551732003689, -0.002499345224350691, -0.0022997388150542974, -0.02130499854683876, 0.010195281356573105, -0.01826142892241478, 0.002084778156131506, -0.030845163390040398, 0.004793966189026833, 0.00424120994284749, -0.0047564334236085415, 0.008141212165355682, -0.004759845323860645, 0.011116541922092438, 0.03589503467082977, -0.0072199515998363495, -0.008202629163861275, -0.012399482540786266, -0.014699221588671207, -0.005872182082384825, 0.09892289340496063, 0.013116017915308475, -0.02055434323847294, -0.0012019035639241338, 0.015559064224362373, 0.005043047480285168, -0.0192850511521101, -0.025877181440591812, 0.021632559597492218, -0.005097640678286552, 0.01809764839708805, -0.02049974910914898, 0.02211024984717369, -0.000423737132223323, 0.0052238875068724155, -0.01594121754169464, -0.013034128583967686, 0.0008542984141968191, -0.013859850354492664, 0.012631503865122795, -0.009669821709394455, 0.009055647999048233, 0.000584317953325808, 0.01801575906574726, -0.029180070385336876, -0.007622576784342527, 0.01635066606104374, -0.0011865493142977357, 0.017005784437060356, -0.016118643805384636, -0.014439903199672699, 0.023843582719564438, 0.026737023144960403, 0.02877062000334263, -0.016828356310725212, -0.01506772544234991, 0.010024677962064743, 0.008345936425030231, 0.005039635580033064, 0.001970473676919937, 0.01517691183835268, 0.01174436416476965, 0.009690294042229652, -0.016637280583381653, 0.008537013083696365, 0.012822579592466354, -0.011983209289610386, -5.104785032017389e-06, -0.02612284943461418, 0.006824151147156954, 0.04902470111846924, -0.006237274035811424, -0.013934916816651821, -0.007711290847510099, 0.03065408580005169, -0.0060052527114748955, -0.006639898754656315, -0.007806828711181879, -0.005128349643200636, 0.041408948600292206, -0.00538766710087657, 0.011102893389761448, 0.015640953555703163, -0.0044049895368516445, -0.007458797190338373, -0.017251454293727875, -0.005660633090883493, -0.006397641729563475, -0.014385310001671314, 0.0023867469280958176, -0.02553597278892994, -0.0004708664200734347, -0.011184783652424812, -0.0023202113807201385, 0.0018561690812930465, 0.007840949110686779, 0.022615237161517143, -0.008891868405044079, 0.02354332059621811, -0.016664577648043633, -0.010829927399754524, -0.03791498392820358, 0.007356434594839811, -0.0284703578799963, -0.007738587446510792, 0.002722836332395673, 0.011628353036940098, 0.000981824705377221, -0.019244106486439705, 0.00707664480432868, -0.0004177659866400063, 0.009424152784049511, 0.0012283471878618002, 0.0009135832078754902, 0.011498694308102131, -0.007622576784342527, 0.004285566974431276, 0.0036270362325012684, -0.0035144377034157515, -0.006940161809325218, -0.0001122786125051789, -0.0464315228164196, -0.004377692937850952, -0.019598960876464844, 0.005483205430209637, -0.01710132323205471, -0.0008888456504791975, 0.019694499671459198, -0.01001785323023796, -0.019790038466453552, 0.015463526360690594, -0.01895749196410179, -0.0017111558699980378, -0.008421001955866814, 0.0011234259000048041, 0.005691342055797577, 0.008141212165355682, 0.0031544638331979513, 0.005578743293881416, -0.013259325176477432, -0.0039648315869271755, -0.026136498898267746, 0.005896066315472126, -0.0006414701929315925, -0.03832443058490753, -0.012194758281111717, 0.013122842647135258, -0.033711306750774384, 0.011655650101602077, -0.004681367427110672, 0.007943311706185341, 0.011901319026947021, 0.027596866711974144, -0.013928092084825039, -0.03406616300344467, 0.00033182435436174273, -0.010911817662417889, 0.0051863547414541245, -0.01110971812158823, 0.01917586475610733, -0.0075270384550094604, -0.005309189669787884, 0.001958531327545643, -0.013573236763477325, -0.00899423100054264, -0.019462479278445244, -0.026272980496287346, -0.001919292495585978, 0.020963791757822037, 0.0008376645273528993, -0.004391341004520655, -0.03731445595622063, -0.03376590088009834, -0.00586535781621933, -0.015954865142703056, -0.0330834835767746, 0.008837275207042694, -0.00707664480432868, 0.01837061531841755, 0.007335962262004614, 0.02709187939763069, -0.025713400915265083, 0.004343572072684765, 0.006575069390237331, 0.0011387801496312022, -0.0010466541862115264, -0.02324305847287178, -0.02318846434354782, -0.047523386776447296, -0.02731025218963623, 0.02359791472554207, 0.025222063064575195, 0.015763789415359497, -0.012481371872127056, 0.007028875406831503, 0.033411044627428055, 0.0005459320964291692, -0.008816802874207497, -0.014822055585682392, -0.033656712621450424, -0.019871927797794342, -0.0013673892244696617, -0.006844623479992151, 0.003961419686675072, -0.02833387441933155, -0.001544817234389484, 0.04214595630764961, 0.00655118515715003, 0.00012080879969289526, -0.027760647237300873, 0.01815224252641201, -0.021905524656176567, -0.006285042967647314, 0.0027808414306491613, 0.010734389536082745, 0.003869293723255396, 0.03485776484012604, -0.00430262740701437, 0.008830451406538486, 0.0025914714206010103, -0.0015925862826406956, -0.01015433669090271, 0.011430452577769756, -0.03256484866142273, -0.0091170659288764, 0.006581893656402826, -0.013648302294313908, -0.01950342394411564, 0.019025733694434166, -0.028743324801325798, -0.03027193434536457, -0.004650658927857876, -0.0025181116070598364, -0.03035382367670536, -0.02095014415681362, 0.008223102428019047, 0.003773755393922329, 0.019407885149121284, -0.02133229561150074, -0.010864048264920712, 0.011089245788753033, -0.018684525042772293, 0.05320108309388161, 0.007411027792841196, 0.029316551983356476, 0.0056708697229623795, -0.015231505036354065, 0.0005139439017511904, -0.0017162739532068372, -0.001199344522319734, -0.006523888558149338, 0.017715496942400932, 0.01629607193171978, -0.008939637802541256, 0.0003682909009512514, -0.021400537341833115, 0.011573759838938713, -0.03895225375890732, -0.0270099900662899, 0.024976393207907677, 0.004793966189026833, -0.013962212949991226, 0.003691865596920252, -0.004674543626606464, -0.031309206038713455, 0.010072446428239346, -0.009042000398039818, 0.033356450498104095, -0.00532624963670969, -0.022069305181503296, -0.030108153820037842, 0.015600008890032768, 0.016009457409381866, 0.027214713394641876, 0.031636763364076614, -0.017783736810088158, -0.020718121901154518, -0.0032431776635348797, -0.020704474300146103, -0.0123380646109581, -0.008032025769352913, 0.022506050765514374, -0.013109194114804268, 0.004254858009517193, 0.011266672983765602, -0.004957745783030987, -0.010468247346580029, 0.008100267499685287, -0.008857748471200466, 0.028961697593331337, 0.018356965854763985, 0.006687668152153492, 0.016528094187378883, 0.01820683479309082, 0.019489774480462074, 0.015477174893021584, -0.004531236365437508, -0.005479793064296246, -0.020581640303134918, 0.005520738195627928, -0.006888980511575937, 0.007806828711181879, 0.01014068815857172, -0.009608404710888863, -0.022929146885871887, -0.019080325961112976, 0.004855383653193712, -0.004036485217511654, -0.008618902415037155, -0.04241892322897911, -0.02661418914794922, -0.005599216092377901, -0.01804305613040924, 0.02351602353155613, -0.00601207697764039, 0.023284003138542175, -0.0060939667746424675, 0.01998111419379711, -0.04392023757100105, 0.02520841360092163, -0.02316116914153099, 0.014412607066333294, -0.037669312208890915, 0.005524150095880032, 0.004773493856191635, -0.022287677973508835, 0.009594756178557873, -0.026354871690273285, -0.02836117148399353, -0.0021035445388406515, 0.018848305568099022, 0.008612078614532948, -0.0028320227283984423, 0.008311815559864044, 0.0025146997068077326, -0.007977432571351528, 0.00871444121003151, -0.015668250620365143, -0.031090831384062767, 0.023788990452885628, 0.025303952395915985, 0.0011276910081505775, 0.009908666834235191, -0.018466152250766754, 0.011874022893607616, 0.006206565536558628, 0.014876648783683777, -0.005438848398625851, -0.029016289860010147, 0.013798433355987072, -0.011894495226442814, 0.014398958534002304, 0.008359584957361221, -0.011007355526089668, -0.01953072100877762, -0.02634122222661972, -0.010079271160066128, -0.0027791354805231094, 0.021646207198500633, -0.008625727146863937, 0.021728096529841423, 0.009601580910384655, -0.011580584570765495, -0.021864579990506172, -0.0015473762759938836, -0.011696594767272472, 0.010243050754070282, -0.03027193434536457, -0.033738601952791214, -0.006496591959148645, 0.0012095808051526546, 0.0433197095990181, 0.00717218266800046, 0.00145439722109586, -0.007042523939162493, -0.035376399755477905, -0.02617744356393814, -0.015422581695020199, -0.0038215245585888624, 0.0179611649364233, 0.03240106999874115, 0.006448822561651468, 0.006926513276994228, 0.02515382133424282, -0.01955801621079445, 0.012665624730288982, -0.0017981637502089143, -0.014849352650344372, -0.011075597256422043, 0.0016710639465600252, -0.0018271664157509804, 0.007226775866001844, -0.023365892469882965, 0.013040952384471893, 0.017442530021071434, -0.004695015959441662, -0.003202232765033841, 0.00580394035205245, -0.006151972338557243, 0.007868246175348759, -0.008141212165355682, 0.00764987338334322, 0.02774699777364731, 0.0038658815901726484, 0.0020045943092554808, -0.017770089209079742, -0.008380057290196419, -0.0015277568018063903, -0.005217063240706921, -0.024880854412913322, -0.033738601952791214, 0.023857232183218002, -0.004759845323860645, 0.010004205629229546, -0.01734699122607708, -0.010522840544581413, -0.010823103599250317, -0.03027193434536457, 0.03316537290811539, -0.004848559387028217, 0.0033404219429939985, 0.03038112074136734, 0.010345413349568844, -0.021537020802497864, -0.008809979073703289, 0.01989922486245632, 0.00175380683504045, -0.043510787189006805, 0.01330709457397461, -0.019721796736121178, 0.0322645865380764, -0.014767462387681007, 0.010256699286401272, -0.021373240277171135, 0.0009135832078754902, -0.011874022893607616, 0.007840949110686779, -0.021796338260173798, 0.03021734021604061, 0.002954857423901558, -0.0041832043789327145, -0.009048824198544025, 0.01651444472372532, -0.00711076520383358, 0.013491346500813961, -0.01637796312570572, -0.017783736810088158, 0.012344889342784882, 0.011580584570765495, -0.00827087089419365, 0.00951969064772129, -0.01812494546175003, 0.003719162195920944, 0.0091170659288764, -0.04181839898228645, -0.0009272315073758364, 0.19598962366580963, -0.018138593062758446, 0.003413781523704529, 0.02399371564388275, -0.0056196884252130985, 0.027760647237300873, 0.010468247346580029, -0.008141212165355682, 0.004111551214009523, -0.008277695626020432, -0.008032025769352913, 0.019708147272467613, -0.006595541723072529, 0.010816279798746109, 0.012959063053131104, 0.005336486268788576, -0.041845694184303284, 0.00482808705419302, -0.011601056903600693, -0.06747720390558243, 0.0041832043789327145, -0.013375336304306984, -0.009785832837224007, 0.001970473676919937, 0.015722844749689102, -0.003006038488820195, -0.014849352650344372, -0.006527300458401442, 0.023311300203204155, 0.004152495879679918, -0.026655133813619614, -0.010884520597755909, -0.007144886068999767, -0.0013989509316161275, -0.005213651340454817, 0.011546463705599308, 0.01286352425813675, -0.0017742792842909694, 0.012290296144783497, -0.015791084617376328, 0.0038044641260057688, 0.0037635192275047302, 0.00930814165621996, 0.012624679133296013, -0.03068138286471367, 0.022901851683855057, -0.0010867459932342172, -0.007022051606327295, -0.015736492350697517, 0.004029660951346159, -0.029453035444021225, 0.014549089595675468, 0.03821524605154991, 0.018861953169107437, 0.004275330808013678, -0.020022058859467506, -0.006100791040807962, 0.019435182213783264, -0.016801059246063232, 0.019134920090436935, -0.020049355924129486, 0.020295025780797005, -0.0012564967619255185, 0.026354871690273285, -0.03425723686814308, 0.00250446330755949, -0.003667981131002307, 0.0029190306086093187, 0.026081904768943787, -0.01917586475610733, 0.004077430348843336, -0.014071399345993996, -0.005288716871291399, 0.001958531327545643, -0.015681898221373558, -0.0023679803125560284, 0.021427834406495094, -0.01790657266974449, 0.007779532112181187, -0.0036782172974199057, 0.012017330154776573, -0.02515382133424282, 0.0064385863952338696, -0.011014179326593876, -0.007677169982343912, -0.029889781028032303, 0.0031800544820725918, -0.005691342055797577, -0.02227402850985527, 0.011321266181766987, -0.011341739445924759, -0.023338597267866135, 0.010632026940584183, 0.0010176515206694603, -0.0015030192444100976, -0.012665624730288982, 0.012317592278122902, 0.017224157229065895, 0.0003503774933051318, 0.008380057290196419, -0.01527244970202446, -0.025140171870589256, 0.025249358266592026, -0.003882942022755742, -0.019817333668470383, -0.010113392025232315, 0.004698427859693766, 0.007206303533166647, 0.018029406666755676, -0.011566936038434505, 0.024853557348251343, -0.019134920090436935, -0.010406830348074436, -0.027596866711974144, -0.005677693523466587, 0.02055434323847294, -0.022683478891849518, -0.013545939698815346, -0.023952770978212357, 0.006472707260400057, 0.030899755656719208, -0.018684525042772293, 0.004640422761440277, 0.014903945848345757, -0.009806305170059204, -0.000224983727093786, -0.01699213683605194, 0.020895550027489662, 0.009908666834235191, 0.0019653555937111378, 0.02567245624959469, -0.047960132360458374, -0.008154860697686672, 0.008032025769352913, -0.01793386973440647, 0.026832561939954758, -0.004909976851195097, -0.01989922486245632, 0.04018060117959976, 0.0011481634574010968, 0.0022895026486366987, 0.004230973776429892, 0.022560643032193184, 0.012187933549284935, 0.009328613989055157, 0.0018698173807933927, 0.023256706073880196, -0.023065630346536636, 0.008864572271704674, -0.00424120994284749, -0.04089031368494034, -0.00019736724789254367, -0.004514175932854414, -0.004811026621609926, 0.002054069424048066, -0.014630979858338833, -0.02197376638650894, -0.01920316182076931, -0.005633336491882801, 0.02049974910914898, -0.024826262146234512, 0.01054331287741661, 0.017387935891747475, 0.004770081490278244, -0.013498170301318169, -0.006588717922568321, -0.1739339679479599, 0.016787411645054817, 0.01583203114569187, -0.018807360902428627, 0.02739214152097702, 0.027351196855306625, 0.033574823290109634, -0.00816168449819088, -0.008557485416531563, -0.0013955389149487019, 0.01599580980837345, 0.0013068249681964517, -0.04602207615971565, -0.018916547298431396, -0.009703942574560642, 0.009144362062215805, 0.0010765098268166184, 0.0349123552441597, 0.04078112542629242, 0.006721788551658392, 0.010188457556068897, -0.01015433669090271, 0.015367988497018814, -0.00607349444180727, 0.0002467356971465051, 0.006100791040807962, -0.00465407082810998, 0.01152599137276411, 0.016719169914722443, -0.019517071545124054, -0.011232552118599415, 0.011935439892113209, -0.012815755791962147, -0.02866143360733986, 0.018848305568099022, 0.010481895878911018, -0.00616903230547905, -0.00554803479462862, 0.004176380578428507, 0.009430976584553719, 0.010816279798746109, -0.009703942574560642, 0.013962212949991226, -0.010051974095404148, 0.0022980328649282455, 0.03641366958618164, -0.009813128970563412, -0.00043930471292696893, -0.002647770568728447, -0.016255127266049385, 0.015763789415359497, -0.003630448365584016, 0.027938073500990868, 0.0014595153043046594, 0.03824254125356674, 0.0064385863952338696, 0.018138593062758446, 0.0010005910880863667, -0.01729239895939827, -0.023911824449896812, 0.007424676325172186, -0.010024677962064743, 0.017060376703739166, -0.006035961676388979, -0.004285566974431276, -0.012447251006960869, -0.0095060421153903, 0.007909190841019154, -0.026163794100284576, 0.015586361289024353, -0.0004245901363901794, 0.011990033090114594, 0.02747403271496296, -0.00961522851139307, -0.013839378021657467, 0.00857795774936676, -0.015217856504023075, 0.004292390774935484, -0.010406830348074436, -0.0036031517665833235, -0.03848821297287941, 0.05038953199982643, -0.023720748722553253, -0.014385310001671314, -0.003944359254091978, 0.019912872463464737, -0.004793966189026833, -0.016869300976395607, -0.013109194114804268, 0.0021410773042589426, 0.008666671812534332, -0.025003688409924507, 0.004046721383929253, -0.008850923739373684, 0.029616815969347954, 0.02744673565030098, 0.008905516937375069, -0.0190120842307806, 0.015449877828359604, 0.0051010530441999435, -0.006090554874390364, -0.009458273649215698, -0.011908143758773804, 0.03461209312081337, 0.03376590088009834, 0.009314966388046741, -0.0030623378697782755, 0.0004930449067614973, 0.031773246824741364, 0.005370606668293476, 0.002002888359129429, 0.003279004478827119, 0.015463526360690594, -0.010379533283412457, 0.007567983586341143, 0.02720106579363346, -0.022656181827187538, -0.011908143758773804, 0.018575338646769524, -0.023939121514558792, 0.06332812458276749, -0.004384517204016447, -0.020076652988791466, 0.004882680252194405, -0.02052704617381096, -0.04200947284698486, -0.11824888736009598, 0.002211024984717369, 0.001380184548906982, 0.016364313662052155, 0.010727565735578537, 0.009963260032236576, -0.0091170659288764, 0.01596851274371147, 0.006616014521569014, -0.00012699318176601082, -0.013163787312805653, -0.016418907791376114, 0.014057750813663006, -0.002047245390713215, 0.0203359704464674, -0.022396864369511604, 0.002047245390713215, -0.0050123389810323715, 0.004248034209012985, 0.029589518904685974, -0.006363520864397287, -0.016309721395373344, 0.010577433742582798, -0.029753297567367554, 0.03005356155335903, -0.015559064224362373, -0.027760647237300873, 0.012215230613946915, 0.024089252576231956, 0.01645985245704651, -0.004698427859693766, -0.004357220605015755, 0.019353292882442474, -0.0065682451240718365, 0.010400006547570229, 0.004084254149347544, -0.031773246824741364, -0.005906302481889725, 0.02515382133424282, -0.043756455183029175, 0.012849876657128334, -0.00994961243122816, 0.012747514061629772, -0.007356434594839811, 0.014917594380676746, -0.0030469833873212337, -0.017811033874750137, -0.004978218115866184, 0.007028875406831503, -0.026955395936965942, -0.02739214152097702, 0.00763622485101223, -0.027378493919968605, -0.019107623025774956, 0.027951722964644432, -0.022451456636190414, 0.024867206811904907, 0.015777437016367912, -0.017701847478747368, -0.0037328104954212904, -0.0080661466345191, 0.007056172005832195, 0.004695015959441662, 0.041381653398275375, 0.00581758888438344, -0.010283995419740677, -0.02146877907216549, -0.023393189534544945, 0.03682311996817589, -0.007683994248509407, -0.003882942022755742, 0.01423517893999815, -0.033629417419433594, 0.01815224252641201, -0.020881902426481247, 0.018575338646769524, -0.019489774480462074, -0.006697904318571091, 0.003900002222508192, 0.005766407586634159, 0.003493965370580554, -0.019626257941126823, -0.0012112867552787066, 0.0011976384557783604, 0.023447783663868904, -0.0031169310677796602, 0.018493449315428734, -0.0025146997068077326, -0.002340683713555336, -0.012883997522294521, -0.0038965903222560883, 0.017033081501722336, -0.025549622252583504, -0.01804305613040924, 0.005701578222215176, 0.04602207615971565, 0.016855653375387192, 0.00758845591917634, -0.013661949895322323, -0.008741737343370914, -0.024812612682580948, 0.0013469167752191424, -0.062017884105443954, 0.02822468802332878, 0.007840949110686779, 0.009444625116884708, 0.01637796312570572, -0.01651444472372532, 0.016787411645054817, -0.01898478902876377, -0.0012462605955079198, 0.0133207431063056, -0.006987930741161108, 0.03499424457550049, -0.012310768477618694, -0.020704474300146103, -0.01696483977138996, -0.012310768477618694, -0.0007839243626222014, -0.02515382133424282, 0.006380581296980381, -0.008236750029027462, 0.005988192744553089, -0.0037669313605874777, 0.02617744356393814, -0.013498170301318169, -0.02814279869198799, -0.0034461962059140205, 0.0012965886853635311, 0.030817866325378418, -0.0006380581180565059, -0.02817009575664997, 0.003435960039496422, -0.04020789638161659, 0.007724938914179802, -0.006035961676388979, 0.006100791040807962, 0.012924942187964916, -0.024839909747242928, -0.005213651340454817, 0.0028320227283984423, 0.05112653970718384, 0.0009169952827505767, -0.014071399345993996, -0.004442522302269936, -0.03019004315137863, 0.015695547685027122, 0.017701847478747368, -0.0053126015700399876, -0.0016250009648501873, 0.009908666834235191, -0.02017218992114067, 0.00797060877084732, 0.024867206811904907, -0.00449711550027132, -0.022096600383520126, -0.0007080056820996106, -0.02119581215083599, 0.014057750813663006, -0.012324417009949684, 0.005217063240706921, -0.043483491986989975, 0.011430452577769756, -0.014740166254341602, 0.024758020415902138, 0.0017521007684990764, 0.01214698888361454, -0.020977439358830452, -0.0015465231845155358, -0.010011029429733753, -0.025795290246605873, -0.015040428377687931, 0.0036509206984192133, 0.00712441373616457, 0.005814176518470049, 0.0019005261128768325, 0.010529665276408195, 0.02456694282591343, -0.0029753297567367554, -0.0018561690812930465, -0.02108662575483322, 0.01067979633808136, 0.0039034143555909395, -0.009164834395051003, -0.03668663650751114, 0.005879005882889032, 0.030108153820037842, -0.010597906075417995, 0.004643834661692381, 0.00607349444180727, 0.006749085150659084, 0.0175926610827446, 0.006592129822820425, -0.004903152585029602, -0.008775858208537102, -0.01529974676668644, -0.0002919457037933171, 0.019680852070450783, -0.011348563246428967, 0.0026119437534362078, 0.023393189534544945, 0.024785315617918968, -0.022205786779522896, 0.023202113807201385, 0.002347507979720831, -0.021291350945830345, -0.002811550162732601, -0.0008227367070503533, -0.0123380646109581, -0.02313387207686901, 0.006339636165648699, 0.0301627479493618, -0.0024345158599317074, -0.004961157683283091, 0.0280609093606472, 0.02227402850985527, -0.001094423234462738, 0.007103941403329372, 0.013593709096312523, -0.011955912224948406, -0.0022792664822191, 0.04735960811376572, 0.014453551732003689, 0.03889765962958336, 0.023816287517547607, 0.007554335054010153, 0.006639898754656315, 0.016200534999370575, 0.026013663038611412, 0.033438339829444885, 0.007301841396838427, 0.011232552118599415, 0.008045674301683903, 0.009908666834235191, -0.051317617297172546, 0.005606039892882109, -0.0025505265220999718, -0.04416590556502342, -0.009799480438232422, 0.014808407984673977, -0.0161322932690382, 0.03887036442756653, 0.011034652590751648, -0.01914856769144535, 0.0015925862826406956, -0.010536489076912403, 0.01268609706312418, 0.0018868776969611645, -0.00014927830488886684, 0.019435182213783264, -0.01942153461277485, 0.001582349999807775, -0.016746466979384422, 0.024021010845899582, -0.02197376638650894, -0.011669298633933067, 0.019080325961112976, -0.007376907393336296, 0.029016289860010147, -0.01109606958925724, -0.021782690659165382, 0.020663529634475708, 0.0030793980695307255, 0.029234662652015686, 0.008741737343370914, -0.015545415692031384, -0.001214698888361454, 0.01159423217177391, -0.009137538261711597, 0.0041934410110116005, -0.024143846705555916, 0.0022605000995099545, 0.010297643952071667, -0.016446204856038094, -0.011580584570765495, 0.024744370952248573, -0.0007587603176943958, 0.0002407645806670189, -0.0028849097434431314, 0.02221943624317646, -0.005159058142453432, -0.02515382133424282, -0.0012513786787167192, -0.023202113807201385, -0.007506566122174263, 0.017797386273741722, -0.01790657266974449, -0.01423517893999815, -0.012870348989963531, -0.01958531327545643], "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b": [0.0018292861059308052, -0.02277512662112713, -0.0013865508371964097, 0.013412476517260075, -0.008799792267382145, 0.033112481236457825, -0.009918643161654472, -0.01972746104001999, 0.0020643819589167833, -0.03994913771748543, 0.012087702751159668, 0.010742336511611938, 0.010200072079896927, -0.016638610512018204, 0.001739194616675377, 0.022733941674232483, 0.04145924001932144, -0.0005053703207522631, 0.03739568591117859, -0.01950780861079693, -0.009705855511128902, -0.00017278258746955544, 0.005354008171707392, 0.02585024945437908, -0.03053157404065132, 0.026028716936707497, 0.014744114130735397, -0.014812755398452282, 0.01032362598925829, -0.004938729107379913, -0.011627807281911373, -0.011847458779811859, 0.008710559457540512, 0.0009438155102543533, -0.028939099982380867, -0.015197145752608776, -0.004255749750882387, -0.015224602073431015, 0.014648016542196274, -0.0012029358185827732, 0.006929322145879269, -0.020976729691028595, -0.0020163331646472216, 0.002872631186619401, -0.01980982907116413, 0.01937052607536316, 0.0016336588887497783, -0.017009271308779716, -0.03799973055720329, 0.001232108217664063, 0.006236046552658081, 0.00987059436738491, -0.007509339600801468, -0.003740941407158971, -0.004622980020940304, -0.00045560550643131137, 0.011195368133485317, 0.011682719923555851, -0.002999617252498865, 0.025438401848077774, -0.0002052798809017986, 0.009390106424689293, 0.003406316041946411, -0.00221882457844913, -0.02597380243241787, -0.019054777920246124, -0.005868816282600164, -0.00847717933356762, -0.014853940345346928, -0.007900593802332878, 0.03805464133620262, 0.020043209195137024, -0.0028005579952150583, -0.012794706039130688, 0.014332267455756664, -0.023804742842912674, -0.034457847476005554, -0.013611535541713238, -0.011847458779811859, 0.014908852986991405, 0.008724287152290344, -0.030202096328139305, 0.007324008271098137, 0.022939864546060562, 0.020029481500387192, -0.03555610403418541, 0.0013968469575047493, 0.023159516975283623, -0.01965881884098053, -0.02476571872830391, 0.010021604597568512, 0.005027962848544121, 0.003066542325541377, 0.02476571872830391, 0.002670140005648136, 0.027511363849043846, -0.042914435267448425, 0.033606696873903275, 0.005244182422757149, -0.014812755398452282, -0.015732547268271446, -0.005673189181834459, -0.03690147027373314, -0.004231725353747606, -0.021182652562856674, 0.006912161596119404, -0.00969212781637907, -0.004986777901649475, 0.012396587990224361, 0.008573276922106743, -0.01625422015786171, 0.011854322627186775, -0.018999865278601646, -0.05104154348373413, -0.010371674783527851, -0.006630733143538237, 0.016638610512018204, -0.009630350396037102, -0.0060610114596784115, 0.0038061505183577538, -0.0039022481068968773, 0.018848853185772896, -0.002373266965150833, 0.0006147671374492347, 0.0058413599617779255, 0.014702930115163326, 0.0036825966089963913, -0.04371067136526108, 0.024751991033554077, -0.01683080568909645, 0.03591303899884224, 0.0038370389956980944, 0.004447944927960634, -0.013309515081346035, -0.0199471116065979, 0.022953594103455544, -0.03327722102403641, -0.02745645120739937, -0.020784534513950348, -0.029268577694892883, 0.025740424171090126, 0.01618557795882225, -0.0008601591689512134, -0.03613268956542015, -0.008422266691923141, 0.011463068425655365, 0.019892198964953423, 0.0041802446357905865, -0.02619345486164093, 0.017846694216132164, 0.016089480370283127, -0.0007627745508216321, 0.00844972301274538, -0.009094949811697006, 0.02719561569392681, -0.021525857970118523, 0.004602387547492981, -0.011572894640266895, 0.0066856457851827145, -0.02498537115752697, 0.00805846881121397, 0.017338749021291733, -0.00100301846396178, -0.006610140670090914, 0.004986777901649475, 0.029405860230326653, 0.010282441042363644, -0.01355662290006876, -0.024614708498120308, -0.020043209195137024, 0.021663140505552292, 0.026371922343969345, -0.03281046077609062, 0.008792928420007229, -0.014249898493289948, 0.01930188573896885, 0.019288158044219017, 0.033743977546691895, -0.004612683784216642, 0.00638705724850297, -0.027085788547992706, -0.008333032950758934, 0.0222259983420372, 0.020139306783676147, -0.03017464093863964, -0.004145924001932144, -0.019178330898284912, -0.016213035210967064, 0.015320699661970139, 0.004245453979820013, 0.002656411612406373, 0.01809380203485489, -0.012396587990224361, 0.0008940506959334016, -0.6312787532806396, -0.018986135721206665, -0.012863347306847572, -0.01718773879110813, -0.001705732080154121, 0.004904408473521471, 0.017064183950424194, -0.016226762905716896, -0.0001665619929553941, -0.0012707188725471497, -0.012375995516777039, 0.028335057199001312, 0.007399513851851225, -0.03017464093863964, -0.02193770557641983, -0.007674077991396189, 0.002586054615676403, -0.042200565338134766, -0.012039653956890106, -0.03948237746953964, -0.023653732612729073, 0.003128319513052702, -0.0012209541164338589, -0.0019459760515019298, -0.009314601309597492, -0.007406377699226141, 0.023241886869072914, 0.009465611539781094, 0.01029616966843605, 0.038219381123781204, -0.034814778715372086, 0.03162983059883118, 0.021608227863907814, 0.01305554248392582, 0.05288112536072731, -0.012863347306847572, -0.007859408855438232, 0.01366644911468029, 0.003488685470074415, 0.006716534495353699, -0.012067110277712345, -0.019137145951390266, 0.013076134957373142, 0.014332267455756664, 0.0068675447255373, 0.006229182239621878, 0.018711572512984276, -0.00823693536221981, -0.00868996698409319, 0.017558401450514793, 0.006716534495353699, 0.020468784496188164, -0.006562091875821352, -0.00017128106264863163, -0.011222824454307556, -0.005889408756047487, 0.028142862021923065, -0.008916482329368591, -0.0016164985718205571, -0.002194800181314349, 0.027772201225161552, 0.01923324353992939, -0.01426362618803978, 0.0016216466901823878, -0.022335823625326157, 0.011099270544946194, -0.005940889474004507, 0.013391884043812752, 0.013549759052693844, -0.020249132066965103, 0.01029616966843605, 0.013851779513061047, -0.012931988574564457, -0.018917495384812355, 0.04832335561513901, 0.0006937044090591371, 0.02860962226986885, -0.012053382582962513, -0.003737509483471513, 0.01213575154542923, 0.01008338201791048, -0.015773732215166092, -0.033606696873903275, -0.023653732612729073, 0.018958680331707, -0.0028091382700949907, -0.016171850264072418, 0.0305864866822958, 0.0028674830682575703, 0.007070036139339209, 0.014414637349545956, 0.011566029861569405, 0.0015015247045084834, 0.005086307413876057, 0.019823558628559113, 0.006641029380261898, -0.0038027185946702957, -0.00798296369612217, 0.006833224557340145, -0.014812755398452282, 0.005851656198501587, -0.01702299900352955, 0.02144348807632923, -0.011765089817345142, 0.021251292899250984, -0.01787414960563183, -0.03519916906952858, -0.01832718215882778, 0.04239276051521301, -0.002179355826228857, -0.0009626918472349644, -0.020963000133633614, -0.010955124162137508, 0.003909112419933081, 0.015457982197403908, -0.026564117521047592, 0.009033172391355038, 0.0010665114969015121, 0.03574829921126366, -0.007454426493495703, 0.014716657809913158, -0.007619165349751711, 0.01394787710160017, -0.009520524181425571, 0.036297429352998734, 0.040635548532009125, 0.00987059436738491, 0.0009300872916355729, -0.024751991033554077, -0.006843520328402519, 8.939434337662533e-05, -0.008326169103384018, 0.004794582724571228, 0.009788225404918194, 0.00926655251532793, -0.016926901414990425, 0.008175158873200417, -0.002302909968420863, 0.019919656217098236, -0.02563059702515602, -0.011490524746477604, 0.001963136252015829, 0.018148714676499367, 0.0023149221669882536, -0.01618557795882225, -0.043683215975761414, -0.006737126968801022, -0.003190096467733383, -0.014826484024524689, 0.010673695243895054, 0.011270873248577118, -0.00025118363555520773, -0.005865384358912706, 0.0016885717632248998, 0.029405860230326653, -0.02804676443338394, -0.012403451837599277, 0.0012123739579692483, 0.010248120874166489, -0.020825717598199844, 0.011668992228806019, 0.02817031927406788, -0.010735472664237022, 0.002677004085853696, 0.016734708100557327, -0.014497006312012672, -0.009891186840832233, 0.026948507875204086, 0.007262231316417456, -0.03470495343208313, 0.0184644628316164, -0.01558153610676527, -0.016267947852611542, 0.056615203619003296, -0.035089343786239624, -0.003706621006131172, 0.0006559517933055758, -0.010989444330334663, -0.0014234454138204455, 0.01909596286714077, -0.009664670564234257, 0.0073926495388150215, -0.0015890421345829964, -0.01455191895365715, 0.03950983285903931, -0.012437772937119007, -0.0025362896267324686, 0.00724163930863142, 0.0230634193867445, 0.025534499436616898, 0.009328329004347324, 0.016377773135900497, 0.013494845479726791, 0.007159269880503416, 0.013858644291758537, -0.00865564588457346, 0.020468784496188164, 0.026577845215797424, 0.006085035856813192, 0.0047808545641601086, 0.005367736332118511, 0.003998345695436001, 0.026660215109586716, 0.005522178951650858, 0.01326833013445139, -0.0363248847424984, 0.004320959094911814, -0.011861187405884266, 0.031904395669698715, -0.02995498850941658, -0.001093967934139073, -0.016446415334939957, -0.015856100246310234, -0.027854569256305695, 0.020386414602398872, 0.0166797935962677, 0.013817459344863892, 0.019548993557691574, -0.005412353202700615, 0.0015075308037921786, 0.02725052833557129, -0.007516203448176384, -0.010152023285627365, -0.003111159196123481, -0.014428365044295788, -0.00826439168304205, 0.012643695808947086, 0.035665929317474365, 0.017421118915081024, -0.020002024248242378, 0.016775891184806824, 0.006733694579452276, -0.018684115260839462, 0.02008439414203167, 0.0363248847424984, -0.008703694678843021, 0.00858700554817915, -0.01394787710160017, 0.05422649160027504, -0.025658054277300835, -0.006208590231835842, 0.006843520328402519, 0.02326934225857258, -0.027868298813700676, -0.027593733742833138, 0.015622721053659916, 0.017270108684897423, 0.011490524746477604, 0.013577215373516083, 0.045385513454675674, -0.02703087590634823, 0.0051858373917639256, -0.006455698050558567, 0.005350575782358646, 0.01669352315366268, -0.02987261861562729, -0.011572894640266895, 0.0054054888896644115, 0.02137484773993492, 0.03162983059883118, 0.01174449734389782, -0.004921569023281336, -0.0028571870643645525, 0.004169948399066925, 0.050355132669210434, -0.0027954098768532276, -0.006486586760729551, 0.019768645986914635, -0.03220641613006592, -0.030064813792705536, -0.01803888939321041, -0.027525093406438828, 0.00028035612194798887, -0.012808434665203094, 0.02471080608665943, 0.0029876050539314747, -0.0006876983097754419, -0.009939235635101795, 0.02505401149392128, 0.011092406697571278, -0.03022955358028412, -0.034100912511348724, 0.028225231915712357, -0.008188886567950249, 0.0039571612142026424, -0.009451883845031261, -0.028801817446947098, -0.019205788150429726, -0.02256920374929905, 0.035446278750896454, -0.006095332093536854, 0.02320070192217827, 0.02539721690118313, -0.0136595843359828, -0.0030270738061517477, 0.014744114130735397, 0.032178960740566254, -0.019864743575453758, 0.03278300166130066, 0.005319687537848949, 0.0028365945909172297, 0.020386414602398872, -0.03797227144241333, 0.007934914901852608, -0.0005281076882965863, -0.005261342506855726, -0.00847717933356762, -0.019837286323308945, 0.007145541720092297, -0.02066097967326641, 0.005480994004756212, -0.02277512662112713, 0.0023337984457612038, 0.006634165067225695, -0.008950803428888321, 0.003589930944144726, -0.020400144159793854, 0.0031180232763290405, 0.013618400320410728, -0.006671917624771595, -0.015375613234937191, -0.013515437953174114, -0.017832964658737183, -0.001198645681142807, 0.1013692170381546, 0.008305576629936695, -0.0029429884161800146, 0.0004405902582220733, 0.0016602573450654745, 0.016940630972385406, -0.009767632931470871, -0.020345229655504227, 0.01632286049425602, -0.012623103335499763, 0.019892198964953423, -0.01150425337255001, 0.009431291371583939, 0.009040036238729954, 0.004873520229011774, -0.01725637912750244, -0.01479902770370245, -0.019494080916047096, -0.0020231972448527813, 0.008518364280462265, 0.02348899468779564, 0.005058851093053818, 0.005244182422757149, 0.00858700554817915, -0.03157491981983185, -0.004029234405606985, 0.025754151865839958, -0.0003657285124063492, 0.008724287152290344, -0.020331501960754395, -0.006321847904473543, 0.0024007235188037157, 0.027511363849043846, 0.014895125292241573, -0.003193528624251485, -0.014112615957856178, 0.006891569122672081, -0.006792039610445499, 0.008140837773680687, 0.01486766804009676, 0.015183418057858944, 0.012362266890704632, 0.005745262373238802, -0.012698608450591564, 0.004091011360287666, 0.0023166381288319826, -0.023942025378346443, 0.0027336329221725464, -0.015499167144298553, 0.004379304125905037, 0.03981185331940651, 0.008648782037198544, -0.004286638461053371, -0.016624880954623222, 0.02037268690764904, 0.011929827742278576, -0.007962371222674847, -0.010200072079896927, -0.004756830167025328, 0.024957913905382156, -0.0011883495608344674, -0.0023595388047397137, 0.028939099982380867, -0.011483660899102688, -0.010913939215242863, -0.02442251332104206, -0.028801817446947098, -0.025671781972050667, -0.009650942869484425, 0.003706621006131172, -0.02576787956058979, -0.01437345240265131, -0.01305554248392582, 0.0027302009984850883, 0.0007160127861425281, 0.0037478057201951742, 0.028280144557356834, -0.015279515646398067, 0.014579376205801964, -0.01326833013445139, -0.016734708100557327, -0.03681910037994385, 0.014950037933886051, -0.036297429352998734, -0.01737993396818638, -0.00012333953054621816, 0.008085925132036209, -0.00733087258413434, -0.018862582743167877, 0.01654251292347908, 0.02320070192217827, 0.015457982197403908, 0.010598190128803253, -0.010989444330334663, 0.00833989679813385, 0.007378921378403902, -0.018272267654538155, -0.0070631722919642925, 0.00844972301274538, -0.004756830167025328, -0.004379304125905037, -0.04593464359641075, -0.01419498585164547, -0.028225231915712357, 0.011387563310563564, -0.012506413273513317, 0.014634288847446442, 0.015046135522425175, -0.02171805314719677, -0.033112481236457825, -0.007440698333084583, -0.015650177374482155, 0.00539519265294075, 0.006671917624771595, 0.01068742386996746, 0.007680942304432392, 0.006846952717751265, 0.010769792832434177, 0.008923347108066082, -0.01873902790248394, -0.015869829803705215, -0.024546068161725998, 0.004935297183692455, 0.003970889374613762, -0.032261330634355545, -0.02015303447842598, 0.013460525311529636, -0.02804676443338394, 0.019905926659703255, -0.007536795921623707, 0.0010373390978202224, 0.020908087491989136, 0.021663140505552292, -0.0026461156085133553, -0.03220641613006592, 0.002419599797576666, -0.017476031556725502, 0.0004461673379410058, -0.020331501960754395, 0.005573659669607878, -0.01000787690281868, -0.004097875207662582, -0.010351082310080528, -0.008353625424206257, -0.012568190693855286, -0.027291713282465935, -0.017791779711842537, -0.00711808493360877, 0.010625646449625492, -0.002802274189889431, 0.0005868816515430808, -0.03621505945920944, -0.024079307913780212, -0.0019373958930373192, -0.017503486946225166, -0.03371652215719223, 0.007399513851851225, -0.0021759236697107553, 0.018505647778511047, -0.0011497389059513807, 0.02355763502418995, -0.014345996081829071, 0.002894939621910453, 0.013034950010478497, 0.0063561685383319855, 0.00916359107941389, -0.0018258540658280253, -0.01902732066810131, -0.047389835119247437, -0.009129269979894161, 0.02605617232620716, 0.030915964394807816, 0.004664164502173662, -0.00979508925229311, 0.0032106887083500624, 0.03536390885710716, -0.005220158025622368, -0.006342440377920866, -0.022404463961720467, -0.03868614137172699, -0.019178330898284912, -0.009733311831951141, -0.014167528599500656, 0.00014811469009146094, -0.013803730718791485, 0.00017192457744386047, 0.04123958945274353, 0.005257910583168268, 0.019603906199336052, -0.019288158044219017, 0.022692756727337837, -0.016199305653572083, -0.00763289351016283, 0.0049661858938634396, 0.029405860230326653, 0.0007949500577524304, 0.02804676443338394, 0.013721361756324768, 0.007269095629453659, -0.008834113366901875, 0.008435994386672974, -0.01384491566568613, -0.0009798521641641855, -0.045385513454675674, -0.016597425565123558, 0.014538191258907318, -0.01725637912750244, -0.0005551351350732148, 0.022679029032588005, -0.01448327861726284, -0.022047530859708786, -0.004393032286316156, -0.01131892204284668, -0.03712112084031105, -0.02149840071797371, -0.01589728519320488, -0.011682719923555851, 0.017215194180607796, -0.012128887698054314, -0.006335576064884663, 0.009211639873683453, -0.019754916429519653, 0.045248232781887054, 0.007921186275780201, 0.03215150535106659, 0.015512894839048386, -0.007221046835184097, 0.003154059872031212, 0.011593486182391644, -0.014675472863018513, -0.0014165813336148858, 0.009300872683525085, 0.028939099982380867, -0.0024470563512295485, 0.0028125701937824488, -0.016981815919280052, 0.010982580482959747, -0.026632757857441902, -0.0274701789021492, 0.026646485552191734, -0.003193528624251485, -0.009335193783044815, -0.009788225404918194, 0.009801953099668026, -0.035171713680028915, 0.012938852421939373, 0.0005650022649206221, 0.03220641613006592, 0.0004142062971368432, -0.022445648908615112, -0.03819192573428154, -0.004743102006614208, 0.022061258554458618, 0.02001575380563736, 0.03583066910505295, -0.0043724398128688335, -0.015471710823476315, -0.006850384641438723, -0.021045370027422905, -0.00044959940714761615, -0.024257775396108627, 0.023832200095057487, -0.011016901582479477, 0.006400785408914089, 0.006788607686758041, -0.012266169302165508, -0.013336971402168274, -0.00257232622243464, 0.0006229182472452521, 0.025314848870038986, 0.02612481452524662, 0.008751743473112583, -0.0019099394557997584, -0.00022565771359950304, 0.01945289596915245, 0.01451073493808508, -0.004235157743096352, -0.012430908158421516, -0.007018555421382189, 0.0026478315703570843, -0.015595264732837677, 0.012410315684974194, -0.0017829532735049725, -0.008676238358020782, -0.027415266260504723, -0.020482512190937996, -0.00041077425703406334, -0.006582684349268675, -0.005120628047734499, -0.04464419186115265, -0.01967254839837551, -0.004732805769890547, -0.021841607987880707, 0.02598753198981285, 0.008538956753909588, 0.018697842955589294, 0.008168294094502926, 0.016775891184806824, -0.03896070644259453, 0.012300490401685238, -0.014442093670368195, 0.01171704102307558, -0.022102443501353264, 0.005796743091195822, 0.0060266912914812565, -0.02420286275446415, 0.0034869692754000425, -0.011758225038647652, -0.016734708100557327, -0.00539519265294075, 0.016158122569322586, 0.016075752675533295, -0.005975210107862949, 0.008957667276263237, 0.0011008321307599545, -0.0022359846625477076, 0.021127739921212196, -0.013920420780777931, -0.021347390487790108, 0.002563746180385351, 0.025795336812734604, 0.007324008271098137, 0.025712966918945312, -0.020908087491989136, 0.015348155982792377, 0.01089334674179554, 0.020619794726371765, -0.0025002530310302973, -0.02505401149392128, 0.004664164502173662, -0.00936951395124197, 0.0062772310338914394, 0.007598572876304388, 0.005096603650599718, -0.005312823224812746, -0.026426834985613823, -0.010234392248094082, -0.001789817470125854, 0.014277354814112186, -0.010515821166336536, 0.012204392813146114, 0.02471080608665943, -0.013172232545912266, -0.017366206273436546, -0.004396464210003614, -0.0022823174949735403, 0.0010819557355716825, -0.023337984457612038, -0.03162983059883118, -0.0029429884161800146, -0.008792928420007229, 0.029268577694892883, 0.0006113350391387939, -0.0075024752877652645, -0.014812755398452282, -0.03909798711538315, -0.029213665053248405, -0.023475265130400658, -0.010776657611131668, 0.009980420581996441, 0.049147047102451324, 0.002335514407604933, 0.0033994519617408514, 0.03286537155508995, 0.0009747040458023548, 0.0049147047102451324, -8.912621706258506e-05, -0.001293885288760066, -0.01090021152049303, -0.002093554474413395, -0.00805160403251648, 0.0023921432439237833, -0.020029481500387192, -0.004159652628004551, 0.014277354814112186, -0.014826484024524689, 0.0019476920133456588, 0.0034646610729396343, -0.006853816565126181, 0.004248885903507471, -0.005590819753706455, 0.004931865260004997, 0.021772965788841248, 0.0035693387035280466, 0.0017983976285904646, -0.02697596326470375, -0.016871988773345947, -0.008072196505963802, -0.009122406132519245, -0.019494080916047096, -0.030119726434350014, 0.01683080568909645, -0.01341934036463499, 0.015773732215166092, -0.02697596326470375, -0.016720978543162346, -0.012122022919356823, -0.04357338696718216, 0.04288697615265846, -0.010454043745994568, 0.006184565834701061, 0.026934778317809105, 0.012568190693855286, -0.02541094645857811, -0.009932371787726879, 0.037917360663414, 0.01497749425470829, -0.01689944602549076, 0.01632286049425602, -0.01746230386197567, 0.03231624513864517, -0.0181624423712492, 0.02447742596268654, -0.027126973494887352, 0.0015161109622567892, -0.005597684066742659, 0.0035247220657765865, -0.024436241015791893, 0.03657199442386627, 0.007866273634135723, 0.00016817076539155096, -0.01703672856092453, 0.020276589319109917, -0.0017065900610759854, 0.00569721357896924, -0.02398321032524109, -0.018189899623394012, 0.015224602073431015, 0.011689583770930767, 0.012863347306847572, 0.002628955291584134, -0.018560560420155525, 0.007275959476828575, 0.005288798827677965, -0.028801817446947098, 0.0006945624481886625, 0.20833955705165863, -0.026179727166891098, 0.0018172739073634148, 0.02512265369296074, -0.017709411680698395, 0.010454043745994568, 0.013330107554793358, -0.009918643161654472, 0.002939556259661913, -0.01867038756608963, -0.013687040656805038, 0.016913173720240593, -0.01305554248392582, 0.00505541916936636, 0.01560899242758751, -0.011511117219924927, -0.04044335335493088, -0.00827125646173954, -0.00646256236359477, -0.06397353112697601, 0.008278120309114456, -0.016666065901517868, -0.033194851130247116, -0.003579634940251708, 0.022528018802404404, 0.011366970837116241, -0.014140072278678417, 0.008003555238246918, 0.028197776526212692, -0.012067110277712345, -0.023543907329440117, 0.007049444131553173, -0.019645091146230698, -0.003497265512123704, -0.011847458779811859, 0.018134986981749535, 0.011593486182391644, 0.0005559931159950793, 0.01121596060693264, -0.015018679201602936, -0.012691744603216648, 0.0018395822262391448, 0.004574931226670742, 0.020386414602398872, -0.015952197834849358, 0.008991987444460392, -0.00743383402004838, -0.004918137099593878, 0.002414451679214835, 0.025301119312644005, -0.02852725237607956, 0.008683103136718273, 0.048021335154771805, 0.01526578702032566, 0.0026615597307682037, -0.023159516975283623, -0.006956778466701508, 0.025589412078261375, -0.020633522421121597, 0.009335193783044815, -0.011305194348096848, 0.025383489206433296, 0.006582684349268675, 0.028554709628224373, -0.022184813395142555, 0.0140577033162117, -0.01345366146415472, -0.010454043745994568, 0.02817031927406788, -0.023791015148162842, 0.015471710823476315, -0.014853940345346928, -0.00704257981851697, -0.007577980402857065, -0.01437345240265131, -0.0001223742583533749, 0.0214297603815794, -0.025822792202234268, 0.012506413273513317, 0.0009747040458023548, 0.009767632931470871, -0.008415402844548225, 0.017572129145264626, -0.005082875490188599, -0.014826484024524689, -0.03135526925325394, 0.008559548296034336, -0.005954618100076914, -0.03412836790084839, 0.0006061869789846241, -0.0036860285326838493, -0.01938425563275814, 0.01384491566568613, -0.0008284125942736864, 0.0007357471040450037, -0.0015075308037921786, 0.0140577033162117, 0.017709411680698395, -0.0029738768935203552, 0.0024916729889810085, -0.016020840033888817, -0.011689583770930767, 0.026879865676164627, -0.006318415980786085, -0.02668767049908638, -0.011332650668919086, 0.003111159196123481, 0.003967457450926304, 0.012005333788692951, -0.012595647014677525, 0.028637079522013664, -0.019137145951390266, -0.005748694762587547, -0.010049060918390751, -0.0017460586968809366, 0.016144393011927605, -0.026742583140730858, -0.005745262373238802, -0.005178973078727722, 0.009005716070532799, -0.010584462434053421, -0.01468920148909092, 0.01047463621944189, 0.015334428288042545, -0.0022737374529242516, -0.004520018119364977, -0.02775847166776657, 0.01661115325987339, 0.015197145752608776, 0.002802274189889431, 0.025012826547026634, -0.03044920414686203, 0.007742719259113073, -0.0004302940797060728, -0.025026556104421616, 0.0323711559176445, -0.0067611513659358025, -0.012780978344380856, 0.021663140505552292, -0.00014275209105107933, -0.01295258104801178, -0.0011814854806289077, 0.007715262938290834, -0.0032055408228188753, 0.013741954229772091, -0.014304811134934425, 0.023832200095057487, -0.011167911812663078, 0.012732929550111294, -0.012389724142849445, -0.04423234239220619, -0.010103974491357803, -0.002479660790413618, 0.0026272390969097614, 0.005813903640955687, 0.003222700906917453, -0.011737632565200329, -0.038576316088438034, 0.007207318674772978, 0.009877458214759827, -0.017146553844213486, 0.00652777124196291, 0.01773686707019806, 0.0065792519599199295, -0.005230453796684742, -0.0139821982011199, -0.17594094574451447, 0.024806903675198555, 0.011778817512094975, -0.020482512190937996, 0.04431471228599548, 0.04173380509018898, 0.020207948982715607, -0.012458364479243755, -0.0005289656692184508, -0.012856483459472656, 0.013487981632351875, 0.00030438051908276975, -0.03160237520933151, -0.02825268916785717, -0.006459130439907312, 0.008545820601284504, -0.006493450608104467, 0.032700635492801666, 0.036736730486154556, 0.010756065137684345, -0.0006529487436637282, 0.00473967008292675, 0.028060493990778923, 0.008326169103384018, 0.013158503919839859, 0.011277737095952034, 0.002524277428165078, 0.015471710823476315, 0.007324008271098137, -0.010879619047045708, -0.024038122966885567, 0.017517216503620148, -0.0015204009832814336, -0.016213035210967064, 0.019329341128468513, 0.012389724142849445, -0.013995925895869732, -8.837545465212315e-05, 0.0039640250615775585, 0.005453537683933973, 0.01832718215882778, -0.0007846538792364299, 0.011373834684491158, -0.016281675547361374, 0.0021896520629525185, 0.043683215975761414, -0.003559042466804385, 0.00039146892959252, 0.006170837674289942, -0.01952153630554676, 0.009733311831951141, -0.005690349731594324, 0.03044920414686203, 0.012554462067782879, 0.03717603534460068, 0.018780212849378586, 0.010351082310080528, 0.006294391583651304, -0.008209479041397572, -0.013309515081346035, 0.0007323150639422238, -0.011476797051727772, 0.01889003813266754, -0.009136133827269077, -0.013261466287076473, -0.01466174516826868, -0.015430525876581669, 0.02449115552008152, -0.018423279747366905, 0.016775891184806824, -0.016446415334939957, 0.01581491529941559, 0.01780550926923752, -0.018917495384812355, -0.0030716904439032078, 0.003303354373201728, -0.01809380203485489, -0.008820384740829468, 0.0032089727465063334, -0.013158503919839859, -0.026989690959453583, 0.032700635492801666, -0.00916359107941389, -0.006853816565126181, 0.003970889374613762, 0.0037272132467478514, 0.010138294659554958, -0.026358192786574364, -0.004499426111578941, -0.0054020569659769535, 0.016350317746400833, -0.012911396101117134, 0.002115862676873803, -0.010584462434053421, 0.02498537115752697, 0.026783768087625504, 0.010550141334533691, -0.021196380257606506, 0.0031592079903930426, -0.012300490401685238, 0.01526578702032566, -0.01943916827440262, -0.017942791804671288, 0.029982445761561394, 0.0320691354572773, 0.018121257424354553, -0.006912161596119404, 0.002160479547455907, 0.03080613911151886, -0.0027061766013503075, -0.0068744090385735035, -0.0007554814219474792, 0.013831187039613724, -0.0017829532735049725, 0.004564634989947081, 0.02646801993250847, -0.028554709628224373, -0.0340459980070591, 0.001206367858685553, -0.018272267654538155, 0.05557185783982277, -0.002721620723605156, -0.009623486548662186, 0.012019061483442783, -0.027415266260504723, -0.04925687238574028, -0.10938650369644165, 0.016515055671334267, -0.004142492078244686, 0.012060246430337429, -0.003349686972796917, 0.009046901017427444, -0.008188886567950249, 0.0026255231350660324, 0.007004827260971069, 0.003970889374613762, -0.020249132066965103, -0.02768983133137226, -0.004636708181351423, -0.014648016542196274, 0.026742583140730858, -0.0013247737661004066, -0.01810752972960472, -0.018409550189971924, 0.004097875207662582, 0.037917360663414, -0.009946099482476711, -0.01060505397617817, 0.015952197834849358, -0.019329341128468513, 0.03813701122999191, -0.009712719358503819, -0.016418958082795143, 0.015142233110964298, 0.020386414602398872, 0.013961605727672577, -0.023736102506518364, -0.008470315486192703, 0.022171083837747574, 0.0013376439455896616, -0.012396587990224361, -0.0038267429918050766, -0.011010036803781986, -0.0008914766367524862, 0.0077221267856657505, -0.029982445761561394, 0.004502858035266399, -0.025232478976249695, 0.013117319904267788, -0.010117702186107635, 0.020606067031621933, -0.010749200358986855, -0.011826866306364536, 0.008223207667469978, 0.011092406697571278, -0.03344195708632469, -0.01972746104001999, 0.012094566598534584, -0.04038843885064125, -0.0078456811606884, 0.03363415226340294, -0.00936951395124197, 0.0273191686719656, 0.008786064572632313, -0.022912409156560898, -0.005745262373238802, -0.016377773135900497, 0.006709670182317495, -0.015924742445349693, 0.029405860230326653, 0.013913556933403015, -0.008820384740829468, -0.02016676403582096, -0.025960074737668037, 0.04101993888616562, -0.012396587990224361, -0.00855268444865942, 0.01468920148909092, -0.026303280144929886, 0.006493450608104467, -0.02668767049908638, 0.014908852986991405, -0.01640523038804531, -0.009033172391355038, 0.017407389357686043, 0.01139442715793848, -0.006448834203183651, -0.026220910251140594, 0.0001289166248170659, 0.011936692520976067, 0.02413422055542469, 0.0013419340830296278, 0.014126344583928585, -0.004671028815209866, -0.001923667616210878, -0.01646014302968979, 0.012629968114197254, 0.011902371421456337, -0.0011162763694301248, -0.008964531123638153, 0.008085925132036209, 0.0389057919383049, 0.01324087381362915, -0.00035393080906942487, -0.007591709028929472, 0.004341551568359137, -0.019466623663902283, 2.0860468794126064e-05, -0.061777014285326004, 0.030147183686494827, -0.0137350894510746, 0.01526578702032566, 0.0031780842691659927, -0.01889003813266754, 0.00855268444865942, -0.02057860977947712, -0.019192060455679893, 0.007838817313313484, 0.0062532066367566586, 0.03215150535106659, -0.005807039327919483, -0.012623103335499763, -0.02107282727956772, -0.03094342164695263, 0.01479902770370245, 0.0007936630281619728, 0.0062429108656942844, 0.004835767671465874, -0.0033805756829679012, 0.005178973078727722, 0.016377773135900497, 0.005573659669607878, -0.0197961013764143, 0.003193528624251485, -0.0052956631407141685, 0.027126973494887352, -0.006040419451892376, -0.016624880954623222, 0.009568572975695133, -0.033963631838560104, -0.007893729954957962, 0.0010330489603802562, 0.00427634222432971, 0.011559166014194489, -0.022308366373181343, 0.0017271824181079865, 0.016377773135900497, 0.04719763994216919, 0.0025174133479595184, 0.0011188504286110401, 0.005113764200359583, -0.033332131803035736, 0.025740424171090126, 0.030833594501018524, -0.024587253108620644, -0.009843138046562672, 0.02847233973443508, -0.019137145951390266, 0.023818472400307655, 0.025108924135565758, -0.006040419451892376, -0.027840841561555862, -0.007049444131553173, -0.025218751281499863, 0.010021604597568512, -0.010049060918390751, 0.016597425565123558, -0.03209659084677696, 0.009980420581996441, -0.008133973926305771, 0.004873520229011774, -0.0013230578042566776, 0.009136133827269077, -0.021031642332673073, -0.0006623868830502033, 0.0030837026424705982, -0.01746230386197567, -0.017860421910881996, -0.01965881884098053, 0.006843520328402519, 0.010673695243895054, 0.01036481000483036, 0.021553315222263336, 0.01581491529941559, 0.005532475188374519, 0.0032844780944287777, -0.0320691354572773, 0.006383624859154224, -0.002637535333633423, -0.014853940345346928, -0.039427462965250015, 0.0026238071732223034, 0.029570598155260086, -0.013199688866734505, 0.007076900452375412, 0.0004543184768408537, 0.0030510982032865286, 0.007008259184658527, 0.008243799209594727, -0.010797249153256416, -0.0030751226004213095, -0.0031592079903930426, 0.014936309307813644, 0.018999865278601646, -0.01292512472718954, -0.004660732578486204, 0.029515685513615608, 0.026234639808535576, -0.014716657809913158, 0.028280144557356834, -0.0009146430529654026, -0.022171083837747574, 0.009801953099668026, 0.00587224867194891, -0.01171704102307558, -0.02932349033653736, 0.012053382582962513, 0.02513638138771057, -0.006592980585992336, 0.010762928985059261, 0.03044920414686203, 0.02114146761596203, -0.010570733807981014, 0.01780550926923752, 0.010433451272547245, -0.010234392248094082, -0.008964531123638153, 0.06183192878961563, 0.004362143576145172, 0.03810955584049225, 0.02505401149392128, 0.0053231194615364075, 0.009534252807497978, 0.01972746104001999, 0.018615474924445152, 0.03250844031572342, 0.001661115325987339, 0.007018555421382189, 0.010028468444943428, -0.006181133445352316, -0.0601845420897007, 0.015801187604665756, -0.011463068425655365, -0.030778681859374046, 0.0007726416806690395, 0.012712337076663971, -0.01646014302968979, 0.04944906756281853, 0.006170837674289942, -0.005776151083409786, 0.003004765370860696, 2.0136518287472427e-05, 0.013913556933403015, 0.01838209480047226, -0.0022497130557894707, -0.009314601309597492, -0.0008344186935573816, -0.0051343562081456184, -0.023516450077295303, 0.015361884608864784, -0.01597965508699417, -0.020688436925411224, 0.026303280144929886, -0.023461537435650826, 0.02866453491151333, -0.02149840071797371, -0.026165997609496117, 0.02406558021903038, 0.0003888948995154351, 0.030366836115717888, 0.002589486539363861, -0.018574289977550507, 0.007852545008063316, 0.014881396666169167, 0.003799286438152194, 0.0036105234175920486, -0.021402303129434586, 0.01032362598925829, 0.022665301337838173, -0.013220281340181828, -0.012355403043329716, 0.03407345712184906, -0.004636708181351423, -0.004674460738897324, -0.015938470140099525, 0.030064813792705536, 0.0050005060620605946, -0.01497749425470829, 0.0010081665823236108, -0.023612547665834427, -0.007674077991396189, 0.025026556104421616, -0.007536795921623707, -0.022335823625326157, -0.005058851093053818, -0.01511477679014206], "aae7cfcc-6c08-453f-ab0c-5ff181a9179c": [0.0015543490881100297, -0.021287603303790092, -0.005158464424312115, 0.011597180739045143, -0.007824522443115711, 0.03007231466472149, -0.007388691417872906, -0.018441084772348404, -0.022322701290249825, -0.024256698787212372, 0.016724999994039536, 0.020198026672005653, -0.009138823486864567, 0.00908434484153986, -0.003891831496730447, 0.01929912529885769, 0.030371947214007378, -0.001311748055741191, 0.028220033273100853, -0.0209607295691967, -0.0013926151441410184, -0.006980100180953741, -0.008784711360931396, 0.029582004994153976, -0.01342903170734644, 0.03549295663833618, 0.030535385012626648, -0.004164225421845913, 0.006047150120139122, -0.0003517715085763484, -0.01962599903345108, -0.00221320241689682, 0.004715823568403721, -0.003735204692929983, -0.024883205071091652, -0.021723434329032898, 0.0015943569596856833, -0.026122599840164185, 0.01946256123483181, 0.006918811239302158, 0.0012717401841655374, -0.020484039559960365, -0.01315663754940033, -0.00026281780446879566, -0.01716083101928234, 0.02676272578537464, 0.0077155642211437225, -0.023957066237926483, -0.018304886296391487, 0.017896296456456184, 0.028574146330356598, -0.005996076390147209, -0.030181271955370903, -0.002628603484481573, -0.012911482714116573, -0.0048656403087079525, 0.004508123267441988, 0.03244214504957199, -0.023861726745963097, 0.007238874677568674, 0.0010844692587852478, 0.0016156377969309688, 0.008158205077052116, 0.005887118633836508, -0.0536344088613987, -0.005723682232201099, 0.001402829890139401, -0.0002103606384480372, -0.012046631425619125, -0.013810383155941963, 0.03015403263270855, 0.012366694398224354, -0.0032125485595315695, 0.004474074114114046, 0.011692519299685955, -0.032142508774995804, -0.009908337146043777, -0.021818771958351135, -0.031080173328518867, -0.005662393290549517, -0.01725616864860058, -0.023834487423300743, 0.024379275739192963, 0.013292834162712097, 0.016697760671377182, -0.012053441256284714, 0.015689903870224953, 0.037317998707294464, -0.020157167688012123, -0.015798861160874367, 0.01737874746322632, 0.031052934005856514, 0.005801995284855366, 0.003118912922218442, 0.0009040081058628857, 0.00868937373161316, -0.023453136906027794, 0.015049776993691921, 0.002034443896263838, -0.015104255639016628, -0.014150876551866531, 0.0036262471694499254, -0.019816674292087555, -0.005029077176004648, -0.01887691393494606, 0.010623372159898281, -0.012291786260902882, -0.0022966230753809214, 0.00981299951672554, -0.0010538249043747783, -0.010875336825847626, 0.033967550843954086, -0.02522369846701622, -0.04657939821481705, -0.024460995569825172, -0.022186502814292908, 0.023943446576595306, -0.011597180739045143, -0.02063385769724846, -0.010242019779980183, 0.006455741357058287, 0.029037216678261757, -0.0074567897245287895, -0.012795715592801571, 0.00592116778716445, -0.0040484583005309105, -0.0017552397912368178, -0.02401154488325119, 0.0006316139479167759, -0.006939241196960211, 0.051428016275167465, 0.0031086981762200594, 0.014886340126395226, -0.008553176186978817, -0.017773717641830444, 0.023916207253932953, -0.024951303377747536, 0.00966999214142561, -0.026708247140049934, -0.029091695323586464, 0.016765860840678215, 0.00835569016635418, -0.007443170063197613, -0.03573811426758766, -0.02639499306678772, 0.01754218339920044, 0.019026732072234154, 0.007987958379089832, -0.01908121071755886, 0.012325835414230824, 0.01608487404882908, 0.008335260674357414, 0.019857533276081085, -0.01355160865932703, 0.019557900726795197, -0.008171824738383293, 0.006908596493303776, 0.0008312277495861053, -0.0004834996070712805, -0.005212943069636822, 0.012645898386836052, 0.018386604264378548, 0.013074919581413269, -0.010705090127885342, -0.003966739866882563, 0.030208511278033257, -0.000431787280831486, 0.0009023056481964886, -0.021205885335803032, -0.015117875300347805, 0.008130965754389763, 0.020061830058693886, -0.0379989854991436, 0.005134629551321268, -0.005597699899226427, 0.008723422884941101, 0.03538399934768677, 0.022336320951581, -0.0077155642211437225, 0.010180731303989887, -0.0333138033747673, -0.009349929168820381, 0.01853642240166664, 0.023194361478090286, -0.018304886296391487, -0.010895766317844391, -0.03015403263270855, -0.009288640692830086, -0.013211116194725037, 0.002516241045668721, -0.0006686425185762346, 0.012795715592801571, -0.0071980152279138565, 0.009213732555508614, -0.6354410648345947, -0.020906250923871994, 0.0018761147512122989, -0.013415412046015263, 0.004674964584410191, -0.011174970306456089, -0.0057441117241978645, -0.0015134899877011776, 0.0003270857851020992, 0.012911482714116573, -0.019053971394896507, -0.003537719137966633, -0.00020727491937577724, -0.008839190006256104, -0.028465189039707184, -0.0008474011556245387, 0.014518608339130878, -0.023044545203447342, 0.01401467900723219, -0.023112643510103226, -0.026422232389450073, 0.018141450360417366, 0.0014411353040486574, -0.0012615254381671548, -0.007252494338899851, -0.012591419741511345, 0.015471987426280975, -0.002148508792743087, 0.013558418489992619, 0.030208511278033257, -0.027416471391916275, 0.0368276908993721, 0.014613945968449116, 0.015689903870224953, 0.03900684416294098, 0.0031699868850409985, -0.016302790492773056, 0.025196459144353867, 0.017855437472462654, 0.03039918653666973, -0.020851772278547287, -0.01171294879168272, 0.013728665187954903, 0.013388172723352909, 0.0029384519439190626, 0.011917243711650372, 0.007586176972836256, -0.010092203505337238, -1.340689959761221e-05, 0.010412266477942467, -0.008069676347076893, 0.015363030135631561, -0.009486126713454723, -0.01695653609931469, 0.006792828906327486, -0.01653432473540306, 0.020524898543953896, -0.01288424339145422, 0.014913579449057579, 0.016452606767416, 0.023439517244696617, 0.016261931508779526, 0.0025553975719958544, 0.0012198151089251041, -0.017297029495239258, 0.020647477358579636, -0.009840238839387894, 0.01139969564974308, 0.021859630942344666, -0.01992563158273697, 0.017351508140563965, 0.015254072844982147, -0.0030610293615609407, -0.014981678687036037, 0.027416471391916275, -0.004743063356727362, 0.02305816486477852, -0.015580945648252964, 0.009091154672205448, 0.014518608339130878, 0.005369569640606642, -0.012284976430237293, -0.0387616865336895, -0.01958514004945755, 0.010419076308608055, -0.0074567897245287895, -0.015308551490306854, 0.018727097660303116, -0.004909904673695564, -0.006329759024083614, -0.0006797085516154766, 0.02237717993557453, -0.004283397924154997, 0.013919341377913952, 0.020987968891859055, 0.006207181606441736, -0.014001059345901012, 0.0016930998535826802, -0.0009908337378874421, -0.012434792704880238, -0.0034508933313190937, -0.0348392128944397, 0.008382930420339108, -0.016438987106084824, 0.012686757370829582, -0.016765860840678215, -0.04331066831946373, -0.02126036398112774, 0.05186384543776512, -0.023943446576595306, 0.004351496696472168, -0.014777382835745811, -0.00804243702441454, 0.0010087095433846116, 0.02083815261721611, -0.023657431825995445, -0.0017943964339792728, 0.007225255016237497, 0.014532228000462055, -0.005522791296243668, 0.012203257530927658, -0.002252359176054597, 0.001779074314981699, -0.012857004068791866, 0.016888437792658806, 0.03225146606564522, -0.00748402951285243, -0.0152813121676445, -0.020606618374586105, -0.01171294879168272, 0.014845481142401695, -0.0027835278306156397, 0.0004413636343088001, 0.013619707897305489, 0.00605395995080471, -0.01058251317590475, 0.01551284734159708, -0.002946964232251048, 0.028301753103733063, -0.03546571731567383, -0.0042765880934894085, 0.021859630942344666, 0.010895766317844391, -0.013129398226737976, -0.006615772843360901, -0.025795726105570793, -0.02843794971704483, 0.017297029495239258, -0.03462129831314087, 0.006581723690032959, -0.0021280793007463217, -0.014791002497076988, -0.007654275745153427, 0.011420125141739845, 0.014682044275105, 3.551232293830253e-05, -0.02689892239868641, -0.006707706023007631, 0.011644849553704262, -0.014191735535860062, 0.004388950765132904, 0.0025843395851552486, -0.02188687026500702, 0.014654804952442646, 0.028328992426395416, -0.01679310016334057, -0.004926929250359535, 0.025918303057551384, 0.0014258131850510836, -0.023071784526109695, 0.011018343269824982, -0.01829126663506031, 0.00718439556658268, 0.06450293213129044, -0.026708247140049934, 0.0038816167507320642, -0.002252359176054597, -0.02655842900276184, -0.004143795929849148, 0.007647465914487839, -0.008362499997019768, 0.020320603623986244, -0.011699329130351543, -0.008886858820915222, 0.029391329735517502, -0.0021059473510831594, -0.000259412860032171, -0.0019697502721101046, 0.01720169000327587, 0.018727097660303116, -0.007858571596443653, 0.02322160080075264, 0.011767427437007427, 0.0035513387992978096, -0.0038850216660648584, 0.0010938327759504318, 0.01916292868554592, 0.020947109907865524, -0.012850194238126278, 0.012659518048167229, 0.023357799276709557, -0.0062786852940917015, 0.02476062811911106, 0.0030746490228921175, -0.0005218050209805369, -0.03925199806690216, 0.005893928464502096, 0.003530909074470401, 0.01895863376557827, -0.018468324095010757, -0.0008469755412079394, -0.03571087494492531, -0.011508652940392494, -0.0034679181408137083, 0.01012625265866518, 0.022908348590135574, 0.015417508780956268, 0.010684660635888577, -0.020497659221291542, 0.024869585409760475, 0.0022830034140497446, -0.00014162367733661085, 0.012237307615578175, -0.0029078074730932713, -0.023439517244696617, -0.007497649174183607, 0.0006273578037507832, 0.039932981133461, 0.008049246855080128, -0.01725616864860058, 0.006380832754075527, 0.0025843395851552486, 0.0036262471694499254, 0.021273983642458916, 0.007545317988842726, -0.011495033279061317, 0.008158205077052116, -0.009683611802756786, 0.035520195960998535, -0.030971214175224304, -0.003142747562378645, 0.00922735221683979, 0.026286035776138306, -0.02405240386724472, -0.017855437472462654, -0.0006720474339090288, 0.0029554765205830336, 0.019244646653532982, 0.0281927939504385, 0.041785262525081635, -0.01261184923350811, -0.0032329780515283346, 0.000213552761124447, 0.0106710409745574, 0.005461502820253372, -0.030099553987383842, 0.0119444839656353, 0.014382410794496536, -0.008382930420339108, 0.031597722321748734, 0.014382410794496536, 0.007334212306886911, 0.021028827875852585, 0.012938722036778927, 0.061125248670578, 0.01628917083144188, 0.01754218339920044, 0.02518283948302269, -0.02960924431681633, -0.021559996530413628, 0.007810902316123247, -0.01603039540350437, 0.012904672883450985, -0.009724470786750317, 0.0055398158729076385, 0.00036198628367856145, 0.0020804102532565594, -0.013892102055251598, 0.011910433880984783, -0.0016130841104313731, -0.017651140689849854, -0.021314842626452446, 0.030726060271263123, 0.005713467486202717, -0.0007401459733955562, -0.01754218339920044, -0.02188687026500702, 0.005001837387681007, -0.02601364068686962, 0.03140704706311226, -0.013149827718734741, 0.009424837306141853, 0.027552668005228043, -0.018658999353647232, 0.007919860072433949, 0.004886070266366005, 0.006670251954346895, -0.027879541739821434, 0.043528586626052856, -0.0094997463747859, 0.0071435365825891495, 0.013224735856056213, -0.03437614068388939, -0.002410688204690814, 0.014450510032474995, -0.014409651048481464, -0.012870623730123043, -0.017814576625823975, 0.005151654593646526, -0.02580934576690197, -0.0031733918003737926, -0.0211650263518095, -0.008757472038269043, -0.0038577821105718613, -0.015267692506313324, -0.0014692259719595313, -0.02184601128101349, 0.028873780742287636, 0.03094397485256195, -0.0086212744936347, -0.0031716893427073956, -0.014178115874528885, -0.013095349073410034, -0.0049507636576890945, 0.09196026623249054, 0.02301730588078499, -0.02138294093310833, -0.004991622641682625, 0.007967528887093067, 0.007007339503616095, -0.018182309344410896, -0.017283407971262932, 0.02271767146885395, 0.01284338440746069, 0.021696195006370544, -0.016425367444753647, 0.030262989923357964, -0.0018624949734658003, 0.020974349230527878, -0.004004193935543299, -0.021682575345039368, 0.0008065420552156866, 0.002529860706999898, 0.007123107090592384, 0.007436360232532024, 0.010350978001952171, 0.0027375612407922745, 0.0274028517305851, -0.0364190973341465, -0.018059732392430305, 0.028383471071720123, -0.0008533598156645894, 0.00795390922576189, -0.027756964787840843, -0.006360403262078762, 0.027035119011998177, 0.034893691539764404, 0.025169219821691513, -0.003282349556684494, -0.006809853948652744, 0.015608184970915318, 0.02209116518497467, 0.010882146656513214, 0.006717920769006014, 0.011079631745815277, 0.02326245978474617, 0.013497130014002323, -0.010282878763973713, 0.010636991821229458, 0.008573605678975582, 0.0027528833597898483, 0.0075044590048491955, -0.015008918009698391, 0.009792570024728775, 0.03911580145359039, -0.0015662664081901312, 0.0059007382951676846, -0.0026439258363097906, 0.03124360926449299, -0.014205355197191238, 0.010861717164516449, -0.00042263654177077115, -0.021069686859846115, 0.013040870428085327, 0.0031665819697082043, 0.0021297817584127188, 0.011706138961017132, -0.011678899638354778, -0.020974349230527878, -0.017760097980499268, -0.014341551810503006, -0.02055213786661625, 0.004416190087795258, 0.03086225688457489, -0.019067591056227684, -0.012993200682103634, -0.010732329450547695, 0.005870094057172537, 0.019952870905399323, 0.0073001631535589695, 0.016357269138097763, -0.008961767889559269, -0.008335260674357414, 0.0006741755059920251, -0.009874287992715836, -0.04693351313471794, 0.00841697957366705, -0.013034059666097164, -0.01604401506483555, -0.012911482714116573, 0.010957054793834686, 0.025087501853704453, -0.024910444393754005, 0.012700377032160759, -0.008784711360931396, 0.024815106764435768, 0.01687481813132763, 0.001835255534388125, 0.014518608339130878, 0.011849145404994488, -0.009704041294753551, 0.0004345538036432117, -0.011603990569710732, -0.012775286100804806, 0.0074567897245287895, -0.06542907655239105, 0.005495551973581314, -0.023357799276709557, 0.005618129391223192, -0.011181780137121677, 0.0038441624492406845, -0.0023681267630308867, -0.024243079125881195, -0.02555057220160961, 0.00868256390094757, -0.020347842946648598, -0.008559986017644405, 0.00033283160883001983, 0.01725616864860058, -0.004453644156455994, 0.002761395648121834, 0.0006669400609098375, 0.005192513577640057, -0.0031155080068856478, -0.009928766638040543, -0.021682575345039368, -0.000829099677503109, 0.02079729363322258, -0.02576848678290844, -0.010092203505337238, -0.006799639202654362, -0.011890004388988018, 0.01938084326684475, -0.002436225302517414, 0.01725616864860058, 0.01221687812358141, 0.009172872640192509, -0.01401467900723219, -0.019653238356113434, 0.009186492301523685, -0.020347842946648598, 0.0040007890202105045, -0.013633327558636665, 0.005206133238971233, -0.020443180575966835, -0.015812480822205544, -0.003789683571085334, -0.027116836979985237, 0.007163966074585915, -0.027702484279870987, -0.023207981139421463, 0.002623496111482382, -0.016152972355484962, 0.008709803223609924, -0.004627295769751072, -0.03492093086242676, -0.01962599903345108, 0.005631749052554369, -0.012210067361593246, -0.031679440289735794, 0.006629392504692078, -0.022826630622148514, 0.03187011554837227, -0.006622582674026489, 0.018481943756341934, -0.03143428638577461, -0.0069528608582913876, 0.010936625301837921, -0.0003724138659890741, 0.008675754070281982, -0.01004453469067812, -0.019680477678775787, -0.02480148710310459, 0.0033470431808382273, 0.029827158898115158, 0.014341551810503006, 0.009567844681441784, 0.00039071537321433425, 0.010773188434541225, 0.023630192503333092, -0.011365645565092564, -0.00885280966758728, -0.027048738673329353, -0.03878892585635185, -0.012979581020772457, -0.016888437792658806, -0.015431128442287445, 0.008866429328918457, -0.01962599903345108, 0.005723682232201099, 0.0512918196618557, 0.004831591155380011, 0.006135678384453058, -0.02255423553287983, 0.030998453497886658, -0.018441084772348404, 0.01574438251554966, 0.003561553545296192, 0.03140704706311226, -0.006292304955422878, 0.021355701610445976, -0.02501940354704857, -0.0008567647309973836, -0.0013551609590649605, 0.005134629551321268, 0.012087490409612656, -0.011345216073095798, -0.01816868968307972, -0.021137787029147148, 0.014532228000462055, -0.015921438112854958, -0.025714008137583733, 0.015812480822205544, -0.03279625624418259, -0.011174970306456089, -0.005907548125833273, -0.02100158855319023, -0.022499756887555122, -0.028683103621006012, -0.00845783855766058, 0.0011202209861949086, 0.02209116518497467, -0.01921740733087063, -0.020661097019910812, 0.019639618694782257, -0.013095349073410034, 0.05156421288847923, 0.015117875300347805, 0.0333138033747673, -0.009050295688211918, -0.031597722321748734, 0.00702776899561286, 0.00028473700513131917, -0.0029367494862526655, -0.014668424613773823, 0.0011244771303609014, 0.008519127033650875, -0.018931392580270767, -0.0053355204872787, -0.02142379991710186, -0.006145893130451441, -0.032142508774995804, -0.02977268025279045, 0.027321133762598038, 0.011937673203647137, -0.012679947540163994, -0.0016062742797657847, 0.0047941370867192745, -0.05420643463730812, 0.01653432473540306, 0.018427465111017227, 0.028955498710274696, -0.005471717566251755, -0.017978014424443245, -0.03644633665680885, -0.006500005256384611, 0.026708247140049934, 0.014831861481070518, 0.0272257961332798, -0.015431128442287445, -0.014695664867758751, 0.009009436704218388, -0.01758304238319397, -0.006411477457731962, -0.021914109587669373, 0.0152813121676445, -0.00312231807038188, 0.010071774013340473, -0.005175489000976086, 0.0031155080068856478, -0.018686238676309586, 0.009118393994867802, -0.020198026672005653, 0.027007879689335823, 0.011147730983793736, 0.014504988677799702, 0.015839720144867897, 0.015499226748943329, 0.02417498081922531, 0.020579377189278603, -0.007327402476221323, -0.003718180116266012, -0.025754867121577263, -0.005117604974657297, -0.004613676108419895, 0.020020969212055206, 0.010180731303989887, -0.011433744803071022, -0.008573605678975582, -0.0014709284296259284, 0.012400743551552296, -0.0030610293615609407, 0.005233372561633587, -0.04649768024682999, -0.022240983322262764, -0.007415930740535259, -0.024283938109874725, 0.02158723585307598, -0.004797542002052069, 0.04284759983420372, -0.01004453469067812, 0.0225133765488863, -0.019980110228061676, 0.017596662044525146, -0.011658469215035439, 0.0010870229452848434, -0.03938819468021393, 0.010030915029346943, 0.013558418489992619, -0.023276079446077347, 0.017978014424443245, -0.011372455395758152, -0.026000021025538445, 0.009758520871400833, 0.02685806341469288, 0.01409639697521925, -0.0119444839656353, 0.01720169000327587, 0.0011636337731033564, 0.00015875471581239253, 0.0037045604549348354, -0.015335790812969208, -0.030099553987383842, 0.010991103947162628, 0.021124165505170822, -0.0024634646251797676, 0.02346675656735897, -0.03712732344865799, 0.021491898223757744, 0.010493984445929527, 0.013286024332046509, 0.008587225340306759, -0.03742695599794388, 0.013299643993377686, -0.018018873408436775, 0.010677850805222988, 0.007858571596443653, -0.0020821127109229565, -0.011174970306456089, -0.02263595350086689, -0.006275280378758907, 0.015471987426280975, 0.00849869754165411, -0.026572048664093018, 0.02358933351933956, 0.020061830058693886, -0.005008647218346596, -0.008348880335688591, -0.02059299871325493, -0.0025775297544896603, 0.011849145404994488, -0.006816663779318333, -0.03707284480333328, -0.001018924405798316, -0.01221687812358141, 0.02619069814682007, 0.001777371857315302, -0.026108980178833008, 0.005781565792858601, -0.022363560274243355, -0.022540615871548653, -0.015608184970915318, -0.012598229572176933, 0.024324797093868256, 0.02985439822077751, 0.0007682366413064301, 0.022186502814292908, 0.015880579128861427, -0.00395652512088418, 0.017024634405970573, -0.0037011555396020412, -0.005669203121215105, -0.004576221574097872, 0.0034338687546551228, -0.01016711164265871, 0.0017237442079931498, -0.03633737936615944, 0.0014224081533029675, 0.02601364068686962, -0.0008920908439904451, 0.00868937373161316, -0.0034645129926502705, -0.007463599555194378, 0.003636461915448308, -0.02555057220160961, 0.004760087933391333, 0.020306983962655067, 0.011746997945010662, 0.003239787882193923, -0.01925826631486416, -0.03094397485256195, 0.0008444218547083437, -0.01355160865932703, -0.017896296456456184, -0.019149309024214745, 0.0005545774474740028, -0.020524898543953896, 0.021124165505170822, -0.035247802734375, -0.028628624975681305, 0.0040007890202105045, -0.032850734889507294, 0.04475435987114906, -0.019734956324100494, 0.012754855677485466, 0.03266005963087082, -0.00014556062524206936, -0.008205873891711235, -0.0001880158088169992, 0.012679947540163994, 0.014818241819739342, -0.022023066878318787, 0.016983775421977043, -0.021273983642458916, 0.004831591155380011, -0.001550092943944037, 0.006799639202654362, -0.00549214705824852, 0.007565747480839491, -0.012911482714116573, 0.006683871615678072, -0.01983029395341873, 0.0274028517305851, -0.001059783506207168, -0.010364597663283348, -0.0003366621385794133, -0.008171824738383293, -0.0029078074730932713, 0.006462551187723875, -0.02180515229701996, -0.009295450523495674, 0.011113680899143219, 0.006520435214042664, 0.002924832282587886, -0.0029725010972470045, 0.0031989288982003927, -0.0017135294619947672, 0.01871347799897194, -0.04126771539449692, 0.0030593269038945436, 0.1973223239183426, -0.011324786581099033, 0.006309329532086849, 0.03478473424911499, -0.011236258782446384, 0.02664014883339405, 0.026204317808151245, -0.0004941400256939232, -0.010786808095872402, -0.013537988997995853, -0.006374022923409939, 0.024324797093868256, -0.011270307935774326, 0.0032959692180156708, 0.009520175866782665, -0.006547674536705017, -0.03492093086242676, -0.01265270821750164, 0.001075105625204742, -0.06668208539485931, 0.01039864681661129, -0.012897863052785397, 0.0031989288982003927, -0.011896814219653606, 0.012203257530927658, 0.00912520382553339, -0.01624831184744835, -0.010446315631270409, 0.026830824092030525, -0.002410688204690814, -0.01720169000327587, -0.00022940694179851562, -0.008260352537035942, 0.007429550401866436, -0.010895766317844391, 0.004548982251435518, 0.02914617396891117, 0.010194350965321064, 0.02326245978474617, -0.015172353945672512, 0.003561553545296192, -0.01624831184744835, 0.004235729109495878, -0.002056575845927, -0.012339455075562, 0.01582610048353672, -0.018863294273614883, -0.008273972198367119, -0.025945542380213737, 0.02734837308526039, -0.016983775421977043, 0.022704051807522774, 0.04513571038842201, 0.013762714341282845, -0.0055568404495716095, -0.010221590287983418, -0.002272788668051362, 0.021982207894325256, -0.01043950580060482, 0.005825829692184925, -0.019653238356113434, 0.019571520388126373, -0.0005111646605655551, 0.019680477678775787, -0.022104784846305847, 0.02890102006494999, -0.0042765880934894085, -0.0053116860799491405, 0.01253013126552105, -0.02613621950149536, -0.0031870114617049694, -0.013251975178718567, 0.0019322959706187248, -0.005873498972505331, -0.02572762779891491, -0.011093251407146454, 0.026367753744125366, -0.02881930209696293, 0.025904683396220207, 0.0014070860343053937, 0.008192254230380058, -0.01649346575140953, 0.0019476182060316205, -0.0033674726728349924, -0.014791002497076988, -0.02993611805140972, -0.0024464400485157967, -0.020987968891859055, -0.028955498710274696, 0.008430599234998226, -0.013803573325276375, -0.01938084326684475, -0.0016913973959162831, -0.006517029833048582, 0.0006635351455770433, 0.0021434014197438955, 0.011195399798452854, 0.0076610855758190155, 0.0024481425061821938, -0.0032346805091947317, -0.011597180739045143, -0.010950244963169098, 0.02514198049902916, 0.007014149334281683, -0.04050501063466072, 0.019231026992201805, 0.019435321912169456, 0.0067826141603291035, 0.01338136289268732, -0.006809853948652744, 0.014123636297881603, 0.006026720628142357, 0.006203776691108942, -0.026027260348200798, 0.022581474855542183, 0.023480376228690147, -0.006251445971429348, -0.014886340126395226, -0.0026967020239681005, 0.01306810975074768, 0.016152972355484962, -0.037563152611255646, 0.00481456657871604, 0.008662134408950806, -0.0008069676696322858, -0.019775815308094025, -0.022581474855542183, 0.01853642240166664, 0.01374228484928608, 0.0044808839447796345, 0.026612907648086548, -0.05131905898451805, 0.007102677598595619, -0.004143795929849148, -0.029963357374072075, 0.03241490572690964, -0.0022813009563833475, -0.02158723585307598, 0.024106882512569427, -0.011100061237812042, 0.0038884265813976526, 0.004858830478042364, 0.010929815471172333, 0.009486126713454723, -0.00636721309274435, 0.0007486583199352026, 0.01671138033270836, -0.014069157652556896, 0.014927199110388756, 0.0035649584606289864, -0.035275042057037354, -0.003280647099018097, 0.012496082112193108, -0.006612367928028107, 0.012387123890221119, -0.00795390922576189, -0.010487174615263939, -0.04219385236501694, 0.012577800080180168, 0.014028298668563366, -0.011018343269824982, 0.0110660120844841, 0.020157167688012123, 0.000747807091102004, -0.01327921450138092, -0.018155070021748543, -0.17378747463226318, 0.025496091693639755, 0.006282090209424496, -0.005866689141839743, 0.03598326817154884, 0.030208511278033257, 0.029091695323586464, 0.024964923039078712, 0.004218704532831907, -0.006510220002382994, 0.02960924431681633, 0.014450510032474995, -0.021110545843839645, -0.01582610048353672, -0.008396550081670284, 0.014518608339130878, -0.018890533596277237, 0.02797487936913967, 0.029799919575452805, 0.022404419258236885, 0.008219493553042412, -0.013224735856056213, 0.004504718352109194, 0.0042936126701533794, -0.019775815308094025, 0.0015143412165343761, 0.004531957674771547, 0.01269356720149517, 0.0034934550058096647, -0.011454174295067787, -0.018808815628290176, 0.036064986139535904, -0.006959670688956976, -0.026844443753361702, 0.014600326307117939, 0.023616572842001915, -0.01338136289268732, -0.008130965754389763, 0.0031682844273746014, 0.009758520871400833, 0.01804611273109913, -0.012768476270139217, 0.01741960644721985, -0.010010484606027603, -0.001194278127513826, 0.03794450685381889, -0.009247781708836555, -0.021410180255770683, 0.006837093271315098, -0.020933490246534348, 0.014709284529089928, -0.004252753686159849, 0.023194361478090286, 0.005791780538856983, 0.03118913061916828, 0.02698064036667347, 0.013633327558636665, 0.0066566322930157185, 2.7957641577813774e-05, -0.03148876503109932, 0.0035206943284720182, -0.0033913070801645517, 0.0017484299605712295, -0.012918292544782162, -0.0042221094481647015, -0.008764281868934631, -0.0199664905667305, 0.0007490839343518019, -0.01786905713379383, 0.010146682150661945, -0.004092722199857235, 0.0029316421132534742, 0.01612573303282261, -0.01604401506483555, 0.0055704605765640736, -0.004062077961862087, -0.03252386301755905, 0.00958146434277296, -0.0032738372683525085, -0.020783673971891403, -0.036064986139535904, 0.03726352006196976, -0.007967528887093067, -0.013415412046015263, 0.014709284529089928, 0.017065493389964104, -0.004337877035140991, -0.008594035170972347, -0.015267692506313324, -0.0018812221242114902, 0.01192405354231596, -0.029336849227547646, -0.0030014431104063988, -0.023235220462083817, 0.02358933351933956, 0.018727097660303116, 0.019571520388126373, -0.029118934646248817, 0.00849869754165411, -0.01253013126552105, -0.0011789558921009302, -0.022227361798286438, -0.01829126663506031, 0.03451233729720116, 0.025400754064321518, 0.007858571596443653, -0.0020242291502654552, 0.01323835551738739, 0.017474085092544556, -0.0045898412354290485, -0.009799379855394363, 0.008287591859698296, 0.019598759710788727, -0.00502226734533906, 0.015117875300347805, 0.03908856213092804, -0.024202220141887665, -0.017351508140563965, 0.02100158855319023, -0.017024634405970573, 0.060907330363988876, -0.011372455395758152, -0.005182298831641674, -0.005836044903844595, -0.010146682150661945, -0.026871683076024055, -0.11288013309240341, 0.0006482129683718085, 0.0010793617693707347, 0.017174450680613518, 0.0026643553283065557, 0.009206922724843025, -0.016398128122091293, 0.0072456845082342625, 0.005144844297319651, 0.007150346413254738, -0.022649573162198067, -0.02922789193689823, -0.002725644037127495, -0.009935576468706131, 0.02392982691526413, -0.03516608476638794, -0.009935576468706131, -0.01859090104699135, 0.0013875076547265053, 0.027253035455942154, -0.00663960725069046, -0.028710342943668365, 0.018468324095010757, -0.014150876551866531, 0.026299655437469482, -0.005461502820253372, -0.02489682473242283, 0.01284338440746069, 0.03007231466472149, 0.004136986099183559, -0.01590781845152378, -0.005791780538856983, 0.017487704753875732, -0.0034066294319927692, -0.008866429328918457, -0.018400225788354874, -0.029827158898115158, -0.010575703345239162, 0.011243068613111973, -0.031080173328518867, 0.021954968571662903, -0.013394982554018497, 0.01833212561905384, -0.022227361798286438, 0.006329759024083614, 0.018100591376423836, -0.025700388476252556, 0.004824781324714422, 0.014709284529089928, -0.02589106373488903, -0.026149839162826538, 0.011420125141739845, -0.03658253327012062, -0.015880579128861427, 0.01578524149954319, -0.015689903870224953, 0.032932452857494354, -0.0026949995663017035, -0.00795390922576189, -0.015962297096848488, -0.015621804632246494, 0.006411477457731962, -0.006670251954346895, 0.02619069814682007, 0.006615772843360901, 0.013871672563254833, -0.019231026992201805, -0.014491369016468525, 0.03486645221710205, 0.012332645244896412, -0.00954060535877943, 0.002705214312300086, -0.025169219821691513, 0.014627565629780293, -0.014123636297881603, 0.024992164224386215, -0.02247251756489277, 0.01342903170734644, 0.01808697171509266, -0.00971085112541914, -0.001619042712263763, -0.028710342943668365, 0.008233113214373589, -0.003537719137966633, 0.03532952070236206, 0.019816674292087555, 0.019176548346877098, -0.020198026672005653, -0.004926929250359535, -0.02083815261721611, -0.006217396352440119, 0.007211635354906321, -0.012870623730123043, -0.014232594519853592, 0.0033538530115038157, 0.043746501207351685, 0.015199593268334866, -0.006064174696803093, -0.010071774013340473, 0.002293218160048127, -0.021982207894325256, 0.013449461199343204, -0.06728135794401169, 0.024733388796448708, 0.006571508944034576, 0.02322160080075264, -0.0005520237609744072, -0.018441084772348404, 0.020143548026680946, -0.014396030455827713, -0.0008052652119658887, -0.008348880335688591, -0.01083447691053152, 0.02555057220160961, -0.013095349073410034, -0.007409120909869671, -0.020810913294553757, -0.01334050390869379, -0.0032772421836853027, -0.010684660635888577, 0.00569984782487154, -0.009431647136807442, 0.0035683633759617805, 0.005025672260671854, 0.02279939129948616, -0.0026915946509689093, -0.029636483639478683, 0.01628917083144188, 0.0026592479553073645, 0.01736512780189514, -0.011876384727656841, -0.02012992836534977, 0.005526196211576462, -0.03394031152129173, 0.005100580397993326, 0.022458897903561592, -0.0022659788373857737, 0.013435841538012028, -0.016861198469996452, 0.0004468966508284211, 0.0014700772007927299, 0.04919438436627388, -0.020565757527947426, -0.005611319560557604, 0.010923005640506744, -0.023711910471320152, 0.02890102006494999, 0.030807778239250183, -0.012952341698110104, -0.0050154575146734715, 0.015417508780956268, -0.0131157785654068, 0.011311166919767857, 0.031161891296505928, -0.0031121030915528536, -0.03298693150281906, -0.008886858820915222, -0.015540086664259434, 0.030426425859332085, -0.02471976913511753, 0.013680996373295784, -0.04118599742650986, 0.02580934576690197, -0.015812480822205544, 0.010534843429923058, -0.017514944076538086, 0.02493768371641636, -0.010242019779980183, -0.006789423990994692, -0.012911482714116573, -0.015485607087612152, -0.038734447211027145, 0.002788635203614831, 0.003341935807839036, 0.011147730983793736, 0.009949196130037308, 0.010609752498567104, 0.02609536051750183, -0.01137926522642374, 0.007395501248538494, -0.015962297096848488, 0.003141045104712248, -0.006898381747305393, -0.012850194238126278, -0.02296282723546028, 0.013088539242744446, 0.03938819468021393, -0.00830802135169506, -0.002592851873487234, 0.011556321755051613, -0.016520705074071884, -0.0006196966860443354, 0.011229448951780796, -0.011733378283679485, -0.014695664867758751, -0.010133062489330769, 0.002466869540512562, 0.008914098143577576, -0.01786905713379383, 0.015580945648252964, 0.04521742835640907, 0.03225146606564522, -0.016261931508779526, 0.02100158855319023, -0.0014760358026251197, -0.01720169000327587, -0.00804243702441454, -0.007443170063197613, -0.012312215752899647, -0.014423270709812641, 0.007810902316123247, 0.014750143513083458, 0.014028298668563366, -0.0036500815767794847, 0.020143548026680946, 0.011508652940392494, -0.014137256890535355, -0.00022749167692381889, 0.0069698854349553585, -0.01675224117934704, -0.022200122475624084, 0.019285505637526512, 0.01808697171509266, 0.04064120724797249, 0.00916606280952692, 0.012393933720886707, 0.010269259102642536, 0.018141450360417366, 0.007334212306886911, 0.022104784846305847, 0.006374022923409939, -0.0003983764327131212, 0.006125463638454676, -0.0007073735469020903, -0.05428815260529518, 0.001173848519101739, -0.005968836601823568, -0.028492428362369537, -0.011849145404994488, 0.015117875300347805, -0.017024634405970573, 0.04756001755595207, 0.021723434329032898, -0.014573086984455585, -0.006745160091668367, 0.016438987106084824, 0.03320484608411789, 0.023902587592601776, -0.003680726047605276, 0.004743063356727362, -0.02021164633333683, 0.009234162047505379, -0.021600855514407158, 0.005369569640606642, -0.014831861481070518, 0.001780776772648096, 0.0045013134367764, 0.0009652967564761639, 0.038189660757780075, -0.038107942789793015, -0.013272404670715332, 0.02680358476936817, -0.0030848637688905, 0.03287797421216965, 0.0036228422541171312, -0.019231026992201805, -0.007681515067815781, 0.006636202335357666, 0.009309070184826851, 0.026708247140049934, -0.02797487936913967, -0.0026949995663017035, 0.01253013126552105, -0.011324786581099033, -0.007102677598595619, 0.02643585205078125, 0.008403359912335873, -0.0008618721039965749, -0.034348901361227036, 0.003755634417757392, -0.0022217147052288055, -0.006840498186647892, 0.006169727537781, -0.024569952860474586, -0.01841384544968605, 0.035601913928985596, -0.00943845696747303, -0.01904035173356533, -0.01035778783261776, -0.015444748103618622], "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff": [-0.007404752541333437, -0.02964581549167633, -0.008490336127579212, 0.005451371893286705, -0.005548538640141487, 0.031200477853417397, -0.015184768475592136, -0.02092093974351883, -0.022931279614567757, -0.024472540244460106, 0.025276675820350647, 0.0006248807185329497, -0.002248230390250683, -0.0002546430623624474, -0.008141877129673958, 0.020813720300793648, 0.02849321998655796, -0.0005984950112178922, 0.034363411366939545, -0.026831338182091713, -0.005568642169237137, -0.004476357251405716, -0.010440366342663765, 0.03114686906337738, -0.023601392284035683, 0.026831338182091713, 0.02884167805314064, -0.007290833164006472, 0.017141500487923622, -0.02130960486829281, -0.01068830769509077, 0.014045575633645058, 0.0075722807087004185, -0.001627537771128118, -0.04288725554943085, -0.015506423078477383, 6.674956966890022e-05, -0.035864464938640594, 0.015828076750040054, 0.008899105712771416, 0.002129285130649805, -0.009100139141082764, -0.009086737409234047, -0.0042150127701461315, -0.027354026213288307, 0.012417200021445751, 0.015828076750040054, -0.017369337379932404, -0.021591052412986755, 0.0206528939306736, 0.012732153758406639, -0.0059975143522024155, -0.029163332656025887, -0.0007166024879552424, -0.016592007130384445, -0.00917385146021843, 0.02277045138180256, 0.02561173215508461, -0.013737323693931103, 0.008946013636887074, -0.0017071138136088848, 0.007860429584980011, 0.005387711338698864, -0.0022180750966072083, -0.037740785628557205, -0.011552753858268261, 0.010493975132703781, 0.005464774556457996, -0.01742294803261757, -0.018160071223974228, 0.018253887072205544, 0.0024090574588626623, -0.0023923045955598354, 0.010333147831261158, 0.02246220037341118, -0.025558123365044594, -0.017932232469320297, -0.021336408331990242, -0.028707655146718025, 0.0012539495946839452, -0.007411453872919083, -0.03594487905502319, -0.012162557803094387, 0.006523553282022476, 0.02341376058757305, -0.005488228518515825, 0.02419109269976616, 0.031629350036382675, -0.006640823557972908, -0.0017674239352345467, 0.007840326055884361, 0.023735415190458298, 0.015948697924613953, 0.0001971599122043699, -0.01361000258475542, 0.0043088290840387344, -0.017892027273774147, 0.01645798422396183, 0.003809594316408038, -0.027474647387862206, -0.008952714502811432, -0.002281735884025693, -0.026121018454432487, -0.0006412147195078433, -0.019821953028440475, 0.012953290715813637, -0.01899101212620735, -0.006697782780975103, 0.006811702158302069, -0.017637383192777634, -0.006915569771081209, 0.041091348975896835, -0.022489003837108612, -0.032165441662073135, -0.01726211979985237, -0.02768908441066742, 0.017945636063814163, -0.02368180640041828, -0.020358042791485786, -0.018897196277976036, -3.5796094834950054e-06, 0.024043666198849678, -0.007981049828231335, -0.014715689234435558, 0.0037023762706667185, 0.013475979678332806, 0.001313422224484384, -0.025584928691387177, 0.007639292161911726, 0.007947544567286968, 0.029940664768218994, 0.0035583018325269222, 0.005850089713931084, -0.008235692977905273, 0.006717886310070753, 0.016967270523309708, -0.03961710259318352, 0.001884693861939013, -0.011164088733494282, -0.023735415190458298, 0.01557343453168869, 0.0022432045079767704, -0.004573523532599211, -0.022140545770525932, -0.018066255375742912, 0.009080035611987114, 0.03846450522542, 0.011559455655515194, -0.023641599342226982, 0.022971484810113907, 0.014675482176244259, -0.00017464828852098435, 0.021818891167640686, -0.019821953028440475, 0.016739431768655777, -0.0068452078849077225, 0.015854882076382637, -0.0017355935415253043, 0.014541460201144218, -0.01201513223350048, 0.022354980930685997, 0.027849910780787468, 0.009053231216967106, -0.007324338890612125, 0.003993875812739134, 0.029056115075945854, -0.0009431845392100513, 0.015426008962094784, -0.025142652913928032, -0.012108948081731796, 0.017235316336154938, 0.02657669596374035, -0.043664585798978806, 0.007069695740938187, 0.004533316940069199, -0.005809882655739784, 0.042967669665813446, 0.017235316336154938, -0.019245656207203865, 0.0051230164244771, -0.03492630645632744, 0.0006428899941965938, 0.03087882325053215, 0.015104355290532112, -0.013991966843605042, 0.005079459398984909, -0.0219529140740633, -0.020398249849677086, -0.005806532222777605, 0.00098087836522609, 0.024003461003303528, 0.018602347001433372, -0.02238178625702858, -0.013871346600353718, -0.6394489407539368, -0.017235316336154938, -0.011063571088016033, -0.005210131406784058, -0.012263074517250061, -0.0050124479457736015, -0.004312179517000914, -0.010333147831261158, -0.010353251360356808, 0.013020302169024944, -0.030503559857606888, -0.01602911204099655, -0.007069695740938187, -0.011901212856173515, -0.037553153932094574, -0.014139391481876373, 0.025035435333848, -0.01954050548374653, 0.009435196407139301, -0.00873157661408186, -0.014742493629455566, -0.005116315558552742, 0.009468701668083668, 0.0019902365747839212, -0.013301749713718891, -0.013663611374795437, 0.008664566092193127, -0.009341380558907986, 0.008584151975810528, 0.024633366614580154, -0.03999236598610878, 0.025906581431627274, 0.024351919069886208, 0.018026048317551613, 0.047551244497299194, -0.009998091496527195, -0.030235514044761658, 0.021483834832906723, 0.019942574203014374, 0.02246220037341118, -0.021751878783106804, -0.0155198248103261, 0.027166394516825676, -0.007532074116170406, -0.0006726262508891523, 0.02080031856894493, -0.0068083517253398895, -0.011968224309384823, -0.0006156666204333305, 0.009783655405044556, -0.013857943937182426, -0.002534703817218542, -0.019125035032629967, -0.018870392814278603, -0.009676436893641949, -0.0031076506711542606, 0.018334301188588142, -0.016471385955810547, 0.007981049828231335, -0.0005675022257491946, 0.014112587086856365, 0.018629150465130806, -0.0029484988190233707, -0.009354782290756702, -0.012524418532848358, 0.010071803815662861, -0.015010539442300797, -0.0037492841947823763, 0.025196261703968048, -0.006627420894801617, 0.013583197258412838, 0.015707457438111305, 0.0011081999400630593, -0.01907142624258995, 0.024740584194660187, 0.013690415769815445, 0.02022402174770832, -0.019553907215595245, 0.007022787816822529, 0.017248718068003654, 0.004271972458809614, -0.0028932143468409777, -0.02307870425283909, -0.012698648497462273, 0.010762020014226437, -0.021202387288212776, -0.005900348071008921, 0.040287215262651443, -0.011659972369670868, 0.011177490465342999, 0.007987751625478268, 0.013717220164835453, -0.0007279106066562235, 0.009287770837545395, 0.042672816663980484, 0.0063526746816933155, -0.01991576887667179, 0.0011768866097554564, 0.0034376815892755985, -0.01791883073747158, -0.0027256859466433525, -0.021349811926484108, 0.009977987967431545, -0.01907142624258995, -0.00011758394975913689, -0.01050067599862814, -0.04160063713788986, 0.0006877038395032287, 0.0589163675904274, -0.03176337108016014, -0.011023364961147308, -0.020827123895287514, -0.020291032269597054, -0.002449264284223318, 0.02703237347304821, -0.023587990552186966, 0.009977987967431545, 0.0031244035344570875, 0.0191920455545187, -0.017020879313349724, 0.026750925928354263, -0.007699602283537388, 0.004194909706711769, -0.019781745970249176, 0.008845495991408825, 0.023051898926496506, 0.0061951978132128716, -0.007089799270033836, -0.013174428604543209, -0.01340226735919714, 0.020103400573134422, -0.016659017652273178, 0.006928971968591213, 0.016109524294734, 0.003330463310703635, -0.011988327838480473, 0.03476548194885254, 0.021778684109449387, 0.016605408862233162, -0.026777729392051697, 0.0036755716428160667, 0.003363969037309289, 0.00015705781697761267, -0.0001711930235615, 0.0027943726163357496, -0.024016862735152245, -0.03602529317140579, 0.025008630007505417, -0.040394432842731476, -0.0026000398211181164, -0.006868661846965551, -0.0192724596709013, -0.0042150127701461315, 0.005364257376641035, 0.010239331983029842, -0.006141589023172855, -0.023212727159261703, 0.01078882534056902, 0.003957019187510014, -0.02610761672258377, -0.011217697523534298, 0.0038632035721093416, -0.02653648890554905, 0.016176536679267883, 0.022448796778917313, -0.014407437294721603, -0.009187254123389721, 0.02219415456056595, -0.00493203429505229, -0.04031401872634888, 0.012316683307290077, -0.003112676553428173, 0.0032701531890779734, 0.058541104197502136, -0.02238178625702858, 0.012799165211617947, -0.01472909189760685, -0.006697782780975103, -0.006335921585559845, 0.0015739287482574582, -0.013000198639929295, 0.007217120844870806, -0.007786717265844345, -0.02114877663552761, 0.03465826436877251, 0.0017062760889530182, -0.00033924487070180476, -0.010527480393648148, 0.008698071353137493, 0.023547783493995667, -0.01565384864807129, 0.008778484538197517, 0.011204294860363007, -0.0029937312938272953, -0.0024743934627622366, -0.0012564625358209014, 0.024713780730962753, 0.03725830093026161, -0.010614595375955105, 0.008316107094287872, 0.01795903779566288, 0.008617658168077469, 0.02018381468951702, -5.334730667527765e-05, -0.010668204165995121, -0.028975700959563255, 0.009683137759566307, 0.001581467455253005, 0.032165441662073135, -0.01486311387270689, 0.004972240887582302, -0.026255041360855103, -0.007518671918660402, -0.004024030640721321, 0.014313621446490288, 0.034631457179784775, 0.004369139205664396, 0.005900348071008921, -0.0039804731495678425, 0.0010738566052168608, 0.010239331983029842, -0.006875363178551197, 0.00986406859010458, -0.00855734758079052, -0.016042513772845268, -0.005293895490467548, 0.012524418532848358, 0.025598330423235893, 0.02038484811782837, -0.007404752541333437, 0.021095167845487595, 0.008349612355232239, 0.008296003565192223, 0.018294094130396843, 0.003983824048191309, -0.009093438275158405, 0.01880338042974472, 0.0010445391526445746, 0.030208710581064224, -0.04063567519187927, -0.017637383192777634, -0.0036889740731567144, 0.026402465999126434, -0.02256941795349121, -0.006798299960792065, -0.004804712720215321, -0.008188785053789616, 0.022582819685339928, 0.02692515403032303, 0.032433487474918365, -0.0022800606675446033, -0.024820998311042786, 0.000495046260766685, -0.008316107094287872, 0.01464867778122425, -0.03195100650191307, 0.0023655002005398273, 0.02100135199725628, 0.0020421703811734915, 0.04385221749544144, 0.01464867778122425, 0.0008020419045351446, 0.02042505517601967, 0.012021833099424839, 0.059666894376277924, -0.0009004648309201002, 0.014353827573359013, 0.020398249849677086, -0.03315720707178116, -0.02752825617790222, -0.00792074017226696, -0.009663034230470657, 0.01184090320020914, -7.737715350231156e-05, -0.0024928217753767967, 0.0037559852935373783, -0.00256150821223855, -0.00980375800281763, 0.021363213658332825, 0.0014357178006321192, -0.020585881546139717, -0.024512747302651405, 0.0325407050549984, 0.015426008962094784, 0.007860429584980011, -0.0205322727560997, -0.02250240556895733, 0.006593915168195963, -0.009006323292851448, 0.022556016221642494, -0.0016911985585466027, -0.0007618351373821497, 0.023199323564767838, -0.010400159284472466, 9.339705138700083e-05, 0.001996937906369567, 0.026348857209086418, -0.018093060702085495, 0.03227265924215317, -0.016136329621076584, 0.008637760765850544, -0.006379479076713324, -0.01960751600563526, 0.0005423729890026152, 0.014943527989089489, -0.002224776428192854, 0.00440264493227005, -0.019553907215595245, 0.012758958153426647, -0.010132113471627235, -0.0035113939084112644, -0.03433660790324211, -0.002574910642579198, -0.0014616847038269043, 0.0011768866097554564, 0.009850665926933289, -0.016122927889227867, 0.019634321331977844, 0.017020879313349724, -0.007243925239890814, -0.01811986416578293, -0.009562517516314983, 0.002387278713285923, 0.002931745955720544, 0.10142835974693298, 0.015600238926708698, -0.009368184953927994, 0.005528435111045837, 0.0048080631531775, 0.01186100672930479, -0.024740584194660187, -0.025625133886933327, 0.035891272127628326, 0.011566156521439552, 0.009944481775164604, -0.026134420186281204, 0.025772560387849808, -0.004010628443211317, 0.020974548533558846, -0.005347504746168852, -0.014514654874801636, 0.0070160869508981705, 0.007076397072523832, 0.00274076359346509, 0.001145056216046214, 0.010574388317763805, 0.003142831614241004, 0.01397856418043375, -0.031816981732845306, -0.014742493629455566, 0.017932232469320297, 0.013616703450679779, 0.022274568676948547, -0.01711469516158104, -0.003271828405559063, 0.02264983206987381, 0.031977809965610504, 0.010835733264684677, 0.0016124602407217026, 0.0012397096725180745, 0.005317349452525377, 0.018696162849664688, 0.00040416212868876755, -0.011907914653420448, 0.02157765068113804, 0.011204294860363007, 0.016565201804041862, -0.007934141904115677, 0.004600328393280506, 0.015238377265632153, -0.00019914931908715516, -0.007089799270033836, -0.02865404635667801, 0.0009029777138493955, 0.04050165042281151, -0.000722884782589972, -0.021550845354795456, -0.002762542339041829, 0.026911752298474312, 0.009267667308449745, -0.00030950861400924623, -0.01730232685804367, -0.016350766643881798, 0.02902930974960327, -0.007666096556931734, 0.015278584323823452, 0.010433664545416832, -0.012584729120135307, -0.027327222749590874, -0.016752833500504494, -0.029243746772408485, -0.013047106564044952, -0.01980855129659176, 0.033210817724466324, -0.021081766113638878, -0.008637760765850544, -0.018320899456739426, 0.000652104034088552, 0.006255507934838533, 0.008811990730464458, 0.020170411095023155, -0.01397856418043375, -0.002966926898807287, -0.01777140609920025, -0.013120819814503193, -0.03422939032316208, 0.02230137214064598, -0.02910972386598587, -0.014058978296816349, 0.0014022121904417872, 0.005484877619892359, 0.01688685640692711, -0.032513901591300964, 0.018548738211393356, -0.00016805186169221997, 0.032085027545690536, 0.018642554059624672, -0.009220759384334087, 0.006711185444146395, -0.00853724405169487, -0.010353251360356808, 0.0039302147924900055, -0.01787862367928028, -0.018629150465130806, 0.019969377666711807, -0.050017260015010834, 0.010239331983029842, 0.0029066167771816254, 0.0074583617970347404, -0.015385802835226059, 0.0007635104120709002, -0.001884693861939013, -0.027796301990747452, -0.018026048317551613, 0.01249761413782835, -0.01814666949212551, 0.0021879200357943773, -0.014300218783318996, 0.013214635662734509, -0.0009121918119490147, 0.0024743934627622366, 0.021859098225831985, 0.009354782290756702, 0.007257327437400818, -0.017744600772857666, -0.029833447188138962, -0.0019064724911004305, 0.0032986330334097147, -0.020585881546139717, 0.0025213013868778944, -0.0008330346900038421, -0.01355639286339283, 0.0070428913459181786, -0.004097742959856987, 0.03044995106756687, -0.0003712846664711833, 0.0008409922593273222, -0.02164466120302677, -0.018562139943242073, 0.00417145574465394, -0.021349811926484108, -0.001202015788294375, -0.008925910107791424, 0.014394034631550312, -0.021859098225831985, -0.008899105712771416, 0.0020120153203606606, -0.031816981732845306, 0.0041144960559904575, -0.022891072556376457, -0.025893179699778557, 0.02180548757314682, -0.025089044123888016, -0.007384649012237787, 0.0007501081563532352, -0.040394432842731476, -0.032219048589468, -0.007612487766891718, 0.003628663718700409, -0.026429271325469017, 0.008302704431116581, -0.010192424058914185, 0.03235307335853577, -0.00025380542501807213, 0.021778684109449387, -0.025022031739354134, 0.00790063664317131, 0.005156522151082754, -0.003585106460377574, 0.015774467960000038, -0.013482680544257164, -0.024700378999114037, -0.040126387029886246, -0.020210618153214455, 0.034899502992630005, 0.016364168375730515, -0.00034427072387188673, 0.0004473006702028215, -0.009522310458123684, 0.02726021036505699, -0.014032173901796341, -0.0019098230404779315, -0.02415088564157486, -0.04417387396097183, -0.022167349234223366, -0.013951759785413742, -0.006975879892706871, -0.0014114262303337455, -0.020572479814291, 0.02184569463133812, 0.06009576469659805, 0.0055183833464980125, 0.0017590475035831332, -0.014219805598258972, 0.014032173901796341, -0.012343487702310085, 0.0016627187142148614, 0.005066056735813618, 0.02084052562713623, -0.0076794992201030254, 0.023789023980498314, 0.0018612397834658623, 0.014353827573359013, -0.007290833164006472, 0.0015580134931951761, 0.02022402174770832, -0.003856502240523696, -0.01011201087385416, -0.02742103859782219, 0.009100139141082764, -0.0161497313529253, -0.03988514840602875, 0.013174428604543209, -0.04310169070959091, -0.0073511432856321335, -0.009616126306355, -0.017396142706274986, -0.03342525288462639, -0.027099383994936943, -0.00142315321136266, 0.005273791961371899, 0.004295426420867443, -0.014367230236530304, -0.026295248419046402, 0.01553322747349739, -0.016082720831036568, 0.05106263607740402, 0.0029300707392394543, 0.02676432766020298, -0.0001465872919652611, -0.013469278812408447, 0.014983734115958214, 0.00423846673220396, -0.001918199472129345, -0.019848758354783058, 0.02102815732359886, 0.008316107094287872, -0.009113541804254055, 0.0006165042868815362, -0.024593159556388855, -0.004918632097542286, -0.03439021855592728, -0.03565002977848053, 0.020022986456751823, 0.00990427564829588, -0.010587790980935097, 0.0043222312815487385, -0.0017942284466698766, -0.0355428121984005, 0.023695208132267, 0.006607317831367254, 0.01009190734475851, -0.012779061682522297, -0.016873454675078392, -0.037017062306404114, 0.009763551875948906, 0.013355359435081482, 0.020197216421365738, 0.02026422694325447, -0.03342525288462639, -0.021296203136444092, 0.01707448810338974, -0.00834291148930788, -0.000881199084687978, -0.010339848697185516, 0.017972439527511597, -0.0016535046743229032, 0.010849134996533394, 0.002806099597364664, 0.007914038375020027, -0.013723921030759811, -0.001826058840379119, -0.024365320801734924, 0.026134420186281204, 0.011351720429956913, 0.015037343837320805, 0.0118476040661335, 0.018977610394358635, 0.014528057537972927, 0.019098229706287384, -0.007062994875013828, -0.0021075063850730658, -0.0064029330387711525, -0.00570936594158411, 0.006791598629206419, 0.020049791783094406, 0.005340803414583206, 0.003843100043013692, -0.014809505082666874, -0.003221570048481226, 0.011793995276093483, 0.006761443801224232, 0.009790356270968914, -0.0441470667719841, -0.0379820242524147, 0.001161809079349041, -0.008651163429021835, 0.017717797309160233, -0.0004766181227751076, 0.016203340142965317, 0.0037258302327245474, 0.023293139412999153, -0.02003639005124569, 0.01641777716577053, -0.014487850479781628, 0.012685245834290981, -0.03425619378685951, 0.0032567509915679693, 0.011351720429956913, -0.01972813718020916, 0.04133259132504463, -0.00944189727306366, -0.014327023178339005, 0.011117180809378624, 0.01915184035897255, 0.015506423078477383, -0.0008326158276759088, 0.009321277029812336, 0.007940842770040035, 0.001826058840379119, 0.020974548533558846, -0.01738274097442627, -0.035516008734703064, 0.001277403556741774, 0.014956929720938206, 0.006084629334509373, 0.006550358142703772, -0.019661126658320427, 0.004553420003503561, 0.013630105182528496, 0.006242105737328529, 0.002554807113483548, -0.045782145112752914, 0.016350766643881798, -0.013777530752122402, 0.010400159284472466, 0.012309982441365719, -0.006567110773175955, -0.009616126306355, -0.02157765068113804, -0.00015213667938951403, 0.007713004481047392, 0.005756273865699768, -0.02242199331521988, 0.028198370710015297, 0.000501747359521687, -0.006982581224292517, 0.009776953607797623, -0.01987556181848049, 0.006882064044475555, 0.01672603003680706, -0.007089799270033836, -0.048891469836235046, 0.007398051209747791, -0.012591429986059666, 0.030047882348299026, -0.0014105886220932007, -0.032862357795238495, -0.00525033799931407, -0.016337363049387932, -0.02349417470395565, -0.02403026446700096, -0.007310936693102121, 0.017664188519120216, 0.03532837703824043, 0.022475602105259895, 0.00895941536873579, 0.012866176664829254, -0.016565201804041862, 0.011043468490242958, -0.003531497437506914, -0.029350964352488518, -0.010862537659704685, -0.001762398169375956, -0.0013419019524008036, 0.007197017315775156, -0.021483834832906723, -0.010560986585915089, 0.011311513371765614, 0.0015638769837096334, 0.011291409842669964, 0.00655705900862813, 0.005042602773755789, 0.00786713045090437, -0.008510439656674862, -0.0008095806697383523, 0.011244501918554306, 0.021671466529369354, 0.0011266280198469758, -0.01334195677191019, -0.022354980930685997, -0.004627132788300514, -0.007203718647360802, -0.01814666949212551, -0.020063193514943123, 0.0064531913958489895, -0.01588168554008007, 0.014528057537972927, -0.029619010165333748, -0.0007844514329917729, -0.013750726357102394, -0.01726211979985237, 0.03414897620677948, -0.009200656786561012, 0.007733108010143042, 0.03948307782411575, -0.003531497437506914, 0.003149532712996006, -0.007009385619312525, 0.00758568337187171, 0.010272837243974209, -0.030905628576874733, 0.005427917931228876, -0.02583957090973854, 0.028466414660215378, -0.002650298411026597, -0.0025598329957574606, -0.018897196277976036, 0.01588168554008007, -0.007444959133863449, -0.0074851661920547485, -0.01569405384361744, 0.027715887874364853, 0.003789491020143032, 0.00300378305837512, -0.0017590475035831332, -0.006245456635951996, -0.012892981059849262, -0.006275611463934183, -0.020009584724903107, 0.0018779926467686892, 0.004342334344983101, -0.0013670312473550439, 0.003524796338751912, -0.003030587686225772, 0.0013980240328237414, -0.0051833270117640495, 0.017168303951621056, -0.03248709440231323, 0.0031143517699092627, 0.2083248347043991, -0.01557343453168869, 0.0013544666580855846, 0.04181507229804993, -0.003933565225452185, 0.02456635609269142, 0.016873454675078392, -0.004623782355338335, -0.02038484811782837, -0.007444959133863449, 0.009126943536102772, 0.016364168375730515, -0.024740584194660187, 0.001637589535675943, 0.010011493228375912, -0.001785852131433785, -0.027179798111319542, -0.018200278282165527, 0.007491867057979107, -0.0642772763967514, 0.013281647115945816, -0.016055915504693985, 0.0024609912652522326, -0.0032198945991694927, 0.012564625591039658, 0.016256950795650482, 0.010024895891547203, -0.0013159350492060184, 0.025946788489818573, -0.014179598540067673, -0.037553153932094574, -0.009522310458123684, -0.00078235735418275, -0.007813521660864353, -0.013623404316604137, 0.025477709248661995, 0.015935296192765236, 0.017972439527511597, 0.02250240556895733, -0.00758568337187171, 0.010199124924838543, -0.01695386692881584, 0.013288347981870174, 0.0009549115202389657, 0.00027349000447429717, 0.029940664768218994, -0.007156810723245144, -0.011499145068228245, -0.03187059238553047, 0.012765659019351006, -0.025718949735164642, 0.014407437294721603, 0.028466414660215378, 0.030289122834801674, -0.009267667308449745, -0.009629528969526291, -0.007156810723245144, 0.008068164810538292, -0.009240862913429737, 0.023815829306840897, -0.028117956593632698, 0.020599285140633583, 0.012222867459058762, 0.03296957537531853, -0.01956731081008911, 0.0206126868724823, -0.007217120844870806, 0.008543944917619228, 0.017087889835238457, -0.02172507531940937, -0.015667250379920006, -0.00723052304238081, 0.005970709957182407, -0.0035214456729590893, -0.007659395691007376, -0.011646569706499577, 0.032862357795238495, -0.019594114273786545, 0.012946589849889278, 0.00010878871398745105, 0.003325437428429723, -0.02260962501168251, 0.009703241288661957, -0.012866176664829254, -0.02645607478916645, -0.03235307335853577, -0.007699602283537388, -0.01553322747349739, -0.02246220037341118, -5.465612048283219e-05, -0.014273414388298988, -0.030503559857606888, -0.018441518768668175, -0.002611766802147031, -0.004844919312745333, -0.006935673300176859, 0.011452237144112587, 0.012892981059849262, 0.0011777242179960012, -0.004724299069494009, -0.021738477051258087, -0.004600328393280506, 0.018642554059624672, 0.010607894510030746, -0.03707066923379898, 0.014916723594069481, 0.015935296192765236, 0.005139769520610571, 0.008664566092193127, 0.0005972385406494141, 0.022435395047068596, -0.00710320146754384, 0.007645993493497372, -0.02260962501168251, 0.015238377265632153, 0.030369536951184273, -0.023279737681150436, -0.010795526206493378, -0.008081567473709583, 0.013583197258412838, 0.012182660400867462, -0.015613640658557415, 0.00873157661408186, 0.016216743737459183, -0.008021256886422634, -0.013455876149237156, -0.013053808361291885, 0.015720859169960022, 0.0056892624124884605, 0.008296003565192223, 0.002397330477833748, -0.04588936269283295, 0.013348657637834549, 0.013234738260507584, -0.021832292899489403, 0.01464867778122425, -0.007163511589169502, -0.014514654874801636, 0.023641599342226982, -0.012631637044250965, 0.01783841662108898, 0.012504315003752708, 0.002568209310993552, 0.022944681346416473, -0.0011266280198469758, -0.014353827573359013, 0.009368184953927994, -0.014970332384109497, 0.001092284801416099, -0.00036374590126797557, -0.02734062448143959, 0.0034477331209927797, 0.0047913105227053165, 0.0028898639138787985, 0.02022402174770832, 0.005002396181225777, 0.0014114262303337455, -0.023252934217453003, 0.011432133615016937, 0.012738854624330997, -0.022757049649953842, 0.01645798422396183, 0.02606740966439247, -0.0026921804528683424, -0.014032173901796341, -0.021135374903678894, -0.17015518248081207, 0.02719319984316826, 0.01332185324281454, -0.017677590250968933, 0.030664386227726936, 0.020518871024250984, 0.0176105797290802, 0.004024030640721321, -0.008771783672273159, -0.008744979277253151, 0.02307870425283909, 0.014112587086856365, -0.03457785025238991, -0.022006522864103317, -0.003997226245701313, -0.010802227072417736, -0.024405527859926224, 0.004194909706711769, 0.027273613959550858, 0.03296957537531853, 0.002479419345036149, -0.010802227072417736, 0.017275521531701088, -0.00815527979284525, -0.016015708446502686, -0.008141877129673958, -0.00539441267028451, 0.024097276851534843, 0.004938735626637936, -0.019835354760289192, -0.02711278572678566, 0.024204494431614876, -0.011284708976745605, -0.029270552098751068, 0.030315928161144257, 0.011599661782383919, -0.015238377265632153, 0.0022968135308474302, -0.015291986986994743, 0.012678544968366623, 0.009991389699280262, 0.005287194158881903, 0.01903121918439865, -0.005327401217073202, 0.010983157902956009, 0.0354623980820179, -0.002184569602832198, -0.015157964080572128, 0.013281647115945816, -0.010299642570316792, 0.02022402174770832, 0.005615550093352795, 0.03672221302986145, 0.007176913786679506, 0.028814874589443207, 0.017288925126194954, 0.00919395498931408, 0.02126939781010151, -0.011921316385269165, -0.022663233801722527, 0.007733108010143042, -0.005803181789815426, 0.01596209965646267, -0.024834400042891502, -0.012021833099424839, 0.00613488769158721, -0.006211950909346342, 0.000297991035040468, -0.023561185225844383, 0.008349612355232239, 0.011519248597323895, 0.005632302723824978, 0.011298110708594322, -0.018669357523322105, -0.004486409015953541, 0.005186677444726229, -0.027930324897170067, 0.03637375310063362, -0.0013712194049730897, -0.012403798289597034, -0.03146852180361748, 0.03388093039393425, -0.012001730501651764, -0.012986796908080578, 0.013898150995373726, 0.006915569771081209, -0.014099185355007648, -0.0015203197253867984, -0.02956540137529373, -0.005749572534114122, 0.015265182591974735, -0.041627440601587296, -0.018441518768668175, -0.01795903779566288, 0.010581090115010738, 0.015452814288437366, 0.015479618683457375, -0.017556969076395035, 0.003047340549528599, -0.011244501918554306, 0.001703763147816062, -0.020250825211405754, -0.01003829762339592, 0.037660371512174606, 0.020398249849677086, 0.019835354760289192, -0.00570936594158411, 0.010701710358262062, 0.02188590168952942, 0.009977987967431545, -0.0064397891983389854, -0.011646569706499577, 0.02645607478916645, 0.01332185324281454, 0.00959602277725935, 0.04275323078036308, 0.001789202680811286, -0.010560986585915089, 0.01742294803261757, -0.015600238926708698, 0.06299065798521042, -0.021778684109449387, 0.012544522061944008, -0.0034142276272177696, -0.012437303550541401, -0.018173474818468094, -0.11826160550117493, -0.005431268829852343, 0.01600230671465397, 0.008275900036096573, -0.0019517050823196769, 0.011083674617111683, -0.012276476249098778, 0.0069088684394955635, -0.011948120780289173, 0.006087979767471552, -0.020786916837096214, -0.0310396496206522, 0.0016082720831036568, -0.016940465196967125, 0.021081766113638878, -0.03787480667233467, 0.006349324248731136, -0.022676635533571243, 0.00357170426286757, 0.037740785628557205, -0.01401877123862505, -0.017744600772857666, 0.016873454675078392, -0.021390018984675407, 0.019218850880861282, 0.003812944982200861, -0.017516763880848885, 0.012805866077542305, 0.014032173901796341, 0.012544522061944008, -0.014327023178339005, -0.004891827702522278, 0.026482880115509033, -0.007753211539238691, 0.008081567473709583, -0.010721813887357712, -0.04591616615653038, -0.002724010730162263, 0.01719510927796364, -0.02349417470395565, 0.013951759785413742, -0.009482104331254959, 0.01249761413782835, -0.0018143318593502045, 0.008188785053789616, 0.0018578892340883613, -0.020867329090833664, 0.017409544438123703, 0.007558878511190414, -0.020733308047056198, -0.032862357795238495, 0.01513115968555212, -0.04227074980735779, -0.0061181350611150265, 0.019098229706287384, -0.007022787816822529, 0.02591998502612114, 0.0030925730243325233, -0.008718174882233143, -0.00357170426286757, -0.019929170608520508, 0.008296003565192223, 0.006583863869309425, 0.01078882534056902, -0.0007429881952702999, 0.010011493228375912, -0.00922746118158102, 0.003776088822633028, 0.036856234073638916, 0.02692515403032303, -0.005913750268518925, -0.0020354692824184895, -0.020853927358984947, 0.02188590168952942, -0.015854882076382637, 0.022716842591762543, -0.03264792263507843, -0.003812944982200861, 0.023319944739341736, -0.008316107094287872, -0.0008636085549369454, -0.027287015691399574, -0.0009842290310189128, -0.02102815732359886, 0.02680453471839428, 0.019245656207203865, 0.011981626972556114, -0.024633366614580154, 0.006714535877108574, -0.025759156793355942, 0.005685911979526281, 0.011391926556825638, -0.004459604155272245, -0.019929170608520508, 0.0019416534341871738, 0.04186868295073509, 0.02283746376633644, -0.005464774556457996, -0.009388288483023643, 0.006721236743032932, -0.023159118369221687, 0.010232631117105484, -0.05521734058856964, 0.019285861402750015, 0.006248807068914175, 0.02015700936317444, -0.0020337940659374, -0.009260966442525387, 0.008637760765850544, -0.010875939391553402, -0.011606363579630852, 0.0009063283214345574, -0.014233207330107689, 0.024217896163463593, -0.01606931909918785, 0.014554861932992935, -0.022663233801722527, -0.018066255375742912, 0.0022130494471639395, -0.007109902799129486, -0.0010973105672746897, -0.004268622025847435, 0.00023014206090010703, 0.004221714101731777, 0.01954050548374653, -0.009080035611987114, -0.027823107317090034, 0.007914038375020027, 0.015667250379920006, 0.024083873257040977, -0.006614018697291613, -0.027715887874364853, 0.017087889835238457, -0.03661499544978142, -0.0021879200357943773, 0.012598130851984024, 0.00196175673045218, 0.025276675820350647, -0.01972813718020916, 0.002258281921967864, -0.01726211979985237, 0.03699025884270668, -0.01186100672930479, -0.009006323292851448, 0.013429071754217148, -0.02396325394511223, 0.006928971968591213, 0.02423129975795746, -0.01746315322816372, -0.011713581159710884, 0.016793040558695793, -0.005890296306461096, -0.005360906943678856, 0.027796301990747452, 0.0021678167395293713, -0.0355428121984005, -0.01070841122418642, -0.01929926499724388, 0.02557152509689331, -0.014139391481876373, 0.02419109269976616, -0.040394432842731476, 0.022904474288225174, -0.009582621045410633, -0.010185723192989826, -0.012370292097330093, 0.016390971839427948, 0.0021142077166587114, -0.022274568676948547, -0.012946589849889278, -0.006228703539818525, -0.013529588468372822, -0.0020823772065341473, 0.00792074017226696, -0.0050627063028514385, 0.002754165790975094, 0.014997136779129505, 0.013589899055659771, -0.006513501983135939, 0.0015035668620839715, -0.013636806979775429, 0.007357844617217779, -0.009709942154586315, -0.013368761166930199, -0.019982779398560524, 0.00832280796021223, 0.024258103221654892, -0.005829986184835434, 0.0017506711883470416, 0.012062040157616138, -0.013938358053565025, -0.0015739287482574582, 0.013067210093140602, -0.012973394244909286, -0.0001917152403621003, -0.0033656442537903786, 0.01580127328634262, 0.015452814288437366, -0.015908490866422653, 0.023252934217453003, 0.028734460473060608, 0.04572853446006775, -0.010004792362451553, 0.008838795125484467, 0.018012646585702896, -0.01161306444555521, 0.004473006818443537, 0.0025078991893678904, -0.020545674487948418, -0.005773026496171951, 0.005769676063209772, 0.014755896292626858, 0.023239530622959137, -0.0021410121116787195, 0.03219224512577057, 0.014273414388298988, -0.02164466120302677, -0.008088268339633942, 0.012316683307290077, -0.008704772219061852, -0.028439611196517944, 0.034122172743082047, 0.01811986416578293, 0.027662279084324837, 0.011251202784478664, 0.011298110708594322, 0.013583197258412838, 0.014514654874801636, 0.014595068991184235, 0.011278008110821247, 0.002486120443791151, -0.00980375800281763, 0.0019885613583028316, 0.0029367718379944563, -0.046586278825998306, 0.0029468233697116375, 0.00525033799931407, -0.037285108119249344, -0.0038866575341671705, 0.018816782161593437, -0.018066255375742912, 0.05309978127479553, 0.017436349764466286, -0.02472718246281147, -0.0009523985791020095, 0.022354980930685997, 0.023011691868305206, 0.016511593014001846, -0.006255507934838533, -0.0008037171792238951, -0.0037626863922923803, 0.01201513223350048, -0.006077928002923727, 0.000523107242770493, -0.006309117190539837, 0.008403221145272255, 0.011988327838480473, 0.009126943536102772, 0.017436349764466286, -0.023869438096880913, -0.01968793012201786, 0.019594114273786545, -0.012913084588944912, 0.03650777414441109, -0.004747753031551838, -0.010835733264684677, -0.00037023762706667185, 0.015747664496302605, 0.0029367718379944563, 0.015586836263537407, -0.028171565383672714, -0.001901446608826518, 0.006014267448335886, -0.01769099198281765, -0.014112587086856365, 0.023212727159261703, 0.012242970988154411, 0.0008481122204102576, -0.011948120780289173, 0.017597176134586334, -0.004231765866279602, -0.0051230164244771, 0.015144561417400837, -0.028814874589443207, -0.026777729392051697, 0.030717996880412102, 0.005173275247216225, -0.019821953028440475, -0.0162703525274992, -0.012048638425767422], "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5": [-0.010560200549662113, -0.03273123502731323, -0.0035997622180730104, 0.003983647096902132, -0.01652725227177143, 0.03763418272137642, -0.010944085195660591, -0.007010949309915304, -0.019921602681279182, -0.037661124020814896, 0.005869396962225437, 0.01225064042955637, 0.004381001461297274, -0.0048894803039729595, -0.005209384486079216, 0.012365132570266724, 0.026387032121419907, -0.006943601183593273, 0.021039582788944244, -0.019463634118437767, -0.0008035484352149069, -0.003704151837155223, -0.015638256445527077, 0.026481319218873978, -0.01435863971710205, 0.03397044166922569, 0.024743733927607536, -0.0010279021225869656, 0.00791341532021761, -0.01053999550640583, -0.005748170427978039, 0.01369862724095583, 0.006270118989050388, 0.012109209783375263, -0.03661049157381058, -0.012486359104514122, 0.002661938313394785, -0.021632246673107147, 0.01683705486357212, -0.0020877947099506855, 0.005327243823558092, -0.010593874379992485, -0.012035125866532326, 0.01162430178374052, -0.03267735615372658, 0.013833323493599892, 0.0028252576012164354, -0.005111729726195335, -0.018561167642474174, 0.01208900474011898, 0.021241627633571625, 0.003458330873399973, -0.04533882066607475, 0.00841852743178606, -0.008398322388529778, -0.011954308487474918, 0.022292260080575943, 0.024420462548732758, -0.016163572669029236, 0.031869176775217056, -0.004148649983108044, 0.017550945281982422, -0.004778355825692415, 0.009092009626328945, -0.04447676241397858, -0.012082270346581936, -0.012102474458515644, -0.007098502013832331, -0.008229952305555344, -0.029848730191588402, 0.03254265710711479, 0.013563930988311768, -0.002842094749212265, 0.0060209305956959724, 0.009987740777432919, -0.026912346482276917, -0.023235134780406952, -0.021888170391321182, -0.019355878233909607, 0.01120674330741167, -0.011307765729725361, -0.01582683064043522, -0.007569939363747835, 0.009873248636722565, 0.019248120486736298, -0.010971024632453918, 0.025888655334711075, 0.029956486076116562, -0.018480351194739342, -0.02656213752925396, 0.02027181349694729, 0.017214203253388405, 0.013483112677931786, 0.0014016847126185894, -0.00650920532643795, 0.017281552776694298, -0.01768564246594906, 0.010917145758867264, 0.0031956727616488934, -0.01881709136068821, -0.006610227283090353, -0.008512814529240131, -0.024164540693163872, -0.0035391487181186676, -0.0179954431951046, 0.012722077779471874, -0.030010364949703217, -0.013718831352889538, 0.008512814529240131, -0.0005219486774876714, -0.00837138295173645, 0.01582683064043522, -0.01452027540653944, -0.05360918119549751, -0.015934588387608528, -0.02231919951736927, 0.029013611376285553, -0.016810115426778793, -0.021551430225372314, -0.008856290020048618, 0.0077315750531852245, 0.020433448255062103, -0.0068627833388745785, -0.014803137630224228, 0.010331216268241405, 0.00810872483998537, -0.001487553701736033, -0.03259653598070145, 0.013718831352889538, 0.003825378604233265, 0.03165366128087044, 0.009543241932988167, 0.006889722775667906, 0.00030159374000504613, -0.008196277543902397, 0.011152864433825016, -0.01745665818452835, -0.006882987916469574, -0.0219285786151886, -0.015948057174682617, 0.019261589273810387, 0.006674208212643862, -0.02231919951736927, -0.029821790754795074, -0.013159841299057007, 0.02489190176129341, 0.02842094749212265, -0.006024297792464495, -0.02386820875108242, 0.014008428901433945, 0.010412034578621387, -0.008667715825140476, 0.016001936048269272, -0.012634525075554848, 0.022386547178030014, -0.0017712580738589168, 0.02233266830444336, 0.013927611522376537, -0.0049298894591629505, -0.011260622180998325, 0.031168755143880844, 0.019261589273810387, 0.003210826311260462, 0.00363006885163486, -0.0076642269268631935, 0.024245357140898705, 0.007468917407095432, 0.002353820251300931, -0.019099954515695572, -0.003202407620847225, 0.013469642959535122, 0.016392555087804794, -0.037176214158535004, 0.006882987916469574, -0.0012164771324023604, 0.002116417745128274, 0.030737726017832756, 0.015180287882685661, -0.01632520742714405, -0.0015852086944505572, -0.028070736676454544, -0.024016374722123146, 0.025161294266581535, 0.004633557517081499, -0.013489848002791405, 0.0009967535734176636, -0.02532292902469635, -0.004977033007889986, -0.00302393501624465, 0.014560684561729431, 0.014412518590688705, 0.012486359104514122, -0.005650515202432871, -0.013045349158346653, -0.6413705348968506, -0.013099228031933308, -0.01779339835047722, -0.015328453853726387, -0.0063037932850420475, -0.0034718005917966366, 0.016688888892531395, -0.002104631857946515, -0.0170390997081995, 0.006556348875164986, -0.023208195343613625, 0.003210826311260462, 0.012304519303143024, -0.015018652193248272, -0.014964773319661617, -0.004431512672454119, 0.018224427476525307, -0.027100922539830208, -0.015099470503628254, -0.02696622535586357, -0.018547698855400085, 0.004657129291445017, 0.013355151750147343, 0.005741435568779707, -0.016486844047904015, -0.012856774963438511, 0.009381606243550777, -0.009624060243368149, -0.00022708976757712662, 0.02790910005569458, -0.022049807012081146, 0.03213856741786003, 0.024312706664204597, 0.016284799203276634, 0.04393797740340233, -0.01508600078523159, -0.03865787759423256, 0.021470611914992332, 0.029283003881573677, 0.007812392897903919, -0.031572844833135605, -0.022157562896609306, 0.012742282822728157, -0.02223838120698929, 0.010297542437911034, 0.008889964781701565, 0.011220213025808334, -0.009132417850196362, 0.006677575875073671, 0.02077019028365612, -0.00048532808432355523, -0.006280221045017242, -0.013462908565998077, -0.008068316616117954, 0.0065395119599998, -0.015314984135329723, 0.02852870523929596, -0.010048354044556618, -0.0068223741836845875, 0.002069273963570595, 0.014345169998705387, 0.010317746549844742, -0.014372109435498714, -0.004098138771951199, -0.003150212811306119, 0.011974512599408627, -0.025147823616862297, 0.004000484012067318, 0.03421289473772049, -0.020231403410434723, 0.0008940475527197123, 0.010809388943016529, 0.005711128935217857, -0.021632246673107147, 0.03305450454354286, 0.01889790967106819, 0.02533639967441559, -0.007314016111195087, -0.006068074144423008, 0.015476619824767113, 0.009469158947467804, -0.011765733361244202, -0.02769358642399311, -0.022251849994063377, 0.023706572130322456, -0.003909564111381769, 0.002963321516290307, 0.02831318974494934, 0.006350936833769083, 0.00663716671988368, 0.005876131821423769, 0.026616014540195465, 0.009469158947467804, 0.007428508251905441, 0.019921602681279182, 0.012203496880829334, -0.007098502013832331, -0.004680701065808535, 0.0037445607595145702, -0.010432238690555096, -0.003454963443800807, -0.014749259687960148, 0.013213720172643661, -0.014116186648607254, 0.0020894783083349466, -0.014237413182854652, -0.023854738101363182, 0.005960317328572273, 0.04711681231856346, -0.01860157772898674, -0.010883471928536892, -0.01963873952627182, -0.02376045100390911, 0.005003972444683313, 0.008654246106743813, -0.021268567070364952, 0.002124836202710867, -0.006812272127717733, 0.022373078390955925, -0.0029346984811127186, 0.039412178099155426, -0.0137929143384099, 0.00853301864117384, -0.013819853775203228, 0.023733511567115784, 0.02241348661482334, 0.0058963363990187645, -0.01779339835047722, -0.019086483865976334, -0.015193757601082325, 0.007455447688698769, -0.011294296011328697, 0.009853044524788857, 0.012560442090034485, 0.010930615477263927, -0.006788700353354216, 0.018049322068691254, 0.009644264355301857, 0.02925606444478035, -0.04100159555673599, -0.0044550844468176365, -0.003960075322538614, 0.013914141803979874, 0.007334220688790083, 0.003562720725312829, -0.036125581711530685, -0.012567177414894104, 0.007138911169022322, -0.025457626208662987, 0.0071725849993526936, -0.021564899012446404, -0.010412034578621387, -0.011516544967889786, 0.003943237941712141, 0.014830077067017555, -0.0024531588423997164, -0.028043797239661217, 2.0020310330437496e-05, -0.0015961527824401855, -0.020325692370533943, -0.002843778347596526, 0.017591353505849838, -0.024864962324500084, 0.010708366520702839, 0.018116669729351997, -0.013489848002791405, -0.012223700992763042, 0.02137632481753826, -0.0033438389655202627, -0.02944464050233364, 0.024204948917031288, -0.005778477061539888, -0.00903813075274229, 0.0504034049808979, -0.0238951463252306, 0.014830077067017555, -0.009886718355119228, -0.009085274301469326, -0.005273365415632725, 0.010398564860224724, -0.022804105654358864, 0.01872280426323414, -0.008607101626694202, -0.008984251879155636, 0.0218073520809412, -0.0010405299253761768, 0.005024177022278309, -0.003707519266754389, 0.02460903860628605, 0.026804590597748756, 0.012257375754415989, 0.014345169998705387, 0.007138911169022322, -0.003215877339243889, 0.012600851245224476, -0.006876253057271242, 0.01932893879711628, 0.026818059384822845, 0.005990623962134123, 0.010715100914239883, 0.01830524578690529, 0.008506080135703087, 0.02893279306590557, -0.002608059672638774, -0.007219729013741016, -0.03930442035198212, 0.002301625208929181, -0.005088157951831818, 0.03531740605831146, -0.023841269314289093, 0.0019261590205132961, -0.04835601896047592, -0.01002141460776329, -0.012466154992580414, 0.019396286457777023, 0.028340129181742668, 0.005670719780027866, 0.011698384769260883, -0.00913915317505598, 0.0071725849993526936, 0.0012897183187305927, -0.007711370941251516, -0.006526042241603136, -0.011213477700948715, -0.0066472687758505344, -0.01074204035103321, 0.0064283874817192554, 0.032003872096538544, 0.01080265361815691, -0.016675418242812157, 0.027531951665878296, -0.00820974726229906, -0.013846793211996555, 0.0010918829357251525, 0.008708124049007893, -0.004953461233526468, 0.020393040031194687, -0.007017684169113636, 0.022817576304078102, -0.03213856741786003, -0.0027612769044935703, 0.017416248098015785, 0.017591353505849838, -0.01819748803973198, -0.0014976559905335307, -0.00147913524415344, -0.0017763092182576656, 0.013159841299057007, 0.02637356147170067, 0.0334855318069458, -0.01953098364174366, -0.01189369522035122, -0.006202770862728357, -0.006569818593561649, 0.002845462178811431, -0.020312221720814705, 0.0003773604694288224, 0.012109209783375263, 0.00903813075274229, 0.036852944642305374, 0.029013611376285553, -0.007118706591427326, 0.012243906036019325, 0.019988950341939926, 0.05304345488548279, -0.0035290466621518135, 0.008304035291075706, 0.02719520963728428, -0.03248877823352814, -0.032084688544273376, -0.011900429613888264, -0.009125683456659317, 0.004515697713941336, -0.007024419028311968, 0.010937350802123547, -0.0026333152782171965, 0.0009310891036875546, -0.010957554914057255, 0.024959249421954155, -0.0005573065136559308, -0.03782275691628456, -0.027302967384457588, 0.02354493737220764, 0.018372593447566032, -0.0003371619968675077, -0.0012947694631293416, -0.018574638292193413, -0.0024346380960196257, -0.023908616974949837, 0.03494025394320488, -0.012210231274366379, 0.010472647845745087, 0.023315953090786934, -0.01177246868610382, 0.003576190210878849, 0.02605029009282589, 0.030333636328577995, -0.002794950967654586, 0.03577537089586258, -0.016594599932432175, 0.005977154243737459, 0.00026455221814103425, -0.022386547178030014, -0.003694049781188369, 0.02326207421720028, -0.008883229456841946, -0.014466396532952785, -0.01028407271951437, 0.0050948928110301495, -0.014143125154078007, -0.017335431650280952, -0.03531740605831146, -0.0050645857118070126, -0.00012512036482803524, -0.00114997080527246, -0.0018503922037780285, -0.013718831352889538, 0.014991712756454945, 0.02314084768295288, -0.013186780735850334, -0.021888170391321182, -0.023396769538521767, -0.016769705340266228, 0.0023841268848627806, 0.10172274708747864, 0.01395455002784729, -0.017699111253023148, 0.0046705990098416805, -0.01068816240876913, 0.01291738823056221, -0.03316226229071617, -0.008344444446265697, 0.022682879120111465, 0.00473121227696538, 0.01672929711639881, -0.014533745124936104, 0.02874421887099743, -0.021874701604247093, 0.024016374722123146, -0.010519791394472122, -0.012163087725639343, 0.0004537586064543575, 0.014870486222207546, 0.019975481554865837, 0.006916661746799946, -0.0017981973942369223, 0.012957796454429626, 0.020527737215161324, -0.020918356254696846, -0.015624785795807838, 0.03243489935994148, 0.009597120806574821, 0.02262900024652481, -0.01860157772898674, -0.012129413895308971, 0.021228156983852386, 0.035398222506046295, 0.021632246673107147, -0.02221144177019596, -0.0011987983016297221, 0.004680701065808535, 0.02252124436199665, -0.004502228461205959, 0.009058334864675999, 0.021457141265273094, 0.012270845472812653, 0.008061581291258335, -0.014008428901433945, -0.002171979984268546, 0.013206984847784042, -0.017308492213487625, -0.010789183899760246, -0.035182707011699677, -0.0019632005132734776, 0.033431652933359146, -0.013664953410625458, -0.010553465224802494, -0.020177526399493217, 0.024366585537791252, 0.006246547214686871, 0.005808783695101738, -0.001510283793322742, -0.00772484065964818, -0.0063711414113640785, -0.008775472640991211, 0.012674934230744839, 0.020379571244120598, -0.00821648258715868, -0.0167427659034729, -0.02532292902469635, -0.03558679670095444, -0.013705361634492874, -0.007657492067664862, 0.021564899012446404, -0.036017827689647675, -0.0019227915909141302, -0.014789667911827564, -0.005808783695101738, 0.011321235448122025, 0.00018120880122296512, 0.030360575765371323, -0.006701147649437189, -0.002178714843466878, -0.005677454639226198, -0.020110176876187325, -0.03868481516838074, 0.02355840615928173, -0.02244042605161667, -0.003394350176677108, -0.0046200877986848354, 0.0008578479173593223, 0.013301272876560688, -0.03644885495305061, 0.016863994300365448, -0.0009277216740883887, 0.022265320643782616, 0.024110661819577217, -0.010937350802123547, 0.008970782160758972, -0.0033354205079376698, -0.006785332690924406, 0.004566208925098181, -0.005859294906258583, -0.01317331101745367, 0.00021162071789149195, -0.06271465867757797, 0.00713217630982399, -0.015314984135329723, 0.010883471928536892, -0.0020221301820129156, 0.0027781138196587563, 0.010156110860407352, -0.029121369123458862, -0.03440146893262863, 0.004508963320404291, -0.007886475883424282, 0.012876979075372219, -0.005138668697327375, 0.02148408070206642, 0.013153106905519962, 0.0033522574231028557, 0.012991471216082573, 0.027235617861151695, 0.014129655435681343, -0.007785453926771879, -0.03089936263859272, 0.00656645093113184, 0.006576553452759981, -0.020918356254696846, -0.009536507539451122, 0.003458330873399973, -0.016500312834978104, 0.017645232379436493, 0.01734890043735504, 0.03588312864303589, 0.016406025737524033, 0.006115218158811331, -0.019908132031559944, -0.018480351194739342, 0.002719184150919318, -0.006185933481901884, 0.00715911528095603, -0.018170548602938652, 0.013833323493599892, -0.007280342280864716, -0.019679149612784386, -0.005866029765456915, -0.021564899012446404, 0.006741556338965893, -0.023302482441067696, -0.020204465836286545, 0.008748533204197884, -0.012634525075554848, -0.0007694533560425043, -0.001085989992134273, -0.035613738000392914, -0.02708745189011097, -0.010061823762953281, -0.02202286757528782, -0.02842094749212265, -0.006943601183593273, -0.02510741539299488, 0.032084688544273376, 0.004300183616578579, 0.022292260080575943, -0.022171033546328545, -0.0008864708943292499, -0.0005699342582374811, 0.005226221401244402, 0.008182808756828308, -0.00858016312122345, -0.02727602794766426, -0.031249571591615677, -0.016863994300365448, 0.030845483765006065, 0.02637356147170067, 0.02976791188120842, 0.004616720136255026, 0.0044382475316524506, 0.044288188219070435, -0.007448712829500437, -0.018170548602938652, -0.02016405574977398, -0.027828283607959747, -0.015072531066834927, -0.01431823056191206, -0.009893452748656273, 0.00762381823733449, -0.027114391326904297, 0.008075051009654999, 0.042213860899209976, 0.017699111253023148, 0.006108483299612999, -0.021942049264907837, 0.006246547214686871, -0.030360575765371323, 0.010506321676075459, 0.012169823050498962, 0.016190512105822563, 0.00010433712304802611, 0.01994854211807251, -0.02047385834157467, 0.01652725227177143, -0.007320750970393419, -0.00043355414527468383, -0.000964763225056231, -0.010984494350850582, -0.017308492213487625, -0.036341097205877304, 0.017739519476890564, -0.019301999360322952, -0.02925606444478035, 0.01788768544793129, -0.020729780197143555, -0.006034400314092636, -0.005707761272788048, -0.005041013937443495, -0.031357329338788986, -0.024986188858747482, -0.003143477952107787, 0.0037108866963535547, 0.002943117171525955, -0.010102232918143272, -0.014452926814556122, 0.009246909990906715, -0.01663501001894474, 0.051938943564891815, 0.017847277224063873, 0.03720315545797348, 0.00459651555866003, -0.01889790967106819, 0.008856290020048618, 0.008822616189718246, -0.00919976644217968, -0.010088763199746609, 0.028340129181742668, 0.01693134196102619, -0.013361886143684387, 0.012008187361061573, -0.03542516008019447, 0.00532050896435976, -0.041944470256567, -0.038011334836483, 0.02086447738111019, 0.011119190603494644, -0.01163103710860014, -0.0063307322561740875, 0.007010949309915304, -0.037688061594963074, 0.01472232025116682, 0.0028825036715716124, 0.022400015965104103, -0.01038509514182806, -0.024339646100997925, -0.03399737924337387, 0.004983767867088318, 0.02541721612215042, 0.012634525075554848, 0.017604824155569077, -0.023598814383149147, -0.03469780087471008, 0.004189059138298035, -0.017241142690181732, -0.008654246106743813, -0.0003403189475648105, 0.018157079815864563, -0.005408061668276787, 0.00837811827659607, 0.002843778347596526, -0.003209142480045557, -0.024164540693163872, -0.006812272127717733, -0.025363339111208916, 0.028905853629112244, 0.014493335969746113, 0.011072047054767609, 0.012607586570084095, 0.012957796454429626, 0.024353114888072014, 0.025915592908859253, -0.001703909831121564, 0.0030693949665874243, -0.019477104768157005, -0.005640413146466017, 0.0019530982244759798, 0.017308492213487625, 0.014021898619830608, -0.010162846185266972, -0.007253402844071388, -0.0007879741606302559, 0.01579989120364189, 0.0067381891421973705, 0.004626822657883167, -0.041082412004470825, -0.015436211600899696, 0.010115701705217361, -0.02120121940970421, 0.021578367799520493, 0.003207458881661296, 0.032515719532966614, 0.0038859921041876078, 0.022655939683318138, -0.023100437596440315, 0.02210368402302265, -0.019988950341939926, 0.007307281717658043, -0.02696622535586357, 0.0075295306742191315, 0.013004940934479237, -0.02015058696269989, 0.015234166756272316, -0.009846309199929237, -0.022548183798789978, 0.019032606855034828, 0.00868118554353714, 0.014695380814373493, -0.0025794366374611855, 0.003855685470625758, -0.0034852703101933002, -0.013422499410808086, 0.007347690407186747, -0.009846309199929237, -0.02117427997291088, -0.010762245394289494, 0.020083237439393997, -0.0010750459041446447, 0.0191268939524889, -0.020541206002235413, 0.02397596463561058, 0.008506080135703087, 0.02396249584853649, 0.005088157951831818, -0.035613738000392914, 0.018439941108226776, -0.01199471764266491, 0.0049467263743281364, 0.019706089049577713, -0.001818401855416596, -0.005589901935309172, -0.020729780197143555, 0.00037104656803421676, 0.011455931700766087, 0.0054215313866734505, -0.02552497386932373, 0.0071725849993526936, 0.00946242455393076, -0.014816607348620892, -0.005536023527383804, -0.008721593767404556, -0.002986893290653825, 0.010176315903663635, -0.008283830247819424, -0.04210610315203667, 0.0029801586642861366, -0.014439458027482033, 0.027962978929281235, -0.0006760077085345984, -0.026009881868958473, 0.001754421042278409, -0.029202187433838844, -0.012021657079458237, -0.013530257157981396, -0.0032916441559791565, 0.02613110840320587, 0.026844998821616173, 0.009071804583072662, 0.01265473011881113, 0.035613738000392914, -0.015732543542981148, 0.0063037932850420475, -0.007940354757010937, -0.00946242455393076, -0.009543241932988167, -0.009731817059218884, -0.015678664669394493, 0.00018689129501581192, -0.029202187433838844, -0.006876253057271242, 0.0179954431951046, -0.0031199061777442694, 0.0022056540474295616, 0.008977517485618591, 0.002843778347596526, 0.006707882508635521, -0.0014648237265646458, 0.0020322324708104134, 0.020231403410434723, 0.011307765729725361, -0.0004537586064543575, -0.014601093716919422, -0.013355151750147343, 0.0026349988766014576, -0.025376807898283005, -0.03273123502731323, -0.036852944642305374, -0.0040206885896623135, -0.021457141265273094, 0.010674692690372467, -0.03558679670095444, -0.025349868461489677, -0.01931546814739704, -0.0390889048576355, 0.03329695761203766, -0.009671203792095184, 0.01068816240876913, 0.032704293727874756, 0.0027427561581134796, -0.01447986625134945, -0.005078055430203676, 0.02035263180732727, 0.015166818164288998, -0.027962978929281235, 0.004505595657974482, -0.015934588387608528, -0.0017308491514995694, -0.0024413729552179575, -0.004943359177559614, -0.004471921361982822, 0.018480351194739342, -0.008849555626511574, -0.016163572669029236, -0.015005182474851608, 0.026171516627073288, 0.010048354044556618, -0.00048280254122801125, -0.0070648277178406715, 0.007374629843980074, -0.008910168893635273, 0.0034920049365609884, -0.014304760843515396, 0.0009327728184871376, 0.0019110057037323713, 0.025659671053290367, -0.0005206859204918146, -0.007758514489978552, -0.00413854792714119, -0.012897183187305927, 0.025147823616862297, -0.04000484198331833, 0.008701389655470848, 0.21411344408988953, -0.013368620537221432, 0.004492125939577818, 0.045823726803064346, -0.010654487647116184, 0.014425988309085369, 0.022561652585864067, -0.003919666167348623, -0.012742282822728157, -0.0060209305956959724, -0.015422741882503033, 0.016042344272136688, -0.009805900044739246, 0.003126641036942601, 0.009644264355301857, -0.0017914625350385904, -0.03865787759423256, -0.00820974726229906, 0.005212752148509026, -0.061960358172655106, 0.012142883613705635, -0.003082864684984088, -0.006475531030446291, -0.01850729063153267, 0.01106531172990799, 0.0167427659034729, -0.0037950719706714153, -0.012055330909788609, 0.03151896595954895, -0.014143125154078007, -0.031034057959914207, 0.006310527678579092, -0.0048625413328409195, 0.005131934303790331, -0.011503075249493122, 0.016352146863937378, 0.01714685559272766, 0.00459651555866003, 0.02438005432486534, -0.030737726017832756, 0.001603729440830648, -0.017739519476890564, 0.012257375754415989, -0.011523280292749405, -0.008229952305555344, 0.024016374722123146, -0.013745770789682865, -0.002613110700622201, -0.020002420991659164, 0.0070378887467086315, -0.03079160489141941, 0.010930615477263927, 0.04167507588863373, 0.011455931700766087, 0.0031249572057276964, -0.0013865313958376646, -0.003148529212921858, 0.022265320643782616, -0.0042227329686284065, 0.01508600078523159, -0.007610348518937826, 0.02458209916949272, 0.006337467115372419, 0.0390889048576355, -0.026063760742545128, 0.005387857556343079, -0.012701873667538166, -0.009004456922411919, 0.029821790754795074, -0.027100922539830208, -0.003028986044228077, -0.010674692690372467, -0.004175589419901371, 0.004121711011976004, -0.004273244179785252, 0.006788700353354216, 0.03553291782736778, -0.017308492213487625, 0.03159978240728378, -0.0022797370329499245, 0.01664847880601883, -0.012169823050498962, 0.016190512105822563, -0.0028639829251915216, -0.001053157728165388, -0.03318919986486435, -0.0020221301820129156, -0.018426472321152687, -0.016473373398184776, 0.011940838769078255, -0.024784144014120102, -0.023167787119746208, 0.00351557694375515, -0.01624438911676407, -0.003320267191156745, -0.010061823762953281, 0.02947157993912697, 0.003946605604141951, -0.004734579473733902, -0.00841852743178606, -0.008647510781884193, 0.007354425266385078, 0.010425504297018051, 0.010580404661595821, -0.027127861976623535, 0.0018806989537552, 0.020325692370533943, 0.006374508608132601, 0.011422257870435715, 0.0011457615764811635, 0.0268719382584095, -0.0049601960927248, -0.003028986044228077, -0.020339161157608032, 0.013045349158346653, 0.034455347806215286, -0.007670961786061525, -0.02922912687063217, -0.007044623605906963, 0.011415522545576096, 0.01994854211807251, -0.02727602794766426, 0.0014370426069945097, 0.002047385787591338, 0.008324239403009415, -0.010432238690555096, -0.010634283535182476, 0.024743733927607536, -0.004212630912661552, 0.00023298274027183652, 0.020648963749408722, -0.04673966392874718, 0.010142641142010689, -0.0041957939974963665, -0.008122194558382034, 0.013058818876743317, -0.010209989733994007, -0.02397596463561058, 0.031034057959914207, -0.01173205953091383, -0.00867445021867752, 0.0018352388869971037, 3.114854916930199e-05, 0.02078365907073021, -0.005872764624655247, -0.018978727981448174, 0.0017662069294601679, -0.017200734466314316, 0.013914141803979874, 0.00017531582852825522, -0.02408372238278389, 0.00022687930322717875, 0.0011112455977126956, -0.011961042881011963, 0.006916661746799946, -0.0003344259748701006, -0.0004524958203546703, -0.024029843509197235, 0.01012243703007698, 0.02448781207203865, -0.03227326646447182, 0.019032606855034828, 0.01810320094227791, -0.00082964583998546, -0.020648963749408722, -0.007549735251814127, -0.17133386433124542, 0.025134354829788208, 0.023383300751447678, -0.0018419737461954355, 0.01734890043735504, 0.03278511017560959, 0.014439458027482033, 0.012829835526645184, -0.00555286044254899, -0.011247152462601662, 0.02468985691666603, 0.014628032222390175, -0.014830077067017555, -0.013833323493599892, -0.016715826466679573, -0.006724719423800707, -0.019490573555231094, 0.009475894272327423, 0.023598814383149147, 0.02140326239168644, 0.0023975966032594442, -0.005387857556343079, 0.011435727588832378, 0.0033505738247185946, -0.0066708410158753395, 0.010715100914239883, -0.0005543599836528301, 0.015880709514021873, 0.010513057000935078, -0.019301999360322952, -0.009583651088178158, 0.018170548602938652, 0.007388099562376738, -0.017524005845189095, 0.030333636328577995, 0.005202649626880884, -0.012897183187305927, 0.0012838253751397133, -0.0003112750418949872, 0.011051842011511326, 0.016715826466679573, 0.0048221321776509285, 0.018992196768522263, 0.0033017462119460106, 0.00010923038644250482, 0.029283003881573677, -0.0025205069687217474, -0.02264247089624405, -0.013671687804162502, -0.020514266565442085, 0.012641260400414467, -0.0044382475316524506, 0.021362854167819023, -0.006344201974570751, 0.009408545680344105, 0.013550461269915104, 0.023208195343613625, 0.01410271693021059, -0.012142883613705635, -0.019786905497312546, 0.00831750500947237, -0.003321950789541006, 0.02933688275516033, -0.015193757601082325, -0.0039769122377038, 0.0011752264108508825, -0.015880709514021873, 0.020622024312615395, -0.024743733927607536, 0.02086447738111019, 0.004913052543997765, 0.0032731234095990658, 0.03351247310638428, -0.011381848715245724, -0.006593390367925167, -0.006317262537777424, -0.022359607741236687, 0.0334855318069458, -0.012674934230744839, -0.008782207034528255, -0.03440146893262863, 0.048113565891981125, -0.0040711998008191586, -0.01297800149768591, 0.0140623077750206, -0.0032461839728057384, -0.011408788152039051, -0.015934588387608528, -0.004640291910618544, -0.0056134737096726894, 0.02046038769185543, -0.03017200157046318, -0.009954066015779972, 0.008546488359570503, 0.012769222259521484, 0.010816123336553574, 0.02036610059440136, -0.024878431111574173, 0.0017493698978796601, -0.019665678963065147, 0.006872885394841433, -0.024541690945625305, -0.01571907289326191, 0.03440146893262863, 0.022871455177664757, 0.017079507932066917, -0.011327969841659069, 0.006627064663916826, 0.01734890043735504, 0.004414675757288933, -0.00919976644217968, 0.012546972371637821, 0.004259774927049875, 0.0033472063951194286, 0.026387032121419907, 0.04154038056731224, -0.006866150535643101, -0.011045107617974281, 0.01652725227177143, -0.012243906036019325, 0.06416937708854675, -0.0230600293725729, 0.003754663048312068, -0.00014353588630910963, -0.014830077067017555, -0.022373078390955925, -0.11885613203048706, 0.008243422023952007, 0.0048894803039729595, 0.03351247310638428, -0.008290565572679043, 0.01830524578690529, -0.009226705878973007, 0.023167787119746208, 0.0034953723661601543, 0.0006452801171690226, -0.022184502333402634, -0.03111487627029419, 0.009933861903846264, -0.010378359816968441, 0.002301625208929181, -0.028151554986834526, -0.0058963363990187645, -0.011085516773164272, -0.0007627185550518334, 0.03914278373122215, 0.0012543605407699943, -0.026494788005948067, 0.023289013653993607, -0.023315953090786934, 0.021766943857073784, -0.007603613659739494, -0.02386820875108242, 0.013476378284394741, 0.03143814578652382, 0.016177041456103325, -0.016271328553557396, -0.014951304532587528, 0.01655419170856476, -0.012957796454429626, 0.0079538244754076, -0.026319682598114014, -0.03774194046854973, -0.013927611522376537, 0.017618292942643166, -0.025875184684991837, 0.005051116459071636, -0.011913899332284927, 0.03006424382328987, -0.01488395594060421, 0.01544968131929636, -0.003259653691202402, -0.019665678963065147, 0.008903434500098228, 0.0023807594552636147, -0.01767217181622982, -0.017200734466314316, 0.016998689621686935, -0.04127098619937897, -0.012459419667720795, 0.023827798664569855, 0.001421889173798263, 0.026696832850575447, -0.0013292854418978095, -0.007273607421666384, -0.010627548210322857, -0.017604824155569077, 0.0016357197891920805, 0.0033000626135617495, 0.02347758784890175, 0.012621055357158184, -0.002539027715101838, -0.0015262789092957973, -0.002601324813440442, 0.03523658588528633, 0.017025629058480263, -0.015355393290519714, 0.017510537058115005, -0.026198456063866615, 0.005030911881476641, -0.016594599932432175, 0.01644643396139145, -0.03224632516503334, -0.014708850532770157, 0.013860262930393219, -0.0017678906442597508, 0.0075295306742191315, -0.026306213811039925, -0.0033674107398837805, -0.0021888171322643757, 0.012129413895308971, 0.023410240188241005, 0.00043650061707012355, -0.00821648258715868, 0.0021888171322643757, -0.022548183798789978, 0.009583651088178158, 0.010075293481349945, -0.008869759738445282, -0.02468985691666603, -0.0028942895587533712, 0.033216141164302826, 0.014708850532770157, -0.007219729013741016, -0.006943601183593273, 0.0051218317821621895, -0.024231888353824615, 0.021214688196778297, -0.06395386904478073, 0.020298752933740616, -0.002182082273066044, 0.012432481162250042, 0.0023757084272801876, -0.01146940141916275, 0.015974996611475945, -0.022453894838690758, -0.023693103343248367, -0.0054518380202353, -0.016406025737524033, 0.02852870523929596, -0.006165729369968176, -6.429650238715112e-05, -0.013375355862081051, -0.008236686699092388, 0.0019110057037323713, -0.007583409082144499, 0.0029380659107118845, -0.01080265361815691, 0.014425988309085369, -0.0015473252860829234, 0.0236526932567358, -0.011779203079640865, -0.022669410333037376, 0.0015447997720912099, 0.005347448401153088, 0.025161294266581535, -0.008223216980695724, -0.017281552776694298, 0.010944085195660591, -0.02718174085021019, -0.010762245394289494, -0.001539748627692461, -0.005367652978748083, 0.023235134780406952, 0.00016447696543764323, 0.009152622893452644, 0.003916298970580101, 0.03925054147839546, -0.018978727981448174, -0.012883713468909264, 0.0089977215975523, -0.03089936263859272, 0.012459419667720795, 0.02716827020049095, -0.02264247089624405, -0.0022090214770287275, 0.015261106193065643, -0.012910652905702591, 0.005727965850383043, 0.021861230954527855, 0.017079507932066917, -0.039439115673303604, 0.005269997753202915, -0.02520170249044895, 0.030333636328577995, -0.0048221321776509285, 0.014789667911827564, -0.03852317854762077, 0.014668441377580166, -0.01153001468628645, -0.011860021390020847, -0.0033640433102846146, 0.01734890043735504, -0.0028117881156504154, -0.01747012697160244, -0.002539027715101838, -0.008431997150182724, -0.010405299253761768, 0.006721352227032185, 0.0034785354509949684, -0.00363006885163486, 0.011078781448304653, 0.019477104768157005, 0.024474341422319412, -0.010391829535365105, 0.0034297078382223845, -0.033754926174879074, 0.0017064354615285993, -0.007536265533417463, -0.019450165331363678, -0.020110176876187325, 0.009118948131799698, 0.0229388028383255, -0.0075227958150208, 0.012270845472812653, 0.003020567586645484, -0.020837537944316864, 0.0038321134634315968, 0.011839816346764565, -0.006286955904215574, 6.850576755823568e-05, -0.0052969371899962425, 0.010169580578804016, 0.02171306498348713, -0.005283467471599579, 0.004660496488213539, 0.01734890043735504, 0.030818544328212738, -0.02345064841210842, 0.013409029692411423, 0.010391829535365105, -0.023073498159646988, -0.0002561336732469499, 0.008964047767221928, -0.03213856741786003, -0.019908132031559944, 0.010331216268241405, 0.026710303500294685, 0.011920634657144547, -0.0016458220779895782, 0.03138427063822746, 0.01534192357212305, -0.0069301314651966095, -0.008714859373867512, 0.0020440183579921722, -0.012425745837390423, -0.015328453853726387, 0.04617393761873245, 0.00449886079877615, 0.03235408291220665, 0.009004456922411919, 0.009388341568410397, 0.016917871311306953, 0.017483597621321678, 0.013557195663452148, 0.021255096420645714, -0.005990623962134123, -0.0033977176062762737, 0.0022477468010038137, 0.003939870744943619, -0.041297927498817444, 0.0066977799870073795, 0.00847240537405014, -0.037768878042697906, -0.0018032485386356711, 0.009051600471138954, -0.021834291517734528, 0.04251019284129143, 0.004148649983108044, -0.011920634657144547, -0.006253282073885202, 0.009644264355301857, 0.026521727442741394, 0.008984251879155636, 0.006744924001395702, -0.010573670268058777, -0.005135301500558853, 0.0009908606298267841, -0.017416248098015785, 0.0014067358570173383, -0.01613663323223591, -0.0005497297970578074, 0.0074217733927071095, -0.013483112677931786, 0.04482697322964668, -0.030468333512544632, -0.023221665993332863, 0.028905853629112244, -0.006135422736406326, 0.02922912687063217, 0.0036435385700315237, -0.0064283874817192554, -0.002554181031882763, 0.011779203079640865, 0.0037681327667087317, 0.005734700709581375, -0.029714033007621765, 0.003263021120801568, 0.007812392897903919, -0.014762729406356812, -0.009698143228888512, 0.01923464983701706, 0.0039028292521834373, -0.0007812393014319241, -0.01415659487247467, 0.027451133355498314, -0.007428508251905441, -0.008283830247819424, 0.0006983168423175812, -0.019679149612784386, -0.01923464983701706, 0.014331700280308723, -0.00040619392530061305, -0.022346138954162598, 0.0019177404465153813, -0.02552497386932373], "d93294c3-17e5-4aaa-884e-5512c0c0efb3": [-0.01021814625710249, -0.015030993148684502, -0.007688572630286217, -0.0058979010209441185, -0.0064670550636947155, 0.032192155718803406, -0.017573880031704903, 0.0036712102591991425, -0.01837269403040409, -0.02420402690768242, 0.016269152984023094, 0.02509603463113308, 0.013939282856881618, 0.009525842033326626, -0.006996268406510353, 0.025708457455039024, 0.03581343963742256, -0.004912698641419411, 0.03235191851854324, -0.023977696895599365, 0.0076220049522817135, -0.004819503519684076, -0.006736654322594404, 0.015270637348294258, -0.03275132179260254, 0.02713300660252571, 0.028810514137148857, -0.007735170423984528, 0.0038176593370735645, -0.015177442692220211, -0.01479134988039732, 0.009805426932871342, 0.006290650460869074, -0.019011743366718292, -0.027399277314543724, -0.009272884577512741, 0.005382000934332609, -0.017667075619101524, -0.0017989928601309657, 0.012035445310175419, -0.002012009732425213, -0.0063638752326369286, -0.008261055685579777, 0.020928895100951195, -0.018505828455090523, 0.020449606701731682, -0.00947924517095089, -0.005395314656198025, -0.02606792375445366, 0.006370531860738993, 0.024323849007487297, 0.01023811660706997, -0.027985073626041412, 0.014817976392805576, -0.03094068169593811, -0.0036612250842154026, 0.019158191978931427, 0.02480313554406166, -0.015017679892480373, 0.02907678484916687, 0.004726308863610029, 0.014338688924908638, 0.0030904067680239677, 0.010937077924609184, -0.04071282222867012, -0.019477717578411102, -0.0029655923135578632, -0.0029373010620474815, -0.010597582906484604, -0.018638964742422104, 0.02421734109520912, 0.0036578967701643705, -0.0014178926357999444, -0.012354970909655094, 0.0013929298147559166, -0.0330175943672657, -0.017893405631184578, -0.016828322783112526, -0.019104938954114914, 0.014445197768509388, -0.0003476083802524954, -0.02573508396744728, 0.011549501679837704, -0.0008171189110726118, 0.01845257543027401, -0.018425947055220604, 0.004519948735833168, 0.028384480625391006, -0.016868263483047485, -0.0334436260163784, 0.01295408047735691, 0.026600465178489685, 0.007681916002184153, 0.014698155224323273, 0.008647148497402668, 0.028464362025260925, -0.003801017301157117, 0.02383124828338623, 0.00741564529016614, -0.013266948983073235, -0.020662624388933182, 0.002419736934825778, -0.02379130758345127, -0.0019088296685367823, -0.003040481125935912, -0.0044400678016245365, -0.005894572474062443, -0.015164129436016083, 0.011156751774251461, -0.016921516507864, -0.021954037249088287, 0.031553104519844055, -0.0023797964677214622, -0.04095246642827988, -0.00840084720402956, -0.03703828528523445, 0.029236547648906708, -0.0215812586247921, -0.03948797658085823, -0.007202628534287214, 0.0018905235920101404, 0.020635996013879776, -0.012714436277747154, -0.0268800500780344, 0.007635318674147129, 0.010078354738652706, 0.016748441383242607, -0.020303158089518547, 0.007082806434482336, -0.0022167053539305925, 0.048141781240701675, 0.0063039641827344894, -0.0014104037545621395, 0.012534704059362411, -0.008900105953216553, -0.007615348324179649, -0.03402942419052124, -0.004906041547656059, -0.008693745359778404, -0.021900784224271774, 0.012002161704003811, 0.006989611778408289, -0.00517231272533536, -0.027146320790052414, -0.00808132253587246, 0.0317394956946373, 0.016229212284088135, -0.007042865734547377, -0.014205553568899632, 0.0031569746788591146, 0.03530752286314964, -0.00465641263872385, 0.006869789678603411, 0.00022237782832235098, 0.01738749071955681, -0.0025195886846631765, 0.03189925476908684, -0.001762380707077682, 0.00812792032957077, -0.00020344762015156448, 0.021607885137200356, 0.02082238532602787, 0.000443091441411525, -0.0020519501995295286, -0.005644943565130234, 0.031553104519844055, -0.00030829181196168065, -0.02154131792485714, -0.03008861467242241, -0.019451091066002846, -0.004177125170826912, 0.02451023831963539, -0.05005893483757973, 0.005701526068150997, -0.005139028653502464, -0.0038942121900618076, 0.023671485483646393, 0.011136781424283981, -0.014964425936341286, 0.007515496574342251, -0.039088569581508636, -0.028490988537669182, 0.025535380467772484, 0.02162119932472706, -0.02662709169089794, 9.709527512313798e-05, -0.02289929986000061, -0.03323061019182205, 0.004563217982649803, 0.014485138468444347, 0.007934873923659325, 0.021567944437265396, 0.00939936377108097, -0.016109390184283257, -0.6360679864883423, -0.008068009279668331, -0.022832730785012245, -0.006956327706575394, 5.52304154552985e-05, 0.004866101313382387, 0.018505828455090523, -0.00842081755399704, -0.010764001868665218, -0.0024613419082015753, -0.030488019809126854, 0.013193723745644093, -0.0034914773423224688, -0.010757344774901867, -0.01111015398055315, -0.007582064718008041, -0.00854729674756527, -0.02449692413210869, -0.011476276442408562, -0.011043586768209934, -0.016815008595585823, 0.004017362371087074, 0.0027459189295768738, 0.005901229102164507, -0.003122026566416025, -0.030275003984570503, 0.008494042791426182, -0.00011982191790593788, -0.003771062009036541, 0.02513597533106804, -0.038316383957862854, 0.031340088695287704, 0.0234850961714983, -0.0060609919019043446, 0.043908074498176575, -0.010504388250410557, -0.019690735265612602, 0.021741021424531937, 0.030674410983920097, 0.00688976002857089, -0.04539919272065163, -0.03189925476908684, 0.007901589386165142, 0.009998473338782787, 0.010890481062233448, 0.007608691696077585, 0.0009427655022591352, 0.0004405951767694205, 0.012155267409980297, 0.03786372393369675, 0.011669322848320007, -0.011855713091790676, -0.022619714960455894, -0.005881258752197027, -0.0059677972458302975, 0.0004742950841318816, 0.034295693039894104, -0.013726266101002693, 0.0009294519550167024, -0.001955426996573806, 0.018212931230664253, 0.022952552884817123, 0.0017956645460799336, 0.005851303692907095, -0.010617553256452084, 0.01519075594842434, -0.010544328950345516, 0.004766249563544989, 0.012221835553646088, -0.012794317677617073, 0.0026044624391943216, 0.02234013006091118, 0.009971845895051956, -0.030141867697238922, 0.016136018559336662, 0.01242153812199831, 0.028198091313242912, 0.006643459666520357, 0.008773626759648323, 0.01658867858350277, 0.01845257543027401, -0.028917022049427032, -0.02979571558535099, -0.015896374359726906, 0.01845257543027401, -0.010843883268535137, -0.008101292885839939, 0.044760141521692276, -0.0012739399680867791, 0.01252804696559906, 0.011735890991985798, 0.019397836178541183, 0.0009735530475154519, 0.012414881959557533, 0.022952552884817123, 0.01925138756632805, -0.021235106512904167, 0.008620521053671837, -0.0019887108355760574, -0.00692970072850585, 0.0027459189295768738, -0.012155267409980297, 0.003927496261894703, -0.019144879654049873, 0.010990331880748272, -0.01827949844300747, -0.03080754540860653, -0.010278057307004929, 0.03368327021598816, -0.011502903886139393, 0.002161787124350667, -0.015590162016451359, -0.014232181012630463, 0.010471103712916374, -0.00533207505941391, -0.02721288800239563, 0.00884685106575489, -0.0012706115376204252, 0.021727707237005234, 0.00578806409612298, 0.027399277314543724, -0.007315793540328741, 0.006849819328635931, -0.00808132253587246, 0.019957005977630615, 0.035280898213386536, 0.00800144113600254, -0.004426754079759121, -0.01475140918046236, -0.0008395854965783656, 6.006697367411107e-05, -0.011283230036497116, 0.008540639653801918, -0.008101292885839939, 0.014072418212890625, -0.02115522511303425, 0.022100485861301422, 0.007149374112486839, 0.031632985919713974, -0.035493914037942886, -0.001917150686495006, -0.00036133796675130725, 0.01650879718363285, 0.029316429048776627, 0.0008283521747216582, -0.03283120319247246, -0.012767690233886242, 0.004762921016663313, -0.03410930559039116, -0.00019751893705688417, -0.010957048274576664, -0.008780283853411674, 0.00012211018474772573, 0.02878388576209545, -0.004433410707861185, 0.004852787591516972, -0.006663430016487837, 0.010610896162688732, 0.0006074305274523795, -0.015057620592415333, 0.009053211659193039, 0.02192741073668003, -0.03272469714283943, 0.004356857854872942, 0.034561965614557266, -0.008880135603249073, -0.012008818797767162, 0.019584225490689278, 0.02162119932472706, -0.021168537437915802, 0.0056981975212693214, -0.020170021802186966, -0.00598776713013649, 0.03261818736791611, -0.030141867697238922, -0.014671527780592442, 0.013726266101002693, -0.01781352423131466, -0.01938452385365963, 0.007582064718008041, -0.026640405878424644, 0.011869026347994804, -0.013546532951295376, -0.008241085335612297, 0.03900868818163872, -0.003058787202462554, -0.008806910365819931, 0.003967436961829662, 0.014897857792675495, 0.026147805154323578, -0.0004264495219103992, 0.017707016319036484, 0.009599066339433193, -0.00852732639759779, -0.005847975146025419, -0.003914182540029287, 0.01823955774307251, 0.017760271206498146, -0.003528089728206396, 0.007648632396012545, 0.014511764980852604, 0.010963705368340015, 0.015204069204628468, 0.009532499127089977, 0.001521904719993472, -0.04244358465075493, 0.01204210240393877, -0.0018339409725740552, 0.04284299165010452, -0.02048954740166664, -0.0002465086290612817, -0.025801653042435646, -0.0013080559438094497, -0.000424993340857327, 0.012055415660142899, 0.033922914415597916, 0.004583188332617283, 5.647855869028717e-05, -0.013526562601327896, 0.012248462066054344, 0.0036578967701643705, -0.007934873923659325, -0.003444880014285445, 0.004290290176868439, -0.025122661143541336, -0.013546532951295376, -0.008094635792076588, 0.022619714960455894, 0.015763238072395325, -0.009852023795247078, 0.010397879406809807, -0.015390459448099136, 0.002096883486956358, 0.01790671981871128, -0.008680432103574276, -0.005182297900319099, 0.01697477139532566, -0.02556200884282589, 0.027798684313893318, -0.02899690344929695, 0.0004892728175036609, 0.010118295438587666, 0.013140469789505005, -0.014658214524388313, -0.012201865203678608, 0.00368785229511559, 0.0031802733428776264, -0.005548420362174511, 0.015776552259922028, 0.03203239291906357, -0.0059145428240299225, -0.01244150847196579, -0.013579816557466984, -0.01519075594842434, 0.00400072056800127, -0.030141867697238922, -0.0125879580155015, 0.015417085960507393, 0.01722772791981697, 0.033124104142189026, 0.010111638344824314, 0.002917330712080002, 0.012894169427454472, 0.0030953993555158377, 0.06326597183942795, -0.0013979222858324647, 0.02175433374941349, 0.01870553195476532, -0.03741106390953064, -0.025655202567577362, -0.011782487854361534, -0.01977061666548252, 0.01066415011882782, 0.0038243161980062723, -0.003847614862024784, 0.002328206319361925, -0.003368327161297202, 0.0032767965458333492, -0.0014345345553010702, -0.015736611559987068, -0.04819503799080849, -0.02620105817914009, 0.03509450703859329, 0.011356454342603683, -0.004053974989801645, -0.011103497818112373, -0.012980706989765167, -0.0038842270150780678, 0.0006194959278218448, 0.021141910925507545, -0.0007825868669897318, -0.01475140918046236, 0.01586974784731865, -0.00838087685406208, 0.009685604833066463, 0.0030055330134928226, 0.03450871258974075, -0.012195208109915257, 0.04537256434559822, 0.002639410551637411, 0.027146320790052414, 0.0063039641827344894, -0.026267627254128456, 0.0014703146880492568, 0.01866559125483036, -0.013020647689700127, -0.0066467877477407455, -0.008633834309875965, 0.005694869440048933, -0.03719804808497429, -0.0052055963315069675, -0.022153740748763084, -0.006310620810836554, -0.0072159417904913425, -0.0036811954341828823, 0.004583188332617283, -0.02095552161335945, 0.022499892860651016, 0.019943691790103912, -0.015204069204628468, 0.004529933910816908, -0.018519142642617226, -0.021434810012578964, 0.016388975083827972, 0.10512375831604004, 0.016349034383893013, -0.009299512021243572, 0.01202213205397129, -0.00755543727427721, 0.004603158682584763, -0.01879872754216194, -0.023937756195664406, 0.03309747576713562, 0.015044307336211205, 0.011695950292050838, -0.01034462545067072, 0.030275003984570503, -0.008966673165559769, 0.020875640213489532, -0.01472478173673153, -0.007049522828310728, 0.006793236825615168, 0.0025445513892918825, 0.007628662046045065, 0.012661182321608067, -0.005581703968346119, -0.0067865801975131035, 0.021820902824401855, -0.027878565713763237, -0.018638964742422104, 0.028464362025260925, 0.018266186118125916, 0.024177400395274162, -0.008347593247890472, -0.002654388314113021, 0.025215856730937958, 0.017241042107343674, 0.026254313066601753, -0.023258764296770096, 0.0025911489501595497, 0.017454059794545174, 0.0036479115951806307, -0.008054695092141628, 0.013406740501523018, 0.007009582128375769, 0.018732158467173576, 0.015510281547904015, -0.017028026282787323, 0.010943735018372536, 0.004842802416533232, -0.016388975083827972, -0.0061308881267905235, -0.007508839946240187, -0.007242569234222174, 0.05328081175684929, 0.0030787575524300337, -0.013167097233235836, -0.02395106852054596, 0.02750578708946705, -0.015936315059661865, 0.008786940015852451, -0.016016196459531784, -0.01070409081876278, 0.025402246043086052, -0.011908967047929764, 0.0067699383944272995, 0.0034748355392366648, -0.010144921950995922, -0.0013147126883268356, -0.018865294754505157, -0.03402942419052124, -0.005388657562434673, -0.011389738880097866, 0.010670807212591171, -0.02268628217279911, -0.013260291889309883, -0.021022088825702667, 0.007062836084514856, 0.0034715072251856327, 0.013093872927129269, 0.020795758813619614, -0.017161160707473755, -0.0009876986732706428, 0.0027758744545280933, -0.029316429048776627, -0.027226202189922333, 0.016442229971289635, -0.0055617340840399265, -0.002825800096616149, -0.01909162476658821, -0.0028374495450407267, 0.010377909056842327, -0.03304422274231911, -0.00447667995467782, 0.0016408945666626096, 0.018306124955415726, -0.0033250581473112106, -0.0198904387652874, 0.00466639781370759, 0.007761797402054071, -0.0003996143932454288, -0.019797243177890778, -0.004266991745680571, -0.014272121712565422, 0.02006351388990879, -0.047635868191719055, -0.000483864190755412, -0.030674410983920097, -0.0006461230223067105, -0.004742950666695833, -0.005272164475172758, 0.02010345458984375, -0.014418570324778557, -0.03402942419052124, 0.011709263548254967, -0.01887860894203186, 0.009212973527610302, -0.0028424421325325966, 0.00021530500089284033, 0.017214415594935417, 0.010271401144564152, 0.010391222313046455, 0.020835699513554573, -0.005388657562434673, -0.0013937618350610137, -0.031260207295417786, 0.003781047184020281, -0.007162687834352255, -0.024363789707422256, 0.0169348306953907, -0.0065003386698663235, -0.0317394956946373, 0.02755904011428356, 0.012807630933821201, 0.04286962002515793, 0.010331312194466591, 0.007362390868365765, -0.023458467796444893, -0.02513597533106804, -0.002579499501734972, -0.02480313554406166, -0.009712232276797295, -0.02488301694393158, 0.005558405537158251, -0.004463366232812405, -0.017667075619101524, -0.010071697644889355, -0.035573795437812805, 0.008580580353736877, -0.026254313066601753, -0.021847529336810112, -0.003867585211992264, -0.01157612819224596, 0.0059145428240299225, -0.0010634195059537888, -0.022206995636224747, -0.03488149121403694, 0.001037624548189342, -0.009026584215462208, -0.02703981287777424, -0.00802141148597002, -0.019917065277695656, 0.023857874795794487, -0.0061308881267905235, 0.03152647614479065, -0.012161924503743649, -0.007948187179863453, 0.012754376977682114, 0.004326902329921722, 0.02268628217279911, -0.01598956808447838, -0.018386006355285645, -0.044627007097005844, 0.0020403009839355946, 0.02451023831963539, 0.022446637973189354, 0.03666550666093826, 0.002246660878881812, -0.013027304783463478, 0.05810031667351723, -0.021780962124466896, -0.01295408047735691, -0.021062029525637627, -0.026893362402915955, -0.015590162016451359, -0.0089933006092906, -0.012028789147734642, 0.012920796871185303, -0.01464490033686161, 0.01472478173673153, 0.03038151189684868, 0.0023914456833153963, 0.006340576335787773, -0.009186347015202045, 0.03030163049697876, -0.028837140649557114, 0.002018666360527277, 0.02107534371316433, 0.01786677911877632, -0.018851980566978455, 0.01705465279519558, -0.007096120156347752, -0.00402069091796875, -0.0035447315312922, 0.007582064718008041, 0.005029192194342613, -0.006487025413662195, -0.0071227471344172955, -0.04159151762723923, -0.004123870749026537, -0.023511722683906555, -0.026613779366016388, 0.02610786445438862, -0.010477760806679726, -0.003062115516513586, 0.004919355269521475, -0.01971736177802086, -0.03264481574296951, -0.024283908307552338, -0.013553190045058727, -0.003987406846135855, 0.03669213131070137, -0.009432647377252579, -0.011715920642018318, -0.005202268250286579, -0.021354928612709045, 0.047129951417446136, 0.0024397072847932577, 0.030195122584700584, 0.004819503519684076, -0.03450871258974075, 0.008806910365819931, 0.00021447290782816708, -0.018172990530729294, -0.018652278929948807, 0.02375136688351631, 0.014272121712565422, -0.0020253232214599848, 0.016921516507864, -0.03674538806080818, 0.012880856171250343, -0.036212846636772156, -0.03674538806080818, 0.0034215813502669334, 0.016242526471614838, -0.0010684120934456587, 0.008900105953216553, 0.011163407936692238, -0.029982104897499084, 0.010184862650930882, 0.0016150996088981628, 0.011862369254231453, -0.002993883565068245, -0.004340216051787138, -0.0359732024371624, -0.0026327536907047033, 0.021900784224271774, 0.02395106852054596, 0.02365817129611969, -0.00042187300277873874, -0.02915666624903679, -0.010504388250410557, -0.016056137159466743, -0.00533207505941391, -0.021261733025312424, 0.021022088825702667, 0.01064417976886034, -0.0007164351991377771, -0.00712940376251936, -0.0031836016569286585, -0.016388975083827972, 0.005348717328161001, -0.020888954401016235, 0.027665548026561737, 0.008307652547955513, 0.012574643827974796, 0.008620521053671837, 0.017547253519296646, 0.03251168131828308, 0.01254801731556654, -0.0031569746788591146, 0.006204112432897091, -0.025162601843476295, -0.008940046653151512, 0.0010159900411963463, -0.0031885942444205284, 0.004836145788431168, -0.018825354054570198, -0.004343544598668814, -0.009339452721178532, 0.003954123239964247, -0.001983718480914831, 0.016921516507864, -0.03820987790822983, -0.02146143652498722, -0.01428543496876955, -0.014112358912825584, 0.013846088200807571, -0.002644403139129281, 0.013659697957336903, 0.0038076741620898247, 0.034215811640024185, -0.030195122584700584, 0.019704047590494156, -0.01709459349513054, 0.003701165784150362, -0.037517573684453964, 0.00011056484072469175, 0.007522153668105602, 0.0007201796397566795, 0.019903751090168953, -0.007815051823854446, -0.00605433527380228, 0.020303158089518547, 0.016815008595585823, 0.0068964166566729546, -0.01705465279519558, 0.005198939703404903, -0.0021318315993994474, -0.009785456582903862, 0.008713715709745884, -0.03195251151919365, -0.01973067596554756, -0.0030171824619174004, 0.028251344338059425, 0.001686659874394536, 0.008221114985644817, -0.02352503500878811, 0.015044307336211205, 0.01951765827834606, 0.014711468480527401, 0.010990331880748272, -0.032485052943229675, 0.01722772791981697, -0.014817976392805576, -0.005278821103274822, 0.018106423318386078, -0.0001469690614612773, -0.006117574404925108, -0.030993934720754623, -0.002012009732425213, 0.003057122929021716, 0.014804663136601448, -0.019011743366718292, 0.004063960164785385, 0.016016196459531784, -0.01942446455359459, 0.0002178012946387753, 0.0022200339008122683, -0.016495482996106148, -0.019411150366067886, -0.010271401144564152, -0.036425862461328506, -0.0053453887812793255, -0.014405257068574429, 0.025415560230612755, -0.006533622741699219, -0.019371209666132927, -0.0048461309634149075, -0.018865294754505157, -0.02095552161335945, -0.0338696613907814, -0.012075386010110378, 0.00850735604763031, 0.035280898213386536, -0.001284757163375616, 0.01938452385365963, 0.011143438518047333, -0.006763281300663948, 0.019437776878476143, -0.02755904011428356, -0.01529726479202509, 0.004113885574042797, -0.012155267409980297, 0.009206317365169525, 0.013240321539342403, -0.03086080029606819, -0.008627178147435188, 0.012088700197637081, -0.017933346331119537, 0.007582064718008041, -0.0027625607326626778, -0.006546936463564634, 0.003604642581194639, -0.02214042656123638, 0.01616264507174492, 0.011769174598157406, 0.0026810152921825647, 0.0027059782296419144, -0.017427431419491768, -0.004380156751722097, -0.007641975302249193, -0.012428195215761662, -0.01637566089630127, -0.030195122584700584, 0.0010991996387019753, -0.010830570012331009, 0.009319482371211052, -0.03189925476908684, -0.012727750465273857, -0.018851980566978455, -0.03168623894453049, 0.03397617116570473, -0.006400487385690212, -0.002652724040672183, 0.045186176896095276, 0.016961457207798958, -0.019011743366718292, 0.004333559423685074, 0.026813481003046036, 0.010617553256452084, -0.034428831189870834, 0.020036887377500534, -0.02662709169089794, 0.011296544224023819, 0.009346108883619308, -0.007721856702119112, -0.009958532638847828, 0.018386006355285645, -0.0040672882460057735, -0.01625584065914154, -0.014764722436666489, 0.02944956347346306, 0.014658214524388313, -0.021448122337460518, 0.006011066026985645, -0.002316557103767991, -0.01760050840675831, -0.004140513017773628, -0.01785346493124962, 0.003980750218033791, 0.0013063916703686118, -0.004213737323880196, 0.016202585771679878, 0.008294339291751385, -0.006080962251871824, 0.0011724241776391864, 0.03610633686184883, -0.03735781088471413, 0.016775067895650864, 0.207371786236763, 0.0022283548023551702, -0.005451897159218788, 0.05016544088721275, -0.008114606142044067, 0.012368284165859222, 0.031846001744270325, -0.005658257286995649, -0.013153783977031708, -0.005315433256328106, -0.007741827052086592, 0.005481852684170008, -0.009832053445279598, 0.0043535297736525536, 0.011602755635976791, 0.013260291889309883, -0.050511594861745834, -0.022832730785012245, 0.009539156220853329, -0.06172160059213638, 0.0022449966054409742, -0.02280610427260399, -0.01726766861975193, -0.021474750712513924, 0.008727029897272587, 0.02526910975575447, -0.005228895228356123, -0.02002357318997383, 0.019650794565677643, 0.003245176747441292, -0.01831943914294243, -0.006916387006640434, -0.0012215177994221449, 0.0010018442990258336, 0.011016959324479103, 0.0024580133613198996, 0.017786897718906403, 0.002269959542900324, 0.025002839043736458, -0.011689293198287487, 0.01212864089757204, -0.0035680304281413555, 0.02010345458984375, -0.008979986421763897, -0.02111528441309929, 0.029183292761445045, -0.007182658184319735, -0.016775067895650864, -0.020675936713814735, 0.009412677027285099, -0.025189228355884552, 0.00512238685041666, 0.037943605333566666, 0.027905192226171494, 0.0047762347385287285, -0.004816175438463688, -0.009412677027285099, 0.02556200884282589, -0.02827797271311283, 0.006137544754892588, -0.023072374984622, 0.019530972465872765, -0.007262539584189653, 0.011363111436367035, -0.03251168131828308, 0.013699638657271862, -0.0141789261251688, -0.018599024042487144, 0.013147126883268356, -0.029023529961705208, -0.004742950666695833, -0.006210769060999155, -2.6380062990938313e-05, 0.011715920642018318, -0.0003575935261324048, -0.012834258377552032, 0.024723254144191742, -0.018425947055220604, 0.016056137159466743, 0.004493321757763624, 0.01351990643888712, -0.024190712720155716, -0.0021201821509748697, -0.008354250341653824, -0.005481852684170008, -0.032698068767786026, -0.0010359602747485042, -0.012581300921738148, -0.021594570949673653, 0.007249225862324238, -0.01337345689535141, -0.018465887755155563, 0.002562857698649168, 0.00739567494019866, 0.0038409580010920763, 0.014272121712565422, 0.018945176154375076, 0.007062836084514856, 0.004503306932747364, -0.004077273420989513, -0.029769089072942734, -0.014138986356556416, 0.046198006719350815, 0.018306124955415726, -0.030461393296718597, 0.007781767752021551, 0.02255314774811268, 0.0003494805714581162, 0.01117672212421894, -0.02120847813785076, 0.02375136688351631, -0.0010542664676904678, 0.0062507097609341145, -0.026347506791353226, 0.016269152984023094, 0.028970276936888695, -0.011809115298092365, -0.030887426808476448, 0.005385329481214285, 0.025961413979530334, -0.006017722655087709, -0.022752849385142326, -0.005714839790016413, 0.010764001868665218, 0.0019537629559636116, -0.013752893544733524, -0.014804663136601448, 0.016322407871484756, 0.016828322783112526, -0.00558836106210947, 0.026254313066601753, -0.026480643078684807, -0.010963705368340015, -0.004985922947525978, -0.004280305001884699, 0.0325915589928627, -0.00144951231777668, -0.021767647936940193, 0.031766120344400406, -0.0007813387201167643, 0.001115009537898004, 0.008247741498053074, -0.0026144476141780615, 0.014138986356556416, -0.008600550703704357, -0.012980706989765167, 0.011669322848320007, -0.007096120156347752, 0.010564298368990421, 0.0017008055001497269, -0.02018333598971367, 0.008913419209420681, 0.011010302230715752, -0.008314309641718864, 0.0057680937461555, -0.008760313503444195, -0.023591604083776474, -0.014498451724648476, 0.0005433590849861503, 0.0355471670627594, -0.02987559698522091, -0.000722259865142405, 0.02251320704817772, -0.0027908519841730595, -0.016921516507864, -0.0035979857202619314, -0.16860274970531464, 0.02573508396744728, 0.0004971777088940144, -0.008114606142044067, 0.029955478385090828, 0.03783709928393364, 0.021701080724596977, -0.011383081786334515, -0.007821707986295223, -0.019837183877825737, 0.012068729847669601, 0.015177442692220211, -0.03296434134244919, -0.015896374359726906, -0.019757302477955818, 0.023138942196965218, -0.009991816245019436, 0.013539876788854599, 0.03994063660502434, 0.012514733709394932, 0.01827949844300747, -0.011076870374381542, 0.009239600971341133, -0.025175916031003, -0.004463366232812405, 0.003604642581194639, 0.010996988974511623, 0.00289902463555336, 0.0038309728261083364, -0.012774347327649593, -0.0014303741045296192, 0.01479134988039732, 0.010803942568600178, -0.008920076303184032, 0.04068619757890701, 0.01709459349513054, -0.009732202626764774, -0.006194127257913351, -0.004673054441809654, 0.022486578673124313, 0.01600288227200508, 0.009133093059062958, 0.026640405878424644, 0.0014961097622290254, 0.0006411304348148406, 0.02806495502591133, -0.013100529089570045, -0.0007763461326248944, -0.008008098229765892, -0.009086495265364647, 0.02023659087717533, -0.0013163768453523517, 0.018133049830794334, -0.0022233622148633003, 0.02200729213654995, 0.021301673725247383, 0.011016959324479103, 0.010144921950995922, 0.005052490625530481, -0.026800168678164482, 0.007801738101989031, 0.0003736113721970469, 0.028890395537018776, -0.001845590304583311, 0.0038875555619597435, 0.009099808521568775, -0.011802458204329014, 0.021062029525637627, -0.03195251151919365, 0.014125672169029713, -0.014125672169029713, -0.014658214524388313, 0.021168537437915802, -0.013726266101002693, -0.010098325088620186, 0.007042865734547377, -0.03315072879195213, 0.020156709477305412, 2.0932431652909145e-05, -0.019317954778671265, -0.03948797658085823, 0.03911519795656204, -0.0001018278271658346, -0.0017989928601309657, 0.0038276445120573044, -0.004313589073717594, 0.001917150686495006, -0.008008098229765892, -0.003674538806080818, -0.01981055736541748, 0.013686325401067734, -0.03568030521273613, -0.004926011897623539, -0.012920796871185303, -0.0035181045532226562, -0.005904557649046183, 0.018479201942682266, -0.01815967634320259, -0.018612338230013847, -0.020596055313944817, -0.0035946574062108994, -0.023911127820611, -0.00322687067091465, 0.02620105817914009, 0.023551663383841515, 0.02056942880153656, -0.001452008611522615, 0.007542124018073082, 0.021528003737330437, 0.004806190263479948, 0.00710943341255188, 0.01127657387405634, 0.034641847014427185, -0.008227771148085594, 0.011942250654101372, 0.037437692284584045, -0.007022895384579897, -0.007309136912226677, 0.0385294035077095, -0.004573203157633543, 0.07263870537281036, -0.01604282297194004, -0.004396798554807901, 0.0062340679578483105, -0.016029508784413338, -0.02251320704817772, -0.10991663485765457, 0.00882688071578741, -0.0002259142347611487, 0.020329784601926804, -0.006267352029681206, 0.017959972843527794, -0.011163407936692238, 0.01841263473033905, 0.0005300455377437174, 0.003614627756178379, -0.006137544754892588, -0.029396310448646545, 0.00688976002857089, -0.0058280047960579395, 0.002408087719231844, -0.03376315161585808, 0.0019903751090168953, -0.015776552259922028, -0.022127114236354828, 0.04587848111987114, -0.01015823520720005, -0.007701886352151632, 0.023977696895599365, -0.03717141970992088, 0.019331268966197968, -0.00755543727427721, -0.03504125401377678, 0.007835022173821926, 0.02742590568959713, 0.017760271206498146, -0.02082238532602787, -0.016681872308254242, 0.015044307336211205, -0.015843119472265244, -0.005904557649046183, -0.012155267409980297, -0.042390331625938416, 0.012827601283788681, 0.01985049806535244, -0.031206952407956123, 0.00759537797421217, -0.02001025900244713, 0.02188747003674507, -0.013526562601327896, 0.006876446772366762, -0.005634958390146494, -0.025282423943281174, 0.02074250392615795, 0.0112166628241539, -0.021860843524336815, -0.015283950604498386, 0.017214415594935417, -0.04345541447401047, 0.0013338509015738964, 0.018985116854310036, -0.008700402453541756, 0.031846001744270325, 0.0034482083283364773, 0.0033283864613622427, -0.00939936377108097, -0.02620105817914009, 0.018359379842877388, -0.002507939236238599, 0.016708500683307648, 0.017667075619101524, -0.00939936377108097, -0.005335403606295586, 0.0019620838575065136, 0.0313134603202343, -0.01015823520720005, -0.017028026282787323, -0.006610175594687462, -0.029476191848516464, 0.015776552259922028, -0.015097561292350292, 0.03482823818922043, -0.025828279554843903, -0.01849251613020897, 0.007156031206250191, -0.0067865801975131035, -0.0015235688770189881, -0.014804663136601448, 0.005804705899208784, -0.005411956459283829, 0.01339342724531889, 0.01870553195476532, 0.007076149806380272, -0.016189271584153175, 0.004683039616793394, -0.011755861341953278, 0.007488869596272707, 0.01246147882193327, -0.019704047590494156, -0.01726766861975193, 0.01676175370812416, 0.04097909480333328, -1.670693927735556e-05, -0.004539919085800648, 0.002246660878881812, 0.0080413818359375, -0.02140818163752556, 0.006640131119638681, -0.05772753432393074, 0.027372650802135468, 0.00497260969132185, 0.007069493178278208, 0.00990527868270874, -0.017720330506563187, 0.00144451973028481, -0.003308416111394763, -0.02703981287777424, 0.010617553256452084, -0.01349993608891964, 0.023591604083776474, -0.023684797808527946, -0.014538392424583435, -0.002817479195073247, 0.003186930203810334, 0.0013995865592733026, -0.011729233898222446, 0.00933279562741518, -0.002732605440542102, 0.007295823190361261, -0.0023448483552783728, 0.015283950604498386, 0.0024446998722851276, -0.017507312819361687, 0.010517701506614685, 0.012607928365468979, 0.02281941846013069, 0.003834301372990012, -0.011356454342603683, 0.005964468698948622, -0.036425862461328506, 0.0014328703982755542, 0.007289166562259197, -0.008680432103574276, 0.012634554877877235, -0.014857917092740536, 0.009985159151256084, 0.0006631810101680458, 0.0359732024371624, -0.013400084339082241, -0.018292812630534172, 0.012554674409329891, -0.01971736177802086, -0.0012647869298234582, 0.023298704996705055, -0.015856433659791946, -0.010071697644889355, 0.005994424223899841, -0.005278821103274822, 0.011190035380423069, 0.010923764668405056, 0.005541763734072447, -0.011030272580683231, -0.00692970072850585, 0.00024463640875183046, 0.025455500930547714, -0.004566546529531479, 0.0037311213091015816, -0.021221792325377464, 0.014604959636926651, -0.025761712342500687, 0.00577807892113924, -0.012727750465273857, 0.021195165812969208, -0.009765486232936382, -0.014192240312695503, 0.007382361218333244, -0.012814288027584553, -0.009645664133131504, -0.002804165706038475, 0.0042237224988639355, -0.004746279213577509, 0.03160635754466057, 0.015057620592415333, 0.018732158467173576, -0.014551705680787563, 0.0026194402016699314, -0.026507269591093063, 0.0063971588388085365, -0.010144921950995922, -0.008347593247890472, -0.03059452958405018, -0.0009810419287532568, 0.020249903202056885, 0.003150317817926407, 0.0005275492439977825, 0.013446681201457977, -0.0038409580010920763, 0.017613820731639862, 0.02002357318997383, -0.017081279307603836, 0.001937120920047164, -0.002825800096616149, 0.017121220007538795, 0.017760271206498146, -0.0019720690324902534, -0.0024696628097444773, 0.02124841883778572, 0.02023659087717533, -0.019757302477955818, 0.010537671856582165, 0.00844078790396452, -0.013806147500872612, -0.01600288227200508, -0.00014374469174072146, -0.02944956347346306, -0.01858570985496044, 0.014658214524388313, 0.00739567494019866, 0.014804663136601448, -0.003378312336280942, 0.028810514137148857, 0.02691999077796936, -0.013752893544733524, -0.008261055685579777, 0.008946702815592289, -0.009572439827024937, -0.013020647689700127, 0.04180453345179558, -0.01913156546652317, 0.05075123906135559, 0.011942250654101372, 0.0003049634105991572, 0.025628576055169106, 0.012468135915696621, 0.01113012433052063, 0.024004323408007622, 0.011656009592115879, -0.004589844960719347, 0.012794317677617073, 0.002326542278751731, -0.043535295873880386, 0.004539919085800648, 0.011762517504394054, -0.04100572317838669, -0.006360546685755253, 0.015363832004368305, -0.014525079168379307, 0.03171286731958389, 0.0009377729147672653, -0.022020604461431503, 0.01210867054760456, 0.02513597533106804, 0.015936315059661865, 0.027372650802135468, -0.0011566142784431577, 0.0064537413418293, -0.008593893609941006, 0.008900105953216553, -0.015244009904563427, 0.016309093683958054, -0.012521389871835709, 0.000522140646353364, 0.02146143652498722, -0.01335348654538393, 0.028917022049427032, -0.03855602815747261, -0.012301716953516006, 0.01565673016011715, -0.006027707830071449, 0.02433716133236885, -0.005941169802099466, 0.002975577488541603, 0.01030468475073576, 0.02616111747920513, 0.0034315665252506733, 0.004693024791777134, -0.023458467796444893, 0.006190798711031675, 0.008720372803509235, -0.018053168430924416, -0.022113800048828125, 0.012834258377552032, 0.010311341844499111, 0.005741466768085957, -0.014951112680137157, 0.011789144948124886, 0.0026926647406071424, -0.015070933848619461, 0.008241085335612297, -0.021301673725247383, -0.012767690233886242, 0.0029572714120149612, 0.006596861872822046, -0.008653804659843445, 0.0060010808520019054, -0.017081279307603836], "137b3a3c-65e3-438c-ae73-8ccc28f98989": [-0.010226854123175144, -0.022385817021131516, -0.016576165333390236, 0.0027316026389598846, -0.011972415260970592, 0.026023512706160545, -0.015057126991450787, -0.010253503918647766, -0.016256367787718773, -0.017708780243992805, 0.023598382249474525, 0.029234811663627625, 0.01121955830603838, 0.006862319074571133, -0.005436555948108435, 0.020293809473514557, 0.030940398573875427, -0.003734300844371319, 0.033125679939985275, -0.020920079201459885, -0.00019591754244174808, 0.005269994493573904, -0.014524132013320923, 0.009667208418250084, -0.020227184519171715, 0.027169452980160713, 0.03315233066678047, -0.012578697875142097, 0.008467968553304672, -0.0029731164686381817, -0.01445750705897808, 0.005453211721032858, -0.006242711562663317, -0.02191944606602192, -0.02313201129436493, -0.01043338980525732, 0.005509842652827501, -0.020546982064843178, -0.0016681099077686667, 0.002146973041817546, -0.0026649783831089735, -0.0022935469169169664, -0.013005093671381474, 0.010060292668640614, -0.021866146475076675, 0.017202435061335564, -0.010320128872990608, -0.014843928627669811, -0.02642326056957245, 0.003627701662480831, 0.037123147398233414, 0.01151270605623722, -0.04096071794629097, 0.014617405831813812, -0.026010187342762947, -0.0002190279046772048, 0.013951160944998264, 0.03395182266831398, -0.005736365914344788, 0.012638659216463566, -0.004047435708343983, 0.013584726490080357, 0.002155301161110401, 0.00965388398617506, -0.044211991131305695, -0.017162460833787918, 0.006389285437762737, -0.0017472263425588608, -0.007481926586478949, -0.026223385706543922, 0.030673900619149208, 0.0038009253330528736, -0.008914352394640446, -0.0023718306329101324, 0.01377793774008751, -0.02190612070262432, -0.029234811663627625, -0.007721774745732546, -0.01766880601644516, 0.008974314667284489, -0.0017738761380314827, -0.02001398615539074, 0.016749389469623566, 0.004780304618179798, 0.008727803826332092, -0.017895329743623734, 0.006492553278803825, 0.023585058748722076, -0.013844561763107777, -0.02582363970577717, 0.02546386793255806, 0.027502575889229774, 0.010913086123764515, 0.013924511149525642, 0.009833769872784615, 0.030274152755737305, -0.0190412700176239, 0.025050796568393707, -0.0042906152084469795, -0.013711313717067242, -0.02537059411406517, 0.007062192540615797, -0.02926146239042282, -0.0012092338874936104, -0.018428325653076172, 0.000878610007930547, -0.011625967919826508, -0.0190545953810215, 0.011566005647182465, -0.015723371878266335, -0.010919748805463314, 0.03363202512264252, -0.0033662007190287113, -0.0416003093123436, -0.007954959757626057, -0.028248770162463188, 0.02806222066283226, -0.022212594747543335, -0.03448481857776642, 0.0019787463825196028, -0.006046169437468052, 0.02573036588728428, -0.003864218480885029, -0.016776038333773613, 0.014310933649539948, -0.0071887788362801075, -0.005929576698690653, -0.016602814197540283, 0.0030563969630748034, 0.0021669603884220123, 0.04349244758486748, 0.01295179408043623, -0.004047435708343983, 0.0038042564410716295, -0.007801724132150412, -0.01407108549028635, -0.033045731484889984, -0.017282383516430855, -0.005449880380183458, -0.02711615338921547, 0.016736064106225967, 0.011732567101716995, -0.010686563327908516, -0.02918151207268238, -0.011752554215490818, 0.04381224140524864, 0.014217658899724483, -0.001770544913597405, -0.016562839969992638, 0.011039672419428825, 0.024264628067612648, -0.0077950614504516125, 0.00992038194090128, -0.013058393262326717, 0.025597115978598595, -0.0011684264754876494, 0.014191009104251862, -0.003514440031722188, 0.006515871733427048, -0.00536993145942688, 0.019627565518021584, 0.011159596964716911, -0.007008892949670553, 0.008208133280277252, -0.005799659062176943, 0.03363202512264252, 0.0018238445045426488, -0.026996230706572533, -0.023451808840036392, -0.027849022299051285, 0.0013125018449500203, 0.01828175038099289, -0.04778306186199188, 0.0101735545322299, 0.0030047630425542593, -0.0017155797686427832, 0.029341410845518112, 0.0233718603849411, -0.01670941337943077, 0.012671971693634987, -0.02822211943566799, -0.020307134836912155, 0.023851554840803146, 0.024677699431777, -0.03645690158009529, 0.005363268777728081, -0.021186577156186104, -0.02442452684044838, -0.008434656076133251, 0.013018419034779072, 0.0017272391123697162, 0.0246910247951746, 0.007335352711379528, -0.011459406465291977, -0.6314932703971863, -0.00710216723382473, -0.011372794397175312, -0.00023568401229567826, -0.009980343282222748, -0.0004663711879402399, 0.01732235960662365, 0.0002671224356163293, -0.005076783709228039, -0.007701787166297436, -0.034351568669080734, 0.018428325653076172, 0.0029231479857116938, -0.028168819844722748, -0.0014657380525022745, 0.009900393895804882, 0.005419899709522724, -0.02303873747587204, -0.0028348707128316164, -0.017615506425499916, -0.013538089580833912, 0.008887702599167824, 0.0016481225611642003, 0.010773174464702606, -0.003192977048456669, -0.01299176923930645, 0.017868679016828537, 0.0045304629020392895, 0.00281321769580245, 0.016642790287733078, -0.035470861941576004, 0.04583762586116791, 0.028008921071887016, 0.0013608045410364866, 0.039361730217933655, -0.006459241267293692, -0.02026716060936451, 0.028648516163229942, 0.02538391761481762, 0.0013075049500912428, -0.04311934858560562, -0.02423797734081745, 0.009887069463729858, 0.022212594747543335, 0.013411503285169601, 0.0034777966793626547, 0.004104066640138626, 0.0038975307252258062, 0.011246208101511002, 0.025570467114448547, 0.004250640515238047, -0.01896131969988346, -0.028541916981339455, -0.0030547312926501036, -0.004540456924587488, -0.001355807762593031, 0.0272893775254488, -0.01537692453712225, 0.0029031606391072273, 0.0041473726741969585, 0.01577667146921158, 0.014017785899341106, 0.006855656858533621, -0.003920849412679672, -0.011112959124147892, 0.008907689712941647, -0.001973749604076147, 0.01880142092704773, 0.004167359787970781, -0.019534291699528694, 0.010086942464113235, 0.03845563530921936, 0.023345209658145905, -0.025930238887667656, 0.019094569608569145, 0.010053630918264389, 0.0355241596698761, 0.015883270651102066, -0.004313933663070202, 0.019001295790076256, 0.02111995220184326, -0.023345209658145905, -0.021932771429419518, -0.023491783067584038, 0.014111059717833996, -0.01730903424322605, -0.00966054666787386, 0.04226655513048172, -0.0012550381943583488, 0.004057429265230894, 0.003034743946045637, 0.020573632791638374, -0.010380090214312077, 0.01389786135405302, 0.01940104179084301, 0.015643423423171043, -0.026809681206941605, 0.002042039530351758, 0.01618974283337593, -0.01055997610092163, -0.006665776949375868, -0.018295075744390488, -0.000470951636089012, -0.01350477710366249, 0.005306637845933437, -0.009447348304092884, -0.028728466480970383, -0.011959089897572994, 0.03533761203289032, -0.017215760424733162, 0.023012086749076843, -0.018415000289678574, -0.016855986788868904, 0.0072021037340164185, -0.008328056894242764, -0.024198003113269806, 0.009234149940311909, 0.0009535625576972961, 0.019694190472364426, -0.003564408514648676, 0.028781766071915627, -0.008754453621804714, 0.0057297032326459885, -0.003780937986448407, 0.016402941197156906, 0.042826201766729355, 0.0016431256663054228, -0.003734300844371319, -0.017815379425883293, 0.006635795813053846, 0.0020836798939853907, -0.016922611743211746, 0.02104000374674797, -0.005163395311683416, 0.005796327721327543, -0.03136679530143738, 0.018375026062130928, 0.016842663288116455, 0.01670941337943077, -0.024198003113269806, -0.0038842058274894953, 0.011119621805846691, 0.013697988353669643, 0.02113327756524086, -0.005819646175950766, -0.029581259936094284, -0.02475764788687229, 0.01938771642744541, -0.033898524940013885, 0.007808386348187923, -0.015630098059773445, -0.0023585057351738214, -0.0071754539385437965, 0.03261933475732803, -0.005679734982550144, -0.0007382822805084288, -0.002804889576509595, 0.005673072766512632, -0.0060028634034097195, -0.019187843427062035, 0.0088743781670928, 0.01914786919951439, -0.0190412700176239, 0.003487790236249566, 0.03221958875656128, -0.0022419129963964224, -0.013697988353669643, 0.022972112521529198, 0.018375026062130928, -0.02702287957072258, 0.021626299247145653, -0.023012086749076843, -0.01095972303301096, 0.04208000749349594, -0.04407874122262001, -0.012332187034189701, 0.008381356485188007, -0.018375026062130928, -0.00926079973578453, 0.005786334164440632, -0.02389153093099594, 0.013258267194032669, -0.0015165392542257905, -0.015496849082410336, 0.03661680221557617, 0.006525865755975246, -0.0023035407066345215, 0.004673705901950598, 0.0182018019258976, 0.023518433794379234, 0.00013574733748100698, 0.013658014126121998, 0.004653718322515488, -0.0069289435632526875, -0.00870115403085947, -0.00214364193379879, 0.008281419984996319, 0.019640890881419182, -0.0034145035315304995, 0.007055529858916998, -0.0014607412740588188, 0.003216295735910535, 0.018894696608185768, 0.019374392926692963, -0.0037009886000305414, -0.029821107164025307, 0.008894365280866623, -0.0012825208250433207, 0.03253938630223274, -0.018774772062897682, -0.0018554910784587264, -0.03237948566675186, -0.007668475154787302, -0.01861487329006195, 0.021506374701857567, 0.020507007837295532, 0.02277223952114582, -0.0033745288383215666, -0.011672604829072952, 0.008647854439914227, 0.0063359858468174934, -0.012365499511361122, 0.007801724132150412, -0.0031296839006245136, -0.024744322523474693, -0.0025883601047098637, -0.004030779469758272, 0.0203471090644598, 0.010633263736963272, -0.004347245674580336, 0.010133580304682255, -0.003162996144965291, 0.0017405638936907053, 0.027849022299051285, -0.00507012102752924, -0.008547917939722538, 0.010806486941874027, -0.02425130270421505, 0.032512735575437546, -0.03475131839513779, -0.0066557833924889565, -0.00480695441365242, 0.0268363319337368, -0.014097735285758972, -0.023411834612488747, 0.012445448897778988, 0.014097735285758972, -0.0057163783349096775, 0.008301407098770142, 0.012745258398354053, 0.00036747552803717554, 0.0027932303491979837, -0.0010501680662855506, -0.016469566151499748, 0.014777304604649544, -0.04106731712818146, -0.01377793774008751, 0.006315998733043671, 0.008814415894448757, 0.029634559527039528, 0.002296878257766366, 0.009633896872401237, -8.078215614659712e-05, 0.006082812789827585, 0.04056096822023392, -0.006072819232940674, 0.016256367787718773, 0.01896131969988346, -0.03395182266831398, -0.03579065948724747, -0.010746524669229984, -0.014737330377101898, 0.009853756986558437, -0.00508677726611495, 0.005076783709228039, -0.0012941800523549318, -0.004107397980988026, -0.013038406148552895, 0.006419266574084759, -0.015523498877882957, -0.044718336313962936, -0.02044038288295269, 0.03472466766834259, 0.004177353344857693, 0.010100267827510834, -0.019361067563295364, -0.01161264255642891, -0.00021038754493929446, -0.0028815078549087048, 0.01165261771529913, 0.001433258643373847, -0.016429591923952103, 0.012019052170217037, -0.012238913215696812, -0.003994136117398739, 0.013038406148552895, 0.03134014457464218, -0.01654951460659504, 0.04527798295021057, 0.00206868932582438, 0.02763582579791546, 0.019814113155007362, -0.02648988366127014, 0.00738199008628726, 0.020840130746364594, -0.004996834322810173, 0.004250640515238047, -0.0177487563341856, 0.0030663907527923584, -0.036590151488780975, -0.0023718306329101324, -0.024051429703831673, -0.009407373145222664, -0.010533326305449009, -0.002596688224002719, 0.002530063735321164, -0.022932138293981552, 0.028382018208503723, 0.026023512706160545, -0.030167553573846817, 0.012445448897778988, -0.015496849082410336, -0.02589026466012001, 0.008134846575558186, 0.11139608919620514, 0.028008921071887016, -0.017948629334568977, -0.004280621185898781, -0.002092008013278246, 0.009767145849764347, -0.020480358973145485, -0.01584329642355442, 0.041253864765167236, 0.02710282988846302, 0.027662474662065506, -0.0025517167523503304, 0.02475764788687229, -0.007748424541205168, 0.017175784334540367, -0.014564106240868568, -0.004030779469758272, 0.006619140040129423, -0.00042764574754983187, 0.0002706618688534945, 0.0038808747194707394, 0.004500482231378555, 0.008787766098976135, 0.0212132278829813, -0.023838231340050697, -0.013544752262532711, 0.02339850924909115, 0.009200837463140488, 0.017388982698321342, 0.0006962255574762821, -0.004916884936392307, 0.026823006570339203, 0.014044435694813728, 0.034511469304561615, -0.014737330377101898, 0.0057297032326459885, 0.0024850922636687756, 0.008934339508414268, -0.010599951259791851, 0.013444815762341022, 0.011959089897572994, 0.006315998733043671, 0.010919748805463314, -0.015017152763903141, 0.0181884765625, -0.005533161107450724, -0.004480494651943445, 0.0015665075043216348, -0.01801525242626667, -0.00764182535931468, 0.052366822957992554, 0.0019137875642627478, -0.009080913849174976, -0.020626932382583618, 0.028435317799448967, -0.014404207468032837, -0.0009127550874836743, -0.020733531564474106, -0.011106297373771667, 0.041253864765167236, -0.012532060034573078, 0.003850893583148718, 0.0074619390070438385, -0.014843928627669811, -0.005766346585005522, -0.01854824833571911, -0.04541122913360596, -0.013658014126121998, -0.021093303337693214, 0.008654517121613026, -0.010779837146401405, -0.011046335101127625, -0.015869945287704468, 0.012705284170806408, 0.0019470998086035252, 0.006829007063060999, 0.019454341381788254, -0.018308401107788086, -0.006702420301735401, -0.011446082033216953, -0.019107894971966743, -0.028541916981339455, 0.0038175813388079405, -0.0030247503891587257, -0.015989869832992554, -0.017882004380226135, -0.005043471232056618, 0.0010468368418514729, -0.030380751937627792, -0.00870115403085947, 0.006875643972307444, 0.02226589433848858, 0.0125653725117445, -0.017082510516047478, 0.008381356485188007, 0.0034644717816263437, 0.0008719475590623915, -0.025050796568393707, 0.002430127002298832, -0.011526031419634819, 0.017109161242842674, -0.05308636650443077, -0.00354108982719481, -0.024877572432160378, -0.014524132013320923, 4.343602267908864e-05, -0.007022217847406864, 0.013618038967251778, -0.018401674926280975, -0.02744927629828453, 0.007168791722506285, -0.016522865742444992, 0.014484156854450703, 0.006489221937954426, 0.017215760424733162, 0.0233718603849411, 0.006908956449478865, 0.016083143651485443, 0.009560609236359596, -0.014377557672560215, -3.1516490707872435e-05, -0.03611045703291893, 0.0024201334454119205, 0.004683699458837509, -0.026636458933353424, 0.010593288578093052, 0.003920849412679672, -0.02537059411406517, 0.033738624304533005, 0.017175784334540367, 0.04037442058324814, 0.006126118823885918, 0.01269195880740881, -0.021772872656583786, -0.03267263248562813, -0.0074752639047801495, -0.02936806157231331, -0.010013655759394169, -0.019987337291240692, 0.00710216723382473, 0.005023484118282795, -0.03083379939198494, -0.014710680581629276, -0.032699283212423325, 0.014484156854450703, -0.025397242978215218, -0.005809652619063854, -0.006126118823885918, -0.02060028165578842, 0.004467169754207134, 0.0027066185139119625, -0.030460702255368233, -0.039708174765110016, -0.006755719892680645, -0.0058596208691596985, -0.012905157171189785, 0.004926878493279219, -0.015949895605444908, 0.03360537812113762, -0.010579964146018028, 0.024571100249886513, -0.01151936873793602, -0.0060028634034097195, 0.005509842652827501, 0.009473998099565506, 0.018854720517992973, 0.00019570934819057584, -0.014670705422759056, -0.03930842876434326, -0.0013466468080878258, 0.03533761203289032, 0.022026045247912407, 0.02902161329984665, 0.0009369064355269074, -0.008068221621215343, 0.05074118822813034, -0.019627565518021584, -0.013844561763107777, -0.011992402374744415, -0.03877543285489082, -0.02025383524596691, -0.0002656650322023779, -0.00965388398617506, 0.011066322214901447, -0.01992071233689785, 0.001998733729124069, 0.03253938630223274, 0.0048369355499744415, 0.008381356485188007, -0.02191944606602192, 0.02659648284316063, -0.020893430337309837, 0.007788399234414101, 0.008894365280866623, 0.022758914157748222, -0.02856856770813465, 0.025570467114448547, -0.006262699142098427, 0.007741761859506369, -0.020067285746335983, 0.0054432181641459465, 0.006975580472499132, -0.010293479077517986, -0.004936872515827417, -0.03309902921319008, 0.007581863086670637, -0.02632998488843441, -0.012665309011936188, 0.03690994903445244, -0.017642157152295113, -0.01714913547039032, 0.006219393108040094, -0.03176654130220413, -0.040827468037605286, -0.019627565518021584, -0.0003168825642205775, 0.004643724765628576, 0.02606348693370819, -0.018481625244021416, -0.017215760424733162, -0.007275390904396772, -0.016962585970759392, 0.04743661358952522, -0.0035310962703078985, 0.031739890575408936, 0.0168826375156641, -0.03922848030924797, 0.001007694867439568, -0.0035044464748352766, -0.01906791888177395, -0.006605815142393112, 0.010726537555456161, 0.012638659216463566, 0.0006046169437468052, 0.002373496303334832, -0.02477097325026989, 0.0031679929234087467, -0.03283253312110901, -0.03142009302973747, 0.01463073119521141, -0.0034644717816263437, 0.004930209834128618, 0.005439886823296547, 0.0035843958612531424, -0.026010187342762947, 0.019361067563295364, 0.0037909315433353186, 0.013671338558197021, -0.010793162509799004, 0.001937106135301292, -0.032166287302970886, -0.005289982073009014, 0.02149304933845997, 0.024997496977448463, 0.031126946210861206, 0.0021153264679014683, -0.02139977551996708, -0.004723674152046442, -0.005373262334614992, -0.008934339508414268, -0.023531759157776833, 0.025184044614434242, 0.013471465557813644, -0.008681166917085648, -0.0181751511991024, 0.005050133913755417, -0.01112628448754549, 0.011472731828689575, -0.024184677749872208, 0.023331884294748306, 0.00026025177794508636, 0.010859786532819271, 0.003707651048898697, 0.020920079201459885, 0.03557746112346649, 0.020986704155802727, -0.008494618348777294, 0.007721774745732546, -0.029687857255339622, -0.0024684362579137087, 0.00029356402228586376, -0.008581230416893959, -0.0015140407485887408, -0.015523498877882957, -0.010939735919237137, -0.028701815754175186, 0.0002952296345029026, 0.016389615833759308, -0.0011700920294970274, -0.0346447192132473, -0.01974749006330967, -0.005050133913755417, -0.010966385714709759, 0.02146640047430992, -0.01672273874282837, 0.0177487563341856, -0.010113592259585857, 0.029847756028175354, -0.02582363970577717, 0.020986704155802727, -0.012805220670998096, -0.0011401110095903277, -0.040054623037576675, 3.542026752256788e-05, 0.008494618348777294, -0.015403574332594872, 0.015656746923923492, -0.0022152632009238005, -0.02008061110973358, 0.01836170069873333, 0.021000029519200325, 0.007368665188550949, -0.013791263103485107, 0.011439419351518154, -0.00627935491502285, -0.019201168790459633, 0.01445750705897808, -0.03299243003129959, -0.018854720517992973, -0.00028731796192005277, 0.022758914157748222, 0.005150070413947105, -0.0031829834915697575, -0.02226589433848858, 0.011399444192647934, 0.02322528511285782, 0.013358203694224358, 0.0020053961779922247, -0.03531096130609512, 0.005469867959618568, -0.01749558188021183, -0.0011459406232461333, 0.008234783075749874, -0.005723041016608477, -0.006159431301057339, -0.023665007203817368, -0.0017205766635015607, 0.0016456240555271506, 0.01298510655760765, -0.009793795645236969, 0.007708449847996235, 0.009167524985969067, -0.00588960200548172, -0.0038941996172070503, -0.0009885403560474515, -0.0016672770725563169, -0.01782870478928089, -0.008561242371797562, -0.033898524940013885, -0.0007078848429955542, -0.021359801292419434, 0.030194204300642014, 0.006802357267588377, -0.017362333834171295, -0.003924180753529072, -0.01940104179084301, -0.02294546365737915, -0.022119319066405296, -0.01014024205505848, 0.015536823309957981, 0.026809681206941605, 0.0025000828318297863, 0.02129317633807659, 0.004470501095056534, -0.01681601256132126, 0.01295179408043623, 0.0018788096494972706, -0.017122484743595123, -0.0015948229702189565, -0.0036843325942754745, 0.011166258715093136, 0.007974947802722454, -0.016336316242814064, -0.010480026714503765, 0.017042536288499832, -0.020307134836912155, 0.011939102783799171, -0.0136446887627244, -0.015257000923156738, 0.00629934249445796, -0.018574899062514305, 0.021972745656967163, 0.015616772696375847, 0.002669975161552429, 0.013191642239689827, -0.0238115806132555, -0.0015165392542257905, -0.01407108549028635, -0.016669439151883125, -0.02752922661602497, -0.027156129479408264, -0.007528563495725393, -0.008894365280866623, 0.007048867642879486, -0.02017388492822647, -0.0009085910278372467, -0.023958154022693634, -0.02848861739039421, 0.04831605777144432, 1.53808814502554e-05, 0.0045637753792107105, 0.047676462680101395, 0.0037376319523900747, -0.01575002260506153, -0.008268095552921295, 0.03952162712812424, -0.003524433821439743, -0.027342677116394043, 0.01259868498891592, -0.01312501821666956, 0.006732401438057423, -0.0017622169107198715, 0.0035744020715355873, -0.005196707788854837, 0.01678936369717121, -0.006782369688153267, -0.00328125455416739, -0.008907689712941647, 0.03579065948724747, 0.011432756669819355, -0.028248770162463188, -0.0020337116438895464, -0.004610412288457155, -0.004310602322220802, -0.005822977516800165, -0.01203237660229206, -0.002481760922819376, -0.0030147565994411707, -0.005879608448594809, 0.015656746923923492, 0.010233516804873943, -0.015989869832992554, -0.005533161107450724, 0.027502575889229774, -0.03157999366521835, 0.018375026062130928, 0.20893429219722748, -0.0012758583761751652, -0.006632464937865734, 0.044718336313962936, -0.008081546984612942, 0.013238280080258846, 0.03264598548412323, -0.0051100957207381725, -0.004840266890823841, -0.007342015393078327, -0.003924180753529072, 0.007928309962153435, -0.009114225395023823, 0.000258169777225703, 0.00136996537912637, 0.005023484118282795, -0.046903617680072784, -0.016696089878678322, 0.0034278284292668104, -0.05681733787059784, 0.009020951576530933, -0.012931806966662407, -0.016149768605828285, -0.030274152755737305, 0.009720508009195328, 0.02502414584159851, -0.0008886036812327802, -0.007914985530078411, 0.011605980806052685, -0.0015914917457848787, -0.010273491032421589, -0.010320128872990608, -0.0032246236223727465, -0.001070988131687045, -0.0017022548709064722, 0.011492718942463398, 0.017468933016061783, 7.396355795208365e-05, 0.03155334293842316, -0.010373428463935852, 0.006029513198882341, -0.003887537168338895, 0.019627565518021584, -0.004064091946929693, -0.017282383516430855, 0.02971450798213482, -0.005959557835012674, -0.027076179161667824, -0.030167553573846817, -0.004540456924587488, -0.025703715160489082, 0.00413737865164876, 0.0294480100274086, 0.019267793744802475, 0.015909919515252113, -0.0006008693017065525, -0.003367866389453411, 0.014004460535943508, -0.02278556488454342, 0.008414668962359428, -0.029687857255339622, 0.006719076540321112, -0.0052400133572518826, 0.004783635959029198, -0.030034305527806282, 0.017988603562116623, -0.0037776066455990076, -0.0381358377635479, 0.017175784334540367, -0.025836965069174767, 0.0027449275366961956, -0.007115492131561041, 0.005613110493868589, 0.01785535365343094, -0.0005067622987553477, -0.010446715168654919, 0.0303008034825325, -0.012631997466087341, 0.005359937436878681, 0.010659913532435894, 0.013204967603087425, -0.014710680581629276, -0.004560444038361311, -0.012125651352107525, -0.0019054594449698925, -0.02485092170536518, -0.006109462585300207, -0.00762183777987957, -0.031659942120313644, 0.008554580621421337, -0.011832503601908684, -0.028355369344353676, -0.005946232937276363, -0.0006516704452224076, 0.01086644921451807, 0.017109161242842674, 0.03272593393921852, 0.018121851608157158, 0.007355340290814638, -0.009320762008428574, -0.013005093671381474, -0.00684233196079731, 0.04319929704070091, 0.0101735545322299, -0.03259268403053284, 0.011845828965306282, 0.025330618023872375, 0.01165261771529913, 0.009500647895038128, -0.0181751511991024, 0.02719610370695591, -0.0015848292969167233, 0.008041571825742722, -0.032006390392780304, 0.013218292035162449, 0.02129317633807659, -0.009047601372003555, -0.033738624304533005, 0.014004460535943508, 0.017442282289266586, -0.00952729769051075, -0.024304602295160294, -0.010380090214312077, -0.0023818244226276875, 0.0013732966035604477, -0.020560307428240776, -0.01681601256132126, 0.018854720517992973, -0.0030563969630748034, -0.006719076540321112, 0.02563709206879139, -0.008541255258023739, -0.005882939789444208, -0.0022535722237080336, -0.010193541646003723, 0.020560307428240776, 0.0001220060366904363, -0.02573036588728428, 0.028941664844751358, -0.014191009104251862, -0.0045038131065666676, 0.006848994176834822, -0.004403876606374979, 0.022399142384529114, 0.003229620633646846, 0.0062960111536085606, 0.013105031102895737, -0.016043169423937798, 0.010726537555456161, 0.007008892949670553, -0.019774138927459717, -0.006329323630779982, 0.013804587535560131, -0.009760483168065548, 0.0031463399063795805, -0.009054264053702354, -0.024384550750255585, -0.032006390392780304, 0.008201470598578453, 0.02346513420343399, -0.033285580575466156, 0.0013083377853035927, 0.028302069753408432, 0.000981045188382268, -0.013258267194032669, -0.008861052803695202, -0.16842663288116455, 0.03256603330373764, -0.008781103417277336, -0.004593756515532732, 0.015576798468828201, 0.024824272841215134, 0.029234811663627625, -0.005120089743286371, -0.012138975784182549, -0.023105362430214882, 0.007162129040807486, 0.003098037326708436, -0.03770944103598595, -0.007215428631752729, -0.014350907877087593, 0.022105995565652847, -0.010446715168654919, 0.009440685622394085, 0.040481019765138626, 0.011226220987737179, 0.013724638149142265, -0.006352642085403204, 0.016056494787335396, -0.023864880204200745, -0.0064858910627663136, 0.0024984171614050865, 0.00948732253164053, 0.0025100763887166977, 0.012911819852888584, -0.006236049346625805, 0.0022102664224803448, 0.015296975150704384, 0.020733531564474106, -0.010286816395819187, 0.02554381638765335, 0.018228450790047646, -0.0067723761312663555, -0.020546982064843178, -0.002481760922819376, 0.019467666745185852, 0.01705586165189743, -0.008161496371030807, 0.017442282289266586, -0.00157483562361449, 0.007062192540615797, 0.02658315934240818, -0.009553947485983372, 0.00494020339101553, -0.0017155797686427832, -0.006399278994649649, 0.025184044614434242, -0.004597087390720844, 0.028088871389627457, 0.0018155165016651154, 0.041014015674591064, 0.023665007203817368, 0.03187314048409462, 0.014244308695197105, 0.011932440102100372, -0.02443785034120083, -0.004410539288073778, -0.0017472263425588608, 0.02199939638376236, -0.0015831636264920235, -0.006112793926149607, 0.008021584711968899, -0.03118024580180645, 0.008914352394640446, -0.027036204934120178, 0.008987639099359512, -0.0030147565994411707, 0.00575635302811861, 0.02130650170147419, -0.01662946492433548, 0.0049801780842244625, 0.010333453305065632, -0.037895992398262024, 0.015177051536738873, 0.004793629515916109, -0.016429591923952103, -0.04980844259262085, 0.036776699125766754, -0.008427993394434452, -0.014111059717833996, 0.005816315300762653, -0.0061927433125674725, 0.005936238914728165, -0.009693858213722706, -0.02425130270421505, -0.014004460535943508, 0.005416568368673325, -0.021426426246762276, -0.003950830549001694, -0.02441120147705078, -0.003710982156917453, -0.00614943727850914, 0.01324494183063507, -0.01861487329006195, -0.014817279763519764, -0.005016821436583996, -0.0037509568501263857, -0.024557774886488914, -0.020373759791254997, 0.029208162799477577, 0.024730999022722244, 0.008734466508030891, 0.0015182048082351685, 0.005206701345741749, 0.03197973966598511, -0.010393415577709675, 0.004780304618179798, 0.022305868566036224, 0.017868679016828537, -0.014270958490669727, 0.011019685305655003, 0.027928972616791725, -0.02218594402074814, -0.008814415894448757, 0.03102034702897072, -0.008980976417660713, 0.07861685752868652, -0.007934972643852234, -0.007855023257434368, 0.011999065056443214, -0.01272527128458023, -0.02363835833966732, -0.10702552646398544, 0.010206867009401321, -0.0013741294387727976, 0.013964486308395863, -0.007481926586478949, 0.009214162826538086, -0.004753654822707176, 0.01381791289895773, -0.0033145667985081673, -0.007715112064033747, -0.019600914791226387, -0.025397242978215218, 0.007541888393461704, -0.01203237660229206, 0.009307436645030975, -0.03142009302973747, -0.006479228381067514, -0.008034909144043922, -0.009727170690894127, 0.04231985658407211, -0.014923878014087677, 0.0006312667392194271, 0.012645321898162365, -0.03837568685412407, 0.025477193295955658, 0.0030014317017048597, -0.0364036038517952, 0.010453376919031143, 0.031899791210889816, 0.01644291542470455, -0.02529064379632473, -0.018588224425911903, 0.011459406465291977, -0.0029764475766569376, -0.00827475730329752, -0.005706384778022766, -0.033312227576971054, 0.006042838096618652, 0.022359168156981468, -0.03048735111951828, 0.004017454572021961, -0.011865816079080105, 0.02658315934240818, -0.020227184519171715, 0.011239546351134777, -0.0058462959714233875, -0.027822373434901237, 0.024877572432160378, 0.00805489718914032, -0.006882306654006243, -0.01000699307769537, 0.017215760424733162, -0.047409962862730026, -0.010653250850737095, 0.021706247702240944, -0.0074752639047801495, 0.025090770795941353, 0.01004030555486679, -0.007048867642879486, -0.011805853806436062, -0.02936806157231331, 0.024198003113269806, -0.008161496371030807, 0.023944830521941185, 0.015137076377868652, -0.00655917776748538, -0.0024317926727235317, -0.019814113155007362, 0.033392179757356644, -0.006375960540026426, -0.03307238221168518, 0.0020370427519083023, -0.03040740266442299, 0.0074486141093075275, -0.016869312152266502, 0.032512735575437546, -0.017735430970788002, -0.00961390882730484, 0.01272527128458023, 0.0048369355499744415, 0.007168791722506285, -0.01697591133415699, 0.003063059411942959, -0.0015531826065853238, 0.014777304604649544, 0.011532693170011044, 0.018055228516459465, -0.012452110648155212, 0.014310933649539948, -0.01285852026194334, -0.0018938002176582813, 0.007035542745143175, -0.007681800052523613, -0.027475927025079727, 0.018894696608185768, 0.03176654130220413, -0.0006995567819103599, -0.0022735595703125, 0.003900862066075206, 0.011952427215874195, -0.02365168184041977, -0.002998100593686104, -0.05255337059497833, 0.02355840802192688, 0.01337819080799818, 0.011139608919620514, 0.00428728386759758, -0.02218594402074814, 0.02330523543059826, -0.0160298440605402, -0.03427162021398544, 0.01086644921451807, -0.019854087382555008, 0.02209267020225525, -0.005579798482358456, -0.020133910700678825, -0.011206233873963356, 0.0016422928310930729, 0.015257000923156738, -0.012198938056826591, 0.0037476257421076298, 0.001549851382151246, 0.011106297373771667, -0.0006741562392562628, 0.020733531564474106, -0.00013137509813532233, -0.020040636882185936, 0.010773174464702606, 0.024291276931762695, 0.013751287944614887, -0.003058062633499503, -0.005789665505290031, 0.007615175563842058, -0.030780499801039696, 0.00684233196079731, 0.009953693486750126, -0.013058393262326717, 0.018668172881007195, -0.018921345472335815, 0.009680533781647682, -0.00015261165390256792, 0.044984832406044006, -0.01459075603634119, -0.013844561763107777, 0.006136112380772829, -0.022559041157364845, 0.008987639099359512, 0.030593950301408768, -0.017375659197568893, -0.007048867642879486, 0.014670705422759056, -0.011999065056443214, 0.010146904736757278, 0.013391516171395779, -0.007788399234414101, -0.0047070179134607315, -0.006555846426635981, 0.015829971060156822, 0.013105031102895737, -0.0072220913134515285, 0.004640393424779177, -0.01273193396627903, 0.02493087202310562, -0.01577667146921158, 0.012045701965689659, -0.008474631235003471, 0.012378823943436146, -0.008541255258023739, -0.013711313717067242, 0.011692591942846775, -0.0011467734584584832, -0.005250007379800081, -0.0037876004353165627, 0.0056197731755673885, -0.000982710742391646, 0.03134014457464218, 0.007688462268561125, 0.02755587548017502, -0.010719874873757362, 0.006379291880875826, -0.038588885217905045, -0.0001536526542622596, -0.016909286379814148, -0.010933073237538338, -0.031073646619915962, 0.015829971060156822, 0.02606348693370819, -0.002766580553725362, -0.003704319940879941, 0.013871211558580399, -0.00481028575450182, 0.021879471838474274, 0.017428958788514137, -0.006359304301440716, 0.010246841236948967, -0.008194807916879654, 0.017269060015678406, 0.003910855855792761, -0.007322027813643217, -0.004736999049782753, 0.02225256897509098, 0.01724240928888321, -0.019507640972733498, 0.013338216580450535, 0.009840432554483414, -0.039548277854919434, -0.004540456924587488, 0.012358836829662323, -0.01886804588139057, -0.024224651977419853, 0.011925777420401573, 0.01845497451722622, 0.014417532831430435, 0.0029031606391072273, 0.029821107164025307, 0.01637629233300686, -0.007008892949670553, -0.0002854441700037569, 0.00536660011857748, -0.01463073119521141, -0.012245574966073036, 0.03829573839902878, -0.0023435153998434544, 0.0484759546816349, 0.00615276861935854, -0.0012233916204422712, 0.015097102150321007, 0.006679101847112179, 0.019800787791609764, 0.02259901538491249, -0.0006241878727450967, -0.011985739693045616, 0.007195441517978907, -0.006779038347303867, -0.04311934858560562, 0.004000798799097538, 0.006935605779290199, -0.039281781762838364, -0.005163395311683416, 0.0112595334649086, -0.01626969315111637, 0.040481019765138626, 0.009300773963332176, -0.019880738109350204, 0.007095504552125931, 0.023438483476638794, 0.028461968526244164, 0.026436584070324898, -0.003710982156917453, 0.008214795961976051, -0.016909286379814148, 0.001290016109123826, -0.008954326622188091, 0.022319193929433823, -0.011825840920209885, -0.006112793926149607, 0.017695456743240356, -0.011206233873963356, 0.046024173498153687, -0.042133305221796036, -0.008914352394640446, 0.022932138293981552, -0.011079647578299046, 0.024651048704981804, -0.005336618982255459, -0.0006466736667789519, 0.015869945287704468, 0.026436584070324898, -0.004077416844666004, 0.009280786849558353, -0.029128212481737137, 0.00428395252674818, 0.0028881703037768602, -0.008747790940105915, -0.019627565518021584, 0.012798557989299297, -0.002310203155502677, 0.006156099960207939, -0.01055997610092163, 0.013604714535176754, 0.01697591133415699, -0.01957426592707634, 0.010153567418456078, -0.00952729769051075, -0.0005442385445348918, 0.011739229783415794, -0.01243212353438139, -0.013737963512539864, 0.0112595334649086, -0.008041571825742722], "678ed4e5-6404-4e3e-930d-8a207e7e7f9e": [-0.004717324860394001, -0.016601743176579475, -0.01005552802234888, -0.0032849181443452835, -0.007403298281133175, 0.03995216637849808, -0.007848710753023624, -0.007443790324032307, -0.01444216724485159, -0.02665727213025093, 0.018801812082529068, 0.018977278843522072, 0.01750606670975685, 0.019098754972219467, -0.01278874184936285, 0.018774818629026413, 0.030773963779211044, 0.0016559564974159002, 0.030018113553524017, -0.03152981773018837, 0.0011751132551580667, -0.01091935858130455, -0.0072480784729123116, 0.014050744473934174, -0.014010252431035042, 0.04581001400947571, 0.023471897467970848, -0.00734255975112319, 0.006387622095644474, 0.001181018422357738, -0.003964847419410944, -0.001028329599648714, 0.005483299493789673, -0.008874509483575821, -0.023836325854063034, -0.0007550081936642528, -0.009117461740970612, -0.017128141596913338, 0.015575945377349854, -0.002468328457325697, 0.0055609093979001045, -0.010015035979449749, -0.017141638323664665, 0.018383394926786423, -0.016358790919184685, 0.01483359094709158, 0.004052580334246159, -0.01480659656226635, -0.01731710322201252, 0.010035282000899315, 0.030558006837964058, 0.013558090664446354, -0.011769691482186317, 0.011155562475323677, -0.014037246815860271, -0.0018457630649209023, 0.004548607859760523, 0.018383394926786423, -0.024362722411751747, 0.01552195567637682, 0.00824013352394104, -0.0002545516472309828, 0.00010470993584021926, 0.014604135416448116, -0.05539313703775406, -0.013240903615951538, -0.002471702639013529, -0.00731556536629796, -0.005118871107697487, -0.013780796900391579, 0.03614591062068939, 0.012748249806463718, 0.005304459482431412, 0.004066077526658773, 0.01328139565885067, -0.027426620945334435, -0.02306697517633438, -0.023944303393363953, -0.027575092390179634, 0.01711464300751686, -0.013213908299803734, -0.02248658984899521, 0.012984453700482845, -0.002648855559527874, 0.012754998169839382, -0.009022979997098446, 0.00994080025702715, 0.015117035247385502, -0.006701435893774033, -0.031151890754699707, 0.012957458384335041, 0.02330992929637432, 0.009009483270347118, 0.013848284259438515, -0.011587477289140224, 0.021825220435857773, -0.018234923481941223, 0.028992313891649246, 0.0042550405487418175, -0.0034755682572722435, -0.017249617725610733, 0.0018541988683864474, -0.02937023900449276, -0.0009287865832448006, -0.018572358414530754, 0.0006343756103888154, -0.021082865074276924, -0.01751956343650818, 0.0053719463758170605, -0.00799718126654625, -0.008294123224914074, 0.030288059264421463, -0.009947548620402813, -0.051532894372940063, -0.02056996524333954, -0.019004272297024727, 0.00929292757064104, -0.008219887502491474, -0.030045107007026672, -0.009198445826768875, 0.007619255688041449, 0.023377414792776108, -0.00561827328056097, -0.011283786967396736, 0.009056723676621914, 0.0002277678286191076, 0.0033119129948318005, -0.023107467219233513, 0.0037893818225711584, -0.0008077322272583842, 0.06068409979343414, 0.004211174324154854, 0.010750641115009785, -0.013875278644263744, -0.012134119868278503, 0.00012094893463654444, -0.03817051276564598, -0.005911840591579676, -0.014712114818394184, -0.02665727213025093, 0.014266702346503735, 0.009488639421761036, -0.012808987870812416, -0.02330992929637432, -0.014131728559732437, 0.01938219927251339, 0.028209468349814415, 0.011573980562388897, -0.009583120234310627, -0.003136447397992015, 0.021757733076810837, 0.0059320866130292416, 0.029829150065779686, -0.006347130052745342, 0.013929268345236778, -0.006077182944864035, 0.006944388151168823, -0.01770852692425251, 0.005463053472340107, -0.008327866904437542, 0.02135281264781952, 0.016547754406929016, -0.0009102277108468115, 0.0025881174951791763, -0.016736717894673347, 0.02592841535806656, 0.013848284259438515, -0.00526396743953228, -0.03846745565533638, -0.01612933725118637, 0.009934051893651485, 0.020327012985944748, -0.03331146761775017, 0.004143687430769205, 0.0021106486674398184, -0.003671279875561595, 0.04073501005768776, 0.0335274264216423, -0.02125832997262478, 0.011560482904314995, -0.03134085237979889, -0.024241246283054352, 0.022068172693252563, 0.01633179746568203, -0.03098992258310318, -0.008489835076034069, -0.013639074750244617, -0.00461272057145834, 0.0048084319569170475, 0.010912610217928886, 0.016007861122488976, 0.01869383454322815, -0.01874782331287861, -0.0020262901671230793, -0.6349154710769653, -0.00485567282885313, -0.015602939762175083, -0.021474288776516914, -0.011627969332039356, 0.021163849160075188, 0.026427816599607468, 0.0010426704538986087, -0.004214548505842686, -0.003077396424487233, -0.029505213722586632, 0.03379737213253975, -0.0004947623237967491, -0.02085340954363346, -0.021865712478756905, -0.010345720686018467, 0.010797882452607155, -0.03749564662575722, 0.00042158138239756227, -0.010932856239378452, -0.012356826104223728, 0.007518025580793619, 0.008334615267813206, -0.0019571161828935146, -0.02233811840415001, -0.014199214987456799, 0.008361609652638435, 0.005766743794083595, -0.00558115541934967, 0.02985614538192749, -0.026846235617995262, 0.029991118237376213, 0.01731710322201252, 0.013888776302337646, 0.04767265170812607, -0.006525970064103603, -0.03393234685063362, 0.022891510277986526, 0.029424229636788368, 0.018612850457429886, -0.02488911896944046, -0.017722023651003838, 0.0103997103869915, 0.010096020065248013, 0.014293696731328964, 0.0016804204788058996, 0.02139330469071865, -0.00025581702357158065, 0.004177430644631386, 0.02135281264781952, -0.008429097011685371, -0.014590638689696789, -0.01677720993757248, -0.0043022814206779, -0.0038433712907135487, -0.01012976374477148, 0.035201095044612885, -0.018626347184181213, -0.010710149072110653, -0.008125406689941883, 0.01750606670975685, 0.022608065977692604, -0.016993166878819466, -0.0007081892108544707, 0.0002570823999121785, 0.015211516991257668, 0.002599927596747875, 0.007038869429379702, 0.01668272726237774, -0.016412781551480293, -0.005230224225670099, 0.024997098371386528, 0.01707415096461773, -0.018855802714824677, 0.02602289617061615, 0.006593456957489252, 0.041301898658275604, -0.004417008720338345, 0.015913378447294235, 0.013423117808997631, 0.021069368347525597, -0.02872236631810665, -0.017587050795555115, -0.029289254918694496, 0.023080473765730858, -0.005564283579587936, -0.003450260730460286, 0.03528207913041115, -0.0026910346932709217, -0.009603366255760193, 0.005243721418082714, 0.0191392470151186, 0.007565266452729702, 0.012566035613417625, 0.01662873849272728, 0.0198816005140543, -0.003678028704598546, -0.0008916688966564834, 0.0151035375893116, -0.008780027739703655, -0.004697078838944435, -0.032150693237781525, 0.007828464731574059, -0.003114514285698533, 0.006910644471645355, -0.00831436924636364, -0.03063899092376232, -0.016736717894673347, 0.03074697032570839, -0.008057919330894947, 0.02351238951086998, -0.013942765071988106, -0.014077738858759403, -0.008550573140382767, 0.013018196448683739, -0.022149156779050827, 0.010716898366808891, -0.006971382535994053, 0.0066879382357001305, 0.005982701666653156, 0.025402018800377846, -0.013173416256904602, -0.0007963438401930034, -0.007302067708224058, 0.025456007570028305, 0.03671279922127724, -0.0034856912679970264, -0.008813771419227123, -0.005132368300110102, 0.0002368363639106974, -0.0029677303973585367, -0.009907056577503681, 0.00922544114291668, 0.006637323182076216, 0.007605758495628834, -0.02027302421629429, 0.004180804826319218, -0.0025003845803439617, 0.015427473932504654, -0.03744165599346161, 0.008496583439409733, -0.0012004207819700241, 0.007383052259683609, -0.0031887495424598455, -0.008496583439409733, -0.03045002743601799, -0.020434992387890816, -0.0009777145460247993, -0.04470323398709297, -0.0021022127475589514, 0.0033692766446620226, -0.004315778613090515, -0.013247651979327202, 0.011243294924497604, 0.010453700087964535, 0.006016444880515337, -0.00986656453460455, 0.0008815458859317005, 0.007545020431280136, -0.02237861044704914, 0.023579875007271767, 0.017033658921718597, -0.022405605763196945, 0.0028985566459596157, 0.032582610845565796, -0.022891510277986526, -0.00883401744067669, 0.019598156213760376, 0.025159066542983055, -0.02596890740096569, 0.008672049269080162, -0.009036477655172348, 0.0019672391936182976, 0.044784218072891235, -0.03069297969341278, -0.0031111398711800575, 0.00436639366671443, -0.018261918798089027, -0.008192893117666245, 0.01303169410675764, -0.01737109385430813, 0.009313173592090607, -0.024578679352998734, -0.0007102981908246875, 0.043893393129110336, -0.011054332368075848, -0.00991380587220192, -0.007295319344848394, 0.011121818795800209, 0.022297626361250877, -0.014604135416448116, 0.003971596248447895, 0.016061849892139435, -0.0024733899626880884, 0.008894755505025387, -0.006222279742360115, 0.002058346290141344, 0.008219887502491474, 0.014847088605165482, 0.0005934617365710437, 0.020354008302092552, -0.006441611796617508, 0.017991971224546432, -0.006191910710185766, 0.003401333000510931, -0.03968221694231033, 0.008051170967519283, -0.002896869322285056, 0.022257134318351746, -0.023984795436263084, -0.007733982987701893, -0.029748165979981422, -0.013004699721932411, 0.00016713519289623946, 0.01594037376344204, 0.02567196451127529, 0.01310592982918024, 0.0017732147825881839, -0.010507688857614994, 0.012269093655049801, 0.026346832513809204, -0.014644627459347248, 0.002652229741215706, -0.0019790492951869965, -0.007747480645775795, -0.014550146646797657, 0.01257278397679329, 0.022446097806096077, 0.0030993297696113586, -0.010784384794533253, 0.0018913166131824255, -0.002800700720399618, -0.00880702305585146, 0.024538187310099602, 0.006957885343581438, 0.014037246815860271, 0.0033557794522494078, -0.019760124385356903, 0.022216642275452614, -0.047942597419023514, 0.005139117129147053, 0.005429310258477926, 0.014253204688429832, -0.0065225958824157715, -0.01139176543802023, -0.00973834004253149, 0.0019571161828935146, 0.001707415096461773, 0.015926877036690712, 0.021271828562021255, 0.007936443202197552, -0.004916410893201828, -0.0070928591303527355, -0.020583463832736015, 0.023836325854063034, -0.03290654718875885, -0.003924355376511812, 0.006839783396571875, 0.013639074750244617, 0.020475484430789948, 0.014793098904192448, 0.003762387204915285, 0.01367956679314375, 0.011492995545268059, 0.060036227107048035, -0.004562105052173138, 0.009515633806586266, 0.006738553289324045, -0.03074697032570839, -0.013915770687162876, -0.003792756237089634, -0.0025678714737296104, 0.0170606542378664, -0.007902700453996658, -0.0051897321827709675, 0.005476551130414009, -0.004018836654722691, -5.773281736765057e-05, 0.0013547968119382858, 0.0029289256781339645, -0.015211516991257668, -0.01971963234245777, 0.02040799707174301, 0.013801042921841145, -0.002878310391679406, -0.017695030197501183, -0.02105586975812912, -0.002535815117880702, -0.008746284991502762, 0.033581413328647614, -0.0051964810118079185, 0.003998590633273125, 0.026481807231903076, -0.01735759526491165, -0.0028378183487802744, -0.005149240139871836, 0.03374338150024414, -0.01908525638282299, 0.03555202856659889, -0.009016231633722782, 0.017749018967151642, 0.013112678192555904, -0.02267555333673954, -0.00012622133363038301, 0.025064583867788315, -0.014199214987456799, -0.007787972688674927, -0.00971134565770626, 0.0025796815752983093, -0.02691372111439705, 0.004197676666080952, -0.029424229636788368, -0.012525543570518494, 0.0004964495310559869, 0.0009228815324604511, -0.008017427287995815, -0.0142127126455307, 0.02636033110320568, 0.028749361634254456, -0.020866908133029938, -0.014091236516833305, -0.014347686432301998, -0.012080131098628044, 0.009110713377594948, 0.10905861109495163, 0.006772296968847513, -0.015670426189899445, 0.0010232680942863226, -0.0025796815752983093, 0.024578679352998734, -0.015778405591845512, -0.017438579350709915, 0.031907740980386734, 0.010723646730184555, 0.025172563269734383, -0.016453273594379425, 0.022419102489948273, 0.003755638375878334, 0.01962515152990818, -0.01116231083869934, -0.004967025946825743, 0.009340167976915836, -0.007909448817372322, 0.020043568685650826, 0.020057067275047302, -0.01042670477181673, 0.015440971590578556, 0.029505213722586632, -0.014010252431035042, -0.0040289596654474735, 0.01569742150604725, 0.010352469980716705, 0.020475484430789948, -0.009373911656439304, -0.009745088405907154, 0.03576798364520073, 0.020178543403744698, 0.02105586975812912, -0.023134462535381317, 0.003630787832662463, -0.0021595763973891735, 0.008820519782602787, -0.006529344245791435, 0.01568392477929592, 0.012869725935161114, 0.028371436521410942, 0.0074572875164449215, -0.025267044082283974, 0.0005230224342085421, -0.005334828514605761, -0.017600547522306442, -0.0068870242685079575, -0.02459217607975006, -0.007335811387747526, 0.03541705384850502, -0.004497992806136608, -0.00917819980531931, -0.027831541374325752, 0.012910217978060246, -0.02025952748954296, 0.005746497772634029, -0.021717241033911705, -0.01050094049423933, 0.014266702346503735, -0.008550573140382767, 0.008888007141649723, 0.012134119868278503, -0.0035025631077587605, -0.010689903050661087, -0.013375876471400261, -0.03447223827242851, -0.019463183358311653, -0.011729199439287186, 0.01158072892576456, -0.011803435161709785, -0.0026910346932709217, -0.004720699042081833, 0.003364215139299631, 0.01627780683338642, 0.02401179075241089, 0.017830003052949905, -0.012215103954076767, 0.010453700087964535, -0.014050744473934174, -0.018707331269979477, -0.02596890740096569, 0.015090040862560272, -0.009927302598953247, -0.019949087873101234, -0.010730395093560219, -0.009070221334695816, 0.01483359094709158, -0.022567573934793472, 0.00544618209823966, 0.00610080361366272, 0.014617633074522018, 0.009562874212861061, -6.927938375156373e-05, 0.003964847419410944, 0.010386212728917599, -0.005989450495690107, -0.007099607493728399, -0.010210747830569744, -0.00929292757064104, 0.0159943625330925, -0.048725444823503494, -0.01642627827823162, -0.015144029632210732, -0.0019284342415630817, 0.004207799676805735, -0.006029942538589239, 0.00461272057145834, -0.018558859825134277, -0.03476918116211891, 0.010251239873468876, -0.03206970915198326, -0.00012253066233824939, -0.009691099636256695, -0.007322313729673624, 0.019557664170861244, 0.006924142129719257, 0.011297284625470638, 0.005169486161321402, -0.012302837334573269, -0.006357253063470125, -0.02788553014397621, 0.008165898732841015, 0.006225653924047947, -0.036091919988393784, -0.0045823510736227036, 0.0020195413380861282, -0.026346832513809204, 0.023579875007271767, 0.012289339676499367, 0.020003076642751694, 0.005672262515872717, 0.015413977205753326, 0.0027214037254452705, -0.03225867450237274, 0.0027517727576196194, -0.02164975367486477, 0.009137707762420177, -0.01531949546188116, 0.011769691482186317, -0.0034283276181668043, -0.02336391806602478, -0.012667265720665455, -0.03171877935528755, 0.0021038998384028673, -0.029937129467725754, -0.018437383696436882, -0.007335811387747526, -0.006040065549314022, 0.0003195076424162835, -0.009097215719521046, -0.031313858926296234, -0.030881943181157112, -0.01052793487906456, -0.009846318513154984, -0.026346832513809204, -0.0018137068254873157, -0.0316917859017849, 0.03466120362281799, -0.002832756843417883, 0.02611737698316574, -0.02179822511970997, 0.008523578755557537, 0.006752050947397947, 0.006036690901964903, 0.011479498818516731, 0.0033574665430933237, -0.02538852021098137, -0.025321034714579582, -0.001504954881966114, 0.037117719650268555, 0.02189270593225956, 0.0172091256827116, -0.0070861103013157845, -0.00818614475429058, 0.04707876592874527, -0.010365966707468033, -0.026144372299313545, -0.024781139567494392, -0.041787803173065186, -0.014671622775495052, -0.009022979997098446, -0.002944110194221139, -0.0005563439917750657, -0.023930806666612625, 0.016709722578525543, 0.039871178567409515, 0.0031415089033544064, 0.012174611911177635, -0.020542971789836884, 0.021609261631965637, -0.025024091824889183, 0.0197331290692091, 0.01638578623533249, 0.02232462167739868, -0.02596890740096569, 0.030423033982515335, -0.0029609818011522293, 0.000639015284832567, -0.002039787359535694, 0.011985649354755878, 0.010190501809120178, -0.012377073056995869, -0.01480659656226635, -0.04113993048667908, 0.009346917271614075, -0.023404410108923912, -0.02016504481434822, 0.03547104448080063, -0.03236665204167366, -0.008813771419227123, -0.0021038998384028673, -0.022243637591600418, -0.027426620945334435, -0.023039981722831726, -0.009880062192678452, -0.0027011577039957047, 0.020084060728549957, -0.005284213460981846, -0.017006665468215942, -0.004113318398594856, -0.003630787832662463, 0.04332650452852249, 0.007173843216150999, 0.02626584842801094, 0.002449769526720047, -0.032690588384866714, 0.0014189091743901372, 0.0023991544730961323, -0.02912728674709797, -0.016561251133680344, 0.003315287409350276, 0.004778062924742699, -0.003114514285698533, 0.012282591313123703, -0.03069297969341278, -0.004720699042081833, -0.03625388815999031, -0.02823646180331707, 0.008199641481041908, 0.00870579294860363, -0.005608150269836187, 0.015764908865094185, 0.008692295290529728, -0.021231336519122124, 0.003526183543726802, 0.012768495827913284, 0.010669657029211521, -0.008422348648309708, -0.012255595996975899, -0.030072102323174477, -0.015130532905459404, 0.014577141031622887, 0.02110986039042473, 0.03503912687301636, -0.005253844428807497, -0.02729164808988571, -0.023728346452116966, -0.01583239436149597, -0.018707331269979477, -0.006178413052111864, 0.017141638323664665, -0.0001772582036210224, 0.012329831719398499, 0.0008570819045417011, -0.0015564134810119867, -0.0225810706615448, 0.014118230901658535, -0.02330992929637432, 0.02518605999648571, 0.011729199439287186, 0.02159576490521431, 0.00971134565770626, 0.027035197243094444, 0.028398429974913597, 0.011331027373671532, -0.008523578755557537, 0.0024092774838209152, -0.029748165979981422, -0.011101572774350643, -0.00799718126654625, -0.0025695585645735264, 0.008381856605410576, -0.021906204521656036, -0.004477746784687042, -0.00818614475429058, 0.015508458018302917, -0.0024936359841376543, 0.005452930461615324, -0.0385754331946373, -0.025766447186470032, 0.00917819980531931, -0.03080095909535885, 0.016115838661789894, 0.00440351152792573, 0.02330992929637432, -0.0037691358011215925, 0.02444370649755001, -0.018464379012584686, 0.019314711913466454, -0.010008287616074085, 0.005807236302644014, -0.05161387845873833, -0.004950154107064009, 0.012876474298536777, -0.009043226018548012, 0.005611524451524019, -0.00047999960952438414, -0.02164975367486477, 0.02025952748954296, 0.020434992387890816, 0.004086323548108339, 0.01062916498631239, 0.016115838661789894, -0.018963780254125595, -0.011823681183159351, 0.010791134089231491, -0.012856228277087212, -0.033581413328647614, 0.008881257846951485, 0.02204117737710476, 0.0028681873809546232, 0.002333354903385043, -0.01765453815460205, 0.0296131931245327, 0.01785699836909771, 0.011972151696681976, 0.004379890859127045, -0.03970921039581299, 0.010966598987579346, -0.022540578618645668, 0.01859935186803341, 0.014793098904192448, -0.002107274252921343, 0.002790577709674835, -0.010588672943413258, 0.002029664348810911, 0.00883401744067669, -0.0029862893279641867, -0.024335727095603943, 0.031151890754699707, 0.011911413632333279, -0.006417991127818823, -0.00931992195546627, -0.0037792588118463755, -0.015063045546412468, 0.0028462542686611414, -0.00900273397564888, -0.03692875802516937, -0.011553733609616756, -0.012215103954076767, 0.035390060395002365, 0.016250813379883766, -0.01683119870722294, -0.0004888572730123997, -0.0074640363454818726, -0.02872236631810665, -0.02793952077627182, -0.005874722730368376, 0.0191392470151186, 0.01444216724485159, 0.00488266721367836, 0.010359218344092369, 0.01633179746568203, -0.01268751174211502, 0.01735759526491165, -0.00015500865993089974, -0.024511191993951797, 0.0008549729245714843, -0.004757816903293133, 0.009117461740970612, -0.00457560271024704, -0.027831541374325752, -0.0013463608920574188, 0.02278353087604046, -0.019004272297024727, 0.00865855161100626, 0.0019199984380975366, -0.008165898732841015, 0.006532718893140554, -0.018558859825134277, 0.004352896474301815, 0.02085340954363346, 0.010467196814715862, -3.3796106436057016e-05, -0.01441517286002636, -0.015926877036690712, -0.004066077526658773, -0.019841108471155167, -0.0305040180683136, -0.018369898200035095, 0.004511489998549223, -0.001362389069981873, 0.007119853515177965, -0.019490176811814308, -0.019949087873101234, -0.007787972688674927, -0.03725269436836243, 0.028452420607209206, -0.002281052526086569, 0.003509311703965068, 0.035875964909791946, -0.0055879042483866215, -0.014874082989990711, -0.0032376775052398443, 0.021703744307160378, 0.016075346618890762, -0.022203145548701286, 0.0033608409576117992, -0.010831626132130623, 0.008982487954199314, -0.007929694838821888, 0.00897573959082365, -0.00676217395812273, 0.01707415096461773, -0.008368358947336674, -0.015305997803807259, -0.0009954298147931695, 0.04230070486664772, 0.024362722411751747, -0.02159576490521431, -0.019490176811814308, -0.00897573959082365, 0.0019115626346319914, -0.011466001160442829, -0.013355630449950695, -0.010764138773083687, 0.008915001526474953, 0.0018221426289528608, 0.000753320986405015, 0.009799078106880188, -0.011034086346626282, -0.006110926624387503, 0.02115035243332386, -0.02793952077627182, 0.0017310355324298143, 0.20559167861938477, -0.015899881720542908, 0.00734255975112319, 0.04510815441608429, 0.006137921009212732, 0.011897916905581951, 0.026751752942800522, -0.008327866904437542, -0.009589869529008865, -0.016520759090781212, -0.010392962023615837, 0.022540578618645668, -0.005834230687469244, 0.004406885709613562, 0.018180934712290764, 0.0010637601371854544, -0.04235469177365303, -0.015872886404395103, 0.0017715275753289461, -0.04772663861513138, -0.007443790324032307, -0.0216902457177639, -0.007983684539794922, -0.015589443035423756, 0.017141638323664665, 0.008645054884254932, -0.020394500344991684, -0.007032121066004038, 0.024025287479162216, -0.00025792597443796694, -0.01819443143904209, -0.010568426921963692, -0.003414830192923546, 0.007875705137848854, -0.011459252797067165, -0.0013649198226630688, 0.0189907755702734, -0.005756620783358812, 0.012302837334573269, -0.020057067275047302, 0.011108321137726307, -0.005955706816166639, 0.014847088605165482, -0.00579036446288228, -0.002029664348810911, 0.030585002154111862, -0.008800273761153221, -0.009657355956733227, -0.007929694838821888, 0.008024176582694054, -0.024511191993951797, 0.0070591154508292675, 0.028074493631720543, 0.015602939762175083, 0.000324147375067696, -0.0038838633336126804, -0.003079083515331149, 0.020583463832736015, -0.022203145548701286, 0.01569742150604725, -0.014577141031622887, 0.02356637828052044, -0.007733982987701893, 0.026886727660894394, -0.025348028168082237, 0.0131599185988307, -0.013510850258171558, -0.015265505760908127, 0.025348028168082237, -0.01859935186803341, -0.0012974330456927419, -0.022176150232553482, 0.0008507550228387117, 0.009819324128329754, 0.003772510215640068, 0.0037117721512913704, 0.019949087873101234, -0.0076462505385279655, 0.01534648984670639, 0.001695604994893074, 0.025199558585882187, -0.010210747830569744, -0.008442594669759274, -0.009832821786403656, -0.004396762698888779, -0.029289254918694496, 0.01483359094709158, -0.012626773677766323, -0.031205879524350166, 0.0030706478282809258, -0.02758858911693096, -0.011627969332039356, -0.0017411585431545973, 0.002562809968367219, 0.00828737486153841, 0.012586281634867191, 0.0257259551435709, 0.007916197180747986, -0.002247309312224388, 0.0020549718756228685, -0.002230437472462654, -0.0028850592207163572, 0.04373142495751381, 0.020988384261727333, -0.027021700516343117, 0.010271485894918442, 0.00900273397564888, 0.002576307160779834, 0.020691441372036934, -0.023876817896962166, 0.026292843744158745, 0.00561827328056097, -0.0016719845589250326, -0.03015308640897274, 0.012781993485987186, 0.03919631242752075, -0.0010266423923894763, -0.02985614538192749, 0.00270453211851418, 0.020286520943045616, 0.017425082623958588, -0.022756537422537804, -0.0032916669733822346, 0.012188109569251537, -0.0017985223094001412, -0.005324705503880978, -0.02858739346265793, 0.03282556310296059, 0.010939604602754116, -0.017749018967151642, 0.0236203670501709, -0.034499235451221466, -0.008543824777007103, -0.0074842823669314384, -0.0017327226232737303, 0.023498890921473503, 0.003762387204915285, -0.027210664004087448, 0.028209468349814415, 0.0027112807147204876, -0.0029879764188081026, 0.0018643218791112304, 0.0006031629745848477, 0.01805945858359337, -0.002562809968367219, -0.008827269077301025, 0.015265505760908127, -0.015953870490193367, 0.00596245564520359, 0.0023670983500778675, -0.016858194023370743, 0.005459679290652275, 0.012417565099895, -0.013119426555931568, 0.001192828523926437, -0.007180591579526663, -0.02001657523214817, -0.019706135615706444, 0.008057919330894947, 0.032690588384866714, -0.02070493996143341, 0.010150009766221046, 0.025402018800377846, -0.010635914281010628, -0.023377414792776108, -0.01399675477296114, -0.17157834768295288, 0.030315054580569267, -0.00037518423050642014, 0.0008617216371931136, 0.031070906668901443, 0.027413124218583107, 0.029694177210330963, 0.004035708494484425, 0.005513668525964022, -0.022176150232553482, 0.025024091824889183, 0.012856228277087212, -0.023039981722831726, -0.010210747830569744, -0.022648558020591736, 0.010608918964862823, -0.0302070751786232, 0.008294123224914074, 0.03566000610589981, 0.008543824777007103, 0.006873527076095343, -0.02263506129384041, 0.020327012985944748, -0.02090740017592907, 0.00037202078965492547, 0.0047983089461922646, 0.011904665268957615, 0.01642627827823162, 0.008827269077301025, -0.020192040130496025, 0.003335533430799842, 0.013294892385601997, 0.027521101757884026, -0.00907696969807148, 0.02115035243332386, 0.004886041861027479, -0.004943405278027058, -0.007882454432547092, 0.0013649198226630688, 0.00447437260299921, 0.026454811915755272, -0.011830429546535015, 0.021082865074276924, 0.002343477914109826, 0.011513241566717625, 0.040842991322278976, -0.02001657523214817, -0.006060311570763588, -0.0011675209971144795, -0.021379806101322174, 0.020327012985944748, -0.014266702346503735, 0.01761404611170292, 0.005108748096972704, 0.03911532834172249, 0.004845549818128347, 0.007477533537894487, 0.005527166184037924, -0.01653425768017769, -0.018410390242934227, -0.016412781551480293, 0.00038087842403911054, 0.02739962562918663, -0.01603485457599163, 0.0061412956565618515, -0.011270289309322834, -0.017991971224546432, -0.005847728345543146, -0.03158380463719368, 0.018045959994196892, 0.00211571017280221, 0.003924355376511812, 0.017344098538160324, -0.010865368880331516, 2.3277661966858432e-05, 0.009454895742237568, -0.0356060154736042, 0.01751956343650818, -0.01352434791624546, -0.012262345291674137, -0.04081599414348602, 0.03941227123141289, -0.007005126215517521, -0.015292501077055931, 0.006056936923414469, 0.010210747830569744, -0.015602939762175083, -0.016790706664323807, -0.01687169075012207, 0.0010165193816646934, 0.0017850248841568828, -0.017978474497795105, -0.015467965975403786, -0.006633949000388384, 0.012680763378739357, 0.008118657395243645, 0.01722262240946293, -0.029478218406438828, -0.009907056577503681, -0.02985614538192749, 0.0030554633121937513, -0.016453273594379425, -0.015225013718008995, 0.04127490520477295, 0.033770378679037094, 0.0022861140314489603, -0.008861011825501919, 0.005105373915284872, 0.01687169075012207, 0.017587050795555115, -0.002333354903385043, 0.01830241084098816, 0.019935589283704758, 0.0015294187469407916, 0.024376219138503075, 0.047942597419023514, -0.010757390409708023, -0.010716898366808891, 0.03582197427749634, -0.013571588322520256, 0.07736682891845703, -0.011864173226058483, -0.008692295290529728, 0.0019166241399943829, -0.018950283527374268, -0.02360687032341957, -0.11715701967477798, 0.01247155386954546, 0.004828677978366613, 0.005567658226937056, -0.0011978900292888284, 0.00799718126654625, -0.007038869429379702, 0.013612080365419388, 0.0033473435323685408, -0.0008832330349832773, -0.008672049269080162, -0.033419445157051086, -0.006188536528497934, -0.015454469248652458, 0.010932856239378452, -0.030018113553524017, -0.011270289309322834, -0.021609261631965637, -0.002228750381618738, 0.03152981773018837, -0.0029964123386889696, -0.017330601811408997, 0.028749361634254456, -0.025901420041918755, 0.035929951816797256, 0.0011304032523185015, -0.03320348635315895, 0.008408850990235806, 0.025226552039384842, 0.022405605763196945, -0.02812848426401615, -0.00382987386547029, 0.014820093289017677, 0.00310439127497375, -0.0061716646887362, -0.019125748425722122, -0.034850165247917175, -0.017776014283299446, 0.031448833644390106, -0.030234070494771004, 0.019760124385356903, -0.018018966540694237, 0.013099180534482002, -0.018275415524840355, 0.01672321930527687, -0.012269093655049801, -0.019746627658605576, 0.006991629023104906, 0.0017985223094001412, -0.014698617160320282, -0.03063899092376232, 0.010453700087964535, -0.042435675859451294, -0.01333538442850113, 0.009772083722054958, -0.011978900991380215, 0.03422928601503372, -0.006337007042020559, -0.007362805772572756, -0.004896164871752262, -0.027332140132784843, 0.010791134089231491, -0.0038669914938509464, 0.04410934820771217, 0.020920896902680397, -0.0053786952048540115, -0.006650820840150118, -0.018329404294490814, 0.02937023900449276, -0.010298480279743671, -0.02405228279531002, 0.0038130022585392, -0.0316917859017849, 0.019017770886421204, -0.015157527290284634, 0.0397632010281086, -0.033770378679037094, -0.018113447353243828, 0.02380933053791523, -0.010649411007761955, -0.002240560483187437, -0.019368700683116913, 0.011789937503635883, -0.006593456957489252, 0.02685973234474659, 0.02178472839295864, 0.01170895341783762, -0.015184521675109863, 0.014320691116154194, -0.025172563269734383, 0.0034283276181668043, 0.008334615267813206, -0.00648210383951664, -0.0006870996439829469, 0.019274219870567322, 0.02223014086484909, 0.009016231633722782, -0.0057869902811944485, -0.005253844428807497, 0.001639928319491446, -0.024538187310099602, 0.0028799977153539658, -0.05955032259225845, 0.022932002320885658, 0.004207799676805735, 0.01531949546188116, 0.003951350226998329, -0.0086045628413558, 0.029532209038734436, -0.018410390242934227, -0.023390913382172585, 0.005598027259111404, -0.025847431272268295, 0.02788553014397621, -0.006944388151168823, -0.013065437786281109, -0.028371436521410942, -0.010035282000899315, 0.00230636028572917, -0.018801812082529068, 2.8365529942675494e-05, -0.0008688920643180609, 0.010177004151046276, -0.0017715275753289461, 0.028857341036200523, 0.0022743039298802614, -0.03458021953701973, 0.006708184257149696, 0.018329404294490814, 0.009832821786403656, 0.0008916688966564834, -0.02509157918393612, 0.011169059202075005, -0.02877635695040226, -0.0009085405617952347, 0.008712541311979294, -0.006073808763176203, 0.010170255787670612, -0.02351238951086998, -0.008057919330894947, 0.006144669838249683, 0.0364968404173851, -0.011479498818516731, -0.011506493203341961, 0.008064668625593185, -0.026049891486763954, 0.009380660019814968, 0.03792756050825119, -0.012754998169839382, 0.0006115987780503929, 0.012802239507436752, -0.017398087307810783, 0.030315054580569267, 0.021460790187120438, -0.0034924400970339775, -0.0316917859017849, -0.0018322656396776438, -0.014577141031622887, 0.025456007570028305, -0.016993166878819466, 0.0159943625330925, -0.02247309312224388, 0.02174423635005951, -0.008793525397777557, 0.0020144798327237368, -0.011398514732718468, 0.017033658921718597, -0.012451307848095894, -0.01666923053562641, -0.006799291353672743, -0.009508885443210602, -0.004933282267302275, -0.0018930037040263414, 0.0029390486888587475, 0.006441611796617508, 0.023498890921473503, 0.009758586063981056, 0.008989237248897552, -0.010069025680422783, 0.01165496464818716, -0.02690022438764572, 0.006198659539222717, -0.015157527290284634, -0.008935247547924519, -0.0460529662668705, 0.006991629023104906, 0.01746557466685772, -0.01598086580634117, 1.1289534086245112e-05, 0.0293162502348423, -0.013787546195089817, 0.017155135050415993, 0.0074640363454818726, -0.0048016831278800964, 0.002451456617563963, 0.0009692786261439323, 0.0013446738012135029, 0.0039041093550622463, -0.006421365775167942, -0.0008229167433455586, 0.032096706330776215, 0.028020504862070084, -0.024673160165548325, 0.016250813379883766, 0.011243294924497604, -0.012950710020959377, -0.010615668259561062, -0.0001948680292116478, -0.02263506129384041, -0.009508885443210602, -0.0031971854623407125, 0.03331146761775017, 0.01711464300751686, 0.004339398816227913, 0.02901930920779705, 0.01084512285888195, -0.013942765071988106, -0.008719289675354958, -0.0030369043815881014, 0.0015766595024615526, 0.00011282943160040304, 0.04200376197695732, 0.000676133029628545, 0.046511877328157425, 0.019206732511520386, 0.012478303164243698, 0.028047500178217888, 0.009191697463393211, 0.006910644471645355, 0.027777552604675293, 0.006269520614296198, -0.004697078838944435, 0.02656279131770134, -0.009238937869668007, -0.04413634538650513, -0.008368358947336674, -0.002277678344398737, -0.04078900068998337, -0.01257278397679329, 0.018612850457429886, -0.012073381803929806, 0.03398633375763893, 0.011641466990113258, -0.01888279616832733, 0.008456091396510601, 0.017978474497795105, 0.030045107007026672, 0.004079574719071388, -0.003288292558863759, 0.010588672943413258, -0.009238937869668007, 0.008253631182014942, -0.011155562475323677, 0.02332342602312565, -0.015656929463148117, -0.008712541311979294, -0.00030347955180332065, -0.015332993119955063, 0.03015308640897274, -0.04167982563376427, -0.021676748991012573, 0.016115838661789894, 0.0014459039084613323, 0.0284254252910614, -0.0013016510056331754, -0.020151548087596893, 0.0043022814206779, 0.028911329805850983, -0.003308538580313325, 0.02267555333673954, -0.03177276998758316, 0.016412781551480293, 0.013902273029088974, -0.036874767392873764, -0.01791098713874817, 0.016696225851774216, 0.0011852362658828497, 0.003951350226998329, -0.02027302421629429, 0.01845088228583336, 0.00707261310890317, -0.01205313578248024, 0.005540663376450539, -0.019355203956365585, -0.00986656453460455, 0.019125748425722122, -0.007983684539794922, -0.012829233892261982, 0.0042651635594666, -0.012923715636134148], "91a3813d-a46d-4d95-912d-81720be7f257": [0.003570825094357133, -0.01591450162231922, -0.014530036598443985, 0.01591450162231922, -0.006864071357995272, 0.04995042830705643, -0.014118809252977371, -0.01858748123049736, -0.008162864483892918, -0.02455027960240841, 0.019547011703252792, 0.005575558636337519, 0.019958239048719406, 0.007525462191551924, 0.0032795388251543045, 0.011500661261379719, 0.034899502992630005, -0.011644590646028519, 0.03125328570604324, -0.021767640486359596, -0.005332249216735363, -0.01304276380687952, 0.0074569243006408215, 0.014351838268339634, -0.011171679012477398, 0.03111620992422104, 0.016284607350826263, -0.0058428565971553326, 0.007991519756615162, -0.012247724458575249, -0.008101181127130985, 0.008765998296439648, 0.015969332307577133, 0.006572785321623087, -0.02189100719988346, -0.010739889927208424, -0.0017400061478838325, -0.028813336044549942, 0.024934090673923492, -0.00941710826009512, 0.000559440697543323, -0.014584867283701897, -0.020821817219257355, 0.0029145744629204273, -0.01395431812852621, 0.01511946227401495, 0.01078786700963974, -0.016270900145173073, -0.024330956861376762, 0.0019207749282941222, 0.019985653460025787, 0.01169256679713726, -0.03448827564716339, 0.0055412896908819675, -0.01544844452291727, -0.0028083408251404762, 0.0014161645667627454, 0.027703022584319115, -0.00869060680270195, 0.021986961364746094, 0.003892953274771571, -0.002676405245438218, 0.010986627079546452, 0.008813975378870964, -0.051979150623083115, 0.004239069763571024, -0.005935383029282093, -0.01827220618724823, -0.004101993981748819, -0.018642311915755272, 0.05126635730266571, 0.020602494478225708, -0.00667559215798974, -0.00120027014054358, 0.01197357289493084, -0.00605875113978982, -0.010287540033459663, -0.019670380279421806, -0.03054049238562584, 0.012213455513119698, -0.007237602956593037, -0.03256921470165253, -0.0022446163929998875, 0.015064632520079613, 0.02670236863195896, -0.01018473319709301, 0.005661231465637684, 0.03086947463452816, -0.01590079441666603, -0.028100542724132538, -0.000631833856459707, 0.01883421652019024, 0.019327690824866295, 0.007731075864285231, -0.005452190525829792, 0.016339438036084175, -0.020835524424910545, 0.010527422651648521, 0.007484339643269777, -0.023165812715888023, -0.021137090399861336, -0.006898340303450823, -0.018203668296337128, -0.001673181657679379, -0.031280700117349625, 0.010472592897713184, -0.016298314556479454, -0.013913195580244064, 0.014002294279634953, -0.013591066934168339, -0.014954972080886364, 0.022960199043154716, -0.019067246466875076, -0.051376014947891235, -0.01302905660122633, -0.026469340547919273, 0.020862938836216927, -0.016572466120123863, -0.018094008788466454, -0.018656019121408463, 0.00017916237993631512, 0.01888904720544815, 0.003423468442633748, -0.016928862780332565, 0.000434787361882627, 0.0017494300846010447, 0.00927317887544632, -0.029471300542354584, -0.0005363091477192938, -0.0024947798810899258, 0.04701700434088707, 0.0029402761720120907, 0.005095793399959803, -0.01764165796339512, -0.0219047162681818, 0.015229123644530773, -0.024728477001190186, -0.0046160281635820866, -0.025660593062639236, -0.026222603395581245, 0.027730436995625496, 0.003409761004149914, 0.0015258252387866378, -0.027428871020674706, -0.025317903608083725, 0.01893017068505287, 0.021082261577248573, 0.0078064678236842155, -0.02396085299551487, -0.010109341703355312, 0.016942571848630905, 0.00302937556989491, 0.024193881079554558, -0.011205947957932949, 0.019930824637413025, -0.0168054960668087, 0.0026798322796821594, -0.01333747711032629, -0.005195173434913158, -0.003913514781743288, 0.029279394075274467, 0.014002294279634953, 0.01182278897613287, 0.003197293495759368, -0.005064951255917549, 0.022672340273857117, 0.007169065065681934, -0.007820175029337406, -0.030321171507239342, -0.00974609050899744, 0.01618865318596363, 0.01861489564180374, -0.024125343188643456, 0.008505554869771004, -0.006750984117388725, 0.005791453178972006, 0.04219193756580353, 0.03355615958571434, -0.028813336044549942, 0.008306794799864292, -0.02723696455359459, -0.008505554869771004, 0.022274820134043694, 0.022028082981705666, -0.01031495537608862, -0.013255231082439423, -0.0015061205485835671, -0.005226015578955412, 0.002064704429358244, 0.0037216085474938154, 0.016051577404141426, 0.012055817991495132, -0.015393613837659359, -0.0075802928768098354, -0.6333999633789062, -0.018491527065634727, -0.008272525854408741, -0.02242560312151909, -0.012069526128470898, 0.014255885034799576, 0.026606416329741478, 0.00807376578450203, 0.001098320004530251, -0.0007886143284849823, -0.014461498707532883, 0.015050924383103848, -0.013878926634788513, -0.015379906632006168, -0.019889701157808304, -0.012103795073926449, -0.004382999148219824, -0.03742169961333275, 0.0070251356810331345, -0.021726517006754875, -0.021041138097643852, 0.005260284524410963, -0.0024313824251294136, -0.0023491368629038334, -0.017545703798532486, -0.004204800818115473, 0.017490874975919724, 0.004903887398540974, 0.0035948134027421474, 0.032514382153749466, -0.03059532307088375, 0.022946491837501526, 0.02515341155230999, 0.016969986259937286, 0.050498731434345245, 0.004023175220936537, -0.027730436995625496, 0.025290489196777344, 0.010520569048821926, 0.01856006495654583, -0.017504582181572914, -0.01651763543486595, 0.03681856393814087, 0.0029574106447398663, 0.015667766332626343, 0.001338202622719109, 0.024659939110279083, -0.012939956970512867, 0.014913848601281643, 0.01980745606124401, 0.007059404626488686, 0.004979278892278671, -0.014968679286539555, -0.005023828707635403, 0.007182772736996412, -0.009341716766357422, 0.021767640486359596, -0.014639697037637234, 0.011014041490852833, 0.0003930220555048436, 0.018806802108883858, 0.028813336044549942, -0.015379906632006168, 0.0022069206461310387, -0.011459538713097572, 0.0036222285125404596, -0.013097594492137432, 0.006442563608288765, 0.023453671485185623, -0.021726517006754875, 0.008731729350984097, 0.008080619387328625, 0.013659604825079441, -0.016969986259937286, 0.030348585918545723, 0.001288512721657753, 0.031582269817590714, -0.02759336121380329, 0.0037593042943626642, 0.02312469109892845, 0.008101181127130985, -0.01832703687250614, -0.02933422476053238, -0.02812795713543892, 0.011994133703410625, 0.0002957839169539511, -0.00681609520688653, 0.024180173873901367, -0.011857057921588421, 0.0019139210926368833, 0.004763384815305471, 0.013275792822241783, 0.011007187888026237, 0.0059148212894797325, 0.03629767522215843, 0.013536237180233002, 0.01016417145729065, 0.004221935290843248, -0.004458391107618809, -0.008313648402690887, -0.008587799966335297, -0.021452365443110466, 0.004173958674073219, -0.01315242424607277, 0.00605875113978982, -0.011055164970457554, -0.036955639719963074, -0.01831332966685295, 0.05126635730266571, -0.014434083364903927, 0.009362278506159782, -0.005150623619556427, -0.017285261303186417, -0.010376639664173126, 0.018107715994119644, -0.02667495422065258, 0.007854443974792957, 0.0032024336978793144, 0.011219656094908714, 0.0015421028947457671, 0.010794720612466335, -0.008642630651593208, 0.0052911266684532166, -0.01439296081662178, 0.03451569005846977, 0.032185401767492294, 0.007001147139817476, -0.02064361795783043, -0.002866598078981042, 0.0038072809111326933, 0.002078412100672722, 0.0026729784440249205, 0.006655030883848667, 0.0072033340111374855, 0.005054670851677656, -0.005551570560783148, 0.018477819859981537, 0.000887565896846354, 0.012761758640408516, -0.043617524206638336, -0.007066258229315281, 0.003156170714646578, 0.02128787524998188, -0.0006643893430009484, -0.0021383827552199364, -0.034022219479084015, -0.00973238330334425, -0.001566947903484106, -0.03862796351313591, 0.009574745781719685, -0.00792983639985323, -0.013495114631950855, -0.002486212644726038, 0.005520728416740894, 0.018381867557764053, -0.010129902511835098, 0.005938809830695391, 0.004057444166392088, 0.015009801834821701, -0.025646885856986046, 0.018738264217972755, 0.01860118843615055, -0.022535264492034912, 0.006802387535572052, 0.017751317471265793, -0.025701716542243958, -0.018189961090683937, 0.020862938836216927, 0.013063325546681881, -0.03415929526090622, 0.0037010470405220985, -0.011781666427850723, -0.004242496564984322, 0.04712666571140289, -0.025921037420630455, -0.01317298598587513, -0.005287699867039919, -0.035804204642772675, -0.009951704181730747, 0.014721943065524101, -0.005983359646052122, 0.011946157552301884, -0.008190279826521873, 0.007001147139817476, 0.034597937017679214, -0.01559922844171524, -0.009958557784557343, -0.005551570560783148, 0.020259805023670197, 0.037312038242816925, -0.0007273585652001202, 0.010870112106204033, 0.0002893584896810353, 0.00370447407476604, -0.0026781188789755106, -0.004523502197116613, 0.017148185521364212, 0.024070514366030693, 0.008094326592981815, 0.0058428565971553326, 0.02667495422065258, -0.015736304223537445, 0.037257205694913864, -0.021397534757852554, 0.010445177555084229, -0.045399509370326996, 0.004845629911869764, -0.0044481102377176285, 0.027483701705932617, -0.02609923481941223, -0.007134796120226383, -0.03166451305150986, -0.010287540033459663, -0.012631536461412907, 0.006692726630717516, 0.038189321756362915, 0.003432035678997636, -0.0007504901150241494, -0.012617829255759716, -0.0056166816502809525, 0.012480753473937511, -0.01616123877465725, -0.0075802928768098354, -0.0075665852054953575, -0.02312469109892845, -0.0194647666066885, 0.0038278421852737665, 0.02460510842502117, 0.017216723412275314, -0.0005538719706237316, 0.015654059126973152, -0.00882082898169756, -0.0008228832739405334, 0.014927556738257408, 0.024358373135328293, 0.014982386492192745, 0.009965412318706512, -0.004105420783162117, 0.022315943613648415, -0.05241779237985611, 0.007847590371966362, 0.004345303401350975, 0.016257191076874733, -0.01921802945435047, -0.014982386492192745, -0.004653723910450935, 0.003478298895061016, 0.005812014453113079, 0.008731729350984097, 0.02337142638862133, -0.009245763532817364, -0.00012219023483339697, -0.010739889927208424, -0.004849057178944349, 0.024426911026239395, -0.031033964827656746, 0.006846936885267496, 0.009115542285144329, 0.021986961364746094, 0.02755223959684372, 0.0031099074985831976, 0.008114888332784176, 0.017449751496315002, 0.0049895597621798515, 0.05653006583452225, 0.002409107517451048, 0.009012735448777676, 0.02216515876352787, -0.02009531483054161, -0.02848435565829277, -0.007014854811131954, -0.01854635775089264, 0.011569199152290821, -0.010123048909008503, 0.010273832827806473, 0.007559731137007475, -0.001489842776209116, -0.012508167885243893, 0.007038843352347612, -0.006326049100607634, -0.0069051943719387054, -0.025331610813736916, 0.021986961364746094, -0.0005101790302433074, 0.0006468265200965106, -0.019368812441825867, -0.014406668022274971, 0.0010580539237707853, -0.02008160762488842, 0.03956007957458496, -0.031006550416350365, 0.018998708575963974, 0.026839444413781166, -0.00666188495233655, -0.0056029739789664745, -0.0022429029922932386, 0.027661899104714394, -0.008018935099244118, 0.03797000274062157, 0.011219656094908714, -0.002796346787363291, 0.014639697037637234, -0.0272917952388525, 0.01828591339290142, 0.021082261577248573, -0.013974879868328571, -0.002648990135639906, -0.00734040979295969, 0.0026644112076610327, -0.01093179639428854, 0.002844323171302676, -0.027744146063923836, -0.006977159064263105, -0.0031441764440387487, 0.003992333076894283, -0.0012379660038277507, -0.0200404841452837, 0.013508821837604046, 0.02789492905139923, -0.01644909754395485, -0.0073129949159920216, -0.00823825690895319, -0.025386441498994827, -0.0007320705335587263, 0.10176508873701096, 0.01437925361096859, -0.023577040061354637, 0.02071215584874153, 0.005609828047454357, 0.021808762103319168, -0.021507196128368378, -0.02699022926390171, 0.0269353985786438, 0.005380225833505392, 0.01649022102355957, -0.022932784631848335, 0.021616855636239052, -0.0004390709800645709, 0.008197133429348469, -0.0013390594394877553, -0.010321808978915215, -0.00455434387549758, -0.021712809801101685, 0.004153397399932146, 0.0051814657635986805, 0.004622881766408682, 0.013803535141050816, 0.019999362528324127, -0.02575654536485672, -0.0034748718608170748, 0.023741532117128372, -0.004057444166392088, 0.00945137720555067, -0.025098582729697227, -0.014146224595606327, 0.02812795713543892, 0.02304244413971901, 0.013913195580244064, -0.019725210964679718, -0.018738264217972755, -0.008258817717432976, 0.019355105236172676, -0.0007012285059317946, 0.00807376578450203, 0.018793094903230667, 0.03056790679693222, 0.01275490503758192, -0.034049633890390396, 0.00620268052443862, 0.016298314556479454, -0.023741532117128372, -0.005095793399959803, -0.03544780611991882, 0.0011471532052382827, 0.042383842170238495, -0.011027749627828598, -0.005147196818143129, -0.01649022102355957, 0.021973254159092903, -0.0019207749282941222, 0.009561038576066494, -0.01126077864319086, -0.003318948205560446, 0.019670380279421806, -0.008210841566324234, 0.005979932378977537, 0.00666188495233655, -0.00870431400835514, -0.016270900145173073, -0.026277434080839157, -0.025934744626283646, -0.010993480682373047, -0.014749357476830482, 0.01732638292014599, -0.009848897345364094, -0.0125698521733284, -0.01764165796339512, -0.00035425531677901745, 0.022370774298906326, 0.01049315370619297, 0.01466711238026619, -0.006726995576173067, 9.814842633204535e-05, -0.0030088142957538366, -0.015804842114448547, -0.03766843304038048, 0.010527422651648521, -0.008601507171988487, -0.019409935921430588, -0.012562998570501804, 0.013824095949530602, 0.025975868105888367, -0.008731729350984097, 0.007546023931354284, -0.00449266005307436, 0.0167369581758976, 0.012316262349486351, 0.006415148265659809, -0.0007367825019173324, 0.007546023931354284, -0.00185223703738302, -0.003402907168492675, -0.00570235401391983, -0.008718022145330906, 0.009533623233437538, -0.037037886679172516, -0.0015523836482316256, -0.011185387149453163, 0.003670204896479845, 0.007772198878228664, 0.003246983513236046, 0.0032212818041443825, -0.013700728304684162, -0.04071151837706566, 0.014173639938235283, -0.028977828100323677, -0.007621415425091982, -0.012816589325666428, -0.0008618641877546906, 0.0010683346772566438, 0.009184080176055431, 0.010225855745375156, -0.0006219815113581717, -0.0024313824251294136, -0.003204147331416607, -0.01703852415084839, 0.004221935290843248, 0.006209534592926502, -0.025646885856986046, 0.00448237918317318, 0.00898532010614872, -0.02216515876352787, 0.0197526253759861, 0.009835190139710903, 0.005462471395730972, 0.024495448917150497, 0.015489567071199417, 0.004705127328634262, -0.03925851359963417, 0.0014778486220166087, -0.01241221558302641, 0.00329667329788208, -0.0010948930867016315, -0.005709207616746426, -0.023439964279532433, -0.027785267680883408, -0.015338784083724022, -0.033419083803892136, -0.01559922844171524, -0.02250785008072853, -0.01828591339290142, 0.006243803538382053, 0.0011394427856430411, 0.0041328356601297855, -0.015462151728570461, -0.047483064234256744, -0.030979134142398834, -0.00487304525449872, -0.03468018025159836, -0.03544780611991882, -0.006415148265659809, -0.02160314843058586, 0.023549625650048256, 0.005688646342605352, 0.03051307611167431, -0.031033964827656746, 0.0017100208206102252, 0.006726995576173067, 0.001489842776209116, 0.005883979611098766, -0.006408294662833214, -0.03330942243337631, -0.036681488156318665, -0.019629256799817085, 0.029224563390016556, 0.009842043742537498, 0.012480753473937511, -0.0046777124516665936, -0.00035725385532714427, 0.03687339648604393, -0.0038792456034570932, -0.011233363300561905, -0.01240536104887724, -0.04649611562490463, -0.03322717919945717, 0.00914981123059988, -0.009533623233437538, 0.003577678930014372, -0.027757853269577026, 0.007902421057224274, 0.06941519677639008, 0.011432123370468616, -0.0005984216113574803, -0.016969986259937286, 0.02577025443315506, -0.025276780128479004, 0.011281339451670647, 0.016092700883746147, 0.028840752318501472, -0.022644925862550735, 0.02818278782069683, -0.007354117464274168, -0.010870112106204033, 0.0059045408852398396, 0.004112274385988712, 0.005753757432103157, -0.015379906632006168, -0.009951704181730747, -0.013844657689332962, 0.0057948799803853035, -0.012741196900606155, -0.002854603808373213, 0.014365545473992825, -0.01797064021229744, -0.01856006495654583, -0.003246983513236046, -0.00397177180275321, -0.025852499529719353, -0.015475859865546227, -0.009759798645973206, 0.004561197943985462, 0.010876965709030628, -0.010691913776099682, -0.011315608397126198, 0.008258817717432976, 0.0016431963304057717, 0.043288543820381165, 0.013412868604063988, 0.01675066538155079, -0.003435462713241577, -0.02999218925833702, -0.01587338000535965, 0.005034109577536583, -0.004766811616718769, -0.027072474360466003, 0.02191842347383499, 0.013947464525699615, -0.0075186085887253284, -0.0025410428643226624, -0.034872088581323624, 0.005815441720187664, -0.032486967742443085, -0.025098582729697227, 0.016243483871221542, 0.004742823075503111, -0.0013724715681746602, -0.004427548963576555, 0.007066258229315281, -0.023508502170443535, 0.01200784184038639, 0.0018145411740988493, 0.02400197647511959, -0.01240536104887724, -0.01287827268242836, -0.03772326558828354, -0.0025016337167471647, 0.017161892727017403, 0.018518943339586258, 0.022315943613648415, -0.015667766332626343, -0.02873109094798565, -0.008813975378870964, -0.01034922432154417, -0.011507514864206314, -0.0030876328237354755, 0.023481087759137154, -0.0002900010149460286, 0.010225855745375156, 0.012014695443212986, -0.0010383493499830365, -0.01197357289493084, 0.010712475515902042, -0.019656673073768616, 0.027127305045723915, 0.011356731876730919, 0.009574745781719685, 0.0011882759863510728, 0.03457052260637283, 0.021493488922715187, 0.013782973401248455, 0.00472911586984992, 0.011473245918750763, -0.02581137605011463, -3.868643761961721e-05, -0.0010769019136205316, 0.011171679012477398, 0.0014564305311068892, -0.010068219155073166, -0.01590079441666603, 0.007008001208305359, 0.006819522008299828, -0.002943703206256032, 0.019725210964679718, -0.034323785454034805, -0.028977828100323677, 0.0063397567719221115, -0.029169734567403793, 0.012946810573339462, 0.0007239316473715007, 0.023152105510234833, -0.006487112957984209, 0.029909944161772728, -0.02483813837170601, 0.027374040335416794, -0.014242177829146385, 0.011178532615303993, -0.030321171507239342, 0.013830949552357197, 0.012021549046039581, -0.020438004285097122, 0.017751317471265793, -0.019903408363461494, -0.022836830466985703, 0.027469994500279427, 0.01588708721101284, 0.01377611979842186, 0.00598678644746542, 0.02062991075217724, -0.0067098611034452915, 0.002864884678274393, 0.004324742127209902, -0.007861298508942127, -0.03871021047234535, 0.026606416329741478, 0.029471300542354584, 0.0033258020412176847, 0.004372718743979931, -0.02815537340939045, 0.01976633258163929, 0.005764038302004337, 0.012048964388668537, 0.00989687442779541, -0.03958749771118164, 0.009780359454452991, -0.009286887012422085, 0.012850858271121979, 0.00960216112434864, -0.017024816945195198, -0.022919077426195145, -0.01065764483064413, -0.012110648676753044, -0.0007774768746457994, 0.016065286472439766, -0.02430354245007038, 0.022398188710212708, 0.030348585918545723, -0.002445089863613248, -0.016558758914470673, -0.013433430343866348, -0.00015849391638766974, 0.009259471669793129, -0.009540476836264133, -0.042986977845430374, -0.019711501896381378, -0.013399161398410797, 0.04082117974758148, 0.002311440883204341, -0.021095968782901764, 0.0008952764328569174, -0.01612011529505253, -0.02245301939547062, -0.010445177555084229, 0.002076698699966073, 0.024344665929675102, 0.029526131227612495, 0.008032643236219883, 0.0075665852054953575, 0.02009531483054161, -0.019588135182857513, 0.016627296805381775, 0.007888712920248508, -0.009348570369184017, -0.010739889927208424, 0.010452031157910824, -0.004091713111847639, -0.0043281689286231995, -0.02102743089199066, 0.002117821481078863, 0.007189626805484295, -0.0052431500516831875, -0.0008417312055826187, 0.010630229488015175, -0.004249350167810917, 0.017230430617928505, -0.016024162992835045, 0.006548797246068716, 0.024111635982990265, 0.022603802382946014, -0.0027449431363493204, -0.018710849806666374, -0.018971292302012444, 0.0072650182992219925, -0.017134476453065872, -0.01437925361096859, -0.031280700117349625, 0.005681792739778757, -0.011767959222197533, 0.00763512309640646, -0.0133237699046731, -0.020465418696403503, -0.009232056327164173, -0.03237730637192726, 0.03542039170861244, -0.00315274391323328, 0.008635776117444038, 0.024495448917150497, -0.001680035493336618, -0.019300274550914764, -0.012096940539777279, 0.016682127490639687, 0.019231736660003662, -0.02911490388214588, -0.0030790655873715878, -0.02071215584874153, 0.009259471669793129, -0.003013954497873783, 0.016243483871221542, -0.02034205198287964, 0.009814628399908543, -0.015681473538279533, 0.00734040979295969, -0.00867689959704876, 0.014763065613806248, 0.023522209376096725, -0.004341876599937677, -0.004023175220936537, 0.005650950595736504, -0.009314301423728466, -0.002558177337050438, -0.02038317359983921, -0.0040745786391198635, 8.283448551082984e-05, 0.012480753473937511, 0.0057229152880609035, 0.006788679864257574, -0.011199094355106354, 0.00033819174859672785, 0.014954972080886364, -0.031554851680994034, 0.014022856019437313, 0.20495575666427612, -0.018080299720168114, 0.0008631492964923382, 0.02483813837170601, -0.0006129859248176217, 0.013700728304684162, 0.022960199043154716, -0.0018488101195544004, -0.006007347721606493, -0.01677807979285717, -0.01240536104887724, 0.015229123644530773, -0.004311034455895424, 0.006798960734158754, -0.0008314505103044212, -0.005524155218154192, -0.04073893278837204, -0.0011265919310972095, -0.014735650271177292, -0.0532950796186924, -0.0016012168489396572, -0.023563332855701447, -0.011946157552301884, -0.004897033795714378, 0.020849231630563736, 0.0030190949328243732, -0.019039830192923546, 0.00042986118933185935, 0.030403416603803635, 0.002110967645421624, -0.03114362619817257, -0.0018145411740988493, -0.01260412111878395, 0.011144263669848442, -0.014735650271177292, 0.0017579973209649324, 0.021712809801101685, 0.0016397694125771523, 0.007169065065681934, -0.01703852415084839, -0.002105827210471034, 0.010739889927208424, -0.0016706115566194057, 0.014338130131363869, -0.01643539033830166, 0.03687339648604393, 0.0003636792826000601, -0.00927317887544632, -0.02900524251163006, 0.026524171233177185, -0.02546868659555912, 0.008992173708975315, 0.04010838270187378, 0.015421029180288315, -0.006613908335566521, -0.00960216112434864, -0.003437176113948226, 0.018628602847456932, -0.012035257183015347, -0.0061409967020154, -0.01921802945435047, 0.02453657053411007, -0.011425269767642021, 0.03448827564716339, -0.02101372368633747, 0.0010657644597813487, -0.008601507171988487, 0.0022086340468376875, 0.02663383074104786, -0.03147260844707489, -0.003228135406970978, -0.01732638292014599, 0.000435858266428113, -0.0014744217041879892, 0.003940929658710957, -0.0022634644992649555, 0.012042110785841942, -0.023261766880750656, 0.011322462931275368, -0.007258164696395397, 0.008389039896428585, -0.019300274550914764, -0.004365864675492048, -0.010870112106204033, -0.007436363026499748, -0.02752482332289219, 0.016572466120123863, -0.020204976201057434, -0.031088795512914658, 0.007038843352347612, -0.026318557560443878, -0.005232869181782007, 0.0024142477195709944, -0.0040026139467954636, -0.006870925426483154, 0.0016500501660630107, 0.01260412111878395, 0.005760611034929752, 0.013200401328504086, 0.007984666153788567, -0.0221925750374794, -0.004622881766408682, 0.04019062966108322, 0.006596773862838745, -0.039423003792762756, -0.006994293536990881, 0.02752482332289219, 0.007134796120226383, 0.020163852721452713, -0.010650791227817535, 0.0269353985786438, 0.004112274385988712, -0.003677058732137084, -0.019067246466875076, 0.019300274550914764, 0.03473501279950142, -0.028676260262727737, -0.019313981756567955, -0.0077584912069141865, 0.007525462191551924, 0.010808427818119526, -0.02400197647511959, -0.000649825029540807, -0.0003324088465888053, -0.0008460148237645626, -0.0009561038459651172, -0.022028082981705666, 0.02250785008072853, -0.0006326905568130314, -0.015325075946748257, 0.03813449293375015, -0.048058781772851944, 0.0026712650433182716, 0.005438482854515314, -0.01860118843615055, 0.03385772556066513, 0.00017980491975322366, -0.019053539261221886, 0.02782639116048813, -0.008135450072586536, 0.0032349892426282167, -0.00547617906704545, 0.017915809527039528, 0.001021214877255261, 0.003246983513236046, -0.009088126942515373, 0.025400148704648018, -0.010890673846006393, 0.00958159938454628, -0.0069497437216341496, -0.03618801757693291, 0.003762731095775962, 0.0003403335576876998, -0.016874033957719803, 0.005746903829276562, -0.006257511209696531, -0.014338130131363869, -0.012288847006857395, 0.0017785587115213275, 0.03152743726968765, -0.0251397043466568, 0.024769600480794907, 0.02367299422621727, -0.00856038462370634, -0.01584596373140812, -0.020150145515799522, -0.17545704543590546, 0.012275139801204205, 0.006812667939811945, -0.004550917074084282, 0.0323224775493145, 0.010890673846006393, 0.03021151013672352, 0.0124259227886796, 0.0028785921167582273, -0.019642964005470276, 0.02489296905696392, 0.018491527065634727, -0.038929533213377, -0.016024162992835045, -0.006192400120198727, 0.009478792548179626, -0.018518943339586258, 0.02784009836614132, 0.026291141286492348, 0.011274485848844051, 0.003944356460124254, -0.016010455787181854, 0.008827682584524155, -0.004982706159353256, -0.005191746633499861, 0.004105420783162117, -0.004149970598518848, 0.0050512440502643585, 0.0045097945258021355, -0.022069206461310387, -0.01200784184038639, 0.019122077152132988, 0.005431629251688719, -0.013268939219415188, 0.014653405174612999, -0.0009466798510402441, 0.005260284524410963, -0.012172332964837551, -0.0017417195485904813, 0.016284607350826263, 0.023741532117128372, -0.0060381898656487465, 0.019286567345261574, 0.0002825046831276268, 0.0031681647524237633, 0.030485661700367928, -0.008615215308964252, -0.007641976699233055, 0.007429509423673153, -0.01590079441666603, 0.0173812136054039, -0.0008841390372253954, 0.0008305937517434359, 0.008162864483892918, 0.030704982578754425, 0.008190279826521873, 0.0022206283174455166, 0.011219656094908714, -0.0056783659383654594, -0.025372734293341637, 5.12695696670562e-05, 0.004756530746817589, 0.008861951529979706, -0.014351838268339634, 0.004986132960766554, -0.004317888058722019, -0.007984666153788567, 0.008258817717432976, -0.019026122987270355, 0.022905368357896805, -0.0063980137929320335, 0.0007547737332060933, 0.019985653460025787, -0.010219002142548561, -0.0021520904265344143, -0.012048964388668537, -0.0245639868080616, 0.022631216794252396, -0.008539823815226555, -0.017888393253087997, -0.044823791831731796, 0.041835539042949677, -0.028100542724132538, -0.006195826921612024, 0.008478139527142048, 0.031225871294736862, -0.007703660987317562, -0.015941917896270752, -0.02790863625705242, 4.339841689215973e-05, -0.002140096155926585, -0.02519453503191471, -0.003577678930014372, -0.007998374290764332, 0.027771560475230217, 0.02641450986266136, 0.02093147672712803, -0.025701716542243958, 0.008779706433415413, -0.0017271552933380008, 0.0062849260866642, -0.01618865318596363, -0.013090740889310837, 0.03797000274062157, 0.022850539535284042, 0.005726342089474201, -0.01887533999979496, 0.014022856019437313, 0.023522209376096725, 0.0024982066825032234, -0.004324742127209902, 0.01824479177594185, 0.024961506947875023, 0.005068378522992134, 0.00974609050899744, 0.03407704830169678, -0.02064361795783043, -0.006668738555163145, 0.03393997251987457, -0.019286567345261574, 0.06590605527162552, -0.009656990878283978, -0.016407975926995277, -0.011137410067021847, -0.005222588777542114, -0.03059532307088375, -0.1149243637919426, -0.004783946089446545, 0.018464112654328346, 0.003140749642625451, 0.0072650182992219925, 0.0037798655685037374, -0.0045097945258021355, 0.0015746584394946694, -0.00121826131362468, 0.005034109577536583, -0.016874033957719803, -0.03829898312687874, 0.011747397482395172, -0.007710514590144157, 0.014653405174612999, -0.0267160777002573, -0.009389693848788738, -0.0227682925760746, 0.016654711216688156, 0.02522195130586624, -0.007868152111768723, -0.02391972951591015, 0.01736750639975071, -0.021328996866941452, 0.023604456335306168, 0.0015052638482302427, -0.03177417442202568, 0.007751637604087591, 0.034268952906131744, 0.016682127490639687, -0.011336170136928558, -0.0034680182579904795, 0.02426241897046566, 0.001267951331101358, -0.005219161510467529, -0.012844003736972809, -0.02999218925833702, -0.01273434329777956, 0.03799741715192795, -0.031938664615154266, 0.009540476836264133, -0.01151436846703291, 0.022562678903341293, -0.018697140738368034, 0.0125698521733284, -0.007292433641850948, -0.016832910478115082, 0.003135609207674861, 0.010095633566379547, -0.02634597197175026, -0.034899502992630005, 0.00867004506289959, -0.025674300268292427, 0.005859991069883108, 0.022919077426195145, -0.011610321700572968, 0.037037886679172516, -0.0041465433314442635, -0.011459538713097572, -0.01768277958035469, -0.009574745781719685, -0.000556870480068028, -0.0032572641503065825, 0.039998725056648254, 0.020204976201057434, 0.013604775071144104, -0.02126045897603035, -0.021082261577248573, 0.023768946528434753, -0.0015746584394946694, -0.003025948768481612, 0.0019481900380924344, -0.02486555278301239, 0.013906341977417469, -0.02637338638305664, 0.02638709545135498, -0.027730436995625496, -0.0076968069188296795, 0.016037870198488235, -0.00974609050899744, -0.011301901191473007, -0.01913578435778618, 0.010068219155073166, 0.0004472098662517965, 0.029416469857096672, 0.00014939122775103897, 0.018094008788466454, -0.018107715994119644, 0.026208896189928055, -0.018724557012319565, 0.004825068637728691, 0.011014041490852833, -0.014091393910348415, -0.022398188710212708, 0.015722597017884254, 0.04197261482477188, 0.020013069733977318, 0.003063644515350461, -0.01213120948523283, 0.0031750185880810022, -0.017490874975919724, 0.0075049009174108505, -0.06645435839891434, 0.01799805462360382, 0.009609014727175236, 0.006422001868486404, -0.0031664513517171144, -0.01592821069061756, 0.01825849898159504, -0.035228483378887177, -0.010246417485177517, -0.0006164128426462412, -0.015215415507555008, 0.030924303457140923, -0.013255231082439423, -0.010870112106204033, -0.005016975104808807, -0.010616522282361984, 0.014488914050161839, -0.023577040061354637, 0.0015138310845941305, -0.012343677692115307, 0.010253271088004112, 0.008183426223695278, 0.02457769401371479, -0.015338784083724022, -0.028292449191212654, -0.007977812550961971, 0.022699754685163498, 0.025660593062639236, -0.0006069888477213681, -0.019930824637413025, 0.010116195306181908, -0.03531073033809662, -0.013570506125688553, 0.01166515238583088, 0.0019242017297074199, 0.006024482194334269, -0.034351199865341187, -0.0030379428062587976, 0.011946157552301884, 0.048415180295705795, -0.015750011429190636, -0.02042429707944393, 0.01166515238583088, -0.03328200802206993, 0.011301901191473007, 0.023234350606799126, -0.022823123261332512, -0.0002261750923935324, 0.016229776665568352, -0.009259471669793129, 0.024111635982990265, 0.018943877890706062, 0.0010786153143271804, -0.024084221571683884, 0.0010614808415994048, -0.016586173325777054, 0.02878592163324356, -0.005688646342605352, 0.013851511292159557, -0.035749372094869614, 0.01706593856215477, -0.011795373633503914, 0.022590095177292824, -0.002851177006959915, 0.028813336044549942, -0.0173812136054039, -0.01973891817033291, -0.0022651778999716043, -0.019259152933955193, -0.021191921085119247, 0.014434083364903927, 0.0025170547887682915, 0.007498047314584255, 0.011733690276741982, 0.020794400945305824, 0.01093179639428854, 0.009019589051604271, 0.0062883528880774975, -0.014187347143888474, 0.01319354772567749, -0.008505554869771004, -0.015160585753619671, -0.04219193756580353, 0.004622881766408682, 0.02842952497303486, -0.01047944650053978, -0.012124355882406235, 0.015983039513230324, -0.011898181401193142, 0.010143610648810863, 0.015146877616643906, -0.0056646582670509815, -0.01614753156900406, -0.009012735448777676, 0.008478139527142048, 0.014146224595606327, -0.0035399829503148794, -0.005654377397149801, 0.028621431440114975, 0.04646870121359825, -0.014406668022274971, 0.014913848601281643, -0.0035125678405165672, 0.003570825094357133, 0.0004523501847870648, 0.009787213057279587, -0.014283300377428532, -0.022329650819301605, -0.003639362985268235, 0.020561372861266136, 0.0040026139467954636, -0.0062300958670675755, 0.018450405448675156, 0.01712076924741268, -0.022343358024954796, 0.0033480769488960505, -0.006432282738387585, -0.012823442928493023, -0.0014787053223699331, 0.036078356206417084, 0.006620761938393116, 0.03393997251987457, 0.008882513269782066, 0.015325075946748257, 0.028950411826372147, 0.03651699796319008, 0.007045696955174208, 0.02662012353539467, 0.002642136299982667, 0.00958159938454628, 0.012658951804041862, 0.011486953124403954, -0.042438674718141556, -0.008149157278239727, 0.0024279553908854723, -0.034597937017679214, -0.012974225915968418, 0.0027106741908937693, -0.02094518579542637, 0.03330942243337631, 0.011192240752279758, -0.022219989448785782, 0.014002294279634953, 0.006380879320204258, 0.02971803769469261, -0.00031377511913888156, 0.0038655379321426153, 0.013865218497812748, -0.017257845029234886, 0.0004669144982472062, -0.00836162455379963, 0.016997400671243668, -0.019944531843066216, -0.006898340303450823, 0.0021675112657248974, -0.006497393827885389, 0.03744911402463913, -0.02549610286951065, -0.01942364312708378, 0.02034205198287964, 0.006147850304841995, 0.03054049238562584, -0.0005714347935281694, -0.01712076924741268, 0.006778398994356394, 0.01768277958035469, -0.0037524504587054253, 0.019725210964679718, -0.02960837632417679, -0.000570578093174845, 0.017902102321386337, -0.02396085299551487, 4.720013021142222e-05, 0.014913848601281643, -0.007998374290764332, 0.003803853876888752, -0.01920432224869728, 0.015722597017884254, 0.002858030842617154, -0.021753931418061256, 0.019300274550914764, -0.01916319876909256, -0.016531342640519142, 0.024125343188643456, -0.011521222069859505, -0.015695180743932724, -0.007600854150950909, -0.017436044290661812], "1ed6bef4-1638-404b-b411-c62b323fb53d": [0.017734283581376076, -0.02134682424366474, -0.005791694391518831, 0.009852379560470581, -0.007532965391874313, 0.026273014023900032, -0.017255349084734917, -0.007567175198346376, 0.002909530885517597, -0.026519322767853737, 0.004700406454503536, 0.008990297093987465, 0.018952148035168648, -0.004864612594246864, -0.007115607615560293, 0.02179839089512825, 0.03051500953733921, -0.002338229678571224, 0.02015632763504982, -0.014299634844064713, -0.007368759252130985, -0.007512439973652363, -0.0026119069661945105, 0.02824348956346512, -0.004857770632952452, 0.021634183824062347, 0.011063401587307453, -0.00924344826489687, 0.000415647285990417, -0.005080133210867643, -0.01958160474896431, 0.006366416346281767, 0.005261444486677647, -0.0037459570448845625, -0.02131945639848709, -0.006082476116716862, 0.0012760200770571828, -0.02606775611639023, 0.013786490075290203, -0.012561784125864506, -0.005220393184572458, -0.007129291538149118, -0.02122366800904274, 0.009688173420727253, -0.007047188468277454, 0.02230469323694706, 0.0035270152147859335, -0.005702748894691467, -0.027942445129156113, 0.020005805417895317, 0.022523635998368263, 0.005863534286618233, -0.03418228402733803, 0.009476074017584324, -0.02287941612303257, -0.0020696839783340693, 0.0074303364381194115, 0.02939293347299099, 0.004464359488338232, 0.024343589320778847, 0.007847694680094719, 0.00788874551653862, -2.3131604393711314e-05, 0.0020286324433982372, -0.05769115686416626, -0.018103748559951782, -0.001455620746128261, -0.005908007267862558, -0.010878670029342175, -0.026300381869077682, 0.05385967716574669, 0.015531182289123535, -0.00477908831089735, -0.010693937540054321, 0.005117764230817556, -0.0325402207672596, -0.013950696215033531, -0.017132194712758064, -0.018746890127658844, 0.01848689652979374, -0.0037562199868261814, -0.03412754833698273, 0.005093817133456469, 0.00924344826489687, 0.01855531521141529, -0.016625890508294106, 0.005829324945807457, 0.03212970495223999, -0.004187261685729027, -0.023686762899160385, 0.018774257972836494, 0.018664786592125893, 0.023727815598249435, 0.01174075249582529, -0.00896977074444294, 0.01906161941587925, -0.030925525352358818, 0.026505639776587486, -0.006585358176380396, -0.015065930783748627, -0.014997512102127075, -0.0032259703148156404, -0.015394343994557858, -0.0039717406034469604, -0.017214296385645866, 0.006434835493564606, -0.008340313099324703, -0.003913584165275097, 0.020881572738289833, -0.007964007556438446, -0.018692154437303543, 0.013827541843056679, -0.013711228966712952, -0.04948084056377411, -0.01255494263023138, -0.02500041387975216, 0.01746060699224472, -0.012842304073274136, -0.01304071955382824, -0.02175734005868435, -0.008285578340291977, 0.032950736582279205, 0.001293980167247355, -0.013444393873214722, 0.010433943942189217, -0.004850928671658039, 0.004597777500748634, -0.027148781344294548, -0.004748299717903137, -0.006085897330194712, 0.04775667563080788, 0.004081211518496275, 0.00791611336171627, 0.0013127954443916678, -0.0035133312921971083, 0.01858268305659294, -0.015668021515011787, -0.011706543155014515, -0.01956792175769806, -0.03095289319753647, 0.023262564092874527, 0.0020713945850729942, -0.006404046900570393, -0.01741955429315567, -0.020320532843470573, 0.033470723778009415, 0.0058874813839793205, -0.004317258019000292, -0.03557803854346275, -0.0014051614562049508, 0.0122607396915555, -0.010687095113098621, 0.014846988953649998, -0.02237311378121376, 0.031363409012556076, -0.012431788258254528, 0.003930689301341772, 0.006434835493564606, 0.0013786490308120847, 0.0044096242636442184, 0.026464587077498436, 0.01854163222014904, -0.0006987321539781988, -0.0003570632543414831, 0.00786822009831667, 0.030213965103030205, -0.01577749103307724, -0.011631282046437263, -0.02718983218073845, -0.011754436418414116, 0.011371288448572159, 0.014641731046140194, -0.03661801293492317, -0.0008565241587348282, -0.004895401187241077, 0.0135812321677804, 0.035194892436265945, 0.03426438942551613, -0.012096533551812172, 0.006787195336073637, -0.018404792994260788, -0.011439708061516285, 0.009359761141240597, 0.023112041875720024, -0.031883396208286285, -0.013772806152701378, -0.008032426238059998, -0.001433384488336742, 0.0009860931895673275, 0.020402636379003525, 0.0014821331715211272, 0.016762729734182358, 0.011268659494817257, -0.008880825713276863, -0.6428130865097046, -0.011644965969026089, 0.008716619573533535, -0.037849560379981995, -0.0022065225057303905, 0.009667648002505302, 0.028134018182754517, -0.002782955300062895, -0.009955008514225483, -0.00708824023604393, -0.02390570566058159, 0.009845538064837456, 0.0017121931305155158, -0.01309545524418354, -0.020525790750980377, -0.007574017159640789, -9.984942153096199e-05, -0.03557803854346275, 0.00017083444981835783, -0.02614985778927803, -0.013027035631239414, -0.0011520100524649024, -0.006044845562428236, 0.006383521016687155, -0.004861191846430302, 0.00012529284867923707, 0.020908940583467484, 0.00292834616266191, 0.009818170219659805, 0.03100762888789177, -0.033415988087654114, 0.0328686349093914, 0.023248879238963127, 0.022003648802638054, 0.04526621103286743, -0.01148075982928276, -0.03749378025531769, 0.021675236523151398, 0.017022723332047462, 0.030131861567497253, -0.01793954148888588, -0.008607148192822933, 0.026929838582873344, 0.004481464624404907, 0.01743323914706707, 0.015189086087048054, 0.03160971775650978, -0.016051169484853745, 0.02298888750374317, 0.017269032076001167, 0.011754436418414116, 0.011884433217346668, -0.01393017079681158, 0.0012298370711505413, 0.0014667388750240207, 0.0037117472384124994, 0.015476446598768234, 0.0022390217054635286, 0.015312240459024906, 0.0031866291537880898, 0.01906161941587925, 0.022769944742321968, -0.02062157914042473, -0.005251181777566671, -0.02994028851389885, 0.011870749294757843, -0.006308259908109903, 0.002909530885517597, 0.01789849065244198, -0.019951069727540016, 0.01629747822880745, 0.012589151971042156, 0.008312945254147053, -0.032458119094371796, 0.018870044499635696, -0.009523967280983925, 0.031171835958957672, -0.0149564603343606, -0.0016061431961134076, 0.01954055391252041, 0.01059130858629942, -0.018185852095484734, -0.03497594967484474, -0.030241332948207855, 0.011768120341002941, -0.0191300380975008, -0.0005730116972699761, 0.016571156680583954, -0.018610050901770592, 0.005596699193120003, 0.005193025339394808, 0.012144426815211773, 0.00041586108272895217, 0.014669098891317844, 0.03503068536520004, 0.01966370828449726, 0.0017310084076598287, 0.0025092780124396086, -0.004115421324968338, -0.011727068573236465, 0.0013829251984134316, -0.0217162873595953, 0.008025584742426872, -0.01308861281722784, 0.021483661606907845, -0.013793331570923328, -0.04148946702480316, -0.010557099245488644, 0.05191656947135925, -0.015175402164459229, -0.0038075344637036324, -0.0072113946080207825, -0.0034038603771477938, -0.00394437275826931, 0.005665118340402842, -0.022427847608923912, 0.0037049055099487305, 0.005990110337734222, 0.011863907799124718, 0.012739675119519234, 0.035194892436265945, -0.012411261908710003, 0.01035184133797884, 0.0002974101807922125, 0.028216121718287468, 0.031308673322200775, 0.0039717406034469604, -0.01366333570331335, -0.007608226966112852, 0.002605065004900098, 0.007984532974660397, 0.0095581766217947, 0.002261257963255048, 0.010947088710963726, 0.0048475079238414764, -0.016790097579360008, 0.011514969170093536, -0.00367753766477108, 0.022072067484259605, -0.035660140216350555, -0.022742576897144318, 0.005843008868396282, 0.012404420413076878, 0.010734989307820797, -0.010837618261575699, -0.03445596247911453, -0.014628047123551369, 0.007108765654265881, -0.035167522728443146, -0.00556248938664794, -0.018760573118925095, -0.014053325168788433, -0.008107687346637249, 0.01583222672343254, 0.01579117588698864, -0.01039973460137844, 0.001931134844198823, 0.0023005991242825985, 0.005418809130787849, -0.014135428704321384, 0.0021141564939171076, 0.018774257972836494, -0.021989963948726654, 0.002596512669697404, 0.022660473361611366, -0.01196653675287962, -0.0190342515707016, 0.02178470604121685, -0.002485331380739808, -0.03141814470291138, -0.005545384716242552, -0.01583222672343254, -0.004826982039958239, 0.04841350018978119, -0.010796566493809223, -0.007615068927407265, 0.002483620774000883, -0.030870791524648666, -0.0024117804132401943, 0.006701671052724123, -0.007512439973652363, 0.03306020796298981, -0.0031524195801466703, -0.0055351220071315765, 0.015257504768669605, -0.013287029229104519, 0.0009783960413187742, 0.002191128209233284, 0.00627405010163784, 0.0327044278383255, -0.0029557140078395605, 0.029529772698879242, 0.0162837952375412, 0.0047140903770923615, -0.011261817999184132, -0.008846616372466087, 0.0056343297474086285, 0.01856900006532669, -0.00723192049190402, -0.0005024542915634811, 0.022509951144456863, 0.0014342396752908826, 0.020580526441335678, -0.010160266421735287, 0.0026341432239860296, -0.04206418991088867, 0.015668021515011787, -0.012069165706634521, 0.033032841980457306, -0.023659395053982735, -0.0018524527549743652, -0.031308673322200775, -0.01748797483742237, -0.022633105516433716, 0.009681331925094128, 0.0245625302195549, 0.009202396497130394, 0.004348047077655792, -0.019814230501651764, -0.015982748940587044, 0.006407468114048243, -0.0005439334781840444, -0.005843008868396282, -0.0005678802262991667, -0.011870749294757843, -0.014778570272028446, -0.0012212846195325255, 0.028051914647221565, 0.018760573118925095, -0.01573644019663334, 0.02386465296149254, -0.013820699416100979, -0.0016446290537714958, 0.009441863745450974, 0.023577293381094933, 0.007957165129482746, 0.0026358538307249546, -0.012910722754895687, 0.035714875906705856, -0.013027035631239414, 0.0009792513446882367, 0.010659728199243546, 0.01852794736623764, -0.02386465296149254, -0.012192320078611374, 0.006024319678544998, 0.006698249839246273, 0.006612726021558046, 0.01465541496872902, 0.03664537891745567, -0.011809172108769417, -0.013451235368847847, -0.002037184778600931, 0.0003792995121330023, 0.01577749103307724, -0.030159229412674904, 0.0044917273335158825, 0.008785039186477661, 0.010468154214322567, 0.029748713597655296, 0.005682223476469517, -0.006564832292497158, 0.013868593610823154, 0.015120666474103928, 0.0436788834631443, 0.006619567982852459, 0.011829697526991367, 0.02131945639848709, -0.013889119029045105, -0.034620169550180435, -0.02071736566722393, -0.02240047976374626, 0.012034955434501171, -0.003913584165275097, 0.009099767543375492, 0.0030378170777112246, -0.006469045300036669, -0.0008676423458382487, 0.02562987245619297, -0.0028103229124099016, -0.01624274253845215, -0.023098357021808624, 0.0325675904750824, 0.004416466224938631, 0.0019516607280820608, -0.012917565181851387, -0.02178470604121685, -0.0009724093833938241, -0.023714130744338036, 0.04187261685729027, -0.02133313938975334, 0.014532260596752167, 0.03095289319753647, -0.0013016773154959083, 0.003687800606712699, -0.006356153637170792, 0.023139409720897675, -0.0218668095767498, 0.036836955696344376, -0.0014248320367187262, -0.00902450643479824, 0.005572752561420202, -0.007095082197338343, 0.030733952298760414, 0.02023843117058277, -0.017104826867580414, 0.00043040019227191806, -0.008839773945510387, 0.004047001712024212, -0.022715209051966667, -0.004255680833011866, -0.02939293347299099, -0.005483807530254126, -0.010167108848690987, 0.006530622486025095, -0.0033593878615647554, -0.0047927722334861755, 0.010953931137919426, 0.024726737290620804, -0.017282716929912567, -0.012595994397997856, -0.005678802262991667, -0.024370957165956497, 0.009955008514225483, 0.08774092048406601, 0.008224000222980976, -0.021374190226197243, 0.018185852095484734, -0.00544275576248765, 0.01963634043931961, -0.031910765916109085, -0.019773179665207863, 0.01362912543118, 0.006752985529601574, 0.005617225077003241, -0.0163795817643404, 0.027121413499116898, -0.0122607396915555, 0.0012683229288086295, -0.008860300295054913, -0.026560373604297638, -0.013451235368847847, -0.006383521016687155, -0.0001992712204810232, 0.014080693013966084, 0.008285578340291977, 0.017104826867580414, 0.023289931938052177, -0.03103499673306942, -0.004200945142656565, 0.029228728264570236, -0.008607148192822933, 0.016215374693274498, -0.01852794736623764, -0.0038930585142225027, 0.0162701103836298, 0.02241416461765766, 0.017665864899754524, -0.00169765402097255, -0.008908193558454514, -0.0044404128566384315, 0.015681704506278038, 0.010974456556141376, 0.012069165706634521, 0.025274092331528664, 0.029256094247102737, 0.016694311052560806, -0.017570078372955322, 0.006232998799532652, 0.007368759252130985, -0.011330236680805683, -0.005771168507635593, -0.028763476759195328, 0.007758749183267355, 0.046552494168281555, -0.0053161801770329475, -0.007628752384334803, -0.011289185844361782, 0.03098026104271412, 0.0040025291964411736, 0.022468900308012962, -0.004146209917962551, -0.009072399698197842, 0.006534043699502945, -0.005227235145866871, -0.0025058570317924023, 0.012541258707642555, -0.009195555001497269, -0.019280560314655304, -0.029858184978365898, -0.012459155172109604, -0.00017265183851122856, -0.01034499891102314, 0.00846346840262413, -0.018213219940662384, -0.022605737671256065, -0.021032094955444336, 0.013430709950625896, 0.012814936228096485, 0.00448830658569932, 0.014422789216041565, -0.00367753766477108, -0.00873030349612236, -0.009400812909007072, -0.010194476693868637, -0.03752114623785019, 0.014846988953649998, -0.018418477848172188, -0.02133313938975334, -0.001216153148561716, 0.013423867523670197, 0.011514969170093536, -0.006260366644710302, 0.011952852830290794, -0.007560333237051964, 0.01196653675287962, 0.021565765142440796, 0.010468154214322567, 0.006763248238712549, 0.007813484407961369, -0.005654855631291866, -0.008846616372466087, -0.0023245459888130426, -0.01958160474896431, 0.004036739002913237, -0.038479018956422806, -0.004775667563080788, -0.019937384873628616, 0.007717697881162167, -0.0043069953098893166, -0.00112806330434978, 0.011549178510904312, -0.01689956896007061, -0.0325128547847271, 0.007307182066142559, -0.007998216897249222, 0.006051687523722649, 0.0023245459888130426, 0.003769903676584363, 0.00112207664642483, 0.004204366356134415, 0.007970849052071571, 0.006534043699502945, -0.007259288337081671, -0.010967615060508251, -0.012301791459321976, -0.0010724726598709822, 0.002389544155448675, -0.02509620040655136, -0.008292419835925102, 0.006910349708050489, -0.008846616372466087, 0.017679547891020775, 0.0061064232140779495, 0.007402969058603048, 0.031171835958957672, 0.022195221856236458, -0.010529731400310993, -0.026273014023900032, 0.010714462958276272, -0.014162796549499035, -0.0037049055099487305, -0.0063390485011041164, 0.008422416634857655, -0.01557223405689001, -0.01900688372552395, -0.029748713597655296, -0.03169182315468788, -0.01952686905860901, -0.018883727490901947, -0.01793954148888588, 0.0031096574384719133, -0.013109139166772366, -0.0005507753812707961, -0.010009744204580784, -0.037794824689626694, -0.03308757767081261, 0.009852379560470581, -0.022509951144456863, -0.03095289319753647, -0.0018627155805006623, -0.024179382249712944, 0.030925525352358818, -0.012000746093690395, 0.02673826552927494, -0.021552082151174545, 0.008552413433790207, 0.0061269486322999, 0.006479308009147644, 0.003875953610986471, -0.012842304073274136, -0.020826837047934532, -0.035687509924173355, -0.028435062617063522, 0.023577293381094933, 0.017693232744932175, 0.007786117028445005, -0.015298556536436081, 0.0009758303640410304, 0.03440122678875923, -0.013813857920467854, -0.021634183824062347, -0.013827541843056679, -0.037302207201719284, -0.027641398832201958, 0.0022048121318221092, -0.012623362243175507, -0.0016223927959799767, -0.030651848763227463, 0.00706087239086628, 0.06272681802511215, -0.0010681963758543134, -0.0014795674942433834, -0.012418104335665703, 0.011501285247504711, -0.02454884722828865, 0.004122263286262751, 0.015941698104143143, 0.014669098891317844, -0.028435062617063522, 0.022427847608923912, -0.006260366644710302, -0.00032755741267465055, -0.002410070039331913, -0.004700406454503536, 0.010160266421735287, -0.014340686611831188, -0.0245625302195549, -0.018692154437303543, 0.015640653669834137, -0.00028030533576384187, -0.01740587130188942, 0.018213219940662384, -0.027545612305402756, -0.00532302213832736, -0.0037870085798203945, -0.007539807353168726, -0.03650854155421257, -0.014778570272028446, -0.01855531521141529, 0.01747428998351097, 0.024302536621689796, -0.016707994043827057, -0.0076013850048184395, 0.014545944519340992, -0.013827541843056679, 0.04564936086535454, 0.011282343417406082, 0.03056974522769451, -0.0036056973040103912, -0.02294783480465412, -0.009455547668039799, 0.010844459757208824, -0.01061867643147707, -0.013807015493512154, 0.027039309963583946, 0.017050091177225113, -0.005357231479138136, -0.0044096242636442184, -0.03418228402733803, 0.0047927722334861755, -0.03541383147239685, -0.027148781344294548, 0.009455547668039799, 0.008005058392882347, -0.0038930585142225027, -0.0041906824335455894, 0.0037117472384124994, -0.022496268153190613, 0.005613803863525391, -0.004618302918970585, 0.008196632377803326, -0.025958284735679626, -0.0025178303476423025, -0.03306020796298981, -0.0010613545309752226, 0.017652180045843124, 0.026259329169988632, 0.01736482046544552, -0.007628752384334803, -0.02786034159362316, 0.00034872465766966343, -0.01066656969487667, -0.009045031853020191, -0.013410183601081371, 0.01575012505054474, 0.004673038609325886, 0.004895401187241077, -0.008107687346637249, -0.0014932513004168868, -0.018336374312639236, 0.018746890127658844, -0.02229101024568081, 0.027600347995758057, 0.014819622039794922, 0.010570783168077469, 0.0013461498310789466, 0.01572275720536709, 0.012000746093690395, 0.01956792175769806, -0.0034226756542921066, 0.021976280957460403, -0.020033173263072968, -0.0022475742734968662, -0.007457704283297062, 0.014586996287107468, 0.0015813411446288228, -0.023632029071450233, -0.014135428704321384, -0.0007765591144561768, -0.003114788793027401, -0.006664040498435497, -0.0025828287471085787, -0.042228396981954575, -0.016516420990228653, -0.002627301262691617, -0.03396334499120712, 0.017775336280465126, -0.0019054776057600975, 0.030651848763227463, -0.0043548885732889175, 0.022564686834812164, -0.03686432167887688, 0.018911095336079597, -0.01689956896007061, 0.006393784191459417, -0.0299129206687212, 0.0190342515707016, 0.008319787681102753, -0.012028113938868046, 0.022031016647815704, -0.013745438307523727, -0.024097278714179993, 0.014094376936554909, 0.025917232036590576, -0.00169765402097255, 0.005333284847438335, 0.009209238924086094, 0.004269364755600691, -0.00848399382084608, -0.0011195108527317643, -0.018610050901770592, -0.023166777566075325, 0.017118509858846664, 0.02333098277449608, -0.006044845562428236, 0.02612248994410038, -0.02349518984556198, 0.0244667436927557, 0.0015856174286454916, 0.015928015112876892, 0.01694061979651451, -0.03544120118021965, 0.021976280957460403, -0.006113265175372362, 0.010454470291733742, -0.002606775611639023, 0.001193916890770197, -0.009797644801437855, -0.027614030987024307, -0.009729225188493729, 0.004734615795314312, 0.0070266625843942165, -0.022633105516433716, 0.02460358291864395, 0.03607065975666046, -0.0011477338848635554, -0.004060685634613037, -0.01253441721200943, -0.0012828619219362736, 0.010057637467980385, -0.011624439619481564, -0.03754851594567299, -0.0039033214561641216, -0.00016399251762777567, 0.03169182315468788, -0.017802704125642776, -0.019773179665207863, -0.008586622774600983, -0.02676563151180744, -0.021073145791888237, -0.010516047477722168, -0.004604619462043047, 0.018062695860862732, 0.02884557843208313, 0.0190753024071455, 0.00015650916611775756, 0.013704386539757252, -0.010406576097011566, 0.011508126743137836, 0.0009638569899834692, 0.007286656182259321, 0.004604619462043047, 0.002911241492256522, 0.0024254643358290195, -0.004371993709355593, -0.03883479908108711, -0.0022783628664910793, 0.018664786592125893, -0.01859636791050434, 0.0012443760642781854, 0.007170343305915594, -0.00529565429314971, 0.026546690613031387, -0.015175402164459229, 0.004590935539454222, 0.0272172000259161, 0.0244667436927557, 0.008764512836933136, -0.02067631483078003, -0.017597446218132973, 0.0015599601902067661, -0.012247055768966675, -0.010659728199243546, -0.02550671622157097, 0.002960845362395048, -0.014669098891317844, 0.019321611151099205, -0.019348978996276855, -0.0218804944306612, 0.0002794500906020403, -0.03560540825128555, 0.046552494168281555, -0.0061030020006000996, 0.007779275067150593, 0.02723088301718235, -0.003520173253491521, -0.03169182315468788, -0.012712307274341583, 0.005131447687745094, 0.006626409944146872, -0.01590064726769924, 0.009072399698197842, -0.027477193623781204, 0.006410888861864805, -0.005760905332863331, 0.0036604327615350485, -0.002233890350908041, 0.0022184960544109344, -0.004450676031410694, 0.0016600233502686024, -0.02564355544745922, 0.03103499673306942, 0.009982376359403133, -0.018924780189990997, -0.009982376359403133, 0.000116205912490841, 0.0038177971728146076, 0.0045259371399879456, -0.01967739313840866, -0.018883727490901947, 0.009989218786358833, 0.008032426238059998, 0.009045031853020191, 0.003728852141648531, -0.0010613545309752226, -0.008121371269226074, 0.027025625109672546, -0.03746641054749489, 0.016612207517027855, 0.20000331103801727, -0.009770276956260204, -0.004289890639483929, 0.03628959879279137, -0.012999667786061764, 0.022551003843545914, 0.013991747982800007, -0.004998030140995979, -0.006910349708050489, -0.006113265175372362, -0.015202770009636879, 0.021511029452085495, -0.013745438307523727, 0.0015796307707205415, 0.004026476293802261, -0.004389098379760981, -0.02838032878935337, 0.009852379560470581, -0.006684566382318735, -0.048851385712623596, 0.01465541496872902, -0.017269032076001167, -0.004460938740521669, 0.002129550790414214, 0.014395422302186489, 0.0021569186355918646, -0.015093298628926277, -0.002565723843872547, 0.04428097605705261, -0.0049638208001852036, -0.026341432705521584, 0.02168891951441765, 0.0006247537676244974, 0.0028821632731705904, -0.006038003601133823, 0.001502659055404365, 0.014272266998887062, 0.0043069953098893166, 0.019855283200740814, -0.01956792175769806, -0.0034449121449142694, -0.010406576097011566, 0.01557223405689001, 0.008046110160648823, -0.01557223405689001, 0.027928760275244713, -0.017761651426553726, -0.01112497877329588, -0.023577293381094933, 0.025356194004416466, -0.02999502420425415, 0.009612912312150002, 0.051423948258161545, 0.004546463023871183, 0.008333471603691578, 0.002201391151174903, -0.002555461134761572, 0.015558550134301186, -0.0007205408182926476, -0.004809877369552851, -0.010974456556141376, 0.030843423679471016, -0.002475068438798189, 0.026478271931409836, -0.025342511013150215, 0.012294949032366276, -0.00013780075823888183, -0.003995687235146761, 0.028024546802043915, -0.013464919291436672, -0.008764512836933136, -0.018322689458727837, -0.012130742892622948, 0.0051451316103339195, 0.004135947208851576, -0.012076007202267647, 0.02500041387975216, -0.019732126966118813, 0.014942776411771774, -0.0021877072285860777, 0.001982449321076274, -0.008224000222980976, -0.006404046900570393, -0.0011272081173956394, -0.013451235368847847, -0.025766709819436073, 0.004700406454503536, -0.02338571846485138, -0.021661551669239998, 0.005908007267862558, -0.02011527493596077, -0.02074473351240158, 0.005825903732329607, -0.005350389517843723, 0.0027658503968268633, -0.018350057303905487, 0.01624274253845215, 0.009489757940173149, 0.0036296441685408354, 0.002981371246278286, -0.005268286447972059, -0.012561784125864506, 0.03979266807436943, 0.012329159304499626, -0.029009785503149033, 0.011316552758216858, 0.02017001062631607, 0.007738223299384117, 0.011603914201259613, -0.011268659494817257, 0.020963674411177635, -0.0008291564881801605, -0.01031763106584549, -0.02282468043267727, 0.006917191669344902, 0.028654005378484726, -0.014942776411771774, -0.032841265201568604, -0.010707621462643147, 0.004536199849098921, -0.004707248415797949, -0.02504146657884121, -0.01689956896007061, -0.012643887661397457, -0.004098316188901663, -0.008155581541359425, -0.013136507011950016, 0.043213631957769394, 0.008867141790688038, -0.020306849852204323, 0.01635221391916275, -0.03555067256093025, 0.006147474516183138, 0.006489571183919907, -0.030898157507181168, 0.03360756114125252, -0.00929818395525217, -0.03475700691342354, 0.03694642335176468, -0.0023433612659573555, 0.008073478005826473, -0.003217417746782303, 0.014586996287107468, 0.002813743893057108, 0.004430150147527456, -0.008791880682110786, 0.016653258353471756, -0.012609678320586681, 0.01059130858629942, 0.0030395276844501495, -0.0382600761950016, 0.004638828802853823, 0.009332393296062946, -0.004741457756608725, 0.012322316877543926, 4.4232012442080304e-05, -0.017734283581376076, -0.02238679677248001, -0.0024117804132401943, 0.01960897259414196, -0.019923701882362366, 0.021524714305996895, 0.03308757767081261, -0.003845165017992258, -0.01804901286959648, 0.005028818733990192, -0.17526289820671082, 0.007861378602683544, 0.030350804328918457, 0.012144426815211773, 0.020498424768447876, 0.030131861567497253, 0.021620500832796097, 0.009633438661694527, -0.0024169120006263256, -0.015996433794498444, 0.02999502420425415, 0.012999667786061764, -0.03311494365334511, -0.0008308669202961028, 0.0004968952271156013, 0.006739301607012749, -0.0008783328230492771, 0.02119630016386509, 0.030405540019273758, 0.00558985723182559, 6.654846220044419e-05, -0.012041797861456871, 0.0011272081173956394, -0.003701484529301524, -0.01956792175769806, 0.013239135965704918, -0.0025845393538475037, 0.011843381449580193, 0.020539475604891777, -0.02498673088848591, -0.008032426238059998, 0.025917232036590576, 0.01331439707428217, -0.02287941612303257, 0.02341308631002903, 0.002950582653284073, -0.0026307222433388233, -0.022592054679989815, -0.0031318936962634325, 0.024945678189396858, 0.017063774168491364, -0.007560333237051964, 0.010474995709955692, -0.010433943942189217, -0.000641858612652868, 0.021442610770463943, -0.010495521128177643, -0.0038177971728146076, 0.004652512725442648, -0.012185478582978249, 0.009736067615449429, 0.002555461134761572, 0.0095171257853508, 0.003095973515883088, 0.03046027570962906, 0.017843754962086678, 0.009968692436814308, 0.008764512836933136, 0.00373911508359015, -0.026792999356985092, -0.0021158671006560326, -0.0005075857043266296, 0.013670177198946476, -0.005966163240373135, 0.005901165306568146, -0.0011785225942730904, -0.00788874551653862, 0.01557223405689001, -0.022455215454101562, 0.019773179665207863, -0.009428180754184723, -0.007375601213425398, 0.03100762888789177, -0.012363368645310402, -0.01031763106584549, -0.010892353020608425, -0.025807762518525124, 0.025753026828169823, -0.008990297093987465, -0.01572275720536709, -0.048659808933734894, 0.042173661291599274, -0.012356526218354702, -0.007690330035984516, -0.0005187038332223892, 0.012322316877543926, -0.013615441508591175, -0.01689956896007061, -0.030350804328918457, -0.000709422689396888, 0.013820699416100979, -0.03935478627681732, 0.005774589255452156, -0.008771355263888836, 0.02235942892730236, 0.025260407477617264, 0.012370210140943527, -0.018637418746948242, 0.01306124497205019, -0.00333373062312603, -0.005220393184572458, -0.008819248527288437, -0.014846988953649998, 0.03319704532623291, 0.020265799015760422, 0.012431788258254528, -0.0163795817643404, 0.0034021500032395124, 0.022455215454101562, 0.00845662597566843, 0.002480199793353677, 0.01847321167588234, 0.007485072128474712, 0.007656120229512453, -0.014532260596752167, 0.029584508389234543, -0.024206750094890594, -0.010522888973355293, 0.019951069727540016, -0.016201691702008247, 0.07985901087522507, -0.011521810665726662, -0.008080320432782173, -0.00477908831089735, -0.006462203338742256, -0.03752114623785019, -0.11374025046825409, -0.015175402164459229, 0.007389285136014223, 0.027094045653939247, -0.010386050678789616, 0.004269364755600691, -0.007279814220964909, 0.007902429439127445, -0.0013435841538012028, 0.0010322763118892908, -0.014190164394676685, -0.021579448133707047, 0.008928718976676464, -0.002023500856012106, 0.018199535086750984, -0.03100762888789177, -0.012431788258254528, -0.013505971059203148, 0.017570078372955322, 0.02669721283018589, 0.012869670987129211, -0.03100762888789177, 0.011302868835628033, -0.01855531521141529, 0.007450862322002649, 0.0013606889406219125, -0.024193067103624344, -0.0050630285404622555, 0.04192734882235527, 0.018856361508369446, -0.00897661317139864, -0.011590230278670788, 0.008634516038000584, 0.0016035775188356638, -0.00848399382084608, -0.01862373575568199, -0.04014844819903374, -0.01120023988187313, 0.03418228402733803, -0.035085421055555344, 0.014005431905388832, -0.008340313099324703, 0.023180460557341576, -0.004888559225946665, 0.010522888973355293, 0.0022783628664910793, -0.02349518984556198, -3.257934804423712e-05, 0.0035133312921971083, -0.029584508389234543, -0.032458119094371796, 0.0021329717710614204, -0.03752114623785019, -0.0025930916890501976, 0.025219356641173363, -0.01524382084608078, 0.04102421551942825, -0.0027162465266883373, -0.010810250416398048, -0.006503255106508732, -0.010721305385231972, 0.009722383692860603, -0.00896977074444294, 0.031938131898641586, 0.020785784348845482, -0.0021329717710614204, -0.02298888750374317, -0.004529357887804508, 0.04395256191492081, 0.001982449321076274, -0.01575012505054474, -0.010488679632544518, -0.028736108914017677, 0.016160640865564346, -0.025274092331528664, 0.0007701448048464954, -0.03385387361049652, -0.02070368267595768, 0.0070813982747495174, -0.01631116308271885, -0.002150076674297452, -0.024726737290620804, 0.004016213119029999, 0.00022257654927670956, 0.0081350551918149, 0.0055830152705311775, 0.013417026028037071, -0.014477524906396866, 0.014504892751574516, -0.014340686611831188, -0.00981132872402668, 0.008224000222980976, -0.014053325168788433, -0.04099684953689575, 0.014354370534420013, 0.042803116142749786, 0.012808093801140785, 0.001787454355508089, -0.007423494476824999, 0.005795115139335394, -0.01174075249582529, 0.006164579652249813, -0.06809089332818985, 0.022044699639081955, 0.019472135230898857, 0.004467780701816082, 0.004922769032418728, -0.016461685299873352, 0.009092926047742367, -0.016023801639676094, -0.018172167241573334, -0.0029984761495143175, -0.015695389360189438, 0.03497594967484474, -0.016051169484853745, -0.010700779035687447, -0.014190164394676685, 0.003561224788427353, 0.010851302184164524, -0.023194145411252975, 0.00840873271226883, -0.01202127244323492, 0.0044096242636442184, 0.0027076939586549997, 0.01969107612967491, -0.007635594345629215, -0.03661801293492317, -0.010522888973355293, 0.005340126808732748, 0.010714462958276272, 0.0012315474450588226, -0.005996952299028635, 0.014778570272028446, -0.04187261685729027, -0.00902450643479824, 0.0109402472153306, -0.00544275576248765, 0.011056560091674328, -0.036809585988521576, 0.013916486874222755, 0.00424199691042304, 0.0433778390288353, -0.009106609970331192, -0.018883727490901947, 0.0015762097900733352, -0.02401517704129219, 0.022592054679989815, 0.016639575362205505, -0.006061950698494911, -0.0032653112430125475, 0.01471015065908432, -0.005193025339394808, 0.023139409720897675, 0.029037153348326683, 0.002752166474238038, -0.019171088933944702, -0.007396127097308636, -0.019171088933944702, 0.03232128173112869, -0.0054495977237820625, 0.013280186802148819, -0.024959363043308258, 0.004423308186233044, -0.01557223405689001, 0.011836539953947067, 0.00531960092484951, 0.028571901842951775, -0.016078537330031395, -0.012698623351752758, -0.010057637467980385, -0.02063526213169098, -0.017323767766356468, 0.0018849518382921815, 0.0007650133338756859, -0.0002696148294489831, 0.006794036831706762, 0.011658649891614914, 0.014888040721416473, 0.010262895375490189, 0.010023428127169609, -0.017830070108175278, 0.025944599881768227, -0.004454096779227257, -0.010331314988434315, -0.044937800616025925, 0.009441863745450974, 0.03486647829413414, -0.009127135388553143, -0.0027179569005966187, 0.010201318189501762, -0.011138662695884705, 0.01577749103307724, 0.028134018182754517, -0.010358682833611965, 0.002358755562454462, -0.01741955429315567, 0.005726695992052555, 0.0010861564660444856, -0.004457517527043819, -0.006947980262339115, 0.020430004224181175, 0.021579448133707047, -0.008668726310133934, 0.011816014535725117, -0.003520173253491521, -0.016010116785764694, -0.01254810020327568, -0.008709777146577835, -0.010420260019600391, -0.020949991419911385, -0.003427807241678238, 0.025438297539949417, 0.011501285247504711, 0.0032584695145487785, 0.024795155972242355, 0.010762357152998447, -0.010173950344324112, 0.008347155526280403, -0.006031161639839411, -0.020033173263072968, -0.010037112049758434, 0.025178303942084312, 0.003200313076376915, 0.02950240485370159, 0.013464919291436672, 0.015558550134301186, 0.011891275644302368, 0.03702852874994278, 0.009352918714284897, 0.026273014023900032, 0.005124606192111969, 0.010782882571220398, 0.012787568382918835, 0.01390280295163393, -0.05186183378100395, 0.005849850829690695, -0.004597777500748634, -0.020347900688648224, -0.008360839448869228, 0.013027035631239414, -0.01859636791050434, 0.04685353860259056, 0.006219314876943827, -0.025383561849594116, 0.012862829491496086, 0.010844459757208824, 0.032841265201568604, 0.02115524932742119, -0.006209052167832851, 0.003930689301341772, -0.017624812200665474, -0.005511174909770489, -0.018828993663191795, 0.024152014404535294, -0.0037459570448845625, -0.015503814443945885, 0.011911801062524319, -0.004183840472251177, 0.04510200768709183, -0.03765798732638359, -0.02022474631667137, 0.03437386080622673, -0.005035660695284605, 0.04428097605705261, 0.004950136877596378, -0.013198084197938442, 0.00927081611007452, 0.010297105647623539, -0.00034722796408459544, 0.006869298405945301, -0.02565724030137062, -0.0017395608592778444, 0.008046110160648823, -0.01751534268260002, -0.0012024693423882127, 0.03319704532623291, 0.007108765654265881, -0.0005469268071465194, -0.012404420413076878, 0.03330651670694351, -0.007656120229512453, -0.016762729734182358, 0.005309338215738535, -0.022017331793904305, -0.007519281469285488, 0.022578371688723564, 0.0003551389672793448, -0.02498673088848591, -0.010598150081932545, -0.01142602413892746], "39ea826e-14f0-4873-b261-c728416c70d6": [-0.003152555553242564, -0.023707488551735878, -0.024342389777302742, -0.014710800722241402, 0.007706622593104839, 0.026517264544963837, -0.01588604412972927, 0.01649392768740654, 0.0025362283922731876, -0.03417660668492317, -0.0023910116869956255, 0.01961440034210682, 0.02223505824804306, 0.0031491785775870085, -0.0062882257625460625, 0.02080315165221691, 0.03282575309276581, 0.006950144190341234, 0.032447513192892075, -0.005346004851162434, 0.004349750000983477, -0.003903968259692192, -0.0014926936710253358, 0.03966107591986656, -0.014156950637698174, 0.024855714291334152, 0.01869582012295723, -0.017169354483485222, 5.0525109145382885e-06, -0.0006956898141652346, -0.011171562597155571, -0.0013466326054185629, -0.019033534452319145, 0.004282207228243351, -0.028773190453648567, -0.0047516291961073875, -0.005001537036150694, -0.01900651678442955, 0.009861234575510025, -0.005177148152142763, 0.0022660577669739723, -0.0009650163701735437, -0.0009084493503905833, 0.031015608459711075, -0.014305544085800648, 0.013812482357025146, -0.006041694898158312, -0.008625202812254429, -0.02335626631975174, 0.012488645501434803, 0.018925465643405914, 0.0009000065037980676, -0.037013400346040726, 0.00703119533136487, -0.014697291888296604, -0.012495400384068489, 0.024058710783720016, 0.03166401758790016, -0.005923495162278414, 0.03509518876671791, 0.015710432082414627, 0.0038364254869520664, -0.0005741129862144589, 0.0007307276246137917, -0.04954932630062103, -0.01695321872830391, -0.004917108919471502, 0.005346004851162434, -0.012279263697564602, -0.024653086438775063, 0.04817145690321922, 0.014521680772304535, -0.006484099663794041, -0.015224125236272812, 0.0017442903481423855, -0.03379836678504944, -0.03668919578194618, -0.027138657867908478, -0.028503021225333214, 0.021600157022476196, 0.0011853744508698583, -0.011131037026643753, 0.01931721344590187, 0.010367805138230324, 0.02603095769882202, -0.01665602996945381, 0.0019232784397900105, 0.02203243039548397, -0.0271521657705307, -0.03733760491013527, 0.024220813065767288, 0.020978763699531555, 0.007976792752742767, 0.005058948416262865, -0.011671379208564758, 0.023937134072184563, -0.02920546382665634, 0.03963405638933182, 0.0022576148621737957, -0.004768515005707741, -0.015197108499705791, 0.000771675375290215, -0.020870694890618324, -0.006369276903569698, -0.011934795416891575, 0.003145801369100809, -0.005460827611386776, -0.024207305163145065, 0.01757461205124855, -0.008294244296848774, -0.01198882982134819, 0.02243768610060215, -0.010955425910651684, -0.055195897817611694, -0.006983915343880653, -0.010935163125395775, 0.019992640241980553, -0.013177581131458282, -0.029178448021411896, -0.011543047614395618, -6.744376150891185e-07, 0.042389798909425735, -0.0008788994164206088, -0.012150932103395462, 0.007922759279608727, 0.01111752912402153, 0.004218041896820068, -0.018979499116539955, 0.0017713073175400496, -0.008010564371943474, 0.05846496298909187, 0.009050722233951092, 0.009435715153813362, 0.013170827180147171, -0.006869093049317598, 0.008186175487935543, -0.03150191530585289, 0.0044949669390916824, -0.01664252206683159, -0.0311506949365139, 0.021478580310940742, 0.020776135846972466, -0.004424047190696001, -0.02161366492509842, 0.0027337907813489437, 0.03007001057267189, 0.02801671251654625, -0.011414716951549053, -0.04025544971227646, 0.015210616402328014, 0.017155846580863, -0.0022390405647456646, 0.016304807737469673, -0.012400840409100056, 0.026301128789782524, -0.011826727539300919, 0.020006148144602776, 0.009942285716533661, -0.003833048278465867, -0.007963284850120544, 0.01603463850915432, 0.029745806008577347, -0.004039053805172443, -0.005079211201518774, -0.000936310738325119, 0.03128578141331673, 0.0031897041480988264, -0.01423800177872181, -0.026057975366711617, -0.02120840921998024, 0.006997424177825451, 0.005835689604282379, -0.029313532635569572, 0.008753534406423569, -0.021194899454712868, 0.009084493853151798, 0.027030589058995247, 0.02950265258550644, -0.011016215197741985, 0.00044831467675976455, -0.03109665960073471, -0.021397527307271957, 0.027908645570278168, 0.023491352796554565, -0.02597692422568798, -0.008490117266774178, -0.009374926798045635, -0.015507804229855537, 0.010016582906246185, 0.02049245685338974, 0.0045354925096035, 0.020262811332941055, -0.004805663134902716, -0.032555583864450455, -0.6371708512306213, -0.0019638040103018284, -8.975792297860608e-05, -0.007064966484904289, -0.0037182257510721684, 0.0009810577612370253, 0.026611825451254845, -0.018047410994768143, -0.009374926798045635, -0.004353126976639032, -0.026301128789782524, 0.010003074072301388, 0.009395189583301544, -0.010347542352974415, -0.009037213400006294, -0.0039546252228319645, 0.009699132293462753, -0.030448250472545624, -0.007801182102411985, -0.008361786603927612, -0.012981707230210304, -0.005136622581630945, -0.0008848094148561358, 0.008179421536624432, -0.008665728382766247, -0.015116056427359581, 0.022356634959578514, 0.00352235184982419, 0.003903968259692192, 0.03517623990774155, -0.019290195778012276, 0.04960336163640022, 0.004680709447711706, 0.02192436158657074, 0.043416447937488556, -0.016264282166957855, -0.02350486069917679, 0.030232112854719162, 0.029583703726530075, 0.02658480778336525, -0.018736345693469048, -0.017439525574445724, 0.012819604948163033, 0.006507739424705505, 0.026854978874325752, 0.0007531011360697448, 0.02115437388420105, -0.020006148144602776, 0.009719395078718662, 0.021343493834137917, 0.012637239880859852, 0.003105275798588991, -0.0067644016817212105, 0.0063084885478019714, -0.013825991190969944, 0.00028199079679325223, 0.014346069656312466, -0.006669841706752777, 0.0071054925210773945, -0.0007708310731686652, 0.017709696665406227, 0.009611326269805431, -0.0075580282136797905, 0.0019806898199021816, -0.012231983244419098, 0.0046097892336547375, -0.010664992965757847, 0.002164743607863784, 0.01460273191332817, -0.018965991213917732, 0.0020617409609258175, 0.013913796283304691, -0.0019165241392329335, -0.04349749907851219, 0.009753166697919369, -0.008213192224502563, 0.021397527307271957, -0.006632693577557802, 0.006558396387845278, 0.008226701058447361, 0.005916740745306015, -0.018358105793595314, -0.026368670165538788, -0.02474764548242092, 0.013758448883891106, -0.008476609364151955, -0.003324789460748434, 0.03698638454079628, 0.007895741611719131, 0.007470223121345043, 0.017642153427004814, 0.021735241636633873, 0.009969302453100681, 0.014926937408745289, 0.026598315685987473, 0.018250038847327232, -0.005204165354371071, -0.003029290121048689, 0.007564782630652189, -0.011887515895068645, -0.0012174572329968214, -0.008827831596136093, 0.01634533330798149, -0.01560236420482397, 0.019790012389421463, -0.009712640196084976, -0.03279873728752136, -0.013765202835202217, 0.047712165862321854, -0.020992271602153778, 0.0028992705047130585, -0.020262811332941055, -0.014994479715824127, 0.0022745004389435053, 0.007267594803124666, -0.013164072297513485, -0.0029769446700811386, 0.0009025393519550562, 0.02207295596599579, -0.008746779523789883, 0.023748014122247696, -0.013603100553154945, 0.015804992988705635, 0.0034683176781982183, 0.03471694886684418, 0.030745437368750572, -0.0067238761112093925, -0.007949776016175747, -0.019898079335689545, -0.009624835103750229, 0.002071872353553772, 0.007159526459872723, 0.0006011300720274448, 0.0011448487639427185, 0.015197108499705791, -0.018736345693469048, 0.005984283518046141, 0.019708961248397827, 0.026449723169207573, -0.033176977187395096, -0.016615504398941994, 0.0014420367078855634, 0.012103652581572533, 0.022424176335334778, -0.009672114625573158, -0.04584798589348793, -0.013913796283304691, -0.0019891324918717146, -0.03471694886684418, 0.004961011465638876, -0.008895373903214931, -0.006977161392569542, -0.003383889328688383, 0.008922390639781952, 0.017912324517965317, -0.0021411036141216755, -0.006291602738201618, 0.006021432112902403, -0.010502890683710575, -0.02150559611618519, 0.012461628764867783, 0.018358105793595314, -0.010131405666470528, -0.0033079038839787245, 0.025747278705239296, -0.015116056427359581, -0.03052930161356926, 0.008767043240368366, -0.005254822317510843, -0.025598684325814247, 0.016007620841264725, -0.006507739424705505, -0.016331825405359268, 0.024653086438775063, -0.01477834302932024, -0.004386898595839739, -0.0049306172877550125, -0.02361292950809002, -0.015197108499705791, 0.002578442683443427, -0.013805728405714035, 0.03042123280465603, -0.0054304334335029125, -0.008807568810880184, 0.03128578141331673, 0.004876583348959684, 0.007368908729404211, 2.1410509361885488e-05, 0.01720988005399704, 0.027111640200018883, -0.00600454630330205, 0.0220189206302166, 0.0222890917211771, -0.004640183877199888, 0.0026544281281530857, 0.006024809088557959, 0.0115025220438838, 0.02719269134104252, 0.0003805609012488276, 0.013454506173729897, 0.009678869508206844, -0.0034092178102582693, 0.016588488593697548, 0.0008341523935087025, -0.007449959870427847, -0.036662179976701736, 0.01546727865934372, -0.007652588188648224, 0.030448250472545624, -0.03269066661596298, -0.0071054925210773945, -0.03282575309276581, -0.004255190491676331, -0.00788898766040802, 0.02524746209383011, 0.01529166754335165, 0.028503021225333214, 0.003061373019590974, 0.001589786377735436, 0.002982010366395116, 0.013468015007674694, -0.008746779523789883, -0.011894269846379757, -0.006710367277264595, -0.011867253109812737, -0.014427121728658676, 0.011738921515643597, 0.02454501762986183, 0.009543783962726593, -0.01385976281017065, 0.02381555736064911, -0.006865715608000755, 0.0012841556454077363, 0.018223021179437637, 0.013873270712792873, -0.006024809088557959, 0.0002100155979860574, -0.010043599642813206, 0.014886411838233471, -0.023072587326169014, 0.007970038801431656, 0.030961574986577034, 0.014197476208209991, -0.025220444425940514, -0.013825991190969944, 0.006149763241410255, 0.0030124045442789793, 0.011279631406068802, 0.0069433897733688354, 0.025058342143893242, -0.012245492078363895, -0.014156950637698174, -0.013670642860233784, -0.009813955053687096, -0.002340354723855853, -0.03104262612760067, 0.0026932652108371258, 0.010327279567718506, 0.0025176543276757, 0.0247341375797987, 0.0064266882836818695, -0.003370380960404873, -0.002789513673633337, 0.010003074072301388, 0.03766180947422981, 0.003345052246004343, -0.0046334294602274895, 0.010887883603572845, -0.02346433512866497, -0.03323100879788399, -0.03382538631558418, -0.02719269134104252, -0.0022002034820616245, -0.00018911957158707082, 0.008996687829494476, -0.00821994710713625, -0.012252246029675007, 0.008348277769982815, 0.03682428225874901, -0.01165787037461996, -0.030853506177663803, -0.023937134072184563, 0.0230050440877676, 0.007314874790608883, 0.010921655222773552, -0.015102548524737358, -0.010394821874797344, -0.005349381826817989, -0.01568341627717018, 0.0277195256203413, -0.008267226628959179, 0.011711904779076576, 0.021384019404649734, -0.01437308732420206, -0.003299460979178548, 0.012421103194355965, 0.03304189071059227, -0.01838512346148491, 0.031880155205726624, -0.005643192678689957, 0.021046306937932968, 0.014008356258273125, -0.015156581997871399, 0.007882233709096909, 0.009354664012789726, -0.010469119064509869, -0.009516767226159573, -0.01239408552646637, 0.003947870805859566, -0.02817881479859352, 0.0037891454994678497, -0.02555815875530243, -0.013636871241033077, -0.01032052468508482, -0.0046097892336547375, -0.006811681669205427, -0.012968199327588081, 0.00975992064923048, 0.004717857576906681, -0.006078843027353287, -0.023423809558153152, -0.010219210758805275, -0.017547594383358955, 0.010354296304285526, 0.10558275133371353, 0.02546359971165657, -0.005849197972565889, 0.012576451525092125, -0.014386595226824284, 0.02212698943912983, -0.017750222235918045, -0.014021865092217922, 0.019641418009996414, 0.013528803363442421, 0.01283311378210783, -0.015143074095249176, 0.026287619024515152, -0.008179421536624432, 0.010698763653635979, -0.008611694909632206, -0.004552378319203854, -0.005508107598870993, 0.02007369138300419, 0.007112246472388506, 0.02898932807147503, -0.004684086423367262, 0.004143744707107544, 0.03223137930035591, -0.017344966530799866, -0.016629014164209366, 0.020019657909870148, -0.001899638562463224, 0.014156950637698174, -0.011259368620812893, -0.013164072297513485, 0.020019657909870148, 0.028394952416419983, 0.029421601444482803, 0.003887082450091839, 0.014183967374265194, -1.0599718734738417e-05, 0.013001970015466213, -0.00316437566652894, 0.027030589058995247, 0.025990432128310204, 0.032906804233789444, 0.008395558223128319, -0.014683783985674381, -0.006149763241410255, -0.004214664455503225, -0.0222890917211771, -0.0057039810344576836, -0.017250405624508858, 0.00042762974044308066, 0.023140130564570427, 0.004920485895127058, -0.012853376567363739, -0.011461996473371983, 0.030394216999411583, -0.010232719592750072, 0.01906055025756359, -0.011644361540675163, -0.01629129983484745, 0.012103652581572533, -0.011549802497029305, 0.006858961656689644, 0.007132509257644415, -0.016331825405359268, -0.018331089988350868, -0.021451562643051147, -0.028205832466483116, -0.0024180286563932896, -0.022248566150665283, 0.007091983687132597, -0.022572770714759827, -0.007098738104104996, -0.025801312178373337, 0.007666096556931734, 0.019398264586925507, 0.0011077002855017781, 0.0230050440877676, -0.005987660493701696, -0.0036912087816745043, 0.0018692442681640387, -0.0240181852132082, -0.04606412351131439, 0.017020761966705322, -0.00645370502024889, -0.0004993938491679728, 0.009057476185262203, 0.0014344381634145975, 0.007929513230919838, -0.02597692422568798, 0.012515663169324398, -0.003961379639804363, 0.004758383613079786, 0.009989566169679165, 0.0008282423950731754, 0.002600393956527114, 0.005970774684101343, -0.0013094841269776225, -0.008409066125750542, 0.008584677241742611, -0.02408572845160961, 0.002124218037351966, -0.031691037118434906, -0.012738553807139397, -0.00659554498270154, 0.016453402116894722, -0.004089710768312216, 0.005214296746999025, 0.005754638463258743, -0.015507804229855537, -0.03868845850229263, 0.008767043240368366, -0.0074432059191167355, 0.008726516738533974, -0.001872621476650238, 0.024977291002869606, 0.016588488593697548, 0.014832377433776855, 0.0003176617610733956, 0.011171562597155571, -0.008618448860943317, -0.007287857588380575, -0.018101444467902184, 0.009496504440903664, 0.018047410994768143, -0.019222652539610863, -0.007159526459872723, 0.00893589947372675, -0.028611088171601295, 0.021856818348169327, 0.0080713527277112, 0.03233944624662399, 0.01560236420482397, 0.015399736352264881, -0.022829433903098106, -0.028881259262561798, 0.016791116446256638, -0.017101813107728958, 0.004005282185971737, -0.013251878321170807, 0.008030827157199383, -0.005626307334750891, -0.0010975688928738236, -0.02847600355744362, -0.024666594341397285, -0.0018253414891660213, -0.03350118175148964, -0.011955058202147484, 0.0046334294602274895, -0.009678869508206844, 0.00287563051097095, -0.0011558245168998837, -0.02309960499405861, -0.04298417642712593, -0.0021191523410379887, -0.010131405666470528, -0.03293382003903389, 0.012461628764867783, -0.026193059980869293, 0.029313532635569572, -0.0027067738119512796, 0.033528197556734085, -0.002355551812797785, 0.0019435412250459194, 0.01065823808312416, 0.0034919576719403267, 0.025679735466837883, -0.006781287491321564, -0.016264282166957855, -0.029637737199664116, -0.014980971813201904, 0.026881996542215347, 0.025287987664341927, 0.03052930161356926, -0.017074795439839363, -0.010550170205533504, 0.04425397887825966, -0.007672850973904133, -0.017074795439839363, -0.008084861561655998, -0.03636499121785164, -0.02126244269311428, -0.01334643829613924, 0.005984283518046141, 0.009665360674262047, -0.014400104060769081, -0.001629467704333365, 0.04174138978123665, 0.004390275571495295, 0.013137055560946465, -0.012887147255241871, 0.031015608459711075, -0.014994479715824127, -0.0055688959546387196, 0.006983915343880653, 0.016358843073248863, -0.018776871263980865, 0.007254086434841156, -0.0016066720709204674, 0.004187647718936205, -0.007706622593104839, 0.002085380954667926, 0.012313034385442734, -0.011137791909277439, -0.02212698943912983, -0.03841828927397728, 0.016629014164209366, -0.0017763731302693486, -0.03304189071059227, 0.02012772485613823, -0.021991904824972153, -0.007997055537998676, 0.0006230814033187926, -0.009705886244773865, -0.03812110051512718, -0.021181391552090645, -0.001214080024510622, -0.003887082450091839, 0.028611088171601295, 0.001985755516216159, -0.016939708963036537, -0.0014901608228683472, -0.02065455913543701, 0.05695200711488724, 0.01638585887849331, 0.023680470883846283, 0.0037688827142119408, -0.02649024873971939, 0.013069513253867626, 0.01783127337694168, -0.019708961248397827, -0.002537917112931609, 0.009739657863974571, 0.006389539688825607, -0.0029904532711952925, 0.011941549368202686, -0.025531141087412834, -0.017709696665406227, -0.0528724268078804, -0.035770613700151443, 0.013413980603218079, 0.0009464421309530735, 0.001510423724539578, 0.004207910504192114, -0.0009675492183305323, -0.019952114671468735, 0.006190288811922073, -0.013407226651906967, 0.011637607589364052, -0.01475132629275322, 0.0008290866971947253, -0.02089771255850792, -0.007321628741919994, 0.015710432082414627, 0.01981702819466591, 0.01352204941213131, -0.013677396811544895, -0.0227348729968071, -0.006963652558624744, -0.020505964756011963, -0.007409434299916029, -0.0032032127492129803, 0.008773797191679478, 0.003061373019590974, -0.0038229168858379126, -0.015332193113863468, -0.004572641104459763, -0.008368540555238724, 0.010367805138230324, -0.0237209964543581, 0.025882363319396973, 0.012123915366828442, 0.014305544085800648, -0.0005593380192294717, 0.021991904824972153, 0.02181629277765751, 0.02355889417231083, -0.004562509711831808, -0.0008907194132916629, -0.016277791932225227, 0.0028925163205713034, -0.009712640196084976, 0.0019030156545341015, 0.0010325590847060084, -0.015750957652926445, -0.017817765474319458, -0.012123915366828442, -0.005572272930294275, -0.004829303361475468, 0.008118633180856705, -0.042443834245204926, -0.01385976281017065, 0.007301365956664085, -0.02546359971165657, 0.020965255796909332, 0.005781655199825764, 0.0260174497961998, -0.013670642860233784, 0.02284294180572033, -0.03590570017695427, 0.019276687875390053, -0.01920914463698864, 0.003647306002676487, -0.030232112854719162, 0.011691641993820667, 0.0002100155979860574, -0.0031576212495565414, 0.014427121728658676, 0.0027067738119512796, -0.023113112896680832, 0.02080315165221691, 0.020006148144602776, 0.006831944454461336, 0.0034615634940564632, -0.003995150793343782, 0.0080713527277112, -0.026409197598695755, 0.010908146388828754, -0.029988959431648254, -0.014643257483839989, -0.004923862870782614, 0.021492088213562965, -0.0013972896849736571, 0.013684151694178581, -0.012779079377651215, 0.019438790157437325, -0.002927976194769144, 0.016534453257918358, 0.013224861584603786, -0.05076509341597557, 0.027692507952451706, -0.010671746917068958, 0.009638343937695026, 0.008105124346911907, -0.007632325403392315, -0.01188076101243496, -0.013582837767899036, -0.007726885378360748, 0.006983915343880653, 0.01027324516326189, -0.028611088171601295, 0.009712640196084976, 0.03333907946944237, -0.020465439185500145, 0.0006598077598027885, 0.0006598077598027885, -0.006122746039181948, -0.002029658295214176, -0.01598060317337513, -0.038904596120119095, -0.008949408307671547, -0.017399000003933907, 0.019506333395838737, -0.0010722404113039374, -0.013272141106426716, -0.012826358899474144, -0.019533349201083183, -0.012643993832170963, -0.01288039330393076, 0.009455977939069271, 0.005072456784546375, 0.033582232892513275, 0.009016950614750385, 0.020060183480381966, 0.013272141106426716, -0.004778646398335695, 0.005670209880918264, 0.003964756615459919, -0.0032960837706923485, 0.001306107034906745, -0.004964388441294432, 0.0044510639272630215, -0.006024809088557959, -0.036851298063993454, -0.0188579224050045, 0.02350486069917679, -0.014764835126698017, 0.005234559532254934, 0.007321628741919994, -0.00608222046867013, 0.02326170727610588, -0.007922759279608727, 0.022761890664696693, 0.006831944454461336, 0.009766674600541592, 0.01720988005399704, -0.021735241636633873, -0.017453033477067947, -0.018722837790846825, -0.01529166754335165, -0.03852635622024536, -0.033528197556734085, -0.006912995595484972, -0.01098919752985239, 0.00837529543787241, -0.016331825405359268, -0.015656398609280586, -0.02397765964269638, -0.027314268052577972, 0.04949529096484184, -0.011928041465580463, -0.0027743165846914053, 0.04160630330443382, 0.010725781321525574, -0.02105981484055519, -0.0019249670440331101, 0.027530405670404434, 0.0009937220020219684, -0.016737081110477448, 0.014481155201792717, -0.01691269315779209, 0.006838698405772448, -0.010158422403037548, -0.0004677332181017846, -0.010489381849765778, 0.023342758417129517, -0.006619184743613005, -0.020100709050893784, -0.02807074785232544, 0.03355521336197853, 0.01239408552646637, -0.015737449750304222, -0.012556188739836216, 0.0022322863806039095, -0.0037688827142119408, -0.007037949748337269, -0.013927305117249489, 0.0022052691783756018, 0.008989933878183365, 0.007335137575864792, 0.009570800699293613, 0.00226774625480175, -0.0025159656070172787, 0.003025913145393133, 0.026341654360294342, -0.03909371793270111, -0.000996254850178957, 0.2040330022573471, -0.009510012343525887, -0.004694217815995216, 0.04460519924759865, -0.008591432124376297, -0.00016801246965769678, 0.017790747806429863, 0.00012748685549013317, -0.0035392376594245434, -0.014494664035737514, -0.0222890917211771, 0.01475132629275322, -0.011401208117604256, 0.002710151020437479, -0.005241313949227333, -0.0011819972423836589, -0.03042123280465603, 0.00025729546905495226, -0.0007108869613148272, -0.061652980744838715, 0.0009650163701735437, -0.02408572845160961, -0.02361292950809002, -0.005099473986774683, 0.015197108499705791, 0.011002706363797188, -0.022275583818554878, -0.01508903969079256, 0.03042123280465603, -0.012920918874442577, -0.02807074785232544, 0.002201892202720046, -0.009388435631990433, 0.002281254855915904, -0.005957266315817833, 0.0031711298506706953, 0.013001970015466213, -0.006490853615105152, 0.020830169320106506, -0.028935294598340988, 0.0036202888004481792, -0.006571904756128788, 0.019425280392169952, -0.013103283941745758, -0.0168586578220129, 0.020222285762429237, -0.011664624325931072, -0.03379836678504944, -0.009888251312077045, 0.013339683413505554, -0.021991904824972153, 0.007213560864329338, 0.04560483247041702, 0.020060183480381966, -0.004755006171762943, -0.009212824515998363, -0.011792955920100212, 0.012643993832170963, -0.007051458116620779, 0.030042994767427444, -0.01457571517676115, 0.030097028240561485, -0.016777606680989265, 0.021654190495610237, -0.028719156980514526, 0.0011169874342158437, -0.014683783985674381, -0.006970406975597143, 0.01437308732420206, -0.02115437388420105, -0.01426501851528883, -0.019533349201083183, -0.0164398942142725, 0.008854848332703114, 0.008442837744951248, -0.002558179898187518, 0.01956036686897278, -0.001701231813058257, 0.013697660528123379, 0.007308120373636484, 0.01529166754335165, -0.0009092936525121331, -0.004944125656038523, -0.00996254850178957, -0.0044747041538357735, -0.023086095228791237, -0.00037929447717033327, -0.015426753088831902, -0.011752430349588394, 0.009462732821702957, -0.021492088213562965, -0.03131279721856117, 0.005801917985081673, 0.003218409838154912, -0.009010196663439274, -0.0064266882836818695, 0.016980234533548355, 0.014683783985674381, -0.015696924179792404, 0.0034446779172867537, -0.004704349208623171, -0.014940446242690086, 0.04322732985019684, 0.011556556448340416, -0.02418028749525547, 0.004086333326995373, 0.021046306937932968, -0.004998160060495138, 0.005852574948221445, -0.031528934836387634, 0.004917108919471502, -0.010408330708742142, -0.0017932587070390582, -0.01592656970024109, 0.013798974454402924, 0.03128578141331673, -0.008692746050655842, -0.029124412685632706, -0.003887082450091839, 0.019330721348524094, -0.006480722222477198, -0.038850560784339905, -0.006335505284368992, -0.004326110240072012, -0.010941918008029461, -0.00421128747984767, -0.004630052484571934, 0.034906066954135895, 0.004579395055770874, -0.024558527395129204, 0.023910116404294968, -0.022991536185145378, -0.017507068812847137, 0.01506202295422554, -0.014454138465225697, 0.025571666657924652, -0.009550537914037704, -0.039823178201913834, 0.030367199331521988, 0.004143744707107544, 0.003218409838154912, 0.006646201945841312, 0.018817396834492683, 0.020722100511193275, -0.0032893295865505934, -0.025017816573381424, 0.014886411838233471, -0.024261338636279106, 0.0010232719359919429, 0.006210551597177982, -0.0368783138692379, 0.00033792457543313503, 0.011360682547092438, -0.007909250445663929, -0.005690472666174173, 0.002407897263765335, -0.016615504398941994, -0.02653077431023121, -0.005031931214034557, 0.014710800722241402, -0.025477107614278793, 0.01946580596268177, 0.028827225789427757, -0.011732167564332485, -0.025139393284916878, -0.00980720017105341, -0.1720447689294815, 0.011090511456131935, 0.016926201060414314, -0.007456714287400246, 0.018006885424256325, 0.020168250426650047, 0.02566622756421566, 0.007571537047624588, -0.014048881828784943, -0.022721365094184875, 0.028367934748530388, 0.008192929439246655, -0.02423432096838951, -0.010198947973549366, -0.01252241712063551, 0.013616608455777168, -0.02238365076482296, 0.025328513234853745, 0.04214664548635483, 0.014467647299170494, 0.017736714333295822, -0.015035005286335945, 0.010097634047269821, -0.0027793822810053825, -0.003765505738556385, 0.01977650262415409, -0.0023842575028538704, 0.011097266338765621, 0.011826727539300919, -0.022721365094184875, -0.011482259258627892, 0.017155846580863, 0.018060918897390366, -0.014183967374265194, 0.032906804233789444, 0.00386681966483593, -0.010516398586332798, -0.014805360697209835, -0.004515229724347591, 0.012171194888651371, 0.01229952648282051, 0.004184270277619362, 0.013846253976225853, -0.0215731393545866, 0.017736714333295822, 0.03725655376911163, -0.003920854069292545, 0.0013331241207197309, 0.0023319118190556765, -0.016318317502737045, -0.0028401706367731094, 0.004974519833922386, 0.015899552032351494, 0.01170514989644289, 0.01854722574353218, 0.02203243039548397, 0.011394454166293144, 0.010009828954935074, -0.0038769510574638844, -0.024990800768136978, -0.001788193010725081, -0.00960457231849432, 0.029340550303459167, -0.0038701968733221292, -0.01649392768740654, -0.00279795634560287, -0.009678869508206844, 0.01920914463698864, -0.030205097049474716, 0.021289460361003876, -0.011212088167667389, 0.007294612005352974, 0.017034269869327545, -0.027368303388357162, -0.00532911904156208, 0.009111510589718819, -0.024004677310585976, 0.028205832466483116, -0.008267226628959179, -0.006490853615105152, -0.0417143739759922, 0.039525989443063736, -0.006436819676309824, -0.01557534746825695, 0.012745307758450508, 0.01762864552438259, -0.009712640196084976, -0.016372350975871086, -0.019276687875390053, -0.0032960837706923485, 0.027017081156373024, -0.02223505824804306, 0.009260104969143867, -0.014967462979257107, 0.004964388441294432, 0.01879037916660309, 0.010536661371588707, -0.016561470925807953, 0.00909124780446291, -0.012265754863619804, 0.006791418883949518, 0.001292598433792591, -0.008996687829494476, 0.04076877608895302, 0.02427484653890133, 0.0120090926066041, -0.011394454166293144, -0.002541294088587165, 0.02386959083378315, 0.017101813107728958, -0.008726516738533974, 0.01077981572598219, 0.009037213400006294, -0.01298846211284399, 0.008584677241742611, 0.02704409882426262, 0.0038600654806941748, -0.006538133602589369, 0.009800446219742298, -0.008186175487935543, 0.07759305834770203, -0.021843310445547104, 0.0036709459964185953, 0.005535124335438013, -0.018560735508799553, -0.03463589772582054, -0.11282332986593246, -0.010523153468966484, 0.006102483253926039, 0.03166401758790016, -0.020046673715114594, 0.017750222235918045, -0.011225597001612186, 0.01639936864376068, 0.003569631837308407, -0.004768515005707741, -0.014454138465225697, -0.032609615474939346, -0.008436083793640137, -0.011340419761836529, 0.007335137575864792, -0.027273742482066154, 0.0005475180223584175, -0.006879224441945553, -0.003961379639804363, 0.04425397887825966, 0.012974953278899193, -0.01454869844019413, 0.02823285013437271, -0.026247093454003334, 0.02853003703057766, -0.022829433903098106, -0.03269066661596298, -0.0008983179577626288, 0.027584439143538475, 0.010664992965757847, -0.019857553765177727, -0.01675059087574482, 0.006514493841677904, -0.013940813951194286, 0.0023572403006255627, -0.02377503179013729, -0.033879417926073074, -0.003377135144546628, 0.02561219222843647, -0.021843310445547104, 0.017588119953870773, -0.013305912725627422, 0.017236897721886635, -0.008625202812254429, 0.013900288380682468, -0.015318685211241245, -0.017655663192272186, 0.02007369138300419, 0.0027236593887209892, -0.0072203148156404495, -0.011056740768253803, 0.018060918897390366, -0.03841828927397728, -0.0085779232904315, 0.025071851909160614, -0.024369407445192337, 0.03671621158719063, -0.0034446779172867537, -0.010773060843348503, -0.009030459448695183, 0.003961379639804363, 0.02274838276207447, -0.010671746917068958, 0.014346069656312466, 0.0074229431338608265, -0.0062848483212292194, -0.01165787037461996, -0.022316109389066696, 0.048846881836652756, -0.004937371704727411, -0.01777723990380764, 0.003397397929802537, -0.01665602996945381, 0.008388803340494633, -0.0135017866268754, 0.017763730138540268, -0.03744567558169365, -0.015007988549768925, 0.02218102291226387, -0.02305907942354679, 0.004403784405440092, -0.02869213931262493, 0.0072000520303845406, 0.001319615519605577, 0.007686359342187643, 0.018371615558862686, -0.001470742397941649, -0.002223843475803733, 0.008942653425037861, -0.007267594803124666, 0.00409984216094017, 0.016980234533548355, -0.019074060022830963, -0.03247453272342682, 0.02187032625079155, 0.0205870158970356, 0.005396661814302206, -0.006484099663794041, 0.0019215898355469108, -0.004464572761207819, -0.009381681680679321, -0.0034058408346027136, -0.061761047691106796, 0.028908276930451393, 0.009928776882588863, 0.011239105835556984, 0.012556188739836216, -0.02018176019191742, 0.005839066579937935, -0.008057844825088978, -0.04206559434533119, -0.00444430997595191, -0.020114216953516006, 0.032150328159332275, -0.009705886244773865, -0.022113481536507607, -0.017223389819264412, -0.004059316590428352, 0.006977161392569542, -0.011218843050301075, -0.001550949295051396, 0.004218041896820068, 0.008550906553864479, 0.0017898816149681807, 0.012454874813556671, 0.000870456569828093, -0.020019657909870148, -0.018938973546028137, 0.02694953791797161, 0.014413612894713879, -0.0011465373681858182, -0.0235724039375782, 0.00659554498270154, -0.025787804275751114, -0.0016851904802024364, 0.004336241632699966, 0.00788898766040802, 0.030772455036640167, -0.02515290305018425, -0.003785768523812294, 0.005572272930294275, 0.03323100879788399, -0.015116056427359581, -0.023477843031287193, 0.0017814388265833259, -0.027084624394774437, 0.0038229168858379126, 0.008483363315463066, -0.014832377433776855, -0.020627541467547417, 0.006484099663794041, -0.024342389777302742, 0.013582837767899036, 0.02750338800251484, -0.0055452557280659676, -0.024153269827365875, -0.007598554249852896, -0.0230050440877676, 0.012738553807139397, -0.018371615558862686, 0.007058212533593178, -0.03755374252796173, 0.024707119911909103, -0.008672483265399933, 0.0027844479773193598, -0.015278159640729427, 0.022424176335334778, -0.0038972138427197933, -0.014251510612666607, -0.006419933866709471, -0.00853064376860857, 0.002673002425581217, 0.0033281666692346334, 0.016264282166957855, 0.001729093142785132, 0.014643257483839989, 0.011374191381037235, 0.006031563505530357, -0.012340052053332329, 0.016777606680989265, -0.01726391538977623, 0.006956898141652346, 0.0022795661352574825, -0.012204966507852077, -0.04068772494792938, 0.017480051144957542, 0.03493308648467064, -0.004518606700003147, 0.007254086434841156, 0.012623731046915054, -0.01165787037461996, 0.013299157842993736, 0.02304556965827942, -0.008881865069270134, 0.008544151671230793, -0.00738917151466012, 0.006737384479492903, 0.02627411112189293, 0.008314507082104683, -0.0017493560444563627, 0.011387699283659458, 0.01560236420482397, -0.013677396811544895, 0.01114454586058855, 0.005903232377022505, -0.020992271602153778, -0.009395189583301544, 0.004241681657731533, -0.018412141129374504, -0.01777723990380764, 0.02740882895886898, 0.02335626631975174, 0.009307384490966797, -0.008341523818671703, 0.03474396467208862, 0.0222890917211771, -0.0011304960353299975, 0.009813955053687096, 0.006558396387845278, -0.02084367722272873, -0.011975320987403393, 0.04349749907851219, -0.004407161381095648, 0.03533834218978882, 0.017047777771949768, 0.0010300262365490198, 0.015278159640729427, 0.016885675489902496, 0.013170827180147171, 0.013927305117249489, -0.006183534394949675, 0.00041454334859736264, 0.019492823630571365, -0.004744874779134989, -0.04676656797528267, 0.013386963866651058, 0.0006180157070048153, -0.02208646386861801, 0.009881497360765934, 0.015116056427359581, -0.018668802455067635, 0.037986017763614655, 0.012806096114218235, -0.007024440914392471, 0.009253350086510181, 0.019546858966350555, 0.034960102289915085, 0.0242883563041687, -0.015453770756721497, -0.0011237417347729206, -0.013143809512257576, 0.004059316590428352, -0.011907778680324554, 0.02366696298122406, -0.015224125236272812, 0.00027375901117920876, 0.00963158905506134, -0.03185313940048218, 0.03412257507443428, -0.038337238132953644, -0.011070248670876026, 0.021586647257208824, -0.010124650783836842, 0.03252856433391571, 0.009618081152439117, -0.010036845691502094, 0.009016950614750385, 0.021748749539256096, 0.017385492101311684, -0.0026071483734995127, -0.019384754821658134, 0.010590695776045322, 0.006163271609693766, -0.0235724039375782, -0.024261338636279106, 0.010847358033061028, 0.014129932969808578, 0.007645833771675825, -0.010219210758805275, 0.028151798993349075, 0.0023454204201698303, -0.016939708963036537, 0.006051826290786266, -0.023964151740074158, -0.020316844806075096, 0.013339683413505554, -0.0023504861164838076, -0.012461628764867783, 0.008996687829494476, -0.018776871263980865], "ba61c6e8-8551-45a2-9553-eb9a23327a2a": [0.0065901693888008595, -0.019871894270181656, -0.009293828159570694, 0.005714859813451767, -0.004744921810925007, 0.028739897534251213, -0.010564547963440418, 0.007462099194526672, -0.011943414807319641, -0.03520164266228676, 0.020966876298189163, 0.011686567217111588, 0.02119668759405613, -0.010888987220823765, 0.0026833817828446627, -0.009760209359228611, 0.03993304818868637, -0.006184620317071676, 0.04425889998674393, -0.02323795109987259, 0.005373522639274597, 0.011862304992973804, -0.002850670600309968, 0.031254298985004425, -0.0052687558345496655, 0.03349833935499191, 0.011578420177102089, -0.013842735439538956, -0.005397179629653692, -0.012849139980971813, -0.002232208615168929, 0.007786538451910019, 0.0017962435958907008, -0.0016129016876220703, -0.02936173975467682, -0.00028810868388973176, 0.0027087286580353975, -0.007860888727009296, 0.004319095518440008, -0.0001961209054570645, 0.011564902029931545, -0.009591231122612953, -0.02692844532430172, 0.012004246935248375, -0.015721777454018593, 0.01399143598973751, -0.01603269949555397, -0.01049019768834114, -0.026387713849544525, 0.014329393394291401, 0.027928799390792847, 0.0035992462653666735, -0.018303772434592247, 0.01039556972682476, -0.014518650248646736, -0.0029537477530539036, 0.015424375422298908, 0.014410503208637238, 0.001643317868001759, 0.034660909324884415, 0.011389164254069328, 0.02185908518731594, -0.0005762173677794635, -0.01438346691429615, -0.04236634075641632, 0.004582702182233334, -0.00855708122253418, -0.013673756271600723, -0.016357138752937317, -0.024941256269812584, 0.036688655614852905, 0.021412981674075127, -0.008550322614610195, -0.006299525965005159, 0.003812159411609173, -0.042041901499032974, -0.026685116812586784, -0.02108854241669178, -0.02564420737326145, 0.013045155443251133, -0.00826643779873848, -0.029307665303349495, -0.0019821200985461473, -0.0044272420927882195, 0.023954421281814575, -0.011328332126140594, 0.006461745593696833, 0.023657018318772316, -0.03082171455025673, -0.03625607118010521, 0.008205605670809746, 0.024184230715036392, 0.0010189415188506246, 0.00687743304297328, -0.006982199847698212, 0.01520808320492506, -0.019601529464125633, 0.015086418017745018, -0.012463868595659733, -0.005708100274205208, -0.01942579075694084, -0.0034742020070552826, -0.011531106196343899, -0.008401621133089066, -0.028821006417274475, 0.001865524798631668, -0.005353245418518782, -0.008367825299501419, 0.016397692263126373, -0.015992144122719765, -0.006647622212767601, 0.0300376545637846, -0.0055357422679662704, -0.04539443925023079, -0.010023816488683224, -0.02118317037820816, 0.02166982926428318, -0.00811773631721735, -0.017952296882867813, -0.0047178855165839195, 0.0107876006513834, 0.032416872680187225, -0.0035924871917814016, -0.012139430269598961, -0.004998390097171068, 0.013119506649672985, 0.0058263856917619705, -0.008428657427430153, -0.003332260064780712, -0.003171730088070035, 0.04179857298731804, -0.0047178855165839195, 0.023494798690080643, 0.009246514178812504, -0.0017083747079595923, 0.010510475374758244, -0.018344327807426453, -0.004795615561306477, -0.0169249065220356, -0.03585052117705345, 0.016276028007268906, 0.01641121134161949, -0.012808585539460182, -0.019317645579576492, 0.0001695067621767521, 0.037175312638282776, 0.027063628658652306, -0.012078597210347652, -0.026360677555203438, 0.01789822429418564, 0.013748107478022575, -0.011328332126140594, 0.011166112497448921, -0.02003411389887333, 0.027577323839068413, 0.005086258985102177, 0.019669121131300926, -0.0007046411628834903, -0.010003538802266121, -0.01302487775683403, 0.019898932427167892, 0.028253238648176193, 0.007887925952672958, -0.010388810187578201, -0.01731693744659424, 0.0310920812189579, 0.0012098874431103468, -0.011402682401239872, -0.021250762045383453, -0.012335444800555706, 0.011591939255595207, 0.017181754112243652, -0.012903213500976562, 0.007495895028114319, -0.012409796006977558, 0.003805400338023901, 0.0214670542627573, 0.01954745687544346, -0.021304834634065628, 0.003411679994314909, -0.043312620371580124, -0.01642473042011261, 0.03233576565980911, 0.017087126150727272, -0.0192500539124012, -0.010240109637379646, -0.025725318118929863, 0.005657406989485025, 0.013599405996501446, 0.021994268521666527, 0.004339373204857111, 0.012734235264360905, -0.023197395727038383, -0.009368179365992546, -0.6406590938568115, -0.01710064522922039, -0.014613278210163116, -0.00850976724177599, -0.0007756122504360974, 0.00403521116822958, 0.018128035590052605, 0.006100131198763847, 0.0024163953494280577, -0.010077890008687973, -0.031335409730672836, 0.033200934529304504, 0.007813574746251106, -0.011504069902002811, -0.017438601702451706, -0.004008174873888493, -0.00957771297544241, -0.03449869155883789, -0.009854838252067566, -0.01414013747125864, -0.01472142431885004, 0.005187646020203829, 0.021886121481657028, 0.010361773893237114, 0.0019770506769418716, -0.01582992449402809, 0.0045590451918542385, -0.00269690016284585, 0.0030990694649517536, 0.023386651650071144, -0.01438346691429615, 0.0324709452688694, 0.006448226980865002, 0.022913511842489243, 0.05769608914852142, -0.019006723538041115, -0.01263960637152195, 0.036986056715250015, 0.018601175397634506, 0.00874633714556694, -0.014802534133195877, -0.021845566108822823, 0.013714311644434929, 0.003019649302586913, 0.022818883880972862, -0.0027796996291726828, 0.005853421986103058, -0.01906079798936844, 0.016749169677495956, 0.012477387674152851, 0.007664873730391264, 0.004109561908990145, -0.0004811668477486819, 0.009151886217296124, -0.012234058231115341, -0.00909105408936739, 0.030280983075499535, -0.01603269949555397, 0.0070565505884587765, -0.006563132628798485, 0.012004246935248375, 0.015965107828378677, -0.0013704173034057021, 0.002644516760483384, -0.011612216010689735, 0.025022365152835846, -0.022521480917930603, 0.006647622212767601, 0.016194919124245644, -0.010280664078891277, 0.005130193196237087, 0.011051206849515438, 0.012943768873810768, -0.02974025160074234, 0.013342558406293392, -0.004261642694473267, 0.019601529464125633, -0.01799285225570202, -0.002820254536345601, 0.0035789688117802143, 0.004940937273204327, -0.008239401504397392, -0.020534291863441467, -0.030010616406798363, 0.02488718368113041, -0.0026867613196372986, -0.017519712448120117, 0.04677330330014229, 0.01462679635733366, -0.011112038977444172, 0.003808779874816537, 0.036391254514455795, -0.0019297368125990033, 0.013727829791605473, 0.02594161033630371, 0.014734942466020584, -0.010578067041933537, 0.0019229776225984097, 0.006901090033352375, -0.02039910852909088, 0.012193502858281136, -0.012997841462492943, 0.0036735970061272383, -0.013768384233117104, 0.008110977709293365, -0.015397339127957821, -0.028253238648176193, -0.0013062054058536887, 0.049233634024858475, -0.027563804760575294, -0.0038189187180250883, -0.010875469073653221, -0.008807170204818249, -0.013531814329326153, 0.015140491537749767, -0.011632493697106838, -0.0029588169418275356, 0.007462099194526672, 0.03598570451140404, -0.014559204690158367, 0.027077147737145424, -0.008827446959912777, 0.008584117516875267, -0.01769544929265976, 0.018803950399160385, 0.029496921226382256, 0.011591939255595207, -0.016559911891818047, -0.010747045278549194, -0.019980041310191154, 0.00023171203793026507, -0.01230164896696806, 0.008813928812742233, 0.0053228288888931274, 0.009057258255779743, -0.025225140154361725, 0.014491613022983074, 0.01953393779695034, 0.03060542233288288, -0.027266403660178185, -0.0191419068723917, 0.007637837436050177, 0.010584825649857521, 0.006580030545592308, -0.0017142889555543661, -0.03160577639937401, -0.004434001166373491, -0.010219831950962543, -0.03593163192272186, 0.006674658507108688, -0.016086772084236145, -0.007482376880943775, 0.003903408069163561, 0.011814991012215614, 0.008178569376468658, 0.0006543700001202524, -0.018709322437644005, -0.005610093008726835, 0.0037378089036792517, -0.017127681523561478, 0.013775143772363663, 0.022913511842489243, -0.029983580112457275, 0.011098520830273628, 0.03228168934583664, 3.1921132176648825e-05, -0.003903408069163561, 0.02526569552719593, -0.007482376880943775, -0.02661752514541149, 0.0067219724878668785, -0.012200262397527695, 0.0016982359811663628, 0.03576941043138504, -0.004062247928231955, 0.0010451332200318575, -0.0027560426387935877, -0.022197041660547256, -0.00928031001240015, 0.011179630644619465, -0.01595158874988556, 0.02430589683353901, -0.00032000342616811395, -0.007624318823218346, 0.0180874802172184, 0.006705075036734343, 0.0008250385290011764, 0.006647622212767601, 0.01375486608594656, 0.030875789001584053, -0.0033677455503493547, 0.014505131170153618, 0.013822457753121853, 0.001324792974628508, 0.0028793970122933388, -0.006123788189142942, 0.016154363751411438, 0.042420413345098495, 0.01710064522922039, 0.01942579075694084, 0.008421898819506168, 0.0003238054341636598, 0.03011876344680786, -0.011091762222349644, 0.0006966146756894886, -0.03598570451140404, -0.0033508476335555315, -0.015816405415534973, 0.043393731117248535, -0.018912095576524734, -0.0022727635223418474, -0.03509349748492241, -0.0016078323824331164, -0.016668058931827545, 0.02846953086555004, 0.01981782168149948, 0.022778328508138657, 0.010659176856279373, 0.006701695267111063, 0.003480961313471198, 0.018006369471549988, -0.0081718098372221, -0.01274099387228489, -0.010017056949436665, -0.0013839355669915676, -0.007637837436050177, 0.005018667317926884, 0.018641730770468712, 0.0030534451361745596, 0.0012648055562749505, 0.027361031621694565, -0.0005386195844039321, -0.003388023003935814, 0.02849656715989113, 0.011727121658623219, 0.007482376880943775, 0.011281018145382404, -0.02936173975467682, 0.019560974091291428, -0.02215648628771305, 0.0033204315695911646, 0.019682638347148895, 0.017073607072234154, -0.023575907573103905, -0.008982907980680466, 0.014653832651674747, 0.0191419068723917, 0.0058263856917619705, 0.016938425600528717, 0.029794324189424515, -0.003366055665537715, 0.005978466477245092, -0.013761625625193119, -0.008178569376468658, 0.001939875422976911, -0.037283461540937424, 0.0009538847371004522, 0.023886829614639282, 0.016397692263126373, 0.02246740832924843, 0.011051206849515438, -0.008962630294263363, 0.008678746409714222, 0.009584471583366394, 0.0501258410513401, -0.0037952614948153496, 0.006921367719769478, 0.018330808728933334, -0.02828027494251728, -0.030253946781158447, -0.030659494921565056, -0.023251468315720558, -0.007901444099843502, -0.003612764645367861, 0.00348772038705647, -0.002105474704876542, 0.004829411394894123, -0.001449837232939899, 0.04531332850456238, -0.006664520129561424, -0.03460683673620224, -0.03625607118010521, 0.02671215310692787, 0.00726608419790864, 0.011335091665387154, -0.006833498831838369, -0.00870578270405531, 0.0030990694649517536, -0.015681223943829536, 0.0359586663544178, -0.005501946434378624, 0.018330808728933334, 0.019506901502609253, -0.02149409055709839, -0.007320157252252102, 0.004795615561306477, 0.0369049496948719, -0.02768547087907791, 0.037364568561315536, -0.017803596332669258, 0.014315875247120857, 0.012416554614901543, -0.024143677204847336, 0.0173980463296175, 0.022183524444699287, -0.014275320805609226, -0.015586595050990582, -0.014153655618429184, 0.01747915707528591, -0.021358907222747803, -0.016451766714453697, -0.02741510421037674, -0.01375486608594656, -0.008394861593842506, -0.007448581047356129, 0.0047178855165839195, -0.01015224028378725, 0.008043386042118073, 0.017817113548517227, -0.00707006873562932, -0.01699249818921089, -0.019371718168258667, -0.03625607118010521, 0.010307700373232365, 0.10311756283044815, 0.02838842198252678, -0.0060798535123467445, 0.0036161441821604967, 0.008908556774258614, 0.003663458162918687, -0.01419421099126339, -0.02857767790555954, 0.02488718368113041, 0.005312690511345863, 0.00020383055380079895, -0.010368533432483673, 0.013160061091184616, -0.002409636275842786, 0.013389872387051582, 0.0033035336527973413, 0.010368533432483673, 0.0005859336233697832, 0.008678746409714222, -0.00432923436164856, 0.03355241194367409, -0.009449289180338383, 0.023102767765522003, 0.024076085537672043, -0.027955835685133934, -0.01268692035228014, 0.028631750494241714, -0.011936655268073082, 0.024765517562627792, -0.013038396835327148, -0.013910326175391674, 0.017857668921351433, 0.03306575119495392, 0.020588364452123642, -0.020628919824957848, 0.007239047437906265, 0.0038155389484018087, 0.0019027001690119505, -0.014991790056228638, 0.01799285225570202, 0.03147059306502342, 0.022616108879446983, 0.011416200548410416, -0.01477549783885479, -0.006982199847698212, -0.002032813848927617, -0.015262155793607235, 0.010064370930194855, -0.023657018318772316, -0.011875823140144348, 0.04604331776499748, 0.0008203915785998106, -0.011943414807319641, -0.014694388024508953, 0.02292703092098236, -0.007732465397566557, 0.014018473215401173, -0.009199200198054314, -0.019750230014324188, 0.02565772645175457, -0.001427025068551302, 0.013187097385525703, 0.0018722839886322618, -0.015491967089474201, -0.02331905998289585, -0.04123080149292946, -0.02098039537668228, -0.014167173765599728, -0.024224786087870598, 0.01545141264796257, -0.008577358908951283, -0.0020057770889252424, -0.01624899171292782, 0.0191419068723917, 0.011139076203107834, 0.007043032441288233, 0.01993948593735695, -0.009178923442959785, -0.004464417230337858, -0.007063309662044048, -0.026996036991477013, -0.033471301198005676, 0.00995622482150793, -0.01068621315062046, -0.009212718345224857, -0.004363030195236206, 0.013633201830089092, 0.02312980405986309, -0.029794324189424515, 0.005289033520966768, 0.018330808728933334, 0.01083491463214159, 0.014491613022983074, -0.0005432665348052979, 0.002975714858621359, -0.004788856487721205, -0.006465124897658825, -0.00865846872329712, -0.020250407978892326, -0.002311628544703126, 0.0029858537018299103, -0.04531332850456238, -0.002529611112549901, -0.004150116816163063, 0.013788661919534206, -0.012997841462492943, -0.007374230306595564, 0.012774789705872536, -0.014248283579945564, -0.040825255215168, 0.012862659059464931, -0.015262155793607235, 0.006607067305594683, 0.008665227331221104, 0.008617913350462914, 0.02546847052872181, 0.02012874186038971, -0.00235725287348032, 0.01025362778455019, -0.002257555490359664, 0.0014092823257669806, -0.02488718368113041, 0.009354661218822002, -0.001398298772983253, -0.015775851905345917, 0.0019990180153399706, 0.005454632453620434, -0.021223723888397217, 0.021453535184264183, -0.001840178039856255, 0.018398400396108627, 0.015424375422298908, 0.0055357422679662704, -0.017046570777893066, -0.03412017971277237, 0.0009775417856872082, -0.02488718368113041, 0.002350493799895048, -0.01992596872150898, 0.006039298605173826, -0.005464771296828985, -0.017857668921351433, -0.0163436196744442, -0.03060542233288288, -0.0007840611506253481, -0.02884804457426071, -0.008874760940670967, -0.005376902408897877, 0.009408733807504177, 0.012991082854568958, 0.0021409601904451847, -0.03693198412656784, -0.02390034683048725, -0.005650647915899754, -0.0007177370134741068, -0.030794678255915642, 0.01268692035228014, -0.005397179629653692, 0.04861179366707802, -0.011091762222349644, 0.029334701597690582, -0.02273777313530445, 0.004998390097171068, 0.003998036030679941, 0.002336975419893861, 0.020101705566048622, 0.00047989952145144343, -0.02625253051519394, -0.033579446375370026, 0.0029334702994674444, 0.025725318118929863, 0.028253238648176193, 0.039311204105615616, 0.001667819800786674, -0.022670183330774307, 0.06083233281970024, -0.018817467615008354, -0.01477549783885479, -0.018993206322193146, -0.03412017971277237, -0.007502654101699591, 0.0005593195091933012, 0.006076474208384752, 0.00982104241847992, -0.036796800792217255, 0.002161237644031644, 0.04463741183280945, 0.012822103686630726, 0.009050498716533184, -0.029767287895083427, 0.013937363401055336, -0.026604006066918373, 0.004075766075402498, -0.00013497173495125026, 0.0034032310359179974, 0.003802020801231265, 0.017573785036802292, 0.0013188787270337343, 0.01530271116644144, -0.007462099194526672, -0.011206666938960552, 0.002509333658963442, -0.0197231937199831, -0.01245035044848919, -0.03536386415362358, 0.011990728788077831, -0.012335444800555706, -0.02546847052872181, 0.02049373649060726, -0.028036946430802345, -0.004863206762820482, -0.010888987220823765, -0.0029638863634318113, -0.04847661033272743, -0.018114516511559486, -0.005664166063070297, 0.011064724996685982, 0.016154363751411438, -0.005329588428139687, -0.01614084467291832, -0.004109561908990145, -0.007090346422046423, 0.045827023684978485, 0.01220702100545168, 0.0324709452688694, 0.0038865101523697376, -0.021507609635591507, -0.005809487774968147, 0.015045863576233387, -6.627133552683517e-05, -0.010510475374758244, 0.021020950749516487, 0.005170748103410006, 0.003186938352882862, 0.012166466563940048, -0.035634227097034454, -0.0019686019513756037, -0.04120376706123352, -0.032903533428907394, 0.006194759160280228, 0.011720363050699234, -0.009300587698817253, 0.0019297368125990033, -0.008874760940670967, -0.03274131193757057, 0.008306993171572685, -0.002701969351619482, 0.022683700546622276, -0.012186744250357151, 0.0014084374997764826, -0.02914544567465782, 0.007914962247014046, 0.019804304465651512, 0.02849656715989113, 0.013308762572705746, -0.00755672762170434, -0.026266049593687057, -0.008198846131563187, -0.006350219715386629, -0.010922783054411411, -0.006715213414281607, 0.02488718368113041, -0.0031548324041068554, 0.00408590491861105, 0.005863560829311609, -0.00683011906221509, 0.0037614658940583467, -0.004163634963333607, -0.016965461894869804, 0.02391386590898037, 0.005461391527205706, 0.014748460613191128, 0.003491099923849106, 0.03063245862722397, -0.0004139978263992816, 0.008813928812742233, 0.005522224120795727, 0.0009682479430921376, -0.012504423968493938, -0.013835975900292397, -0.005684443283826113, 0.02033151686191559, -0.002350493799895048, -0.021020950749516487, -0.012335444800555706, -0.006012262310832739, -0.004542147275060415, 0.007705428637564182, 0.006674658507108688, -0.04366409778594971, -0.01769544929265976, 0.004633395932614803, -0.020831694826483727, 0.010030576027929783, -0.0017742763739079237, 0.021899638697504997, -0.013923845253884792, 0.026076793670654297, -0.04909845069050789, 0.03187614306807518, -0.019168943166732788, 0.012572015635669231, -0.024373488500714302, 0.01741156540811062, 0.008009590208530426, -0.01545141264796257, 0.012294890359044075, -0.017033053562045097, -0.018682284280657768, 0.018736358731985092, 0.018114516511559486, 0.017141198739409447, 0.0005922703421674669, 0.01689787022769451, 0.017749521881341934, -0.017844149842858315, 0.015478448942303658, -0.011470274068415165, -0.00909105408936739, 0.009016703814268112, 0.010645657777786255, 0.0004976422642357647, 0.011477033607661724, -0.02594161033630371, 0.03325500711798668, 0.012761271558701992, 0.024062566459178925, 0.014518650248646736, -0.047881804406642914, 0.017276382073760033, -0.01779007725417614, 0.010226590558886528, 0.02011522464454174, -0.008347547613084316, -0.015032345429062843, -0.02779361605644226, -0.011321572586894035, 0.0070024775341153145, 0.008530044928193092, -0.021426498889923096, 0.015099937096238136, 0.018533583730459213, -0.023359615355730057, -0.00015091910609044135, -0.0027560426387935877, -0.007380989845842123, 0.007935239933431149, -0.0003390135243535042, -0.05683091655373573, -0.0021510988008230925, -0.006154204253107309, 0.025238659232854843, -0.011456755921244621, -0.013721070252358913, -0.012991082854568958, -0.020534291863441467, -0.01719527319073677, -0.0031041386537253857, -0.007860888727009296, 0.008435416966676712, 0.03852714225649834, 0.00382567779161036, 0.014302357099950314, 0.030956897884607315, -0.0066138263791799545, 0.0077527426183223724, -0.011098520830273628, -0.012484146282076836, 0.004210949409753084, -0.012403036467730999, -0.003220733953639865, 0.005028806161135435, -0.03138948231935501, -0.009692618623375893, 0.01573529653251171, -0.001399143598973751, 0.01423476543277502, 0.0017235827399417758, -0.023670535534620285, 0.02362998202443123, -0.00437316857278347, -0.0024687787517905235, -0.007103864569216967, 0.01234896294772625, 0.006120408419519663, -0.011416200548410416, -0.012213780544698238, -0.00967234093695879, -0.01895265094935894, -0.03374166786670685, -0.021696865558624268, -0.011950173415243626, -0.01554604060947895, 0.0163436196744442, -0.01962856575846672, -0.017357492819428444, -0.037770118564367294, -0.030875789001584053, 0.04101451113820076, -0.0054918075911700726, -0.0035215162206441164, 0.036877911537885666, -0.011598697863519192, -0.026495860889554024, -0.011145834811031818, 0.03460683673620224, 0.0024214647710323334, -0.019804304465651512, 0.01554604060947895, -0.01904727891087532, 0.008374584838747978, -0.009097813628613949, 0.012051560916006565, -0.012808585539460182, 0.008300233632326126, 0.0009513500845059752, 0.0021477192640304565, -0.0135656101629138, 0.02506292052567005, 0.007380989845842123, -0.0191419068723917, -0.013788661919534206, 0.0021510988008230925, 0.009219477884471416, 0.000688588188495487, -0.01934468187391758, -0.0006032539531588554, -0.007482376880943775, 0.004069007001817226, 0.006647622212767601, 0.011057966388761997, 0.0011203287867829204, -0.014991790056228638, 0.02254851721227169, -0.03749975189566612, 0.005072740372270346, 0.20017892122268677, -0.01001029834151268, 0.008448935113847256, 0.029713215306401253, -0.020250407978892326, 0.003710772143676877, 0.027036592364311218, 0.006137306336313486, -0.008840966038405895, -0.007157937623560429, -0.01604621671140194, 0.01025362778455019, -0.0012833932414650917, 0.0039473422802984715, 0.008192087523639202, -0.006411051843315363, -0.04363705962896347, 0.009949466213583946, 0.004004795104265213, -0.06807813793420792, -0.0023251469247043133, -0.004494833294302225, -0.022981103509664536, -0.015667704865336418, 0.021548163145780563, -0.005775691941380501, -0.006502300500869751, -0.012991082854568958, 0.011896100826561451, -0.011233704164624214, -0.026604006066918373, 0.0041839126497507095, -0.0037716045044362545, -0.004741542506963015, 0.0017861048690974712, 0.0031953873112797737, 0.01701953448355198, 0.005785830784589052, 0.02575235441327095, -0.0209939144551754, 0.002328526461496949, -0.007941998541355133, 0.004822652321308851, -0.004281920380890369, -0.0077527426183223724, 0.022372780367732048, -0.010517233982682228, -0.018411919474601746, -0.01122018601745367, 0.015667704865336418, -0.017533229663968086, 0.027928799390792847, 0.032714277505874634, 0.007380989845842123, -0.0014118170365691185, 0.003291705157607794, -0.011375646106898785, 0.011639253236353397, -0.005765553098171949, 0.008104218170046806, -0.014396985061466694, 0.02110205963253975, -0.003364366013556719, 0.025982165709137917, -0.028145091608166695, 0.00595818879082799, -0.0075229317881166935, -0.019385237246751785, 0.014329393394291401, -0.0186687670648098, -0.0025127131957560778, -0.01787118799984455, -0.008165051229298115, 0.004018313717097044, 0.0037445679772645235, -0.0001953816245077178, 0.019615046679973602, -0.007637837436050177, 0.005376902408897877, -0.013484500348567963, 0.03244391083717346, 0.0016069874400272965, 0.0007633612840436399, 0.005836524534970522, -0.009543917141854763, -0.030578386038541794, 0.00024924357421696186, -0.012578774243593216, -0.0020480218809098005, 0.013193856924772263, -0.025887537747621536, -0.026901409029960632, 0.003903408069163561, -0.01059158518910408, -0.002548198914155364, 0.007671632803976536, 0.018114516511559486, 0.014153655618429184, -0.020966876298189163, 0.00011564479791559279, -0.0076986695639789104, -0.00797579437494278, 0.030010616406798363, 0.01749267429113388, -0.044069644063711166, -0.0027678711339831352, 0.012889695353806019, 0.0032950846944004297, 0.018330808728933334, -0.011389164254069328, 0.030875789001584053, -0.008759856224060059, -0.01346422266215086, -0.02206185832619667, 0.016843797639012337, 0.021426498889923096, -0.019858377054333687, -0.03644532710313797, 0.003653319552540779, 0.00668141758069396, 0.010294182226061821, -0.03671569377183914, -0.0054140775464475155, -0.008232641965150833, -0.011395923793315887, -0.013092469424009323, -0.00264789629727602, 0.029902471229434013, 0.00981428287923336, -0.02138594351708889, 0.035039424896240234, -0.024914219975471497, -0.00334070879034698, 0.006066335365176201, -0.014748460613191128, 0.006181241013109684, -0.010388810187578201, -0.025792907923460007, 0.03612088784575462, -0.008766614831984043, -0.007049791514873505, -0.0013138094218447804, 0.008482730947434902, 0.02158871851861477, 0.004991631023585796, -0.003114277496933937, 0.022764811292290688, -0.017736004665493965, 0.011186390183866024, 0.0001961209054570645, -0.01912838965654373, 0.0030635837465524673, 0.010179276578128338, -0.0011642632307484746, 0.0029672659002244473, -0.01818210817873478, -0.015194565057754517, -0.029334701597690582, -0.00348772038705647, 0.025049403309822083, -0.0369049496948719, 0.016194919124245644, 0.031227264553308487, -0.002210241509601474, -0.024752000346779823, -0.005985225550830364, -0.17227716743946075, 0.015397339127957821, 0.0076310778968036175, -0.006819980219006538, 0.004508351907134056, 0.03612088784575462, 0.019385237246751785, -0.009557435289025307, -0.006039298605173826, -0.020372072234749794, 0.02594161033630371, 0.01395088154822588, -0.027171775698661804, -0.02020985260605812, -0.0052011641673743725, 0.02303517609834671, -0.006184620317071676, 0.020872248336672783, 0.049125488847494125, 0.01481605228036642, 0.016154363751411438, -0.023981457576155663, 0.01419421099126339, -0.002159547759220004, 0.0226296279579401, 0.018979687243700027, -0.0029588169418275356, 0.0055898153223097324, 0.01245035044848919, -0.005180886946618557, -0.022670183330774307, 0.01030094176530838, 0.015924552455544472, -0.03293056786060333, 0.02323795109987259, 0.013572368770837784, -0.011206666938960552, -0.00028874236159026623, 0.0019533936865627766, 0.03111911751329899, 0.007955517619848251, 0.008029867894947529, 0.023197395727038383, -0.0019500141497701406, -0.013356076553463936, 0.02490070089697838, -0.008644950576126575, -0.000980921322479844, -0.0033221212215721607, -0.0259686466306448, 0.007712187711149454, -0.008638191036880016, 0.01496475376188755, -0.005130193196237087, 0.012680161744356155, 0.020872248336672783, 0.0069112288765609264, 0.002482297131791711, -0.0012563565978780389, -0.025617171078920364, -0.011497310362756252, 0.0031463834457099438, 0.025387359783053398, -0.005640509072691202, -0.0058804587461054325, 0.005400559399276972, -0.012152948416769505, 0.017438601702451706, -0.04190671816468239, 0.012058320455253124, 0.005525603424757719, 0.005116675049066544, 0.03255205601453781, -0.020818175747990608, 0.00013053604925516993, -0.0005804418469779193, -0.027388067916035652, 0.03704012930393219, -0.000257058854913339, -0.02438700571656227, -0.038148630410432816, 0.03257909417152405, -0.005434354767203331, -0.009854838252067566, 0.011057966388761997, 0.015478448942303658, -0.016370655968785286, -0.024184230715036392, -0.015099937096238136, -0.0024113261606544256, 0.027050109580159187, -0.030064690858125687, 0.0020023975521326065, -0.01015224028378725, 0.010138722136616707, 0.017371010035276413, 0.030659494921565056, -0.012923491187393665, 0.002609031042084098, -0.019953005015850067, -0.0027695607859641314, -0.016384175047278404, -0.0022440371103584766, 0.02828027494251728, 0.03420129045844078, 0.0013974538305774331, 0.005211303010582924, 0.0005331278080120683, 0.019195979461073875, 0.005461391527205706, -0.01011168584227562, 0.00860439520329237, 0.01131481397897005, -0.0046807099133729935, 0.011666289530694485, 0.024143677204847336, -0.001424490474164486, -0.02012874186038971, 0.02499532885849476, -0.022805364802479744, 0.06845664978027344, -0.006874053739011288, 0.006465124897658825, -0.012119152583181858, -0.021034467965364456, -0.025914574041962624, -0.10587529093027115, -0.005018667317926884, 0.011673049069941044, 0.014369948767125607, -0.00595818879082799, 0.018614694476127625, -0.006258971057832241, 0.010747045278549194, 0.009145127609372139, -0.00216461718082428, -0.009895392693579197, -0.030956897884607315, 0.000517497246619314, -0.01945282705128193, -0.0002420619857730344, -0.02496829256415367, 0.007671632803976536, -0.011206666938960552, -0.001424490474164486, 0.03325500711798668, 0.0055053262040019035, -0.012538219802081585, 0.011078243143856525, -0.007678392343223095, 0.014207729138433933, -0.011085002683103085, -0.02623901329934597, 0.012409796006977558, 0.026969000697135925, 0.023210914805531502, -0.014248283579945564, -0.00841513928025961, 0.00031535650487057865, -0.012511182576417923, 0.00010793514229590073, -0.02207537740468979, -0.034850168973207474, 0.007299880031496286, 0.028523605316877365, -0.03398499637842178, 0.01769544929265976, -0.010260386392474174, 0.035417936742305756, -0.025049403309822083, 0.008962630294263363, -0.007854130119085312, -0.019020242616534233, 0.005552640184760094, 0.012822103686630726, -0.01943930983543396, -0.01595158874988556, 0.009550675749778748, -0.037743084132671356, -2.4330292944796383e-05, 0.04128487780690193, 0.004630016162991524, 0.02613086625933647, -0.0075229317881166935, -0.015573076903820038, -0.008617913350462914, -0.01312626525759697, 0.001666130032390356, -0.004112941678613424, 0.02198074944317341, 0.01015224028378725, -0.0022981103975325823, -0.007353953085839748, -0.0047178855165839195, 0.025725318118929863, 0.007563486695289612, -0.014518650248646736, -0.008712542243301868, -0.021805010735988617, 0.01011168584227562, -0.013389872387051582, 0.020061152055859566, -0.00990891084074974, -0.007806816138327122, 0.0039405832067132, -0.026671597734093666, 0.005221441853791475, -0.017465637996792793, -0.0005039789830334485, -0.0007498429622501135, 0.0067895641550421715, 0.023765163496136665, 0.006454986520111561, -0.011842027306556702, 0.007212011143565178, -0.009077535942196846, 0.008293475024402142, 0.018100997433066368, -0.007658114656805992, -0.02898322604596615, 0.01973671279847622, 0.03060542233288288, 0.009064017795026302, -0.005522224120795727, -0.011706843972206116, -0.009794005192816257, -0.005606713239103556, -0.0008753096917644143, -0.06618557870388031, 0.0382838137447834, 0.009685859084129333, 0.009354661218822002, -0.001695701270364225, -0.013457464054226875, 0.014369948767125607, -0.013153302483260632, -0.025022365152835846, 0.001916218432597816, -0.01661398634314537, 0.02265666425228119, -0.006235314067453146, -0.012186744250357151, -0.00338971265591681, 0.0006830964121036232, -0.0037209109868854284, -0.007259325124323368, 0.004069007001817226, -0.009983262047171593, 0.006157584022730589, -0.009638545103371143, 0.004832790698856115, 0.002899674465879798, -0.008854484185576439, -0.00880041066557169, 0.009996780194342136, 0.008868002332746983, 0.003190317889675498, -0.018709322437644005, 0.00850976724177599, -0.026320122182369232, -0.012822103686630726, 0.006607067305594683, -0.0006569047109223902, 0.02838842198252678, -0.007827093824744225, 0.0006708454457111657, 0.005985225550830364, 0.05412725731730461, -0.0024130158126354218, -0.017249345779418945, 0.01083491463214159, -0.02846953086555004, 0.01155814342200756, 0.01642473042011261, -0.0191419068723917, -0.008401621133089066, 0.011355368420481682, -0.013545332476496696, 0.01112555805593729, 0.0287669338285923, 0.001621350646018982, -0.02906433679163456, -0.002995992312207818, -0.02809101901948452, 0.02033151686191559, -0.018398400396108627, -0.0005466460715979338, -0.024846628308296204, 0.0038696122355759144, -0.013883289881050587, 0.0023031795863062143, -0.003538413904607296, 0.013443944975733757, -0.012768030166625977, -0.014505131170153618, -0.010740285739302635, -0.01375486608594656, -0.005528983194380999, -0.009354661218822002, 0.0047719585709273815, 0.010023816488683224, 0.013673756271600723, 2.4779141313047148e-05, 0.03257909417152405, -0.005387040786445141, 0.005850042682141066, -0.027442140504717827, 0.0008018039516173303, -0.011355368420481682, -0.021318353712558746, -0.04255559667944908, 0.005711480043828487, 0.023062212392687798, -0.009070776402950287, 0.019520418718457222, 0.009226237423717976, -0.00942901149392128, 0.012707198038697243, 0.02042614482343197, -0.007793297525495291, 0.005904115736484528, -0.015978625044226646, -0.009543917141854763, 0.02195371314883232, 0.0025431294925510883, -0.010922783054411411, 0.003408300457522273, 0.019506901502609253, -0.019506901502609253, 0.01545141264796257, -0.000490883132442832, -0.03325500711798668, -0.001472649397328496, -0.009658822789788246, -0.022129449993371964, -0.034552764147520065, 0.007624318823218346, 0.02546847052872181, 0.004927419126033783, 0.004545527044683695, 0.025035884231328964, 0.024562744423747063, -0.00663410359993577, -0.0016171261668205261, 0.010692971758544445, -0.01816858910024166, -0.013734588399529457, 0.03460683673620224, 0.0022136210463941097, 0.04296114295721054, 0.02536032348871231, 0.006884192116558552, 0.013937363401055336, 0.010240109637379646, 0.016776205971837044, 0.007914962247014046, -0.007563486695289612, 0.0029672659002244473, -0.0050930180586874485, -0.007482376880943775, -0.04866586625576019, 0.008868002332746983, -0.004964594263583422, -0.025617171078920364, 0.011686567217111588, 0.00812449585646391, -0.014802534133195877, 0.029280629009008408, 0.009408733807504177, -0.021331870928406715, -0.017425084486603737, 0.007286361418664455, 0.03925713151693344, 0.021548163145780563, 0.00765135558322072, -0.00018260261276736856, -0.01731693744659424, -0.003906787373125553, -0.025698279961943626, 0.019885413348674774, -0.025319768115878105, -0.012423314154148102, -0.0013653478818014264, -0.016735650599002838, 0.02917248196899891, -0.03977082669734955, -0.02322443202137947, 0.023183878511190414, -0.0025245416909456253, 0.02410312183201313, -0.0009758520172908902, -0.007786538451910019, 0.022372780367732048, 0.02360294573009014, 0.008320511318743229, -0.01404550950974226, -0.032606128603219986, -0.005765553098171949, -0.0005204543704167008, -0.010571307502686977, -0.023940902203321457, 0.022764811292290688, 0.007671632803976536, 0.010219831950962543, -0.017073607072234154, 0.003731049597263336, -0.002989233238622546, -0.011335091665387154, 0.011416200548410416, -0.022318705916404724, -0.02098039537668228, 0.0027560426387935877, 0.008644950576126575, -0.025427915155887604, 0.01307895127683878, -0.012470628134906292], "239b1b79-9c6c-45a2-8a7d-23907d3d49cd": [0.0021567856892943382, -0.014452544040977955, -0.0049827988259494305, 0.004535491578280926, -0.0031398222781717777, 0.014840904623270035, -0.01545118447393179, -0.007406582124531269, -0.007420452311635017, -0.03822573274374008, 0.02907152846455574, 0.00668534217402339, 0.03584009036421776, -0.016727225854992867, -0.00708410469815135, 0.00514577142894268, 0.034924671053886414, 0.0021203767973929644, 0.04663095250725746, -0.017004625871777534, -0.002324959496036172, 0.006241501774638891, 0.005683234427124262, 0.016630135476589203, -0.026061737909913063, 0.029903728514909744, 0.010825538076460361, -0.01710171438753605, -0.0011312721762806177, -0.004684593994170427, -0.0019886118825525045, 0.00030622369376942515, 0.0074273874051868916, -0.010506528429687023, -0.0289883092045784, -0.016810445114970207, 0.004972396418452263, -0.00701128738000989, 0.015312484465539455, -0.0004585770075209439, 0.009334512986242771, -0.013051673769950867, -0.020194726064801216, 0.013987898826599121, -0.015326354652643204, 0.01496573444455862, -0.009362252429127693, -0.015589884482324123, -0.026810718700289726, 0.01894642598927021, 0.030486268922686577, 0.00013664121797773987, -0.01865515485405922, 0.004927319008857012, -0.015132174827158451, -0.0032767883967608213, 0.008578597567975521, 0.017809085547924042, 0.010374763049185276, 0.020153116434812546, 0.010860213078558445, 0.014091924764215946, 0.011172288097441196, -0.013550993986427784, -0.03522980958223343, -0.0013939354103058577, -0.003942548763006926, -0.011734023690223694, -0.012039164081215858, -0.023010337725281715, 0.03625619038939476, 0.021942347288131714, -0.015770195052027702, -0.011075198650360107, 0.0009206215036101639, -0.03134620934724808, -0.023135166615247726, -0.0175178162753582, -0.02065243571996689, 0.007330297026783228, -0.011789503507316113, -0.030930109322071075, -0.002907499670982361, -0.013315204530954361, 0.013342943973839283, -0.012059968896210194, -0.010215258225798607, 0.022400056943297386, -0.02417541667819023, -0.01561762485653162, 0.01206690352410078, 0.03625619038939476, 0.00896002259105444, 0.008016862906515598, -0.009459342807531357, 0.015048954635858536, -0.02392575703561306, 0.016754964366555214, -0.015478924848139286, -0.012836689129471779, -0.010818603448569775, -0.002047559479251504, -0.026852328330278397, -0.00932757742702961, -0.02621430717408657, -0.003134621074423194, 0.0001787930232239887, 0.004018833860754967, 0.032927390187978745, -0.022635847330093384, -0.004334376193583012, 0.02674136869609356, 0.0015014279633760452, -0.042275771498680115, -0.01911286637187004, -0.032150670886039734, 0.020319556817412376, -0.009917053394019604, -0.010603617876768112, 0.000656658026855439, -0.00988237839192152, 0.02780935913324356, 0.004261558875441551, -0.003406819887459278, -0.014369324781000614, 0.008439897559583187, 0.007462062407284975, -0.008301197551190853, 0.002238271990790963, -0.00884212739765644, 0.033620890229940414, -0.007101442199200392, 0.02951536886394024, 0.0025590157601982355, -0.002902298467233777, 0.011352598667144775, -0.007843486964702606, -0.00684831477701664, -0.015132174827158451, -0.03090236894786358, 0.016422085464000702, 0.0060161142610013485, -0.005520261824131012, -0.018488716334104538, -0.009910117834806442, 0.031041068956255913, 0.02180364727973938, -0.008647947572171688, -0.041138432919979095, 0.009320642799139023, 0.02470247820019722, -0.02441120706498623, 0.00884212739765644, -0.011588388122618198, 0.021124016493558884, 0.007975252345204353, 0.02209491655230522, 0.008571662940084934, -0.005301808938384056, -0.016338864341378212, -0.0015473723178729415, 0.022566497325897217, 0.006057724356651306, -0.00701128738000989, -0.004500816576182842, 0.0302920900285244, -0.0014962267596274614, -0.00293523957952857, -0.012323498725891113, -0.014452544040977955, 0.013127959333360195, 0.008384417742490768, -0.014383194036781788, 0.01369662955403328, -0.009299837984144688, 0.002879759529605508, 0.03653359040617943, 0.024466687813401222, -0.005925959441810846, -0.004230351187288761, -0.030569490045309067, -0.01959831640124321, 0.02102692611515522, 0.013023934327065945, -0.005242861807346344, -0.005315679125487804, -0.013613409362733364, -0.003928678575903177, -0.002458458300679922, 0.030514009296894073, 0.01142888329923153, 0.01176176406443119, -0.013918548822402954, -0.01563149504363537, -0.6342475414276123, -0.026685887947678566, -0.006615992169827223, -0.027823228389024734, 0.010236063040792942, 0.006040386855602264, 0.018017135560512543, 0.000286935712210834, 0.0043586487881839275, -0.009625783190131187, -0.028488988056778908, -0.006976611912250519, 0.0019608717411756516, -0.010034947656095028, -0.01718493551015854, -0.004625646397471428, 0.010971173644065857, -0.03226162865757942, -0.00830813217908144, -0.017906175926327705, -0.02592303790152073, 0.009445472620427608, 0.008932283148169518, 0.0065015642903745174, -0.0009128196397796273, -0.004202611278742552, 0.005426639225333929, 0.0029265708290040493, 0.011928203515708447, 0.023259997367858887, -0.020832747220993042, 0.030819149687886238, -0.000487617333419621, -0.0006003111484460533, 0.04929399490356445, -0.0034050859976559877, -0.027837097644805908, 0.01915447600185871, 0.01735137589275837, 0.020555347204208374, -0.01377984881401062, -0.020569216459989548, 0.000825698662083596, 0.02188686653971672, 0.02514631859958172, 0.01427223440259695, 0.021706556901335716, -0.013661954551935196, 0.016144685447216034, 0.026547187939286232, 0.0015118304872885346, 0.007815747521817684, -0.0027254559099674225, -0.008495377376675606, -0.015589884482324123, -0.008557792752981186, 0.026602668687701225, -0.013987898826599121, 0.012697989121079445, -0.0007537480560131371, 0.012198668904602528, 0.013821459375321865, -0.01061748806387186, -0.0021515844855457544, -0.016810445114970207, 0.02289937622845173, -0.012157058343291283, 0.005253264214843512, 0.017975525930523872, -0.01730976440012455, 0.02665814757347107, 0.013273593969643116, -0.0026353008579462767, -0.029182488098740578, 0.005274069029837847, 0.0019938130863010883, 0.02405058778822422, -0.024147678166627884, -0.0057768565602600574, -0.00296471337787807, 0.011255508288741112, -0.024522166699171066, -0.01841936632990837, -0.021526247262954712, 0.005378094036132097, -0.006744289770722389, -0.03156812861561775, 0.03270547091960907, 0.004764346405863762, 0.0017198804998770356, 0.007007819600403309, 0.03636715188622475, -0.00945240817964077, 0.017032364383339882, 0.02674136869609356, 0.004604841582477093, -0.0063247219659388065, 0.006505032069981098, 0.0070182220079004765, -0.025423718616366386, 0.024341857060790062, -0.015340224839746952, 0.0009943059412762523, -0.011463558301329613, 0.02163720689713955, -0.028877349570393562, -0.03706065192818642, -0.004143663682043552, 0.053344037383794785, -0.02201169729232788, -0.009008567780256271, -0.019445745274424553, -0.00296471337787807, -0.0018048343481495976, 0.016103075817227364, -0.017406854778528214, -0.0035073773469775915, -0.003004589583724737, 0.02714359760284424, -0.022566497325897217, 0.029099268838763237, -0.003233444644138217, 0.0018897880800068378, -0.008322002366185188, 0.0076493071392178535, 0.032233890146017075, 0.006102801766246557, -0.020832747220993042, -0.0019209955353289843, -0.026325268670916557, 0.008682622574269772, -0.0068552494049072266, 0.007295622024685144, 0.008273457176983356, 0.014216754585504532, -0.027185209095478058, 0.020999185740947723, 0.005062551703304052, 0.04058363288640976, -0.036478109657764435, -0.02470247820019722, 0.005832336843013763, 0.002264278242364526, -0.006404474377632141, 0.008072342723608017, -0.032927390187978745, -0.015603754669427872, -0.009147267788648605, -0.040112052112817764, -0.002737591974437237, -0.013107153587043285, -0.014286104589700699, 0.0032143734861165285, 0.019140606746077538, 0.014140469022095203, -0.00596063444390893, -0.024896657094359398, 0.0038246535696089268, -0.005371158942580223, -0.02751808799803257, 0.0002119510027114302, 0.01678270474076271, -0.031179768964648247, 0.007198532111942768, 0.02302420698106289, -0.0010220459662377834, -0.008620207197964191, 0.033537670969963074, -0.0031987696420401335, -0.034036990255117416, 0.0009839034173637629, -0.018585804849863052, 0.003469234798103571, 0.030070168897509575, -0.014313844032585621, -0.0019331318326294422, -0.0070043522864580154, -0.023703837767243385, -0.003942548763006926, 0.011824178509414196, -0.009854638017714024, 0.02592303790152073, -0.006903794594109058, -0.011969814077019691, 0.007871227338910103, -0.009736742824316025, 0.010319283232092857, 0.011442753486335278, 0.005395431537181139, 0.03597879037261009, -0.0010671234922483563, 0.024841178208589554, 0.01649143546819687, 0.00033569743391126394, 0.004632581491023302, -0.002096104435622692, 0.014521894045174122, 0.035340771079063416, 0.014937995001673698, 0.025035357102751732, 0.02147076651453972, -0.02029181644320488, 0.033260270953178406, -0.010499592870473862, 0.006529304664582014, -0.03312157094478607, -0.0019123267848044634, -0.006945404689759016, 0.04341311380267143, -0.027004897594451904, -0.002739325864240527, -0.02785096876323223, -0.007462062407284975, -0.010242998600006104, 0.023773187771439552, 0.02764291875064373, 0.02140141651034355, 0.011477428488433361, -0.0010263803415000439, -0.0024688607081770897, 0.01829453557729721, -0.005520261824131012, -0.009944792836904526, -9.313491318607703e-05, -0.011512103490531445, 0.012746534310281277, 0.025326628237962723, 0.03054174967110157, 0.005908621940761805, -0.0018221718491986394, 0.01857193559408188, -0.005319146439433098, -0.001258702832274139, 0.020277945324778557, 0.02331547625362873, -0.0011330059496685863, 0.00352644850499928, -0.027504218742251396, 0.011754828505218029, -0.01755942590534687, 0.02951536886394024, 0.006688809487968683, 0.019015775993466377, -0.03179004788398743, -0.00780881242826581, 0.01776747591793537, 0.03106880933046341, 0.0027982734609395266, 0.01357873436063528, 0.024064457044005394, -0.010374763049185276, 0.008703427389264107, -0.01545118447393179, 0.0001920128706842661, -0.008828258141875267, -0.015298614278435707, 0.010790863074362278, 0.02604786865413189, 0.015437314286828041, 0.03190100938081741, 0.009570303373038769, -0.009535628370940685, 0.01877998560667038, 0.018363885581493378, 0.0423867329955101, 0.0022139993961900473, 0.017157195135951042, 0.01496573444455862, -0.02380092814564705, -0.021623335778713226, -0.03997335210442543, -0.023343216627836227, -0.011186158284544945, -0.013599539175629616, -0.002182791940867901, -2.438086630718317e-05, -0.003835056209936738, -0.011096003465354443, 0.017240414395928383, -0.014618984423577785, -0.010118167847394943, -0.0423867329955101, 0.031041068956255913, 0.009743678383529186, 0.013315204530954361, -0.020846616476774216, -0.027240687981247902, 0.01176176406443119, -0.019418006762862206, 0.02380092814564705, -0.016019854694604874, 0.006962742190808058, 0.024938266724348068, -0.014182079583406448, -0.018363885581493378, 0.001264770980924368, 0.02804514952003956, -0.03567365184426308, 0.03589557111263275, -0.03020886890590191, -0.0010367828654125333, 0.021956216543912888, -0.02134593576192856, 0.0246608667075634, 0.026713628321886063, 0.0025798208080232143, -0.008585532195866108, -0.013204243965446949, 0.00992398802191019, -0.019875716418027878, -0.014716074801981449, -0.02262197621166706, -0.0034328261390328407, 0.006553576793521643, -0.0007650174084119499, -0.004753943998366594, -0.013287464156746864, 0.009889313019812107, 0.007021689787507057, -0.017087845131754875, -0.013398423790931702, -0.03417569026350975, -0.03165134787559509, 0.0035403186921030283, 0.09381670504808426, 0.02577046863734722, -0.00816249754279852, -0.00487877381965518, 0.024605387821793556, 0.0072470773011446, -0.017864566296339035, -0.016976885497570038, 0.02216426655650139, 0.01261476892977953, -0.006754692178219557, -0.0021030392963439226, 0.013010064139962196, -0.009729808196425438, 0.006636796984821558, 0.01206690352410078, -0.007392712403088808, -0.005662429146468639, 0.009396927431225777, -0.003685953561216593, 0.01653304509818554, 0.010430242866277695, 0.022996466606855392, 0.03514659032225609, -0.036478109657764435, -0.012323498725891113, 0.01563149504363537, -0.006754692178219557, 0.0081070177257061, -0.022386187687516212, -0.017864566296339035, 0.016893664374947548, 0.026727497577667236, 0.029737289994955063, -0.01267718430608511, -0.004663788713514805, 0.005742181558161974, 0.007316427305340767, -0.00533995172008872, 0.007725592236965895, 0.020277945324778557, 0.018225185573101044, 0.018516454845666885, -0.013010064139962196, 0.005315679125487804, -0.007364972028881311, -0.0035195136442780495, 0.008037667721509933, -0.02065243571996689, 0.0010584547417238355, 0.04299701377749443, 0.00041740044252946973, -0.011824178509414196, -0.0034328261390328407, 0.023911887779831886, -0.0021481169387698174, 0.012607834301888943, -0.00434824638068676, -0.011810308322310448, 0.02045825682580471, -0.00309821218252182, 0.008516182191669941, 0.0053919642232358456, -0.013155698776245117, -0.02568724751472473, -0.030486268922686577, -0.029043788090348244, -0.025298887863755226, -0.027975797653198242, 0.014050314202904701, -0.0060611916705966, -0.019445745274424553, -0.014674464240670204, 0.005253264214843512, -0.0010714578675106168, 0.008654882200062275, -0.001262170379050076, -0.005773389246314764, 0.004663788713514805, -0.015520534478127956, -0.01608920469880104, -0.030569490045309067, 0.021526247262954712, -0.020014416426420212, -0.00971593800932169, -0.013585668988525867, 0.01083940826356411, 0.022885506972670555, -0.026200437918305397, 0.010132038034498692, 0.009944792836904526, 0.021484635770320892, 0.0157979354262352, -0.008641012944281101, -0.005301808938384056, -0.012108514085412025, -0.008772777393460274, 0.00018345247372053564, -0.011831114068627357, -0.006192957051098347, 0.011283248662948608, -0.06014033779501915, 0.009729808196425438, -0.007753332145512104, 0.010978108271956444, -0.012912973761558533, 0.00020436584600247443, 0.025368237867951393, -0.021692685782909393, -0.02731003798544407, 0.012399783357977867, -0.0038697312120348215, -0.00352644850499928, 0.0032178410328924656, 0.014202884398400784, 0.014008704572916031, 0.008058472536504269, 0.00023860741930548102, 0.010138972662389278, -0.00151529791764915, -0.0004806823271792382, -0.02375931665301323, 0.0022781481966376305, 0.010118167847394943, -0.023731578141450882, 0.0024723282549530268, 0.009944792836904526, -0.029986949637532234, 0.016768835484981537, 0.005249796435236931, -0.0008152961963787675, 0.02699102833867073, 0.0076493071392178535, -0.019126735627651215, -0.02461925707757473, 0.003758771112188697, -0.02400897815823555, 0.000537462648935616, -0.027823228389024734, 0.0047608790919184685, -0.011914333328604698, 0.000575171725358814, -0.0054855868220329285, -0.025714987888932228, 0.00260235951282084, -0.024855047464370728, -0.013828394003212452, 0.0017311498522758484, -0.009445472620427608, 0.005287939216941595, -0.005821934435516596, -0.037670932710170746, -0.027698397636413574, -0.004532023798674345, -0.003375612199306488, -0.019015775993466377, 0.006088932044804096, -0.016186295077204704, 0.04782377555966377, -0.016019854694604874, 0.027823228389024734, -0.024397337809205055, -0.0038038487546145916, 0.01024993322789669, 0.004088183864951134, 0.00853005237877369, 0.007628502324223518, -0.026283657178282738, -0.044689152389764786, 5.3258649131748825e-05, 0.029127009212970734, 0.023648357018828392, 0.020763397216796875, -0.01137340348213911, -0.01545118447393179, 0.041582271456718445, -0.013772914186120033, -0.009618847630918026, -0.026200437918305397, -0.027656788006424904, -0.024716347455978394, -0.00032291104434989393, 0.004330908879637718, 0.0037899785675108433, -0.024646997451782227, -0.002312823198735714, 0.055424537509679794, 0.009889313019812107, 0.012808948755264282, -0.026394618675112724, 0.02583981864154339, -0.02564563788473606, 0.005821934435516596, -0.009535628370940685, 0.018932556733489037, -0.003236912190914154, 0.02176203578710556, -0.005402366630733013, 0.002475795801728964, -0.005867011845111847, -0.0010818602750077844, -0.003970288671553135, -0.015173784457147121, 0.00039074404048733413, -0.02686619758605957, 0.0017770943231880665, -0.00783655233681202, -0.014043379575014114, 0.011338728480041027, -0.025285018607974052, 0.009091787971556187, -0.016241775825619698, 0.0035645910538733006, -0.03636715188622475, -0.02081887610256672, 0.006508499383926392, 0.0049827988259494305, 0.012004489079117775, -0.005610416643321514, -0.020277945324778557, 0.012108514085412025, -0.01640821434557438, 0.04524395242333412, 0.003548987442627549, 0.0289883092045784, 0.0006952339899726212, -0.015132174827158451, 0.0030670047271996737, 0.020236335694789886, 0.003391216043382883, -0.01886320486664772, 0.02613108791410923, 0.017656516283750534, 0.00992398802191019, -0.004712333902716637, -0.05098613724112511, 0.006830977275967598, -0.03925211355090141, -0.034064728766679764, 0.022691326215863228, 5.8189001720165834e-05, 0.00023145569139160216, 0.001494492986239493, -0.015437314286828041, -0.03731030970811844, 0.018516454845666885, -0.0126563785597682, 0.01792004518210888, -0.014369324781000614, -0.01116535346955061, -0.03597879037261009, 0.01846097595989704, 0.022344576194882393, 0.03348219022154808, 0.013890809379518032, -0.007108377292752266, -0.03667229041457176, 0.0033686773385852575, -0.016269514337182045, -0.005690169055014849, 0.0032109059393405914, 0.008488442748785019, -0.0018343080300837755, 0.0014121398562565446, 0.005898219533264637, -0.003994561266154051, 0.02344030700623989, 0.002975116018205881, -0.023995107039809227, 0.02699102833867073, -0.004733139183372259, 0.0030115246772766113, -0.00280174077488482, 0.031207509338855743, -0.005652026738971472, 0.007392712403088808, -0.00590168684720993, 0.0012535016285255551, -0.018807725980877876, -0.0029577785171568394, -0.009091787971556187, 0.01911286637187004, -0.018710635602474213, -0.026796847581863403, -0.020596956834197044, 0.0021030392963439226, -0.003094744635745883, 0.023648357018828392, -0.0035281823948025703, -0.05051455646753311, -0.012566223740577698, -0.01755942590534687, -0.00678589940071106, 0.013557929545640945, 0.0034258910454809666, 0.01955670677125454, -0.0015690441941842437, 0.024563778191804886, -0.033010609447956085, 0.022719066590070724, -0.010908758267760277, 0.020680176094174385, -0.011130678467452526, 0.03381507098674774, 0.012268018908798695, -0.026269787922501564, 0.015825673937797546, -0.018072616308927536, -0.032317109405994415, 0.02253875695168972, 0.02065243571996689, 0.006505032069981098, -0.014189014211297035, 0.00820410717278719, 0.021775906905531883, -0.008849062956869602, 0.014355454593896866, -0.011394208297133446, -0.013870004564523697, 0.013273593969643116, 0.033177051693201065, 0.006806704681366682, 0.026893937960267067, -0.028350288048386574, 0.019085125997662544, -0.003101679729297757, 0.027226818725466728, 0.014182079583406448, -0.049349475651979446, 0.012559289112687111, -0.017947785556316376, 0.015825673937797546, 0.006938469596207142, -0.013446968980133533, -0.025701118633151054, -0.022594237700104713, -0.012163993902504444, 0.001543037942610681, 0.00891841296106577, -0.02077726647257805, 0.007538347505033016, 0.02951536886394024, -0.021165626123547554, 0.0013575266348198056, -0.003171029733493924, -0.00873810239136219, 0.007302557118237019, -0.0010584547417238355, -0.05814305692911148, 0.004136728588491678, -0.01245526410639286, 0.029792768880724907, -0.005114564206451178, -0.025742728263139725, -0.014369324781000614, -0.008287327364087105, -0.017323635518550873, -0.013710498809814453, -0.013613409362733364, 0.024147678166627884, 0.04915529489517212, -0.0017822955269366503, 0.023662228137254715, 0.0255208071321249, -0.005995309446007013, -0.0038627961184829473, -0.008335872553288937, -0.0014996941899880767, -0.004275428596884012, -0.003101679729297757, -0.017254285514354706, 0.010659098625183105, -0.037088390439748764, -0.005475183948874474, 0.021484635770320892, -0.009195812977850437, -0.0049827988259494305, 0.00891841296106577, -0.008973892778158188, 0.015728585422039032, -0.009043242782354355, 0.0013896010350435972, 0.0123304333537817, 0.01613081432878971, 0.005142304114997387, -0.021956216543912888, -0.01377984881401062, 0.003212639829143882, -0.0018065680051222444, -0.01592276431620121, -0.01690753549337387, -0.015825673937797546, 0.001941800583153963, 0.021484635770320892, -0.0255208071321249, -0.01492412481456995, -0.006206826772540808, -0.026713628321886063, 0.053954318165779114, -0.005658961832523346, -0.007309492211788893, 0.016713354736566544, 1.4100268344918732e-05, -0.015465054661035538, -0.014161274768412113, 0.03789285197854042, 0.012254148721694946, -0.022830026224255562, 0.011782568879425526, -0.023953497409820557, 0.0026647746562957764, -0.00042455215589143336, 0.012954584322869778, -0.018350016325712204, 0.0017458867514505982, 0.003769173752516508, 0.0034328261390328407, -0.009272097609937191, 0.028488988056778908, 0.0021845255978405476, -0.009903183206915855, -0.005610416643321514, 0.012795078568160534, 0.005742181558161974, 0.005835804156959057, -0.018405495211482048, -0.0015777129447087646, 0.0016392611432820559, -0.0005149238859303296, 0.02890508808195591, 0.005246329121291637, -0.00816249754279852, -0.01865515485405922, 0.021498506888747215, -0.03181779012084007, 0.0030774071346968412, 0.19329237937927246, -0.016144685447216034, 0.015895023941993713, 0.032927390187978745, -0.017781345173716545, 0.004375986289232969, 0.01812809519469738, 0.0062102945521473885, -0.00487877381965518, 0.011671608313918114, -0.006574382074177265, 0.010860213078558445, -0.004802489187568426, 0.00047938202624209225, 0.007032092195004225, 0.00675815949216485, -0.047463156282901764, 0.0017701593460515141, 0.001832574256695807, -0.06413490325212479, 0.012365108355879784, -0.00853005237877369, -0.022483276203274727, -0.00043560483027249575, 0.009216617792844772, 0.012337368912994862, -0.00260235951282084, -0.02367609739303589, 0.029709549620747566, -0.010825538076460361, -0.022400056943297386, -0.0043274411000311375, -0.012559289112687111, -0.0015638429904356599, -0.00695233978331089, -8.435780182480812e-05, 0.02355126664042473, -0.002883227076381445, 0.017947785556316376, -0.023703837767243385, 0.006477292161434889, -0.008925347588956356, 0.00977835338562727, -0.0034917735029011965, -0.02062469720840454, 0.026061737909913063, -0.025451457127928734, -0.01764264516532421, -0.013294398784637451, 0.022816156968474388, -0.022261356934905052, 0.021540116518735886, 0.04185967147350311, 0.021290456876158714, 0.00024272507289424539, -0.008481507189571857, -0.01341229397803545, 0.005333016626536846, 0.0005357289337553084, 0.0126563785597682, -0.011928203515708447, 0.02066630683839321, 0.005950232036411762, 0.007607697509229183, -0.034397609531879425, 0.006678407080471516, -0.010333153419196606, -0.015853414312005043, 0.007829617708921432, -0.024591516703367233, -0.014729944057762623, -0.029376668855547905, -0.0087589081376791, 0.0014511492336168885, -0.008211042732000351, -0.010506528429687023, 0.027226818725466728, 0.0041887410916388035, 0.016602395102381706, -0.010499592870473862, 0.02923796884715557, -0.016186295077204704, 0.018516454845666885, 0.00609239935874939, -0.007330297026783228, -0.02808675915002823, 0.008495377376675606, 0.0007138717919588089, -0.012843623757362366, 0.010208322666585445, -0.015936635434627533, -0.03869731351733208, 0.004195676185190678, -0.01980636641383171, 0.014896384440362453, -0.0135163189843297, 0.0052914065308868885, 0.004514686297625303, 0.00042650263640098274, -0.0019071255810558796, -0.004323973786085844, -0.014660594053566456, 0.019001906737685204, -0.010326217859983444, -0.030569490045309067, -0.002137714298442006, 0.015367964282631874, 0.0019522031070664525, 0.026394618675112724, -0.014369324781000614, 0.0253127571195364, -0.00681710708886385, -0.0133082689717412, -0.021914606913924217, 0.015284745022654533, 0.03192875161767006, -0.015201524831354618, -0.031290728598833084, -8.728350076125935e-05, 0.02054147608578205, -0.0015846480382606387, -0.021137885749340057, -0.0025260744150727987, -0.015811804682016373, -0.00609239935874939, -0.015867285430431366, -0.0031970359850674868, 0.01808648556470871, 0.016796575859189034, -0.023204516619443893, 0.022469406947493553, -0.030264349654316902, -0.004233818966895342, 0.013765979558229446, -0.02065243571996689, 0.012427523732185364, -0.00217412319034338, -0.030680449679493904, 0.04075007140636444, -0.0004100319929420948, -0.00042975341784767807, -0.0026474371552467346, 0.015132174827158451, 0.008751972578465939, 0.005582676734775305, 0.006338592153042555, 0.020153116434812546, 0.005662429146468639, 0.01739298552274704, -0.003998028580099344, -0.01760103553533554, 0.011727088131010532, 0.007063299883157015, 0.007455127313733101, 0.0005964101874269545, -0.023745447397232056, -0.027864838019013405, -0.022927116602659225, 0.0066021219827234745, 0.010118167847394943, -0.03581235185265541, 0.013440034352242947, 0.03922437131404877, -0.010055753402411938, -0.02220587618649006, -0.02167881652712822, -0.17797990143299103, 0.013481643982231617, 0.009480147622525692, -0.020222466439008713, 0.02012537606060505, 0.03470275178551674, 0.005371158942580223, 0.006401007063686848, -0.007364972028881311, -0.0031398222781717777, 0.01726815477013588, 0.01596437580883503, -0.03972369059920311, -0.01475768443197012, -0.00042693607974797487, 0.012344303540885448, -0.005464781541377306, 0.009618847630918026, 0.01898803561925888, 0.012018358334898949, 0.01122776884585619, -0.018585804849863052, 0.017822954803705215, 0.011137613095343113, 0.018363885581493378, 0.006609057076275349, -0.001041984069161117, 4.9113903514808044e-05, 0.02453603781759739, -0.010700708255171776, -0.004937721416354179, 0.021124016493558884, 0.0028884282801300287, -0.026796847581863403, 0.020610826089978218, 0.013772914186120033, -0.011012783274054527, -0.001868983032181859, -0.002508736914023757, 0.03689420968294144, -0.002678644610568881, 1.8068931240122765e-05, 0.013530189171433449, 0.004341311287134886, -0.009417733177542686, 0.03126299008727074, -0.00040136324241757393, -0.00319530232809484, 0.006404474377632141, -0.03054174967110157, -0.004486946389079094, -0.008446832187473774, 0.020277945324778557, -0.004015366081148386, 0.0320119708776474, 0.016186295077204704, 0.01394628919661045, 0.000810961821116507, -0.000274799473118037, -0.030153390020132065, -0.009764483198523521, 0.0008755440358072519, 0.021387547254562378, -0.003595798509195447, -0.011304053477942944, -0.006182554177939892, -0.0029543109703809023, 0.022344576194882393, -0.03045852854847908, 0.015007345005869865, -0.0009145534131675959, 0.007434322498738766, 0.03190100938081741, -0.011844983324408531, 0.012420589104294777, -0.00378651125356555, -0.029737289994955063, 0.025409847497940063, -0.004431466571986675, -0.018641285598278046, -0.033260270953178406, 0.052484095096588135, -0.011581453494727612, -0.015506664291024208, 0.025659507140517235, 0.00023232257808558643, -0.020832747220993042, -0.02800353802740574, -0.01640821434557438, -0.003294125897809863, 0.03922437131404877, -0.027060378342866898, -0.006019582040607929, -0.0009206215036101639, 0.017975525930523872, 0.026977159082889557, 0.016269514337182045, -0.014424804598093033, 0.0018759181257337332, -0.007281752303242683, 0.0012821084819734097, -0.025659507140517235, -0.000575171725358814, 0.02581207826733589, 0.03553495183587074, 0.024314116686582565, -0.004587504081428051, 0.008821322582662106, 0.02678297832608223, 0.0005647692596539855, -0.010125103406608105, 0.011969814077019691, 0.01800326630473137, 0.0029387071263045073, 0.0071569220162928104, 0.026713628321886063, -0.007586892228573561, -0.017503945156931877, 0.023898016661405563, -0.027545828372240067, 0.05769921839237213, -0.0053468868136405945, 0.003143289824947715, -0.01726815477013588, 0.0005144904716871679, -0.028197718784213066, -0.11517651379108429, -0.010402503423392773, -0.002820812165737152, 0.027379387989640236, -0.01816970482468605, 0.02772613801062107, -0.01873837597668171, 0.012968453578650951, 0.013023934327065945, -0.005971036851406097, 0.002893629716709256, -0.025160187855362892, 0.015381834469735622, -0.011907398700714111, 0.00959804281592369, -0.01995893567800522, -0.002617963356897235, -0.00046507857041433454, 0.001341056078672409, 0.032677728682756424, 0.0034709684550762177, -0.007822682149708271, -0.0008369680726900697, -0.006824042182415724, 0.010395567864179611, 0.0047053988091647625, -0.02294098772108555, 0.022552626207470894, 0.02882186882197857, 0.016186295077204704, -0.004788619000464678, -0.0008035933715291321, 0.007184662390500307, -0.010201388038694859, 0.00316409463994205, -0.01638047583401203, -0.03861409053206444, -0.005281004123389721, 0.02846124954521656, -0.03528529033064842, 0.008356677368283272, -0.002028488088399172, 0.026880068704485893, -0.033787328749895096, -0.005305276717990637, -0.004043106455355883, -0.024605387821793556, -0.012704923748970032, 0.006494629662483931, -0.026075607165694237, -0.017018495127558708, 0.005086823832243681, -0.03944629058241844, -0.005093758925795555, 0.03631167113780975, -0.005950232036411762, 0.029875990003347397, 0.011109873652458191, -0.004209546372294426, -0.003928678575903177, -0.012559289112687111, -0.010568942874670029, -0.0022174669429659843, 0.020028285682201385, 0.01249687373638153, 0.011317923665046692, -0.02142915688455105, 0.0006865652394481003, 0.026325268670916557, 0.022219747304916382, -0.007108377292752266, 0.013405359350144863, -0.02646396867930889, 0.018183575943112373, -0.009258227422833443, 0.028683168813586235, -0.002394309500232339, -0.006425279658287764, 0.016103075817227364, -0.027337778359651566, 0.001117402222007513, -0.023620616644620895, -0.01067990344017744, -0.020402776077389717, 0.015895023941993713, 0.012399783357977867, 0.02180364727973938, -0.011200028471648693, 0.009050177410244942, -0.004209546372294426, 0.0003255116753280163, 0.0157979354262352, 0.0004629113827832043, -0.03875279054045677, 0.0170739758759737, 0.028766388073563576, 0.01206690352410078, 0.00040634776814840734, -0.01235123910009861, -0.0007021689671091735, -0.017587166279554367, -0.009500953368842602, -0.06435681879520416, 0.038475390523672104, 0.0008308999240398407, -0.006543174386024475, 0.0037102261558175087, -0.014286104589700699, 0.00800299271941185, -0.01768425479531288, -0.0044279987923800945, -0.002545145805925131, -0.021498506888747215, 0.018793854862451553, 0.0025191395543515682, -0.00938999280333519, -0.012143189087510109, 0.00675815949216485, 0.00517697911709547, -0.01024993322789669, -0.00028390163788571954, -0.0054994565434753895, 0.003963353578001261, 0.0014234092086553574, 0.007385777309536934, 0.001506629167124629, -0.01014590822160244, -0.0017432861495763063, 0.01850258558988571, 0.028877349570393562, 0.0038593285717070103, -0.01567310467362404, 0.0042892987839877605, -0.027254559099674225, -0.012094643898308277, 0.011394208297133446, -0.007097974885255098, 0.03930759057402611, -0.01357873436063528, 0.012240278534591198, 0.004278896376490593, 0.06346914172172546, -0.012385914102196693, -0.01245526410639286, 0.010936498641967773, -0.03298287093639374, 0.011914333328604698, 0.019140606746077538, -0.007420452311635017, -0.003113816026598215, 0.009917053394019604, -0.019126735627651215, 0.011109873652458191, 0.030347568914294243, -0.008030732162296772, -0.023287737742066383, -0.010381698608398438, -0.03670003265142441, 0.031540390104055405, -0.020638566464185715, 0.006619459483772516, -0.015506664291024208, 0.0028190782759338617, -0.002992453519254923, 0.007091039791703224, -0.012864428572356701, 0.01255235355347395, 0.004285831470042467, -0.013141828589141369, -0.02294098772108555, -0.01890481635928154, -0.018308404833078384, -0.004178338684141636, 0.007968317717313766, 0.00826652254909277, -0.00024445881717838347, 0.005284471437335014, 0.02482730709016323, -0.003952951170504093, 0.02123497612774372, -0.010437178425490856, -0.0018395093502476811, -0.023592878133058548, -0.02278841659426689, -0.04524395242333412, 0.010014142841100693, 0.02197008766233921, -0.014951864257454872, 0.016671745106577873, 0.014071119017899036, -0.03412020951509476, 0.006192957051098347, 0.0263807475566864, -0.008855997584760189, -0.01373823918402195, -0.018752245232462883, 0.006563979666680098, 0.012538484297692776, -0.014098859392106533, -0.0062935142777860165, 0.013016998767852783, 0.01653304509818554, -0.010451048612594604, 0.01710171438753605, 0.0018308405997231603, -0.017503945156931877, -0.003294125897809863, -0.016921404749155045, -0.011879658326506615, -0.03281642869114876, 0.013960159383714199, 0.0168659258633852, 0.008280392736196518, 0.004958526697009802, 0.0294044092297554, 0.011026653461158276, -0.0052775368094444275, 0.003183166030794382, 0.020888226106762886, -0.019792495295405388, -0.014840904623270035, 0.02731003798544407, 0.0004111155867576599, 0.03694969043135643, 0.01137340348213911, 0.014563504606485367, 0.013405359350144863, 0.019001906737685204, 0.012843623757362366, 0.021248847246170044, 0.0032889246940612793, -0.003883601166307926, -0.005967569537460804, 0.0012474334798753262, -0.04984879493713379, 0.006307384464889765, -0.010360892862081528, -0.028322549536824226, 0.01174095831811428, 0.008405222557485104, -0.027226818725466728, 0.03245580941438675, 0.0166578758507967, -0.02041664533317089, -0.00869649276137352, 0.0041748713701963425, 0.0385308712720871, 0.02077726647257805, 0.003125952323898673, -2.9985080800543074e-06, -0.012462198734283447, -0.005541066639125347, -0.02331547625362873, 0.023301606997847557, -0.030514009296894073, -0.019875716418027878, 0.004237286280840635, -0.008127822540700436, 0.037254832684993744, -0.03262225165963173, -0.026727497577667236, 0.012836689129471779, 0.0012040897272527218, 0.03281642869114876, 0.00458403630182147, -0.00590168684720993, 0.009604978375136852, 0.017781345173716545, -0.00587047915905714, -0.004528556484729052, -0.02392575703561306, -0.01561762485653162, 0.002910967217758298, -0.015367964282631874, -0.002727189566940069, 0.017365245148539543, 0.014716074801981449, 0.00932757742702961, -0.01406418439000845, 0.02760130912065506, -0.007323362398892641, -0.011082133278250694, 0.01804487593472004, -0.013828394003212452, -0.012032228522002697, 0.020846616476774216, 0.01029154285788536, -0.024757957085967064, 0.00533648394048214, -0.007399647496640682], "247ce3dd-5212-4993-aef1-f0b3f2b2b74b": [0.006299126893281937, -0.02189825102686882, -0.007407556753605604, 0.006292368285357952, -0.015707263723015785, 0.030414238572120667, -0.007245347369462252, -0.014098688960075378, -0.008549780584871769, -0.024453047662973404, 0.009739315137267113, 0.006332920398563147, 0.012023762799799442, 0.0030076303519308567, -0.0058260164223611355, 0.014436624944210052, 0.02944098226726055, -0.015288224443793297, 0.034847959876060486, -0.018478339537978172, -0.011800725013017654, -0.0035077754873782396, 0.0011929140891879797, 0.028440693393349648, -0.003228978253901005, 0.02515595406293869, 0.005802360828965902, -0.013389023952186108, 0.007927978411316872, -0.0027440402191132307, 0.001850199536420405, 0.01432848535478115, 0.008515986613929272, -0.01336874719709158, -0.04339098185300827, -0.017126595601439476, -0.004203923512250185, -0.015545055270195007, 0.013510680757462978, -0.003403015434741974, 0.007029068656265736, -0.012206248007714748, -0.028359588235616684, 0.005721256136894226, -0.013503922149538994, 0.030170924961566925, 0.003947092220187187, -0.02137107215821743, -0.02188473381102085, 0.024709878489375114, 0.017788950353860855, 0.012010244652628899, -0.018032263964414597, 0.00553877092897892, -0.009070201776921749, -8.247750520240515e-05, -0.0009284791303798556, 0.02060057781636715, -0.006904032081365585, 0.0359293557703495, 0.008488952182233334, 0.005849672015756369, -0.0054204934276640415, 0.002764316275715828, -0.05536743253469467, -0.008428123779594898, 0.0005660427850671113, -0.013361988589167595, -0.01140871923416853, -0.01901903748512268, 0.04090377315878868, 0.022479502484202385, -0.017113078385591507, 0.0067249261774122715, 0.018072817474603653, -0.035631969571113586, -0.018559444695711136, -0.012388733215630054, -0.02973836660385132, 0.004825725685805082, -0.010604430921375751, -0.037984006106853485, -0.0021391347981989384, 0.00351791363209486, 0.010448981076478958, -0.004771656356751919, 0.017559153959155083, 0.01983008347451687, -0.03273923695087433, -0.011935899034142494, 0.02070871740579605, 0.028386622667312622, 0.009468966163694859, 0.012882119975984097, -0.008684954605996609, 0.01408517174422741, -0.02226322330534458, 0.018721653148531914, -0.006660718470811844, -0.012490114197134972, -0.013571509160101414, -0.00527518056333065, -0.013436335138976574, -0.0016998180653899908, -0.03233371675014496, 0.007022309582680464, -0.01732935756444931, -0.003757848171517253, 0.01800522953271866, -0.01670755445957184, -0.0038051591254770756, 0.028359588235616684, -0.004153233487159014, -0.03322586789727211, -0.022912058979272842, -0.01680217683315277, 0.04133633151650429, -0.009016131982207298, -0.030819762498140335, -0.02020857110619545, -0.013922962360084057, 0.02019505389034748, -0.0030380445532500744, -0.011712861247360706, 0.00208844430744648, -0.00900261476635933, 0.01918124593794346, -0.02500726282596588, 0.006221401505172253, -0.0027997996658086777, 0.04274214431643486, 0.005238007754087448, -0.0003588457766454667, 0.005156903062015772, -0.00468717236071825, 0.008941786363720894, -0.025845345109701157, 0.0070831384509801865, -0.009692003950476646, -0.029684297740459442, 0.01388241071254015, 0.013226814568042755, -0.00976634956896305, -0.020776305347681046, -0.011070783250033855, 0.03087383136153221, 0.016896799206733704, 0.005697600543498993, -0.01734287478029728, 0.013186261989176273, 0.018045781180262566, -0.00017287538503296673, 0.011151887476444244, -0.01473400928080082, 0.014193311333656311, -0.0015857645776122808, 0.01823502592742443, 0.00044396339217200875, 0.007481902837753296, 0.006153814494609833, 0.027818890288472176, 0.020424850285053253, 0.011205957271158695, 0.010563879273831844, -0.0060727098025381565, 0.02514243684709072, -0.0012182592181488872, -0.001269794418476522, -0.021330518648028374, -0.0183566827327013, 0.01119919866323471, 0.00706962076947093, -0.0273728147149086, -0.004734483081847429, -0.0016009716782718897, 0.003386118682101369, 0.03544272482395172, 0.018735170364379883, -0.01693735085427761, -0.004798690788447857, -0.04741917923092842, -0.013389023952186108, 0.021560315042734146, 0.01166555006057024, -0.011232992634177208, -0.013490404933691025, -0.017302323132753372, -0.003798400517553091, -0.002189825288951397, 0.030414238572120667, 0.004791932180523872, 0.018559444695711136, -0.01630203239619732, -0.020140985026955605, -0.6362929344177246, -0.02046540379524231, -0.020749269053339958, -0.01616685837507248, -0.02045188657939434, -0.001404968905262649, 0.019857117906212807, 0.012280593626201153, -0.004717586562037468, -0.0038254354149103165, -0.0333610400557518, 0.006660718470811844, 0.010394911281764507, -0.014963805675506592, -0.024953193962574005, -0.006430921610444784, 0.02396642044186592, -0.03530755266547203, 0.0010628086747601628, -0.015504502691328526, -0.006518785376101732, 0.0037071576807647943, 0.0055894614197313786, 0.021938804537057877, -0.006258574314415455, -0.01862703077495098, 0.01592354290187359, -0.003011009655892849, 0.008982338942587376, 0.02504781447350979, -0.01243604440242052, 0.02698080986738205, 0.010266494937241077, 0.024939674884080887, 0.05066336318850517, -0.011496582068502903, -0.031468600034713745, 0.01943807862699032, 0.03214447200298309, 0.022587642073631287, -0.010712570510804653, -0.017626741901040077, 0.01772136241197586, 0.009360826574265957, 0.022060461342334747, 0.007015550974756479, 0.024277321994304657, -0.01954621821641922, 0.00900261476635933, 0.01851889118552208, 0.0019498906331136823, 0.003609156236052513, -0.019505664706230164, -0.018532410264015198, -0.006829686462879181, 0.004707448184490204, 0.027143018320202827, -0.007238588761538267, 0.004126198589801788, -0.010401669889688492, 0.02005987986922264, 0.014612352475523949, -0.004051852505654097, -0.00205465080216527, -0.024466564878821373, 0.01695086993277073, -0.023371653631329536, 0.011935899034142494, 0.019397525116801262, -0.004643240477889776, 0.02387179806828499, 0.008644402958452702, 0.015261189080774784, -0.021181827411055565, 0.020127467811107635, 0.004278269596397877, 0.030981970950961113, -0.014666421338915825, -0.015153049491345882, 0.014490694738924503, 0.008887716569006443, 0.0013627269072458148, -0.028602901846170425, -0.026805082336068153, 0.018410753458738327, -0.0037646067794412374, -0.01603168249130249, 0.034496504813432693, -0.013361988589167595, 0.007481902837753296, 0.013010535389184952, 0.03230667859315872, -0.0008760990458540618, 0.02515595406293869, 0.029495052993297577, -0.0005297146853990853, -0.0036497085820883512, -7.043853111099452e-05, 0.01719418354332447, -0.007907701656222343, 0.007826597429811954, -0.02345275692641735, 0.009664969518780708, -0.01413924153894186, 0.008907992392778397, -0.010570637881755829, -0.03176598250865936, -0.004065369721502066, 0.05166365206241608, -0.028629936277866364, -0.011361408047378063, -0.0166805200278759, -0.018599996343255043, 0.007272382266819477, 0.01499084010720253, -0.022506536915898323, 0.003869367064908147, 0.006316023413091898, 0.032901447266340256, -0.006207884289324284, 0.03322586789727211, -0.017924124374985695, -0.008941786363720894, -0.00984069611877203, 0.016369618475437164, 0.03400987759232521, 0.017802467569708824, -0.015328776091337204, -0.0018569582607597113, -0.011793965473771095, 0.003930195700377226, 0.010084009729325771, 0.007880667224526405, 0.017234735190868378, -0.0009673417662270367, -0.018829792737960815, 0.030143890529870987, 0.007427833043038845, 0.013037570752203465, -0.028467727825045586, -0.01809985190629959, 0.007982048206031322, 0.00752245495095849, -0.005210972856730223, 0.01557209063321352, -0.03284737840294838, -0.010198907926678658, -0.012490114197134972, -0.02529112994670868, -0.0010729467030614614, -0.028089238330721855, -0.0018958208383992314, -0.004626343492418528, 0.019343456253409386, 0.011881829239428043, -0.004683792591094971, -0.022087495774030685, 0.0029653883539140224, -0.003571983426809311, -0.014625869691371918, 0.0033607734367251396, 0.01627499796450138, -0.031603772193193436, 0.022885024547576904, 0.023750141263008118, -0.006819548085331917, -0.013449852354824543, 0.01375399436801672, -0.009806902147829533, -0.03847063332796097, 0.012206248007714748, 3.408401244087145e-05, -0.002191514940932393, 0.048797957599163055, -0.01839723438024521, 0.003798400517553091, -0.013240331783890724, -0.0122603178024292, -0.004315442405641079, 0.01382158137857914, -0.004609446972608566, 0.026413077488541603, -0.009982628747820854, -0.0071304491721093655, 0.009860971942543983, -0.009009373374283314, 0.002673073671758175, -0.0026105553843080997, 0.011570928618311882, 0.028711041435599327, 0.007752251345664263, 0.006934446282684803, 0.010023181326687336, -0.004217441193759441, 0.0036666053347289562, 0.00788742583245039, 0.012510390020906925, 0.026872670277953148, 0.00515352375805378, 0.005569185130298138, 0.02227674052119255, 0.0020816856995224953, 0.02581830881536007, 0.004606067668646574, -0.0055793230421841145, -0.03352325037121773, 7.392349652945995e-05, -0.012098108418285847, 0.04252586513757706, -0.023642001673579216, -0.0030431135091930628, -0.03536162152886391, -0.008799852803349495, -0.011679067276418209, 0.027602611109614372, 0.025237059220671654, 0.001664334675297141, 0.017748398706316948, -0.01408517174422741, -0.009996146894991398, 0.007860391400754452, -0.012463078834116459, -0.0008989096968434751, -0.012909154407680035, -0.006637062877416611, -0.0019566493574529886, 0.023642001673579216, 0.020100433379411697, 0.012071073055267334, -0.015207119286060333, 0.01355123333632946, -0.004437099676579237, -0.005038625560700893, 0.021668454632163048, 0.010205666534602642, -0.012659082189202309, 0.015004358254373074, -0.016572380438447, 0.01914069429039955, -0.03444243595004082, -0.009360826574265957, 0.019505664706230164, 0.028765110298991203, -0.016518311575055122, -0.025750722736120224, 0.011307338252663612, 0.005849672015756369, 0.008948544971644878, 0.03073865734040737, 0.02708894945681095, -0.013794546946883202, -0.00014330598060041666, 0.0024770707823336124, -0.0016879902686923742, 0.003849090775474906, -0.021411623805761337, -0.00046550683327950537, 0.021303484216332436, 0.011679067276418209, 0.028089238330721855, 0.013483645394444466, -0.020546507090330124, 0.020222090184688568, 0.01627499796450138, 0.04704068973660469, -0.0076576294377446175, 0.005190696567296982, 0.01244956161826849, -0.01787005551159382, -0.02542630396783352, -0.019911188632249832, -0.00880661141127348, -0.004866278264671564, 0.0016533518210053444, 0.005069039762020111, 0.0001228186156367883, 0.00164574827067554, -0.006157193798571825, 0.02984650619328022, -0.005366423632949591, -0.02595348283648491, -0.023479793220758438, 0.02699432708323002, 0.008191567845642567, 0.01432848535478115, -0.017423979938030243, -0.01591002568602562, 0.004670275375247002, -0.02426380291581154, 0.03403691202402115, -0.016004648059606552, 0.023804210126399994, 0.030819762498140335, -0.027683716267347336, -0.018532410264015198, 0.011989968828856945, 0.027602611109614372, -0.01618037559092045, 0.047500282526016235, -0.01192914042621851, 0.011178922839462757, 0.012354939244687557, -0.024723397567868233, 0.015855956822633743, 0.03338807448744774, 0.0002485941513441503, 0.005366423632949591, -0.016585897654294968, 0.018694618716835976, -0.02239839732646942, -0.005717876832932234, -0.02944098226726055, -0.002412862842902541, 9.108430822379887e-05, -0.0029839747585356236, 0.012550942599773407, -0.01722121797502041, 0.013193020597100258, 0.023263514041900635, -0.016261478886008263, -0.025642583146691322, -0.007279141340404749, -0.023006681352853775, 0.000636586919426918, 0.10051567852497101, 0.027332263067364693, -0.013105157762765884, -0.0030971833039075136, 0.020803339779376984, 0.00859033316373825, -0.03138749301433563, -0.021722525358200073, 0.012530666776001453, 0.0018180955667048693, 0.0019532700534909964, -0.017802467569708824, 0.02814330905675888, -0.009414896368980408, -0.0029636987019330263, -0.000411437067668885, -0.004132957197725773, 0.00044945484842173755, 0.02043836936354637, 0.004889933858066797, 0.011030230671167374, -0.0025091746356338263, 0.016139822080731392, 0.016464240849018097, -0.034199122339487076, -0.010448981076478958, 0.01666700281202793, -0.013159227557480335, 0.012125142849981785, -0.017626741901040077, -0.011895346455276012, 0.027143018320202827, 0.020897962152957916, 0.025574995204806328, -0.021452177315950394, 0.00404171459376812, 0.0026223831810057163, 0.015815403312444687, -0.005319112446159124, -0.0006027932977303863, 0.03176598250865936, 0.02150624617934227, 0.008279431611299515, -0.013402541168034077, 0.0010391531977802515, 0.008799852803349495, -0.03352325037121773, 0.0023993453942239285, -0.04103894531726837, 0.0022861368488520384, 0.04574301466345787, -0.008488952182233334, -0.008847163990139961, 0.0037646067794412374, 0.01927586831152439, 0.011327614076435566, 0.004379650577902794, -0.016234444454312325, -0.020424850285053253, 0.0323607511818409, 0.002022546948865056, 0.00820508599281311, 0.014842148870229721, 0.0004532566526904702, -0.010476015508174896, -0.026548251509666443, -0.021668454632163048, -0.009070201776921749, -0.0003987644740846008, 0.013179503381252289, -0.015180084854364395, -0.00788742583245039, -0.00537994084879756, 0.00846191681921482, 0.011712861247360706, 0.007015550974756479, 0.023398688063025475, -0.004808829165995121, 0.0029653883539140224, -0.010590913705527782, -0.015504502691328526, -0.02998168021440506, 0.02475043199956417, -0.013699924573302269, -0.024034006521105766, -0.005565805826336145, 0.012199489399790764, 0.029684297740459442, -0.032279644161462784, 0.0011988278711214662, -0.005609737243503332, 0.014612352475523949, 0.012044038623571396, -0.008880957961082458, 0.006187607999891043, -0.0017091112677007914, -0.007779286243021488, -0.0008870819583535194, -0.017302323132753372, -0.007029068656265736, 0.0035618452820926905, -0.04839243367314339, -0.00859033316373825, 0.00021300527441781014, 0.006697891280055046, -0.013375506736338139, -0.0014142621075734496, 0.016599414870142937, -0.015180084854364395, -0.014274416491389275, 0.0013027432141825557, -0.017140112817287445, -0.0014091930352151394, 0.005231249146163464, 0.014233863912522793, 0.005136626772582531, 0.005815878510475159, -0.0006589751574210823, 0.011679067276418209, -0.004805449862033129, 0.0018586479127407074, -0.02644011192023754, 0.0018130266107618809, 0.008178050629794598, -0.03844359889626503, -0.012017003260552883, -0.0020867546554654837, -0.021533280611038208, 0.027656681835651398, 0.018153920769691467, 0.019262351095676422, 0.0023402066435664892, -0.008684954605996609, -0.008333501406013966, -0.024818018078804016, 0.005089316051453352, -0.01761322282254696, 0.002639280166476965, -0.01876220665872097, 0.014287933707237244, -0.015153049491345882, -0.016464240849018097, -0.007927978411316872, -0.03322586789727211, 0.0025936586316674948, -0.023912349715828896, -0.01413924153894186, -0.002880904357880354, -0.009022890590131283, -0.003575362730771303, 0.0013508991105481982, -0.022087495774030685, -0.033306971192359924, -0.00661678658798337, -0.005775325931608677, -0.01732935756444931, -0.010421945713460445, -0.01639665476977825, 0.03809214383363724, -0.012253559194505215, 0.028332553803920746, -0.035118307918310165, 0.007961771450936794, -0.0015840749256312847, 0.0017167148180305958, 0.0106922946870327, -0.010780157521367073, -0.0274809543043375, -0.03130638971924782, -0.015558572486042976, 0.038524702191352844, 0.024006972089409828, 0.013145709410309792, -0.02383124642074108, -0.010868021287024021, 0.053258709609508514, -0.013125433586537838, -0.0099623529240489, -0.011111334897577763, -0.03619970381259918, -0.01865406706929207, -0.0018164059147238731, 0.0018823033897206187, 0.009833937510848045, -0.025372233241796494, 0.007704940624535084, 0.04677034169435501, 0.012158936820924282, 0.011422236450016499, -0.02319592610001564, -0.0025091746356338263, -0.016991421580314636, 0.012334663420915604, -0.0021256173495203257, 0.0017978193936869502, -0.010915332473814487, 0.022046944126486778, -0.008745783008635044, 0.016139822080731392, 0.0011253268457949162, 4.580616587190889e-05, 0.01107754185795784, -0.014963805675506592, -0.007373763248324394, -0.02973836660385132, 0.006022019311785698, -0.020897962152957916, -0.0256966520100832, 0.03130638971924782, -0.02425028569996357, -0.0057922229170799255, -0.01355123333632946, -0.0035618452820926905, -0.0404171422123909, -0.025088367983698845, 0.005778705235570669, 0.013044329360127449, 0.020140985026955605, -0.017031973227858543, -0.018532410264015198, 0.002654487267136574, -0.0032019433565437794, 0.048797957599163055, 0.004450616892427206, 0.021533280611038208, -0.0009766350267454982, -0.017788950353860855, 0.0064782327972352505, 0.00658299308270216, -0.009327033534646034, -0.0009208755800500512, 0.02971133217215538, 0.0007206485024653375, -0.00840784702450037, -1.4933206102796248e-06, -0.041525572538375854, -0.007306176237761974, -0.038524702191352844, -0.019870635122060776, 0.024790983647108078, 0.010658500716090202, -0.0033945669420063496, 0.00886744074523449, 0.00748866144567728, -0.025345198810100555, 0.007894184440374374, 0.004281648900359869, 0.016788659617304802, -0.02660232037305832, -0.007502179127186537, -0.02684563398361206, 0.020668165758252144, 0.02319592610001564, 0.020938513800501823, 0.00813749898225069, -0.018424270674586296, -0.03701074793934822, -0.007339969743043184, -0.02384476363658905, -0.009928558953106403, 0.003217150690034032, 0.02385828085243702, 0.0031191492453217506, 0.010915332473814487, 0.01401758473366499, -0.004014679696410894, -0.014287933707237244, -0.005785464309155941, -0.031063076108694077, 0.025182990357279778, 0.01851889118552208, 0.016464240849018097, 0.01146278902888298, 0.02241191454231739, 0.024317873641848564, 0.008164533413946629, -0.0026646251790225506, 0.0006044830079190433, -0.02334461733698845, -0.005755049642175436, -0.0004579032538458705, 0.01865406706929207, 0.004663516767323017, -0.014031101949512959, -0.018207991495728493, -0.011638515628874302, -0.0004507221165113151, 0.01478807907551527, 0.003791641676798463, -0.039416853338479996, -0.028197377920150757, -0.0012292421888560057, -0.018802758306264877, 0.024142146110534668, -0.0007020620396360755, 0.028386622667312622, -0.0013787788338959217, 0.015139532275497913, -0.03857877105474472, 0.021668454632163048, -0.02007339708507061, 0.005339388735592365, -0.03679446876049042, -0.003122528549283743, 0.0022928956896066666, -0.027007844299077988, 0.012071073055267334, -0.01231438759714365, -0.025737205520272255, -4.76872537547024e-06, 0.008840405382215977, 0.0055894614197313786, 0.007238588761538267, 0.0115303760394454, -0.0029518709052354097, -0.013084881007671356, 0.014220346696674824, -0.014828630723059177, -0.0302249938249588, 0.007583283353596926, 0.025629065930843353, -0.003048182697966695, 0.023898832499980927, 0.0013585026608780026, 0.035496797412633896, 0.017261769622564316, 0.01681569404900074, 0.006430921610444784, -0.0372810997068882, 0.02422325126826763, -0.010786917060613632, 0.015234154649078846, 0.018451305106282234, -0.013557991944253445, -0.011854794807732105, -0.025101885199546814, 0.002079996047541499, 0.0014303140342235565, -0.0006864324677735567, -0.01772136241197586, 0.02124941535294056, 0.02998168021440506, -0.012044038623571396, -0.01088153850287199, -0.0027829029131680727, 0.0015806956216692924, 0.009043167345225811, -0.0020647889468818903, -0.03738923743367195, 0.004484410397708416, 0.0006577079184353352, 0.030711622908711433, 0.0015823852736502886, -0.02750798873603344, -0.00959062296897173, -0.025385750457644463, -0.025439821183681488, -0.021587351337075233, -7.904534140834585e-05, 0.024574704468250275, 0.04087673872709274, 0.011631757020950317, -0.0028961114585399628, 0.024182699620723724, -0.015409881249070168, 0.008245637640357018, -0.0008701851475052536, -0.011057265102863312, -0.006143676117062569, -0.010672018863260746, -0.020357264205813408, 0.0005842068349011242, -0.025723686441779137, -0.0017471290193498135, 0.016207410022616386, 0.009833937510848045, 0.009969111531972885, 0.0019701668061316013, 0.0018992002587765455, 0.012442803010344505, -0.010928849689662457, -0.009915041737258434, 0.01705900765955448, 0.01486918330192566, -0.0038457114715129137, -0.011895346455276012, -0.012138660997152328, 0.002973836613819003, -0.01335522998124361, -0.021695490926504135, -0.02892732061445713, -0.010340841487050056, -0.015301741659641266, 0.010354358702898026, -0.013706683181226254, -0.011834518052637577, -0.023669036105275154, -0.035631969571113586, 0.038497667759656906, -0.01213190145790577, -0.0022945853415876627, 0.02592644840478897, 0.0029248360078781843, -0.013125433586537838, -0.014314968138933182, 0.019492147490382195, 0.008543021976947784, -0.03300958871841431, 0.013781029731035233, -0.025967001914978027, 0.003791641676798463, -0.012023762799799442, 0.002208411693572998, -0.010699053294956684, 0.014031101949512959, -0.003663226030766964, -0.002804868621751666, -0.01666700281202793, 0.022209152579307556, 0.01023946050554514, -0.024466564878821373, -0.007056103553622961, -0.003923436626791954, 0.012983500957489014, -0.004781794268637896, -0.010611189529299736, -0.003977506421506405, -0.009563588537275791, 0.01732935756444931, 0.005964570213109255, 0.009103995747864246, -0.01787005551159382, -0.014585317112505436, 0.018316131085157394, -0.03260406479239464, 0.0023081027902662754, 0.2033022940158844, -0.017153630033135414, 0.014220346696674824, 0.03622673824429512, -0.007982048206031322, 0.011821000836789608, 0.016126304864883423, 0.0021779974922537804, -0.02241191454231739, -2.1398212993517518e-05, -0.008292948827147484, 0.03309069201350212, -0.01772136241197586, 0.006079468410462141, 0.005609737243503332, 7.48739403206855e-05, -0.04663516581058502, -0.006917549762874842, -0.001589988823980093, -0.06980405747890472, 0.013835099525749683, 0.0007578214281238616, -0.017396943643689156, -0.004051852505654097, 0.014058137312531471, 0.006518785376101732, -0.01954621821641922, -0.013794546946883202, 0.04079563170671463, -0.0051873172633349895, -0.03114418126642704, -0.009786626324057579, 3.9964888856047764e-06, -0.005163661669939756, -0.009354067966341972, 0.006664097774773836, 0.01943807862699032, 0.0050622811540961266, 0.0256966520100832, -0.01915421150624752, 0.0031934950966387987, -0.012828050181269646, -0.0032881172373890877, -0.001608575345017016, -0.01630203239619732, 0.01865406706929207, -0.014423107728362083, -0.00865792017430067, -0.027034878730773926, 0.01505842711776495, -0.023628484457731247, 0.0023689311929047108, 0.0315767377614975, 0.01088153850287199, 0.0009335481445305049, -0.014409590512514114, 0.005417113658040762, 0.026656391099095345, -0.013706683181226254, 0.020235607400536537, -0.00932027492672205, 0.016261478886008263, 0.013639096170663834, 0.0263049378991127, -0.03233371675014496, 0.0151124969124794, 0.003852470312267542, -0.015234154649078846, 0.02593996562063694, -0.01996525749564171, 0.00938786193728447, -0.017288805916905403, -0.002546347677707672, -0.011057265102863312, -0.008921509608626366, 0.003720675129443407, 0.036929644644260406, -0.02227674052119255, 0.01772136241197586, -0.004396547097712755, 0.02343923971056938, -0.01296998281031847, 0.016910316422581673, -0.007914461195468903, -0.0025328302290290594, -0.021438658237457275, 0.0058395336382091045, -0.008184809237718582, -0.010989678092300892, 0.010665259324014187, -0.025182990357279778, -0.02475043199956417, 0.011395201086997986, -0.009272963739931583, -0.001213190145790577, -0.016085753217339516, 0.030846796929836273, 0.01173313707113266, -0.011084300465881824, -0.0021763078402727842, -0.010780157521367073, -0.0112803028896451, 0.025588512420654297, -0.0021611007396131754, -0.03349621593952179, -0.003421601839363575, 0.02123589813709259, -0.0017099560936912894, 0.0213845893740654, 0.00990828312933445, 0.018167437985539436, -0.009252686984837055, 0.0015367638552561402, -0.016315549612045288, 0.005893603432923555, 0.017302323132753372, -0.008840405382215977, -0.029630227014422417, -0.01492325309664011, 0.011712861247360706, 0.016842730343341827, -0.01400406751781702, -0.013483645394444466, 0.005210972856730223, -0.004234337713569403, 0.00187216536141932, -0.0041059223003685474, 0.02516947314143181, 0.008319984190165997, -0.0027339020743966103, 0.022344326600432396, -0.02566961757838726, 0.005197455640882254, 0.015004358254373074, -0.016504794359207153, 0.014842148870229721, 0.00977310910820961, -0.024142146110534668, 0.036578189581632614, -0.011591204442083836, 0.0057651880197227, -0.007725216448307037, -5.82411557843443e-05, 0.008232120424509048, 0.002056340454146266, 0.0008296328596770763, 0.013612061738967896, -0.0182485431432724, 0.012348180636763573, -0.012605012394487858, -0.03822731971740723, 0.000879478408023715, 0.009563588537275791, -0.0072994171641767025, 0.0009504449553787708, -0.013625578954815865, -0.015531538054347038, -0.035388655960559845, -0.000785701151471585, 0.022885024547576904, -0.04236365482211113, 0.020762786269187927, 0.020668165758252144, 0.004210682585835457, -0.01969490945339203, -0.005136626772582531, -0.1719418317079544, 0.008245637640357018, 0.018816275522112846, -0.0062416777946054935, 0.011922381818294525, 0.028251448646187782, 0.021317001432180405, 0.004683792591094971, -0.006471474189311266, -0.014625869691371918, 0.030414238572120667, 0.016869764775037766, -0.045418597757816315, -0.014179794117808342, -0.006089606322348118, 0.009955594316124916, -0.003947092220187187, 0.004440478980541229, 0.036307841539382935, 0.024845054373145103, 0.007056103553622961, -0.020019328221678734, 0.015842439606785774, 0.009854213334619999, 0.0056232549250125885, 0.008347018621861935, 0.0020276159048080444, 0.01504490990191698, 0.015436915680766106, -0.018302613869309425, -0.020654646679759026, 0.015220636501908302, 0.01296998281031847, -0.03219854086637497, 0.03295551612973213, 0.015369328670203686, -0.009117512963712215, -0.007921219803392887, 0.0019735461100935936, 0.019519181922078133, 0.0028690765611827374, -0.001012118300423026, 0.02621031552553177, -0.0016998180653899908, 0.00541373435407877, 0.03322586789727211, 0.004670275375247002, -0.0008482193225063384, 0.004758138675242662, -0.017775433138012886, 0.012787497602403164, -0.0006695356569252908, 0.021722525358200073, -0.004930485971271992, 0.024993745610117912, 0.0230607520788908, 0.01551802083849907, 0.014490694738924503, -0.0031664601992815733, -0.020695200189948082, 0.0035652245860546827, -0.012165695428848267, 0.031603772193193436, -0.020505955442786217, 0.002585210371762514, -0.0018687860574573278, -0.005393458530306816, 0.010266494937241077, -0.023425722494721413, 0.018059298396110535, 0.009732556529343128, 0.0037274339701980352, 0.03219854086637497, -0.012976741418242455, -0.006113261915743351, -0.0021171688567847013, -0.026034587994217873, 0.025710169225931168, -0.011976451613008976, -0.018951449543237686, -0.05020377039909363, 0.04706772416830063, -0.008171292021870613, -0.014774560928344727, 0.004545238800346851, 0.013639096170663834, -0.021168310195207596, -0.017924124374985695, -0.020154502242803574, 0.011185681447386742, 0.018153920769691467, -0.03795697167515755, 0.0020259262528270483, -0.0014666421338915825, 0.023912349715828896, 0.021546797826886177, 0.024534152820706367, -0.018694618716835976, 0.0042748902924358845, -0.005112971644848585, 0.0029299049638211727, -0.02957615815103054, 0.009212135337293148, 0.02933284267783165, 0.03338807448744774, 0.010050216689705849, 0.008752541616559029, -0.004538480192422867, 0.03557790070772171, 0.006349817384034395, -0.012773980386555195, 0.004933865275233984, 0.011097817681729794, -0.00021385011496022344, 0.010530085302889347, 0.03411801531910896, -0.011881829239428043, -0.013247090391814709, 0.020046362653374672, -0.023750141263008118, 0.0682901069521904, -0.03271220251917839, -0.008630884811282158, -0.006904032081365585, -0.01499084010720253, -0.013612061738967896, -0.11024823784828186, 0.00023972334747668356, 0.01029353030025959, 0.019208282232284546, 0.007711699232459068, 0.01708604395389557, -0.02084389142692089, 0.006961481180042028, 0.007691422943025827, 0.0021002721041440964, -0.02229025773704052, -0.025331681594252586, 0.01680217683315277, -0.0016508173430338502, 0.008711989969015121, -0.032631099224090576, -0.0059949844144284725, -0.025574995204806328, 0.008705231361091137, 0.02725115790963173, 0.0002988621417898685, -0.021317001432180405, 0.018343165516853333, -0.01942456141114235, 0.032387785613536835, 0.007603559643030167, -0.025872379541397095, 0.017140112817287445, 0.032522957772016525, 0.01705900765955448, -0.01017187349498272, -0.005369802936911583, 0.012003486044704914, -0.0074683851562440395, 0.0010864641517400742, -0.01720770075917244, -0.03860580548644066, 0.00017519868561066687, 0.021681973710656166, -0.04314766824245453, 0.01901903748512268, -0.013699924573302269, 0.013571509160101414, -0.010969402268528938, -0.0065221646800637245, 0.001757267164066434, -0.02164142020046711, -0.00407550809904933, 0.0035787420347332954, -0.019897671416401863, -0.02633197233080864, 0.0004080577054992318, -0.032901447266340256, -0.007272382266819477, 0.033279936760663986, 0.003680122783407569, 0.033279936760663986, -0.005045384168624878, -0.012510390020906925, -0.006687753368169069, -0.02710246667265892, 0.005565805826336145, 0.008238879032433033, 0.03311772644519806, 0.010077251121401787, 0.0029603191651403904, -0.014612352475523949, -0.004700689576566219, 0.021154792979359627, 0.014558282680809498, -0.024466564878821373, 0.001328933285549283, -0.03479388728737831, 0.020249124616384506, -0.020776305347681046, 0.021830664947628975, -0.018572961911559105, -0.011875070631504059, 0.013767512515187263, 0.003629432525485754, 0.003855849616229534, -0.03130638971924782, -0.005785464309155941, -0.003141114953905344, 0.004879795480519533, 0.02346627414226532, 0.00924592837691307, -0.016977904364466667, -0.0013213297352194786, -0.013733718544244766, 0.004889933858066797, 0.017883572727441788, -0.011320855468511581, -0.03306365758180618, 0.01591002568602562, 0.029765401035547256, 0.0003100562607869506, -0.0021948942448943853, -0.008157774806022644, -0.006795892491936684, -0.022493019700050354, 0.00032610821654088795, -0.06477557122707367, 0.02973836660385132, 0.0021256173495203257, 0.015436915680766106, 0.005653669126331806, -0.013909445144236088, 0.007927978411316872, -0.021573834121227264, -0.020370781421661377, 0.0026865911204367876, -0.019073106348514557, 0.02370958961546421, -0.00100958370603621, -0.005829395726323128, -0.021668454632163048, -0.012321146205067635, -0.003259392688050866, -0.01682921126484871, -0.0026257627177983522, 0.007684664335101843, 0.009462207555770874, 0.002522692084312439, 0.023114820942282677, 0.005961190909147263, -0.026426594704389572, -0.006856721360236406, 0.00919185858219862, 0.011381683871150017, -0.007711699232459068, -0.03141452744603157, 0.014396073296666145, -0.04552673548460007, -0.008198327384889126, -0.011638515628874302, -0.003872746368870139, 0.017167147248983383, -0.0229526124894619, 0.006464715581387281, 0.004748000763356686, 0.046202607452869415, -0.020100433379411697, -0.01400406751781702, 0.011395201086997986, -0.03652412071824074, 0.009928558953106403, 0.016721071675419807, -0.015869474038481712, -0.002248964039608836, 0.010590913705527782, -0.01954621821641922, 0.0027609369717538357, 0.03468574956059456, -0.001028170227073133, -0.03184708580374718, -0.0023807589896023273, -0.01591002568602562, 0.03730813413858414, -0.016383135691285133, 0.01719418354332447, -0.026507697999477386, 0.009232411161065102, -0.014761043712496758, 0.0005491459742188454, 0.003293186193332076, 0.0225606057792902, -0.01653182879090309, -0.013909445144236088, -0.014436624944210052, -0.021736042574048042, -0.015274706296622753, 0.001404124079272151, 0.007238588761538267, 0.00879309419542551, 0.004251234699040651, 0.002640969818457961, 0.03363138809800148, -0.02005987986922264, 0.00560635793954134, -0.024804500862956047, 0.0032239092979580164, 0.0003442722954787314, -0.025507409125566483, -0.033144760876894, 0.004710827488452196, 0.03373952955007553, -0.007711699232459068, 0.021722525358200073, 0.006643821485340595, -0.015274706296622753, 0.01983008347451687, 0.01400406751781702, -0.009468966163694859, -0.009550071321427822, -0.00984069611877203, 0.015274706296622753, 0.01680217683315277, 0.0014894529012963176, -0.005508356727659702, 0.022655228152871132, 0.03325290232896805, -0.01114512886852026, 0.016126304864883423, 0.012280593626201153, -0.020546507090330124, -0.01009752694517374, -0.005937535315752029, -0.022493019700050354, -0.015734300017356873, 0.014112207107245922, 0.018153920769691467, 0.00802259985357523, -0.0055015976540744305, 0.02504781447350979, 0.020019328221678734, -0.012659082189202309, -0.007339969743043184, 0.007184518966823816, -0.012267076410353184, -0.011030230671167374, 0.025899413973093033, 0.008225361816585064, 0.042012203484773636, 0.01401758473366499, 0.007745492737740278, 0.012199489399790764, 0.010509809479117393, 0.010543602518737316, 0.02216860093176365, -0.004180267918854952, 0.009151306934654713, 0.003274599788710475, -0.00247369147837162, -0.040714528411626816, 0.0001812181726563722, -0.0012402250431478024, -0.027845924720168114, -0.001926235156133771, 0.007326452061533928, -0.021573834121227264, 0.034226156771183014, 0.013483645394444466, -0.019221799448132515, -0.0005694221472367644, 0.007319693453609943, 0.028494762256741524, 0.011118093505501747, -0.005238007754087448, -0.010374634526669979, -0.008543021976947784, -0.005254904739558697, -0.017951158806681633, 0.00449454877525568, -0.011652032844722271, -0.01785653829574585, 0.00802259985357523, -0.009016131982207298, 0.04155261069536209, -0.023547379299998283, -0.02738633193075657, 0.01735639199614525, -0.002652797382324934, 0.021006101742386818, -0.0056570484302937984, -0.011645274236798286, 0.015017875470221043, 0.013659372925758362, 0.006397128105163574, 0.0002792196173686534, -0.040849700570106506, -0.010543602518737316, 0.012726669199764729, -0.015396363101899624, -0.010334082879126072, 0.030657552182674408, 0.010888297110795975, 0.0038828845135867596, -0.015720782801508904, 0.015950579196214676, -0.011293821036815643, -0.010374634526669979, 0.014896218664944172, -0.017383426427841187, -0.014598834328353405, 0.016626451164484024, 0.0024398977402597666, -0.03073865734040737, 0.004775035660713911, -0.03209039941430092], "045f61f9-9293-4f49-b6a3-d469a97bdd40": [0.003916256129741669, -0.010228976607322693, 0.00035646563628688455, 0.01154229324311018, -0.0011246120557188988, 0.02967824973165989, -0.00577453151345253, -0.017113734036684036, 0.0015857960097491741, -0.017736544832587242, 0.01826457865536213, 0.008489171043038368, 0.023531384766101837, 0.014175696298480034, -0.0005018020747229457, 0.014351707883179188, 0.04722524434328079, -0.007548185996711254, 0.04906659573316574, -0.01486620306968689, 0.0004480677598621696, -0.003435609396547079, -0.0229356549680233, 0.03758522868156433, -0.0011127650504931808, 0.032007016241550446, 0.015746260061860085, -0.020038234069943428, 0.017817780375480652, -0.005530823487788439, -0.016897104680538177, 0.0076565006747841835, 0.013343026861548424, -0.006590277422219515, -0.038912083953619, -0.010621617548167706, -0.00026126709417439997, -0.024100037291646004, 0.006806906778365374, -0.012226030230522156, 0.007460180204361677, -0.0045999931171536446, -0.01666693575680256, -0.0014563259901478887, -0.011677687056362629, 0.024018801748752594, 0.008414704352617264, -0.01316701527684927, -0.015177608467638493, 0.013349796645343304, 0.04616917297244072, 0.009619706310331821, -0.023626161739230156, -0.0007391637191176414, -0.020268402993679047, -0.0031851313542574644, 0.010371140204370022, 0.015204686671495438, -0.024018801748752594, 0.0261444803327322, 0.0070133819244802, 0.009667093865573406, 0.01230049692094326, 0.01410799939185381, -0.044923555105924606, -0.011616759933531284, 0.0074060228653252125, -0.0013843982014805079, -0.004765850026160479, -0.027660885825753212, 0.046683669090270996, 0.014906820841133595, -0.00416673393920064, -0.005947158206254244, 0.015340080484747887, -0.0424593910574913, -0.033496346324682236, -0.0046846140176057816, -0.017614690586924553, 0.0034085307270288467, -0.01477142795920372, -0.03977860137820244, -0.013437801972031593, -0.00823869276791811, 0.030301058664917946, -0.0065090409480035305, 0.008387625217437744, 0.020214244723320007, -0.021811887621879578, -0.02786397561430931, 0.007913748733699322, 0.036718711256980896, 0.008089760318398476, 0.015096371993422508, -0.015407777391374111, 0.019076939672231674, -0.015231765806674957, 0.015082832425832748, -0.0042648944072425365, -0.018982164561748505, -0.02300335094332695, 0.010174819268286228, -0.01643676683306694, -0.005960697773844004, -0.03114049881696701, 0.009423385374248028, -0.007805433589965105, -0.009260913357138634, 0.00813037808984518, -0.02328767627477646, -0.006018240004777908, 0.024086499586701393, -0.01242235116660595, -0.04476108029484749, -0.0055883657187223434, -0.021866045892238617, 0.04803760349750519, -0.017655309289693832, -0.03254859149456024, -0.007642961572855711, 0.003095433348789811, 0.014703731052577496, -0.0014605571050196886, -0.006299181375652552, 0.008651643060147762, -0.018562445417046547, 0.017181431874632835, -0.021771270781755447, 0.0009113673004321754, 0.006407496053725481, 0.04424658790230751, 0.006437959615141153, 0.0065090409480035305, -0.0023490767925977707, -0.01551609206944704, 0.014581876806914806, -0.023544924333691597, -0.006471808068454266, -0.0060013155452907085, -0.02824307791888714, 0.022353462874889374, 0.012902997434139252, -0.018995704129338264, -0.019320648163557053, -0.011332433670759201, 0.029163753613829613, 0.018535366281867027, 0.00653273519128561, -0.02445206046104431, -0.002536935266107321, 0.012950385920703411, 0.003486381843686104, 0.01156260259449482, -0.011163191869854927, 0.017357442528009415, 0.0019462811760604382, 0.006827215664088726, -0.00175503792706877, -0.001997053623199463, 0.005070485640317202, 0.010127431713044643, 0.013079009018838406, 0.0036353147588670254, 0.002619863720610738, -0.009775408543646336, 0.028513865545392036, 0.01975390687584877, -0.0037436294369399548, -0.027254706248641014, -0.004332591313868761, 0.01562440674751997, 0.020051773637533188, -0.027674425393342972, 0.010486224666237831, 0.004200582392513752, 0.004190428182482719, 0.03674578666687012, 0.017682386562228203, -0.01240204181522131, 0.0016611086903139949, -0.05245143175125122, -0.008556867018342018, 0.030544767156243324, 0.023477228358387947, -0.010377909988164902, -0.013735667802393436, -0.004082113038748503, 0.004298742860555649, 0.0007582034450024366, 0.009409846737980843, 0.015015136450529099, 0.015082832425832748, -0.009213525801897049, -0.02489885874092579, -0.6390571594238281, -0.024140655994415283, -0.028703415766358376, -0.01410799939185381, -0.01653154380619526, 0.004982479847967625, 0.019049862399697304, 0.016951262950897217, -0.012848840095102787, -0.013458111323416233, -0.018751995638012886, 0.014162156730890274, -0.006217945367097855, -0.018575984984636307, -0.01833227649331093, -0.014947439543902874, 0.02152756229043007, -0.02636110968887806, 0.005134797655045986, -0.023761553689837456, 0.010188358835875988, 0.01219895202666521, -0.0048538558185100555, 0.005056946072727442, -0.005141566973179579, -0.012916537001729012, 0.021771270781755447, 0.003763938555493951, 0.002171372761949897, 0.03468780592083931, -0.022042056545615196, 0.02117553912103176, 0.01489328220486641, 0.0033949913922697306, 0.049987271428108215, -0.005016328301280737, -0.01783131994307041, 0.03782893717288971, 0.011129342950880527, 0.015001596882939339, -0.019049862399697304, -0.017398061230778694, 0.029109597206115723, 0.014297550544142723, 0.007906978949904442, 0.006827215664088726, 0.02661835588514805, -0.011197039857506752, 0.003980568144470453, 0.012165103107690811, 0.0030429682228714228, 0.0025792457163333893, -0.03498567268252373, -0.011623529717326164, 0.003066662233322859, -0.010939792729914188, 0.03287353366613388, -0.016897104680538177, -3.546145308064297e-05, -0.001587488455697894, 0.012659289874136448, 0.03095094859600067, 0.0027586419600993395, -0.001836273935623467, -0.0011863852851092815, 0.010337291285395622, -0.017018958926200867, 0.016721094027161598, 0.02768796496093273, -4.408221138874069e-05, 0.011041337624192238, 0.015935812145471573, 0.0021747576538473368, -0.02442498318850994, 0.010831478051841259, 0.01477142795920372, 0.02454683557152748, -0.022421158850193024, 0.003335756715387106, 0.023490767925977707, 0.006309335585683584, -0.007717427797615528, -0.043434225022792816, -0.013742437586188316, 0.01154229324311018, -0.004498448222875595, -0.013403953984379768, 0.03620421513915062, -0.011901086196303368, -0.01231403648853302, 7.303843449335545e-05, 0.0063397991470992565, -0.0009722943650558591, -4.564240953186527e-05, 0.0277827400714159, 0.003142820904031396, -0.013491959311068058, -0.003997492138296366, 0.021987900137901306, -0.009457234293222427, -0.008028833195567131, -0.020945370197296143, -0.00813714787364006, -0.014351707883179188, 0.00997172947973013, -0.014960979111492634, -0.03127589076757431, 0.004748926032334566, 0.0421886071562767, -0.01615244150161743, -0.001491020666435361, -0.020796436816453934, 0.0027484875172376633, -0.01318732462823391, 0.01994345895946026, -0.02321998029947281, 0.02303043007850647, 0.004214121960103512, 0.02148694358766079, 0.0011677687289193273, 0.02144632674753666, -0.01404030341655016, 0.0033103704918175936, -0.02137862890958786, 0.025860153138637543, 0.03728736191987991, 0.018548905849456787, -0.01657216064631939, 0.007798663806170225, -0.006397341378033161, -0.005216033663600683, -0.0015240227803587914, 0.02623925544321537, 0.007954366505146027, 0.011603220365941525, -0.0031343589071184397, 0.02449267916381359, 0.007588804233819246, 0.009403076954185963, -0.021879585459828377, -0.014351707883179188, 0.0026401726063340902, 0.013647661544382572, 0.01636907085776329, -0.01826457865536213, -0.022543013095855713, -0.02461453340947628, -0.002096906304359436, -0.0390474759042263, -0.003777477890253067, -0.0010662236018106341, -0.006688437424600124, 0.006329644937068224, 0.015231765806674957, -0.00417011883109808, -0.0028398779686540365, -0.0007577803335152566, 0.009511391632258892, -0.009139059111475945, -0.018765535205602646, 0.006722285877913237, 0.012266648933291435, -0.02110784314572811, 0.008719339966773987, 0.02818892151117325, -0.018711376935243607, -0.009484312497079372, 0.01315347570925951, 0.002019055187702179, -0.028730494901537895, 0.01658570021390915, -0.0022187605500221252, 0.008374086581170559, 0.048552099615335464, -0.019307108595967293, -0.0034796122927218676, 0.006488732062280178, -0.01654508151113987, -0.0164503064006567, 0.016870027408003807, 0.0006735825445502996, 0.01240204181522131, -0.015786878764629364, -0.012679598294198513, 0.023639699444174767, -0.006167172454297543, -0.011826619505882263, -0.015854574739933014, 0.00972802098840475, 0.02623925544321537, 0.0046067629009485245, 0.0006879681022837758, 0.0008411319577135146, -0.009992037899792194, -0.005547747481614351, 0.00530065456405282, 0.009484312497079372, 0.025535209104418755, 0.012740525417029858, 0.01220572181046009, 0.012131255120038986, 0.000530996301677078, 0.03452533483505249, -0.008726108819246292, -0.0010196820367127657, -0.03487735986709595, 0.012090637348592281, -0.002112138085067272, 0.04497770965099335, -0.013620583340525627, -0.007961136288940907, -0.03300892934203148, -0.010465915314853191, -0.018643680959939957, 0.01313316635787487, 0.03482320159673691, 0.007994984276592731, 0.012828531675040722, -0.015719182789325714, -0.0003930641687475145, 0.007534646894782782, -0.010100352577865124, 0.017303286120295525, -0.001853198162280023, -0.011860468424856663, -0.024032341316342354, -0.010465915314853191, 0.025481050834059715, 0.008191305212676525, -0.009585857391357422, 0.024303128942847252, -0.00895627774298191, -0.00226953299716115, 0.013112857937812805, 0.0029177293181419373, 0.013579965569078922, 0.001485097105614841, -0.019036322832107544, 0.03994107246398926, -0.028540944680571556, -0.008658412843942642, 0.007859591394662857, 0.027038076892495155, -0.017370982095599174, -0.01792609505355358, 0.0008330929558724165, 0.01948312111198902, -0.004985864739865065, 0.022543013095855713, 0.025129027664661407, -0.004965555388480425, 0.011400130577385426, -0.006739209871739149, -0.013735667802393436, 0.0051111034117639065, -0.03444409742951393, -0.009687403216958046, 0.01979452557861805, 0.015556709840893745, 0.025318579748272896, 0.004738771356642246, -0.012889458797872066, 0.03162791579961777, 0.021703572943806648, 0.05913987010717392, -0.00825223233550787, 0.004210737068206072, 0.008428243920207024, -0.008881811983883381, -0.016748173162341118, -0.01825103908777237, -0.0003006158221978694, 0.0027061770670115948, 0.012354654259979725, -0.007162314839661121, -0.0010949947172775865, 0.007026921026408672, -0.002806029748171568, -0.0012185412924736738, -0.011948473751544952, -0.015678564086556435, -0.020227784290909767, 0.025264421477913857, 0.0048538558185100555, -0.0046033780090510845, -0.022583631798624992, -0.03154667839407921, -0.0024675459135323763, -0.015407777391374111, 0.0532367117702961, -0.023341834545135498, 0.013539346866309643, 0.020837055519223213, -0.016748173162341118, 0.0015553325647488236, 0.01067577488720417, 0.0034965365193784237, -0.020796436816453934, 0.03812680020928383, 0.0008335160673595965, 0.012875919230282307, 0.008164226077497005, -0.02641526609659195, 0.012050018645823002, 0.023802172392606735, 0.0046846140176057816, -0.010939792729914188, -0.004735386464744806, 0.0115693723782897, -0.019212333485484123, -0.012131255120038986, -0.026983918622136116, -0.015827497467398643, 0.005239727441221476, 0.004664305131882429, 0.004935091827064753, -0.01617952063679695, 0.008902120403945446, 0.02642880566418171, -0.012503586709499359, -0.021067224442958832, -0.014690191484987736, -0.030003193765878677, -0.0012870841892436147, 0.10127431899309158, 0.03309016302227974, -0.023328294977545738, -0.00123038818128407, 0.01677525043487549, 0.011224118992686272, -0.029082518070936203, -0.04562760144472122, 0.035066910088062286, -0.0011178423883393407, 0.0024184659123420715, -0.006231484469026327, 0.04643996059894562, -0.0018819692777469754, 0.0018735071644186974, -0.0038959472440183163, -0.0075752646662294865, 0.0013277021935209632, -0.007859591394662857, 0.005019713193178177, -0.012605132535099983, 0.009558779187500477, 0.013106088154017925, 0.02154110185801983, -0.026956839486956596, -0.010080044157803059, 0.031871624290943146, 0.006607201416045427, 0.017276206985116005, -0.024113576859235764, -0.027119312435388565, 0.030788475647568703, 0.014135078527033329, 0.01798025332391262, -0.023707397282123566, 0.007717427797615528, 0.00331544759683311, 0.011725074611604214, -0.0017990407068282366, -0.010134201496839523, 0.026753749698400497, 0.01240204181522131, 0.0038350201211869717, -0.006671513430774212, -0.0003681009984575212, 0.010438837110996246, -0.0229356549680233, -0.0010399911552667618, -0.04470692574977875, -0.006309335585683584, 0.04465276747941971, -0.005307423882186413, 0.005100949201732874, -0.011264736764132977, 0.01826457865536213, -0.0007167392177507281, -0.011955243535339832, -0.019171714782714844, -0.025115489959716797, 0.0464128814637661, 0.0066478196531534195, 0.005906540434807539, 0.0090781319886446, -0.0017990407068282366, -0.019320648163557053, -0.009023974649608135, -0.011034567840397358, -0.021933741867542267, -0.012754064984619617, 0.020295482128858566, -0.008847963064908981, -0.005469896364957094, -0.02151402272284031, 0.01324825081974268, 0.00822515320032835, 0.011637069284915924, 0.015962889418005943, -0.02140570804476738, 0.002802644856274128, -0.01803440973162651, -0.005953927990049124, -0.02139216847717762, 0.007846051827073097, -0.01951019838452339, -0.018467670306563377, -0.0036454692017287016, 0.00824546255171299, 0.035337697714567184, -0.035256460309028625, 0.010120661929249763, -0.011609990149736404, 0.0054191239178180695, -0.008184535428881645, -0.0036420843098312616, 0.0031885162461549044, -0.011968783102929592, -0.004112576600164175, -0.01777716353535652, -0.008820884861052036, 0.00491139804944396, 0.00283818575553596, -0.04481523856520653, -0.008529788814485073, -0.011312124319374561, 0.015678564086556435, -0.009531700052320957, -0.0015984891215339303, 0.005276960786432028, -0.015001596882939339, -0.010743471793830395, 0.018630141392350197, -0.01615244150161743, -0.004786159377545118, 0.006312720477581024, -0.004413827322423458, 0.0029448079876601696, -0.0017448833677917719, 0.015489012934267521, -0.0025707834865897894, -0.0002811530139297247, 0.0013488574186339974, -0.022407619282603264, 0.0009858336998149753, 0.0013014697469770908, -0.040211860090494156, -0.002738333074375987, 0.0029634246602654457, -0.027525492012500763, 0.026970379054546356, -0.01616598106920719, 0.015678564086556435, -0.00038925622357055545, 0.01825103908777237, -0.0045187571085989475, -0.035635560750961304, 0.002115522976964712, -0.002797567518427968, -0.007243550848215818, -0.022448237985372543, -0.0016044126823544502, -0.015962889418005943, -0.028757574036717415, -0.0044409059919416904, -0.021798348054289818, -0.0014571722131222486, -0.020498571917414665, -0.018603062257170677, -0.009707711637020111, 0.009585857391357422, -0.002789105521515012, -0.008759957738220692, -0.02304396964609623, -0.028351392596960068, -0.005933619104325771, 0.004115961492061615, -0.03398376330733299, -0.0115693723782897, 0.00018204074876848608, 0.03287353366613388, -0.00577453151345253, 0.029055438935756683, -0.03170914947986603, 0.0037842474412173033, 0.020809976384043694, 0.0001101129746530205, 0.00351007585413754, -0.01478496752679348, -0.03176330775022507, -0.03444409742951393, -0.02633403055369854, 0.023355374112725258, 0.01982160471379757, 0.025291500613093376, -0.007257089950144291, -0.000619002035818994, 0.03598758578300476, -0.004864010494202375, -0.011596450582146645, -0.008157456293702126, -0.02124323509633541, -0.017303286120295525, 0.0006401572609320283, -0.00909844134002924, 0.005693295504897833, -0.009660324081778526, 0.0018311967141926289, 0.05063715949654579, 0.005436047911643982, -0.0004713385133072734, -0.025982007384300232, -0.005930234212428331, -0.016748173162341118, 0.015976428985595703, -0.0019852067343890667, 0.022326383739709854, -0.005852382630109787, 0.02445206046104431, -0.0019530508434399962, 0.016761712729930878, -0.00615024846047163, 0.009111980907619, 0.004217506852000952, -0.0166533961892128, -0.008780267089605331, -0.018860310316085815, 0.007642961572855711, -0.01806148886680603, -0.02802644856274128, 0.025264421477913857, -0.018657220527529716, -0.012997773475944996, -0.00700661214068532, -0.0018311967141926289, -0.025467511266469955, -0.028405550867319107, -0.003709781216457486, -0.008495940826833248, 0.01326856017112732, -0.015042214654386044, -0.009985268115997314, -0.0016145671252161264, 0.001741498475894332, 0.050068505108356476, 0.00910521112382412, 0.018427051603794098, 0.006932145915925503, -0.02454683557152748, 0.0018836617236956954, 0.006126554682850838, 0.005090794526040554, -0.017059577628970146, 0.03257567062973976, 0.005869307089596987, 6.172038411023095e-05, 0.00283818575553596, -0.02466868981719017, -0.0030886635649949312, -0.036989495158195496, -0.020295482128858566, 0.0012938538566231728, -0.0023880023509263992, 0.0037503992207348347, 0.00492493761703372, 0.006850909907370806, -0.007873130030930042, 0.01070285402238369, 0.00813037808984518, 0.01998407579958439, -0.024086499586701393, -0.010418527759611607, -0.02821599878370762, 0.019104018807411194, 0.011386591009795666, 0.02789105474948883, 0.005388660356402397, -0.027024537324905396, -0.04178242385387421, -0.02301689051091671, -0.010459145531058311, -0.013126397505402565, 0.0006921991007402539, 0.01561086717993021, -0.004586454015225172, 0.018873849883675575, -0.0011127650504931808, -0.0061773271299898624, 0.012083867564797401, 0.005943773314356804, -0.029299147427082062, 0.027227627113461494, 0.015123451128602028, 0.022028516978025436, 0.007737737149000168, 0.013837212696671486, 0.01964559219777584, -0.012253109365701675, -0.00455937534570694, -0.008631333708763123, -0.021933741867542267, 0.0035608483012765646, -0.00038037102785892785, -0.0018751996103674173, 0.014419404789805412, 0.005270191002637148, -0.021771270781755447, -0.01399968471378088, 0.009172908030450344, 0.017560534179210663, -0.0006938915466889739, -0.032034095376729965, -0.01979452557861805, 0.0004493370943237096, -0.026794368401169777, 0.018562445417046547, -0.0022306074388325214, 0.02651004120707512, -0.004630456678569317, 0.01669401489198208, -0.032277803868055344, 0.018440591171383858, -0.02450621873140335, -0.0047760047018527985, -0.0461420938372612, 0.014216315001249313, 0.009640015661716461, -0.020078852772712708, 0.041890740394592285, -0.015786878764629364, -0.03420039266347885, 0.0024980094749480486, 0.022664867341518402, -0.0031225120183080435, 0.014243393205106258, 0.00616378802806139, 0.00615363335236907, 0.003328986931592226, 0.012557744979858398, -0.01804794929921627, -0.03327971696853638, 0.017370982095599174, 0.012747295200824738, -0.0016518003540113568, 0.008306389674544334, -0.004579684231430292, 0.02135154977440834, 0.009227065369486809, 0.012117715552449226, 0.01668047532439232, -0.03295477107167244, 0.026753749698400497, -0.011664147488772869, 0.009917572140693665, 0.02277318201959133, -0.0041633490473032, -0.011521984823048115, -0.020579807460308075, -0.0051077185198664665, 0.010296673513948917, -0.003146205795928836, -0.018399972468614578, 0.04449029639363289, 0.02768796496093273, -0.002631710609421134, -0.0075752646662294865, 0.0008741341298446059, -0.00405164947733283, 0.01816980354487896, -0.012957155704498291, -0.043515462428331375, -0.00908490177243948, -0.01069608423858881, 0.03436286374926567, -0.0017838090425357223, -0.008387625217437744, -0.010411757975816727, -0.008590715937316418, -0.025074871256947517, -0.008550098165869713, 0.0007768200594000518, 0.017100196331739426, 0.02813476324081421, 0.010195128619670868, 0.005686525721102953, 0.024316666647791862, -0.025819534435868263, 0.015475474298000336, -0.00028348006890155375, -0.014202775433659554, -0.010005577467381954, 0.004359669983386993, 0.00123123440425843, 0.014541259035468102, -0.013722128234803677, -0.00012047903146594763, 0.01316701527684927, -0.002377847908064723, 0.005320963449776173, 0.006465038284659386, 0.012584823183715343, -0.0028635719791054726, -0.014256932772696018, 0.0002449775638524443, 0.02492593787610531, 0.011169961653649807, -0.006945685017853975, -0.014554798603057861, 0.00035392699646763504, -0.005537592805922031, -0.008570406585931778, -0.013383644632995129, -0.0427301786839962, 0.005574826151132584, -0.025332119315862656, -0.006492116954177618, -0.020471492782235146, -0.010858556255698204, -0.008807345293462276, -0.020633965730667114, 0.03677286580204964, 0.005540977697819471, -0.005012943409383297, 0.011968783102929592, 0.010019117034971714, -0.03124881349503994, -0.008482401259243488, 0.015394237823784351, 0.009809257462620735, -0.033523425459861755, 0.017614690586924553, -0.023274138569831848, 0.006698592100292444, -0.012991003692150116, 0.00899689644575119, -0.014365247450768948, 0.007223241496831179, -0.013986146077513695, -0.013471650891005993, -0.0198622215539217, 0.022055596113204956, 0.018900929018855095, -0.01666693575680256, 0.0012735448544844985, -0.023829251527786255, -0.0019412039546296, -0.007047230377793312, -0.006938915234059095, -0.017546994611620903, -0.015854574739933014, -0.00042818186921067536, 0.0012354654027149081, 0.004975710064172745, -0.020349638536572456, -0.024140655994415283, 0.011948473751544952, -0.0329006128013134, -0.0019598205108195543, 0.20200705528259277, -0.008177765645086765, 0.011934934183955193, 0.026780828833580017, -0.009342149831354618, 0.02660481631755829, 0.027403639629483223, -0.011000719852745533, -0.014405865222215652, 0.0044341362081468105, -0.00737894419580698, 0.010831478051841259, -0.0030361986719071865, 0.006231484469026327, 0.005236342549324036, -0.0038079414516687393, -0.03650207817554474, -0.009558779187500477, -0.008793805725872517, -0.07414146512746811, 0.010208668187260628, -0.0013116243062540889, -0.004820007830858231, 0.002477700589224696, 0.015719182789325714, 0.007595573551952839, -0.01804794929921627, -0.014988057315349579, 0.033794209361076355, 0.015962889418005943, -0.03300892934203148, -0.0004116807831451297, 0.004332591313868761, -0.00984310545027256, -0.008319929242134094, 0.004681229125708342, 0.007778354920446873, 6.949493399588391e-05, 0.020146548748016357, -0.00895627774298191, 0.01829165779054165, -0.0076226526871323586, 0.0055815959349274635, 0.002037671860307455, -0.014378787018358707, 0.025643523782491684, -0.004667690023779869, -0.012063558213412762, -0.024072960019111633, 0.025724759325385094, -0.019104018807411194, 0.016125362366437912, 0.03306308761239052, 0.013112857937812805, 0.018413512036204338, -0.022678406909108162, -0.007818972691893578, 0.013830442912876606, -0.01982160471379757, -0.0010002192575484514, -0.016761712729930878, 0.03160083666443825, -0.005842228420078754, 0.028947124257683754, -0.025887232273817062, 0.021717112511396408, -0.003601466305553913, -0.01071639358997345, 0.0013674740912392735, -0.0297594852745533, -0.002034286968410015, -0.02466868981719017, -0.00996495969593525, -0.0044409059919416904, 0.0031157422345131636, -0.0009968344820663333, 0.02439790405333042, -0.02470930851995945, 0.006113015115261078, -0.007886669598519802, 0.006539504509419203, -0.021717112511396408, 0.013126397505402565, -0.00663428008556366, 0.010520072653889656, -0.03151959925889969, 0.008022063411772251, -0.003598081413656473, -0.01239527203142643, 0.00896304752677679, -0.02481762319803238, -0.03615005686879158, 0.0034762274008244276, -0.0032020555809140205, -0.006387187168002129, -0.017763623967766762, 0.028947124257683754, 0.004796313587576151, 0.010377909988164902, 0.0021747576538473368, -0.0072367810644209385, -0.003232519142329693, 0.030382294207811356, 0.002536935266107321, -0.03910163417458534, 5.976352622383274e-05, 0.025372736155986786, 0.008272540755569935, 0.02615801803767681, -0.010398218408226967, 0.012747295200824738, 0.004329206421971321, 0.006265332922339439, -0.02462807297706604, -0.004498448222875595, 0.022529473528265953, -0.007947596721351147, -0.033712975680828094, -0.0009172907448373735, 0.01305193081498146, 0.011799541302025318, -0.003076816676184535, 0.0031191271264106035, 0.012774374336004257, -0.0021442940924316645, -0.007351865526288748, -0.018806153908371925, 0.028405550867319107, -0.0017254205886274576, -0.011034567840397358, 0.018345816060900688, -0.02799936942756176, 0.0032088253647089005, 0.007954366505146027, -0.022069135680794716, 0.023436609655618668, 0.008380856364965439, -0.01783131994307041, 0.03466073051095009, -0.022475317120552063, 0.009457234293222427, -0.002374463016167283, 0.0027518724091351032, 0.0014309397665783763, -0.0058320737443864346, -0.0007488951669074595, 0.013627353124320507, -0.029921958222985268, 0.012814992107450962, -0.015719182789325714, -0.03642084449529648, -0.004498448222875595, 0.005561287049204111, -0.010228976607322693, 0.008455322124063969, -0.014229853637516499, -0.015109911561012268, -0.028811730444431305, -0.002019055187702179, 0.038587138056755066, -0.027444256469607353, 0.000524649687577039, 0.019374806433916092, 0.007771585136651993, -0.016003508120775223, -0.011989091522991657, -0.17211218178272247, 0.018345816060900688, 0.006715516094118357, -0.010398218408226967, 0.01814272440969944, 0.02458745427429676, 0.0260767824947834, 0.005236342549324036, 0.01238850224763155, -0.0155296316370368, 0.022746102884411812, 0.018995704129338264, -0.03812680020928383, -0.023856330662965775, -0.013194093480706215, 0.012496817857027054, -0.013634122908115387, 0.0038316352292895317, 0.03652915731072426, 0.015962889418005943, 0.0008732879068702459, -0.0035777725279331207, 0.0009502929169684649, 0.008556867018342018, 0.0029532702174037695, 0.011102264747023582, 0.001496097887866199, 0.008759957738220692, -0.000130104657728225, -0.022597171366214752, -0.013762746006250381, 0.014527719467878342, -0.002189989434555173, -0.019361266866326332, 0.03143836557865143, 0.010012347251176834, -0.01238850224763155, -0.01647738553583622, 0.00540219945833087, 0.011224118992686272, 0.01617952063679695, -0.009199986234307289, 0.03420039266347885, 0.003345911158248782, -0.0063059511594474316, 0.03739567846059799, -0.003960259258747101, -0.01243589073419571, 0.014825585298240185, -0.014487101696431637, 0.023815711960196495, -0.005530823487788439, 0.025101950392127037, 0.0004624533175956458, 0.030246902257204056, 0.010885635390877724, 0.020593347027897835, 0.009985268115997314, -0.0165180042386055, -0.01649092510342598, 0.001844736048951745, -0.021013066172599792, 0.028703415766358376, -0.021662956103682518, 0.0019479736220091581, -0.0011973860673606396, -0.004610147792845964, 0.0030040426645427942, -0.012909767217934132, 0.015868114307522774, 0.015976428985595703, 0.013410723768174648, 0.02646942436695099, -0.003071739338338375, 0.011914625763893127, -0.007101387716829777, -0.02602262608706951, 0.011122574098408222, -0.006590277422219515, -0.019334187731146812, -0.055321771651506424, 0.0361771360039711, -0.014649573713541031, -0.009640015661716461, -0.01067577488720417, 0.02159525826573372, -0.014284010976552963, -0.016978342086076736, -0.020985988900065422, -0.0008322467328980565, -0.0034423789475113153, -0.014825585298240185, -0.01069608423858881, -0.006881373003125191, 0.011738614179193974, 0.017194971442222595, 0.018751995638012886, -0.013695050030946732, -0.011792771518230438, -0.01228018756955862, -0.007548185996711254, -0.005182185210287571, -0.008881811983883381, 0.041944898664951324, 0.005385275464504957, -0.0055883657187223434, -0.008929199539124966, -0.006184096913784742, 0.02951577678322792, 0.005134797655045986, 0.010580999776721, 0.012943616136908531, 0.015651484951376915, -0.006959224585443735, 0.012740525417029858, 0.025467511266469955, -0.018535366281867027, -0.0035066909622401, 0.023599082604050636, -0.02606324292719364, 0.07224595546722412, -0.0026672515086829662, -0.0067662885412573814, -0.004396902862936258, -0.02277318201959133, -0.0231387447565794, -0.11871299892663956, -0.00997172947973013, 0.023883407935500145, 0.017479296773672104, 0.010032656602561474, 0.007832512259483337, -0.0044409059919416904, 0.01649092510342598, -0.007074309047311544, 0.005622213706374168, -0.0067358254455029964, -0.037233203649520874, 0.00011529600305948406, -0.004373209085315466, 0.0016399534652009606, -0.04118669405579567, -0.004992634057998657, -0.027119312435388565, -0.0015984891215339303, 0.025995546951889992, 0.008475631475448608, -0.019307108595967293, 0.009775408543646336, -0.020444413647055626, 0.02644234523177147, -0.0018024255987256765, -0.04099714383482933, 0.01833227649331093, 0.014473562128841877, 0.01228018756955862, -0.01068931445479393, 0.0018870464991778135, 0.005534208379685879, 0.003655623644590378, -0.0036319298669695854, -0.00015813534264452755, -0.030626002699136734, -0.008462091907858849, 0.0323590412735939, -0.03430870547890663, 0.017316825687885284, 0.0020427489653229713, 0.015136989764869213, -0.006854294333606958, -0.0003329833270981908, -0.0015993353445082903, -0.023869868367910385, 0.010107122361660004, 0.01477142795920372, -0.011285046115517616, -0.016098283231258392, 0.0017668848158791661, -0.031952857971191406, -0.019144637510180473, 0.02480408363044262, -0.007886669598519802, 0.021893125027418137, 0.014297550544142723, -0.01615244150161743, -0.011400130577385426, -0.02797229215502739, 0.009788948111236095, 0.009667093865573406, 0.023599082604050636, 0.018494747579097748, 0.0051957243122160435, -0.007947596721351147, -0.022367002442479134, 0.024993635714054108, -0.0018785843858495355, -0.014649573713541031, -0.005459741689264774, -0.03130296990275383, 0.02653712034225464, -0.009375997819006443, 0.013552886433899403, -0.021798348054289818, -0.010093583725392818, 0.019104018807411194, 0.000702353660017252, 0.00227122544310987, -0.02651004120707512, 0.00699984235689044, -0.008509479463100433, 0.01638261042535305, 0.01946958154439926, -0.0005601904704235494, -0.01798025332391262, -0.0019801296293735504, -0.015637945383787155, -0.003235904034227133, 0.00823192298412323, -0.010926253162324429, -0.0196591317653656, 0.015543170273303986, 0.04235107824206352, 0.01240881159901619, -0.008367316797375679, -0.0047760047018527985, 0.00012682560191024095, -0.028324313461780548, 0.00454922067001462, -0.058381665498018265, 0.022515933960676193, 0.008360547013580799, 0.01628783531486988, -0.005002788733690977, -0.013640892691910267, 0.01983514428138733, -0.015989968553185463, -0.020647505298256874, 0.02284087799489498, -0.01145428791642189, 0.033496346324682236, -0.02476346679031849, -0.013627353124320507, -0.020065313205122948, -0.00615363335236907, 0.01318055484443903, -0.01662631891667843, 0.003960259258747101, 0.0038316352292895317, 0.014297550544142723, 0.00037825549952685833, 0.013207633048295975, 0.011014258489012718, -0.022326383739709854, -0.009768638759851456, 0.01314670592546463, 0.018427051603794098, -0.0034762274008244276, -0.03636668622493744, 0.015786878764629364, -0.043623775243759155, 0.008022063411772251, -0.007859591394662857, 0.005141566973179579, 0.011217349208891392, -0.03433578461408615, -0.01837289333343506, -0.0001076272310456261, 0.04435490071773529, -0.01963205263018608, -0.018860310316085815, -0.0035269998479634523, -0.02763380855321884, 0.010249285958707333, 0.028432630002498627, -0.007338325958698988, 0.015340080484747887, 0.011799541302025318, -0.014649573713541031, 0.0015967967920005322, 0.031817466020584106, 0.009179677814245224, -0.02288149669766426, 0.004965555388480425, -0.012896228581666946, 0.03791017085313797, -0.006025009322911501, 0.019374806433916092, -0.03447117656469345, 0.0005919233080931008, -0.009213525801897049, 0.02152756229043007, 0.007331556640565395, 0.020715201273560524, -0.02311166562139988, -0.012496817857027054, -0.012449429370462894, -0.022339923307299614, -0.006742594763636589, 0.015583788976073265, -0.004958786070346832, -0.00046795367961749434, 0.0019936689641326666, 0.008495940826833248, 0.024194814264774323, 0.007615882903337479, -0.009301531128585339, -0.02962409146130085, 0.007040460593998432, 0.005605289712548256, -0.024005262181162834, -0.02962409146130085, 0.004004261922091246, 0.034010838717222214, -0.01677525043487549, 0.015692103654146194, 0.011515215039253235, -0.003090356010943651, 0.022163910791277885, 0.011217349208891392, -0.009375997819006443, 0.00227461033500731, -0.013227942399680614, 0.007906978949904442, 0.02330121584236622, -0.00907136220484972, -0.006661358755081892, 0.028432630002498627, 0.035283539444208145, -0.0007455103332176805, 0.013383644632995129, 0.002536935266107321, -0.020403796806931496, -0.0019073555013164878, -0.00540219945833087, -0.025007173418998718, -0.01243589073419571, 0.007642961572855711, 0.021662956103682518, 0.0025386277120560408, 0.005960697773844004, 0.020457953214645386, 0.025413354858756065, -0.014920360408723354, 0.011359511874616146, 0.0020816745236516, -0.010533612221479416, -0.004129501059651375, 0.029217911884188652, 0.008671951480209827, 0.046656589955091476, 0.025345657020807266, 0.02319290116429329, 0.02131093293428421, 0.0214327871799469, -0.0031851313542574644, 0.027078693732619286, 0.0076565006747841835, 0.009369228035211563, 0.015989968553185463, 0.007257089950144291, -0.04652119800448418, 0.000879211351275444, 0.01666693575680256, -0.03920995071530342, -0.022042056545615196, 0.012259879149496555, -0.002976963995024562, 0.026794368401169777, -0.0034559182822704315, -0.022069135680794716, 0.011982322670519352, -0.002697714837267995, 0.0073247868567705154, -0.0019056631717830896, -0.0039297956973314285, 0.01155583281069994, -0.013742437586188316, 0.013566426001489162, -0.004315666854381561, 0.02312520518898964, -0.010019117034971714, -0.012530665844678879, 0.013322717510163784, 0.00813037808984518, 0.013837212696671486, -0.017140813171863556, -0.022637788206338882, 0.020457953214645386, 0.01154229324311018, 0.012666059657931328, -0.0052904998883605, -0.004654150456190109, -0.013004543259739876, 0.012381733395159245, 0.0069795334711670876, 0.002096906304359436, -0.043840404599905014, -0.004302127752453089, 0.03311724215745926, 0.006759519223123789, -0.008272540755569935, 0.002626633271574974, -0.0071487752720713615, 0.010939792729914188, -0.02125677466392517, 0.003242673585191369, -0.0011026106076315045, -0.014405865222215652, 0.014365247450768948, -0.023436609655618668, -0.025223804637789726, 0.014988057315349579, -0.008489171043038368, -0.01792609505355358, -0.004880934488028288, -0.024072960019111633], "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984": [-0.012048053555190563, -0.03189029172062874, -0.005169822368770838, 0.01761924847960472, -0.017454583197832108, 0.0239863283932209, -0.00874787475913763, -0.01947174035012722, -0.008054905571043491, -0.018936576321721077, 0.040535248816013336, 0.011396250687539577, 0.03381139412522316, 0.0129194101318717, -0.0018559216987341642, 0.013296769931912422, 0.04086458310484886, -0.010792476125061512, 0.04240146279335022, -0.022792501375079155, 0.0017478596419095993, 0.002590056974440813, -0.0023584957234561443, 0.019979460164904594, 0.0004747008497361094, 0.0313962921500206, 0.018703298643231392, -0.018223023042082787, 0.007409964222460985, -0.009029178880155087, -0.0036706768441945314, 0.02058323472738266, 0.0187856312841177, -0.0020411708392202854, -0.04503611847758293, -0.0039794254116714, 0.00752660259604454, -0.021612396463751793, -7.654390356037766e-05, -0.008782180026173592, 0.011162973940372467, 0.0058593605645000935, -0.023711886256933212, 0.00863809697329998, -0.017413416877388954, 0.018250467255711555, -0.0038181899581104517, -0.022861111909151077, -0.02104978822171688, 0.020102959126234055, 0.029804524034261703, 0.007986295036971569, -0.023231610655784607, 0.02018529176712036, -0.02159867435693741, 0.0009313913760706782, 0.016205865889787674, 0.016425421461462975, -0.013564351946115494, 0.011060058139264584, 0.014943428337574005, 0.0024991477839648724, 0.010620948858559132, 0.01836024597287178, -0.03770848736166954, 0.0016449434915557504, -0.01367412880063057, -0.017358528450131416, -0.007972572930157185, -0.02410982921719551, 0.040041252970695496, 0.021996617317199707, -0.010373950004577637, -0.0011114946100860834, 0.03375650569796562, -0.023108111694455147, -0.03779082000255585, -0.004229854792356491, -0.017262471839785576, -0.00024078096612356603, -0.011128668673336506, -0.04360901191830635, -0.01693314127624035, 0.0018199009355157614, 0.030710186809301376, -0.010696420446038246, 0.007862795144319534, 0.022257337346673012, -0.02867930755019188, -0.029036082327365875, -0.00025107257533818483, 0.029831968247890472, 0.005595209077000618, 0.021434009075164795, -0.011560916900634766, 0.024150995537638664, -0.020157847553491592, 0.015519758686423302, -0.002914242912083864, -0.023259054869413376, -0.019238462671637535, -0.006068623624742031, -0.010600365698337555, -0.006006874144077301, -0.035650163888931274, 0.02312183380126953, -0.0163156446069479, -0.007636379916220903, 0.015560925006866455, -0.02159867435693741, -0.005739291664212942, 0.026552371680736542, -0.01986968331038952, -0.0401235856115818, -0.016178421676158905, -0.02243572473526001, 0.044761672616004944, -0.012672411277890205, -0.02660726197063923, -0.02290227822959423, 0.004895379301160574, 0.011389389634132385, -0.007828489877283573, 0.0018593522254377604, 0.02073417790234089, -0.01656264252960682, 0.01739969477057457, -0.02426077239215374, 0.0020514624193310738, -0.006445982959121466, 0.031725626438856125, 0.013680989854037762, 0.015066927298903465, -0.012404829263687134, -0.015780480578541756, 0.011121807619929314, -0.02895374968647957, -0.009001734666526318, -0.017289917916059494, -0.03680282458662987, 0.018566077575087547, 0.009612370282411575, -0.0016646691365167499, -0.029694747179746628, -0.011581500060856342, 0.02512526884675026, 0.016521476209163666, 0.01335165835916996, -0.022298503667116165, -0.001063467119820416, 0.016329366713762283, -0.0008842214592732489, 0.008974290452897549, -0.014970872551202774, 0.010147534310817719, 0.0036946905311197042, 0.016864530742168427, -0.005063475575298071, 0.0036398018710315228, -0.014504319056868553, 0.02568787708878517, 0.013193853199481964, 0.0004511158913373947, 0.0018233315786346793, 0.0021818228997290134, 0.024000052362680435, 0.01811324618756771, -0.006912536453455687, -0.018415134400129318, -0.005186975002288818, 0.013996599242091179, 0.022353392094373703, -0.02527621202170849, 0.0043807984329760075, 0.00184048421215266, 0.005396238062530756, 0.04410301148891449, 0.022545503452420235, -0.015437426045536995, 0.007684407755732536, -0.04662788659334183, -0.011259029619395733, 0.0175506379455328, 0.030243633314967155, -0.007162965834140778, -0.008418543264269829, -0.006401386111974716, -0.00489880982786417, 0.006432260852307081, 0.004068619571626186, 0.005951985251158476, 0.017687859013676643, -0.017729025334119797, -0.030024077743291855, -0.6424164772033691, -0.029584968462586403, -0.022943444550037384, -0.018250467255711555, -0.015162982977926731, 0.007519741542637348, -0.0004005154478363693, 8.249374513980001e-05, -0.003753009717911482, 0.012116664089262486, -0.017331084236502647, 0.009509454481303692, -0.01206863671541214, -0.025536932051181793, -0.027952032163739204, -0.0151904271915555, 0.025262489914894104, -0.035650163888931274, 0.005231572315096855, -0.013831933960318565, -0.005385946482419968, 0.016178421676158905, 0.0047718798741698265, 0.010964002460241318, -0.009927979670464993, -0.008308765478432178, 0.02107723243534565, 0.0005000010714866221, 0.011560916900634766, 0.03661071136593819, -0.02914585918188095, 0.018922854214906693, 0.008555764332413673, 0.016823364421725273, 0.05343407765030861, 0.006205845158547163, -0.028624417260289192, 0.008308765478432178, 0.006466566119343042, 0.005924541037529707, -0.014545485377311707, -0.021406562998890877, 0.029694747179746628, 0.01353690680116415, 0.0038765091449022293, -0.0021097816061228514, 0.04360901191830635, -0.02345116436481476, -0.006061762571334839, 0.017454583197832108, 0.003233283059671521, -0.0016972592566162348, -0.024548938497900963, -0.0030411728657782078, 0.010545477271080017, 0.0035677605774253607, 0.04292290657758713, -0.01912868581712246, -0.006408247165381908, 0.0024322522804141045, 0.0068610780872404575, 0.02704636938869953, -0.0068233422935009, 0.0012315635103732347, -0.012384246103465557, 0.022325947880744934, -0.0014133821241557598, 0.005897096823900938, 0.03499149903655052, -0.015039483085274696, 0.017660414800047874, 0.006895383354276419, 0.0137358782812953, -0.02598976343870163, 0.010641532018780708, 0.011073780246078968, 0.0260583758354187, -0.028981193900108337, 0.008445987477898598, 0.028267642483115196, 0.006428830325603485, -0.02080278843641281, -0.040535248816013336, -0.011066919192671776, 0.0018988033989444375, -0.013070354238152504, -0.01041511632502079, 0.024370549246668816, -0.011794193647801876, -0.009893674403429031, -0.00581819424405694, 0.006706703919917345, -0.001991427969187498, -0.0029982910491526127, 0.030792519450187683, 0.019307073205709457, -0.0016912557184696198, 0.0010334498947486281, 0.012171552516520023, -0.013036048971116543, -0.009296760894358158, -0.00789710134267807, -0.004415103700011969, -0.012548912316560745, 0.017015473917126656, -0.003982855938374996, -0.028377419337630272, -0.0041337995789945126, 0.0417976900935173, -0.020102959126234055, 0.004524881020188332, -0.004267590586096048, -0.006816481240093708, -0.015012038871645927, 0.030792519450187683, -0.02577020972967148, 0.031506072729825974, -0.009399676695466042, 0.021584952250123024, -0.006555760279297829, 0.013365380465984344, -0.0033104701433330774, 0.017578082159161568, -0.012171552516520023, 0.02586626447737217, 0.03257640078663826, 0.016027478501200676, -0.012102941982448101, 0.0008722145576030016, 0.003053179709240794, -7.257734250742942e-05, -0.013372241519391537, 0.033180173486471176, -0.0021783923730254173, 0.008466570638120174, -0.0060205962508916855, 0.025729043409228325, 0.0036706768441945314, 0.00825387705117464, -0.015355093404650688, -0.00024378267698921263, 0.003588343970477581, 0.01705664023756981, 0.014298486523330212, -0.01125216856598854, -0.02845975197851658, -0.007210993207991123, -0.013715295121073723, -0.039821699261665344, 0.010140673257410526, -0.0003248291613999754, -0.005777027923613787, 0.009591787122189999, 0.0025506059173494577, -0.0031492349226027727, -0.010305339470505714, -0.013166408985853195, 0.0017289917450398207, -0.00249228673055768, -0.024301938712596893, 0.019389407709240913, 0.011190418154001236, -0.023039501160383224, 0.018470022827386856, 0.013358519412577152, -0.003574621630832553, -0.01777019165456295, 0.007821628823876381, -0.008816485293209553, -0.034689612686634064, 0.005012017674744129, -0.014614096842706203, 0.010085784830152988, 0.04042547196149826, -0.026415150612592697, 0.004559186287224293, -0.004946837201714516, -0.0011861089151352644, -0.011389389634132385, 0.015108094550669193, 0.0011595222167670727, 0.0077804625034332275, -0.0121921356767416, -0.009482010267674923, 0.0051629613153636456, 0.003917675465345383, -0.03372906148433685, 0.0021440868731588125, 0.010689559392631054, 0.025289934128522873, 0.005403099115937948, -0.007018882781267166, 0.009029178880155087, -0.00944084394723177, 0.0008469143649563193, 0.001315611763857305, 0.011307056993246078, 0.019828515127301216, 0.01801719143986702, 0.016109811142086983, 0.010689559392631054, 0.0063019003719091415, 0.02988685667514801, -0.009879952296614647, 0.004058327525854111, -0.03650093451142311, 0.006075484678149223, -0.0041303690522909164, 0.02305322326719761, -0.013015464879572392, -0.00502917030826211, -0.03112185001373291, -0.0009442559094168246, -0.006072054151445627, 0.009200706146657467, 0.0396844744682312, 0.022888556122779846, 0.003938259091228247, -0.0005188690265640616, -0.00863809697329998, 0.01361237931996584, -0.029530080035328865, 0.006017165724188089, -0.006974285934120417, -0.007704990915954113, 0.0001338982256129384, 0.006452844012528658, 0.030271077528595924, 0.012912549078464508, -0.006730717606842518, 0.016576364636421204, -0.009530037641525269, -0.00113379315007478, 0.013838795013725758, 0.005118364468216896, 0.012528329156339169, 0.011945136822760105, -0.013269324786961079, 0.04108413681387901, -0.03186284750699997, -0.010627809911966324, 0.009042900986969471, 0.01981479302048683, -0.02670331671833992, -0.01866213232278824, 0.0043224794790148735, 0.013454574160277843, -0.00044253954547457397, 0.019924571737647057, 0.018195578828454018, -0.01727619394659996, 0.01302918791770935, -0.002485425677150488, -0.015300204046070576, 0.010799337178468704, -0.03397605940699577, -0.012102941982448101, 0.018346523866057396, 0.018373968079686165, 0.027458034455776215, 0.00466553308069706, 0.00023692160903010517, 0.022792501375079155, 0.026195596903562546, 0.04681999608874321, -0.00038807973032817245, 0.011224724352359772, 0.008823346346616745, -0.012761604972183704, -0.027554089203476906, -0.022422002628445625, -0.008912540972232819, 0.003773593110963702, 0.01049058884382248, -0.0002643659245222807, -0.0034476916771382093, 0.011190418154001236, 0.0015763327246531844, 0.011643249541521072, -0.008041183464229107, -0.018277911469340324, -0.02512526884675026, 0.028487196192145348, 0.0023928009904921055, -0.0022452878765761852, -0.008603791706264019, -0.025701599195599556, -0.007663824129849672, -0.015327648259699345, 0.040782250463962555, -0.024466603994369507, 0.012397968210279942, 0.013811350800096989, -0.0065043019130826, -0.009420260787010193, 0.0076706851832568645, 0.020404847338795662, -0.026648428291082382, 0.027636423707008362, -0.002020587446168065, 0.003660385264083743, -0.0002268443931825459, -0.03167073801159859, 0.02216128259897232, 0.019897127524018288, 0.006356788799166679, 0.000997429247945547, -0.004469992592930794, 0.015217871405184269, -0.015711868181824684, 0.0027564382180571556, -0.03425050154328346, -0.005255586002022028, 0.0035952050238847733, 0.00434306263923645, 0.014874817803502083, -0.023780496791005135, 0.015986312180757523, 0.03825737163424492, 0.0010377380531281233, -0.006150956731289625, -0.014120099134743214, -0.03040829859673977, -0.0033293382730334997, 0.10505682975053787, 0.03040829859673977, -0.02453521639108658, -0.0029193887021392584, 0.01702919602394104, 0.01335165835916996, -0.021392840892076492, -0.038614146411418915, 0.02815786562860012, 0.005036031361669302, 0.0029588399920612574, -0.02821275405585766, 0.03252151235938072, -0.0075814914889633656, 0.010017174296081066, -0.007993156090378761, -0.001811324618756771, 0.0036089271306991577, -0.008432265371084213, -0.007855934090912342, 0.0025008630473166704, 0.01347515732049942, 0.002013726392760873, 0.01078561507165432, -0.04489889740943909, -0.003797606797888875, 0.030435742810368538, 0.003084054682403803, 0.014449430629611015, -0.025413433089852333, -0.022861111909151077, 0.026442594826221466, 0.019855959340929985, 0.0289263054728508, -0.026126986369490623, -0.006380802486091852, 0.006010304670780897, 0.010394533164799213, -0.014312208630144596, -0.0004123079124838114, 0.01915613003075123, 0.006977716460824013, 0.013632962480187416, -0.016356810927391052, 0.007437408901751041, 0.0074717141687870026, -0.011162973940372467, -0.0025488906539976597, -0.03167073801159859, -0.01665869727730751, 0.03485427796840668, -0.006881661247462034, -0.008466570638120174, -0.0018370536854490638, 0.013955432921648026, -0.0011260744649916887, -0.0071080769412219524, -0.007272742688655853, -0.0050223092548549175, 0.0260583758354187, -0.0006771026528440416, 0.0033996643032878637, 0.000869212846737355, -0.008116655051708221, -0.016699863597750664, -0.009578065015375614, -0.025138990953564644, -0.004469992592930794, -0.010998308658599854, 0.03309784084558487, -0.005787319503724575, -0.007684407755732536, -0.021996617317199707, 0.019883405417203903, -0.009667258709669113, 0.004566047340631485, 0.01823674514889717, -0.018717020750045776, -0.007265881635248661, -0.014353375881910324, -0.015478592365980148, -0.026867982000112534, 0.010113229043781757, -0.02534482255578041, -0.026003485545516014, -0.012871382758021355, 0.008885095827281475, 0.022353392094373703, -0.02507038041949272, -0.0019005186622962356, 0.0017221305752173066, 0.01996573805809021, 0.0013010319089516997, -0.021749617531895638, 0.004538603127002716, -0.01653519831597805, -0.006435691379010677, -0.011965719982981682, 0.004864504560828209, -0.0012487162603065372, 0.002837055828422308, -0.03842203691601753, -0.003116644686087966, -0.005351640749722719, 0.006432260852307081, -0.014751317910850048, 0.010257312096655369, 0.018991464748978615, -0.01915613003075123, -0.005416821222752333, 0.017468305304646492, -0.015492314472794533, 0.0010180125245824456, 0.008816485293209553, 0.005591778550297022, 0.00765696307644248, 0.025921152904629707, 0.014353375881910324, 0.006253872532397509, 0.004716991446912289, 0.00010495305468793958, -0.017385972663760185, -0.0022778778802603483, -0.002941687358543277, -0.03309784084558487, -0.0028199031949043274, 0.014531763270497322, -0.027307091280817986, 0.020500902086496353, 0.0010566060664132237, 0.009433982893824577, -0.002554036444053054, 0.008789041079580784, -0.012411690317094326, -0.04728655144572258, -0.007176687940955162, -0.006367080379277468, -0.0004652668721973896, -0.011739305220544338, -0.008425404317677021, -0.007355075795203447, -0.032000068575143814, -0.01786624826490879, -0.030792519450187683, -0.011286473833024502, -0.021612396463751793, -0.016000034287571907, -0.00637394143268466, 0.00924187246710062, -0.0030634712893515825, -0.0015317356446757913, -0.02512526884675026, -0.03065529651939869, -0.006617509759962559, -0.0009142386843450367, -0.024329382926225662, -0.007485436275601387, -0.013276185840368271, 0.033948615193367004, 0.0006942553445696831, 0.035128720104694366, -0.019952015951275826, 0.0017855955520644784, 0.009351649321615696, -0.009852508082985878, 0.009468288160860538, -0.002910812385380268, -0.026566093787550926, -0.03507383167743683, -0.0059691378846764565, 0.03751637414097786, 0.02410982921719551, 0.023753052577376366, 0.0035540384706109762, -0.008397960104048252, 0.04896065220236778, 0.0066895512863993645, 0.0010763315949589014, -0.007643240969628096, -0.030298521742224693, -0.02345116436481476, -0.00020540352852549404, -0.005399668589234352, -0.005780458450317383, -0.013255602680146694, -0.009104650467634201, 0.04481656104326248, 0.012727299705147743, -0.0029948605224490166, -0.014751317910850048, -0.003825051011517644, -0.010271034203469753, 0.009420260787010193, -0.0019090949790552258, 0.020473457872867584, -0.004480284173041582, 0.027238480746746063, -0.00014354662562254816, 0.012727299705147743, 0.002656952477991581, 0.004202410578727722, 0.0025283072609454393, -0.014216153882443905, -0.013193853199481964, -0.022737612947821617, 0.0064699966460466385, -0.014668985269963741, -0.018566077575087547, 0.0202401801943779, -0.026991480961441994, -0.008150961250066757, -0.01641169935464859, 0.009049762040376663, -0.01656264252960682, -0.020665567368268967, -0.008658681064844131, -0.00581819424405694, 0.002943402621895075, -0.008198988623917103, -0.01508064940571785, 0.010902252979576588, -0.016850808635354042, 0.045447781682014465, 0.009639814496040344, 0.01777019165456295, 0.019032631069421768, -0.0102298678830266, 0.0038078983779996634, 0.007766740396618843, -2.8623560865526088e-05, -0.019430574029684067, 0.032247066497802734, 0.011066919192671776, 0.003511156653985381, 0.005588348023593426, -0.029612412676215172, -0.0031269362661987543, -0.04539289325475693, -0.02914585918188095, -0.001809609355404973, 0.004994865041226149, -0.006576343439519405, -0.007032605353742838, -0.008555764332413673, -0.020199013873934746, 0.017262471839785576, 0.007156104315072298, 0.02033623494207859, -0.025385988876223564, -0.016247032210230827, -0.028267642483115196, 0.004933115094900131, 0.013523184694349766, 0.020253902301192284, 0.01495715044438839, -0.015711868181824684, -0.0330703966319561, -0.015656979754567146, -0.00644255243241787, -0.0022795931436121464, -0.005180113948881626, 0.029749635607004166, -0.008185266517102718, 0.012226440943777561, -0.003051464445888996, -0.0056089311838150024, -0.00298285367898643, 0.000477702560601756, -0.010936558246612549, 0.023094389587640762, 0.007746157236397266, 0.006305330898612738, 0.010895391926169395, 0.018552355468273163, 0.01472387369722128, -0.0061612483114004135, -0.00573243061080575, 0.006418538745492697, -0.026785649359226227, 0.00778732355684042, -0.0012298482470214367, 0.008555764332413673, -0.002403092570602894, -0.001313038868829608, -0.015862813219428062, -0.009756453335285187, -0.007094354834407568, 0.00962609238922596, 0.007252159528434277, -0.032988063991069794, -0.02944774739444256, 0.0022298505064100027, -0.024768492206931114, 0.015684423968195915, 0.006655246019363403, 0.015986312180757523, -0.009831924922764301, 0.026785649359226227, -0.026044651865959167, 0.015382537618279457, -0.02043229155242443, 0.00831562653183937, -0.04654555395245552, 0.013365380465984344, -0.002490571467205882, -0.017111528664827347, 0.02206522785127163, -0.03414072468876839, -0.024178439751267433, 0.022298503667116165, 0.019430574029684067, 0.0008001732639968395, 0.003924536518752575, 0.002271016826853156, -0.0010351651581004262, 0.003502580337226391, 0.021145842969417572, -0.011300195939838886, -0.02732081338763237, 0.02487826906144619, 0.010627809911966324, -0.0014082363341003656, 0.005313904955983162, -0.019924571737647057, 0.024919435381889343, 0.00412693852558732, 0.0018267621053382754, 0.0036946905311197042, -0.03243917599320412, 0.019677571952342987, -0.0025506059173494577, 0.013166408985853195, 0.00865182001143694, -0.012157830409705639, -0.0049605593085289, -0.019485462456941605, -0.006408247165381908, -0.008590069599449635, 0.004459701012820005, -0.009358510375022888, 0.02512526884675026, 0.018813075497746468, -0.011862804181873798, -0.0072796037420630455, 0.00036835414357483387, 0.005811333190649748, 0.018085801973938942, -0.006480288226157427, -0.035622719675302505, -0.005094350315630436, -0.013722156174480915, 0.04443234205245972, -0.00988681335002184, -0.00865182001143694, -0.0041337995789945126, -0.011300195939838886, -0.029749635607004166, -0.006730717606842518, -0.010394533164799213, 0.024054940789937973, 0.04435000941157341, 0.003512871917337179, -0.007457992061972618, 0.018072079867124557, -0.022943444550037384, 0.01288510486483574, 0.004806185141205788, -0.004977712407708168, -0.01410637702792883, -0.011924553662538528, -0.002087482949718833, 0.022202448919415474, -0.003480281913653016, 0.0065043019130826, 0.012343079783022404, -0.00594855472445488, -0.0031766791362315416, 0.014449430629611015, 0.01321443635970354, -0.005156100261956453, -0.012205857783555984, -0.004222993738949299, 0.021145842969417572, 0.004027452785521746, -0.012775328010320663, -0.017289917916059494, -0.004593492019921541, -0.009077206254005432, -0.0026020638179033995, -0.016397977247834206, -0.02806180901825428, 0.007416825275868177, -0.014861095696687698, -0.0049605593085289, -0.014188709668815136, -0.015341370366513729, -0.014765040017664433, -0.010476866737008095, 0.04588688910007477, -0.0010068631963804364, -0.0024631270207464695, 0.018813075497746468, -0.0025763348676264286, -0.01811324618756771, -0.015327648259699345, 0.01702919602394104, 0.006771883927285671, -0.024837102741003036, 0.020638123154640198, -0.03241173177957535, 0.02085767686367035, -0.006782175973057747, 0.00590395787730813, -0.003253866219893098, 0.0029914299957454205, -0.011368806473910809, -1.9537992557161488e-05, -0.018319079652428627, 0.026030929759144783, 0.03109440580010414, -0.005121794994920492, -0.0037804541643708944, -0.012960576452314854, -0.005715277977287769, -0.001240139827132225, -0.005488862749189138, -0.013317353092133999, -0.009770175442099571, 0.002624362474307418, -0.007540324702858925, 0.01143741700798273, -0.028843972831964493, -0.01779763586819172, 0.0070017301477491856, -0.031506072729825974, 0.0025368835777044296, 0.21450474858283997, -0.01653519831597805, 0.010483727790415287, 0.01041511632502079, -0.00686793914064765, 0.021214453503489494, 0.026634706184267998, -0.008459709584712982, -0.008569486439228058, -0.009454566054046154, -0.007533463649451733, 0.021886838600039482, -0.010078923776745796, 0.005385946482419968, -0.012109803035855293, 0.0034957192838191986, -0.042483795434236526, -0.011307056993246078, 0.004861074034124613, -0.07212365418672562, 0.015286481939256191, -0.007259020581841469, -0.009145816788077354, -0.012315635569393635, 0.015341370366513729, 0.009701564908027649, -0.017564360052347183, -0.007313909474760294, 0.030792519450187683, 0.004706699401140213, -0.0363362692296505, 0.00034648444852791727, 0.00048156193224713206, -0.007821628823876381, -0.012198996730148792, 0.001771873445250094, 0.020157847553491592, 0.011458000168204308, 0.012089219875633717, -0.011149251833558083, 0.0114648612216115, -0.013296769931912422, 0.005780458450317383, -0.016494031995534897, -0.014490596950054169, 0.023560943081974983, -0.012548912316560745, -0.0039622727781534195, -0.010991447605192661, 0.011183557100594044, -0.03238428756594658, 0.010806198231875896, 0.03680282458662987, 0.020885121077299118, 0.013221297413110733, -0.020789066329598427, -0.006946841720491648, 0.02122817561030388, -0.018470022827386856, -0.005653528496623039, -0.017783913761377335, 0.023190444335341454, 0.004953698255121708, 0.01761924847960472, -0.020596956834197044, 0.030463187023997307, 0.01090911403298378, -0.009941702708601952, 0.009660397656261921, -0.011986303143203259, -0.0014648401411250234, -0.019238462671637535, -0.005516306962817907, -0.002912527648732066, -0.014504319056868553, -0.010957141406834126, 0.03186284750699997, -0.021653562784194946, -0.004209271632134914, 0.005186975002288818, 0.005674111656844616, -0.021763339638710022, 0.007821628823876381, -0.006531746592372656, 0.003838773351162672, -0.029200749471783638, 0.00973587017506361, -0.00857634749263525, -0.01786624826490879, 0.010195562615990639, -0.016590086743235588, -0.027828533202409744, -0.005574625916779041, -0.016727307811379433, -0.004548894707113504, -0.019169852137565613, 0.028981193900108337, 0.00015759038797114044, 0.007382520008832216, -0.01353690680116415, -0.001845630002208054, -0.02120073139667511, 0.019801070913672447, 0.0032470051664859056, -0.02349233254790306, -0.004785601980984211, 0.021831950172781944, 0.0033259077463299036, 0.02008923701941967, -0.010593504644930363, 0.013777044601738453, -0.009461427107453346, -0.0017976025119423866, -0.0246038269251585, 0.004590061493217945, 0.02966730110347271, -0.018305355682969093, -0.019650127738714218, 0.001418527914211154, 0.01110808551311493, 0.017729025334119797, -0.004641519393771887, -0.009248733520507812, 0.008356792852282524, 0.005488862749189138, -0.02043229155242443, -0.027114981785416603, 0.016960585489869118, -0.004641519393771887, -0.0015102948527783155, 0.01885424368083477, -0.03853181377053261, -0.006000013090670109, 0.0056603895500302315, -0.014737595804035664, 0.01829163357615471, 0.013186992146074772, -0.02741686813533306, 0.03521105274558067, -0.006264164578169584, 0.0010145818814635277, -0.0024185299407690763, 0.002169816056266427, -0.0016723878215998411, -0.0017169847851619124, 0.0007731577497906983, 0.012617522850632668, -0.024576382711529732, -0.006298469845205545, -0.02791086584329605, -0.02618187479674816, -0.016891974955797195, 0.006466566119343042, -0.009879952296614647, -0.0058799441903829575, -0.00736193684861064, -0.013420268893241882, -0.02889886125922203, -0.00481304619461298, 0.024219606071710587, -0.049097876995801926, 0.007945128716528416, 0.020761622115969658, 0.009660397656261921, -0.017715303227305412, -0.015711868181824684, -0.17597293853759766, 0.018497467041015625, 0.011691276915371418, -0.016850808635354042, 0.024713603779673576, 0.01999318227171898, 0.02250433713197708, 0.004363645799458027, 0.0007602932164445519, -0.014915984123945236, 0.017385972663760185, 0.022641558200120926, -0.037159599363803864, -0.03630882501602173, -0.007423686794936657, 0.013598657213151455, -0.019307073205709457, 0.015972590073943138, 0.03575994074344635, 0.024192161858081818, 0.01594514586031437, -0.001271014683879912, 0.003842203877866268, 0.01143741700798273, 0.010147534310817719, 0.009523176588118076, -0.008061766624450684, 0.0156981460750103, -0.0011852512834593654, -0.027156148105859756, -0.018428856506943703, 0.011471722275018692, 0.002866215305402875, -0.024823380634188652, 0.020720455795526505, 0.009228150360286236, -0.007259020581841469, -0.013042910024523735, -0.0037873152177780867, 0.011458000168204308, 0.009619231335818768, 0.007972572930157185, 0.020514624193310738, 0.006494010332971811, 0.004384228959679604, 0.03471705690026283, -0.0026175014209002256, -0.0014108092291280627, 0.014806206338107586, -0.015286481939256191, 0.020514624193310738, 0.004205841105431318, 0.013482018373906612, 0.006202414631843567, 0.03243917599320412, 0.012171552516520023, 0.014051487669348717, 0.004061758052557707, -0.007018882781267166, -0.014161265455186367, 0.006699842866510153, -0.01288510486483574, 0.02556437812745571, -0.020912567153573036, -0.013680989854037762, -0.007416825275868177, -0.0003747863811440766, 0.001702405046671629, -0.013482018373906612, 0.010250451043248177, 0.014572929590940475, 0.026250485330820084, 0.024686159566044807, -0.012644967064261436, -0.0035574689973145723, -0.002089198213070631, -0.028349975124001503, 0.011547194793820381, -0.0202401801943779, -0.02033623494207859, -0.03847692534327507, 0.03622649237513542, -0.016027478501200676, -0.012967437505722046, -0.005276169162243605, 0.027389423921704292, -0.007382520008832216, -0.023437442258000374, -0.00985936913639307, -0.008240154944360256, 0.004466562066227198, 0.003584913443773985, -0.019169852137565613, -0.014545485377311707, 0.018552355468273163, 0.018030913546681404, 0.01407893281430006, -0.0022572947200387716, -0.001703262678347528, -0.002384224673733115, -0.0007847358356229961, -0.012247024103999138, -0.015409981831908226, 0.03790059685707092, 0.032933175563812256, 0.003343060379847884, -0.006336205638945103, 0.0073893810622394085, 0.031231628730893135, 0.005060045048594475, -0.00015340941899921745, 0.02345116436481476, 0.02939285896718502, -0.001842199475504458, 0.021118398755788803, 0.026470039039850235, -0.005526598542928696, -0.010497449897229671, 0.02465871535241604, -0.024329382926225662, 0.0690498873591423, 0.00298285367898643, -0.005427112802863121, 0.004236715845763683, -0.015972590073943138, -0.01589025743305683, -0.11603455245494843, -0.01347515732049942, 0.008967429399490356, 0.004950267728418112, 0.007917684502899647, 0.010394533164799213, -0.009488871321082115, 0.02295716665685177, 0.0038353425916284323, 0.006644954439252615, -0.0066586765460669994, -0.04950954020023346, 0.0047135609202086926, -0.0043224794790148735, 0.022463170811533928, -0.0375712625682354, -0.005797611083835363, -0.024343105033040047, 0.015492314472794533, 0.03062785230576992, 0.0023859399370849133, -0.017166417092084885, 0.006171539891511202, -0.026154430583119392, 0.012274469248950481, 0.0040514664724469185, -0.023355109617114067, 0.016713585704565048, 0.011560916900634766, 0.010771892964839935, -0.003018874442204833, -0.0037667318247258663, 0.0095025934278965, 0.012144108302891254, 0.0008344786474481225, 0.0011912547051906586, -0.03650093451142311, -0.015012038871645927, 0.028761640191078186, -0.030984628945589066, 0.025056658312678337, 0.0002268443931825459, 0.019540350884199142, -0.01616469956934452, -0.00659006554633379, 0.0039794254116714, -0.01811324618756771, 0.014421986415982246, 0.025729043409228325, -0.011039474979043007, -0.01125216856598854, 0.0055197374895215034, -0.02426077239215374, -0.009283038787543774, 0.03521105274558067, -0.0004365360946394503, 0.02228478156030178, 0.007272742688655853, -0.021461453288793564, 0.002087482949718833, -0.018003469333052635, 0.013001742772758007, -0.0050223092548549175, 0.023409998044371605, 0.013578074052929878, 0.005279599688947201, -0.011114946566522121, -0.024837102741003036, 0.020624401047825813, -0.00652831606566906, -0.01739969477057457, 0.011547194793820381, -0.03661071136593819, 0.03381139412522316, -0.004514589440077543, 0.008205849677324295, -0.029694747179746628, -0.011711860075592995, 0.027361979708075523, 0.009296760894358158, -0.0009588356479071081, -0.026566093787550926, 0.004003439098596573, -0.01724874973297119, 0.013262463733553886, 0.013921127654612064, 0.008802763186395168, -0.005749583709985018, -0.001951976795680821, -0.009152677841484547, 0.004871365614235401, 0.01613725535571575, -0.00802060030400753, -0.02228478156030178, 0.013495740480720997, 0.05436718463897705, 0.003989716991782188, -0.0004502582596614957, -0.00402402225881815, 0.003725565504282713, -0.023231610655784607, 0.012555773369967937, -0.057413503527641296, 0.02887141704559326, 0.012034331448376179, 0.009214428253471851, -0.023574665188789368, -0.008782180026173592, 0.008144100196659565, -0.02410982921719551, -0.01910124160349369, 0.01626075617969036, -0.012994881719350815, 0.03040829859673977, -0.014943428337574005, -0.01668614149093628, -0.01172558218240738, 0.0039931475184857845, 0.01589025743305683, -0.02268272452056408, 0.002024017972871661, -0.0011638103751465678, 0.014751317910850048, -0.005224711261689663, 0.023533498868346214, -0.010826781392097473, -0.02243572473526001, -0.0040514664724469185, 0.010915975086390972, 0.024096107110381126, 0.005032600834965706, -0.023602109402418137, 0.01420243177562952, -0.04188002273440361, 0.0008160395082086325, 0.001950261415913701, 0.013337936252355576, 0.0033310535363852978, -0.015560925006866455, -0.01262438390403986, -0.0011183557799085975, 0.048109881579875946, -0.009509454481303692, -0.0007937409682199359, -0.011794193647801876, -0.023135555908083916, 0.011327640153467655, 0.029036082327365875, -0.013543767854571342, 0.007869657129049301, 0.023437442258000374, -0.013852517120540142, -0.0028559237252920866, 0.026620984077453613, 0.0031046378426253796, -0.011801054701209068, -0.001706693205051124, -0.03156096115708351, 0.03109440580010414, -0.009118372574448586, 0.00660721817985177, -0.03941003233194351, -0.003433969570323825, -0.005495723802596331, 0.014353375881910324, -0.0007071198779158294, 0.018648410215973854, -0.020157847553491592, 0.005396238062530756, -0.015245315618813038, -0.01531392615288496, -0.015506036579608917, 0.010730726644396782, -0.005708416923880577, 0.0018044635653495789, 0.0029159581754356623, 0.003221276216208935, 0.012679272331297398, 0.005900527350604534, 0.001595200621522963, -0.030682740733027458, -0.0011809631250798702, -0.003588343970477581, -0.01693314127624035, -0.026991480961441994, 0.002795889275148511, 0.035458050668239594, -0.004017161205410957, 0.004936545621603727, 0.012240163050591946, -0.009550620801746845, 0.006240150425583124, 0.01335165835916996, -0.007876518182456493, -0.005725569557398558, -0.016452865675091743, 0.02120073139667511, 0.023409998044371605, -0.022545503452420235, -0.008171544410288334, 0.03425050154328346, 0.029200749471783638, 0.0013696426758542657, 0.004559186287224293, 0.008590069599449635, -0.013097798451781273, -0.006308761425316334, -0.004137230105698109, -0.021132120862603188, -0.010662115179002285, 0.0002010081516345963, 0.016027478501200676, 0.0071904100477695465, 0.0006136376759968698, 0.02058323472738266, 0.02085767686367035, -0.01180791575461626, 0.005482001230120659, -0.0013439137255772948, -0.0041921185329556465, 0.0013584934640675783, 0.039053257554769516, 0.008397960104048252, 0.04212702065706253, 0.01986968331038952, 0.006898813880980015, 0.018223023042082787, 0.010662115179002285, 0.0018370536854490638, 0.021886838600039482, 0.002274447353556752, -0.0018473452655598521, 0.014737595804035664, -0.0028559237252920866, -0.04624366760253906, 0.003332768799737096, 0.007409964222460985, -0.03252151235938072, -0.02559182234108448, 0.009591787122189999, -0.026291651651263237, 0.02428821660578251, 0.009029178880155087, -0.027485478669404984, -0.004397951066493988, 0.006264164578169584, 0.012219579890370369, 0.005276169162243605, -0.005924541037529707, -0.0003889373620040715, -0.024466603994369507, 0.017783913761377335, -0.007327631581574678, 0.029255637899041176, -0.028596973046660423, -0.009989730082452297, 0.013482018373906612, 0.0019262477289885283, 0.04069991409778595, -0.029612412676215172, -0.015327648259699345, 0.03990403190255165, 0.01764669269323349, 0.028596973046660423, 0.002271016826853156, -0.0033053243532776833, -0.006778745446354151, 0.025934875011444092, -0.002953694202005863, 0.0036706768441945314, -0.03847692534327507, 0.004384228959679604, 0.025509487837553024, 0.006260734051465988, -0.014792484231293201, 0.01742713898420334, 0.0014734165742993355, 0.002626077737659216, -0.013324214145541191, 0.012315635569393635, -0.007759879343211651, -0.010476866737008095, 0.022723890841007233, -0.021639840677380562, -0.02339627593755722, 0.01789369247853756, -0.008466570638120174, -0.021337952464818954, 0.00432591000571847, -0.027183592319488525], "087ce84a-d71a-4509-b1c4-02eed6a01c55": [-0.013334540650248528, -0.016221540048718452, -0.012417493388056755, 0.011541204527020454, -0.02505236119031906, 0.02465837076306343, -0.012852242216467857, -0.006847283337265253, -0.01732199639081955, -0.02274276129901409, 0.02850317396223545, 0.011860472150146961, 0.03103014826774597, 0.009313120506703854, -0.009958449751138687, 0.017593713477253914, 0.03401904180645943, 0.0033811856992542744, 0.05230563506484032, -0.015433559194207191, -0.01599057950079441, 0.0010919650085270405, -0.0007557145436294377, 0.017023107036948204, -7.047675171634182e-05, 0.028557518497109413, 0.019794626161456108, -0.01499881036579609, 0.012268048711121082, -0.01597699336707592, -0.01463199220597744, 0.009625595062971115, 0.027592921629548073, -0.0072412737645208836, -0.02464478462934494, 0.0006699536461383104, -0.0015088816871866584, -0.011507240124046803, 0.013246232643723488, -0.0007043429068289697, 0.0030670121777802706, 0.0035866720136255026, -0.02562296763062477, 0.0026424534153193235, -0.020867910236120224, 0.028258629143238068, 0.004710903856903315, -0.022212913259863853, -0.011418931186199188, 0.007166551426053047, 0.03388318419456482, 0.007655642926692963, -0.02501160465180874, 0.005315475165843964, -0.018830029293894768, 0.0016566280974075198, 0.010101101361215115, 0.022049881517887115, -0.02270200476050377, 0.01789260283112526, -0.0036002579145133495, -0.0028853011317551136, 0.007295617368072271, 0.02099018357694149, -0.04119238629937172, -0.00048357239575125277, 0.0032317410223186016, -0.015379215590655804, -0.012254463508725166, 0.0012864129384979606, 0.04798532649874687, 0.021261900663375854, -0.005417369306087494, -0.00046956195728853345, 0.02444099634885788, -0.02465837076306343, -0.022226499393582344, -0.0017865431727841496, -0.013769288547337055, -0.0032674039248377085, -0.012947343289852142, -0.03676338866353035, -0.025188220664858818, 0.006093266885727644, 0.031301867216825485, -0.007295617368072271, 0.007200515829026699, 0.014930881559848785, -0.01328019704669714, -0.04350198432803154, 0.0029396447353065014, 0.025731654837727547, 0.016506843268871307, 0.022634074091911316, -0.015718862414360046, 0.016601944342255592, -0.022946549579501152, 0.024182865396142006, 0.0049962070770561695, -0.02388397604227066, -0.017838260158896446, -0.001728803152218461, -0.014550476334989071, -0.005519263446331024, -0.0339103564620018, 0.01117438543587923, -0.012172947637736797, -0.020120687782764435, 0.010148651897907257, -0.02964438870549202, -0.004412014503031969, 0.018001290038228035, -0.025731654837727547, -0.04507794603705406, -0.02582675591111183, -0.015379215590655804, 0.03344843536615372, -0.010128272697329521, -0.024114936590194702, -0.019006645306944847, 0.004272758960723877, 0.001707575167529285, 0.005213581025600433, 0.00020718465384561568, 0.015080326236784458, -0.014564062468707561, 0.024210037663578987, -0.01888437196612358, 0.02464478462934494, 0.007030692417174578, 0.033584292978048325, 0.010705673135817051, 0.01076680887490511, -0.00012227291881572455, -0.022851448506116867, 0.016846491023898125, -0.029318327084183693, -0.010773601941764355, -0.02501160465180874, -0.035703688859939575, 0.01984896883368492, 0.01290658488869667, -0.008348522707819939, -0.03141055256128311, -0.014917295426130295, 0.03559500351548195, 0.026913626119494438, 0.001699084066785872, -0.012689211405813694, -0.007648849859833717, 0.014074970968067646, -0.009095746092498302, 0.0006028733914718032, 0.0018323954427614808, 0.015650933608412743, -0.002608488779515028, 0.02217215485870838, -0.01185368001461029, -0.006935591343790293, -0.0015352043556049466, 0.014468961395323277, 0.007567334920167923, 0.015841135755181313, -0.008837614208459854, -0.003024556441232562, 0.02465837076306343, 0.009435392916202545, -0.0027018918190151453, -0.021261900663375854, -0.0056211575865745544, 0.0005476807709783316, 0.01656118594110012, -0.03333974629640579, 0.00800208281725645, -0.004510512109845877, -0.002051467774435878, 0.03929036110639572, 0.019536495208740234, -0.013769288547337055, 0.0026984952855855227, -0.04847441613674164, -0.005458126775920391, 0.034752678126096725, 0.027647264301776886, 0.004445978906005621, -0.00300417747348547, -0.012811483815312386, -0.001420573447830975, 0.008749306201934814, 0.0030262547079473734, 0.019957656040787697, 0.022946549579501152, -0.019224019721150398, -0.013517949730157852, -0.6382102370262146, -0.02812276966869831, -0.016316641122102737, -0.0017474837368354201, -0.03469833731651306, 0.013144338503479958, 0.007098621688783169, 0.009897313080728054, -0.009978828020393848, 0.005624554120004177, -0.015718862414360046, -0.002564334776252508, -0.008851200342178345, -0.01581396348774433, -0.01925119012594223, -0.014373860321938992, 0.02406059205532074, -0.023000894114375114, -0.007580920588225126, -0.002110905945301056, -0.003854993265122175, 0.01635739952325821, -0.006534807849675417, -0.005651725921779871, -0.0013169811572879553, -0.0077779158018529415, 0.009122918359935284, -0.0010291303042322397, 0.006599341053515673, 0.030486712232232094, -0.011697442270815372, 0.013755702413618565, 0.023136751726269722, -0.0013517950428649783, 0.0508655309677124, -0.0018663601949810982, -0.020895082503557205, 0.02790539525449276, 0.014699921011924744, 0.0068948338739573956, -0.015121083706617355, -0.024019833654165268, 0.020120687782764435, 0.007642057258635759, -0.0011182876769453287, 0.008660998195409775, 0.02099018357694149, -0.00981579814106226, 0.004877330735325813, 0.017009520903229713, 0.006100059952586889, -0.019944069907069206, -0.02734837494790554, -0.021289072930812836, 0.0208271536976099, 0.0016617228975519538, 0.03583955019712448, -0.01772957295179367, 0.0009773342171683908, -0.01164989173412323, -0.0021635512821376324, 0.023449227213859558, 0.003284386359155178, 0.001117438543587923, -0.000855061283800751, 0.02539200894534588, -0.015460730530321598, 0.02559579722583294, 0.035540658980607986, -0.01599057950079441, -0.003912733402103186, 0.02020220272243023, -0.0007930757128633559, -0.01772957295179367, 0.022634074091911316, -0.006184971425682306, 0.029508529230952263, -0.03198115900158882, -0.004235398024320602, 0.03871975466609001, 0.01415648590773344, -0.017607299610972404, -0.05083835870027542, -0.02101735584437847, 0.013782874681055546, -0.018232250586152077, -0.0009586536325514317, 0.032280050218105316, -0.007282031234353781, 0.014129314571619034, 0.009591630659997463, 0.011683856137096882, 0.014849365688860416, 0.01387797575443983, 0.02790539525449276, 0.020473919808864594, -0.01355870719999075, 0.0025031983386725187, 0.03217136114835739, -0.004609009716659784, -0.0062868655659258366, -0.008885164745151997, 0.00944218598306179, -0.00906178168952465, 0.013633430004119873, -0.011045319959521294, -0.0323072224855423, 0.0037972533609718084, 0.04412693530321121, -0.013320954516530037, -0.0012031993828713894, -0.0148357804864645, -0.012009916827082634, 0.01676497422158718, 0.019740283489227295, -0.02271559089422226, 0.01561017520725727, -0.013538328930735588, 0.016303054988384247, -0.0072412737645208836, 0.019590837880969048, -0.01521618478000164, 0.011792543344199657, -0.02173740603029728, 0.018585482612252235, 0.039969656616449356, 0.020066343247890472, -0.014251586981117725, 0.00534604350104928, -0.004890916403383017, -0.0026339623145759106, -0.019672352820634842, 0.0263837780803442, -0.001461331150494516, 0.0107803950086236, -0.013069615699350834, 0.024726299569010735, 0.007220895029604435, 0.012403908185660839, -0.028204284608364105, -0.00543435150757432, -0.0016031337436288595, 0.021221144124865532, 0.0028717152308672667, 0.00847758911550045, -0.03695359081029892, -0.014074970968067646, -0.0072412737645208836, -0.03890995681285858, -0.005267924629151821, -0.011405345983803272, -0.002340167760848999, 0.00653820438310504, 0.002357149962335825, 0.005407180171459913, -0.0037564956583082676, -0.013463606126606464, 0.006307244300842285, 0.008810442872345448, -0.016588358208537102, 0.007771122734993696, 0.003095882246270776, -0.014781436882913113, 0.017199723049998283, 0.02520180679857731, -0.023381298407912254, -0.01619436778128147, 0.011561582796275616, 0.011126834899187088, -0.03336691856384277, 0.005193202290683985, -0.00567210465669632, -0.006718217395246029, 0.04116521403193474, -0.014319516718387604, -0.0014732187846675515, -0.011215142905712128, -0.023245438933372498, -0.012859034352004528, 0.01711820811033249, -0.0002698070602491498, -0.0063921562395989895, -0.009550873190164566, -0.0011293261777609587, 0.008205871097743511, -0.007655642926692963, -0.020650535821914673, -0.007784708868712187, 0.0041131251491606236, 0.02175099216401577, 0.004262569826096296, 0.00018892863590735942, 0.006507636047899723, -0.007642057258635759, 0.008368901908397675, 0.0033743928652256727, 0.008049633353948593, 0.01906098797917366, 0.008165113627910614, 0.029508529230952263, 0.01868058368563652, -0.007730365265160799, 0.012913377955555916, -0.006157799623906612, -0.0033132561948150396, -0.03005196526646614, 0.016112852841615677, 0.009870141744613647, 0.03575803339481354, -0.028068426996469498, -0.0003559924953151494, -0.0423879437148571, -0.0060355267487466335, -0.005841928068548441, 0.017362752929329872, 0.04858310520648956, 0.016683459281921387, 0.006188367959111929, -0.0028886976651847363, 0.0061136456206440926, 0.010549435392022133, -0.014278759248554707, -0.0004445129889063537, -0.0028632241301238537, -0.021506447345018387, -0.01230880618095398, 0.001959763001650572, 0.03018782287836075, 0.02501160465180874, -0.012648453935980797, 0.017213309183716774, -0.002484517637640238, -0.017974117770791054, 0.017417097464203835, 0.0028122770600020885, -0.008185491897165775, 0.014142900705337524, -0.009394635446369648, 0.04578441381454468, -0.030921461060643196, 0.013796460814774036, 0.001566621707752347, 0.03760571405291557, -0.017770329490303993, -0.0034049609676003456, -0.015854721888899803, 0.01164989173412323, 0.008525139652192593, 0.009516908787190914, 0.021465688943862915, -0.014645577408373356, 0.0043135168962180614, -0.01387797575443983, -0.009775039739906788, 0.018952300772070885, -0.03100297600030899, -0.008810442872345448, 0.007152965292334557, 0.019713111221790314, 0.03662753105163574, 0.006032130215317011, 0.012940550222992897, 0.010433955118060112, 0.015297699719667435, 0.05447937548160553, -0.008015668950974941, 0.013680980540812016, 0.018381694331765175, -0.011982745490968227, -0.02578599937260151, -0.011622719466686249, -0.0010809265077114105, -0.0025048963725566864, 0.0016252108616754413, -0.0032775932922959328, 0.004673542454838753, 0.01185368001461029, -0.016601944342255592, -0.005879289470613003, -0.014319516718387604, -0.01269600447267294, -0.021329831331968307, 0.020120687782764435, 0.007010313682258129, 0.0016243617283180356, -0.02113962732255459, -0.012213705107569695, -0.005250942427664995, -0.01691441982984543, 0.03461682051420212, -0.013409262523055077, 0.004541079979389906, 0.02119397185742855, -0.021058112382888794, -0.002594902878627181, 0.005210184492170811, 0.012369942851364613, -0.009584837593138218, 0.04040440544486046, -0.008103976957499981, 0.013796460814774036, 0.02230801433324814, -0.031138835474848747, 0.0010274321539327502, 0.016669873148202896, 0.014047798700630665, -0.0028836028650403023, -0.00944218598306179, 0.004218415357172489, -0.02444099634885788, 0.009245190769433975, -0.025853928178548813, -0.0006075435667298734, -0.0034779850393533707, 0.001317830290645361, 0.013327747583389282, -0.016275882720947266, 0.012281634844839573, 0.01676497422158718, -0.005763809196650982, -0.006650288123637438, -0.013837218284606934, -0.03556783124804497, -0.012451458722352982, 0.106404609978199, 0.025908270850777626, -0.02793256752192974, 0.00022204421111382544, 0.011833300814032555, 0.01615361124277115, -0.016044924035668373, -0.04559421166777611, 0.016330227255821228, 0.0029634200036525726, 0.010698880068957806, -0.02348998561501503, 0.01851755380630493, 0.009292741306126118, 0.004500322509557009, -0.01521618478000164, -0.011323830112814903, 0.010651329532265663, 0.004619198851287365, 0.008647412061691284, -0.004955449607223272, 0.017267651855945587, -0.00954408012330532, 0.012743555009365082, -0.0358123779296875, -0.0077779158018529415, 0.01832735165953636, -0.005583796184509993, 0.005138858687132597, -0.02847600355744362, -0.02999762073159218, 0.02717175893485546, 0.012784312479197979, 0.03238873556256294, -0.028231456875801086, -0.005189805757254362, 0.009231604635715485, 0.011160800233483315, -0.012295220978558064, -0.003114562714472413, 0.029019437730312347, 0.017063863575458527, -0.01079398114234209, -0.011405345983803272, 0.005210184492170811, 0.006341209169477224, -0.01847679540514946, -0.02366660162806511, -0.021846093237400055, -0.020473919808864594, 0.037252482026815414, -0.01279789861291647, -0.012532973662018776, -0.007119000889360905, 0.014862951822578907, 0.0006338661769405007, -0.013450020924210548, -0.020541848614811897, -0.0019224019488319755, 0.034154899418354034, 0.0026967970188707113, 0.013782874681055546, 0.02658756636083126, -0.005325664766132832, -0.010760016739368439, -0.01734916865825653, -0.03062257170677185, -0.013022065162658691, -0.012471836991608143, 0.040893495082855225, -0.007465440779924393, -0.010427162051200867, -0.011425724253058434, 0.01730841025710106, -0.011867265217006207, -0.006354794837534428, 0.022036295384168625, -0.015949822962284088, 0.010406783781945705, 0.003214758588001132, -0.013626636937260628, -0.02271559089422226, 0.010026378557085991, -0.021030941978096962, -0.017430683597922325, -0.014944466762244701, 0.007003520615398884, 0.02384321764111519, -0.02503877505660057, 0.008063219487667084, -0.0023469605948776007, 0.01038640458136797, 0.000511593243572861, -0.008796856738626957, 0.007954532280564308, -0.010895875282585621, -0.01846320927143097, -0.015732448548078537, -0.003106071613729, 0.003960283938795328, 0.002477724803611636, -0.04252380132675171, -0.006364984437823296, -0.0014129314804449677, 0.0021278883796185255, -0.01907457411289215, 0.008735720068216324, 0.021071698516607285, -0.010712466202676296, -0.0034915709402412176, 0.01502598263323307, -0.0227291751652956, 0.0077779158018529415, -0.005227167159318924, -0.00021440215641632676, 0.0007221744162961841, 0.02389756217598915, 0.009204433299601078, 0.00740430410951376, -0.0016583263641223311, 0.005828342400491238, -0.034915708005428314, -0.0018731531454250216, 0.0008975171367637813, -0.027389133349061012, -0.009258776903152466, 0.007227687630802393, -0.04140976071357727, 0.029562873765826225, -0.0011666873469948769, 0.024413825944066048, -0.0017406907863914967, 0.008497967384755611, -0.0137760816141963, -0.033801667392253876, 0.00760809239000082, -0.006412534974515438, -0.0107803950086236, -0.021234728395938873, 0.00774395139887929, -0.007689607795327902, -0.03774157166481018, -0.009197640232741833, -0.02293296344578266, 0.00028912449488416314, -0.027470648288726807, -0.029100952669978142, 0.013592672534286976, 0.012892999686300755, -0.014360274188220501, 0.007934153079986572, -0.02658756636083126, -0.04083915427327156, -0.015270528383553028, 0.0011683856137096882, -0.03755136951804161, -0.011228729039430618, -0.0008597314008511603, 0.02926398441195488, 0.008613447658717632, 0.04179016500711441, -0.02384321764111519, 0.004693921189755201, 0.005505677778273821, 0.003522139275446534, -0.011079284362494946, -0.0016795543488115072, -0.03567652031779289, -0.03179095685482025, -0.027986912056803703, 0.02904660999774933, 0.025949029251933098, 0.03412772715091705, 0.006490653846412897, -0.000900913611985743, 0.04132824391126633, 0.005655122455209494, 0.002207705285400152, -0.00895988754928112, -0.03160075470805168, -0.021791750565171242, 0.003347221063449979, -0.004483340308070183, -0.007390718441456556, -0.024930087849497795, 0.0023197887931019068, 0.035350456833839417, 0.010481505654752254, 0.0008924224530346692, -0.018232250586152077, -0.0041301073506474495, -0.01772957295179367, 0.007220895029604435, 0.003355712164193392, 0.014360274188220501, 0.0035696898121386766, 0.029671560972929, -0.02081356756389141, 0.012471836991608143, -0.004778833128511906, 0.004102935548871756, 0.009082159958779812, -0.003038142342120409, -0.009550873190164566, -0.013844011351466179, 0.001650684280321002, -0.011351002380251884, -0.01619436778128147, 0.004884123802185059, -0.02119397185742855, -0.021030941978096962, -0.0005226318025961518, 0.00530188949778676, -0.02154720388352871, -0.030486712232232094, 0.0038515967316925526, -0.013504363596439362, 0.009707110933959484, -0.014115728437900543, -0.01884361542761326, -0.002048071241006255, -0.0004389937093947083, 0.05312078818678856, 0.015161841176450253, 0.010508677922189236, 0.00423200149089098, -0.010345647111535072, 0.005230563692748547, -0.0007026446983218193, -0.011181178502738476, -0.020297303795814514, 0.03217136114835739, 0.019400635734200478, -0.01790618896484375, 0.006514429114758968, -0.035703688859939575, -0.0033030668273568153, -0.04227925464510918, -0.015379215590655804, 0.009523700922727585, 0.008708548732101917, -0.00017608572670724243, 0.005716258659958839, -0.0024590441025793552, -0.016710631549358368, 0.010141858831048012, 0.0028479399625211954, 0.0134839853271842, -0.011425724253058434, -0.021329831331968307, -0.03043236956000328, 0.01599057950079441, 0.020854324102401733, 0.01908816024661064, 0.012227291241288185, -0.018408866599202156, -0.043393298983573914, -0.012560144998133183, -0.01732199639081955, -0.005393594037741423, 0.007567334920167923, 0.013653808273375034, -0.019183261319994926, 0.01442820392549038, 0.00750619824975729, -0.012437872588634491, -0.010923046618700027, -0.008056426420807838, -0.028204284608364105, 0.024359481409192085, 0.018830029293894768, 0.014862951822578907, 0.02444099634885788, 0.024780644103884697, 0.023422054946422577, 0.007064657285809517, -0.00212109531275928, 0.013144338503479958, -0.024549683555960655, 0.0009382747812196612, -0.0012133888667449355, -0.002029390772804618, 0.01047471258789301, 0.00954408012330532, -0.01173819974064827, -0.005828342400491238, 0.007995289750397205, 0.016697045415639877, -0.001242258818820119, -0.041110869497060776, -0.029155297204852104, -0.005577003583312035, -0.02234877087175846, 0.016819318756461143, 0.006191764492541552, 0.0236801877617836, -0.009435392916202545, 0.03024216741323471, -0.02869337610900402, 0.035133082419633865, -0.02907378226518631, 0.013939112424850464, -0.042632490396499634, 0.01203029602766037, -0.001393401762470603, -0.02831297181546688, 0.02037881873548031, -0.029725903645157814, -0.023394884541630745, 0.013714944943785667, 0.0065755657851696014, -0.0015971899265423417, -0.0009170468547381461, 0.009258776903152466, -0.0029804022051393986, 0.007003520615398884, 0.017566541209816933, -0.013626636937260628, -0.04869179055094719, 0.019903313368558884, 0.028802063316106796, -0.0022229894530028105, 0.0012295220512896776, -0.017023107036948204, 0.016887247562408447, 0.012621281668543816, 0.007166551426053047, 0.006534807849675417, -0.03564934805035591, 0.02153361774981022, -0.012743555009365082, 0.012111810967326164, 0.013219060376286507, -0.00587589293718338, -0.007003520615398884, -0.02483498677611351, -0.004724489524960518, -0.002280729589983821, 0.0028937922324985266, -0.010243752971291542, 0.032606109976768494, 0.006599341053515673, -0.00954408012330532, -0.004598820116370916, 0.0025286718737334013, 0.004860348533838987, 0.007302409969270229, -0.009489736519753933, -0.04605612903833389, -0.001320377690717578, -0.0036478086840361357, 0.04719734564423561, 0.0010749826906248927, -0.0019920296035706997, -0.008348522707819939, -0.012954135425388813, -0.030079137533903122, -0.013857596553862095, 0.007852638140320778, 0.02639736421406269, 0.03141055256128311, -0.006429517176002264, -0.000855061283800751, 0.014958052895963192, -0.02410135045647621, 0.004513908177614212, -0.0014672749675810337, -0.020324476063251495, -0.005189805757254362, -0.02236235700547695, 0.002886999398469925, 0.00895988754928112, -0.01733558252453804, 0.006837093736976385, 0.01288620661944151, -0.004055385012179613, -0.0001292781380470842, 0.014278759248554707, 0.017661642283201218, 0.0011480067623779178, -0.01634381338953972, 0.010556228458881378, 0.022104226052761078, 0.0026917022187262774, 0.006157799623906612, 0.00110894744284451, -0.007553748786449432, -0.010046757757663727, -0.00809039082378149, -0.021289072930812836, -0.03477985039353371, 0.008348522707819939, -0.011894437484443188, 0.009068574756383896, -0.02217215485870838, -0.005838531535118818, -0.017023107036948204, -0.02290579304099083, 0.02809559740126133, -0.0040519884787499905, -0.0055939857847988605, 0.021723821759223938, 0.008599861524999142, -0.010855117812752724, -0.004537683445960283, 0.017566541209816933, 0.006969556212425232, -0.02961721643805504, 0.017213309183716774, -0.03736116737127304, 0.01387797575443983, -0.010508677922189236, 0.0037157379556447268, -0.013769288547337055, 0.003922922536730766, -0.01223408430814743, -0.008334936574101448, -0.010760016739368439, 0.030513884499669075, 0.018408866599202156, -0.005427558906376362, 0.008178699761629105, -0.01844962313771248, -0.011167592369019985, 0.0064770677126944065, -0.011235522106289864, -0.002564334776252508, -0.001959763001650572, 0.01634381338953972, -0.002577920677140355, 0.011765371076762676, -0.012417493388056755, -0.0009323309641331434, 0.004782229661941528, -0.02253897301852703, 0.00023838972265366465, 0.21041810512542725, -0.02077280916273594, 0.011228729039430618, 0.03018782287836075, 0.00836210884153843, 0.031655099242925644, 0.03497005254030228, -0.020338060334324837, -0.015664517879486084, 0.0021058113779872656, -0.013714944943785667, 0.02236235700547695, -0.011534411460161209, 0.009367464110255241, 0.0009187450632452965, 0.011792543344199657, -0.048420075327157974, -0.009211226366460323, 0.0031213557813316584, -0.05271321162581444, -0.0019444789504632354, -0.011351002380251884, -0.01656118594110012, -0.008735720068216324, 0.016710631549358368, 0.01029809657484293, -0.02730761654675007, -0.02113962732255459, 0.02501160465180874, 0.0007022201316431165, -0.031492069363594055, -0.02118038572371006, -0.010338854044675827, 0.010617364197969437, -0.0028666204307228327, -0.005801170598715544, 0.009231604635715485, 0.011765371076762676, 0.015542245469987392, -0.014020627364516258, 0.0221449825912714, 0.0005960804410278797, -0.0036783767864108086, -0.0031264505814760923, -0.01672421768307686, 0.022620489820837975, -0.005383404437452555, -0.0005863155820406973, -0.020677708089351654, -0.003078899811953306, -0.020338060334324837, -0.005886082071810961, 0.044181279838085175, 0.017593713477253914, 0.007512991316616535, -0.02078639529645443, 0.0009595027077011764, 0.009849762544035912, -0.012281634844839573, 0.002824164694175124, -0.020677708089351654, 0.03586672246456146, 0.011439310386776924, 0.01831376552581787, -0.031655099242925644, 0.01580037735402584, 0.0051796166226267815, 0.0013815141282975674, 0.008559104055166245, -0.016710631549358368, -0.0008019914384931326, -0.028557518497109413, -0.01945497840642929, -0.0031807939521968365, -0.020134273916482925, 0.004884123802185059, 0.03097580559551716, -0.03363863751292229, -0.008042840287089348, 0.0017050278838723898, 0.0056890868581831455, -0.014414617791771889, 0.015569417737424374, -0.005573607049882412, 0.002635660581290722, -0.027810294181108475, -0.00014657889551017433, -0.0027426492888480425, -0.011228729039430618, 0.013640223070979118, -0.01944139413535595, -0.020935839042067528, -0.002472630003467202, -0.01963159628212452, -0.0007760933367535472, -0.030459541827440262, 0.038230665028095245, 0.013123959302902222, 0.007282031234353781, 0.0016761578153818846, -0.011833300814032555, -0.00091449951287359, 0.02154720388352871, 0.008144734427332878, -0.02194119431078434, -0.009272363036870956, 0.018001290038228035, 0.012532973662018776, 0.024128520861268044, 0.0025881100445985794, 0.02524256333708763, -0.027049485594034195, -0.008178699761629105, -0.025718068704009056, 0.0016387966461479664, 0.029318327084183693, -0.0029702128376811743, -0.02253897301852703, -0.016275882720947266, 0.019767453894019127, 0.018802857026457787, -0.008029255084693432, -0.001249900902621448, 0.012600903399288654, -0.006225729361176491, -0.004065574146807194, -0.023775288835167885, 0.028829235583543777, -0.0001748120557749644, -0.007424682844430208, 0.02866620570421219, -0.04491491615772247, -0.011289865709841251, 0.0022416701540350914, -0.0005400386871770024, 0.016112852841615677, 0.019550079479813576, -0.01964518055319786, 0.025133876129984856, -0.013354918919503689, 0.004979224875569344, -0.0022094035521149635, 0.006735199596732855, 0.014985225163400173, -0.011500447057187557, -0.010997769422829151, 0.0005527754547074437, -0.024400239810347557, 0.01269600447267294, -0.008878371678292751, -0.025921856984496117, -0.021424932405352592, 0.004143693018704653, -0.01241070032119751, -0.015053153969347477, -0.022987307980656624, -0.01146648172289133, -0.019944069907069206, 0.0010452636051923037, 0.020650535821914673, -0.031084490939974785, 0.008294179104268551, 0.004710903856903315, -0.0020769413094967604, -0.018028462305665016, -0.014061384834349155, -0.17313843965530396, 0.02290579304099083, 0.02134341560304165, -0.004143693018704653, 0.01308999489992857, 0.02135700173676014, 0.012451458722352982, 0.0054377480410039425, -0.0005154142854735255, -0.013219060376286507, 0.021316245198249817, 0.01983538456261158, -0.033964697271585464, -0.02312316559255123, 0.0035968616139143705, 0.014251586981117725, -0.006782750133424997, 0.011024940758943558, 0.03309520334005356, 0.021221144124865532, 0.004160675685852766, -0.010515470989048481, -0.0010248847538605332, 0.0003655450709629804, 0.012166154570877552, 0.0010834739077836275, 0.004218415357172489, 0.012872620485723019, 0.004588630516082048, -0.028774892911314964, -0.015949822962284088, 0.007363546639680862, 0.0038923544343560934, -0.01999841444194317, 0.024889331310987473, 0.007479026447981596, 0.0007816126453690231, 0.0008452964248135686, -0.001133571844547987, 0.008287386037409306, -0.006823508068919182, -0.004530890844762325, 0.015256942249834538, -0.0011751785641536117, 0.006432913709431887, 0.039752282202243805, -0.009156882762908936, -0.005539642181247473, -0.0008210965897887945, -0.015827549621462822, 0.022987307980656624, -0.0008881768444553018, 0.032252877950668335, 0.004265965893864632, 0.043040066957473755, 0.006300451699644327, 0.00809039082378149, 0.016411742195487022, -0.0025966011453419924, -0.022267255932092667, 0.006996728014200926, -0.011982745490968227, 0.033421263098716736, -0.016466084867715836, -0.0028988870326429605, -0.026125645264983177, -0.019210433587431908, -0.004683732055127621, -0.015827549621462822, 0.022783519700169563, 0.005458126775920391, -0.004201433155685663, 0.028177114203572273, -0.010454334318637848, 0.0005867401487194002, 0.00027341581881046295, -0.02429155260324478, 0.023136751726269722, -0.019332706928253174, -0.01850396767258644, -0.05722372233867645, 0.04037723317742348, -0.012254463508725166, -0.011140421032905579, 0.0019444789504632354, 0.021615134552121162, -0.011398552916944027, -0.0043882387690246105, -0.010950218886137009, -0.00750619824975729, 0.008497967384755611, -0.009265569970011711, -0.01732199639081955, -0.017756743356585503, 0.020242959260940552, 0.008824029006063938, 0.017254067584872246, -0.006860869005322456, 0.009679938666522503, -0.006242711562663317, 0.012009916827082634, -0.013993456028401852, -0.0005922593991272151, 0.03910015895962715, 0.03043236956000328, 0.010148651897907257, -0.008531931787729263, -0.004496925976127386, 0.031111663207411766, 0.010542642325162888, -0.005441144574433565, 0.014360274188220501, 0.017430683597922325, 0.0011055509094148874, 0.016425328329205513, 0.043855220079422, 0.010861910879611969, -0.013171509839594364, 0.01830017939209938, -0.019210433587431908, 0.06977707892656326, 0.0021092076785862446, -0.00549209164455533, 0.014686335809528828, -0.009265569970011711, -0.021655891090631485, -0.11814280599355698, -0.008803649805486202, 0.007716779597103596, 0.010073929093778133, -0.0003844379389192909, 0.022077053785324097, -0.011480067856609821, 0.008402866311371326, 0.005695879925042391, -0.0033947716001421213, -0.02022937498986721, -0.026628322899341583, -0.009707110933959484, -0.004347481299191713, 0.002426777733489871, -0.04059460759162903, 0.004795815329998732, -0.02211781218647957, 0.010929839685559273, 0.03179095685482025, -0.017267651855945587, -0.02751140482723713, 0.01540638692677021, -0.03252459317445755, 0.012994893826544285, -0.005750223528593779, -0.025541452690958977, 0.017091035842895508, 0.008158320561051369, 0.025079533457756042, 0.0017882413230836391, -0.004758454393595457, 0.004578441381454468, -0.0021041131112724543, 0.0011293261777609587, -0.016289468854665756, -0.03448096290230751, -0.006561979651451111, 0.02734837494790554, -0.028829235583543777, 0.011806129477918148, 0.005597382318228483, 0.009659560397267342, -0.0008745910017751157, 0.0017109717009589076, -0.0009595027077011764, -0.028041254729032516, 0.001755974837578833, 0.020514678210020065, -0.00954408012330532, -0.011711027473211288, 0.015080326236784458, -0.023259025067090988, -0.01185368001461029, 0.016221540048718452, -0.005308682098984718, 0.026234332472085953, 0.014917295426130295, -0.011914815753698349, 0.005879289470613003, -0.010569813661277294, 0.01241070032119751, 0.009944863617420197, 0.022769933566451073, 0.018993059173226357, 0.0004967337008565664, -0.009516908787190914, -0.023041650652885437, 0.0148357804864645, -0.0026118853129446507, -0.00283605232834816, 0.010447541251778603, -0.0365460142493248, 0.012268048711121082, -0.0041131251491606236, 0.018395280465483665, -0.026057716459035873, -0.011996331624686718, 0.028774892911314964, 0.0021822317503392696, -0.004191243555396795, -0.01502598263323307, 0.005790980998426676, -0.008423245511949062, 0.023000894114375114, 0.009550873190164566, 0.002453949535265565, -0.0025286718737334013, -0.005587192717939615, -0.021302659064531326, 0.0018952301470562816, 0.017607299610972404, -0.00238602003082633, -0.025256149470806122, 0.006650288123637438, 0.03665470331907272, 0.011452896520495415, 0.005132066085934639, 0.0013900052290409803, -0.008776477538049221, -0.030350854620337486, 0.0004542778478935361, -0.05966918170452118, 0.02560938149690628, -0.0031434327829629183, 0.012471836991608143, -0.006018544547259808, -0.005176220089197159, 0.01232239231467247, -0.013259817846119404, -0.0027290633879601955, 0.015093911439180374, -0.01656118594110012, 0.016629116609692574, -0.011133627966046333, -0.0034508132375776768, -0.014387446455657482, -0.015637347474694252, 0.002951532369479537, -0.02348998561501503, -4.566659845295362e-05, 0.00925198383629322, 0.01145968958735466, 0.0012677323538810015, 0.02634301967918873, -0.007112207822501659, -0.02252538688480854, -0.010855117812752724, 0.008470796048641205, 0.017648058012127876, 0.0028700169641524553, -0.029590044170618057, 0.014971639029681683, -0.04371935874223709, 0.0057841879315674305, 0.005070929415524006, 0.00944218598306179, 0.012723175808787346, -0.009054988622665405, -0.02775595150887966, -0.0016787052154541016, 0.04396390542387962, -0.013735324144363403, -0.012424286454916, -0.006568772718310356, -0.020473919808864594, 0.006497446913272142, 0.03233439102768898, -0.008878371678292751, -0.001069038873538375, 0.02540559507906437, -0.015229770913720131, -0.0046599567867815495, 0.012200119905173779, -0.0076148854568600655, -0.022430285811424255, 0.0063751740381121635, -0.02620716020464897, 0.017811087891459465, -0.0130084790289402, 0.014224415645003319, -0.037632886320352554, 0.005210184492170811, 0.005206788424402475, 0.014360274188220501, -0.0013093390734866261, 0.01696876250207424, -0.009944863617420197, -0.007730365265160799, -0.009802212007343769, -0.011052113026380539, -0.01355870719999075, 0.008545517921447754, 0.002990591572597623, -0.003661394352093339, -0.0067555783316493034, 0.004330499097704887, 0.026641909033060074, 0.004038402810692787, 0.0006758975214324892, -0.027620092034339905, -0.0030941839795559645, -0.002995686372742057, -0.014686335809528828, -0.02635660581290722, -0.007981703616678715, 0.03078560158610344, 0.016235126182436943, 0.0017381433863192797, 0.025351250544190407, 0.003457606304436922, 0.010936632752418518, 0.016262296587228775, -0.004588630516082048, 0.002678116550669074, -0.010352440178394318, 0.016072094440460205, 0.035921063274145126, -0.008294179104268551, -0.0019784437026828527, 0.03793177381157875, 0.04635502025485039, 0.010012793354690075, 0.01540638692677021, 0.014876537956297398, -0.015039568766951561, 0.0007688758778385818, -0.0169551782310009, -0.017824674025177956, -0.02563655376434326, 0.016044924035668373, 0.019482150673866272, 0.001368777360767126, 0.006276676431298256, 0.031274694949388504, 0.02037881873548031, -0.0052475458942353725, 0.0026254712138324976, -0.000464042677776888, -0.013015272095799446, -0.005488695111125708, 0.015093911439180374, 0.02062336541712284, 0.04888199269771576, 0.013409262523055077, 0.011147214099764824, 0.021710235625505447, 0.011527618393301964, 0.006371777504682541, 0.018368108198046684, 0.0010427162051200867, -0.0030126688070595264, -0.004428996704518795, -0.001929194899275899, -0.035921063274145126, -0.009503322653472424, 0.004721092991530895, -0.030704086646437645, -0.023802461102604866, 0.003725927323102951, -0.013490778394043446, 0.029100952669978142, 0.015664517879486084, -0.016805732622742653, 0.004218415357172489, 0.0009535588906146586, 0.003980662673711777, -0.006191764492541552, -0.0019733489025384188, -0.007716779597103596, -0.019726697355508804, 0.0029447393026202917, -0.0063921562395989895, 0.01434668805450201, -0.03059539943933487, -0.007322788704186678, 0.021316245198249817, 0.0021788354497402906, 0.03502439707517624, -0.024780644103884697, -0.004751661326736212, 0.0327419675886631, 0.019930485635995865, 0.00688804080709815, 0.005757016129791737, -0.004826383665204048, -0.009693524800240993, 0.027497820556163788, -0.0007357602589763701, -0.00437804963439703, -0.02736196108162403, -0.00399424834176898, 0.02291937917470932, 0.003219853388145566, -0.016085680574178696, -0.005485298577696085, -0.002275634789839387, -0.002664530649781227, -0.00024072479573078454, 0.010202995501458645, 0.015053153969347477, -0.01983538456261158, 0.015093911439180374, -0.02198195271193981, -0.022810691967606544, 0.017838260158896446, -0.01028451044112444, -0.01887078583240509, 0.0015615270240232348, -0.04135541617870331], "3f258c1f-302b-4608-8d7f-e978d750bb94": [0.0006471843807958066, -0.02836896851658821, 0.0010463822400197387, 0.007389480248093605, -0.02470533549785614, 0.02814776822924614, -0.005132543854415417, -0.01723981648683548, -0.008896409533917904, -0.030580975115299225, 0.031631678342819214, 0.010721313767135143, 0.0254657119512558, 2.4048672457865905e-06, -0.0054194130934774876, 0.014419510029256344, 0.03533678501844406, -0.01154390349984169, 0.04454425722360611, -0.02293573133647442, -0.010396425612270832, 3.491360985208303e-05, -0.013320419937372208, 0.013714433647692204, -0.004925168119370937, 0.03575153648853302, 0.01787576824426651, -0.008785808458924294, -0.0046417550183832645, -0.012760506011545658, -0.01446098554879427, 0.008329582400619984, 0.02076520025730133, -0.0048180241137743, -0.0192720964550972, -0.006038083229213953, -0.0016322180163115263, -0.01080426387488842, 0.01610616408288479, 0.000762969022616744, 0.006428640801459551, -0.003677458968013525, -0.02816159278154373, 0.01041716244071722, -0.028977271169424057, 0.037852942943573, 0.013223644345998764, -0.019880399107933044, -0.018193744122982025, 0.017046267166733742, 0.026931164786219597, 0.010403337888419628, -0.026087839156389236, 0.006041539832949638, -0.018912645056843758, -7.819784514140338e-05, 0.015663763508200645, 0.028272192925214767, -0.027898916974663734, 0.024249108508229256, 0.008965534158051014, -0.004821480251848698, 0.009746648371219635, 0.01153699029237032, -0.04863646999001503, -0.00735491793602705, 0.0025213405024260283, -0.004914799239486456, -0.006909060757607222, -0.005205125082284212, 0.04034144803881645, 0.013652220368385315, 0.0007551924791187048, -0.000750008097384125, 0.030083272606134415, -0.027138540521264076, -0.03196347877383232, -0.007493168115615845, -0.025521012023091316, 0.00985724851489067, -0.014972511678934097, -0.03279297798871994, -0.011972479522228241, 0.0021428801119327545, 0.025299811735749245, 0.007762756198644638, 0.010921776294708252, 0.020115423947572708, -0.024442659690976143, -0.033041831105947495, 0.007907919585704803, 0.02568691223859787, 0.0042684790678322315, 0.022493328899145126, -0.012725943699479103, 0.02252097986638546, -0.014682185836136341, 0.020654600113630295, -0.0036359839141368866, -0.018000192940235138, -0.010209787636995316, 0.0036947401240468025, -0.008944796398282051, 0.0009599757613614202, -0.026378164067864418, 0.0033370174933224916, -0.002647493965923786, -0.02539658732712269, -0.00034973013680428267, -0.02955792099237442, -0.0034821804147213697, 0.03024917282164097, -0.024318234995007515, -0.041336849331855774, -0.01389415841549635, -0.018387295305728912, 0.04330000653862953, -0.006895235739648342, -0.039733145385980606, -0.016728291288018227, -0.009069222025573254, 0.017861943691968918, 0.007513905875384808, 0.0034839084837585688, 0.009511623531579971, 0.0002486345765646547, 0.02590811252593994, -0.016244415193796158, 0.013023181818425655, 0.003940134774893522, 0.03995434567332268, 0.014903386123478413, 0.002581825014203787, 0.0031261856202036142, -0.02041957527399063, 0.008557695895433426, -0.026129312813282013, 0.001902670250274241, -0.01871909573674202, -0.03362248092889786, 0.013493232429027557, 0.018193744122982025, -0.00630075903609395, -0.028756069019436836, -0.011668328195810318, 0.03201877698302269, 0.01976979896426201, 0.003146923379972577, -0.006750072818249464, 0.0015630928101018071, 0.03370543196797371, 0.010285825468599796, 0.0005905881407670677, 0.0003274804912507534, 0.01576053909957409, -0.0035979649983346462, 0.02589428797364235, -0.021705303341150284, 0.0025956500321626663, -0.004109491128474474, 0.02083432488143444, 0.01808314397931099, 0.010894126258790493, -0.00808764435350895, -0.0009314616327174008, 0.026571715250611305, 0.021097000688314438, -0.007147542200982571, -0.03373308107256889, -0.011931004002690315, -0.00197179545648396, 0.013714433647692204, -0.03591743856668472, 0.01126048993319273, -0.015110761858522892, -0.003947047051042318, 0.04280230402946472, 0.020004823803901672, -0.024802111089229584, -0.0007297025294974446, -0.044378358870744705, -0.0050703310407698154, 0.033263031393289566, 0.020848151296377182, -0.012974794022738934, -0.00908304750919342, -0.0075415559113025665, -0.014378034509718418, 0.023129280656576157, 0.0022413835395127535, 0.016700640320777893, 0.02625373937189579, -0.016908016055822372, -0.01179275382310152, -0.6326335668563843, -0.018179919570684433, -0.03074687533080578, -0.0030259541235864162, -0.016769764944911003, 0.00985724851489067, 0.03666399046778679, 0.019189147278666496, -0.00956692360341549, 0.007375655230134726, -0.023143107071518898, 0.008778896182775497, -0.0022482960484921932, -0.007949394173920155, -0.015884963795542717, -0.013714433647692204, 0.024663859978318214, -0.017143040895462036, -0.012200592085719109, -0.003919397015124559, -0.015732888132333755, 0.023198407143354416, 0.0014075612416490912, 0.014018584042787552, 0.002251752419397235, -0.000632063252851367, 0.004150966182351112, -0.0053848507814109325, 0.00799086969345808, 0.026378164067864418, -0.0323505774140358, 0.012836543843150139, 0.01766839250922203, 0.0018698357744142413, 0.04302350431680679, 0.006570347119122744, -0.01632736437022686, 0.018622320145368576, 0.012864193879067898, 0.004444748163223267, -0.008557695895433426, -0.009200559929013252, 0.019935699179768562, 0.008841109462082386, 0.000737047113943845, 0.01206925418227911, 0.0197836235165596, -0.0026647751219570637, -0.0012762234546244144, 0.015041636303067207, -1.4905114767316263e-05, -0.010465550236403942, -0.02370993234217167, -0.009290422312915325, 0.006891779135912657, 0.0014835989568382502, 0.03489438444375992, -0.015719063580036163, 0.007271967828273773, -0.008709771558642387, 0.00476618018001318, 0.03229527920484543, -0.0008679528837092221, -0.015359612181782722, -0.000444561243057251, 0.00900700967758894, -0.0019925329834222794, 0.0192720964550972, 0.03193582594394684, -0.009836511686444283, -0.007216667756438255, 0.011530078016221523, -0.0005616419948637486, -0.011274314485490322, 0.018276695162057877, -0.008246632292866707, 0.02267305552959442, -0.028479568660259247, -0.0010282369330525398, 0.044931359589099884, 0.02914317138493061, -0.024968011304736137, -0.042055752128362656, -0.016783591359853745, -0.0013444845099002123, -0.019590072333812714, -0.0021947240456938744, 0.03666399046778679, -0.010002411901950836, 0.020848151296377182, 0.007271967828273773, 0.014136096462607384, 0.009587660431861877, 0.012214417569339275, 0.02357168309390545, 0.02448413521051407, -0.02639198862016201, 0.0067362478002905846, 0.023322831839323044, -0.013202907517552376, -0.0013634939678013325, -0.0212490763515234, -0.006176333874464035, -0.0037742340937256813, 0.01301626954227686, -0.009947111830115318, -0.036636337637901306, -0.0033681239001452923, 0.04694981500506401, -0.027249140664935112, 0.004565717186778784, -0.022838955745100975, -0.0032713485416024923, -0.0069643608294427395, 0.010755876079201698, -0.0294196717441082, 0.024373535066843033, -0.005740845110267401, 0.015276662074029446, -0.0017817012267187238, 0.019092371687293053, -0.0003994138678535819, 0.007223580032587051, -0.018000192940235138, 0.022700704634189606, 0.034507282078266144, 0.014765135943889618, -0.020295148715376854, 0.0027425410225987434, 0.004112947732210159, 0.0028324038721621037, -0.006988554261624813, 0.03259943053126335, 0.006663666106760502, 0.008066907525062561, -0.02398643270134926, 0.027152366936206818, 0.010534675791859627, 0.017571616917848587, -0.029889723286032677, -0.012076166458427906, 0.005346831865608692, 0.026336688548326492, 0.014039321802556515, 0.0004920847713947296, -0.04224930331110954, -0.014682185836136341, -0.006580715999007225, -0.05646143853664398, -0.007092242129147053, -0.019258271902799606, -0.011737453751266003, -0.0040611037984490395, -0.00200462993234396, 0.003660177579149604, -0.005391763057559729, -0.010161399841308594, 0.0031728451140224934, 0.011163714341819286, -0.026627015322446823, 0.01133652776479721, 0.017198340967297554, -0.008218982256948948, 0.007679806090891361, 0.029115520417690277, -0.018732920289039612, -0.012871106155216694, 0.023696107789874077, 0.003832990536466241, -0.028258368372917175, 0.024097032845020294, -0.01055541355162859, 0.012089991942048073, 0.042194001376628876, -0.018829695880413055, -0.009967849589884281, -0.006535784807056189, -0.014032409526407719, -0.02033662423491478, 0.01006462424993515, -0.011419477872550488, -0.0010532947489991784, -0.00288424757309258, 0.006044995971024036, 0.007061135955154896, -0.0018629232654348016, -0.019673023372888565, -0.003698196494951844, 0.014364209957420826, 0.017032440751791, 0.002246567979454994, 0.008246632292866707, -0.0032903579995036125, 0.0044378358870744705, 0.0028410444501787424, 0.004797286819666624, 0.008806546218693256, 0.021995628252625465, 0.0017557792598381639, 0.025078611448407173, 0.016216764226555824, -0.0027892005164176226, 0.006929798051714897, -0.00805999431759119, 0.008329582400619984, -0.02427675947546959, 0.00531226908788085, 0.0008977631223388016, 0.029889723286032677, -0.03124457597732544, 0.0035081023816019297, -0.02723531611263752, -0.0009305975981988013, 0.0018974858103320003, 0.012684468179941177, 0.04017554596066475, 0.011778928339481354, 0.004956274759024382, -0.0048422180116176605, 0.014626885764300823, 0.007023117039352655, -0.009967849589884281, 0.0017177604604512453, -0.00238309009000659, -0.02836896851658821, -0.008322670124471188, 0.0015509959775954485, 0.03776999190449715, 0.00956692360341549, -0.010652188211679459, 0.020737551152706146, -0.012117641977965832, -0.005509275943040848, 0.02393113262951374, 0.009477060288190842, 0.0016011117259040475, 0.020115423947572708, -0.009373372420668602, 0.033124782145023346, -0.02680674009025097, 0.012995531782507896, 0.0061901588924229145, 0.029309071600437164, -0.02590811252593994, -0.013375720009207726, -0.008861846290528774, 0.010866476222872734, -0.0023882745299488306, 0.002673415932804346, 0.02119377627968788, 0.0008709771209396422, 0.0009755289065651596, -0.02449795976281166, -0.011136064305901527, 0.01288493163883686, -0.02878371998667717, -0.01249783020466566, 0.011301964521408081, 0.004161335062235594, 0.04294055327773094, -0.0014170659705996513, 0.006988554261624813, 0.00788718182593584, 0.014613060280680656, 0.04653506353497505, -0.005471257027238607, 0.018525544553995132, 0.013631483539938927, -0.013472495600581169, -0.027553291991353035, -0.01758544333279133, -0.013790471479296684, 0.0004527698620222509, 0.0058514452539384365, 0.0028445005882531404, 0.0030691574793308973, 0.01858084462583065, -0.005091068800538778, -0.001262398436665535, -0.009242034517228603, -0.009850336238741875, -0.0364704392850399, 0.03221232816576958, -0.0018698357744142413, -0.0031814859248697758, -0.024124683812260628, -0.013043919578194618, -0.011523165740072727, -0.01242179237306118, 0.036359839141368866, -0.028313668444752693, -0.009615310467779636, 0.014806611463427544, -0.020861975848674774, -0.000331368762999773, 0.011371090076863766, 0.019728323444724083, -0.012449442408978939, 0.03555798530578613, 0.0005050457548350096, -4.6767498133704066e-05, 0.004576086066663265, -0.0385441929101944, 0.005720107816159725, 0.020571650937199593, 0.007189017254859209, -0.0009349178872071207, -0.0027097065467387438, 0.0038087968714535236, -0.028756069019436836, 0.003496005432680249, -0.0252030361443758, -0.008709771558642387, 0.004821480251848698, -0.004292672965675592, 0.006483940873295069, -0.02379288338124752, 0.013451757840812206, 0.02406938374042511, -0.008212069980800152, -0.0027148909866809845, -0.017751343548297882, -0.026309039443731308, -0.006532328203320503, 0.0977153405547142, 0.014184484258294106, -0.02448413521051407, -0.001150934025645256, 0.009041571989655495, -0.003394045867025852, -0.02138732746243477, -0.04927241802215576, 0.02224447950720787, 0.006691316142678261, 0.016368839889764786, -0.022562455385923386, 0.027746843174099922, 0.006922885775566101, 0.021235251799225807, -0.001763555803336203, -0.005326094105839729, 0.01034803781658411, 0.018193744122982025, 0.005782320164144039, 0.006031170953065157, 0.014751310460269451, -0.017198340967297554, 0.025313636288046837, -0.040092598646879196, -0.015636112540960312, 0.027539467439055443, 0.00684684794396162, 0.021221427246928215, -0.025949588045477867, -0.02026749961078167, 0.020322799682617188, 0.0212490763515234, 0.02131820097565651, -0.012380317784845829, -0.006127946078777313, 0.0009954024571925402, 0.00925586000084877, -0.004448204766958952, 0.00589637691155076, 0.024719160050153732, 0.020018648356199265, -0.005077243782579899, -0.01661769114434719, 0.008004694245755672, 0.004883693065494299, -0.009573835879564285, -0.015926439315080643, -0.025493361055850983, -0.014060059562325478, 0.03901424631476402, -0.013106131926178932, 0.0006584172369912267, -0.012760506011545658, 0.0277883168309927, 0.009207472205162048, -0.008004694245755672, -0.018774395808577538, -0.0035634024534374475, 0.022977204993367195, 0.001414473750628531, 0.007278880104422569, 0.010603800415992737, -0.01235266774892807, -0.011191364377737045, -0.01639648899435997, -0.034175481647253036, -0.015649938955903053, -0.011073851957917213, 0.03992669656872749, -0.013431020081043243, -0.01737806759774685, -0.018138444051146507, 0.004327235743403435, -0.006207440048456192, 0.0014170659705996513, 0.012725943699479103, -0.007555380929261446, 0.017405716702342033, 0.007299617864191532, -0.010341125540435314, -0.01899559609591961, 0.014834261499345303, -0.02603253908455372, -0.027636243030428886, -0.022714531049132347, 0.011384915560483932, 0.018249044194817543, -0.03138282522559166, 0.007237405050545931, -0.003179757623001933, 0.02140115201473236, -0.00018328971054870635, -0.01140565238893032, 0.009131434373557568, -0.006321496795862913, -0.016728291288018227, -0.01675594039261341, -0.005025399848818779, -0.0016253055073320866, 0.018069319427013397, -0.04678391292691231, -0.003860640572384, -3.521063263178803e-05, 0.01097707636654377, -0.020032472908496857, 0.007638331037014723, 0.021995628252625465, -0.01746101677417755, -0.019935699179768562, 0.013887246139347553, -0.017364243045449257, 0.0023156930692493916, 0.011246664449572563, -0.007714368868619204, 0.0027166190557181835, 0.024594735354185104, 0.009345722384750843, 0.010361862368881702, -0.007410218007862568, 0.004475854802876711, -0.030387423932552338, 0.004382535815238953, -0.0009401022689417005, -0.02731826715171337, 0.0006489125080406666, -0.0020651144441217184, -0.03152107819914818, 0.024387359619140625, -0.0010645275469869375, 0.02991737239062786, 0.005771951749920845, 0.0034182395320385695, -0.02372375689446926, -0.04302350431680679, 0.01242179237306118, -0.0004722113080788404, -0.01562228798866272, -0.027760667726397514, 0.0006523687625303864, -0.010195962153375149, -0.029613222926855087, -0.0077696689404547215, -0.024373535066843033, -0.007852619513869286, -0.02983442321419716, -0.01584348827600479, 0.014419510029256344, 0.008599170483648777, -0.0035132865887135267, -0.004686686210334301, -0.0286454688757658, -0.030387423932552338, -0.006891779135912657, 0.000299830426229164, -0.02928142063319683, -0.01488956157118082, -0.0016918384935706854, 0.019299747422337532, -0.004994293209165335, 0.034092534333467484, -0.017765168100595474, 0.00872359611093998, -0.0012442530132830143, -0.0039021156262606382, -0.001314242254011333, 0.000620830396655947, -0.028451919555664062, -0.025811336934566498, -0.023253707215189934, 0.025064785033464432, 0.031355176120996475, 0.03447963297367096, 0.01997717283666134, -0.008336495608091354, 0.03934604674577713, -0.006376796867698431, 0.008599170483648777, -0.020115423947572708, -0.026226088404655457, -0.030774524435400963, 0.008046169765293598, -0.008640646003186703, -0.003451074007898569, -0.02281130477786064, -0.003421695902943611, 0.035640936344861984, 0.0058479891158640385, 0.008682121522724628, -0.027912743389606476, 0.007209755014628172, -0.03365013003349304, 0.008640646003186703, 0.009338810108602047, 0.020018648356199265, 0.002282858593389392, 0.024898884817957878, -0.017474843189120293, 0.00043440848821774125, 0.0029862073715776205, -0.003912484738975763, 0.00021428802574519068, -0.01682506501674652, -0.005405588075518608, -0.011737453751266003, 0.01837346889078617, -0.008930971845984459, -0.01435038447380066, 0.019673023372888565, -0.02604636363685131, -0.024249108508229256, -0.005066874902695417, -0.004417098127305508, -0.024677684530615807, -0.010790438391268253, -0.0007547604036517441, -0.014931036159396172, 0.021304376423358917, -0.0035098304506391287, -0.019673023372888565, -0.0022932274732738733, 0.0018611951963976026, 0.045152559876441956, 0.01689419150352478, 0.025424236431717873, 0.002353711985051632, -0.014267434366047382, -0.007012748159468174, 0.005792689044028521, -0.009373372420668602, -0.01491721160709858, 0.024732984602451324, 0.02709706500172615, -0.012221329845488071, 0.007126804906874895, -0.024235283955931664, 0.0029896635096520185, -0.042829953134059906, -0.025880463421344757, 0.008398707956075668, 0.008689033798873425, 0.004240829031914473, 0.004351429175585508, 0.0023122369311749935, -0.017861943691968918, 0.010562325827777386, 0.0127328559756279, -0.0006000928697176278, -0.006660209968686104, -0.008191332221031189, -0.023461082950234413, 0.015083111822605133, 0.03074687533080578, 0.02033662423491478, 0.01795871928334236, -0.0024141964968293905, -0.045705560594797134, -0.0020841239020228386, -0.01639648899435997, -0.010659100487828255, -0.00904848426580429, 0.018774395808577538, -0.011606115847826004, 0.012117641977965832, 0.000518870772793889, -0.011813491582870483, -0.0007093970198184252, -0.015069286338984966, -0.019451823085546494, 0.021567052230238914, 0.014751310460269451, 0.0030069448985159397, 0.007486255839467049, 0.02977912314236164, 0.025244511663913727, 0.005809970200061798, 0.003502917941659689, 0.004631386138498783, -0.022189179435372353, -0.003680915106087923, -0.0009539273451082408, 0.012186767533421516, 0.0037742340937256813, -0.007928656414151192, -0.013071569614112377, 0.005775407887995243, 0.008737421594560146, 0.018760571256279945, 0.0018473700620234013, -0.04921711981296539, -0.029032571241259575, -0.0008653607219457626, -0.019811272621154785, 0.019368872046470642, -0.00531226908788085, 0.03207407891750336, -0.012331929989159107, 0.03453493490815163, -0.031852878630161285, 0.030940424650907516, -0.023267531767487526, 0.019106196239590645, -0.04764106497168541, 0.007382567971944809, 0.005059962160885334, -0.0243458840996027, 0.021857379004359245, -0.023419607430696487, -0.014585410244762897, 0.011592290364205837, 0.02983442321419716, -0.004576086066663265, 0.0028652381151914597, 0.009705173783004284, -0.010887213982641697, -0.004755811765789986, 0.015249012038111687, -0.00585835799574852, -0.03967784717679024, 0.017004791647195816, 0.024041732773184776, -0.007873356342315674, 0.007942481897771358, -0.037134040147066116, 0.03541973605751991, 0.015636112540960312, 0.01111532747745514, 0.02041957527399063, -0.03594508767127991, 0.017281292006373405, -0.024539435282349586, 0.007963219657540321, 0.013389545492827892, -0.017931068316102028, 0.00238309009000659, -0.022852780297398567, -0.007949394173920155, 0.006985098123550415, 0.0033888614270836115, -0.01844259537756443, 0.022700704634189606, 0.028949620202183723, -0.000632063252851367, -0.00471433624625206, -0.006615278776735067, 0.0050426810048520565, 0.0069643608294427395, 0.002547262469306588, -0.03373308107256889, -0.0042684790678322315, -0.011039289645850658, 0.03815709426999092, -0.007845706306397915, -0.009739736095070839, -0.015193711966276169, -9.882738959277049e-05, -0.03735524043440819, -0.015940263867378235, 0.012580780312418938, 0.029530271887779236, 0.02977912314236164, -0.011163714341819286, 0.010603800415992737, 0.02126290090382099, -0.018954120576381683, 0.011246664449572563, -0.011530078016221523, -0.015788188204169273, -0.012331929989159107, -0.00855078361928463, -0.0010031790006905794, 0.014474810101091862, -0.025991063565015793, -0.0013064657105132937, 0.009000096470117569, -0.007762756198644638, -0.0069367107935249805, 0.018318168818950653, 0.009663698263466358, -0.0024936904665082693, -0.021843552589416504, 0.004337604157626629, 0.014944861643016338, 0.007285792846232653, -0.007472430821508169, -0.005523100960999727, -0.005875639151781797, -0.004548436030745506, -0.017156867310404778, -0.018608495593070984, -0.027912743389606476, 0.01217294204980135, -0.006376796867698431, 0.006881410256028175, -0.032129377126693726, -0.010562325827777386, -0.007202842738479376, -0.020101599395275116, 0.034507282078266144, -0.0030933513771742582, -0.008281195536255836, 0.02279748022556305, 0.010631450451910496, -0.013769733719527721, -0.00943558569997549, 0.0286454688757658, 0.004586454946547747, -0.034590233117341995, 0.032627079635858536, -0.02217535302042961, 0.014682185836136341, -0.0042961291037499905, -0.000775930006057024, -0.01295405626296997, 0.008315757848322392, -0.007949394173920155, -0.005775407887995243, -0.007583030965179205, 0.020779024809598923, 0.019050896167755127, -0.009926374070346355, -9.153684368357062e-05, -0.015083111822605133, -0.005968958139419556, 0.003960872069001198, -0.018207568675279617, -0.0015682772500440478, -0.0003184078086633235, 0.016023213043808937, 0.016949491575360298, 0.014184484258294106, 0.002846228890120983, -0.005778864026069641, 0.023544032126665115, -0.028106292709708214, 0.005291531793773174, 0.21036170423030853, -0.021138476207852364, 0.009725911542773247, 0.03447963297367096, -0.0038433594163507223, 0.013776645995676517, 0.035004984587430954, -0.0029170820489525795, -0.008004694245755672, 0.0017903418047353625, -0.01957624778151512, 0.018414944410324097, -0.018401119858026505, 0.0008282058988697827, -0.007852619513869286, 0.011868791654706001, -0.05145677551627159, -0.014737485907971859, -0.0015553162666037679, -0.05209272727370262, 0.00531226908788085, -0.018138444051146507, -0.02047487534582615, -0.011523165740072727, 0.019230620935559273, 0.016244415193796158, -0.016216764226555824, -0.022714531049132347, 0.034590233117341995, 0.012387230060994625, -0.03517088666558266, -0.015995563939213753, -0.014516285620629787, 0.007562293205410242, -0.00489406194537878, -0.005886008031666279, 0.003504646010696888, 0.017225991934537888, 0.0021342395339161158, 0.0010437900200486183, 0.026212263852357864, 0.001312514184974134, -0.011695978231728077, -0.011136064305901527, -0.018497895449399948, 0.026765264570713043, -0.0023433431051671505, -0.015497862361371517, -0.023253707215189934, 0.0026647751219570637, -0.023944959044456482, 0.004551892168819904, 0.034507282078266144, 0.018387295305728912, 0.010057711973786354, -0.008854934014379978, -0.003146923379972577, 0.013852683827280998, -0.016783591359853745, 0.0003544825012795627, -0.02358550764620304, 0.02836896851658821, 0.002400371478870511, 0.02294955588877201, -0.03506028652191162, 0.016272064298391342, 0.015221362002193928, 0.006269652862101793, 0.00943558569997549, -0.017682218924164772, 0.005730476230382919, -0.020046299323439598, -0.006715510040521622, -0.00584453297778964, -0.008377970196306705, -0.003781146602705121, 0.020073948428034782, -0.04034144803881645, 0.005142912734299898, -0.007479343097656965, 0.008025432005524635, -0.012490917928516865, 0.011136064305901527, -0.005371025763452053, 0.0031261856202036142, -0.028894320130348206, 0.002372721442952752, -0.010306562297046185, -0.011322702281177044, 0.0005992287769913673, -0.026074012741446495, -0.012394142337143421, -0.003124457551166415, -0.02097257599234581, -0.0055853137746453285, -0.017682218924164772, 0.04462720826268196, 0.012767418287694454, 0.008585345931351185, 0.0029671979136765003, -0.00841253250837326, -0.0027701910585165024, 0.03019387274980545, 0.004303041845560074, -0.03323538228869438, 0.003153835888952017, 0.021705303341150284, 0.02033662423491478, 0.02441500872373581, -0.0037085653748363256, 0.019894223660230637, -0.015926439315080643, -0.006556522101163864, -0.021276727318763733, 0.008626820519566536, 0.031493425369262695, -0.004178616218268871, -0.026018712669610977, 0.0014352112775668502, 0.025590136647224426, 0.0015216177562251687, -0.006915973033756018, 0.002555903047323227, 0.01052085030823946, -0.004721248988062143, -0.002256936626508832, -0.012566955760121346, 0.02850721962749958, 0.0003955255670007318, -0.009283510036766529, 0.02315693162381649, -0.032405879348516464, -0.013769733719527721, -0.005523100960999727, -0.009138347581028938, 0.020709900185465813, 0.02575603686273098, -0.026060188189148903, 0.018608495593070984, -0.018262868747115135, 0.005654438864439726, 0.005270794034004211, 0.00904848426580429, 0.0066221910528838634, -0.014640710316598415, -0.019437996670603752, 0.009622223675251007, -0.021580876782536507, 0.010009324178099632, -0.0077696689404547215, -0.026488764211535454, -0.01816609501838684, 0.005339919123798609, -0.01080426387488842, -0.003964328207075596, -0.02668231539428234, -0.005913658067584038, -0.022147703915834427, 0.0034614428877830505, 0.02398643270134926, -0.02054399996995926, 0.010057711973786354, 0.019659196957945824, -0.005740845110267401, -0.018484069034457207, -0.004897518083453178, -0.17707103490829468, 0.02413850836455822, 0.010500113479793072, -0.009214384481310844, 0.01744719222187996, 0.01097707636654377, 0.007665981072932482, 0.007023117039352655, -0.003347386373206973, -0.009242034517228603, 0.024691510945558548, 0.00978812389075756, -0.030442724004387856, -0.020779024809598923, -0.0075761182233691216, 0.015871139243245125, -0.0221062283962965, -0.00340441451407969, 0.03461788594722748, 0.021345851942896843, -0.004769636783748865, -0.014101534150540829, 0.012034691870212555, -0.002656134543940425, 0.0014222502941265702, -0.004659036174416542, 0.002920538419857621, 0.0062523712404072285, 0.0006294710328802466, -0.02997267246246338, -0.015677588060498238, 0.020032472908496857, 0.004655580036342144, -0.025921938940882683, 0.01772369258105755, 0.0073410929180681705, 0.0038882906083017588, -0.0033923175651580095, 0.01288493163883686, 0.01534578762948513, 0.008025432005524635, 0.007652156054973602, 0.005146368872374296, -0.0036912839859724045, -0.006311127915978432, 0.04175160080194473, -0.013050831854343414, 0.0005443607224151492, -0.0028704225551337004, -0.013140694238245487, 0.009318072348833084, -0.014903386123478413, 0.020931100472807884, 0.004320323001593351, 0.029668522998690605, 0.007019660901278257, -0.003321464406326413, 0.004914799239486456, 0.011460952460765839, -0.02105552703142166, 0.009553098119795322, -0.00925586000084877, 0.01942417211830616, -0.009560010395944118, -0.0005162786110304296, -0.021719127893447876, -0.016092339530587196, -0.001637402456253767, -0.028396619483828545, 0.02047487534582615, 0.00536411302164197, -0.0062247212044894695, 0.018110794946551323, -0.012207504361867905, 0.004531154874712229, -0.004717792849987745, -0.025645436719059944, 0.02112465165555477, -0.029751472175121307, -0.004990837071090937, -0.052756328135728836, 0.03918014466762543, -0.015276662074029446, -0.014696010388433933, 0.004213178995996714, 0.01498633623123169, -0.006985098123550415, -0.013576183468103409, -0.009898724034428596, 0.0006035491242073476, 0.011073851957917213, -0.004883693065494299, -0.016299715265631676, -0.015304312109947205, 0.010437900200486183, 0.01851172000169754, 0.015608462505042553, -0.011329615488648415, 0.010334212332963943, -0.020018648356199265, 0.009947111830115318, -0.02702794037759304, -0.002182627096772194, 0.03533678501844406, 0.032627079635858536, 0.008523133583366871, -0.0127328559756279, 0.009580748155713081, 0.027677716687321663, 0.008440183475613594, 0.0018974858103320003, 0.013223644345998764, 0.02252097986638546, 0.005194756202399731, 0.01428125984966755, 0.048525869846343994, -0.0030069448985159397, -0.014613060280680656, 0.02505096048116684, -0.017917243763804436, 0.06110664829611778, -0.0019838924054056406, -0.011488602496683598, 0.002571456367149949, -0.023405781015753746, -0.0147098358720541, -0.1207754909992218, -0.006926341913640499, 0.006072646006941795, 0.011758191511034966, 0.006076102145016193, 0.014225959777832031, -0.008136032149195671, 0.010278912261128426, 0.01144021563231945, -0.00018577388254925609, -0.018553195521235466, -0.03497733548283577, -0.005920570809394121, -0.002175714587792754, 0.005471257027238607, -0.03541973605751991, 0.004887149203568697, -0.012089991942048073, 0.002307052491232753, 0.029668522998690605, -0.014668360352516174, -0.018262868747115135, 0.01689419150352478, -0.03453493490815163, 0.014295084401965141, -0.006577259860932827, -0.03179757669568062, 0.01570523902773857, 0.014143009670078754, 0.023806707933545113, -0.001697022933512926, -0.01108076423406601, 0.008011606521904469, 0.0012096904683858156, -0.00781114399433136, -0.018608495593070984, -0.0433553047478199, -0.008564608171582222, 0.023820532485842705, -0.025037135928869247, 0.016424139961600304, -0.0019666110165417194, 0.01920297183096409, -0.0036083338782191277, -0.0012684467947110534, -0.008585345931351185, -0.028050992637872696, 0.011142977513372898, 0.003701652865856886, -0.024124683812260628, -0.014806611463427544, 0.01842876896262169, -0.02547953650355339, -0.007562293205410242, 0.00998858641833067, -0.0032160484697669744, 0.022355079650878906, -0.0007724737515673041, -0.01871909573674202, -0.005654438864439726, -0.016078514978289604, 0.00441364198923111, 0.0036463525611907244, 0.02964087203145027, 0.015566987916827202, 0.0017065275460481644, -0.00016158008656930178, -0.009546185843646526, 0.025880463421344757, -0.00023480955860577524, -0.01006462424993515, 0.005409044213593006, -0.02680674009025097, 0.015318137593567371, -0.007054223213344812, 0.01689419150352478, -0.025382760912179947, -0.007389480248093605, 0.01914767175912857, -0.004137141164392233, -0.00425811018794775, -0.025493361055850983, 0.005740845110267401, -0.005530013237148523, 0.01610616408288479, 0.006010433193296194, 0.0035426649264991283, -0.010707488283514977, -0.0007906191167421639, -0.013990934006869793, 0.011454040184617043, 0.0089033218100667, -0.000871409138198942, -0.030802175402641296, 0.003580683609470725, 0.03464553505182266, 0.00978812389075756, -0.0017445464618504047, -0.006376796867698431, -0.015442562289536, -0.02766389213502407, -0.0002825491246767342, -0.06160435080528259, 0.02814776822924614, 0.005975870881229639, 0.013431020081043243, 0.001039469731040299, -0.006784635130316019, 0.006148683838546276, -0.012663730420172215, -0.006611822172999382, 0.013679870404303074, -0.02539658732712269, 0.024179983884096146, -0.004897518083453178, -0.0018923014868050814, -0.012359580025076866, -0.015276662074029446, 0.015649938955903053, -0.02358550764620304, -0.00010109556023962796, 0.004372166935354471, 0.017143040895462036, 0.0020478330552577972, 0.03467318415641785, 0.0014507644809782505, -0.014654535800218582, 0.0006229905993677676, 0.013327332213521004, 0.0066256471909582615, 0.0020132705103605986, -0.03428608179092407, 0.018331995233893394, -0.04200045391917229, 0.0016434508142992854, 0.0023882745299488306, 0.009829598478972912, 0.00781114399433136, -0.017032440751791, -0.02238272875547409, 0.01559463795274496, 0.041143301874399185, -0.021843552589416504, -0.010071536526083946, -0.004220091737806797, -0.016783591359853745, 0.009518535807728767, 0.02442883513867855, -0.018069319427013397, -0.007202842738479376, 0.01737806759774685, 0.006103752180933952, -0.0028375880792737007, 0.017834292724728584, -0.000871409138198942, -0.02553483657538891, -0.0010455182055011392, -0.02075137570500374, 0.030580975115299225, -0.0223689042031765, 0.008958621881902218, -0.03434138372540474, 0.01802784390747547, -0.003632527543231845, 0.010638363659381866, -0.005765039008110762, 0.025645436719059944, -0.006801916752010584, -0.00981577392667532, -0.006266196258366108, -0.001715168240480125, -0.010410250164568424, 0.012566955760121346, -0.002379633951932192, -0.0024193809367716312, 0.0073410929180681705, 0.012331929989159107, 0.020170724019408226, 0.008350320160388947, -0.011032376438379288, -0.02547953650355339, 0.007928656414151192, -0.005056506022810936, -0.012387230060994625, -0.027636243030428886, -0.004531154874712229, 0.04045204818248749, 0.0282998438924551, 0.0047005112282931805, 0.025728387758135796, -0.014239784330129623, 0.00781114399433136, 0.027138540521264076, -0.010707488283514977, 0.009767386130988598, -0.0029067134018987417, 0.016645340248942375, 0.029806772246956825, -0.004216635134071112, 0.0012719030492007732, 0.03055332414805889, 0.04659036174416542, -0.0021204145159572363, 0.009822686202824116, -0.0010757604613900185, -0.012255892157554626, 0.006459746975451708, -0.01570523902773857, -0.02646111510694027, -0.04321705549955368, 0.0020495611242949963, 0.02351638302206993, 0.000525351264514029, -0.002510971622541547, 0.035723887383937836, 0.018331995233893394, -0.01344484556466341, 0.012034691870212555, 0.007271967828273773, -0.016424139961600304, -0.006857216823846102, 0.021442627534270287, 0.010583063587546349, 0.048387616872787476, 0.011806578375399113, 0.013272032141685486, 0.02836896851658821, -0.0025403499603271484, 0.001652091508731246, 0.013375720009207726, 0.00589637691155076, -0.011205189861357212, 0.0017289932584390044, 0.005830707959830761, -0.027207667008042336, -0.009649873711168766, 0.007686718832701445, -0.043604157865047455, -0.01914767175912857, 0.008391795679926872, -0.01787576824426651, 0.03439668193459511, 0.013209819793701172, -0.010548500344157219, 0.0106245381757617, -0.004973555915057659, 0.01308539416640997, 0.002550718607380986, 0.00855078361928463, -0.007375655230134726, -0.015719063580036163, 0.0011889529414474964, -0.01214529201388359, 0.01971449702978134, -0.032903581857681274, -0.016023213043808937, 0.004081841092556715, 0.007970131933689117, 0.02983442321419716, -0.034451983869075775, -0.008689033798873425, 0.026848215609788895, 0.021069351583719254, 0.010265087708830833, -0.004717792849987745, -0.004897518083453178, -0.0007180376560427248, 0.029447320848703384, 0.007237405050545931, -0.017212167382240295, -0.043382953852415085, 0.0022223740816116333, 0.016908016055822372, 0.0016313539817929268, -0.017087740823626518, -0.0062247212044894695, -0.003285173559561372, -0.010838826186954975, -0.012117641977965832, 0.003100263886153698, 0.006238546222448349, -0.023115456104278564, 0.007327267900109291, -0.025216860696673393, -0.028673119843006134, 0.006580715999007225, 0.00908304750919342, -0.031023375689983368, 0.004703967832028866, -0.03602803871035576], "b0788e95-0eb3-4781-a5c4-6ab254dde2b4": [-0.008217663504183292, -0.023849237710237503, 0.012132486328482628, 0.009173850528895855, -0.014190366491675377, 0.01211862824857235, -0.020190784707665443, -0.009742018766701221, -0.021521132439374924, -0.026884092018008232, 0.0372219942510128, 0.013192606158554554, 0.03062569350004196, 0.005290207453072071, -0.0070951832458376884, 0.02786799520254135, 0.03375755250453949, 0.00014085133443586528, 0.03547591716051102, -0.019096020609140396, -0.01834770105779171, -0.0034072815906256437, 0.005151629447937012, 0.010621988214552402, -0.005636652000248432, 0.032815221697092056, 0.017710242420434952, -0.010545770637691021, -0.00494029838591814, -0.022837620228528976, -0.01220870390534401, 0.003994504921138287, -0.00016954126476775855, -0.018375415354967117, -0.028491593897342682, -0.011210943572223186, -0.001611832994967699, -0.0006950542447157204, 0.013677628710865974, -0.0037242781836539507, 0.013338113203644753, 0.008862050250172615, -0.023405790328979492, 0.02369680255651474, -0.029350776225328445, 0.029378492385149002, -0.0057509783655405045, -0.01234035287052393, -0.01420422364026308, 0.009679659269750118, 0.018042828887701035, 0.010220112279057503, -0.03508789837360382, 0.009908312000334263, -0.0301822442561388, -0.006166711915284395, 0.02217244729399681, 0.021493416279554367, -0.009693516418337822, 0.018042828887701035, 0.016809485852718353, 0.006890780758112669, 0.011661321856081486, -0.008522534742951393, -0.044760629534721375, -0.009728161618113518, -0.011432668194174767, -0.02013535425066948, -0.018015112727880478, 0.006374578457325697, 0.030791986733675003, 0.012277992442250252, -0.009250068105757236, 0.0009224084788002074, 0.02218630537390709, -0.01967804692685604, -0.03129086643457413, 0.0011432667961344123, -0.010421049781143665, -0.004427560605108738, -0.0015416779788210988, -0.04891796037554741, -0.0027576980646699667, -0.006949676666408777, 0.02530430629849434, -0.00482943607494235, -0.0006807634490542114, 0.022643612697720528, -0.038607772439718246, -0.01924845576286316, 0.006485440768301487, 0.00750398775562644, -0.003939073998481035, 0.018236838281154633, -0.004205835983157158, 0.02440354973077774, -0.018028970807790756, 0.00514470087364316, -0.015451423823833466, -0.007226832211017609, -0.0096588721498847, -0.007143685594201088, -0.02591404691338539, -0.009589583612978458, -0.022920766845345497, 0.016185887157917023, -0.013462833128869534, -0.005044231656938791, 0.000708478968590498, -0.03492160513997078, -0.01851399429142475, 0.02584475837647915, -0.020952962338924408, -0.0603644885122776, -0.003112803678959608, -0.01851399429142475, 0.024722278118133545, -0.008446316234767437, -0.03652910515666008, -0.016449185088276863, -0.0009137473534792662, -0.006949676666408777, 0.009374788030982018, -0.0010748440399765968, 0.008065227419137955, 0.002484007040038705, 0.028935043141245842, -0.021077683195471764, 0.009381717070937157, 0.0001416091836290434, 0.037637729197740555, 0.011876117438077927, 0.025248873978853226, 0.010164680890738964, -0.004486456047743559, -0.00469778710976243, -0.027327541261911392, -0.0027611625846475363, -0.012104770168662071, -0.02190914936363697, 0.010441836901009083, 0.018098259344697, -0.007476272061467171, -0.03165116906166077, -0.012769944034516811, 0.036030225455760956, 0.0248469989746809, -0.002289998112246394, -0.013067886233329773, 0.009256997145712376, 0.024708420038223267, 0.0032375238370150328, 0.0014758534962311387, 0.008668040856719017, 0.03226090967655182, -0.004368665162473917, 0.02121626026928425, -0.0032167371828109026, 0.0025896725710481405, -0.01764095388352871, 0.013525192625820637, 0.009638085961341858, 0.006471583154052496, -0.013248037546873093, 0.009097632020711899, 0.033896129578351974, 0.015797868371009827, -0.006710629910230637, -0.02832530066370964, -0.01425965502858162, 0.005158558487892151, 0.023932386189699173, -0.019276171922683716, 0.022754473611712456, -0.020454082638025284, 0.00931242760270834, 0.035420484840869904, 0.026149630546569824, -0.019276171922683716, -0.007753427606076002, -0.024348119273781776, -0.004368665162473917, 0.0356144942343235, 0.022241735830903053, -0.016795629635453224, -0.011744468472898006, -0.007850431837141514, -0.008480961434543133, 0.019276171922683716, 0.005844518542289734, 0.004299376159906387, 0.016504615545272827, -0.019387032836675644, -0.008079085499048233, -0.6274802684783936, -0.020454082638025284, -0.025595318526029587, -0.0009839023696258664, -0.027563123032450676, 0.011030792258679867, 0.011827615089714527, -0.007829645648598671, -0.02003834955394268, 0.010836783796548843, -0.03020995855331421, -0.0036376670468598604, -0.0023904668632894754, -0.010337903164327145, -0.01816754974424839, -0.009852881543338299, 0.036390528082847595, -0.011197085492312908, -0.016102740541100502, -0.005899949464946985, -0.004871009383350611, 0.021978437900543213, -0.004198907408863306, 0.021715139970183372, 0.010684347711503506, -0.012970881536602974, -0.0031630382873117924, 0.0064889052882790565, 0.0034020848106592894, 0.032399486750364304, -0.04149019345641136, 0.02993280440568924, 0.007559418678283691, 0.005494609475135803, 0.04695015773177147, -0.0017287579830735922, -0.03456130251288414, 0.02243574522435665, 0.010906072333455086, 0.008771974593400955, -0.001106024021282792, -0.026773229241371155, 0.002955171512439847, -0.006111280992627144, 0.014661530964076519, 0.006114745046943426, 0.019442465156316757, -0.029821941629052162, 0.015631575137376785, 0.024112535640597343, 0.006523549556732178, -0.012492788024246693, -0.011314877308905125, 0.0033466536551713943, 0.007005107589066029, 0.013663770630955696, 0.03819204121828079, -0.0064230808056890965, 0.007954365573823452, -0.008626467548310757, 0.023821523413062096, 0.01179989892989397, -0.003935609478503466, -0.0028269870672374964, -0.021354839205741882, 0.024126393720507622, -0.006655198521912098, 0.008640325628221035, 0.030708840116858482, -0.015409850515425205, 0.004663142841309309, 0.0097073744982481, 0.012617507949471474, 0.0004568736767396331, 0.021618135273456573, 0.0069531407207250595, 0.0147862508893013, -0.027064243331551552, -0.002471881452947855, 0.03938381001353264, 0.01425965502858162, -0.01780724711716175, -0.03716656565666199, -0.013275752775371075, 0.010296329855918884, -0.031207719817757607, -0.002695338102057576, 0.03475531190633774, -0.007008572109043598, 0.012354210019111633, 0.006132067646831274, 0.009187707677483559, 0.01220870390534401, 0.011446526274085045, 0.024542126804590225, 0.03766544535756111, -0.02289305254817009, 1.8783786799758673e-05, 0.012229490093886852, -0.0073446230962872505, -0.004032613709568977, -0.008896694518625736, -0.007490129675716162, -0.006966998800635338, 0.0010800407035276294, 0.004583460744470358, -0.04015984386205673, 0.017710242420434952, 0.061971988528966904, -0.021784430369734764, -0.001617895788513124, -0.0051308427937328815, -0.015382135286927223, 0.002246692543849349, 0.017765672877430916, -0.02217244729399681, 0.0075940634123981, 0.0016646657604724169, 0.01872185990214348, -0.009631156921386719, 0.025997193530201912, 0.003280829405412078, 0.01456452626734972, -0.018569424748420715, 0.01265215314924717, 0.03716656565666199, 0.0023436970077455044, 0.006204820703715086, -0.009478720836341381, -0.008342383429408073, -0.0072406898252666, -0.029905088245868683, 0.03422871604561806, 0.0038975004572421312, 0.012361139059066772, -0.02547059953212738, 0.020703522488474846, 0.009554939344525337, 0.026676226407289505, -0.026080342009663582, 0.0005274617578834295, 0.003675776068121195, 0.015077264048159122, -0.0009813039796426892, 0.0032444526441395283, -0.03918980062007904, -0.017142074182629585, -0.003305080346763134, -0.04354114457964897, -0.0014550668420270085, -0.0038386050146073103, -0.0281590074300766, -0.0018413524376228452, 0.007053609937429428, -0.00699471402913332, -0.007070932071655989, -0.026939524337649345, 0.009589583612978458, 0.02860245667397976, -0.021604279056191444, 0.007427769713103771, 0.018569424748420715, -0.02833915874361992, 0.011945405974984169, 0.023946242406964302, -0.013178748078644276, -0.005584685131907463, 0.015243557281792164, -0.013975570909678936, -0.0325934961438179, 0.00509966304525733, -0.0008955590310506523, 0.008972912095487118, 0.032399486750364304, -0.019816624000668526, 0.0021271691657602787, -0.010781352408230305, -0.018832722678780556, -0.01496640220284462, 0.018458561971783638, -0.0035995582584291697, 0.013102530501782894, -0.0028027358930557966, -0.007607921026647091, 0.010926859453320503, -0.0038940361700952053, -0.004011827055364847, 0.0035614492371678352, 0.0022969269193708897, 0.017779530957341194, -0.0014524685684591532, -0.0016066363314166665, -0.001619627932086587, -0.00469778710976243, 0.005082340445369482, 6.798972754040733e-05, 0.0012974345590919256, 0.024472838267683983, 0.017155930399894714, 0.018763434141874313, 0.006627483293414116, 0.0017426158301532269, 0.010206254199147224, -0.0028252548072487116, 0.013088672421872616, -0.024126393720507622, 0.0035683782771229744, -0.0006621420034207404, 0.027202820405364037, -0.01211169920861721, 0.0036480603739619255, -0.02059265971183777, -0.0010471284622326493, -0.0015823851572349668, 0.015590001828968525, 0.04010441526770592, 0.004670071881264448, 0.006887316238135099, 3.29934227920603e-05, 0.007801929954439402, 0.011314877308905125, -0.01482782419770956, 0.008467103354632854, -0.005335245281457901, -0.010185468010604382, -0.0058618406765162945, 0.009499507956206799, 0.032815221697092056, 0.004562674090266228, -0.0007751695229671896, 0.017530091106891632, 0.01252050418406725, 0.006915031932294369, 0.015825584530830383, 0.004043007269501686, -0.0023662159219384193, 0.0360025130212307, -0.014509094879031181, 0.052881285548210144, -0.03167888522148132, -0.0018898546695709229, 0.00979745015501976, 0.04140704497694969, -0.01800125651061535, 0.001521757454611361, 0.0009431951330043375, 0.0067556677386164665, -0.00016878343012649566, 0.010455694980919361, 0.025941763073205948, -0.00027044324087910354, 0.009922170080244541, -0.015479139983654022, -0.008577965199947357, 0.025318162515759468, -0.031928323209285736, -0.017142074182629585, 0.01189690362662077, 0.013060957193374634, 0.03181746229529381, 0.005875698756426573, 0.01416957937180996, 0.017128216102719307, 0.02066195011138916, 0.05640116333961487, -0.011301019228994846, 0.015160410664975643, 0.01897129975259304, -0.008993699215352535, -0.026329781860113144, -0.01924845576286316, -0.003272168105468154, 0.00726147647947073, 0.013421259820461273, 0.017834961414337158, -0.005782158579677343, 0.02307320386171341, -0.008342383429408073, 0.02556760236620903, -0.005220918450504541, -0.03054254688322544, -0.02147955819964409, 0.021313264966011047, 0.014689246192574501, 0.0011164173483848572, -0.012783801183104515, -0.007621778640896082, 0.006513156462460756, -0.015908731147646904, 0.026593079790472984, -0.021410269662737846, 0.004354807082563639, 0.01575629599392414, -0.0187080018222332, -0.009541081264615059, 0.016643192619085312, 0.02831144444644451, -0.015548428520560265, 0.0289627593010664, -0.017169788479804993, 0.019816624000668526, 0.0058168028481304646, -0.04276510700583458, 0.011730610392987728, 0.02519344352185726, -0.0014412091113626957, -0.010566556826233864, -0.0150911221280694, 0.00732383644208312, -0.01611659675836563, -0.003280829405412078, -0.03472759574651718, -0.0029638325795531273, -0.0004018756153527647, 0.009464863687753677, 0.018666429445147514, -0.019123734906315804, 0.018832722678780556, 0.03749915212392807, 0.015382135286927223, 0.00032587433815933764, -0.013913210481405258, -0.03348039463162422, -0.005896485410630703, 0.10631688684225082, 0.029433924704790115, -0.026593079790472984, 0.0006911567761562765, 0.00983902346342802, 0.006350327283143997, -0.024736136198043823, -0.033092375844717026, 0.0208282433450222, -0.0018171013798564672, 0.010538841597735882, -0.0343950092792511, 0.02493014559149742, -0.0028737569227814674, 0.011273304000496864, -0.014010215178132057, -0.010524983517825603, 0.0022051192354410887, 0.013733059167861938, -0.007490129675716162, 0.001472389092668891, 0.01238192617893219, -0.01692034862935543, 0.022823762148618698, -0.05534797161817551, 0.013497477397322655, 0.014536811038851738, 0.009069916792213917, 0.010531912557780743, -0.012236419133841991, -0.027729416266083717, 0.011287161149084568, 0.03009909763932228, 0.03467216342687607, -0.023267211392521858, -0.015645433217287064, 0.010143894702196121, 0.013795419596135616, -0.0006647403351962566, 0.008189947344362736, 0.0074554854072630405, 0.02244960330426693, 0.003324134973809123, -0.026496075093746185, 0.011280232109129429, -0.0006292298203334212, 0.008709614165127277, -0.015395993366837502, -0.02558146044611931, -0.005640116054564714, 0.03217776492238045, -0.009457934647798538, -0.008515605702996254, -0.015437566675245762, 0.022643612697720528, 0.007531702984124422, -0.004774005152285099, -0.00927085429430008, -0.014155722223222256, 0.0315680205821991, -0.007337694056332111, 0.012804588302969933, 0.011169370263814926, -0.012929308228194714, -0.013823134824633598, -0.013608339242637157, -0.03090284764766693, 0.0070640030317008495, -0.011966193094849586, 0.030847417190670967, -0.012007766403257847, -0.006700236350297928, -0.02984965778887272, 0.009471792727708817, -0.01028940174728632, -0.005809874273836613, 0.016878776252269745, -0.017488518729805946, 0.001943553565070033, 0.0014403429813683033, -0.0065027629025280476, -0.0242372564971447, 0.0015841174172237515, -0.034062422811985016, -0.039245232939720154, -0.01816754974424839, 0.0022085835225880146, 0.01754394918680191, -0.0392175167798996, 0.010358690284192562, 0.017931966111063957, 0.02038479410111904, 0.002684944774955511, -0.012707583606243134, 0.0022778725251555443, -0.012763014994561672, -0.016587762162089348, -0.0280620027333498, 0.011529672890901566, -0.002809664700180292, 0.030265390872955322, -0.04889024794101715, 0.008411671966314316, -0.009173850528895855, 0.005082340445369482, -0.020523371174931526, 0.012929308228194714, 0.003991040401160717, -0.022477317601442337, 0.0054426430724561214, -0.0008778037154115736, -0.012811517342925072, 0.0016126991249620914, -0.0012290118029341102, -0.0066725206561386585, 0.001298300689086318, 0.021950723603367805, 0.0015841174172237515, 0.008522534742951393, 0.008917480707168579, 0.0014732552226632833, -0.025803185999393463, 0.01726679317653179, -0.003010602667927742, -0.01764095388352871, -0.005868769716471434, 0.011737539432942867, -0.029184482991695404, 0.017128216102719307, 0.017571665346622467, 0.026066483929753304, 0.010109250433743, 0.002021503634750843, -0.018555566668510437, -0.04071415588259697, 0.00491951173171401, -0.028574742376804352, -0.014176508411765099, -0.01394785474985838, 0.0023333036806434393, 0.005920736119151115, -0.03794259950518608, -0.010767494328320026, -0.017155930399894714, -0.0093054985627532, -0.028006572276353836, -0.01744694449007511, 0.021756714209914207, 0.02057880349457264, -0.01674019731581211, -0.0047255028039216995, -0.034173283725976944, -0.01898515783250332, -0.011488099582493305, 0.00984595250338316, -0.03946695476770401, -0.005872234236449003, -0.004070722963660955, 0.035420484840869904, 0.0030781591776758432, 0.03677854686975479, -0.00496801408007741, 0.009111490100622177, 0.0002578846178948879, -0.00030032405629754066, -0.0010332707315683365, 0.00456960266456008, -0.0193177442997694, -0.029073622077703476, -0.015894873067736626, 0.022117016837000847, 0.023114776238799095, 0.02763241156935692, 0.018999015912413597, -0.006890780758112669, 0.06646191328763962, -0.0020284324418753386, -0.016241317614912987, -0.02440354973077774, -0.024181826040148735, -0.014675388112664223, 0.011023863218724728, -0.0036272737197577953, -0.003776244819164276, -0.023752234876155853, -0.018915869295597076, 0.026759373024106026, 0.007517845369875431, -0.005480751860886812, -0.03356354311108589, 0.013060957193374634, -0.013587553054094315, -0.011779112741351128, 0.010594272054731846, 0.013552908785641193, -0.0064750476740300655, 0.022782189771533012, -0.00989445485174656, 0.006388436537235975, -0.003473106073215604, -0.005906878504902124, -8.011528552742675e-05, -0.010275543667376041, -0.003312009386718273, -0.03215004876255989, 0.0023419647477567196, -0.012284921482205391, -0.02236645668745041, 0.01985819824039936, -0.033092375844717026, -0.01269372645765543, -0.004950691945850849, -0.003907893784344196, -0.02840844728052616, -0.01693420670926571, 0.005955380853265524, -0.006731416564434767, 0.012756085954606533, -0.010857569985091686, -0.014938686043024063, 0.00033020490081980824, -0.01898515783250332, 0.03960553556680679, 0.013130245730280876, 0.01628289185464382, 0.014439806342124939, -0.016629334539175034, -0.0033743693493306637, 0.0026988026220351458, -0.014231939800083637, -0.030930563807487488, 0.02075895294547081, 0.03001595102250576, 0.0026832125149667263, 0.008848192170262337, -0.01790425181388855, -0.013684557750821114, -0.03203918784856796, -0.028256012126803398, 0.013767704367637634, 0.017239077016711235, -0.006558194290846586, -0.017751814797520638, -0.011772183701395988, -0.005040767136961222, -0.002101185731589794, -0.004347878508269787, 0.00487447390332818, -0.006159782875329256, -0.009014485403895378, -0.018042828887701035, 0.010213183239102364, 0.01898515783250332, 0.036833979189395905, 0.0006530478713102639, -0.015881014987826347, -0.03802574798464775, -0.017530091106891632, -0.006111280992627144, 0.011224801652133465, -0.018222980201244354, 0.011418810114264488, -0.011183228343725204, -0.008439388126134872, 0.013435116969048977, -0.0075455610640347, -0.013379686512053013, -0.005622793920338154, -0.022518891841173172, 0.023724518716335297, 0.008217663504183292, 0.01385777909308672, 0.016158170998096466, 0.023100918158888817, 0.019733477383852005, 0.0023090525064617395, -0.006499298382550478, 0.018500136211514473, -0.0151881268247962, 0.0025948691181838512, -0.005338709801435471, 0.005259027238935232, 0.02297619916498661, -0.009506436996161938, -0.013102530501782894, 0.005435714032500982, 0.0027161247562617064, 0.001740883570164442, 0.006454261019825935, -0.05515396222472191, -0.026759373024106026, 0.001370187965221703, -0.025345878675580025, 0.025983337312936783, 0.0014178240671753883, 0.012901592999696732, -0.010892215184867382, 0.029627932235598564, -0.01482782419770956, 0.02432040311396122, -0.03766544535756111, 0.005321387201547623, -0.026329781860113144, -0.007947436533868313, -0.0068284207955002785, -0.02056494541466236, 0.00710211182013154, -0.02120240218937397, -0.019664188846945763, 0.020024491474032402, 0.02280990593135357, -0.0013277485268190503, -0.004482991527765989, 0.01586715690791607, 0.010975361801683903, 0.00496454956009984, 0.0196087583899498, -0.01728065125644207, -0.03769316151738167, 0.013442046009004116, 0.024916287511587143, 0.00010961719817714766, -0.00033799989614635706, -0.03306466341018677, 0.013899353332817554, 0.0005300600896589458, 0.010143894702196121, 0.01486939750611782, -0.02807586081326008, 0.015991877764463425, -0.01693420670926571, 0.018375415354967117, 0.007587134372442961, -0.016407610848546028, 0.0026468359865248203, -0.022214021533727646, -0.0034471226390451193, 0.010982289910316467, 0.0010038228938356042, -0.013192606158554554, 0.011356450617313385, 0.011689037084579468, -0.006190963089466095, 0.0027057314291596413, -0.0011259445454925299, -0.02513801120221615, 0.0006240331567823887, -0.000808947894256562, -0.03697255626320839, -0.002884150482714176, 0.0036238094326108694, 0.02822829782962799, -0.0072199031710624695, 0.0010583879193291068, 0.006177105009555817, -0.005685153882950544, -0.03805346414446831, -0.007871218957006931, 0.011030792258679867, 0.018749576061964035, 0.044040024280548096, 0.012257206253707409, 0.012277992442250252, 0.015797868371009827, -0.011467312462627888, -0.006080100778490305, -0.016878776252269745, -0.020952962338924408, -0.003362243762239814, -0.0097558768466115, -0.0035250727087259293, 0.014495237730443478, -0.019927486777305603, 0.0037242781836539507, 0.010878357104957104, -0.002608726965263486, 0.01568700559437275, 0.0016741929575800896, 0.0048814029432833195, 0.002717857016250491, -4.1032020817510784e-05, 0.002563689136877656, 0.012575934641063213, 0.0018725324189290404, -0.0019522147485986352, -0.01987205632030964, -0.00909070298075676, -0.01514655351638794, -0.016767913475632668, -0.023738376796245575, -0.010365619324147701, 0.013573694974184036, -0.00463196262717247, 0.01737765595316887, -0.025886332616209984, -0.0033916914835572243, -0.01933160237967968, -0.020107638090848923, 0.042099934071302414, -0.016864918172359467, -0.023294927552342415, 0.03913436830043793, -0.00471857376396656, -0.012437357567250729, -0.03384069725871086, 0.019581042230129242, 0.010268614627420902, -0.01674019731581211, 0.02253274992108345, -0.037388287484645844, 0.016587762162089348, -1.3126998055668082e-05, -0.0008327659452334046, -0.008619538508355618, 0.0024129857774823904, 0.002920527011156082, 0.004517636261880398, -0.02192300744354725, 0.028366874903440475, 0.01629674807190895, -0.009146134369075298, 0.003507750341668725, -0.021396411582827568, -0.010878357104957104, -0.0013364095939323306, -0.013164890930056572, -0.010781352408230305, -0.009187707677483559, 0.010594272054731846, 0.009568796493113041, 0.007801929954439402, -0.012714512646198273, -0.016199743375182152, 0.012894663959741592, -0.03203918784856796, 0.001527820248156786, 0.22394171357154846, -0.01188997458666563, 0.0042612673714756966, 0.030791986733675003, 0.001556401839479804, 0.020814385265111923, 0.027909567579627037, -0.004531493876129389, -0.02653764747083187, -0.016463041305541992, -0.009173850528895855, 0.01621360145509243, -0.039023507386446, 0.003324134973809123, 0.0007223367574624717, 0.0019418213050812483, -0.03749915212392807, 0.003994504921138287, 0.014245796948671341, -0.05177266523241997, 0.004607711918652058, -0.010753637179732323, -0.018028970807790756, 0.0027802169788628817, 0.018749576061964035, 0.00728226313367486, -0.0014290835242718458, -0.01586715690791607, 0.020952962338924408, 0.0015486069023609161, -0.02558146044611931, -0.009818237274885178, 0.008778903633356094, 0.00949257891625166, -0.005574292037636042, -0.011093152686953545, 0.005335245281457901, 0.026315923780202866, 0.013185677118599415, -0.008862050250172615, 0.015326703898608685, -0.01611659675836563, -0.018028970807790756, -0.001482782419770956, -0.025512171909213066, 0.011488099582493305, -0.003675776068121195, -0.018569424748420715, -0.014952544122934341, 0.0010176807409152389, -0.035669922828674316, 0.009056058712303638, 0.03669540211558342, 0.028034288436174393, 0.012506646104156971, -0.0011709823738783598, 0.005241705104708672, 0.010538841597735882, -0.017086641862988472, 0.009007556363940239, -0.021077683195471764, 0.024375833570957184, 0.018652571365237236, 0.03045940026640892, -0.03777630627155304, 0.0072060455568134785, 0.004424096085131168, 0.0017538751708343625, -0.007316907402127981, -0.01407257467508316, -0.006540872156620026, -0.02709195949137211, -0.023904670029878616, 0.0029187947511672974, -0.018306126818060875, -0.0034072815906256437, 0.032011471688747406, -0.027563123032450676, 0.004462204873561859, -0.004628498572856188, 0.004496849607676268, -0.01718364655971527, -0.007704925257712603, -0.0020284324418753386, 0.0018326913705095649, -0.02511029690504074, 0.000993429566733539, -0.01456452626734972, -0.01184840127825737, -0.003306812606751919, -0.0327875055372715, -0.014218081720173359, -0.0004893528530374169, -0.015077264048159122, 0.0069254254922270775, -0.015881014987826347, 0.036030225455760956, 0.006662127561867237, -0.0009648479172028601, -0.017405370250344276, -0.017155930399894714, 0.0026589613407850266, 0.024167967960238457, 0.013019383884966373, -0.012853090651333332, -0.0009925634367391467, 0.0037797093391418457, 0.004999193828552961, 0.006849207449704409, -0.01514655351638794, 0.03181746229529381, -0.019484037533402443, -0.011210943572223186, -0.027008812874555588, 0.015881014987826347, 0.024611417204141617, -0.0007154078921303153, -0.00957572553306818, 0.011044650338590145, 0.014938686043024063, 0.01969190500676632, -0.01656004600226879, -0.004316698294132948, 0.012354210019111633, -0.008245378732681274, -0.009742018766701221, -0.018112117424607277, 0.03824746981263161, 0.0011900367680937052, -0.006395365111529827, 0.026579221710562706, -0.037998031824827194, -0.015118837356567383, -0.0007656423258595169, -0.017391514033079147, 0.006087029818445444, 0.01854170858860016, -0.017239077016711235, 0.022920766845345497, -0.005217453930526972, -0.0024424337316304445, 0.011287161149084568, -0.004392916336655617, 0.004462204873561859, -0.003564913757145405, -0.008744259364902973, 0.005574292037636042, -0.010989218950271606, 0.0038524626288563013, -0.0249440036714077, -0.01764095388352871, -0.010524983517825603, 0.0020717380102723837, -0.013518263585865498, -0.0030400503892451525, -0.026315923780202866, -0.017668668180704117, -0.0329815149307251, -0.0031976825557649136, 0.027757132425904274, -0.031318582594394684, 0.012264135293662548, 0.013961712829768658, -0.017169788479804993, -0.02244960330426693, -0.006464654114097357, -0.17771217226982117, 0.024708420038223267, 0.019193025305867195, -0.012811517342925072, 0.005515396129339933, 0.02085595764219761, 0.01577015221118927, -0.003124929266050458, -0.01251357514411211, -0.014897112734615803, 0.016338322311639786, -0.0006699370569549501, -0.029073622077703476, -0.0342009998857975, -0.0018725324189290404, -0.004212765023112297, -0.015077264048159122, 0.005962309427559376, 0.0358085036277771, 0.038801781833171844, 0.0034575159661471844, -0.017058927565813065, -0.00931242760270834, -0.005345638375729322, 0.009076845832169056, 0.006073171738535166, 0.0026451037265360355, -0.002752501517534256, 0.01425965502858162, -0.035143330693244934, -0.017072783783078194, 0.006384972017258406, -0.0004036078171338886, -0.01474467758089304, 0.007697996683418751, 0.012998596765100956, -0.0034748383332043886, -0.004694323055446148, 0.0021063825115561485, 0.025332020595669746, -0.00953415222465992, 0.015368277207016945, 0.001185706234537065, 0.002024967921897769, 0.011294090189039707, 0.027479976415634155, -0.0005776961916126311, -0.008515605702996254, 0.005643580574542284, -0.02459755912423134, 0.014675388112664223, -0.010753637179732323, 0.02351665124297142, -0.001933160237967968, 0.03597479686141014, 0.013580624014139175, 0.005477287340909243, 0.01586715690791607, 0.009506436996161938, -0.028547026216983795, 0.008058298379182816, -0.006932354066520929, 0.03226090967655182, -0.021271690726280212, 0.0035960937384516, -0.0007795001147314906, -0.022754473611712456, -0.005023445002734661, -0.010511125437915325, 0.011952335014939308, -0.0012523968471214175, -0.0011372040025889874, 0.026246635243296623, -0.01601959392428398, 0.00500958738848567, -0.0023627514019608498, -0.022740615531802177, 0.0247499942779541, -0.02074509672820568, -0.006274109706282616, -0.04354114457964897, 0.0327875055372715, -0.005414927378296852, -0.011176299303770065, 0.013400472700595856, 0.010393334552645683, -0.0023333036806434393, -0.01905444636940956, -0.00757327675819397, 0.0027282503433525562, 0.022560464218258858, -0.013975570909678936, -0.019664188846945763, -0.012506646104156971, -0.0050546252168715, 0.02192300744354725, 0.018583282828330994, -0.011044650338590145, -0.002335035940632224, -0.011127796955406666, -0.003306812606751919, -0.012125557288527489, -0.013081744313240051, 0.03151259198784828, 0.039965834468603134, 0.01622745953500271, 0.001898515853099525, -0.0009293373441323638, 0.03195603936910629, 0.006336469668895006, 0.002279604785144329, 0.006949676666408777, 0.020703522488474846, 0.016185887157917023, 0.022505033761262894, 0.03447815403342247, 0.0073446230962872505, -0.005854911636561155, 0.024361977353692055, -0.00015698265633545816, 0.06263716518878937, -0.008709614165127277, -0.011917690746486187, 0.00373120722360909, -0.019636474549770355, -0.020509513095021248, -0.11574017256498337, -0.01877729222178459, -0.0016490757698193192, 0.019026732072234154, -0.0012541291071102023, 0.010919930413365364, -0.008577965199947357, 0.009783592075109482, -0.0022518890909850597, 0.008328525349497795, -0.018763434141874313, -0.031069140881299973, 0.0010142162209376693, 0.008411671966314316, 0.019137592986226082, -0.029627932235598564, -0.0050546252168715, -0.008875907398760319, 0.011820686049759388, 0.03450587019324303, -0.004101902712136507, -0.014453664422035217, 0.013338113203644753, -0.039023507386446, 0.0193177442997694, -0.020426366478204727, -0.02200615406036377, 0.026939524337649345, 0.020176926627755165, 0.01531284675002098, 0.0012255473993718624, -0.00961729884147644, 0.014086432754993439, -0.004642356187105179, -0.007358481176197529, -0.022338740527629852, -0.0452595092356205, -0.014855539426207542, 0.007905863225460052, -0.02885189652442932, 0.010136965662240982, -0.01575629599392414, 0.020010633394122124, -0.008411671966314316, 0.0015823851572349668, -0.00037177823833189905, -0.029544785618782043, 0.007427769713103771, 0.005155093967914581, -0.014841682277619839, -0.02341964654624462, 0.014453664422035217, -0.02851931005716324, 0.0028131292201578617, 0.02066195011138916, 0.001140668522566557, 0.033452678471803665, 0.00037805753527209163, 0.005304065067321062, 0.015825584530830383, -0.012957023456692696, 0.004534958396106958, 0.006166711915284395, 0.025803185999393463, 0.01531284675002098, 0.006648269947618246, -0.012638295069336891, -0.005626258440315723, 0.013289610855281353, -0.004212765023112297, -0.012915450148284435, 0.005314458627253771, -0.037360575050115585, 0.015520713292062283, -0.019913628697395325, 0.021936865523457527, -0.02377994917333126, -0.014897112734615803, 0.01825069636106491, 0.009159992448985577, 0.0014186901971697807, -0.023045487701892853, 0.0017001762753352523, -0.017155930399894714, 0.015617717988789082, 0.01504954881966114, 0.01037254836410284, -0.007815787568688393, 0.005435714032500982, -0.020523371174931526, 0.0018482813611626625, 0.0044899205677211285, 0.00483290059491992, -0.04076958820223808, 0.003367440542206168, 0.03927294909954071, 0.004219694063067436, -0.006932354066520929, -0.0026347103994339705, -0.010684347711503506, -0.01744694449007511, 0.0031214647460728884, -0.058646123856306076, 0.03195603936910629, 0.013691485859453678, 0.004032613709568977, -0.007365409750491381, -0.01710049994289875, 0.0018829257460311055, -0.007247618865221739, -0.0060835652984678745, 0.0071228984743356705, -0.024431265890598297, 0.03375755250453949, 0.0011545262532308698, -0.008245378732681274, -0.02519344352185726, -0.01381620578467846, 0.01601959392428398, -0.026385212317109108, 0.004043007269501686, 0.0009648479172028601, 0.011924618855118752, 0.0015027029439806938, 0.025165727362036705, 0.005529254209250212, -0.019996775314211845, -0.011432668194174767, 0.007801929954439402, 0.01568700559437275, -0.011294090189039707, -0.009194636717438698, 0.01242349948734045, -0.04340256378054619, -0.02030164748430252, 0.010615059174597263, 0.006419616285711527, 0.0009778395760804415, 0.0071228984743356705, 0.003504286054521799, -0.004517636261880398, 0.054211635142564774, -0.017391514033079147, -0.006173640955239534, -0.0037000272423028946, -0.014495237730443478, 0.010344832204282284, 0.022130873054265976, -0.010400263592600822, -0.0004339217266533524, 0.019345460459589958, -0.014051788486540318, 2.3574464648845606e-05, 0.02573389746248722, 0.004694323055446148, -0.013746917247772217, 0.008806618861854076, -0.027327541261911392, 0.031928323209285736, -0.008584894239902496, 0.01657390408217907, -0.006852671969681978, -0.003810889320448041, 0.006059314124286175, -0.004299376159906387, -0.014578384347259998, 0.009832094423472881, -0.007115969900041819, -0.015659291297197342, -0.009728161618113518, -0.013317326083779335, -0.013511335477232933, 0.006800705101341009, -0.013975570909678936, 0.007892005145549774, 0.022421887144446373, 0.006731416564434767, 0.02325335331261158, 0.010012245737016201, -0.005449571646749973, -0.022920766845345497, 0.011550459079444408, -0.020703522488474846, -0.01162667665630579, -0.02627434954047203, 0.014619957655668259, 0.034699879586696625, 0.006800705101341009, -0.004427560605108738, 0.03489388898015022, -0.0012203507358208299, -0.000553012010641396, 0.004884867463260889, -0.014813966117799282, -0.003069498110562563, -0.005854911636561155, 0.022865336388349533, 0.02323949709534645, -0.012769944034516811, -0.002975958166643977, 0.03045940026640892, 0.03899579122662544, -0.020717380568385124, 0.008162232115864754, 0.008931338787078857, -0.0033761016093194485, 0.004974942654371262, 0.0040256851352751255, -0.010940716601908207, -0.029600217938423157, 0.0013017652090638876, 0.00958265457302332, 0.002076934790238738, 0.003403817070648074, 0.02540130913257599, 0.017696384340524673, -0.010961503721773624, 0.007386196404695511, 0.01452295295894146, -0.021493416279554367, -0.012326494790613651, 0.03287065401673317, 0.010933788493275642, 0.03483845666050911, 0.007691067643463612, 0.011820686049759388, 0.012222561985254288, 0.0035683782771229744, -0.0005352567532099783, 0.007296120747923851, 0.005695547442883253, -0.010850640945136547, -0.003337992588058114, 0.020204642787575722, -0.03065340779721737, -0.0030954815447330475, -0.0024909358471632004, -0.03450587019324303, -0.0187080018222332, 0.010892215184867382, -0.02236645668745041, 0.03569763898849487, 0.01613045483827591, -0.021978437900543213, 0.010081534273922443, 0.018763434141874313, 0.012631366029381752, 0.009866738691926003, 0.010705134831368923, -0.003564913757145405, 0.0015078996075317264, 0.0023921991232782602, -0.02136869542300701, 0.013254966586828232, -0.024112535640597343, -0.010919930413365364, 0.006804169621318579, 0.013130245730280876, 0.04523179307579994, -0.04561981186270714, -0.006807634141296148, 0.04478834196925163, 0.021867576986551285, 0.029461639001965523, -0.006630947347730398, 0.009374788030982018, -0.000950123998336494, 0.0255537461489439, 0.013310397043824196, 0.002955171512439847, -0.03927294909954071, 0.0023800735361874104, 0.007711854297667742, -0.004559209570288658, -0.010947645641863346, 0.005823731888085604, 0.006617089733481407, 0.0035545204300433397, -0.011287161149084568, 0.02225559391081333, -0.007739569991827011, -0.0248469989746809, 0.013539050705730915, -0.02973879501223564, -0.010545770637691021, 0.010164680890738964, -0.01403793040663004, -0.01773795858025551, 0.001071379636414349, -0.03348039463162422], "caea2eb3-2440-402b-a754-d7241b778d0c": [-0.020591745153069496, -0.01886523887515068, -0.025925666093826294, -0.008148266933858395, -0.01414892915636301, 0.024423746392130852, -0.01558066625148058, -0.01112403441220522, -0.014247185550630093, -0.02258494682610035, 0.03074023313820362, 0.021054953336715698, 0.03138591721653938, 0.01231714803725481, -0.004926859401166439, 0.01873890869319439, 0.028803177177906036, 0.00329685490578413, 0.027020525187253952, -0.03113325871527195, -0.00981160905212164, -0.009867754764854908, 0.002659942489117384, 0.036326814442873, -0.025013284757733345, 0.02637483924627304, 0.0216725654900074, -0.018542395904660225, -0.00021998040028847754, -0.0025722135324031115, -0.01311021763831377, -0.004579452332109213, -0.003167015966027975, -0.02307622879743576, -0.03537232428789139, -0.012478569522500038, -0.0038741114549338818, -0.02076018415391445, 0.0052637383341789246, -0.0023914917837828398, 0.0126680638641119, -0.005547980312258005, -0.01339796930551529, 0.023693840950727463, -0.027006488293409348, 0.024157050997018814, -0.004747892264276743, -0.028452260419726372, -0.01161531638354063, -0.0007575397030450404, 0.019005605950951576, 0.02087247744202614, -0.02759602665901184, 0.008078084327280521, -0.019216155633330345, 0.000503125658724457, 0.019791657105088234, 0.024072831496596336, -0.010281835682690144, 0.020549634471535683, 0.0018089715158566833, 0.0050391522236168385, 0.001010637846775353, 0.004825093783438206, -0.05044766888022423, -0.018570469692349434, -0.003203862113878131, 0.007825424894690514, -0.014920944347977638, -0.010148487985134125, 0.029954181984066963, 0.017503684386610985, -0.0004803161427844316, -0.007425380405038595, 0.03141399100422859, -0.02796097844839096, -0.014443698339164257, -0.0015036746626719832, -0.013650628738105297, -0.006134009920060635, 0.0009220315259881318, -0.03464241698384285, -0.009769498370587826, -0.007183248642832041, 0.020521562546491623, 0.0058181858621537685, 0.008632531389594078, 0.02585548348724842, -0.04126771166920662, -0.03742167353630066, 0.008850098587572575, 0.007649966515600681, 0.014555991627275944, 0.021293576806783676, -0.006105936598032713, 0.0204513780772686, -0.023890353739261627, 0.028185565024614334, -0.0062989406287670135, -0.02094266191124916, -0.009987066499888897, 0.009846700355410576, -0.03138591721653938, -0.005874332040548325, -0.03365985304117203, 0.01883716508746147, -0.0002730564447119832, -0.011439858004450798, 0.0025423855986446142, -0.03455819934606552, -0.015342042781412601, 0.03874111548066139, -0.011776737868785858, -0.05704488977789879, 0.0020054844208061695, -0.018668726086616516, 0.03542846813797951, -0.011867975816130638, -0.02463429607450962, -0.02707667089998722, -0.011552151292562485, 0.010829264298081398, 0.007881571538746357, 0.008709732443094254, 0.0126680638641119, -0.007811388000845909, 0.011481968685984612, -0.012520679272711277, -0.0019967115949839354, -0.00685338769108057, 0.0436539389193058, 0.0006943748448975384, 0.014626175165176392, 0.00865358579903841, 0.004660163074731827, -0.0066112554632127285, -0.03006647527217865, -0.005176009610295296, -0.019482851028442383, -0.022472653537988663, 0.015440300107002258, 0.0022932353895157576, -0.01396645326167345, -0.023890353739261627, -0.007965791039168835, 0.02746969647705555, 0.03562498092651367, -0.0037232176400721073, -0.03116133250296116, 0.02575722709298134, 0.018430102616548538, -0.00960105936974287, 0.0047829835675656796, -0.008365835063159466, 0.008850098587572575, 0.014373515732586384, 0.03250885009765625, -0.01361553743481636, 0.005109335295855999, 0.0018440630519762635, 0.014162966050207615, 0.020311012864112854, 0.0003588115214370191, -0.009439637884497643, -0.0049584414809942245, 0.028971616178750992, 0.007165702525526285, -0.010815228335559368, -0.02200944535434246, -0.01240838598459959, 0.00017874778131954372, 0.014247185550630093, -0.026346765458583832, 0.00762189319357276, 0.0003037615679204464, 0.009011520072817802, 0.023890353739261627, 0.02612217888236046, -0.0070463912561535835, -0.0019265282899141312, -0.0457875058054924, -0.011299491859972477, 0.03554076328873634, 0.013159346766769886, -0.008779915980994701, 0.002458165865391493, -0.005691856145858765, -0.009144868701696396, 0.0008404435939155519, -0.001675623469054699, -0.006772676948457956, 0.02286568097770214, -0.01673167012631893, -0.012457514181733131, -0.6342313885688782, -0.011685499921441078, -0.02478870004415512, 0.0012510152300819755, -0.017222952097654343, -0.0014527918538078666, 0.018977532163262367, -0.0008496551308780909, -0.0004344777553342283, 0.0002908215392380953, -0.015496445819735527, 0.00436539389193058, -0.017349282279610634, -0.004158353433012962, -0.008983447216451168, -0.01681588962674141, 0.015285897068679333, 0.001514202100224793, 0.01433140505105257, -0.01248558796942234, -0.021068990230560303, 0.008597439154982567, -0.011060869321227074, 0.01489287056028843, -0.001478233258239925, -0.027567952871322632, 0.012232928536832333, -0.0015878945123404264, 0.003161752363666892, 0.03683213144540787, -0.019946059212088585, 0.016773780807852745, 0.023665769025683403, 0.014415625482797623, 0.04539448022842407, -0.01287861354649067, -0.033435266464948654, 0.01821955293416977, 0.02109706401824951, 0.01524378638714552, -0.036888279020786285, -0.01330673135817051, 0.010723990388214588, 0.008337762206792831, 0.012155726552009583, 0.005656764376908541, 0.011271419003605843, -0.024002647027373314, 0.015889471396803856, 0.02338503487408161, -0.0019142462406307459, 0.011924122460186481, -0.0057795848697423935, -0.0025844955816864967, 0.004070624243468046, 0.002291480777785182, 0.032705362886190414, -0.009558949619531631, 0.008829044178128242, -0.014078745618462563, 0.019707437604665756, 0.02200944535434246, 0.007165702525526285, -0.0028441734611988068, -0.011418803595006466, 0.0175457950681448, -0.015215713530778885, 0.008148266933858395, 0.017601940780878067, -0.01886523887515068, -0.007141138426959515, 0.01239435002207756, 0.003351246938109398, -0.013636591844260693, 0.01871083676815033, 0.009804590605199337, 0.003607415361329913, 0.0009685278637334704, 0.004428558517247438, 0.02502732165157795, 0.014920944347977638, -0.018430102616548538, -0.018486250191926956, -0.015482409857213497, 0.02026890218257904, -0.019033677875995636, -0.004344339016824961, 0.0402851440012455, 0.00340388435870409, 0.007523636799305677, 0.00626384885981679, 0.03290187567472458, 0.008850098587572575, 0.007467490155249834, 0.014155947603285313, 0.02191118896007538, -0.010443257167935371, -0.00175282487180084, 0.014513881877064705, -0.008400926366448402, 0.004561906680464745, -0.008920282125473022, -0.015033237636089325, -0.01553855650126934, 0.011573206633329391, 0.004835620988160372, -0.056820303201675415, 0.029645375907421112, 0.045619066804647446, -0.014780578203499317, -0.005197064485400915, -0.0045127784833312035, -0.025111541152000427, -0.005793621763586998, 0.007909644395112991, -0.01402259897440672, 0.019861839711666107, -0.007376252207905054, 0.021812932565808296, -0.009594040922820568, 0.0070007722824811935, -0.005860295612365007, 0.012983888387680054, -0.005986625328660011, 0.013201456516981125, 0.03809542953968048, 0.015763143077492714, -0.014254203997552395, -0.02008642628788948, -0.0077482229098677635, -0.002268671290948987, -0.004481195937842131, 0.004189935978502035, -0.004281173925846815, 0.021756784990429878, -0.01907578855752945, 0.02331485226750374, 0.008751842193305492, 0.021770821884274483, -0.043204765766859055, -0.005533943884074688, -0.0030845508445054293, 0.010899447835981846, 0.015819288790225983, -0.004039042163640261, -0.024002647027373314, -0.027708319947123528, 0.006046281196177006, -0.032340411096811295, 0.0016071947757154703, -0.025406312197446823, -0.017503684386610985, -0.004779474809765816, 0.009446656331419945, -0.0013764676405116916, -0.000167343023349531, -0.00865358579903841, -0.007334142457693815, 0.0020458397921174765, -0.02970152162015438, 0.0013773449463769794, -0.001751947682350874, -0.03458626940846443, 0.010169542394578457, 0.011952195316553116, -0.01283650379627943, -0.021588345989584923, 0.01904771476984024, -0.010246744379401207, -0.038263868540525436, 0.023062193766236305, -0.0012106598587706685, 0.00830266997218132, 0.03396866098046303, -0.025841446593403816, 0.001527361455373466, 0.0009290498564951122, -0.023820171132683754, -0.02014257200062275, 0.005035643000155687, -0.012092562392354012, 0.02170063927769661, -0.0034389758948236704, 0.004940895829349756, 0.02796097844839096, -0.012934760190546513, -0.005944515578448772, -0.009867754764854908, -0.001787916524335742, 0.016436900943517685, -0.007039372809231281, -0.016563231125473976, 0.011959213763475418, -0.008323725312948227, 0.008667622692883015, 0.01278737559914589, 0.015257823280990124, 0.0338844396173954, 0.0049479142762720585, 0.00187740009278059, 0.015145529992878437, 0.005484815686941147, 0.014015581458806992, 0.006590200588107109, -0.0013843632768839598, -0.01629653386771679, 0.011481968685984612, 0.0009966011857613921, 0.038684967905282974, -0.0034530125558376312, 0.0028318914119154215, -0.03697250038385391, 0.012569807469844818, -0.012464532628655434, 0.006400706246495247, 0.03079637885093689, 0.017531758174300194, 0.010555550456047058, -0.010723990388214588, 0.026627497747540474, 0.015047273598611355, -0.015005163848400116, 0.012190818786621094, 0.005028625018894672, -0.02502732165157795, -0.005509379785507917, 0.014555991627275944, 0.030234914273023605, 0.018205516040325165, 0.003512668190523982, 0.009825645014643669, -0.01946881413459778, 0.0011474950006231666, 0.018640652298927307, 0.007734186481684446, -0.02005835250020027, 0.01471039466559887, -0.016773780807852745, 0.0387691892683506, -0.043878525495529175, -0.0003621013602241874, 0.00490580452606082, 0.03992019221186638, -0.024802735075354576, -0.003912712447345257, -0.006105936598032713, 0.011404766701161861, 0.003972367849200964, 0.019861839711666107, 0.01358044520020485, -0.0014027863508090377, 0.010534495115280151, -0.0020581218414008617, -0.006372632924467325, 0.02032504975795746, -0.017896711826324463, -0.007853497751057148, 0.020311012864112854, 0.016900109127163887, 0.027666209265589714, 0.010022157803177834, 0.00727097736671567, 0.03394058719277382, 0.014247185550630093, 0.05143023282289505, -0.009516838937997818, 0.012794394046068192, 0.026178326457738876, -0.01990395039319992, -0.023693840950727463, -0.02419915981590748, -0.004832111764699221, 0.01892138458788395, -0.003516177413985133, 0.012639991007745266, 0.0009729143348522484, 0.012703156098723412, -0.0003252551832702011, 0.020746147260069847, -0.010878392495214939, -0.02637483924627304, -0.03643910586833954, 0.014443698339164257, 0.011594261042773724, 0.0006623537628911436, -0.012380313128232956, -0.02505539543926716, 0.009158904664218426, 0.007993863895535469, 0.02042330615222454, -0.01840203069150448, 0.003121396992355585, 0.0090045016258955, -0.01574910618364811, -0.0036003971472382545, 0.024704478681087494, 0.028943544253706932, -0.02542034722864628, 0.034417830407619476, -0.0035284594632685184, 0.01920211873948574, 0.009102758020162582, -0.03893762826919556, -0.004214500077068806, 0.0338844396173954, -0.01030289102345705, -0.0011290719266980886, -0.010197616182267666, 0.015482409857213497, -0.03368792682886124, -0.00734116043895483, -0.026753827929496765, 0.007116574328392744, 0.0035916243214160204, -0.00917294155806303, 0.013292694464325905, -0.010064268484711647, 0.032368481159210205, 0.035793423652648926, -0.005849767941981554, -0.0033477377146482468, -0.00635508680716157, -0.01770019717514515, 6.57967320876196e-05, 0.09258565306663513, 0.04278366640210152, -0.01555259246379137, -0.0024265835527330637, -0.0038986755535006523, 0.007678039837628603, -0.015608739107847214, -0.018359920009970665, 0.027483733370900154, 0.016773780807852745, 0.006927079986780882, -0.013819067738950253, 0.021111100912094116, -0.0027827632147818804, 0.015299933031201363, 0.0004689113702625036, 0.0003136310842819512, -0.00537252239882946, 0.0021283049136400223, 0.0031424518674612045, 0.00019190713646821678, 0.009755462408065796, -0.01419103890657425, 0.01569295860826969, -0.019300375133752823, -0.013812050223350525, 0.008737806230783463, 0.008035974577069283, 0.02542034722864628, -0.004723328165709972, -0.01191710401326418, 0.04337320476770401, 0.020914588123559952, 0.031049039214849472, -0.01209957990795374, 0.0018212535651400685, -0.00038162103737704456, -0.0005842749960720539, -0.000844830006826669, 0.005730456672608852, 0.011088942177593708, 0.03604608029127121, 0.005712911020964384, -0.01803707703948021, 0.009327344596385956, -0.0012597880559042096, -0.015426263213157654, 0.0013448852114379406, -0.015117457136511803, -0.009930919855833054, 0.03559691086411476, -0.004853167105466127, -0.013861178420484066, -0.0083939079195261, 0.021630456671118736, -0.005530434660613537, -0.006877951789647341, -0.0050847711972892284, -0.024044757708907127, 0.03854460269212723, -0.002547649433836341, 0.01798093132674694, 0.020198719576001167, -0.0076569849625229836, -0.01944074034690857, -0.014275258406996727, -0.032396554946899414, 0.015356079675257206, -0.016071949154138565, 0.025841446593403816, -0.020254865288734436, -0.013173382729291916, -0.013587463647127151, 0.02224806882441044, 0.005537453107535839, 0.006148046813905239, 0.016254425048828125, -0.01837395690381527, 0.013376913964748383, -0.01117316260933876, -0.020886514335870743, -0.04202568903565407, 0.01608598418533802, -0.011109997518360615, -0.02567300759255886, -0.004074133466929197, 0.001648427452892065, 0.0169422198086977, -0.04020092636346817, 0.004660163074731827, 0.0090045016258955, 0.017405427992343903, -0.006734075956046581, -0.01736331917345524, 0.010155506432056427, 0.00537252239882946, 0.014963054098188877, -0.023020083084702492, 0.0017098376993089914, -0.008920282125473022, 0.01402259897440672, -0.05693259462714195, 0.0049128225073218346, 0.0037969101686030626, 0.010597660206258297, -0.014043654315173626, 0.005969079677015543, 0.013783976435661316, -0.006783204153180122, -0.02408686839044094, 0.0234973281621933, -0.0067410944029688835, -0.012864576652646065, -0.006709511857479811, 0.012794394046068192, 0.011952195316553116, 0.01435947883874178, 0.014366497285664082, 0.016703596338629723, 0.008920282125473022, 0.006053299177438021, -0.03281765431165695, 0.01275930181145668, 0.010639769956469536, -0.0148788345977664, 0.013419023714959621, 0.0030898144468665123, -0.02624850906431675, 0.019482851028442383, 0.00015078418073244393, 0.030880600214004517, -0.004088170360773802, 0.0023914917837828398, -0.015454336069524288, -0.03677598759531975, 0.013875214383006096, -0.017587905749678612, -0.008309688419103622, -0.011755682528018951, 0.004888258408755064, -0.005330412648618221, -0.020156608894467354, -0.011952195316553116, -0.03278958052396774, -0.002021275693550706, -0.0289996899664402, -0.01296985149383545, -0.0034775766544044018, -0.005877841264009476, -0.0023792097344994545, -0.006541072390973568, -0.02151816338300705, -0.017840564250946045, -0.007544691674411297, -0.006814786698669195, -0.034810855984687805, -8.844177500577644e-05, -0.021012844517827034, 0.033014167100191116, 0.009467710740864277, 0.03534425050020218, -0.00441101286560297, 0.012380313128232956, 0.013440079055726528, -0.0035372322890907526, 0.01424016710370779, 0.002870492171496153, -0.026753827929496765, -0.03118940442800522, -0.006881461013108492, 0.029168128967285156, 0.01920211873948574, 0.03944294899702072, -0.011496004648506641, -0.01143284048885107, 0.03526002913713455, -0.0099940849468112, -0.009495784528553486, -0.012289075180888176, -0.036158375442028046, -0.023735951632261276, 0.0025634407065808773, 0.0023441181983798742, 0.002044085180386901, -0.036860205233097076, 0.003323173616081476, 0.04522604122757912, 0.0007614875212311745, -0.0014448962174355984, -0.027567952871322632, 0.0297576691955328, -0.007586801890283823, -0.0010492384899407625, -0.0019142462406307459, 0.023581547662615776, -0.006484925746917725, 0.011860957369208336, -0.0003202107618562877, 0.009720370173454285, -0.004095188342034817, -0.018781019374728203, 0.006148046813905239, -0.005098808091133833, -0.008702713996171951, -0.017012402415275574, 0.016001764684915543, -0.016493046656250954, -0.03438975661993027, 0.024255307391285896, -0.010583623312413692, -0.01748964935541153, -0.012155726552009583, -0.02024082839488983, -0.04154844209551811, -0.020493488758802414, -9.957238944480196e-05, 0.0031424518674612045, 0.028887396678328514, 0.0030073493253439665, 0.005877841264009476, 0.0024827299639582634, -0.012169763445854187, 0.02063385583460331, 0.010415184311568737, 0.027722356840968132, 0.010990685783326626, -0.021588345989584923, 0.003863584017381072, -0.006625292357057333, -0.00891326367855072, -0.01996009610593319, 0.010429220274090767, 0.010709953494369984, -0.0013852404663339257, 0.006934098433703184, -0.02419915981590748, -0.0025230853352695704, -0.0242693442851305, -0.019917987287044525, 0.024100903421640396, 0.01871083676815033, 0.00011624089529505, -0.0005588335916399956, -0.01590350829064846, -0.008414963260293007, 0.007965791039168835, -0.018444139510393143, 0.004326792899519205, -0.006281394511461258, -0.005965570453554392, -0.0167878158390522, 0.003368792589753866, 0.012492606416344643, 0.028157491236925125, 0.01673167012631893, 0.003058232134208083, -0.03191931173205376, -0.015945618972182274, 0.000781665148679167, -0.00903257541358471, -0.014780578203499317, 0.018907349556684494, -0.006484925746917725, -0.0032091259490698576, -0.003210880560800433, 0.007720150053501129, -0.016886074095964432, 0.0059550427831709385, -0.025630896911025047, 0.026501169428229332, 0.005239174235612154, 0.015510482713580132, 0.014570028521120548, 0.02039523236453533, 0.026697682216763496, 0.011243345215916634, 0.00045487473835237324, 0.013987507671117783, -0.016703596338629723, -0.0017668615328148007, -0.0038916573394089937, -0.014169984497129917, 0.0073973070830106735, -0.006867424119263887, -0.014387551695108414, -0.006734075956046581, 0.008134230971336365, -0.0037723458372056484, 0.012253982946276665, -0.04359779134392738, -0.03983597457408905, 0.004797020461410284, -0.012232928536832333, 0.029111983254551888, -0.01518764067441225, 0.016310570761561394, -0.008078084327280521, 0.01974954642355442, -0.03952716663479805, 0.026051996275782585, -0.024213196709752083, 0.013362877070903778, -0.03635488823056221, 0.008414963260293007, 0.0008904490969143808, -0.013426042161881924, 0.011804810725152493, -0.019482851028442383, -0.01847221329808235, 0.03113325871527195, 0.01871083676815033, -0.009060648269951344, 0.0011939913965761662, 0.00635508680716157, 0.001243996899574995, -0.017447538673877716, 0.020886514335870743, -0.025350164622068405, -0.028803177177906036, 0.013994526118040085, 0.027764465659856796, -0.0008527256431989372, 0.0093834912404418, -0.024409709498286247, 0.007099028676748276, 0.011390729807317257, 0.009741425514221191, 0.009818626567721367, -0.034080952405929565, 0.03250885009765625, -0.015861399471759796, 0.01148898620158434, -9.644704550737515e-05, -0.0283820778131485, -0.00873078778386116, -0.020030280575156212, -0.0030301588121801615, 0.021995408460497856, 0.013531317003071308, -0.010646788403391838, 0.00828863400965929, -0.00031648227013647556, -0.019160008057951927, -0.00969229731708765, -0.0016177223296836019, 0.006225247867405415, 0.0003217460180167109, -0.002480975352227688, -0.031245552003383636, -0.01987587660551071, -0.0032775544095784426, 0.0206057820469141, 0.009369454346597195, -0.026304656639695168, -0.0032143895514309406, -0.0074815270490944386, -0.018907349556684494, -0.016170205548405647, -0.00315473391674459, -0.0018703817622736096, 0.0350915901362896, 0.012183800339698792, 0.01907578855752945, 0.002856455510482192, -0.011994305066764355, -0.0010957348858937621, -0.01889331266283989, -0.006337541155517101, 0.008829044178128242, -0.007327124010771513, 0.009095740504562855, 0.017349282279610634, -0.04138000309467316, -0.009025556966662407, 0.017601940780878067, -0.00032393925357609987, 0.0126680638641119, 0.0004028953262604773, 0.009474729187786579, 0.013236547820270061, -0.018331846222281456, 0.010387110523879528, 0.01748964935541153, 8.191692904802039e-05, 0.002023030072450638, -0.017994968220591545, -0.012871595099568367, -0.010422201827168465, 0.0087728975340724, -0.01972147449851036, -0.029280422255396843, 0.00018313423788640648, -0.003821474267169833, 0.000745696306694299, -0.026880158111453056, -0.0032986095175147057, -0.02832593210041523, -0.021630456671118736, 0.03214389830827713, -0.011159125715494156, -0.024929065257310867, 0.03977982699871063, 0.009327344596385956, -0.0199881698936224, -0.012338203378021717, 0.02600988745689392, -0.006386669352650642, -0.032312337309122086, 0.02863473817706108, -0.036242593079805374, 0.01566488668322563, -0.007460472173988819, -0.00600417098030448, -0.010555550456047058, 0.020886514335870743, -0.012864576652646065, -0.011180181056261063, -0.030262988060712814, 0.02725914679467678, 0.010716971941292286, -0.027273183688521385, -0.0018809091998264194, -0.008632531389594078, -0.029280422255396843, 0.002098476979881525, -0.005783094093203545, -0.01139774825423956, -0.021054953336715698, 0.017405427992343903, -0.004000441171228886, -0.002577477367594838, -0.021251466125249863, -0.0017405428225174546, 0.021111100912094116, -0.0228937529027462, 0.007706113159656525, 0.20796680450439453, -0.005495342891663313, -0.00493036862462759, 0.03040335327386856, 0.003832001704722643, 0.018668726086616516, 0.023062193766236305, -0.010464312508702278, -0.01969340071082115, -0.00034148505073972046, -0.017138732597231865, -0.00398991396650672, -0.008786934427917004, -0.0010237970855087042, -0.002377455122768879, 0.0175457950681448, -0.045984018594026566, -0.0009606322855688632, -0.006105936598032713, -0.06872337311506271, 0.015384153462946415, -0.022290177643299103, -0.02102688141167164, 0.0004649635811802, 0.024760626256465912, -0.0020458397921174765, 0.006562127266079187, -0.034445904195308685, 0.01777038164436817, -0.0016449183458462358, -0.017966894432902336, -0.009425600990653038, 0.0018931912491098046, -0.005965570453554392, 0.003095078282058239, 0.008078084327280521, 0.012169763445854187, -0.005463760811835527, 0.018430102616548538, -0.021630456671118736, 0.021237431094050407, -0.010815228335559368, -0.0036811078898608685, 0.010885410942137241, -0.03074023313820362, 0.012682100757956505, 0.0019791657105088234, -0.011194217018783092, -0.02102688141167164, 0.015468372963368893, -0.022641094401478767, 0.0074394172988832, 0.03172279894351959, 0.03649525344371796, 0.009355418384075165, -0.014085764065384865, 0.00288452859967947, 0.024185124784708023, -0.023244669660925865, 0.0317508690059185, -0.01944074034690857, 0.030234914273023605, 0.0006807768368162215, 0.029196202754974365, -0.02627658285200596, -0.0052146101370453835, -0.0010571341263130307, -0.001733524608425796, -0.00230025383643806, -0.029448863118886948, 0.00101502425968647, -0.016043875366449356, -0.016071949154138565, 0.0069165523163974285, -0.012120635248720646, -0.0018212535651400685, 0.023946501314640045, -0.030964819714426994, 0.0009922146564349532, 0.005814676638692617, -0.006095409393310547, -0.02133568748831749, 0.004695254843682051, -0.009376472793519497, 0.012962833046913147, -0.03242462873458862, -0.0034284484572708607, -0.006737585179507732, -0.014373515732586384, 0.021588345989584923, -0.026880158111453056, -0.04654548689723015, -0.0038284924812614918, -0.0033021187409758568, -0.013334804214537144, -0.0008886945433914661, 0.026360802352428436, 0.009502802975475788, -0.004891767632216215, -0.007874553091824055, -0.016956256702542305, 0.0016510593704879284, 0.029533082619309425, -0.0017317699966952205, -0.025644933804869652, 0.005197064485400915, 0.02146201580762863, -0.003356510540470481, 0.005930478684604168, -0.010288854129612446, 0.018935421481728554, -0.014485808089375496, -0.007986846379935741, -0.024227233603596687, 0.0073973070830106735, 0.01831780932843685, -0.0027617081068456173, -0.028087308630347252, 0.004028514493256807, 0.017110658809542656, 0.01300494372844696, -0.017026439309120178, -0.0026037960778921843, -0.004681217949837446, 0.0011080169351771474, -0.004179408308118582, -0.002116022864356637, 0.0187669824808836, 0.005411123391240835, -0.020647890865802765, 0.023272743448615074, -0.046348974108695984, -0.0009106267825700343, 0.0025458948221057653, -0.027483733370900154, 0.019917987287044525, 0.011531096883118153, -0.02414301410317421, 0.01485076081007719, 0.003737254301086068, 0.013131272979080677, 0.00017512896738480777, 0.006183138117194176, 0.020311012864112854, -0.000280732725514099, -0.01016252487897873, 0.0042460826225578785, -0.016380753368139267, 0.0036460161209106445, -0.008815007284283638, -0.04432769492268562, -0.005565526429563761, -0.0005145304603502154, -0.00917294155806303, 0.002272180514410138, -0.016254425048828125, -0.01868276298046112, -0.027722356840968132, -0.003549514338374138, 0.0399763397872448, -0.020184682682156563, 0.020886514335870743, 0.02279549650847912, -0.008583403192460537, -0.018359920009970665, -0.033379118889570236, -0.18124105036258698, 0.009186978451907635, 0.01419103890657425, -0.02759602665901184, 0.0136576471850276, 0.02008642628788948, 0.02591163106262684, 0.0038741114549338818, -0.009186978451907635, -0.020128536969423294, 0.006512999068945646, 0.01398048922419548, -0.027750428766012192, -0.01130651030689478, -0.01234522182494402, 0.008099138736724854, -0.02271127700805664, 0.009460692293941975, 0.05687645077705383, 0.023370999842882156, 0.011194217018783092, 0.002502030460163951, 0.0031529793050140142, -0.011067887768149376, 0.0035881150979548693, 0.004326792899519205, 0.005193555261939764, 0.02341310866177082, 0.007986846379935741, -0.015033237636089325, -0.02011450007557869, 0.017910746857523918, 0.002852946287021041, -0.01691414602100849, 0.02185504324734211, 0.008878172375261784, -0.008078084327280521, -0.008758860640227795, -5.943638097960502e-05, 0.02972959540784359, -0.0027283711824566126, 0.011299491859972477, 0.009685278870165348, -0.011109997518360615, 0.005639218725264072, 0.03250885009765625, -0.00595855200663209, 0.000543919624760747, 0.013510262593626976, -0.017208915203809738, -0.00511284451931715, -0.0012992661213502288, 0.022177884355187416, 0.009636150673031807, 0.025504568591713905, 0.029476935043931007, 0.024283381178975105, 0.014598101377487183, -0.004147825762629509, -0.02320255897939205, 0.017405427992343903, -0.004046060144901276, 0.03186316415667534, -0.00014519145770464092, -0.02191118896007538, 0.004449613858014345, 0.001141353975981474, 0.009144868701696396, -0.015650849789381027, 0.020563671365380287, -0.0021546236239373684, -0.003747781738638878, 0.007671021390706301, -0.017194878309965134, 0.007411343976855278, -0.0011290719266980886, -0.024437783285975456, 0.014387551695108414, 0.0015422754222527146, -0.01907578855752945, -0.04123963788151741, 0.04443999007344246, -0.013685720041394234, -0.004775965586304665, 0.015075347386300564, 0.02139183320105076, -0.015328006818890572, -0.019651290029287338, -0.01555259246379137, -0.005790112540125847, 0.01821955293416977, -0.004667181521654129, -0.008092120289802551, -0.02713281661272049, 0.008646567352116108, 0.01798093132674694, 0.011545132845640182, -0.027764465659856796, -0.013875214383006096, -0.00576905719935894, 0.0015063064638525248, -0.015622776001691818, -0.010829264298081398, 0.03467049077153206, 0.024858882650732994, 0.01657726801931858, -0.01336989551782608, -0.004747892264276743, 0.030599866062402725, 0.0076078567653894424, -0.011811829172074795, 0.0026388876140117645, 0.03259306773543358, 0.0060006617568433285, 0.025771263986825943, 0.04132385551929474, 0.019524959847331047, -0.007049900479614735, 0.010204634629189968, 0.0010176560608670115, 0.07007088512182236, -0.007467490155249834, -0.0019616198260337114, 0.0008408822468481958, -0.016745707020163536, -0.0303752813488245, -0.11481968313455582, 0.0050321342423558235, 0.0032319354359060526, 0.016198277473449707, -0.009699315764009953, 0.00830266997218132, -0.008260560221970081, 0.03045950084924698, 0.006621783133596182, -0.012682100757956505, -0.01261893566697836, -0.019861839711666107, 0.008541293442249298, -0.0063059586100280285, 0.01156618818640709, -0.025658970698714256, -0.015384153462946415, -0.013215492479503155, 0.006891988217830658, 0.04404696449637413, 0.00943261943757534, -0.009376472793519497, 0.005432178266346455, -0.02972959540784359, 0.02972959540784359, -0.00753065524622798, -0.03840423747897148, 0.02460622228682041, 0.022641094401478767, 0.018963495269417763, -0.01969340071082115, -0.008281615562736988, 0.024044757708907127, -0.008000882342457771, -0.004519796930253506, -0.014808651059865952, -0.03649525344371796, -0.022542838007211685, 0.023118339478969574, -0.033744074404239655, 0.008183359168469906, -0.008085102774202824, 0.004554888233542442, -0.013412006199359894, -0.007649966515600681, -0.014485808089375496, -0.02331485226750374, 0.009025556966662407, 0.01718084327876568, -0.017026439309120178, -0.02292182669043541, 0.016170205548405647, -0.029617302119731903, -0.010948576033115387, 0.013783976435661316, -0.007007790729403496, 0.03006647527217865, 0.003688126103952527, -0.01278737559914589, -0.015047273598611355, -0.01593158207833767, 0.008141248486936092, 0.01468232087790966, 0.016928182914853096, 0.008372853510081768, -0.020184682682156563, -0.017910746857523918, -0.0148788345977664, 0.02707667089998722, 0.00795175414532423, -0.01433140505105257, -0.00628841295838356, -0.031975455582141876, 0.025139614939689636, -0.008702713996171951, 0.016591303050518036, -0.030936745926737785, 0.0027108252979815006, -0.004063606262207031, -0.0022897261660546064, -0.008443037047982216, -0.022669166326522827, 0.004137298557907343, -0.020465414971113205, 0.009748443961143494, 0.035147737711668015, 0.016647450625896454, -0.022879716008901596, 0.0017940575489774346, -0.025504568591713905, -0.006484925746917725, 0.01537011656910181, 0.0010571341263130307, -0.024128977209329605, 0.024437783285975456, 0.03141399100422859, 0.001288738683797419, -0.0026757337618619204, -0.0007799105951562524, -0.0063059586100280285, -0.03315453603863716, 0.005225137807428837, -0.06484925746917725, 0.01335585955530405, 0.019061751663684845, 0.00694462563842535, -0.003916221670806408, -0.03318260610103607, 0.004312756471335888, 0.00029455003095790744, -0.02432548999786377, -0.0024546566419303417, -0.025644933804869652, 0.012850540690124035, -0.015763143077492714, -0.007804369553923607, -0.02619236335158348, -0.021111100912094116, 0.016535157337784767, -0.019791657105088234, 0.00035113521153107285, -0.0031828072387725115, 0.0020054844208061695, -0.01666148751974106, 0.008464091457426548, 0.0070358640514314175, -0.022388434037566185, -0.004400485195219517, 0.01821955293416977, 0.014920944347977638, -0.002003729809075594, -0.014338423497974873, 0.008723769336938858, -0.04780878126621246, 0.005516397766768932, -0.002809081692248583, 0.003916221670806408, 0.022655131295323372, -0.006758640054613352, -0.0008470232714898884, -0.0005697996821254492, 0.03438975661993027, -0.011959213763475418, -0.008492165245115757, -0.0022897261660546064, -0.02502732165157795, 0.0034968769177794456, 0.02866281010210514, -0.011018759571015835, -0.008225468918681145, 0.0036319796927273273, -0.010309909470379353, 0.012218891642987728, 0.024592187255620956, 0.01239435002207756, -0.0019353012321516871, 0.0013948907144367695, -0.029898034408688545, 0.008751842193305492, -0.009460692293941975, 0.011334583163261414, -0.01782652735710144, 0.013390950858592987, -0.003624961245805025, 0.008323725312948227, -0.01322952937334776, 0.014808651059865952, 0.0073973070830106735, -0.012127653695642948, -0.019426703453063965, -0.010352019220590591, -0.006744603626430035, 0.0016650959150865674, 0.0011439858935773373, 0.002282707951962948, 0.0027652173303067684, 0.017587905749678612, 0.030712159350514412, -0.019833765923976898, 0.011145088821649551, -0.021784858778119087, 0.01993202231824398, -0.007635930087417364, -0.00969229731708765, -0.03003840148448944, 0.01788267493247986, 0.036523327231407166, 0.0034179207868874073, -0.00033994976547546685, -0.0021458507981151342, -0.0001984868140425533, 0.0064357975497841835, -0.005614654626697302, -0.008751842193305492, 0.015145529992878437, -0.010702935047447681, 0.013833104632794857, 0.02273935079574585, -0.0047829835675656796, 0.01082224678248167, 0.020226793363690376, 0.028311895206570625, 0.0012589107500389218, 0.011860957369208336, 0.002101986203342676, -0.02112513780593872, -0.015075347386300564, 0.0021353233605623245, -0.007116574328392744, -0.010029176250100136, 0.012682100757956505, 0.011194217018783092, 0.0010123923420906067, -0.012815448455512524, 0.044243477284908295, 0.025644933804869652, -0.023216595873236656, 0.013180401176214218, 0.013433060608804226, -0.010415184311568737, -0.015005163848400116, 0.029617302119731903, -0.0029073383193463087, 0.042081836611032486, 0.019609181210398674, 0.009215051308274269, 0.01361553743481636, 0.00018565644859336317, 0.02273935079574585, 0.023679805919528008, 0.002107250038534403, 0.01626846194267273, 0.009313307702541351, 0.0016563230892643332, -0.04132385551929474, -0.01209957990795374, 0.004017987288534641, -0.022598983719944954, -0.017349282279610634, 0.011755682528018951, -0.016900109127163887, 0.033379118889570236, 0.018093224614858627, -0.02530805394053459, -0.0029547119047492743, 0.012738247402012348, 0.021251466125249863, 0.014268240891397, 0.011152107268571854, 0.008106157183647156, -0.002919620368629694, 0.01245049573481083, -0.01795285753905773, 0.021012844517827034, -0.013426042161881924, -0.013292694464325905, 0.01654919423162937, -0.01278737559914589, 0.03332297503948212, -0.03500736877322197, -0.0031056057196110487, 0.024493928998708725, 0.002556422259658575, 0.031020965427160263, -0.00847110990434885, -0.005569035187363625, -0.007881571538746357, 0.021925225853919983, 0.005505870562046766, -0.0010632751509547234, -0.025616860017180443, 0.0010545023251324892, 0.01170655433088541, -0.016071949154138565, -0.010443257167935371, 0.008948355913162231, 0.014752504415810108, -0.005309357773512602, -0.009516838937997818, 0.015398189425468445, 0.0017800208879634738, -0.03298609331250191, 0.014289295300841331, -0.023539438843727112, -0.010330963879823685, -0.00450225081294775, -0.006930589210242033, -0.0021002315916121006, 0.005432178266346455, -0.01743350178003311], "ce5339e2-00c6-4d41-968b-ec5df76094a2": [-0.023248594254255295, -0.02385045401751995, -0.014458637684583664, -0.00014138899859972298, -0.0081880958750844, 0.0387989804148674, -0.01623622514307499, -0.020127320662140846, -0.006788421422243118, -0.029701093211770058, 0.019315509125590324, 0.014584609307348728, 0.029001256451010704, 0.0018283248646184802, 0.00046407958143390715, 0.029253197833895683, 0.036223579198122025, -0.003779121208935976, 0.03311629965901375, -0.026159917935729027, -0.008398047648370266, -0.0035324287600815296, -0.00281334575265646, 0.03756726533174515, -0.0032682400196790695, 0.0120581965893507, 0.019301511347293854, -0.014458637684583664, 0.003971576690673828, -0.0017898338846862316, -0.014157707802951336, 0.002991804387420416, 0.00889493152499199, -0.014080725610256195, -0.02226882241666317, -0.003542926162481308, -0.0002644072810653597, -0.01832173950970173, 0.0025124158710241318, -0.010504557751119137, -0.00016478980251122266, -0.009524784982204437, -0.023108627647161484, 0.0183357372879982, -0.027699559926986694, 0.008020135574042797, 0.0035044350661337376, -0.029141224920749664, -0.012499094009399414, 0.004975843243300915, 0.030344944447278976, 0.020127320662140846, -0.016614137217402458, -0.006197059061378241, -0.026551825925707817, 0.007166333496570587, 0.016320206224918365, 0.014878540299832821, -0.012674053199589252, 0.021582981571555138, 0.0008739217882975936, 0.001186224166303873, 0.0060395956970751286, 0.007404278498142958, -0.03865901008248329, -0.016670124605298042, -0.0006022974848747253, 0.007348291575908661, -0.002676877658814192, -0.015186469070613384, 0.04246612638235092, 0.031912580132484436, -0.01413671299815178, -0.0004981966339983046, 0.03336824104189873, -0.03140869736671448, -0.015774331986904144, 0.0010978697100654244, -0.007866171188652515, -0.0004942600498907268, 0.0046959081664681435, -0.029281191527843475, -0.0049163568764925, -0.0023234598338603973, 0.03364817798137665, -0.006337026599794626, 0.013506859540939331, 0.034627947956323624, -0.030288957059383392, -0.045125506818294525, 0.008524018339812756, 0.011064426973462105, 0.017775867134332657, 0.015816321596503258, -0.005612695124000311, 0.01702004298567772, -0.01741195097565651, 0.02726566046476364, 0.011764264665544033, -0.010623529553413391, -0.019077563658356667, 0.00048332512960769236, -0.025963962078094482, -0.002472175285220146, -0.03851904347538948, 0.011106417514383793, -0.00462242541834712, -0.022576751187443733, 0.005458730738610029, -0.02005733549594879, -0.012422111816704273, 0.029897049069404602, -0.017607904970645905, -0.056406885385513306, 0.008265078067779541, -0.011806255206465721, 0.030624879524111748, -0.0008157478296197951, -0.03723134472966194, -0.03199655935168266, -0.0037231342867016792, 0.01152632012963295, -0.009083887562155724, 0.01322692446410656, 0.007677215151488781, -0.0027888515032827854, -0.007320297881960869, -0.02775554731488228, 0.0010707509936764836, 0.004891862627118826, 0.05738665536046028, -0.0021030111238360405, 0.0026996221859008074, 0.006417507771402597, 0.001648116740398109, 0.006375517696142197, -0.025222135707736015, 0.0005813023308292031, -0.017495932057499886, -0.022562753409147263, 0.018419716507196426, 0.00922385510057211, -0.005763160064816475, -0.02462027594447136, -0.0014854046748951077, 0.021149082109332085, 0.014584609307348728, -0.0014337915927171707, -0.028595350682735443, 0.018937597051262856, 0.015312439762055874, -0.010399581864476204, 0.017509927973151207, -0.004321495071053505, 0.008992909453809261, -0.0017443443648517132, 0.022842688485980034, 0.001307820901274681, 0.00798514299094677, 0.0016341200098395348, 0.01963743381202221, 0.015816321596503258, 0.003395960433408618, -0.01284201443195343, -0.007537247613072395, 0.02397642470896244, 0.007880168035626411, -0.006442002020776272, -0.022730715572834015, 0.008041130378842354, 0.014178703539073467, 0.0233185775578022, -0.045769356191158295, 0.01145633589476347, -0.0042900023981928825, 0.011645291931927204, 0.026803767308592796, 0.0242143701761961, 0.00818109791725874, 0.007866171188652515, -0.05562306568026543, -0.011841246858239174, 0.028777308762073517, 0.02264673449099064, -0.012618065811693668, 0.0011407347628846765, -0.0032752384431660175, -0.008740967139601707, -0.008349059149622917, -0.009125878103077412, 0.00723631726577878, 0.011477331630885601, -0.006361520849168301, -0.011078423820436, -0.631533145904541, -0.007964148186147213, -0.02748960815370083, -0.010840479284524918, -0.012072193436324596, -0.008573006838560104, 0.010056661441922188, 0.008412044495344162, -0.015620367601513863, 0.008503022603690624, -0.015648361295461655, -0.0007746323826722801, -0.0241163931787014, -0.022898675873875618, -0.01822376251220703, -0.012282144278287888, 0.013135945424437523, -0.015564381144940853, 0.01289800088852644, -0.01472457591444254, -0.009230853989720345, 0.010007672943174839, 0.00026921863900497556, 0.020645199343562126, -0.004069553688168526, -0.024830225855112076, 0.015788329765200615, 0.0022359800059348345, 0.01848970167338848, 0.03689542040228844, -0.03171662613749504, 0.006693943403661251, 0.02424236387014389, 0.014178703539073467, 0.054447341710329056, -0.023654500022530556, -0.025320112705230713, 0.01584431529045105, 0.019959358498454094, 0.01688007451593876, -0.02070118673145771, -0.014556615613400936, 0.019497467204928398, 0.004909358453005552, 0.00090891367290169, 0.0025054174475371838, 0.015116484835743904, -0.021023111417889595, 0.011141409166157246, 0.026803767308592796, 0.004150034859776497, 0.00579115329310298, -0.006455998867750168, -0.017090026289224625, 0.00013526542170438915, 0.006994873750954866, 0.03681144118309021, -0.02187691256403923, 0.005133306607604027, 0.004062555264681578, 0.024046408012509346, 0.014192700386047363, 0.0010243868455290794, -0.004783387761563063, -0.00475189508870244, 0.020925134420394897, -0.017453942447900772, 0.008957916870713234, 0.02504017762839794, -0.008216089569032192, -0.004436968360096216, 0.01795782521367073, 0.0021485004108399153, -0.03037293814122677, 0.0183357372879982, 0.016418183222413063, 0.017369961366057396, -0.007887165993452072, -0.0020102825947105885, 0.02252076379954815, 0.014444641768932343, -0.018783632665872574, -0.02751760184764862, -0.01634819805622101, 0.020995117723941803, -0.01728598028421402, 3.359765833010897e-05, 0.0218909103423357, 0.0020137818064540625, 0.010049663484096527, 0.009804720059037209, 0.021554987877607346, 0.017495932057499886, 0.014990514144301414, 0.009580772370100021, 0.016698118299245834, -0.007064857520163059, -0.013660823926329613, 0.018307743594050407, -0.007369286380708218, 0.0008148730266839266, -0.004017065744847059, 0.0006622210494242609, -0.018685655668377876, 0.024564288556575775, -0.0012605818919837475, -0.03969477117061615, 0.016586143523454666, 0.040030691772699356, -0.017649896442890167, -0.0058611370623111725, -0.013660823926329613, -0.03325626626610756, -9.775852231541649e-05, 0.014556615613400936, -0.016600139439105988, 0.011904232203960419, -0.012149174697697163, 0.009671751409769058, -0.014262683689594269, 0.01185524370521307, -0.0010375087149441242, 0.018111789599061012, -0.003250744193792343, 0.019483469426631927, 0.02671978808939457, 0.013086956925690174, -0.015242455527186394, -0.01991736888885498, -0.0027223669458180666, 0.01160330232232809, -0.0062950365245342255, 0.022618740797042847, -0.005185794085264206, 0.019931364804506302, -0.013919763267040253, 0.013506859540939331, 0.011435341089963913, 0.022716717794537544, -0.03090481460094452, -0.0017058533849194646, 0.0036076612304896116, 0.014486631378531456, 0.01329690869897604, -0.00028977636247873306, -0.02123306319117546, -0.020729180425405502, 0.009349825792014599, -0.02750360406935215, 0.0021677459590137005, -0.0210930947214365, -0.011974215507507324, -0.0004566438146866858, 0.00806212518364191, 0.003418705193325877, -0.006844408344477415, -0.012282144278287888, 0.002533410908654332, -0.006571472156792879, -0.031912580132484436, 0.00937082152813673, -0.002199238631874323, -0.022996652871370316, 0.01107142586261034, 0.01651616021990776, -0.01675410382449627, -0.016726110130548477, 0.019063567742705345, -0.003632155479863286, -0.031744617968797684, 0.022618740797042847, -0.010322599671781063, -0.012394118122756481, 0.03930286318063736, -0.045125506818294525, 0.003919088747352362, -0.005913625005632639, -0.02397642470896244, -0.01625022105872631, 0.008538015186786652, -0.012604068964719772, 0.008146106265485287, -0.015354430302977562, 0.0019542956724762917, 0.032668404281139374, -0.006253045983612537, 0.0033049816265702248, -0.007880168035626411, -0.006151569541543722, 0.02005733549594879, -0.0007457641186192632, -0.01133036520332098, 0.01767789013683796, 0.0033049816265702248, 0.01963743381202221, 0.013009974732995033, 0.021806929260492325, 0.026145920157432556, 0.012981981039047241, 0.0074462685734033585, 0.01650216244161129, 0.0034921879414469004, 0.016712114214897156, -0.0010051412973552942, -0.0042970008216798306, -0.015886306762695312, 0.013324901461601257, -0.001896559027954936, 0.034655943512916565, -0.01844771020114422, -0.0036776449996978045, -0.03958279639482498, 0.004359986167401075, -0.002659381600096822, 0.025068171322345734, 0.03650351241230965, 0.027797536924481392, 0.00723631726577878, -0.01120439451187849, 0.009482795372605324, 0.025460079312324524, -0.02436833456158638, 0.0012045949697494507, -0.003138770116493106, -0.020617205649614334, -0.009342827834188938, 0.023808464407920837, 0.02998102828860283, 0.019735410809516907, -0.0007746323826722801, 0.016194233670830727, -0.01911955513060093, -0.001651615952141583, 0.014094722457230091, 0.008419042453169823, -0.00811111368238926, 0.012856010347604752, -0.02372448332607746, 0.037399303168058395, -0.041318394243717194, -0.006361520849168301, 0.004468461032956839, 0.03742729872465134, -0.02292666956782341, -0.015466404147446156, -0.0067604281939566135, 0.011113416403532028, 0.0021554988343268633, 0.005143804010003805, 0.022562753409147263, -0.004405475687235594, -0.0023374564480036497, -0.017761869356036186, -0.010679516941308975, 0.015634365379810333, -0.031632643193006516, -0.00363565469160676, 0.016320206224918365, 0.01584431529045105, 0.03118474967777729, 0.014430644921958447, 8.102803258225322e-05, 0.03171662613749504, 0.014374657534062862, 0.049604468047618866, -0.015424413606524467, 0.0016052518039941788, 0.02068719081580639, -0.02986905537545681, -0.021289050579071045, -0.022954663261771202, -0.0033539701253175735, 0.02004333958029747, 0.011848244816064835, 0.007677215151488781, 0.013583841733634472, 0.003490438451990485, 0.0017845850670710206, 0.009671751409769058, 0.001075125066563487, -0.024466311559081078, -0.02830141969025135, 0.022366799414157867, 0.006476994138211012, 0.002507166936993599, -0.023682493716478348, -0.03160465136170387, 0.00723631726577878, -0.0010602534748613834, 0.02725166268646717, -0.004468461032956839, -0.0036706465762108564, 0.013828784227371216, -0.01231013797223568, -0.008447036147117615, 0.006627459079027176, 0.032276496291160583, -0.031100768595933914, 0.034627947956323624, -0.0020855150651186705, 0.028973262757062912, 0.016152244061231613, -0.022618740797042847, -0.006844408344477415, 0.022100862115621567, -0.004080051556229591, 0.007642223034054041, -0.007313299458473921, 0.019819391891360283, -0.03233248367905617, -0.005301267374306917, -0.02908523753285408, 0.004174529574811459, 0.0038351083640009165, -0.0013541851658374071, 0.006809416692703962, -0.015620367601513863, 0.018111789599061012, 0.02320660464465618, 0.0017933329800143838, -1.7331907656625845e-05, -0.0070473612286150455, -0.010378587059676647, 0.0020155312959104776, 0.09528984129428864, 0.034907884895801544, -0.016138248145580292, 0.0007654470391571522, -0.003912090323865414, 0.021177075803279877, -0.01609625667333603, -0.026033947244286537, 0.027671566233038902, 0.00818109791725874, 0.022366799414157867, -0.008943920023739338, 0.016544153913855553, 0.00012214347952976823, 0.015088492073118687, -0.010588537901639938, 3.2377724892285187e-06, -0.013464869000017643, 0.0037336319219321012, 0.004314496647566557, -0.0007610730244778097, 0.02254875749349594, -0.01040658075362444, 0.014780563302338123, -0.024550290778279305, -0.012478098273277283, 0.006347524002194405, 0.012296141125261784, 0.013849779963493347, -0.007383283227682114, -0.024270357564091682, 0.020071333274245262, 0.015662359073758125, 0.032416462898254395, -0.004272506572306156, -0.0027153685223311186, 0.008740967139601707, -0.014486631378531456, 0.006071088369935751, 0.011162404902279377, 0.022982656955718994, 0.01951146312057972, -0.0016384940827265382, -0.008985910564661026, 0.011743269860744476, -0.004321495071053505, -0.017257986590266228, 0.008566007949411869, -0.029169218614697456, -0.017369961366057396, 0.030876820906996727, -0.014458637684583664, -0.013898768462240696, -0.0002843088877853006, 0.027699559926986694, -0.0026208905037492514, -0.010595536790788174, -0.011043432168662548, -0.01626421883702278, 0.03292034566402435, 0.0009631510474719107, -0.004800883587449789, 0.03012099675834179, 0.0005213787662796676, -0.024424320086836815, -0.012394118122756481, -0.03432001918554306, -0.0013288160553202033, -0.0219888873398304, 0.02828742191195488, -0.020743176341056824, -0.014696583151817322, -0.02594996616244316, 0.02162497118115425, -0.007705208379775286, 0.00020459305960685015, 0.018559684976935387, -0.016152244061231613, 0.018251756206154823, -0.016292212530970573, -0.024396328255534172, -0.036867428570985794, 0.020113322883844376, -0.013765798881649971, -0.02292666956782341, -0.0042830039747059345, -0.00392958614975214, 0.018419716507196426, -0.03927486762404442, 0.011155406013131142, 0.001114490907639265, 0.01757991313934326, 0.008272076956927776, -0.009398814290761948, 0.00838405080139637, -0.0036041620187461376, 0.007572239264845848, -0.023416554555296898, 0.0070473612286150455, -0.0042830039747059345, 0.01356284599751234, -0.026159917935729027, 0.004797384608536959, -0.00739728007465601, 0.012296141125261784, -0.01963743381202221, 0.007705208379775286, 0.020883144810795784, -0.008908928371965885, -0.020673193037509918, 0.0255440603941679, -0.0027468614280223846, -7.129592268029228e-05, -0.0007037738687358797, 0.008006138727068901, 0.004888363182544708, 0.016180237755179405, 0.01342987734824419, 0.012835015542805195, 0.006022099871188402, 0.0031405198387801647, -0.03689542040228844, 0.003418705193325877, 0.003705638460814953, -0.008866938762366772, 0.012037200853228569, 0.0036601489409804344, -0.027209673076868057, 0.02267472818493843, -0.004541943781077862, 0.022814694792032242, -0.0035779180470854044, 0.008684980683028698, -0.0197634045034647, -0.02855336107313633, 0.0019402988255023956, -0.013576842844486237, -0.010637526400387287, -0.02712569199502468, 0.0019140549702569842, -0.0036636481527239084, -0.019357498735189438, -0.022688724100589752, -0.02043524757027626, 0.006263543851673603, -0.03132471814751625, -0.006400011945515871, -0.0038176123052835464, -0.013590839691460133, 0.0027223669458180666, 0.002374198054894805, -0.03194057196378708, -0.013142944313585758, -0.008237084373831749, -0.013268915005028248, -0.03625157102942467, -0.010966449975967407, -0.022590747103095055, 0.035831667482852936, 0.0003302357217762619, 0.037791211158037186, -0.015662359073758125, 0.009979679249227047, 0.017509927973151207, 0.011491328477859497, 0.004370483569800854, 0.020617205649614334, -0.02604794315993786, -0.0382671020925045, -0.011239387094974518, 0.03468393534421921, 0.02449430525302887, 0.0291972104460001, -0.0048533715307712555, -0.0005257527809590101, 0.03919088840484619, -0.004590932745486498, -0.013793792575597763, -0.010959452018141747, -0.04428570345044136, -0.031632643193006516, -0.0028640839736908674, 0.010847478173673153, 0.004492955282330513, -0.021792933344841003, 0.0003212690644431859, 0.04087049514055252, 0.0038980937097221613, -0.003688142402097583, -0.014227692037820816, 0.022982656955718994, -0.010763497091829777, -0.0027136190328747034, 0.006400011945515871, 0.009069890715181828, 0.004664415493607521, 0.017761869356036186, -0.0013235672377049923, 0.008559009991586208, -0.008244083262979984, -0.004902360029518604, 0.004482457879930735, -0.004601430147886276, -0.010294605977833271, -0.015802325680851936, 0.01832173950970173, -0.018391722813248634, -0.02792350761592388, 0.015396419912576675, -0.013436875306069851, -0.014682586304843426, -0.00245817843824625, -0.012324134819209576, -0.04182227700948715, -0.03129672259092331, 0.001061128219589591, -0.011442339047789574, 0.026103930547833443, 0.0020120320841670036, -0.005399244371801615, 6.038146693754243e-06, -0.010203627869486809, 0.03689542040228844, -0.005637189373373985, 0.023920437321066856, 0.016810091212391853, -0.026033947244286537, -1.2308661098359153e-05, -0.0008314941660501063, -0.01927351951599121, -0.015676354989409447, 0.023360569030046463, 0.008412044495344162, -0.007075354922562838, 0.007950151339173317, -0.03737131133675575, 0.0031247735023498535, -0.03482390195131302, -0.026103930547833443, 0.015214462764561176, 0.019987352192401886, -0.0025823996402323246, 0.002365449909120798, -0.004185026977211237, -0.025362102314829826, 0.002757358830422163, -0.014780563302338123, 0.008272076956927776, -0.014934527687728405, -0.011162404902279377, -0.02553006447851658, 0.0035971635952591896, 0.005735166370868683, 0.0255440603941679, 0.029813067987561226, -0.005493722856044769, -0.03619558364152908, -0.013030970469117165, 0.004870867356657982, -0.0023444548714905977, -0.01429067738354206, -0.0028710823971778154, -0.0070543596521019936, -0.0048463731072843075, 0.00042077715625055134, -0.0008896681247279048, -0.009944687597453594, 0.008908928371965885, -0.020855151116847992, 0.02477424032986164, 0.0008651738171465695, 0.006372018251568079, 0.00615856796503067, 0.023906441405415535, 0.03037293814122677, 0.012835015542805195, 0.003912090323865414, 0.014612602069973946, -0.02147100679576397, -0.0037511277478188276, -0.013373889960348606, 0.003870100248605013, 0.01525645237416029, -0.012016206048429012, -0.007222320884466171, -0.006823413539677858, 0.015214462764561176, 0.001021762378513813, 0.019189538434147835, -0.03966677561402321, -0.03734331578016281, 0.011407347396016121, -0.013527854345738888, 0.018265752121806145, -0.004958346951752901, 0.032276496291160583, -0.0033504709135740995, 0.03538377210497856, -0.03286435827612877, 0.015172472223639488, -0.016180237755179405, 0.012156173586845398, -0.04478958621621132, 0.011463334783911705, 0.012786027044057846, -0.018139781430363655, 0.014150709845125675, -0.015102487988770008, -0.027209673076868057, 0.022492770105600357, 0.024130389094352722, -0.009790723212063313, -0.004188525956124067, 0.007404278498142958, -0.027797536924481392, -0.01557837799191475, 0.024200372397899628, -0.021415021270513535, -0.03104478120803833, 0.026747779920697212, 0.03443199396133423, -0.006819914095103741, 0.021974891424179077, -0.01525645237416029, -0.0029865556862205267, 0.010315601713955402, 0.007425273302942514, 0.0010051412973552942, -0.034124065190553665, 0.02357051894068718, -0.023766474798321724, 0.0028483376372605562, 0.009615764021873474, -0.02015531435608864, -0.00425850972533226, -0.018685655668377876, -0.005021332297474146, 0.013835783116519451, -0.001696230610832572, -0.009286840446293354, 0.009657754562795162, 0.006784922443330288, -0.01639018952846527, 0.0014696583384647965, -0.002510666148737073, 0.020869147032499313, -0.0010138892102986574, -0.007495257072150707, -0.0338161364197731, -0.016558149829506874, -0.009020902216434479, 0.031884584575891495, 0.008670983836054802, -0.01414371095597744, 0.00037331946077756584, -0.015690350905060768, -0.022464776411652565, -0.011547314934432507, -0.014255685731768608, 0.009832713752985, 0.03210853412747383, 0.005917123984545469, 0.028749315068125725, 0.009111881256103516, -0.008160103112459183, -0.009062892757356167, -0.0077541968785226345, -0.011568309739232063, 0.0004408974782563746, -0.012758033350110054, 0.010315601713955402, 0.009153871797025204, -0.031128762289881706, -0.0013909265398979187, 0.02159697748720646, -0.0013524355599656701, 0.00831406656652689, 0.012632062658667564, 0.01938549242913723, 0.005259277299046516, -0.013590839691460133, 0.01847570389509201, 0.02998102828860283, 0.016852080821990967, -0.007838177494704723, -0.022898675873875618, -0.008852941915392876, -0.0024739247746765614, 0.0033347245771437883, -0.02134503610432148, -0.026495838537812233, -0.006365019828081131, -0.012380121275782585, 0.005283771548420191, -0.03499186411499977, -0.010525552555918694, -0.02397642470896244, -0.027825530618429184, 0.01714601367712021, -0.003796617267653346, -0.01243610866367817, 0.025628041476011276, -0.0008682355983182788, -0.014311672188341618, 0.0058961291797459126, 0.026551825925707817, -0.020225297659635544, -0.03496386855840683, 0.01872764527797699, -0.034124065190553665, 0.021540991961956024, 0.002368949120864272, -0.005682678893208504, -0.005787654314190149, 0.026873750612139702, -0.014822553843259811, -0.014374657534062862, -0.029253197833895683, 0.02789551392197609, 0.015900302678346634, -0.022562753409147263, -0.005752662196755409, -0.004248012322932482, -0.01714601367712021, 0.0007606356521137059, -0.006221553310751915, -0.01662813313305378, -0.012618065811693668, 0.010588537901639938, -0.0036601489409804344, -0.0031930075492709875, -0.025474077090620995, 0.010203627869486809, 0.010329598560929298, -0.029533132910728455, 0.0183357372879982, 0.20916736125946045, -0.019847385585308075, -0.005392246413975954, 0.03913490101695061, -0.004398477263748646, 0.016278214752674103, 0.028077472001314163, -0.004237514920532703, -0.01583031937479973, -0.004475459456443787, -0.015410416759550571, 0.0016612387262284756, -0.010903464630246162, 5.243312261882238e-05, 0.008013136684894562, 0.01112741231918335, -0.04646919667720795, -0.0027923507150262594, -0.005941618699580431, -0.07636624574661255, 0.011897233314812183, -0.018125785514712334, -0.014192700386047363, -0.007992141880095005, 0.02280069887638092, -0.0004181527765467763, 0.0077541968785226345, -0.023920437321066856, 0.015564381144940853, -0.002850087359547615, -0.02487221732735634, -0.020995117723941803, -0.0022307313047349453, -0.0074602654203772545, -0.006704441271722317, 0.018041804432868958, 0.0058541386388242245, 0.005255777854472399, 0.012471100315451622, -0.02317861095070839, 0.025698024779558182, -0.005546210333704948, -0.009258846752345562, -0.0004614552017301321, -0.018041804432868958, 0.01053954940289259, -0.004940851125866175, -0.013625831343233585, -0.028721321374177933, 0.004520948976278305, -0.026957731693983078, 0.005616194102913141, 0.04280204698443413, 0.026005953550338745, 0.006669449154287577, -0.02201688103377819, -0.00022482272470369935, 0.021303046494722366, -0.01808379590511322, 0.024158382788300514, -0.020127320662140846, 0.022828692570328712, -0.00012881380098406225, 0.025768008083105087, -0.0222548246383667, 0.014570612460374832, -0.006721937097609043, 0.001896559027954936, 0.010532551445066929, -0.019301511347293854, -0.003541176673024893, -0.021289050579071045, -0.014458637684583664, 0.0037511277478188276, -0.011589305475354195, -0.004310997668653727, 0.030848827213048935, -0.020365264266729355, -0.0010567542631179094, 0.000994643778540194, -0.00038644138840027153, -0.023626506328582764, 0.02121906541287899, -0.001028760802000761, -0.001379554276354611, -0.03012099675834179, -0.004835875704884529, -0.01127437874674797, -0.0061200768686831, 0.014626598916947842, -0.020519228652119637, -0.042242176830768585, -0.012870007194578648, 0.003390711499378085, -0.01074950024485588, -0.010553546249866486, 0.027839526534080505, 0.013142944313585758, -0.005056324414908886, -0.007593234535306692, -0.0032629913184791803, -0.0057386658154428005, 0.020603209733963013, 0.00442297151312232, -0.017118019983172417, 0.000285402376903221, 0.02148500457406044, 0.003096780041232705, -3.242214734200388e-05, -0.007390281651169062, 0.030288957059383392, -0.01874164305627346, 0.0038735992275178432, -0.0243823304772377, 0.00723631726577878, 0.021163079887628555, 0.00016347761265933514, -0.023150617256760597, -0.0058891307562589645, 0.020533226430416107, 0.01612425036728382, -0.01421369519084692, -0.006134073715656996, -0.0030407928861677647, 0.0023357069585472345, -0.010105649940669537, 0.0012142176274210215, 0.013219926506280899, 0.0022412289399653673, -0.014962521381676197, 0.018657661974430084, -0.045769356191158295, -0.007348291575908661, 0.006008103024214506, -0.02280069887638092, 0.03090481460094452, -0.001651615952141583, -0.029785074293613434, 0.023220600560307503, -0.001035759225487709, 0.011358358897268772, -0.0022989653516560793, -0.007649221457540989, 0.01609625667333603, 0.002697872696444392, -0.002445931313559413, -0.000633352727163583, -0.022226832807064056, 0.005616194102913141, 0.0015361427795141935, -0.03493587672710419, -0.01651616021990776, 0.009363822638988495, -0.010609532706439495, 0.0014626599149778485, -0.010938456282019615, -0.004776389338076115, -0.02422836609184742, -0.0037651245947927237, 0.028399396687746048, -0.027083702385425568, 0.015424413606524467, 0.017537921667099, -0.010322599671781063, -0.012758033350110054, -0.025879982858896255, -0.18039005994796753, 0.02567003108561039, 0.015396419912576675, -0.02308063395321369, 0.016866078600287437, 0.02187691256403923, 0.017202001065015793, 0.01757991313934326, -0.009671751409769058, -0.017621902748942375, 0.012709044851362705, 0.014374657534062862, -0.029897049069404602, -0.015480400994420052, -0.023640504106879234, 0.004737898241728544, -0.023906441405415535, 0.014710579998791218, 0.032668404281139374, 0.027419624850153923, 0.0021047606132924557, 0.003698640037328005, 0.00707185547798872, -0.0028483376372605562, 0.006963381078094244, -0.0023322077468037605, -0.006956382654607296, 0.027321647852659225, 0.010378587059676647, -0.027475612238049507, -0.021443014964461327, 0.021457010880112648, -0.006116577889770269, -0.018951592966914177, 0.024732248857617378, 0.0030985295306891203, -0.011183399707078934, -0.0035324287600815296, -0.012751035392284393, 0.02096712402999401, -0.0002471300249453634, 0.017327971756458282, 0.023472541943192482, -0.008454034104943275, 0.011435341089963913, 0.03602762147784233, -0.003632155479863286, 0.011120414361357689, 0.006036096718162298, -0.016474168747663498, -0.0008258079760707915, 0.0031265229918062687, 0.020617205649614334, 0.010021669790148735, 0.021932899951934814, 0.02449430525302887, 0.019679423421621323, 0.007215322460979223, -0.006798919290304184, -0.011715276166796684, 0.014822553843259811, -0.00026331376284360886, 0.027825530618429184, -0.011974215507507324, -0.015886306762695312, -0.003632155479863286, -0.0025701525155454874, 0.005871634930372238, -0.01847570389509201, 0.006469995714724064, -0.0032087538857012987, 0.011036434210836887, 0.02828742191195488, -0.019483469426631927, -0.0032192515209317207, 0.006344025023281574, -0.04019865393638611, 0.013275912962853909, 0.0017181005096063018, -0.018013810738921165, -0.04613327234983444, 0.0539434589445591, -0.02450830116868019, -0.003796617267653346, 0.02018330618739128, 0.02593597024679184, -0.012681051157414913, -0.019749408587813377, -0.016558149829506874, -0.0038735992275178432, 0.028385400772094727, -0.006546977907419205, 0.001576383481733501, -0.022870682179927826, 0.012205162085592747, 0.02383645810186863, 0.013359894044697285, -0.013338898308575153, -0.014752569608390331, -0.014458637684583664, 0.001372555852867663, -0.014682586304843426, -0.016446176916360855, 0.03885496407747269, 0.016852080821990967, 0.017775867134332657, -0.00363565469160676, 0.006494489964097738, 0.024676261469721794, 0.009839711710810661, -0.011680284515023232, 0.00015549510135315359, 0.028511371463537216, -0.010581539943814278, 0.026929738000035286, 0.03090481460094452, 0.006428005173802376, -0.008684980683028698, 0.009594769217073917, -0.0033679669722914696, 0.06858405470848083, -0.008125110529363155, -0.00438448041677475, -0.0057456642389297485, -0.031520672142505646, -0.03314429521560669, -0.1135416030883789, -0.0034099570475518703, 0.013205929659307003, 0.021009115502238274, -0.005633689928799868, 0.014108719304203987, -0.013436875306069851, 0.024172378703951836, -0.005234783049672842, -0.009643757715821266, -0.01441664807498455, -0.014052732847630978, -0.0005021332181058824, -0.0005414991173893213, 0.011771262623369694, -0.03303232043981552, -0.01125338301062584, -0.01626421883702278, 0.005770158488303423, 0.04313797131180763, -0.0005712421843782067, -0.020757174119353294, 0.0037231342867016792, -0.031240735203027725, 0.03339623659849167, 0.00017189752543345094, -0.026873750612139702, 0.025250129401683807, 0.02280069887638092, 0.021037109196186066, -0.02529211901128292, -0.008524018339812756, 0.01479456014931202, -0.0010296355467289686, -0.0064455014653503895, -0.016278214752674103, -0.03723134472966194, -0.025991955772042274, 0.023906441405415535, -0.03171662613749504, 0.008482027798891068, -0.01368181873112917, 0.0077471984550356865, -0.01846170797944069, -0.0036706465762108564, -0.006393013522028923, -0.02530611678957939, 0.0161102544516325, 0.018293745815753937, -0.003786119632422924, -0.0048673683777451515, 0.010462567210197449, -0.017132015898823738, -0.023920437321066856, 0.022198839113116264, -0.012709044851362705, 0.02986905537545681, -0.008649989031255245, -0.017607904970645905, -0.0017189752543345094, -0.021806929260492325, 0.019035574048757553, 0.0036496513057500124, 0.021554987877607346, 0.007355289999395609, -0.020645199343562126, -0.01770588383078575, -0.0193994902074337, 0.03703538700938225, 0.011946222744882107, -0.005399244371801615, -0.006081585772335529, -0.029561126604676247, 0.02487221732735634, -0.014514625072479248, 0.012786027044057846, -0.03468393534421921, -0.005871634930372238, 0.006386015098541975, -0.007376284804195166, 0.0007833803538233042, -0.021023111417889595, 0.004066054709255695, -0.008747966028749943, 0.020799163728952408, 0.025460079312324524, 0.02133104018867016, -0.01191123016178608, 0.007656219881027937, -0.024942200630903244, -0.00046889096847735345, 0.02029528096318245, -0.0030880318954586983, -0.012275145389139652, 0.020785167813301086, 0.036335550248622894, 0.000490323465783149, -0.00033307881676591933, -0.008691978640854359, 0.00909788440912962, -0.030568892136216164, 0.005486724432557821, -0.06220153719186783, 0.013898768462240696, 0.006606463808566332, 0.01769188605248928, -0.013821786269545555, -0.016404185444116592, 0.006046594120562077, -0.005570704583078623, -0.02685975469648838, 0.007740200497210026, -0.015018507838249207, 0.021680958569049835, -0.02435433678328991, -0.015956290066242218, -0.030988793820142746, -0.014150709845125675, 0.006337026599794626, -0.014934527687728405, 0.013289909809827805, 0.0057246689684689045, 0.00863599218428135, -0.011925227008759975, 0.012373123317956924, 0.0003295796050224453, -0.028609348461031914, 0.007544246036559343, 0.024270357564091682, 0.02123306319117546, 0.01007765717804432, -0.025376100093126297, 0.007866171188652515, -0.05136805772781372, -0.006735933944582939, -0.00044833324500359595, 0.0005174421821720898, 0.03180060535669327, -0.014822553843259811, -0.01009165309369564, -0.007950151339173317, 0.038043152540922165, -0.00949679221957922, -0.017873844131827354, -0.005119309760630131, -0.01612425036728382, 0.0010497559560462832, 0.036223579198122025, -0.009265845641493797, -0.014374657534062862, 0.009475796483457088, -0.008929924108088017, 0.018797628581523895, 0.028399396687746048, 0.004461462609469891, -0.007162834517657757, 0.0016218728851526976, -0.03552373871207237, 0.019931364804506302, -0.024802234023809433, 0.02267472818493843, -0.03546775504946709, 0.005126308184117079, -0.0018738142680376768, 0.015144478529691696, -0.012233155779540539, 0.026173913851380348, 0.0038316091522574425, -0.0011267380323261023, -0.015438410453498363, -0.014458637684583664, 0.004269007593393326, 0.012303139083087444, 0.00260164518840611, -0.000493822677526623, 0.004349488765001297, -0.0009019153076224029, 0.03247245028614998, -0.01822376251220703, 0.008223088458180428, -0.025712020695209503, 0.015886306762695312, -0.0007733202073723078, -0.024298349395394325, -0.028889283537864685, 0.00035779181052930653, 0.024410324171185493, 0.0075652408413589, -0.010987445712089539, -0.004492955282330513, -0.002207986544817686, -0.00011295810691080987, -0.003457196056842804, -0.003985573071986437, 0.017467938363552094, -0.011421344242990017, 0.009538781829178333, 0.017313973978161812, -0.012142176739871502, -0.0010952453594654799, 0.009818716906011105, 0.02582399547100067, -0.012541083618998528, 0.01210718508809805, 0.0048533715307712555, -0.020141316577792168, -0.016026273369789124, -0.006330028176307678, -0.006851406767964363, -0.024690259248018265, 0.007180330343544483, 0.014066729694604874, 0.00769121153280139, -0.00937082152813673, 0.028595350682735443, 0.017649896442890167, -0.02543208748102188, 0.014360660687088966, 0.0008682355983182788, -0.00897191371768713, -0.012254150584340096, 0.03224850073456764, -0.0028833295218646526, 0.048904627561569214, 0.025642037391662598, 0.014444641768932343, 0.011946222744882107, 0.017859848216176033, 0.013947756960988045, 0.02530611678957939, -0.0008402421372011304, 0.012891002930700779, 0.013436875306069851, 0.0035866659600287676, -0.02711169607937336, -0.011393350549042225, 0.01623622514307499, -0.029253197833895683, -0.005742164794355631, 0.011351360939443111, -0.023626506328582764, 0.02657981961965561, 0.02736363746225834, -0.020743176341056824, -0.012737038545310497, 0.01066552009433508, 0.022814694792032242, 0.0020365265663713217, 0.0058961291797459126, 0.013058963231742382, 0.001821326557546854, 0.018251756206154823, -0.014850546605885029, 0.01354885008186102, -0.019819391891360283, -0.022366799414157867, 0.014185701496899128, -0.01848970167338848, 0.03616759181022644, -0.03040093183517456, -0.005563706159591675, 0.029309185221791267, 0.010462567210197449, 0.021275052800774574, -0.012198164127767086, -0.006386015098541975, -0.010357591323554516, 0.00922385510057211, 0.001230838824994862, 0.00102351198438555, -0.03261241689324379, 0.008943920023739338, 0.021275052800774574, 0.004310997668653727, -0.01703403890132904, 0.011050431057810783, 0.007141839247196913, -0.00266638002358377, -0.00897191371768713, 0.010756499134004116, 0.0017907086294144392, -0.03224850073456764, 0.012023204006254673, -0.021820927038788795, 0.0003247682470828295, -0.0013183184200897813, -0.0050248317420482635, -0.00955277867615223, -0.0005616194102913141, -0.015494396910071373], "fe23a794-14f9-4bb1-a9af-04af7c6af177": [-0.009466404095292091, -0.02017408050596714, -0.014867983758449554, -0.004204638302326202, -0.005616414826363325, 0.03180930018424988, -0.01597285270690918, -0.014608817175030708, -0.006520088296383619, -0.016163816675543785, 0.02460719458758831, 0.012480922043323517, 0.024102501571178436, -0.008013706654310226, 0.0014220067532733083, 0.013892699033021927, 0.03661070391535759, 0.0037715572398155928, 0.03936605527997017, -0.013708554208278656, 7.161185203585774e-05, -0.004143257159739733, -0.003065669210627675, 0.03914780914783478, -0.010393948294222355, 0.02078789658844471, 0.020746976137161255, -0.02339320443570614, -0.0022489530965685844, -0.015522720292210579, -0.014827062375843525, 0.017473291605710983, 0.007993246428668499, -0.018755484372377396, -0.031154563650488853, -0.004064824897795916, -0.010264365002512932, -0.023720571771264076, 0.005329967476427555, 0.00034015628625638783, -0.0012600275222212076, -0.003515800694003701, -0.008818487636744976, 0.006264331750571728, -0.032982371747493744, 0.015263553708791733, 0.00031799072166904807, -0.02369329147040844, -0.02445715107023716, 0.015454518608748913, 0.031754739582538605, -0.0006364076980389655, -0.029135791584849358, 0.0039625223726034164, -0.02329772152006626, 0.003774967510253191, 0.01995583437383175, 0.023188598453998566, -0.02033776417374611, 0.0302543006837368, 0.007549935020506382, -0.0066940030083060265, 0.006206360179930925, 0.0011014584451913834, -0.03543763607740402, -0.01550908014178276, -0.001197793404571712, -0.00019970328139606863, -0.012364978902041912, -0.010175703093409538, 0.03202754631638527, 0.023556888103485107, -0.0031628566794097424, -0.005497062113136053, 0.0259848702698946, -0.03325517848134041, -0.022520221769809723, -0.014035922475159168, -0.00571530731394887, 0.010059759952127934, 9.71342233242467e-05, -0.029790528118610382, 0.010216623544692993, 0.008893509395420551, 0.026244036853313446, -0.010448509827256203, 0.01070085633546114, 0.029845090582966805, -0.023338641971349716, -0.04143938794732094, 0.00727712782099843, 0.0224656593054533, 0.0012992435367777944, 0.02209736965596676, 0.005892632063478231, 0.011948948726058006, -0.019014650955796242, 0.03101816028356552, -0.0009514145785942674, -0.0012983910273760557, -0.0186463613063097, 0.0004722971934825182, -0.021060703322291374, -0.004306941293179989, -0.03079991415143013, -0.004115976393222809, 0.004061414860188961, -0.019355660304427147, 0.0005451877950690687, -0.027471669018268585, -0.022492941468954086, 0.02597123011946678, -0.007283947896212339, -0.050851233303546906, -0.010018838569521904, -0.02651684358716011, 0.019464781507849693, -0.0013844957575201988, -0.03860219568014145, -0.01666850969195366, 0.0014586651232093573, 0.02460719458758831, 0.0014697479782626033, 0.0014893559273332357, 0.010189343243837357, -0.001511521521024406, 0.0009062308818101883, -0.028999388217926025, 0.020201360806822777, 0.009821053594350815, 0.04356728494167328, -0.001272815396077931, 0.0015839858679100871, -0.01145789586007595, -0.016463905572891235, 0.015590921975672245, -0.0322730727493763, -0.0004526891862042248, -0.0181962288916111, -0.020078597590327263, 0.016218379139900208, 0.016927676275372505, -0.0020989091135561466, -0.029463160783052444, 0.007249847054481506, 0.02965412475168705, 0.009227697737514973, -0.005452730692923069, -0.020446887239813805, 0.0037101758643984795, 0.01911013387143612, -0.0068235863000154495, 0.01535903662443161, -0.008395636454224586, 0.014867983758449554, -0.0013725603930652142, 0.020924299955368042, -0.00554139306768775, -0.0013495422899723053, 0.002231902675703168, 0.021606316789984703, 0.01207171194255352, 0.009861974976956844, 0.001688846037723124, 0.0017647205386310816, 0.029708687216043472, 0.005057160742580891, -0.01440421212464571, -0.022574782371520996, -0.008150110021233559, 0.013735834509134293, 0.030445266515016556, -0.04640447720885277, 0.0072225662879645824, -0.02254750207066536, 0.00909129437059164, 0.03620149567723274, 0.02086973935365677, -0.007863663136959076, 0.010237084701657295, -0.040620967745780945, -0.014854343608021736, 0.03636517748236656, 0.026394080370664597, -0.024361668154597282, -0.017527852207422256, -0.006929298862814903, -0.016627589240670204, 0.003038388444110751, -0.0035805923398584127, -0.003481699852272868, 0.011642040684819221, 0.004433114547282457, -0.013012896291911602, -0.6407691836357117, -0.01162157952785492, -0.01811438798904419, -0.01902829110622406, -0.01104186475276947, 0.010619014501571655, 0.011710242368280888, 0.001884073601104319, -0.0032651592046022415, 0.009677830152213573, -0.017691535875201225, 0.00026215051184408367, -0.02392517775297165, -0.027867238968610764, -0.008300154469907284, -0.0025695012882351875, 0.005967653822153807, -0.022056449204683304, -8.146913751261309e-05, -0.016300220042467117, -0.011921667493879795, 0.006844046525657177, -0.012494562193751335, 0.01567276380956173, -0.011778444051742554, -0.015618203207850456, 0.027553511783480644, 0.0016445149667561054, 0.003795427968725562, 0.03838394954800606, -0.023338641971349716, 0.02430710755288601, 0.017514212056994438, 0.009064014069736004, 0.05033290013670921, -0.020419606938958168, -0.021047063171863556, 0.007427171804010868, 0.02590302936732769, 0.006796305533498526, -0.018919168040156364, -0.026653248816728592, 0.017023159191012383, 0.013885878026485443, 0.0011031634639948606, 0.011130527593195438, 0.019983116537332535, -0.013858597725629807, 0.00931636057794094, 0.017514212056994438, -0.005006009247153997, 0.0023461405653506517, -0.02591666951775551, -0.004003443289548159, -0.0021875714883208275, 0.012712808325886726, 0.03980254754424095, -0.015590921975672245, 0.005329967476427555, -0.008109189569950104, 0.015795527026057243, 0.017514212056994438, -0.011185089126229286, 0.0007975343614816666, 0.0034169082064181566, 0.005006009247153997, -0.02115618623793125, 0.019532984122633934, 0.022288335487246513, -0.005497062113136053, -0.0072907679714262486, 0.016927676275372505, 0.006503037642687559, -0.023938817903399467, 0.0224656593054533, 0.0007306113839149475, 0.03191842511296272, -0.0013248191680759192, 0.003822708735242486, 0.038629475980997086, 0.025193730369210243, -0.03033614344894886, -0.030854476615786552, 0.005104901734739542, 0.02376149408519268, -0.016081975772976875, 0.000849964446388185, 0.02820824831724167, 0.005377708934247494, 0.012330878525972366, 0.0063802748918533325, 0.02728070504963398, 0.015372676774859428, 0.016709432005882263, 0.0340735986828804, 0.01455425564199686, -0.019123774021863937, -0.009220877662301064, 0.03292781114578247, -0.011253290809690952, 0.0006624095840379596, -0.01666850969195366, -0.0067519741132855415, -0.01261050533503294, 0.0036692547146230936, -0.0016308745834976435, -0.033828072249889374, 0.00875028595328331, 0.04574974253773689, -0.007311228662729263, 0.008436557836830616, -0.016313860192894936, -0.026857852935791016, -0.010005198419094086, 0.012787830084562302, -0.0183462742716074, 0.010018838569521904, -0.005667566321790218, 0.019683027639985085, -0.009698290377855301, 0.011778444051742554, -0.01260368525981903, 0.010223443619906902, -0.02177000232040882, 0.03186386078596115, 0.027689915150403976, 0.01126693096011877, -0.005694847088307142, -0.01720048487186432, 0.002170521067455411, 0.008225132711231709, 0.00033930374775081873, 0.0245253536850214, -0.008682084269821644, 0.011287391185760498, -0.014431492425501347, 0.02477088011801243, 0.0030469135381281376, 0.01788250170648098, -0.025739343836903572, -0.0034510090481489897, 0.01070085633546114, 0.008484299294650555, 0.020746976137161255, -0.0037101758643984795, -0.029845090582966805, -0.017691535875201225, 0.0045013162307441235, -0.03352798521518707, 0.0017374398885294795, -0.016027413308620453, 0.004102335777133703, 0.005275405943393707, 0.001152609707787633, -0.0003241715021431446, -0.00224554305896163, -0.01711864210665226, 1.5052341950649861e-05, -0.004088695626705885, -0.02086973935365677, 0.004729792010039091, 0.016409343108534813, -0.015536361373960972, 0.01842811517417431, 0.015181711874902248, -0.00971193052828312, -0.021278949454426765, 0.01863272115588188, 0.014104124158620834, -0.038165703415870667, 0.008893509395420551, -0.016000133007764816, -0.005227664951235056, 0.025698423385620117, -0.03142737224698067, 0.0022983993403613567, -0.007590855937451124, -0.001984671223908663, -0.018850967288017273, 0.012180834077298641, -0.012371798977255821, -0.0013171464670449495, -0.008061448112130165, -0.0031560363713651896, 0.03737456351518631, -0.014185965992510319, -0.010871361009776592, -0.007877303287386894, 0.001443319721147418, 0.024388950318098068, -0.011607939377427101, 0.005943783558905125, 0.009616448543965816, 0.007215746212750673, 0.0010878180619329214, -0.00015963474288582802, 0.009500505402684212, 0.0240752212703228, 0.010393948294222355, 0.013244781643152237, 0.016750352457165718, -0.005558443255722523, 0.02324315905570984, 0.009377742186188698, -0.005807379726320505, -0.029326757416129112, 0.009002632461488247, -0.0022677085362374783, 0.042448773980140686, -0.01302653644233942, -0.011873926036059856, -0.03704719617962837, -0.0006325713475234807, 0.00832743477076292, 0.008354716002941132, 0.03049982711672783, 0.01375629473477602, 0.003398152766749263, -0.007815921679139137, 0.025493817403912544, 0.008968531154096127, -0.016873115673661232, 0.011546557769179344, -0.0018994190031662583, -0.01866000145673752, -0.005309507250785828, 0.015086228959262371, 0.029217634350061417, 0.02324315905570984, -0.001918174559250474, 0.011485176160931587, -0.011103246361017227, -0.003747686743736267, 0.007433991879224777, 0.012774189934134483, -0.015113510191440582, 0.01690039597451687, -0.015931930392980576, 0.03800202161073685, -0.046568162739276886, 0.010353026911616325, 0.006339353509247303, 0.03110000304877758, -0.03063623048365116, -0.01402228232473135, -0.004525186959654093, 0.012630966491997242, -0.0024126372300088406, 0.00948004424571991, 0.02430710755288601, -0.00189089379273355, 0.0025439257733523846, -0.012569584883749485, -0.015563641674816608, 0.026244036853313446, -0.02889026515185833, -0.001357214991003275, 0.01941022090613842, 0.018059825524687767, 0.022874871268868446, 0.007174825295805931, 0.009766492061316967, 0.015686405822634697, 0.012787830084562302, 0.04217596724629402, -0.003377692075446248, 0.011069145984947681, 0.01849631778895855, -0.022642984986305237, -0.023884257301688194, -0.03551947697997093, -0.008634342812001705, 0.021674519404768944, 0.0045354170724749565, 0.011444255709648132, 2.657470940903295e-05, 0.0032037775963544846, -0.005466371309012175, 0.010571273043751717, 0.0038806800730526447, -0.014281448908150196, -0.03707447648048401, 0.03186386078596115, 0.010346206836402416, -0.008484299294650555, -0.0167367123067379, -0.018919168040156364, 0.009111755527555943, 0.0016035939333960414, 0.03421000391244888, -0.007911404594779015, 0.0018619080074131489, 0.011792084202170372, -0.014499694108963013, -0.008102369494736195, 0.01605469360947609, 0.02445715107023716, -0.02538469433784485, 0.02605307288467884, -1.89552938536508e-05, 0.019205614924430847, 0.015181711874902248, -0.01666850969195366, 0.002751941094174981, 0.014581535942852497, 0.00515946326777339, -0.005111721809953451, -0.009023092687129974, 0.023652371019124985, -0.029053950682282448, -0.009309540502727032, -0.024034300819039345, -0.00985515397042036, -0.009630088694393635, 0.007631776854395866, 0.006329123396426439, -0.01031892653554678, 0.008463838137686253, 0.02361144870519638, -0.004685461055487394, -0.0011381169315427542, -0.016859475523233414, -0.018469037488102913, 0.009234518744051456, 0.10699491947889328, 0.03429184481501579, -0.014131404459476471, -0.0018516777781769633, -0.0007796313730068505, 0.016559386625885963, -0.014240527525544167, -0.032518599182367325, 0.019369300454854965, 0.00890714954584837, 0.023884257301688194, -0.007283947896212339, 0.019833071157336235, -0.0016180867096409202, -0.0031014750711619854, -0.008913969621062279, -0.008436557836830616, 0.004293300677090883, -0.0019642107654362917, 0.0063188932836055756, -0.0018448575865477324, 0.010966842994093895, 0.0012165488442406058, 0.023870615288615227, -0.027157941833138466, -0.009466404095292091, 0.009118575602769852, 0.00836153607815504, 0.011103246361017227, -0.015522720292210579, -0.02935403771698475, 0.024088861420750618, 0.029135791584849358, 0.029817810282111168, -0.008095549419522285, 0.001106573618017137, 0.011976229026913643, -0.013476667925715446, -0.0006717873620800674, 0.005081031005829573, 0.0017152742948383093, 0.02462083473801613, -0.0025626812130212784, -0.003447599010542035, 0.001409218879416585, 0.0003135149599984288, -0.028672020882368088, -0.007393070962280035, -0.026121273636817932, -0.0008286513620987535, 0.043676406145095825, -0.0009821053827181458, -0.02399337850511074, -0.008995812386274338, 0.01379721611738205, 0.005602774675935507, -0.0034987502731382847, -0.01741872914135456, -0.0034629444126039743, 0.03049982711672783, -0.004204638302326202, -0.006073366850614548, 0.021674519404768944, -0.0030486187897622585, -0.01872820407152176, -0.01672307215631008, -0.039475180208683014, -0.0053606582805514336, -0.01478614192456007, 0.019914913922548294, -0.028944827616214752, -0.009009452536702156, -0.011628400534391403, 0.005906272679567337, 0.005418629851192236, -0.010598553344607353, 0.027389826253056526, -0.0064655267633497715, 0.0020017216447740793, -0.01788250170648098, -0.027635352686047554, -0.03131824731826782, 0.03240947797894478, -0.018168948590755463, -0.01786886155605316, -0.009343640878796577, 0.004828684497624636, 0.018223511055111885, -0.025275573134422302, 0.007556755095720291, -0.001497881137765944, 0.00952096562832594, 0.0019488652469590306, -0.019614826887845993, 0.005786919500678778, -0.006397325079888105, -0.0037374563980847597, -0.014336010441184044, 0.005858531221747398, 0.003652204293757677, 0.014308729209005833, -0.03464649245142937, -0.02071969397366047, -0.0064757573418319225, 0.018673641607165337, -0.021906405687332153, 0.0038397591561079025, 0.018223511055111885, -0.006093827076256275, -0.014295089058578014, 0.019301097840070724, -0.01765061542391777, 0.0012762254336848855, -0.003952291794121265, 0.005214024800807238, 0.00408528558909893, 0.011178268119692802, 0.014772500842809677, 0.009241338819265366, 0.0091731371358037, 0.0010596849024295807, -0.03401903808116913, 0.004699101205915213, 0.004098925739526749, -0.018387194722890854, 0.01604105345904827, 0.016832195222377777, -0.02415706403553486, 0.03134552761912346, -0.004896886181086302, 0.02399337850511074, 0.00893443077802658, 0.01376311480998993, -0.009227697737514973, -0.025862107053399086, 0.005537983030080795, -0.011567018926143646, -0.017691535875201225, -0.023338641971349716, 0.008484299294650555, -0.00871618464589119, -0.004675230477005243, -0.018209870904684067, -0.019532984122633934, 0.0004970203153789043, -0.029026668518781662, -0.008736645802855492, -0.006905428133904934, -0.0007838939782232046, -0.0071952855214476585, 0.0014825357357040048, -0.038629475980997086, -0.024648116901516914, -0.012098992243409157, -0.010230263695120811, -0.028290091082453728, -0.0015490325167775154, -0.01658666878938675, 0.03330973908305168, 0.005964243784546852, 0.04056640714406967, -0.016941316425800323, 0.0029241505544632673, 0.018441755324602127, 0.016259299591183662, 0.0006325713475234807, 0.0020255923736840487, -0.028262808918952942, -0.04438570514321327, -0.014445132575929165, 0.02032412402331829, 0.02354324795305729, 0.04034816101193428, -0.011451075784862041, -0.006861097179353237, 0.041930440813302994, -0.008293334394693375, -0.005745998118072748, -0.025330133736133575, -0.0458315834403038, -0.036337897181510925, 0.004818454384803772, 0.007624956779181957, -0.0017937063239514828, -0.015413598157465458, 0.000945446896366775, 0.02872658148407936, 0.0006790337502025068, -0.005367478355765343, -0.014540615491569042, 0.02071969397366047, -0.026653248816728592, 0.012999255210161209, 0.0024126372300088406, 0.019396580755710602, -0.005913092754781246, 0.016218379139900208, -0.005139002576470375, 0.003928421530872583, 0.0032157129608094692, 0.0016376947751268744, 0.003911370877176523, -0.006451886612921953, -0.013729014433920383, -0.01741872914135456, -4.4890610297443345e-05, -0.019833071157336235, -0.03268228471279144, 0.01904193125665188, -0.018919168040156364, -0.013197040185332298, 0.00042135900002904236, -0.015072588808834553, -0.03628333657979965, -0.021197106689214706, 0.001402398687787354, -0.0026990845799446106, 0.026694169268012047, -0.003043503500521183, -0.011635220609605312, 0.014431492425501347, -0.019014650955796242, 0.040921054780483246, 0.0011551673524081707, 0.023338641971349716, 0.019001010805368423, -0.02666688896715641, -0.0005720422486774623, -0.015222633257508278, -0.012637786567211151, -0.02163359895348549, 0.02017408050596714, 0.019778510555624962, -0.013135659508407116, 0.012746908701956272, -0.0240752212703228, 0.014035922475159168, -0.040839213877916336, -0.024552633985877037, 0.0005541393184103072, 0.002552450867369771, -0.011212369427084923, 0.0013529524439945817, -0.0036419739481061697, -0.04223053157329559, 0.013149299658834934, -0.006363224238157272, 0.02131986990571022, -0.01398136094212532, -0.011580659076571465, -0.02635315991938114, 0.009370922110974789, 0.012678707018494606, 0.03150921314954758, 0.03191842511296272, -0.00024808390298858285, -0.03186386078596115, -0.015427238307893276, -0.008027346804738045, -0.01705043949186802, -0.008259233087301254, 0.024129783734679222, -0.013851777650415897, 0.002995762275531888, 0.003986393101513386, -0.004170537460595369, -0.013156119734048843, -0.003948881756514311, -0.025943949818611145, 0.029681406915187836, 0.0053606582805514336, 0.008954891003668308, 0.0028286681044846773, 0.028262808918952942, 0.02033776417374611, 0.00029859584174118936, 0.0031441012397408485, -6.708282307954505e-05, -0.024034300819039345, -0.005411809775978327, -0.006066546775400639, 0.008109189569950104, -0.004170537460595369, -0.013551689684391022, -0.0210061427205801, -0.01104868482798338, -0.0012608800316229463, 0.0048218644224107265, 0.01337436493486166, -0.04285798594355583, -0.030990879982709885, 0.02751258946955204, -0.006844046525657177, 0.011007764376699924, -0.01279465015977621, 0.01627293974161148, -0.01643662340939045, 0.029517721384763718, -0.028344651684165, 0.034346405416727066, -0.008770746178925037, 0.02271118573844433, -0.04471307247877121, 0.0014041037065908313, 0.010898641310632229, -0.01357214991003275, 0.018073465675115585, -0.0009104934870265424, -0.010107500478625298, 0.011321492493152618, 0.014008641242980957, 0.0031014750711619854, 0.003132165875285864, 0.009336820803582668, -0.00029667766648344696, -0.006257511675357819, 0.01710500195622444, -0.019205614924430847, -0.03857491537928581, 0.013490308076143265, 0.025698423385620117, 0.00359082268550992, 0.014267807826399803, -0.012112632393836975, 0.019082851707935333, 0.009923356585204601, 0.005087851546704769, 0.003931831568479538, -0.03532851114869118, 0.021524475887417793, -0.022179212421178818, 0.003925011493265629, 0.013667632825672626, -0.02125166915357113, -0.010762237943708897, -0.021742722019553185, -0.004634309560060501, 0.001057127257809043, -0.0013239666586741805, -0.006578059867024422, 0.010441689752042294, 0.008613882586359978, -0.023202238604426384, -0.005381118971854448, -0.011771623976528645, 0.006046086084097624, -0.010052939876914024, -0.013142479583621025, -0.03180930018424988, -0.011955768801271915, -0.006066546775400639, 0.03933877497911453, 0.009527785703539848, -0.007454452570527792, -0.0018329223385080695, -0.004876425955444574, -0.027239782735705376, -0.014131404459476471, -0.01322432141751051, 0.019287457689642906, 0.04323991760611534, 0.0005788624403066933, 0.009391382336616516, 0.012869671918451786, -0.013926799409091473, 0.005466371309012175, 0.001197793404571712, -0.013449386693537235, -0.0033077853731811047, -0.016859475523233414, 0.010107500478625298, 0.02153811603784561, -0.022888511419296265, -0.012849211692810059, 0.014267807826399803, -0.005207204259932041, 0.016491185873746872, 0.011710242368280888, 0.007345329504460096, 0.01047579012811184, -0.01565912365913391, 0.01947842352092266, 0.01338118501007557, 0.0069429390132427216, -0.008688904345035553, -0.012167193926870823, -0.00349534023553133, -0.006168849300593138, -0.005057160742580891, -0.019001010805368423, -0.02153811603784561, 0.00603585597127676, 0.0026598686818033457, -0.0023938817903399467, -0.028180968016386032, -0.012733268551528454, -0.016463905572891235, -0.030145177617669106, 0.039857108145952225, -0.014226887375116348, -0.013510768301784992, 0.027458028867840767, 0.00339133245870471, -0.022424738854169846, -0.005503882188349962, 0.025330133736133575, -0.0030162229668349028, -0.04067552834749222, 0.016218379139900208, -0.03614693135023117, 0.009295900352299213, -0.015931930392980576, 0.007454452570527792, -0.006670132279396057, 0.027089739218354225, -0.02070605382323265, -0.016081975772976875, -0.019833071157336235, 0.04143938794732094, 0.01589100994169712, -0.014758860692381859, -0.013995001092553139, -0.01180572435259819, -0.017896141856908798, 0.009589167311787605, -0.010748597793281078, -0.00476048281416297, -0.019014650955796242, 0.011205549351871014, -0.008675264194607735, 0.006046086084097624, -0.009418663568794727, -0.00104519200976938, 0.00894125085324049, -0.02062421292066574, 0.010653114877641201, 0.213880717754364, -0.01284239161759615, 0.0012856031535193324, 0.04468579217791557, -0.0038499892689287663, 0.002438212977722287, 0.028535615652799606, -0.009684650227427483, -0.01972394995391369, -0.012583225034177303, -0.018168948590755463, 0.00928907934576273, -0.015249913558363914, 0.004600208718329668, 0.010966842994093895, 0.009602807462215424, -0.04323991760611534, -0.005967653822153807, -0.005227664951235056, -0.0689656212925911, -0.008088728412985802, -0.018373554572463036, -0.016000133007764816, -0.00687814736738801, 0.021606316789984703, 0.00817739125341177, -0.0006658196798525751, -0.02367965131998062, 0.006871327292174101, 0.00014247774379327893, -0.023938817903399467, -0.010182523168623447, -0.014240527525544167, 0.00418076803907752, -0.005851711146533489, 0.0029974672943353653, 0.007584035862237215, -0.0015490325167775154, 0.013040176592767239, -0.017623335123062134, 0.02462083473801613, 0.005851711146533489, -0.00993017666041851, 0.007870483212172985, -0.009780132211744785, 0.024975484237074852, -0.00209038401953876, -0.018291711807250977, -0.017364168539643288, 0.01436329074203968, -0.029244914650917053, 0.002040937775745988, 0.03322789818048477, 0.015768246725201607, -0.010748597793281078, -0.022356536239385605, 0.0019625057466328144, 0.021510835736989975, -0.021565396338701248, 0.005251535680145025, -0.025630220770835876, 0.026926055550575256, 0.006605340633541346, 0.02973596751689911, -0.027471669018268585, 0.014226887375116348, -0.0056130047887563705, -0.00019938359037041664, 0.009439123794436455, -0.008968531154096127, -0.008429737761616707, -0.017991624772548676, -0.002381946425884962, 0.005783509463071823, -0.007959145121276379, -0.011028224602341652, 0.015836449339985847, -0.014881623908877373, -0.0025064146611839533, 0.0015848383773118258, -0.0012830456253141165, -0.00563687551766634, 0.010202983394265175, -0.0030128126963973045, -0.0028030923567712307, -0.02307947538793087, -0.003747686743736267, -0.011451075784862041, -0.024416230618953705, 0.012283137068152428, -0.012971974909305573, -0.013347084634006023, -0.012085352092981339, -0.006206360179930925, -0.0001577165676280856, -0.008457018062472343, 0.020215000957250595, 2.890582436521072e-05, 0.003120230510830879, -0.0024552633985877037, -0.005977884400635958, -0.0023972918279469013, 0.04233965277671814, 0.00931636057794094, -0.014254167675971985, -0.0004100630758330226, 0.0186463613063097, 0.00836153607815504, 0.005019649397581816, -0.006854277104139328, 0.026994256302714348, -0.018550878390669823, -0.0009786952286958694, -0.0322730727493763, -0.004750252701342106, 0.01658666878938675, -0.02522101067006588, -0.023284081369638443, 0.004603618755936623, 0.02528921328485012, 0.025111887603998184, -0.02812640555202961, -0.009077654220163822, 0.0029940572567284107, -0.007079342845827341, -0.0058312504552304745, -0.008763926103711128, 0.012214935384690762, 0.004375142976641655, -0.014663378708064556, 0.012494562193751335, -0.034428250044584274, -0.0021824564319103956, -0.01150563731789589, -0.014690659008920193, 0.025166450068354607, 0.006254101637750864, -0.035028424113988876, 0.0021398302633315325, 0.00012180407793493941, 0.0048832460306584835, 0.0007915666792541742, 0.002040937775745988, 0.021210746839642525, 0.003242993727326393, -0.008675264194607735, 0.008266053162515163, -0.01555000152438879, 0.006257511675357819, -0.02329772152006626, -0.02467539720237255, -0.017214125022292137, -0.0008614734979346395, -0.01012114156037569, -0.006861097179353237, -0.005244715604931116, -0.003242993727326393, -0.029981493949890137, 0.005149232689291239, 0.02859017811715603, -0.02299763448536396, 0.018128028139472008, 0.014049562625586987, -0.0001620857510715723, -0.008000066503882408, -0.0198057908564806, -0.1747056245803833, 0.01337436493486166, 0.01733688823878765, -0.007052062079310417, 0.02314767800271511, 0.01718684285879135, 0.017064079642295837, 0.008682084269821644, 0.0005460403626784682, -0.020460527390241623, 0.017227765172719955, 0.008593421429395676, -0.032436758279800415, -0.01142379455268383, -0.012160373851656914, 0.006363224238157272, -0.008879869244992733, 0.021442633122205734, 0.03581956401467323, 0.018305351957678795, 0.0016462199855595827, -0.01866000145673752, 0.006929298862814903, -0.020978862419724464, 0.010571273043751717, -0.010844079777598381, -0.00082396250218153, 0.02384333498775959, 0.0024944792967289686, -0.01886460743844509, -0.011410154402256012, 0.019287457689642906, 0.00496849836781621, -0.006629210896790028, 0.02636680006980896, 0.005561853758990765, -0.0013086212566122413, 0.0071611846797168255, -0.012201295234262943, 0.02307947538793087, 0.005217434838414192, 0.014963466674089432, 0.019532984122633934, -0.00746809272095561, 0.009493685327470303, 0.04967816174030304, -0.012937873601913452, -0.003907960839569569, 0.007624956779181957, -0.011335132643580437, 0.0021671110298484564, -0.003631743835285306, 0.0057357680052518845, 0.004603618755936623, 0.04277614504098892, 0.014008641242980957, 0.019437501206994057, 0.006479167379438877, -0.0030332733877003193, -0.004705921281129122, 0.006905428133904934, 0.0006231935694813728, 0.03772921487689018, -0.01924653723835945, -0.011157807894051075, -0.003863629652187228, -0.011901207268238068, 0.012201295234262943, -0.02231561578810215, 0.01811438798904419, -0.001931814826093614, 0.011573839001357555, 0.02590302936732769, -0.004436524584889412, 0.011908027343451977, -0.006312072742730379, -0.03079991415143013, 0.013087918050587177, -0.009275439195334911, -0.01741872914135456, -0.042748864740133286, 0.04534053057432175, -0.006373454350978136, -0.02314767800271511, 0.020815176889300346, 0.031045440584421158, -0.005340198054909706, -0.01575460657477379, -0.017527852207422256, -0.006042676046490669, 0.025398336350917816, 0.0009283964755013585, -0.006983860395848751, -0.019751230254769325, 0.009732390753924847, 0.013497128151357174, 0.012289957143366337, -0.018673641607165337, -0.010748597793281078, -0.013558509759604931, -0.0005140707944519818, -0.01942386105656624, -0.009773312136530876, 0.04318535327911377, 0.024702677503228188, 0.014963466674089432, 0.0023307951632887125, -0.0017988213803619146, 0.015018027275800705, 0.008920790627598763, -0.0020631032530218363, 0.011451075784862041, 0.021838203072547913, -0.002770696533843875, 0.033746231347322464, 0.03677438944578171, 0.00031394121469929814, -0.010809979401528835, 0.01497710682451725, -0.006809945683926344, 0.057344041764736176, -0.000965907413046807, -0.005933552980422974, 0.013428926467895508, -0.015618203207850456, -0.022274695336818695, -0.11763439327478409, 0.0003719127271324396, 0.00836153607815504, 0.0020238873548805714, -0.0028508335817605257, 0.005357248242944479, -0.008306974545121193, 0.02575298398733139, 0.0032941449899226427, -0.0060563161969184875, -0.016177456825971603, -0.022220132872462273, 0.007188465446233749, -0.006468936800956726, 0.011901207268238068, -0.028944827616214752, 0.000673918635584414, -0.013544869609177113, 0.010298465378582478, 0.039175089448690414, 0.0002079088008031249, -0.016300220042467117, 0.00034314009826630354, -0.03486473858356476, 0.024702677503228188, -0.0036487942561507225, -0.031209126114845276, 0.01260368525981903, 0.024729957804083824, 0.02422526478767395, -0.028071844950318336, -0.0057084872387349606, 0.007863663136959076, -0.0034902251791208982, -0.006230230908840895, -0.018291711807250977, -0.038247548043727875, -0.005848301108926535, 0.02635315991938114, -0.04034816101193428, -0.006155208684504032, -0.0198057908564806, 0.029926933348178864, -0.019764870405197144, 0.0036828950978815556, -0.013306163251399994, -0.01780065894126892, 0.01535903662443161, 0.0070043206214904785, -0.017746098339557648, -0.022574782371520996, 0.015236273407936096, -0.02001039683818817, -0.012658246792852879, 0.034046318382024765, -0.009814233519136906, 0.02110162377357483, -0.011710242368280888, -0.026394080370664597, 0.005776688922196627, -0.03470105677843094, 0.013906339183449745, -0.004920756909996271, 0.032136671245098114, 0.009350460954010487, -0.009834693744778633, -0.0053265574388206005, -0.011178268119692802, 0.03483745828270912, 0.010734956711530685, -0.017555132508277893, 0.006100647617131472, -0.028235528618097305, 0.021060703322291374, -0.013442566618323326, 0.018823685124516487, -0.03546491637825966, -0.006636031437665224, 0.022056449204683304, -0.0024330976884812117, -0.008566141128540039, -0.017541492357850075, 0.012160373851656914, -0.010728136636316776, 0.03249131888151169, 0.0016010362887755036, 0.014513334259390831, -0.010919101536273956, 0.003515800694003701, -0.00890032947063446, 0.003127050818875432, 0.012890133075416088, -0.0036453839857131243, -0.021647239103913307, 0.015290834940969944, 0.0366925485432148, 0.014881623908877373, -0.002496184315532446, -0.00622682087123394, 0.0028150277212262154, -0.028535615652799606, -0.0009232813026756048, -0.056580182164907455, 0.020815176889300346, 0.006445066537708044, 0.015290834940969944, -0.010141601786017418, -0.012726448476314545, 0.01942386105656624, -0.0067622046917676926, -0.02842649444937706, 0.008402456529438496, -0.01184664573520422, 0.02077425643801689, -0.023870615288615227, -0.010775878094136715, -0.027157941833138466, -0.019001010805368423, 0.02108798362314701, -0.02681693248450756, 0.006434835959225893, -0.0004328680515754968, 0.013210681267082691, -0.004214868880808353, 0.014390571042895317, -0.004971908405423164, -0.029981493949890137, 0.009725570678710938, 0.017555132508277893, 0.031372811645269394, -0.0003972752601839602, -0.02307947538793087, 0.008013706654310226, -0.04989640787243843, 0.00032161391573026776, -0.0072566671296954155, 0.0032446987461298704, 0.022288335487246513, -0.026939695701003075, -0.005783509463071823, -0.005882401950657368, 0.03928421437740326, -0.008272873237729073, -0.00931636057794094, -0.011089606210589409, -0.024402590468525887, 0.019614826887845993, 0.028262808918952942, -0.015768246725201607, -0.0019693258218467236, 0.012665066868066788, -0.020515089854598045, 0.011948948726058006, 0.021892765536904335, 0.0016470724949613214, -0.01971030794084072, 0.004150077234953642, -0.029408598318696022, 0.028453774750232697, -0.013347084634006023, 0.01720048487186432, -0.03835666924715042, 0.017923422157764435, -0.005152643192559481, 0.0054834214970469475, -0.004907116759568453, 0.021892765536904335, -0.006458706688135862, 0.0019625057466328144, -0.008122829720377922, -0.013442566618323326, -0.008000066503882408, 0.001952275400981307, 0.006786074955016375, -0.004948037676513195, 0.00359082268550992, 0.013476667925715446, 0.00913221575319767, -0.0024126372300088406, 0.011178268119692802, -0.031672898679971695, 0.006959989666938782, -0.01218765415251255, -0.01979215070605278, -0.03208210691809654, 0.004225098993629217, 0.018755484372377396, 0.006458706688135862, -0.015140790492296219, 0.002579731633886695, -0.010980483144521713, 0.007931864820420742, 0.010837259702384472, -0.008566141128540039, 0.010305286385118961, -0.00525494571775198, 0.012371798977255821, 0.03126368671655655, -0.014472413808107376, -0.0003388774930499494, 0.008259233087301254, 0.03532851114869118, -0.009766492061316967, 0.013729014433920383, 0.0051969741471111774, -0.02850833535194397, -0.008163751102983952, -0.0015166366938501596, 0.002211441984400153, -0.017132282257080078, -0.0023870617151260376, 0.026175836101174355, 0.015631843358278275, 0.0020102469716221094, 0.025712063536047935, 0.023338641971349716, -0.0190964937210083, -0.0017851811135187745, 0.005353838205337524, -0.021797282621264458, -0.00928907934576273, 0.03371895104646683, 0.012746908701956272, 0.038629475980997086, 0.010359846986830235, 0.0004377700388431549, 0.020351406186819077, 0.018141668289899826, 0.01589100994169712, 0.028235528618097305, 0.009411842562258244, 0.0101279616355896, 0.008231952786445618, 0.0022080319467931986, -0.04776851460337639, -0.007870483212172985, 0.009977917186915874, -0.025875747203826904, -0.014008641242980957, 0.021647239103913307, -0.028699301183223724, 0.027608072385191917, 0.022029168903827667, -0.012596865184605122, -5.3708885388914496e-05, 0.00592332286760211, 0.013251601718366146, 0.01164886076003313, 0.0015993312699720263, 0.010155241936445236, -0.008245592936873436, 0.011205549351871014, -0.01818258874118328, 0.021197106689214706, -0.027839958667755127, -0.0070657022297382355, 0.017555132508277893, -0.013967720791697502, 0.04531325027346611, -0.03134552761912346, -0.011819365434348583, 0.030527107417583466, 0.021579036489129066, 0.01904193125665188, 0.0018550879321992397, -0.008436557836830616, -0.00262747285887599, 0.015631843358278275, 0.008763926103711128, 0.003584002610296011, -0.029053950682282448, 0.006202950142323971, 0.008463838137686253, 0.008975351229310036, -0.01979215070605278, 0.004525186959654093, 0.012139913626015186, 0.0008282251073978841, -0.003138985950499773, 0.027689915150403976, 5.38687345397193e-05, -0.026407722383737564, 0.014799782074987888, -0.00909129437059164, -0.007474912796169519, -0.0058312504552304745, 0.0025200550444424152, -0.01962846703827381, -0.003727226285263896, -0.018509957939386368], "7f149944-d172-468e-a92a-f912b0b26588": [0.004827986937016249, -0.023258717730641365, -0.023449251428246498, 0.0056411572732031345, -0.020754560828208923, 0.03247237950563431, -0.009649169631302357, -0.012146521359682083, 0.005079763475805521, -0.0225918497890234, 0.033914994448423386, 0.013595937751233578, 0.020781779661774635, 0.007818684913218021, 0.006444120779633522, 0.020373493432998657, 0.031574148684740067, -0.005753436125814915, 0.03805229440331459, -0.009771655313670635, -0.002650459297001362, -0.005365564022213221, 0.007335545960813761, 0.0323362834751606, -0.0042563858442008495, 0.014888845384120941, 0.015201864764094353, -0.010969295166432858, 0.0037358207628130913, -0.007321936544030905, -0.026579447090625763, 0.0036439562682062387, 0.009424611926078796, -0.019162243232131004, -0.030839234590530396, -0.007206255570054054, 0.0020550417248159647, -0.032009657472372055, 0.015664588660001755, -0.008499162271618843, -0.0037188089918345213, -0.00998260360211134, -0.020523197948932648, 0.0016807791544124484, -0.025395415723323822, 0.023952804505825043, 0.0020193166565150023, -0.026320865377783775, -0.02261906862258911, 0.016140922904014587, 0.023394811898469925, 0.00381067325361073, -0.026933293789625168, 0.00947224535048008, -0.018481764942407608, 0.006906845606863499, 0.005988201126456261, 0.01882200501859188, -0.013766057789325714, 0.023803098127245903, 0.002902236068621278, 0.001212100381962955, 0.006825188174843788, 0.009179639630019665, -0.04390440136194229, -0.01524269301444292, -0.0035180679988116026, -0.014126710593700409, -0.015147426165640354, -0.011799477972090244, 0.04727957025170326, 0.0260895024985075, 0.003837892320007086, 0.0033326379489153624, 0.024837424978613853, -0.03130196034908295, -0.018903661519289017, -0.013657180592417717, -0.023680612444877625, 0.007097379304468632, -0.0021230895072221756, -0.036255836486816406, -0.009873726405203342, 0.010526984930038452, 0.027790695428848267, -0.009785264730453491, 0.017270516604185104, 0.020945094525814056, -0.021979419514536858, -0.03282622992992401, 0.013174042105674744, 0.028770582750439644, 0.008199752308428288, 0.017120810225605965, 0.002888626419007778, 0.005552695598453283, -0.024293042719364166, 0.022972917184233665, -0.0020040059462189674, -0.013711619190871716, -0.007743832655251026, -0.008172533474862576, -0.009342954494059086, -0.0018168746028095484, -0.03473156690597534, 0.005562902428209782, -0.012132911942899227, -0.023952804505825043, 0.013915762305259705, -0.021829714998602867, -0.010697104036808014, 0.03029485233128071, -0.019774673506617546, -0.050954144448041916, -0.02524571120738983, -0.027409628033638, 0.027069389820098877, -0.011010124348104, -0.033180076628923416, -0.025422634556889534, -0.006678885314613581, 0.015392398461699486, -0.00308086141012609, -0.013140018098056316, 0.003565701423212886, -0.016644475981593132, 0.014140320010483265, -0.027219094336032867, 0.01355510950088501, -0.004239374306052923, 0.025422634556889534, 0.01472553052008152, 0.007723418064415455, -0.006655068602412939, -0.011928768828511238, 0.006576813757419586, -0.02858004905283451, -0.0007723418530076742, -0.027055781334638596, -0.02520488202571869, 0.01793738454580307, 0.016154533252120018, -0.008608038537204266, -0.021081188693642616, -0.007165426854044199, 0.020604854449629784, 0.01921668089926243, 0.007036135997623205, -0.024959910660982132, 0.002885224064812064, 0.036827437579631805, -0.01747465878725052, 0.014521387405693531, -0.0035452870652079582, 0.007389984559267759, -0.006209356244653463, 0.013480257242918015, -0.013208066113293171, -0.00627400167286396, -0.010526984930038452, 0.02887945994734764, 0.01751548796892166, 0.00815892405807972, 0.007485251408070326, 0.013738838024437428, 0.02363978512585163, 0.01312640868127346, 0.002691288013011217, -0.028307858854532242, -0.015120207332074642, -0.0016654684441164136, 0.011452434584498405, -0.04009372740983963, 0.005688790697604418, -0.016984716057777405, 0.011881135404109955, 0.042489007115364075, 0.02640252187848091, -0.012486759573221207, -0.000920345657505095, -0.05136243253946304, -0.009513073600828648, 0.030430948361754417, 0.020019644871354103, -0.02286403998732567, -0.012786169536411762, -0.007859514094889164, -0.002504156669601798, -0.006287611089646816, 0.0027865548618137836, 0.009485854767262936, 0.018604252487421036, -0.014902454800903797, -0.009778459556400776, -0.6310474872589111, -0.006294415798038244, -0.015229083597660065, -0.017842117697000504, -0.012636465020477772, -0.000303450389765203, 0.01573263667523861, 0.013208066113293171, -0.014997721649706364, 0.021543914452195168, -0.01501133106648922, -0.000988393439911306, -0.0034415144473314285, -0.014480558224022388, -0.009016325697302818, -0.010962490923702717, 0.009152420796453953, -0.031165864318609238, 0.014834406785666943, -0.0107243238016963, -0.005770448129624128, 0.013793276622891426, 0.014684702269732952, 0.014888845384120941, -0.020672902464866638, -0.011472848244011402, 0.02086343616247177, 0.0005307723768055439, -0.0008897241787053645, 0.037698447704315186, -0.04042035713791847, 0.025272930040955544, 0.0035214703530073166, 0.013453037478029728, 0.04853164777159691, -0.005586719140410423, -0.026320865377783775, 0.017583535984158516, 0.01820957474410534, 0.004678281955420971, -0.015814295038580894, -0.0233403742313385, 0.00776424678042531, 0.009152420796453953, 0.005977993831038475, 0.006107284687459469, 0.02346285991370678, -0.006120894104242325, 0.00381067325361073, 0.015474055893719196, 0.010397694073617458, -0.0003232267627026886, -0.024129727855324745, -0.018005430698394775, 0.0035418847110122442, 0.017855726182460785, 0.03886886686086655, -0.012929069809615612, 0.002871614648029208, -0.00264025223441422, 0.024170557036995888, 0.030267633497714996, -0.0016578129725530744, 0.0004350802337285131, -0.00852638203650713, 0.00924768764525652, -0.018726738169789314, 0.013085580430924892, 0.026211988180875778, -0.016549209132790565, 0.013881738297641277, 0.028770582750439644, 0.003800466191023588, -0.009166030213236809, 0.03595642372965813, 0.004042035434395075, 0.024116117507219315, -0.009213663637638092, 0.004120290745049715, 0.03701797127723694, 0.023585345596075058, -0.02187054231762886, -0.0393315926194191, -0.021748056635260582, 0.01732495427131653, -0.01893088035285473, -0.0020652487874031067, 0.03249960020184517, -0.013371380977332592, 0.012330249883234501, 0.0017275619320571423, 0.016236189752817154, 0.014466948807239532, 0.00801602378487587, 0.02945106104016304, 0.0067945667542517185, -0.009159225970506668, 0.007213060278445482, 0.025340978056192398, -0.00867608655244112, 0.0022727944888174534, -0.0285528302192688, 0.007213060278445482, -0.011432019993662834, 0.0002539031265769154, -0.011404801160097122, -0.02814454399049282, -0.005767046008259058, 0.04474819079041481, -0.010282013565301895, 0.0047803535126149654, -0.0158823411911726, -0.01747465878725052, -0.012058058753609657, 0.019624967128038406, -0.02012852020561695, 0.014371681958436966, 0.00046740288962610066, 0.026933293789625168, -0.0070701600052416325, 0.01867229864001274, -0.010302427224814892, -7.708532939432189e-05, -0.01384091004729271, 0.028226202353835106, 0.04771507531404495, 0.031410835683345795, -0.01678057201206684, -0.007396789267659187, -0.005637755151838064, 0.007811880204826593, -0.006069858092814684, 0.02214273437857628, 0.010370475240051746, 0.006345451343804598, -0.001615283195860684, 0.03282622992992401, -0.005130799487233162, 0.02917887084186077, -0.03045816719532013, -0.015433226712048054, 0.009077568538486958, 0.0035146656446158886, 0.00035129644675180316, 0.012371079064905643, -0.026048673316836357, -0.003919549752026796, 0.0013090684078633785, -0.03886886686086655, -0.0023765673395246267, -0.012690902687609196, -0.007165426854044199, 0.0011789270211011171, 0.0006502812029793859, 0.003225462744012475, -0.0007017423049546778, -0.013017532415688038, 0.0072674984112381935, 0.006627849768847227, -0.01335096638649702, 0.009485854767262936, 0.023939194157719612, -0.01516103558242321, 0.015719028189778328, 0.02724631503224373, -0.016508381813764572, -0.008206557482481003, 0.012377883307635784, 0.004776951391249895, -0.034622687846422195, 0.009649169631302357, -0.014779969118535519, -0.007832294330000877, 0.04150912165641785, -0.010139113292098045, -0.0059031411074101925, -0.00933614932000637, -0.018753957003355026, -0.014262805692851543, 0.01720246858894825, 0.003562299069017172, -0.003950171172618866, -0.009091177955269814, -0.003494251286610961, 0.011928768828511238, -0.005008313339203596, -0.011608944274485111, -0.005729619413614273, 0.009077568538486958, 0.03807951509952545, -0.012861022725701332, 0.011479653418064117, 0.011418410576879978, -0.003912745043635368, 0.005930360406637192, -0.002493949607014656, 0.01240510307252407, 0.017134420573711395, 0.006243379786610603, 0.004188338294625282, 0.012684098444879055, -0.01392937172204256, 0.016222581267356873, -0.001997201004996896, 0.001900233095511794, -0.03130196034908295, 0.008172533474862576, -0.0032390723936259747, 0.03249960020184517, -0.014494168572127819, -0.011472848244011402, -0.045401450246572495, -0.010152722708880901, -0.009111592546105385, -0.0009926463244482875, 0.027777086943387985, 0.009866922162473202, 0.007805075496435165, -0.009601536206901073, 0.015337959863245487, 0.009941774420440197, -0.020060474053025246, 0.009200054220855236, 0.00590654369443655, -0.025776483118534088, -0.0063420492224395275, -0.0070837694220244884, 0.02244214341044426, 0.0079411705955863, -0.008648867718875408, 0.01384091004729271, 0.0027457261458039284, -0.014902454800903797, 0.023408422246575356, 0.02418416552245617, 0.00238507310859859, 0.01718885824084282, -0.01678057201206684, 0.0381883904337883, -0.05060029774904251, 1.0273613952449523e-05, 0.004838194232434034, 0.027464067563414574, -0.026293646544218063, -0.0266611035913229, 0.00969680305570364, 0.00553908571600914, 0.01634506694972515, 0.016004828736186028, 0.017964603379368782, -0.008614843711256981, 0.0008931265329010785, 0.00027389213209971786, -0.007015721872448921, 0.025463463738560677, -0.021516695618629456, -0.006270599085837603, 0.010057455860078335, 0.020645683631300926, 0.039603784680366516, 0.006920455023646355, 0.004310823976993561, 0.02184332348406315, 0.0230545736849308, 0.048041701316833496, -0.005334942601621151, 0.013643571175634861, 0.018332060426473618, -0.021339770406484604, -0.012377883307635784, -0.016413114964962006, -0.00910478737205267, 0.027355190366506577, 0.01384771429002285, 0.013371380977332592, 0.003291809232905507, -0.0005494854995049536, -0.006236575078219175, 0.009778459556400776, -0.008050047792494297, -0.0249463003128767, -0.03173746541142464, 0.021176455542445183, 0.0057058027014136314, -0.01537878904491663, -0.01865869015455246, -0.012738536112010479, 0.007981999777257442, -0.0009135408909060061, 0.035221509635448456, -0.020237397402524948, -0.0021826312877237797, 0.014820797368884087, -0.024252213537693024, 0.002883523004129529, 0.007920756936073303, 0.013949786312878132, -0.00982609298080206, 0.033316172659397125, 0.00773022323846817, 0.01823679357767105, 0.007920756936073303, -0.03699075058102608, 0.01012550387531519, 0.02378948964178562, 0.010901248082518578, 0.004841596353799105, -0.020931484177708626, 0.015351569280028343, -0.0317646823823452, 0.0018628068501129746, -0.02871614508330822, 0.003363259369507432, -0.007900342345237732, -0.012051254510879517, 0.0012699408689513803, -0.023530907928943634, 0.008669281378388405, 0.03296232596039772, -0.009941774420440197, -0.0006685690023005009, -0.014779969118535519, -0.036255836486816406, 6.831355130998418e-05, 0.10337812453508377, 0.015855122357606888, -0.01825040392577648, 0.004460529424250126, 0.004542186390608549, 0.011010124348104, -0.017379391938447952, -0.037235721945762634, 0.028389517217874527, 0.026443351060152054, 0.008642062544822693, -0.02653861790895462, 0.01049976609647274, 0.00564796244725585, 0.014820797368884087, -0.0015897653065621853, -0.0026793796569108963, 0.0014817394549027085, 0.0032492794562131166, 0.011921963654458523, -0.00035044585820287466, 0.008655671961605549, -0.0028052679263055325, 0.012316640466451645, -0.035058192908763885, -0.017610754817724228, 0.019910767674446106, 0.0008459184318780899, 0.014045053161680698, -0.02508239634335041, -0.02172083780169487, 0.031383614987134933, 0.019856330007314682, 0.02713743783533573, -0.005460830871015787, -0.00904354453086853, 0.00046952939010225236, 0.006423706654459238, 0.001241871272213757, -8.378377970075235e-05, 0.006532582920044661, 0.023721441626548767, 0.00941100250929594, -0.022224390879273415, 0.010690299794077873, 0.011282314546406269, -0.01853620447218418, -0.012296225875616074, -0.020808998495340347, -0.020291835069656372, 0.04096473753452301, 0.004453724250197411, -0.009710412472486496, -0.00932934507727623, 0.022836821153759956, 0.0035180679988116026, 0.005158018320798874, -0.01880839467048645, -0.005624145735055208, 0.024442747235298157, -0.00955390278249979, 0.011622553691267967, 0.01232344564050436, -0.01041810866445303, -0.018141526728868484, -0.01908058486878872, -0.03560257703065872, -0.012568417005240917, -0.010173137299716473, 0.02521849237382412, -0.013092384673655033, -0.009975798428058624, -0.013888543471693993, 0.0030791601166129112, -0.0007634105859324336, 0.010547399520874023, 0.017011934891343117, -0.008335848338901997, -0.011847111396491528, -0.003484044224023819, -0.019801892340183258, -0.02347647026181221, 0.004018218722194433, -0.009921359829604626, -0.022632677108049393, -0.012915460392832756, 0.016521990299224854, 0.019597748294472694, -0.020958703011274338, 0.002543284324929118, -0.0063080252148211, 0.014820797368884087, -0.005716009996831417, -0.01648116298019886, 0.010812785476446152, -0.010874028317630291, -0.018427327275276184, -0.0008778158226050436, -0.0022574837785214186, 0.003994402009993792, 0.022414924576878548, -0.06303942203521729, 0.007981999777257442, -0.004831389524042606, 0.0063420492224395275, -0.018753957003355026, 0.002543284324929118, 0.0052192616276443005, 0.0028086702805012465, -0.021312551572918892, 0.007321936544030905, -0.023707831278443336, -0.004130497574806213, -0.008893839083611965, -0.008812181651592255, -0.0022864039056003094, 0.015419617295265198, -0.0025994235184043646, 0.01777406968176365, 0.0020890654996037483, 0.005113787483423948, -0.02828064002096653, 0.00047633415670134127, 0.0017590339994058013, -0.017420221120119095, 0.0042359717190265656, 0.00040934968274086714, -0.03873277083039284, 0.01735217310488224, -0.001622087904252112, 0.029369404539465904, 0.014984112232923508, -0.0023238302674144506, -0.009996213018894196, -0.032717350870370865, 0.005712607409805059, -0.01924389973282814, -0.008206557482481003, -0.00839028600603342, 0.006066455971449614, -0.008281409740447998, -0.025898968800902367, -1.0393228876637295e-05, -0.028661707416176796, -0.010098284110426903, -0.025572339072823524, -0.011432019993662834, -0.0029838932678103447, 0.002832486992701888, 0.0002607078931760043, -0.0035929204896092415, -0.034323278814554214, -0.04458487778902054, -0.013133213855326176, -0.028253421187400818, -0.043087828904390335, -0.0142764151096344, -0.009227273054420948, 0.019325558096170425, 0.010350060649216175, 0.025150444358587265, -0.0359019860625267, 0.002425901824608445, -0.002180929994210601, -0.0005456578219309449, 0.0008752640569582582, 0.00035491149174049497, -0.031574148684740067, -0.04246179014444351, -0.029233308508992195, 0.021652789786458015, 0.013289723545312881, 0.01546044647693634, -0.009914555586874485, -0.0013720125425606966, 0.04929378256201744, -0.012772560119628906, 0.0018594044959172606, -0.006148112937808037, -0.04502038285136223, -0.03192799910902977, 0.005974591244012117, -0.010016626678407192, 0.007539689540863037, -0.022932088002562523, 0.0051546161994338036, 0.040610890835523605, 0.019339166581630707, -0.0014196459669619799, -0.016072874888777733, 0.020740950480103493, -0.032717350870370865, 0.010302427224814892, -0.0016552612651139498, 0.011064562015235424, -0.018563423305749893, 0.01879478432238102, -0.02185693383216858, -0.002832486992701888, 0.00099179579410702, 0.0036439562682062387, 0.015419617295265198, -0.008192948065698147, -0.0034432155080139637, -0.010669885203242302, 0.001844093669205904, -0.01880839467048645, -0.021040361374616623, 0.0028801204171031713, -0.02097231335937977, -0.022074686363339424, -0.003691589692607522, 0.002563698450103402, -0.029423842206597328, -0.029124431312084198, 0.0007136506610549986, -0.004661269951611757, 0.016453942283988, -0.018005430698394775, -0.010533790104091167, -0.0015948688378557563, -0.013915762305259705, 0.03045816719532013, 0.0035044585820287466, 0.02404807135462761, 0.009145615622401237, -0.02682441845536232, 0.014562215656042099, -0.002703196369111538, -0.01253439299762249, -0.011928768828511238, 0.022238001227378845, 0.02536819688975811, -0.0035759087186306715, 0.004933461081236601, -0.03639192879199982, 0.014997721649706364, -0.03307120129466057, -0.01529713161289692, 0.01777406968176365, 0.01603204756975174, -0.005943969823420048, 0.001599972485564649, 0.008437919430434704, -0.031438056379556656, 0.01965218596160412, -0.002090766793116927, 0.01086722407490015, -0.006124296225607395, -0.010458936914801598, -0.019053366035223007, 0.00941100250929594, 0.021040361374616623, 0.017011934891343117, 0.02491908147931099, -0.006682287901639938, -0.02841673605144024, -0.016072874888777733, -0.01691666804254055, -0.013616352342069149, -0.006791164167225361, 0.03688187524676323, -0.0057908627204597, 0.002044834429398179, 0.003912745043635368, 0.006862614303827286, -0.025109615176916122, -0.008921058848500252, -0.018345670774579048, 0.02800844982266426, 0.00036660718615166843, 0.021353380754590034, 0.00809768121689558, 0.02611672133207321, 0.015024940483272076, 0.0054029906168580055, 0.00189683074131608, 0.004072657320648432, -0.028525611385703087, 0.0042359717190265656, 0.0018134722486138344, 0.005049142055213451, 0.0037290160544216633, -0.011275510303676128, -0.020727340131998062, 0.006906845606863499, -0.0033156259451061487, -0.00445032212883234, 0.021326161921024323, -0.04172687232494354, -0.029859347268939018, 0.0010062559740617871, -0.01838649809360504, 0.01879478432238102, -0.004252983722835779, 0.01825040392577648, -0.01586873270571232, 0.022986525669693947, -0.026620274409651756, 0.02928774617612362, -0.022986525669693947, 0.023149840533733368, -0.037126846611499786, 0.004940265789628029, 0.01218054536730051, -0.0072743031196296215, 0.01691666804254055, -0.020958703011274338, -0.02433387190103531, 0.013214870356023312, 0.014262805692851543, 0.001325229648500681, -0.007437617983669043, 0.008199752308428288, -0.0014332555001601577, 0.01218054536730051, 0.0018679103814065456, -0.01823679357767105, -0.03778010234236717, 0.01997881568968296, 0.025477072224020958, 0.004184935707598925, 0.011745039373636246, -0.020468760281801224, 0.024565232917666435, 0.007199450861662626, 0.006661873776465654, 0.01356191374361515, -0.029696032404899597, 0.02057763561606407, -0.013677595183253288, 0.0005924405995756388, 0.009145615622401237, -0.025749264284968376, -0.016889449208974838, -0.03513985127210617, 0.0022795991972088814, -0.009063959121704102, 0.009152420796453953, 0.009594731032848358, 0.024388309568166733, 0.012343859300017357, 0.00040637259371578693, -0.00244121253490448, -0.019869940355420113, 0.0022149537689983845, 0.004477540962398052, -0.00710418401286006, -0.02071373164653778, -0.007798270788043737, 0.0012997117592021823, 0.037126846611499786, 0.001115982886403799, -0.024429138749837875, -0.009485854767262936, -0.012724926695227623, -0.03203687444329262, -0.024238605052232742, -0.006246782373636961, 0.02332676388323307, 0.03690909221768379, 0.0017641376471146941, 0.0045047602616250515, 0.03650080785155296, -0.010302427224814892, 0.019162243232131004, -0.006182136945426464, -0.00836987141519785, -0.0017148030456155539, -0.006498558912426233, 0.004742927383631468, 0.011887939646840096, -0.026007845997810364, -0.003417697735130787, 0.01189474482089281, 0.00487902294844389, 0.0015353270573541522, 0.009601536206901073, -0.0005265193758532405, 0.0011023733532056212, -0.024701328948140144, -0.001606777193956077, 0.006923857145011425, 0.0028358895797282457, -0.0029311564285308123, -0.004528576973825693, -0.00947904959321022, -0.0049708872102200985, -0.02274155430495739, -0.0008476196089759469, -0.033343393355607986, 0.01240510307252407, -0.0038923306856304407, 0.005654767155647278, -0.014521387405693531, -0.010962490923702717, -0.015678199008107185, -0.01552849356085062, 0.03350670635700226, -0.004804170224815607, -0.012289421632885933, 0.026593055576086044, 0.005576512310653925, -0.020291835069656372, -0.014548606239259243, 0.019189462065696716, 0.011044147424399853, -0.0425434447824955, 0.00852638203650713, -0.031002549454569817, 0.006454328075051308, 0.005379173904657364, -0.002094169147312641, -0.014153929427266121, 0.005960981827229261, -0.015691807493567467, 0.0009671284933574498, -0.011683796532452106, 0.036201395094394684, 0.031247520819306374, -0.021094799041748047, -0.00890064425766468, -0.01751548796892166, -0.008349457755684853, 0.015977608039975166, -0.009240882471203804, -0.01923029124736786, -0.012969898991286755, 0.023000136017799377, -0.004072657320648432, 0.011187047697603703, -0.013684400357306004, 0.007628151215612888, 0.01253439299762249, -0.02433387190103531, 0.012956289574503899, 0.21709950268268585, -0.007110988721251488, 0.000405521976063028, 0.02972325123846531, 0.00459662452340126, 0.034622687846422195, 0.03573867306113243, -0.008192948065698147, -0.019611358642578125, -0.006124296225607395, -0.014630263671278954, 0.018304841592907906, -0.010880833491683006, 0.0006655919132754207, 5.281674020807259e-05, -0.003285004524514079, -0.04853164777159691, -0.01005065068602562, 0.004674879834055901, -0.04537423327565193, 0.0005673480336554348, -0.022510191425681114, -0.01254800334572792, -0.011323143728077412, 0.018468156456947327, 0.013405404053628445, -0.015256302431225777, -0.01720246858894825, 0.019638577476143837, 0.011084976606070995, -0.01703915372490883, -0.01252758875489235, -0.011724625714123249, 0.0011568116024136543, 0.003803868545219302, 0.011758648790419102, 0.015841513872146606, 0.015555713325738907, 0.008118094876408577, -0.011690601706504822, 0.014997721649706364, -0.007110988721251488, 0.004855206236243248, -0.004076059442013502, -0.0241977758705616, 0.014766358770430088, -0.010805981233716011, -0.004691891372203827, -0.022564629092812538, 0.004378871992230415, -0.02403446100652218, 0.014507777988910675, 0.04199906438589096, 0.011656577698886395, -0.013507476076483727, -0.013384990394115448, 0.0019308545161038637, 0.012071669101715088, -0.016154533252120018, 0.014221977442502975, -0.022700725123286247, 0.017229687422513962, 0.0072879125364124775, 0.0269469041377306, -0.02436109073460102, 0.011765453964471817, 0.004120290745049715, -0.014385291375219822, -0.0056921932846307755, -0.005321333184838295, 0.004140704870223999, -0.006855809595435858, -0.003919549752026796, -0.00470550125464797, -0.017855726182460785, -0.005838496144860983, 0.029559938237071037, -0.03443215414881706, 0.002698092721402645, -0.0072538889944553375, 0.0006222114898264408, -0.0022115514148026705, 0.011819892562925816, -0.007634956389665604, -0.0009339551907032728, -0.026715541258454323, 0.00619234424084425, -0.016576429829001427, -0.038569457828998566, 0.018481764942407608, -0.017706021666526794, -0.015596541576087475, -0.0010538893984630704, -0.0019308545161038637, 0.003916147165000439, -0.015310741029679775, 0.020958703011274338, 0.007825490087270737, 0.006699299905449152, -0.014548606239259243, -0.01210569217801094, -0.00910478737205267, 0.03886886686086655, 0.004120290745049715, -0.03089367225766182, -0.005494854878634214, 0.026865247637033463, 0.005528878886252642, 0.011629358865320683, -0.008560405112802982, 0.02301374450325966, -0.013085580430924892, -0.002301714848726988, -0.02129894122481346, 0.00593716511502862, 0.02082260698080063, -0.006035834550857544, -0.020468760281801224, -0.008744134567677975, 0.02025100775063038, 0.012330249883234501, -0.023653393611311913, -0.00816572830080986, 0.00932934507727623, -0.002167320344597101, -0.018835613504052162, -0.022782383486628532, 0.02478298544883728, 0.005372368730604649, -0.006954479031264782, 0.007798270788043737, -0.05002869665622711, 8.811650332063437e-06, -0.007424008101224899, -0.01158852968364954, 0.015664588660001755, 0.010921661742031574, -0.021625570952892303, 0.020169349387288094, 0.002761036856099963, 0.002294909907504916, 0.0034074904397130013, 0.0011653174879029393, 0.026048673316836357, -0.010030237026512623, -0.0003989298711530864, 0.018005430698394775, -0.003555494360625744, 0.00044571267790161073, -0.019461652263998985, -0.03217297047376633, -0.00912520196288824, -0.0004452873836271465, -0.013663985766470432, 0.005321333184838295, -0.01750187762081623, -0.014657482504844666, -0.03699075058102608, 0.0003923377371393144, 0.02436109073460102, -0.020632073283195496, 0.021326161921024323, 0.019148632884025574, 0.0030723554082214832, -0.017243295907974243, -0.02055041678249836, -0.1736578345298767, 0.012643269263207912, 0.004555796273052692, -0.011200658045709133, 0.02290486916899681, 0.01574624702334404, 0.027654601261019707, -0.0018236794276162982, -0.0010045546805486083, -0.0033173272386193275, 0.028770582750439644, 0.008744134567677975, -0.04708903655409813, -0.011227876879274845, -0.007668979931622744, 0.028335077688097954, -0.02071373164653778, 0.021788885816931725, 0.04316948354244232, 0.016358675435185432, -0.000996899325400591, -0.006954479031264782, 0.006576813757419586, -0.011772259138524532, -0.002439511474221945, -0.010567814111709595, -0.0031421042513102293, 0.012071669101715088, 0.007696199230849743, -0.02274155430495739, -0.011636163108050823, 0.016712523996829987, 0.01464387308806181, -0.008335848338901997, 0.027790695428848267, 0.00510698277503252, -0.005008313339203596, -0.003555494360625744, 0.008335848338901997, 0.017229687422513962, -0.0006715460913255811, 0.006423706654459238, 0.017025543376803398, 0.0018713128520175815, 0.003916147165000439, 0.02828064002096653, -0.024823814630508423, -0.003017917275428772, -0.001144052599556744, -0.02478298544883728, 0.0027865548618137836, -0.003871916327625513, 0.01575985550880432, -0.013017532415688038, 0.04150912165641785, 0.020781779661774635, 0.009349759668111801, 0.0014715323923155665, -0.0025875151623040438, -0.017556317150592804, 0.01101692859083414, 0.0035861157812178135, 0.027327971532940865, -0.017678802832961082, 0.01603204756975174, -0.009887336753308773, -0.006702702026814222, 0.008703305386006832, -0.022823210805654526, 0.02784513495862484, 0.007240279112011194, -0.008056852035224438, 0.03715406358242035, 0.0043006171472370625, -0.0022693921346217394, -0.005079763475805521, -0.01296309381723404, 0.01575985550880432, -0.02593979798257351, -0.02446996606886387, -0.04967484995722771, 0.04414937272667885, -0.005552695598453283, -0.009948579594492912, 0.01218054536730051, 0.03132917732000351, -0.010084674693644047, -0.0025296746753156185, -0.020781779661774635, 0.004184935707598925, 0.01386132463812828, -0.013208066113293171, -0.008567210286855698, -0.010574618354439735, 0.009526683017611504, 0.02042793110013008, 0.008056852035224438, -0.006883028894662857, -0.0016322950832545757, -0.004817779641598463, 0.006740128621459007, -0.03843336179852486, -0.010908052325248718, 0.03998485207557678, 0.03527594730257988, 0.00845152884721756, -0.007927561178803444, -0.006876223720610142, 0.014739139936864376, -0.0006996158044785261, 0.008186142891645432, 0.012262202799320221, 0.031546931713819504, 0.0018321853131055832, 0.015841513872146606, 0.03279900923371315, 0.002238770481199026, -0.005879324395209551, 0.018304841592907906, -0.0047089033760130405, 0.055336419492959976, -0.012173740193247795, -0.014262805692851543, -0.000890574767254293, -0.008376676589250565, -0.030403729528188705, -0.11236042529344559, 0.005440416745841503, -0.0017573328223079443, -0.0035759087186306715, 0.002300013555213809, 0.014888845384120941, -0.016004828736186028, 0.01603204756975174, 0.024714939296245575, -0.0037154064048081636, -0.009438221342861652, -0.0252321008592844, 0.006740128621459007, -0.021108407527208328, 0.01707998290657997, -0.0323362834751606, -0.0021503085736185312, -0.030866453424096107, 0.007566908374428749, 0.03367001935839653, -0.022061076015233994, -0.03078479692339897, 0.018835613504052162, -0.028634488582611084, 0.029995443299412727, -0.006178734824061394, -0.024524405598640442, 0.012976703234016895, 0.018835613504052162, 0.020591245964169502, -0.019148632884025574, 0.003077459055930376, 0.018549812957644463, -0.0061447108164429665, 0.0026062284596264362, -0.005845300853252411, -0.03614695742726326, -0.004011414013803005, 0.04153633862733841, -0.030567044392228127, 0.004089668858796358, -0.006889833603054285, 0.009866922162473202, -0.016698915511369705, -0.004637453239411116, -0.013078775256872177, -0.015201864764094353, 0.014181148260831833, 0.017556317150592804, -0.027341581881046295, -0.042652323842048645, 0.012153325602412224, -0.040012069046497345, -0.009145615622401237, 0.02403446100652218, 0.00198359158821404, 0.0276954285800457, 0.0010071065044030547, -0.011697405949234962, 0.008907448500394821, -0.017093591392040253, 0.016658086329698563, 0.009649169631302357, 0.040610890835523605, 0.004787158221006393, -0.009308930486440659, -0.012112497352063656, -0.007029331289231777, 0.02844395488500595, 0.004671477247029543, -0.015650980174541473, 0.002898833714425564, -0.025422634556889534, 0.02917887084186077, -0.016943886876106262, 0.025735653936862946, -0.03464990854263306, -0.002495650900527835, 0.021802496165037155, 0.004487748257815838, -0.0068081761710345745, -0.028743363916873932, 0.008921058848500252, -0.006879626307636499, 0.030703138560056686, 0.01420836802572012, 0.023884756490588188, -0.007900342345237732, 0.0028546026442199945, -0.008131704293191433, 0.011738235130906105, 0.016208970919251442, -0.014085881412029266, -0.04126414656639099, 0.013289723545312881, 0.03337061032652855, 0.012200959026813507, -0.002755933441221714, -0.001079407287761569, -0.002308519557118416, -0.02112201787531376, 0.003421100089326501, -0.06739448010921478, 0.03192799910902977, 0.009009520523250103, 0.007771051488816738, -0.0001776683930074796, -0.022795991972088814, 0.006906845606863499, -0.02289125882089138, -0.022074686363339424, -0.001547235413454473, -0.01575985550880432, 0.040883079171180725, -0.011996815912425518, -0.003555494360625744, -0.014888845384120941, -0.006182136945426464, -0.007900342345237732, -0.0241977758705616, -0.0006672931485809386, -0.00035937712527811527, 0.00648154690861702, -0.004297214560210705, 0.03132917732000351, -0.006124296225607395, -0.028389517217874527, 0.0020618464332073927, 0.01837288960814476, 0.031165864318609238, 0.004719110671430826, -0.018699519336223602, 0.020591245964169502, -0.037698447704315186, -0.0013490463607013226, 0.00528050446882844, -0.0015310740564018488, 0.02038710191845894, -0.012595636770129204, -0.0056921932846307755, 0.004909644369035959, 0.04270676150918007, -0.020808998495340347, 0.00010047674004454166, -0.0004882425128016621, -0.026361694559454918, 0.019856330007314682, 0.029941005632281303, -0.008424310013651848, -0.007403593976050615, 0.001152558601461351, -0.0020720537286251783, 0.003749430412426591, 0.02040071226656437, 0.010241184383630753, -0.005858910270035267, 0.006889833603054285, -0.012588831596076488, 0.028525611385703087, -0.015773465856909752, 0.004150912165641785, -0.022088294848799706, 0.014616654254496098, -0.008825791999697685, 0.014507777988910675, 0.006689092610031366, 0.00962194986641407, -0.013609547168016434, -0.009819288738071918, -0.007689394522458315, -0.015365179628133774, -0.011745039373636246, 0.014194758608937263, 0.015923170372843742, -0.007328741252422333, 0.0015795581275597215, 0.006937467027455568, 0.027205485850572586, 0.005981395952403545, 0.021761666983366013, -0.02026461623609066, -0.013085580430924892, -0.01778767816722393, -0.013446233235299587, -0.03266291320323944, 0.00787992775440216, 0.028661707416176796, 0.01246634591370821, -0.014099491760134697, 0.00875774398446083, -0.011010124348104, 0.009091177955269814, 0.0049572777934372425, -0.004841596353799105, 0.003609932493418455, -0.005045739933848381, 0.006658471189439297, 0.007002112455666065, -0.0009280010126531124, -0.001189134200103581, 0.02172083780169487, 0.040583670139312744, -0.0040522427298128605, 0.025340978056192398, 0.0004580463282763958, -0.014480558224022388, 0.00047335706767626107, -0.0045115649700164795, -0.0126160504296422, -0.02143503725528717, 0.0016935380408540368, 0.007852708920836449, -0.0049436683766543865, 0.006134503521025181, 0.03718128427863121, 0.022932088002562523, -0.010887637734413147, -0.0019240498077124357, 0.012636465020477772, -0.00582488626241684, -0.007383179385215044, 0.04414937272667885, 0.01369800977408886, 0.04749732092022896, -0.006876223720610142, 0.009431416168808937, 0.03315285965800285, -0.0030672517605125904, 0.014330853708088398, 0.03130196034908295, 0.0031421042513102293, 0.0029362598434090614, 0.0123846884816885, 0.013235284946858883, -0.036664120852947235, -0.0061447108164429665, 0.008893839083611965, -0.03895052522420883, -0.01703915372490883, 0.008696501143276691, -0.03538482263684273, 0.02711021900177002, 0.02042793110013008, -0.02565399743616581, 0.01690305769443512, 0.011574920266866684, 0.01747465878725052, 0.003232267452403903, 0.0015327753499150276, 0.014793578535318375, -0.024170557036995888, 0.0009654272580519319, -0.006927259732037783, 0.024252213537693024, -0.017025543376803398, -0.005072958767414093, 0.018127918243408203, -0.0032969128806144, 0.032907884567976, -0.030240414664149284, -0.009608340449631214, 0.03078479692339897, 0.015038549900054932, 0.02084982767701149, -0.004150912165641785, -0.0029941005632281303, -0.012030839920043945, 0.03059426322579384, -0.008138509467244148, -0.005192042328417301, -0.013405404053628445, 0.0031216898933053017, 0.012772560119628906, -0.0027389214374125004, -0.01356191374361515, 0.008322237990796566, -0.006012017838656902, 0.004790560808032751, -0.02038710191845894, 0.021639181300997734, -0.0024037864059209824, -0.022523801773786545, 0.0061311013996601105, -0.010234380140900612, -0.021040361374616623, 0.004569405689835548, 0.0033853750210255384, -0.012160130776464939, 0.004862010944634676, -0.024020850658416748], "866fbd24-cf42-4960-93a6-a278757af43f": [0.01175909023731947, -0.0332954004406929, -0.01388003770262003, 0.0073155309073626995, -0.03118140809237957, 0.030764171853661537, -0.004742578137665987, -0.027607088908553123, 0.0019175453344359994, -0.011334900744259357, 0.023907599970698357, 0.006435859482735395, 0.01025704201310873, 0.01732918620109558, -0.005427539814263582, 0.00011332727444823831, 0.03374045342206955, -0.02194659411907196, 0.036021340638399124, -0.011411393992602825, -0.0023139191325753927, 0.0038246598560363054, -0.018719971179962158, 0.001128274598158896, -0.005340615753084421, 0.015368178486824036, 0.02650836855173111, -0.010702093131840229, 0.019665705040097237, -0.01994386315345764, -0.022961866110563278, 0.01022227294743061, 0.017760328948497772, -0.012697870843112469, -0.0447554737329483, -0.007802305743098259, 0.009832852520048618, -0.027523642405867577, 0.023170484229922295, -0.011272315867245197, 0.005243260879069567, 0.002532967831939459, -0.0361604206264019, 0.004506144672632217, -0.006999127566814423, 0.019109390676021576, 0.0038211827632039785, -0.023059220984578133, -0.0068009402602910995, 0.00500335032120347, 0.037078339606523514, -0.002025331137701869, -0.026299752295017242, 0.0024999366141855717, -0.019415363669395447, 0.0027468011248856783, 0.010458705946803093, 0.012030293233692646, -0.01902594417333603, 0.015827137976884842, 0.016605976969003677, 0.011898169293999672, 0.013977392576634884, 0.012829994782805443, -0.03855257108807564, -0.011870353482663631, -0.018413998186588287, -0.016480807214975357, -0.012774364091455936, -0.009332169778645039, 0.049428511410951614, 0.017384817823767662, -0.0035517180804163218, 0.01044479850679636, 0.024672532454133034, -0.030402569100260735, -0.02002730965614319, -0.006109024863690138, -0.0247003473341465, 0.012162418104708195, -0.002639015205204487, -0.03824659809470177, -0.013615788891911507, -0.002588599221780896, 0.023031406104564667, -0.008414251729846, 0.008066555485129356, 0.02015247941017151, -0.02912304550409317, -0.027273301035165787, 0.006835710257291794, 0.02015247941017151, 0.013560157269239426, 0.0104726143181324, -0.0004980750381946564, 0.023462548851966858, -0.023281747475266457, 0.012857810594141483, -0.0035604105796664953, -0.027787892147898674, -0.01578541472554207, 0.00012364951544441283, -0.017259646207094193, -0.006960880942642689, -0.03440802916884422, 0.017551710829138756, -0.024644717574119568, -0.017176199704408646, 0.02133464813232422, -0.016981489956378937, -0.013824407011270523, 0.028900520876049995, -0.007691042963415384, -0.05412936583161354, -0.026411013677716255, -0.034714002162218094, 0.031403932720422745, -0.014519799500703812, -0.026897789910435677, -0.018038487061858177, 0.0048051634803414345, -0.001794113079085946, -0.004026323556900024, -0.01614701747894287, 0.008365574292838573, -0.023434733971953392, 0.00947820208966732, -0.03543721139431, -0.009881529957056046, -0.01746826432645321, 0.01902594417333603, 0.011675642803311348, 0.031765539199113846, -0.010834218002855778, 0.0008405559347011149, 0.011766044422984123, -0.017676882445812225, -0.014631061814725399, -0.023309562355279922, -0.019693521782755852, 0.024992413818836212, 0.006143794395029545, -0.003800321137532592, -0.016425175592303276, -0.01596621610224247, 0.02538183331489563, 0.0024512591771781445, 0.003341361880302429, -0.017815960571169853, -0.004732147324830294, 0.04172356054186821, -0.011133236810564995, 0.01609138585627079, -0.007551964372396469, 0.02987406961619854, -0.01303861290216446, 0.003911583684384823, -0.014895311556756496, -0.01097329705953598, -0.016995396465063095, 0.007364208344370127, -0.0002585991460364312, 0.00419321795925498, 0.006463674828410149, 0.024491731077432632, 0.026577908545732498, 0.01739872433245182, -0.0006349804461933672, -0.021668436005711555, -0.0009283492108806968, 0.010966342873871326, 0.022725433111190796, -0.04164011403918266, 0.015701966360211372, -0.008532468229532242, 0.012016385793685913, 0.03187680244445801, 0.04222424328327179, -0.022669801488518715, 0.004453990142792463, -0.039748646318912506, 0.001029181177727878, 0.016452990472316742, 0.02002730965614319, -0.021473726257681847, -0.018233196809887886, -0.015632428228855133, 0.0024303975515067577, 0.004620884545147419, 0.013518434017896652, 0.004321865737438202, 0.012836948968470097, -0.014352904632687569, 0.001540294848382473, -0.6422090530395508, -0.015604611486196518, -0.015368178486824036, -0.011070651933550835, -0.012496206909418106, -0.003193591022863984, 0.013233322650194168, 0.01614701747894287, -0.02300358936190605, 0.01920674555003643, -0.006526260171085596, -0.01677287183701992, 0.006307211704552174, -0.02063925564289093, -0.00991629995405674, -0.015980124473571777, 0.010403074324131012, -0.02762099727988243, 0.022349920123815536, -0.02369898185133934, -0.005747420713305473, 0.011327946558594704, 0.008073508739471436, 0.01468669343739748, -0.011418348178267479, 0.010556060820817947, 0.017482172697782516, -0.013678373768925667, -0.00017395682516507804, 0.023059220984578133, -0.028650179505348206, 0.02788524702191353, -0.00043548966641537845, 0.004864271730184555, 0.04901127517223358, -0.0055318488739430904, -0.005483171436935663, 0.015562888234853745, 0.013928715139627457, 0.014589338563382626, -0.024742072448134422, -0.014366813004016876, 0.01343498658388853, 0.004273187834769487, 0.015548980794847012, 0.00801787804812193, 0.025159306824207306, -0.010583876632153988, 0.017662974074482918, 0.024964597076177597, 0.015048298053443432, -0.013017751276493073, -0.01646689884364605, -0.02208567224442959, 0.010848126374185085, 0.004905995447188616, 0.029011782258749008, -0.004374019801616669, 0.006766170728951693, 0.0003720350796356797, 0.014784048311412334, 0.039387043565511703, 0.0006762694101780653, 0.006787032820284367, -0.0023191345389932394, 0.022169118747115135, -0.01515956036746502, 0.016828503459692, 0.02931775525212288, -0.01883123442530632, 0.035019975155591965, 0.02088959701359272, -0.0023399963974952698, -0.0120372474193573, 0.02344864048063755, -0.005524894688278437, 0.03207151219248772, -0.03735649585723877, 0.0019175453344359994, 0.0329337976872921, 0.006651430856436491, -0.01340717077255249, -0.04328124225139618, -0.018108025193214417, 0.006940018851310015, -0.028956150636076927, -0.006484536919742823, 0.01988823153078556, -0.016939766705036163, 0.0012621377827599645, -0.008824532851576805, 0.0009300876990891993, 0.0017419586656615138, 0.005879545118659735, 0.0329337976872921, 0.01069513987749815, 0.0003792063216678798, -0.003183159977197647, 0.01162696536630392, -0.02271152473986149, -0.0048955646343529224, -0.017315277829766273, 0.007628457620739937, -0.01235017366707325, 0.00810827873647213, -0.013476709835231304, -0.03927578032016754, -0.0104726143181324, 0.04987356439232826, -0.030346937477588654, -0.0010735124815255404, -0.007691042963415384, -0.00808046292513609, -0.006759217008948326, 0.01677287183701992, -0.01752389594912529, 0.017051028087735176, -0.010097102262079716, 0.00572308199480176, -0.0017428279388695955, 0.027301117777824402, 0.004676515702158213, 0.005125043913722038, -0.02182142250239849, 0.025646083056926727, 0.051292166113853455, 0.016605976969003677, -0.01388003770262003, 0.00044222630094736814, 0.0012325835414230824, -0.002691169735044241, -0.00026207612245343626, 0.01845572143793106, 0.005969946272671223, 0.0030040964484214783, -0.007162544876337051, 0.03137611970305443, -0.012732639908790588, 0.028038233518600464, -0.04164011403918266, -0.025242755189538002, -0.0016080955974757671, 0.019540535286068916, 0.0041341097094118595, -0.0039880769327282906, -0.03671673312783241, -0.003426547395065427, 0.003080589696764946, -0.033962979912757874, -0.005698743276298046, -8.594618702773005e-05, -0.010855079628527164, -0.005479694344103336, 0.009770267643034458, 0.019665705040097237, -0.0016063570510596037, -0.0005993415834382176, -0.0017975900555029511, -0.010875941254198551, -0.012725685723125935, 0.019373640418052673, 0.018747786059975624, -0.013177691027522087, 0.011432255618274212, 0.012384943664073944, -0.01958225853741169, -0.009206999093294144, 0.014770140871405602, 0.005545756779611111, -0.032572194933891296, 0.00010762288729893044, -0.008393390104174614, 0.009408663026988506, 0.034880898892879486, -0.018984220921993256, 0.00550403306260705, -0.0006632307777181268, -0.01757952757179737, -0.01262833084911108, 0.017815960571169853, -1.595871799509041e-05, 0.003838567528873682, -0.00970072764903307, -0.010841172188520432, 0.0013707928592339158, 0.005389293190091848, -0.025785161182284355, 0.0034352398943156004, 0.014742325060069561, 0.0221969336271286, -0.0002775051398202777, 0.01123059168457985, 0.0035951801110059023, 0.006161179393529892, 0.007732766680419445, 0.00520849134773016, 0.010104055516421795, 0.016605976969003677, 0.010319627821445465, 0.007232083939015865, 0.01496485061943531, -0.02543746493756771, 0.021126030012965202, -0.017690790817141533, 0.013720097951591015, -0.035520657896995544, 0.00732943881303072, -0.005907360929995775, 0.010702093131840229, -0.014881403185427189, -0.002800693968310952, -0.02674480341374874, -0.025590451434254646, -0.007378116250038147, -0.010097102262079716, 0.04397663474082947, 0.022169118747115135, 0.019290193915367126, -0.014227733947336674, 0.003023219760507345, -0.005451878532767296, -0.026091134175658226, 0.002188748447224498, 0.006821802351623774, -0.01616092585027218, 0.005173721816390753, -0.006359366234391928, 0.023337379097938538, 0.012809133157134056, -0.018622616305947304, 0.02063925564289093, -0.004196695052087307, -0.009074874222278595, 0.03549284115433693, 0.0013177691726014018, 0.011995524168014526, 0.011793860234320164, -0.016703331843018532, 0.03891417384147644, -0.037022706121206284, -0.006140317302197218, 0.006414997391402721, 0.006727924104779959, -0.020222019404172897, -0.018859049305319786, -0.0008918411331251264, 0.0006119455792941153, 0.013288954272866249, 0.015535072423517704, 0.015117837116122246, -0.0035256408154964447, 0.008150001987814903, -0.005184152629226446, -0.0005171982920728624, 0.012245865538716316, -0.03184898570179939, -0.001233452814631164, 0.008615915663540363, 0.018427906557917595, 0.01684240996837616, 0.005604865029454231, -0.0058308676816523075, 0.01657816208899021, 0.018553076311945915, 0.046619124710559845, -0.0006871349178254604, 0.0025694759096950293, 0.006606230512261391, -0.0120372474193573, -0.010952434502542019, -0.010389166884124279, -0.01627218909561634, 0.0024999366141855717, 0.014797956682741642, 0.006905249319970608, 0.015827137976884842, -0.007287715561687946, -0.0018271442968398333, 0.017426541075110435, -0.007997015491127968, -0.022113487124443054, -0.018817326053977013, 0.014283365570008755, 0.007482425309717655, -0.010250087827444077, -0.01732918620109558, -0.022433368489146233, -0.01156438048928976, -0.012683962471783161, 0.037940625101327896, -0.021974408999085426, 0.009930207394063473, 0.011654781177639961, -0.015423810109496117, 0.010097102262079716, -0.002585122361779213, 0.01808021031320095, -0.012364082038402557, 0.03755120560526848, 0.0038211827632039785, 0.008289081044495106, 0.0045582992024719715, -0.026800435036420822, 0.011515703052282333, 0.033823899924755096, 0.006265487987548113, 0.005935176741331816, -0.017384817823767662, 0.013859176076948643, -0.008657638914883137, -0.022530723363161087, -0.02582688443362713, 0.011494841426610947, -0.0028285097796469927, -0.016383452340960503, -0.003118836088106036, -0.0245195459574461, 0.01695367321372032, 0.04083345830440521, -0.009499063715338707, -0.005201537162065506, -0.006449767388403416, -0.028358113020658493, -0.015590704046189785, 0.10169422626495361, 0.009380847215652466, -0.022433368489146233, 0.015799321234226227, 0.009610326960682869, 0.011272315867245197, -0.018038487061858177, -0.03360137343406677, 0.022252565249800682, 0.01546553336083889, 0.008845395408570766, -0.01524300780147314, 0.021487634629011154, 0.0008118709665723145, 0.013699236325919628, 0.00017080582620110363, 0.004565252922475338, 0.0013838314916938543, -0.003842044621706009, 0.010312673635780811, 0.0014220779994502664, 0.004728670231997967, 0.004568730015307665, 0.012586607597768307, -0.034268952906131744, -0.010702093131840229, 0.0366889163851738, 0.0037203507963567972, 0.009631188586354256, -0.02221084199845791, -0.01310119777917862, 0.016480807214975357, 0.020110756158828735, 0.03654984012246132, 9.621409844839945e-05, -0.003478701924905181, -0.0010735124815255404, 0.018497444689273834, 0.004057616461068392, 0.0012256295885890722, 0.016063570976257324, 0.015618519857525826, 0.024644717574119568, -0.03460273891687393, -0.0032196680549532175, 0.002009684918448329, -0.018413998186588287, 0.0005089405458420515, -0.02008294127881527, -0.0014777095057070255, 0.03282253444194794, -0.004033277742564678, -0.01877560280263424, -0.014241642318665981, 0.026800435036420822, 0.0023591197095811367, 0.01646689884364605, 0.00012060716835549101, -0.005180675536394119, 0.008400343358516693, -0.018497444689273834, -0.0039359224028885365, -0.0020114232320338488, -0.0032874690368771553, -0.01549334917217493, -0.010841172188520432, -0.0018445290625095367, -0.0005745682283304632, -0.022030040621757507, 0.01041698269546032, -0.010994158685207367, -0.008393390104174614, -0.00604643952101469, 0.005218922160565853, 0.012753501534461975, 0.010952434502542019, 0.012704824097454548, -0.018121933564543724, 0.0012117217993363738, -0.0011291438713669777, -0.011112375184893608, -0.016536438837647438, 0.0014281626790761948, -0.009144414216279984, -0.010716001503169537, -0.01240580528974533, 0.011606103740632534, 0.025270570069551468, -0.02044454589486122, 0.0033848239108920097, -0.011202775873243809, 0.010820310562849045, -0.005594434216618538, -0.005424063187092543, 0.006919157225638628, -0.010465660132467747, -0.010354396887123585, -0.0009179183398373425, 0.010013654828071594, -0.027175946161150932, 0.021682344377040863, -0.054407522082328796, 0.01123059168457985, -0.004123678430914879, -0.004798209760338068, -0.010750770568847656, -0.004314911551773548, 0.0015507256612181664, -0.010987204499542713, -0.01490921899676323, 0.0026929082814604044, -0.02787133865058422, 0.00025186254060827196, -0.00941561721265316, -0.005006827414035797, 0.0074059320613741875, 0.02481161057949066, -0.005455355625599623, 0.021501541137695312, 0.00024469129857607186, -0.004794732667505741, -0.0361604206264019, 0.0029154338408261538, -0.0005623988108709455, -0.012336266227066517, -0.009436478838324547, 0.006411520764231682, -0.0308754350990057, 0.016202649101614952, -0.015117837116122246, 0.007026942912489176, 0.027328932657837868, 0.006731401197612286, -0.007983108051121235, -0.04845496267080307, 0.012030293233692646, -0.021543266251683235, 0.006015146616846323, -0.006414997391402721, 0.017106659710407257, 0.002725939266383648, -0.02357381209731102, -0.006161179393529892, -0.016508622094988823, -0.008219541981816292, -0.01958225853741169, -0.020124664530158043, 0.00444355932995677, -0.0007805782952345908, 0.0015324716223403811, -0.010326581075787544, -0.03835786134004593, -0.029484650120139122, 0.0015411640051752329, -0.021668436005711555, -0.03387953341007233, -0.002286103554069996, -0.01876169443130493, 0.02805214188992977, 0.011592196300625801, 0.01863652467727661, -0.03910888358950615, 0.004704331513494253, 0.007259899750351906, -0.014450260438024998, 0.004586114548146725, -0.005872591398656368, -0.02401886321604252, -0.03468618541955948, -0.02582688443362713, 0.015270823612809181, 0.014241642318665981, 0.011647827923297882, -0.014811864122748375, -0.005615295842289925, 0.060582611709833145, -0.007572826463729143, -0.006348935421556234, -0.011119329370558262, -0.043253425508737564, -0.018052393570542336, 0.01421382650732994, -0.01721792295575142, 0.00995106901973486, -0.004530483391135931, 0.003073635743930936, 0.046313151717185974, 0.024102309718728065, -0.020472360774874687, -0.0061681331135332584, 0.00842120498418808, -0.030513830482959747, 0.022294290363788605, -0.0012882149312645197, -0.002819817280396819, 0.0027468011248856783, 0.018261011689901352, -0.007110390346497297, -0.005545756779611111, 0.004561775829643011, 0.007670181337743998, 0.006762694101780653, -0.017676882445812225, -0.011473978869616985, -0.007183406502008438, 0.001771512906998396, -0.02507586032152176, -0.02113993838429451, 0.014617154374718666, -0.015451625920832157, -0.011244500055909157, -0.011209730058908463, 0.007232083939015865, -0.022586354985833168, -0.03446366265416145, -0.004499190486967564, -0.0008635908016003668, 0.011327946558594704, -0.019484903663396835, -0.003977646119892597, 0.003796844044700265, -0.011891215108335018, 0.047620490193367004, 0.01609138585627079, 0.026716986671090126, 0.00810827873647213, -0.02917867712676525, 0.008754993788897991, 0.013337631709873676, 0.009366939775645733, -0.012976027093827724, 0.028330298140645027, 0.010931572876870632, -0.0079205222427845, 0.015368178486824036, -0.021737975999712944, -0.0010691662319004536, -0.030013147741556168, -0.03123703971505165, 0.021557172760367393, 0.011620012111961842, -0.004641746170818806, -0.00156724127009511, 0.008177817799150944, -0.031153593212366104, 0.015521164983510971, -0.0013377616414800286, 0.005604865029454231, -0.015938401222229004, -0.02019420452415943, -0.005736989434808493, 0.014283365570008755, 0.016369543969631195, 0.01578541472554207, 0.02418575808405876, -0.013587973080575466, -0.01927628554403782, -0.015952307730913162, -0.0031275285873562098, -0.003598657203838229, -0.0088593028485775, 0.025409648194909096, 0.012774364091455936, 0.0021365939173847437, 0.0016611192841082811, 0.003108405275270343, -0.01128622330725193, 0.0034752250649034977, -0.023657258599996567, 0.0277461688965559, -0.003925491590052843, 0.004092385992407799, 0.009679866023361683, 0.0174543559551239, 0.0034561017528176308, 0.01809411682188511, -0.012398852035403252, -0.010090148076415062, -0.026591816917061806, 0.008094371296465397, -0.010062332265079021, 0.011988569982349873, -0.0023034883197396994, -0.009596419520676136, -0.0152151919901371, -0.0032005447428673506, 0.0034891327377408743, -0.008748039603233337, 0.004481805954128504, -0.03446366265416145, -0.001544640981592238, -0.000340525119099766, -0.014450260438024998, 0.026146765798330307, -0.018288828432559967, 0.02070879377424717, -0.008942750282585621, 0.032210588455200195, -0.010576922446489334, 0.011223637498915195, -0.011932938359677792, 0.0024460437707602978, -0.03510342165827751, 0.01493703480809927, 0.0034282859414815903, -0.017134476453065872, 0.013761821202933788, -0.03282253444194794, -0.029901886358857155, 0.010590830817818642, 0.013615788891911507, -0.005587480030953884, -0.006738354917615652, 0.001022227224893868, 0.0033743930980563164, 2.766630677797366e-05, 0.015521164983510971, -0.004544391296803951, -0.034769635647535324, 0.03254437819123268, 0.02090350352227688, -0.002032285090535879, 0.007899660617113113, -0.020110756158828735, 0.011515703052282333, 0.01446416787803173, 0.02337910234928131, 0.010681231506168842, -0.032711271196603775, 0.011279269121587276, -0.012739594094455242, 0.009964977391064167, 0.007120821159332991, -0.018942497670650482, -0.012955165468156338, -0.02357381209731102, -0.0074407015927135944, 0.005145906005054712, 0.01664770022034645, 0.001650688354857266, 0.031097961589694023, 0.019610073417425156, 0.011995524168014526, -0.004481805954128504, -0.009283492341637611, -0.008024831302464008, 0.013789637014269829, -0.009116598404943943, -0.033573560416698456, -0.011126282624900341, 0.0011482671834528446, 0.03323977068066597, -0.0002509932965040207, -0.012774364091455936, -0.006265487987548113, -0.014081701636314392, -0.03554847463965416, -0.00910964421927929, 0.005451878532767296, 0.02563217468559742, 0.03260000795125961, 0.017857683822512627, 0.0033326693810522556, 0.02069488726556301, -0.013247231021523476, 0.022252565249800682, -0.00014136028767097741, -0.011188868433237076, -0.015048298053443432, 0.02319829910993576, 0.001071773935109377, 0.008129140362143517, -0.030791988596320152, 0.004832979291677475, 0.024463914334774017, 0.007725812960416079, 0.0002377373748458922, 0.024589085951447487, -0.015548980794847012, 0.018622616305947304, -0.02351818047463894, 0.017384817823767662, 0.02120947651565075, -0.011168006807565689, 0.0018340982496738434, -0.015799321234226227, 0.0026859543286263943, -0.003224883694201708, -0.013017751276493073, -0.014102563261985779, -0.02706468291580677, 0.012002477422356606, -0.0042905728332698345, 0.015701966360211372, -0.0020687931682914495, -0.013504525646567345, -0.008407297544181347, -0.024769887328147888, 0.043058715760707855, 0.0026285843923687935, 0.009339123964309692, 0.027036868035793304, 0.01000670064240694, -0.03985990956425667, -0.027426287531852722, 0.01415819488465786, 0.014283365570008755, -0.030791988596320152, 0.014422444626688957, -0.007725812960416079, 0.0204028207808733, -0.001347323297522962, -0.006793986540287733, -0.014311181381344795, 0.01752389594912529, 0.004012415651232004, 0.020472360774874687, -0.009526879526674747, 0.03618823364377022, 0.038830727338790894, -0.009429524652659893, -0.009832852520048618, -0.0051945834420621395, -0.01543771754950285, 0.010097102262079716, -0.007134729065001011, -0.01596621610224247, -0.01044479850679636, 0.01206506323069334, -0.013337631709873676, 0.00975635927170515, -0.008122186176478863, 0.0032196680549532175, 0.0038246598560363054, -0.037829361855983734, 0.004130632616579533, 0.19304101169109344, -0.008866257034242153, 0.010027562268078327, 0.01870606280863285, -0.004008939024060965, 0.026049410924315453, 0.021724067628383636, -0.0039880769327282906, -0.023712890222668648, 0.007148636970669031, -0.026105040684342384, 0.01281608734279871, -0.0033031152561306953, 0.0009439955465495586, -0.007809259928762913, -0.0003103189810644835, -0.03810751810669899, -0.009492110460996628, 0.005889975931495428, -0.03769028186798096, 0.008852348662912846, -0.0110080661252141, 0.010097102262079716, -0.014366813004016876, 0.028983967378735542, -0.004533960483968258, -0.012517068535089493, -0.007586734369397163, 0.021348554641008377, 0.020986951887607574, -0.023810245096683502, -0.014394628815352917, -0.0046278382651507854, -0.0014090394834056497, -0.029846254736185074, 0.00794833805412054, 0.02090350352227688, 0.011251453310251236, 0.006599276792258024, -0.004575683735311031, 0.01231540460139513, -0.026369290426373482, 0.013956530950963497, 0.015882769599556923, -0.013866130262613297, 0.026897789910435677, -0.006404566578567028, -0.001506394357420504, -0.02942901849746704, 0.009262630715966225, -0.022836696356534958, 0.013240276835858822, 0.043003082275390625, 0.010034516453742981, 0.010208364576101303, -0.008942750282585621, 0.01443635206669569, 0.010403074324131012, -0.012398852035403252, 0.004408789798617363, -0.026856064796447754, 0.029289940372109413, -0.014644970186054707, 0.02158498950302601, -0.00869936216622591, 0.016077479347586632, 0.0009605111554265022, -0.016870226711034775, -0.005354523658752441, -0.00838643591850996, -0.004391404800117016, -0.010702093131840229, -0.004008939024060965, 0.005521418061107397, -0.011592196300625801, -0.006641000043600798, 0.028358113020658493, -0.022349920123815536, 0.009707681834697723, -0.009798082523047924, 0.000991803826764226, -0.01870606280863285, 0.008720224723219872, -0.004085431806743145, -0.01310119777917862, -0.03571536764502525, 0.006807894445955753, -0.024116218090057373, -0.018261011689901352, 0.015980124473571777, -0.013462802395224571, -0.011668689548969269, -0.006439336109906435, -0.019971678033471107, 0.0015437717083841562, -0.022753247991204262, 0.03429676592350006, 0.009805036708712578, -0.002122686244547367, -0.011647827923297882, -0.01281608734279871, -0.0015681105433031917, 0.03157082945108414, 0.01490921899676323, -0.016188742592930794, 0.0010439582401886582, 0.02113993838429451, 0.004419220611453056, 0.026285843923687935, -0.011640873737633228, 0.027231577783823013, -0.0037864132318645716, -0.0026772618293762207, -0.014867495745420456, 0.018747786059975624, 0.017565619200468063, -0.012266727164387703, -0.022530723363161087, -0.00018743006512522697, 0.017621250823140144, 0.013031658716499805, -0.016439083963632584, -0.00656103016808629, -0.0033291925210505724, -0.010076239705085754, -0.014575431123375893, -0.02826075814664364, 0.020861780270934105, -0.004269711207598448, -0.009596419520676136, 0.006122932769358158, -0.04322560876607895, -0.00838643591850996, -0.015813229605555534, -0.012955165468156338, 0.009603372775018215, 0.006355889141559601, -0.03385171666741371, 0.0341855026781559, -0.006352412048727274, -0.005337138660252094, 0.007677135057747364, 0.006616661325097084, 0.00143077049870044, -0.003044081386178732, -0.004992919508367777, 0.027412379160523415, -0.008261265233159065, -0.0028719718102365732, -0.02144591137766838, -0.03184898570179939, -0.018288828432559967, -0.016814595088362694, -0.02058362402021885, 0.019304100424051285, -0.02756536565721035, -0.031014513224363327, -0.02981843799352646, 0.00046808618935756385, 0.022224750369787216, -0.030263489112257957, 0.022836696356534958, 0.009937161579728127, -0.008511606603860855, -0.029484650120139122, 0.003970692399889231, -0.17857684195041656, 0.007635411806404591, 0.013135967776179314, -0.009394755586981773, 0.013226368464529514, 0.023587720468640327, 0.029206492006778717, -0.0042592803947627544, -0.0004863402573391795, 0.0009326954605057836, 0.022989682853221893, 0.018608707934617996, -0.042446769773960114, -0.02232210524380207, -0.01564633473753929, 0.025214938446879387, -0.015799321234226227, 0.0204028207808733, 0.03752338886260986, 0.018553076311945915, 0.005118090193718672, -0.00817086361348629, -0.0021279016509652138, 0.005587480030953884, 0.0027641858905553818, 0.0037481666076928377, 0.0035743184853345156, -0.008003969676792622, 0.017037121579051018, -0.02426920458674431, 0.0002568606869317591, 0.014005208387970924, 0.009895438328385353, -0.03031912073493004, 0.026285843923687935, 0.007816214114427567, -0.007162544876337051, -0.009839806705713272, 0.014102563261985779, 0.012663100846111774, 0.014728416688740253, -0.010528245009481907, 0.01000670064240694, 0.0021296401973813772, 0.001809759414754808, 0.02856673114001751, -0.020110756158828735, -0.0046799927949905396, -0.0041341097094118595, -0.02026374265551567, -7.671050843782723e-05, -0.0018288827268406749, 0.02917867712676525, 0.004401835612952709, 0.03098669834434986, 0.015395994298160076, 0.011578287929296494, -0.006352412048727274, -0.02276715636253357, -0.001680242596194148, -0.002044454449787736, -0.007656273432075977, 0.009937161579728127, -0.02620239555835724, 0.012725685723125935, -0.003883768105879426, 0.0029814960435032845, 0.011181914247572422, -0.020430637523531914, 0.022753247991204262, 0.011800813488662243, 0.00913746003061533, 0.0431421622633934, 0.010931572876870632, -0.0037725053261965513, -0.008845395408570766, -0.021724067628383636, 0.021112121641635895, -0.03023567423224449, -0.016939766705036163, -0.05207100510597229, 0.042752742767333984, -0.011063697747886181, -0.008782809600234032, 0.00867154635488987, 0.022753247991204262, -0.009909345768392086, -0.0068044173531234264, -0.01381745282560587, -0.0027694012969732285, -0.012941258028149605, -0.005924745462834835, -0.0028267712332308292, -0.0017741206102073193, 0.014561522752046585, 0.03073635697364807, 0.009631188586354256, 0.006248103454709053, 0.006421951577067375, -0.0008331673452630639, 0.0034769633784890175, -0.02826075814664364, -0.014533706940710545, 0.03529813140630722, 0.023810245096683502, 4.759093644679524e-05, -0.012162418104708195, 0.006766170728951693, 0.015576796606183052, 0.0014055625069886446, -0.00392896868288517, 0.020166387781500816, 0.026716986671090126, -0.005201537162065506, 0.011668689548969269, 0.017384817823767662, -0.005427539814263582, -0.015284731052815914, 0.0320436954498291, -0.012697870843112469, 0.0497623011469841, -0.0007405931828543544, -0.02026374265551567, -0.012252818793058395, -3.403621303732507e-05, -0.028705809265375137, -0.1255044788122177, 0.0007905745878815651, -0.0016706809401512146, 0.006940018851310015, 0.003452624659985304, -0.0013542772503569722, -0.0008505521691404283, 0.01870606280863285, 0.010361351072788239, 0.00131689989939332, -0.01770469732582569, -0.029707174748182297, 0.0016359112923964858, -0.01053519919514656, 0.008692408911883831, -0.017287462949752808, -0.002148763509467244, -0.02169625274837017, -0.0006580153130926192, 0.03635513037443161, -0.01770469732582569, -0.01022922620177269, 0.01784377545118332, -0.017537804320454597, 0.016981489956378937, -0.009575556963682175, -0.026341475546360016, 0.009958023205399513, 0.01499266643077135, 0.009832852520048618, -0.00260424567386508, 0.005681358277797699, 0.011049789376556873, 6.367189052980393e-05, 0.010966342873871326, -0.00157506437972188, -0.032015878707170486, -0.0032648686319589615, 0.029707174748182297, -0.048121172934770584, 0.01720401458442211, 0.0037481666076928377, 0.005625726655125618, -0.014672785997390747, -0.0065575530752539635, -0.0017367432592436671, -0.02737065590918064, 0.012044201605021954, 0.02876144088804722, -0.03513123840093613, -0.02942901849746704, -0.006463674828410149, -0.04547868296504021, -0.012829994782805443, 0.016300003975629807, -0.0003724697162397206, 0.033517926931381226, 0.00919309165328741, -0.007197314407676458, -0.0041341097094118595, 0.003532594768330455, 0.01820538006722927, 0.00975635927170515, 0.040444038808345795, 0.011807767674326897, 0.002433874411508441, -0.013928715139627457, -0.013490618206560612, 0.02495068870484829, -0.009095736779272556, -0.016745055094361305, -0.009610326960682869, -0.028594547882676125, 0.03529813140630722, -0.023865876719355583, 0.010931572876870632, -0.02506195195019245, -0.005827390588819981, 0.01235017366707325, 0.003803797997534275, 0.0067696478217840195, -0.03310069069266319, 0.01596621610224247, -0.011550472117960453, 0.024241389706730843, 0.017982855439186096, 0.02257244661450386, -0.009874575771391392, -0.005792621057480574, 0.001203898573294282, 0.005312799941748381, 0.007350300904363394, -0.01184949092566967, -0.028399838134646416, 0.011494841426610947, 0.04333687201142311, 0.015674151480197906, -0.007517194841057062, -0.0037481666076928377, -0.008734132163226604, -0.015507256612181664, 0.016981489956378937, -0.05543670430779457, 0.027857430279254913, 0.008574191480875015, 0.004332296550273895, 0.0033326693810522556, -0.012690916657447815, 0.008177817799150944, -0.01976305991411209, -0.010375258512794971, 0.004819071386009455, -0.012329312041401863, 0.02937338687479496, -0.016439083963632584, -0.020500175654888153, -0.009707681834697723, -0.007412886247038841, -0.019623981788754463, -0.028650179505348206, -0.005027689039707184, -0.001980130560696125, 0.008782809600234032, -0.002527752425521612, 0.02495068870484829, -0.01578541472554207, -0.03999898582696915, -0.015451625920832157, 0.015548980794847012, 0.026216303929686546, 0.00339873181656003, -0.03629949688911438, 0.011425301432609558, -0.02956809662282467, 0.000969203538261354, 0.008824532851576805, 0.009930207394063473, 0.010243134573101997, 0.008372527547180653, -0.008581145666539669, 0.02282278798520565, 0.055909570306539536, -0.029289940372109413, -0.019818691536784172, 0.015090021304786205, -0.00972854346036911, 0.013386309146881104, 0.026842158287763596, -0.01078554056584835, 0.002835463732481003, -0.0027120315935462713, -0.0028945719823241234, 0.0013977392809465528, 0.027398472651839256, 0.016550345346331596, 0.0004476590547710657, 0.018497444689273834, -0.008880164474248886, 0.02826075814664364, -0.01657816208899021, -0.004600022453814745, -0.03118140809237957, 0.00945038627833128, -0.01859479956328869, 0.01909548230469227, 0.00628287298604846, 0.011063697747886181, -0.0199577696621418, -0.022725433111190796, -0.014533706940710545, -0.030708540230989456, -0.003845521481707692, 0.012364082038402557, 0.017384817823767662, -0.000176021276274696, 0.012419713661074638, 0.016258280724287033, 0.026411013677716255, -0.001411647186614573, 0.0006154225557111204, -0.024171849712729454, 0.00920004490762949, -0.01549334917217493, -0.015868861228227615, -0.027481919154524803, 0.00339177786372602, 0.03565973788499832, 0.0017228353535756469, 0.006647954229265451, 0.015688059851527214, -0.0025503525976091623, 0.01446416787803173, 0.004864271730184555, -0.002051408402621746, -0.004175832960754633, -0.00656450679525733, -0.0037342587020248175, 0.009846760891377926, -0.0028876180294901133, -0.01438072044402361, 0.019596165046095848, 0.02942901849746704, -0.0031449133530259132, 0.011161052621901035, 0.003876814153045416, -0.023087037727236748, -0.008713270537555218, -0.004141063429415226, -0.026021594181656837, -0.02337910234928131, -0.0008049170137383044, 0.01695367321372032, -0.00234695035032928, 0.0008579407003708184, 0.02026374265551567, 0.014325089752674103, -0.01659206859767437, 0.004533960483968258, 0.0109176654368639, -0.009624234400689602, -0.0010404812637716532, 0.04011024907231331, 0.013205506838858128, 0.0447554737329483, 0.004367066081613302, 0.012753501534461975, 0.012051154859364033, 0.010396121069788933, 0.011453117243945599, 0.020611438900232315, 0.016564253717660904, -0.006710539571940899, 0.015882769599556923, 0.008226495236158371, -0.04458858072757721, 0.0052293529734015465, 0.003932445775717497, -0.03354574367403984, -0.009798082523047924, 8.06220923550427e-05, -0.024241389706730843, 0.026856064796447754, 0.018719971179962158, -0.029039599001407623, 0.01260051503777504, 0.006449767388403416, 0.02582688443362713, 0.00014940077380742878, 0.001514217583462596, 0.007788398303091526, -0.028956150636076927, 0.004846887197345495, -0.018511353060603142, 0.03988772630691528, -0.011828629299998283, -0.014644970186054707, 0.007190360222011805, 0.009860668331384659, 0.04183482378721237, -0.0209452286362648, -0.007531102746725082, 0.03666110336780548, 0.020041218027472496, 0.0424189530313015, -0.008789763785898685, -0.00922786071896553, -0.021904869005084038, 0.02575734443962574, -0.015854952856898308, 0.006484536919742823, -0.024352651089429855, 0.0010908972471952438, 0.002880664309486747, 0.0009674650500528514, -0.01684240996837616, 0.03179335221648216, -0.017509987577795982, 0.015618519857525826, -0.022614169865846634, 0.021042583510279655, 0.003301376709714532, -0.014088655821979046, 0.004523529205471277, -0.01596621610224247, -0.018859049305319786, 0.004878179635852575, 0.0007323354366235435, -0.007545010652393103, 0.00025903378264047205, -0.02493678219616413], "07cf6531-4e64-4af4-b460-1d18d4faca07": [0.021208468824625015, -0.013596216216683388, -0.01306702196598053, 0.015726560726761818, -0.023745885118842125, 0.015618008561432362, -0.007273025810718536, -0.01853536069393158, -0.009505138732492924, -0.023379521444439888, 0.021032070741057396, 0.006832030601799488, 0.023284537717700005, 0.004657586105167866, -0.004080899991095066, 0.015251643024384975, 0.03829193860292435, -0.014736018143594265, 0.03869900852441788, -0.010034332983195782, -0.0034380650613456964, 0.0052240947261452675, -0.014844571240246296, 0.010468543507158756, -0.0019658200908452272, 0.011554069817066193, 0.02797943726181984, -0.022646790370345116, 0.020516445860266685, -0.008019325323402882, -0.0027205999940633774, 0.014043995179235935, 0.01772121526300907, 0.00249671027995646, -0.02441077120602131, 0.0020862456876784563, 0.006272306200116873, -0.011560854502022266, 0.004593132995069027, -0.010081824846565723, 0.005190172232687473, 0.006954152137041092, -0.01702919229865074, -9.630864951759577e-05, -0.019498765468597412, 0.016988486051559448, 0.007551191840320826, -0.020638566464185715, -0.017056331038475037, 0.013949011452496052, 0.031398843973875046, -0.0030479540582746267, -0.04214555397629738, 0.00209981482475996, -0.025116363540291786, 0.006106085143983364, 0.018752465024590492, 0.019078122451901436, -0.001697830855846405, 0.018738895654678345, 0.014858139678835869, 0.019987251609563828, 0.007646175101399422, 0.0075715454295277596, -0.035713814198970795, -0.01576726883649826, -0.00509179662913084, -0.016405014321208, -0.016567843034863472, -0.000857396109495312, 0.03834621235728264, 0.023854438215494156, -0.013799752108752728, 0.0011940788244828582, 0.01876603439450264, -0.01629646308720112, -0.026147613301873207, 0.014505344443023205, -0.005563321989029646, 0.012117186561226845, -0.0052240947261452675, -0.032430097460746765, -0.010665294714272022, 0.006251952610909939, 0.028685029596090317, -0.004033408127725124, -0.008324628695845604, 0.032077301293611526, -0.023800162598490715, -0.025455590337514877, 0.020570721477270126, 0.006123046390712261, 0.017137745395302773, 0.01744983345270157, -0.00021032070799265057, 0.022253287956118584, -0.019064554944634438, 0.01599794253706932, -0.009511923417448997, -0.03172450512647629, -0.025224914774298668, -0.0038705794140696526, -0.028874997049570084, -0.004257298074662685, -0.03880756348371506, 0.01830468513071537, 0.005766857881098986, -0.011900081299245358, 0.029146378859877586, -0.010726355947554111, -0.015360196121037006, 0.02388157695531845, -0.003510998794808984, -0.046759042888879776, -0.016988486051559448, -0.023990130051970482, 0.039458878338336945, -0.01663568988442421, -0.024207234382629395, -0.02128988318145275, 0.003656866494566202, 0.0058991564437747, 0.0010439709294587374, -0.017626231536269188, -0.0005457313382066786, 0.011628699488937855, -0.0015036234399303794, -0.025659125298261642, -0.012076479382812977, -0.010271791368722916, 0.03696216642856598, 0.003392269369214773, 0.01796545833349228, -0.005356393288820982, -0.008731701411306858, 0.010570311918854713, -0.020692843943834305, 0.0006712453323416412, -0.019960112869739532, -0.020421462133526802, 0.020448600873351097, 0.001667300472036004, 0.0038196954410523176, -0.028630753979086876, -0.022701067849993706, 0.0322129912674427, -0.005353000946342945, 0.0027256885077804327, -0.011038444936275482, -0.014749587513506413, 0.033298514783382416, -0.009973271749913692, 0.016594981774687767, -0.00806003250181675, 0.02739596739411354, -0.004830591846257448, 0.009511923417448997, -0.001021921169012785, 0.000775133550632745, -0.008182154037058353, 0.016079356893897057, 0.018277548253536224, 0.006499588023871183, 0.00019017911108676344, -0.0013229850446805358, 0.029146378859877586, 0.011085936799645424, -0.006282482761889696, -0.032810028642416, -0.00019908380636479706, 0.017571955919265747, 0.030259042978286743, -0.039567429572343826, 0.01692063920199871, -0.011961141601204872, 0.018453946337103844, 0.02249753102660179, 0.032891444861888885, -0.00886739231646061, 0.0070627047680318356, -0.037776313722133636, -0.012300369329750538, 0.025401312857866287, 0.014437498524785042, -0.022931741550564766, -0.01424753200262785, -0.014152548275887966, -0.009525492787361145, -0.004715254530310631, 0.015346626751124859, -0.0006822702125646174, 0.0076326061971485615, -0.019037416204810143, -0.007069489452987909, -0.6378552317619324, -0.005179995205253363, -0.02233470231294632, -0.015333057381212711, -0.0004939992213621736, -0.007123766001313925, 0.021032070741057396, 0.013223065994679928, -0.0075715454295277596, -0.0036229437682777643, -0.026052629575133324, -0.002400030614808202, 0.005892371758818626, -0.022307563573122025, -0.019756577908992767, -0.008351767435669899, -0.0004978155484423041, -0.024451477453112602, 0.008657071739435196, -0.02865789271891117, -0.03780344873666763, 0.018372531980276108, -0.0060144937597215176, 0.006441919598728418, -0.01565871573984623, 0.0018420022679492831, 0.02118133008480072, 0.004847553092986345, 0.010393913835287094, 0.021791938692331314, -0.03424835205078125, 0.02595764584839344, 0.015495887026190758, 0.023108139634132385, 0.048441607505083084, -0.007517268881201744, -0.03172450512647629, 0.018223270773887634, 0.02245682291686535, 0.019607316702604294, -0.02192762866616249, -0.023216692730784416, 0.023678040131926537, 0.008155015297234058, 0.01128268800675869, 0.015902958810329437, 0.02278248220682144, -0.0012373302597552538, 0.0046779396943748, 0.024139389395713806, -0.007992186583578587, -0.0030666114762425423, -0.025509865954518318, -0.013718337751924992, -0.0037959495093673468, 0.011649053543806076, 0.03989308699965477, -0.01088239997625351, -0.0057532889768481255, 0.007754727732390165, 0.00814823154360056, 0.032810028642416, -0.006323190405964851, 0.008942021988332272, -0.02009580470621586, 0.023786593228578568, -0.009376232512295246, -0.004141960758715868, 0.011655837297439575, -0.02884785830974579, 0.021724093705415726, 0.023393090814352036, 0.01773478463292122, -0.02175123244524002, 0.0009896946139633656, -0.006815069355070591, 0.04361101612448692, -0.012680303305387497, -0.007551191840320826, 0.02998766116797924, 0.015916528180241585, -0.020747119560837746, -0.03959456831216812, -0.025007810443639755, 0.010997737757861614, -0.023732317611575127, -0.01209004782140255, 0.029227793216705322, -0.004454049747437239, 0.0005457313382066786, 0.00806003250181675, 0.015523024834692478, -0.0008972552604973316, 0.011058798059821129, 0.03286430612206459, 0.016092926263809204, -0.014613896608352661, -0.0030309928115457296, 0.0075918990187346935, -0.03275575488805771, 0.003419407643377781, -0.020217925310134888, 0.0030954459216445684, -0.009118420071899891, 0.013745475560426712, -0.008528165519237518, -0.024071544408798218, 0.0008548519108444452, 0.04542927071452141, -0.036582235246896744, 0.0073883626610040665, -0.011615130119025707, -0.009993625804781914, -0.010142885148525238, 0.014043995179235935, -0.020760688930749893, 0.02768091857433319, -0.014722449705004692, 0.017802629619836807, 0.007707236334681511, 0.02313527837395668, -0.0016520351637154818, 0.017409127205610275, -0.007184826768934727, 0.030828945338726044, 0.039404600858688354, 0.014736018143594265, -0.0004927271511405706, -0.011065582744777203, -0.007462992798537016, -0.00500698946416378, -0.010482112877070904, 0.024220803752541542, -0.000814568717032671, 0.007693666964769363, -0.018521791324019432, 0.039920225739479065, -0.002617135876789689, 0.02510279417037964, -0.041819896548986435, -0.02435649372637272, 0.0035618830006569624, 0.017707645893096924, 0.015075244940817356, -0.017056331038475037, -0.021479850634932518, -0.01848108321428299, 0.001251747366040945, -0.043203942477703094, 0.0008192330715246499, -0.012592104263603687, -0.01628289371728897, -0.004755961708724499, 0.003039473434910178, 0.01830468513071537, -0.006092515774071217, -0.009050575084984303, 0.001969212433323264, -0.008297490887343884, -0.006594571750611067, 0.01766693964600563, 0.02400369755923748, -0.016961347311735153, 0.015319488942623138, 0.01652713678777218, -0.010081824846565723, -0.008534950204193592, 0.01796545833349228, 0.005298724863678217, -0.041874174028635025, 0.010624587535858154, -0.011472655460238457, -0.003261666977778077, 0.03495394438505173, -0.030937496572732925, -0.0014374741585925221, 0.002768091857433319, -0.019417349249124527, -0.014233962632715702, 0.011140212416648865, -0.01099095307290554, 0.024532891809940338, -0.013318049721419811, -0.005288547836244106, 0.022185441106557846, 7.21387259545736e-05, -0.00839925929903984, 0.01628289371728897, 0.012246092781424522, 0.019213814288377762, 0.002240594010800123, 0.01493955496698618, 0.0029207440093159676, 0.005895764101296663, -4.804831769433804e-05, -0.011119859293103218, 0.015862252563238144, 0.030720392242074013, 0.00907092820852995, 0.00608912343159318, 0.010739925317466259, -0.00648941146209836, 0.015061676502227783, -0.015061676502227783, 0.02435649372637272, -0.033759865909814835, 0.010733140632510185, -0.011913650669157505, 0.03690789267420769, -0.0161200650036335, -0.007164473179727793, -0.021317021921277046, 0.0010465150699019432, -0.02187335304915905, 0.0052444483153522015, 0.03373272716999054, 0.022253287956118584, 0.005736327730119228, -0.022402547299861908, -0.0063197980634868145, 0.01576726883649826, -0.0073273018933832645, -0.015414472669363022, 0.0033532583620399237, -0.008222861215472221, 0.009152342565357685, -0.005719366017729044, 0.0215884018689394, 0.019363073632121086, -0.023854438215494156, 0.01447820570319891, -0.022999586537480354, -0.013976150192320347, 0.017571955919265747, 0.0020421461667865515, 0.009627260267734528, 0.014831001870334148, -0.018168995156884193, 0.02797943726181984, -0.027816608548164368, -0.009579768404364586, 0.012123971246182919, 0.010454974137246609, -0.02365090325474739, -0.0026595392264425755, 0.008236430585384369, 0.004912006203085184, -0.0013280734419822693, 0.012191816233098507, 0.025984784588217735, -0.01645929180085659, 0.004752569366246462, -0.0010465150699019432, -0.003500822000205517, 0.011689760722219944, -0.018616775050759315, -0.0022999586071819067, 0.007524053566157818, 0.016133632510900497, 0.025523435324430466, 0.015020969323813915, -0.0076122526079416275, -0.005950040649622679, 0.00349064520560205, 0.04564637690782547, -0.007435854524374008, 0.014491775073111057, 0.00450154161080718, -0.025238484144210815, -0.030286181718111038, -0.020991362631320953, -0.023610195145010948, 0.007123766001313925, -0.010468543507158756, 0.010753493756055832, 0.007340870797634125, -0.0027969260700047016, 0.009796873666346073, 0.01260567270219326, 0.0016410102834925056, -0.0221583042293787, -0.030883220955729485, 0.024098681285977364, -0.01329091191291809, -0.0047627463936805725, -0.015495887026190758, -0.047057561576366425, -0.004850945435464382, -0.018291117623448372, 0.02958058938384056, -0.006818461697548628, 0.0011694849235937, 0.007049135863780975, -0.004230159800499678, 0.00045244392822496593, 0.008161799982190132, 0.009009867906570435, -0.03158881142735481, 0.036419402807950974, 0.0087791932746768, -0.010061470791697502, 0.016337169334292412, -0.02508922480046749, 0.01928165927529335, 0.028793582692742348, -0.014261100441217422, -0.0004426911473274231, -0.007028782274574041, 0.008283921517431736, -0.011954357847571373, -0.0021286490373313427, -0.028712168335914612, 0.01289062388241291, -0.009247326292097569, -0.00508161960169673, 0.015441610477864742, -0.013019530102610588, 0.006170538254082203, 0.02498067170381546, -0.004043585155159235, -0.008256783708930016, -0.007788650691509247, -0.022171873599290848, 0.0022388978395611048, 0.08917597681283951, 0.015020969323813915, -0.022687498480081558, 0.013256988488137722, 0.013799752108752728, 0.011513362638652325, -0.02917351759970188, -0.03291858360171318, 0.022293994203209877, -0.0007505395915359259, 0.015984373167157173, -0.011330179870128632, 0.012056125327944756, -0.0029716279823333025, 0.017476972192525864, -0.020977793261408806, -0.006072162184864283, -0.006523333955556154, -0.008053247816860676, -0.0007679249974898994, -0.0012822778662666678, 0.006421566009521484, 0.009077712893486023, 0.02464144490659237, -0.03299999609589577, -0.011085936799645424, 0.028929274529218674, 0.011757605709135532, 0.016988486051559448, -0.031398843973875046, -0.002506887074559927, 0.018223270773887634, 0.024329356849193573, 0.0241665281355381, -0.0007369705126620829, 0.0027630033437162638, 0.016879932954907417, 0.01409827172756195, -0.005196956917643547, 0.00016441906336694956, 0.015414472669363022, 0.019213814288377762, 0.02088281139731407, -0.0187117587774992, 0.012815994210541248, -0.008928453549742699, -0.023691609501838684, 0.002997070085257292, -0.01825040951371193, -0.00016017872258089483, 0.03688075393438339, 0.0032497940119355917, -0.01306702196598053, -0.005739720072597265, 0.03552384674549103, -0.0067031243816018105, 0.007544407155364752, 0.0063197980634868145, -0.016025081276893616, 0.01892886310815811, -0.008582442067563534, 0.0027104231994599104, 0.02071998082101345, 0.005756681319326162, -0.030014799907803535, -0.01910526119172573, -0.01407113391906023, -0.007965048775076866, -0.026405425742268562, 0.024953532963991165, -0.01346730999648571, -0.01445106789469719, -0.015360196121037006, 0.0011737252352759242, 0.01168297603726387, 0.009369447827339172, 0.019376643002033234, -0.026147613301873207, -0.010305714793503284, -0.0073680090717971325, -0.010943461209535599, -0.02664966881275177, 0.019987251609563828, -0.020706413313746452, -0.015129521489143372, -0.010000410489737988, -0.0010482112411409616, 0.007897202856838703, -0.019322367385029793, 0.009593337774276733, -0.01347409375011921, 0.027585934847593307, 0.008799547329545021, -0.011506577953696251, 0.0068863071501255035, -0.015197367407381535, -0.00768688227981329, -0.0047627463936805725, 0.006614925339818001, -0.019213814288377762, 0.013121298514306545, -0.0426069051027298, -0.005665089935064316, -0.019960112869739532, 0.010434621013700962, -0.02020435594022274, 0.005763465538620949, 0.01468174159526825, -0.011452301405370235, -0.01732771284878254, 0.011866158805787563, -0.017585525289177895, -0.005719366017729044, 0.00886739231646061, -0.005291940178722143, 0.005722758360207081, 0.007666528690606356, 0.007089843042194843, 0.02434292621910572, -0.0026425779797136784, -0.012327507138252258, -0.03172450512647629, 0.0038977174554020166, -0.00995970331132412, -0.01548231765627861, 0.006384251173585653, 0.009023436345160007, -0.015224505215883255, 0.01991940662264824, -0.011377671733498573, 0.011146997101604939, 0.020747119560837746, 0.005431023426353931, -0.011425163596868515, -0.04173848405480385, -0.007211964577436447, -0.01864391192793846, -0.009891857393085957, -0.008039678446948528, 0.005325863137841225, -0.010529604740440845, -0.009111635386943817, -0.0012593800202012062, -0.01882031001150608, -0.004270866978913546, -0.0221583042293787, -0.0175583865493536, 0.006353720556944609, 0.005936471279710531, -0.0033770042937248945, -0.019498765468597412, -0.01974300853908062, -0.019946543499827385, 0.0048814755864441395, -0.011092720553278923, -0.024302218109369278, -0.0036941813305020332, -0.021113485097885132, 0.030828945338726044, -0.015523024834692478, 0.03926891088485718, -0.01537376455962658, 0.009342310018837452, -0.0015477229608222842, 0.002366107888519764, -0.005159641616046429, -0.0011101202107965946, -0.013589431531727314, -0.04396381229162216, -0.021846214309334755, 0.018576066941022873, 0.026052629575133324, 0.012293584644794464, -0.0033023743890225887, -0.012754932977259159, 0.035550981760025024, -0.0024882296565920115, -0.015265212394297123, -0.031751640141010284, -0.03256578743457794, -0.02464144490659237, 0.007313732989132404, -0.02480427362024784, 0.009769735857844353, 0.005983963143080473, 0.009152342565357685, 0.05074835196137428, 0.003097142092883587, -0.002057411475107074, -0.01738198846578598, 0.004046977497637272, -0.016907071694731712, 0.016567843034863472, -0.011893296614289284, -0.0016986789414659142, -0.011689760722219944, 0.02670394442975521, -0.016215048730373383, -0.010305714793503284, -0.002980108605697751, -0.004182668402791023, -0.003938424866646528, -0.007374793756753206, -0.017246298491954803, -0.004365850705653429, 0.013236635364592075, -0.00797183346003294, -0.019810853525996208, 0.014342514798045158, -0.017829768359661102, -0.0014281454496085644, -0.010454974137246609, 0.0024288648273795843, -0.01887458749115467, -0.0333799310028553, -0.011730467900633812, -0.006136615294963121, 0.022755343466997147, -0.013820105232298374, -0.010692433454096317, 0.019593747332692146, -0.014817432500422001, 0.050449829548597336, 0.01041426695883274, 0.03546956926584244, 0.004830591846257448, -0.03538815304636955, -0.0012941508321091533, 0.020136510953307152, -0.0013738691341131926, -0.02384086884558201, 0.024763567373156548, 0.008121092803776264, -0.0012118882732465863, 0.008480673655867577, -0.020394323393702507, 0.0022999586071819067, -0.022321132943034172, -0.03009621426463127, 0.0169749166816473, 0.024546461179852486, -0.007259456440806389, -0.016405014321208, 0.005980570800602436, -0.03405838459730148, 0.016717104241251945, -0.00837890524417162, 0.006754008587449789, -0.013840459287166595, -0.009444078430533409, -0.020299339666962624, 0.016486428678035736, 0.01476315688341856, 0.0253334678709507, 0.015590869821608067, -0.01940378174185753, -0.028820721432566643, -0.008426397107541561, -0.01347409375011921, -0.002074372721835971, -0.006038239691406488, 0.022755343466997147, -0.0018369138706475496, -0.003958778455853462, -0.015740130096673965, -0.007822573184967041, -0.014776725322008133, 0.002322008367627859, -0.016676396131515503, 0.030666114762425423, 0.01605221815407276, 0.012293584644794464, 0.010570311918854713, 0.010977383702993393, 0.010638156905770302, 0.015360196121037006, -0.012056125327944756, -0.003385484917089343, -0.021900491788983345, 0.002966539701446891, -0.0026765004731714725, 0.01550945546478033, -0.005098580848425627, -0.031561676412820816, -0.006553864572197199, -0.01355550903826952, -0.006028062663972378, 0.00033710678690113127, 0.002593389945104718, -0.04746463522315025, -0.024668583646416664, -0.005570106208324432, 0.00497985165566206, 0.019010277464985847, -0.005953432992100716, 0.021262744441628456, -0.008738486096262932, 0.03869900852441788, -0.03131743147969246, 0.011377671733498573, -0.019661594182252884, 0.008819900453090668, -0.032375819981098175, 0.007992186583578587, 0.015414472669363022, -0.023759454488754272, -0.0022541629150509834, -0.03633799031376839, -0.047111839056015015, -0.007666528690606356, 0.01750411093235016, 0.0005470034666359425, -0.007205180358141661, -0.0019675162620842457, 0.009973271749913692, -0.004108038265258074, 0.014328946359455585, -0.0035618830006569624, -0.02370517887175083, 0.022117596119642258, 0.019444487988948822, -0.004131784196943045, 0.018630344420671463, -0.022402547299861908, 0.01027857605367899, -0.0015129521489143372, 0.016025081276893616, 0.014315376989543438, -0.038427628576755524, 0.03253864869475365, -0.008887745440006256, 0.020923517644405365, -0.005325863137841225, -0.006848991848528385, -0.014464637264609337, -0.024424340575933456, -0.012395352125167847, -0.005027343053370714, 0.0033787002321332693, -0.010007195174694061, 0.019145969301462173, 0.035876642912626266, -0.006065377499908209, 0.012015418149530888, -0.012008633464574814, 0.01001397892832756, 0.003778988029807806, -0.0113708870485425, -0.024736428633332253, -0.0075715454295277596, 0.0003731496399268508, 0.03563239797949791, -0.015387333929538727, -0.011146997101604939, -0.008019325323402882, -0.018033303320407867, -0.027653779834508896, -0.030584700405597687, 0.011621914803981781, 0.028386510908603668, 0.03636512905359268, 0.0041758837178349495, 0.008860607631504536, 0.027138154953718185, -0.0351167730987072, 0.012788855470716953, -0.0010473631555214524, -0.0117983128875494, -0.011472655460238457, 0.0005923750577494502, 0.005498868878930807, 0.006774362176656723, -0.026337578892707825, 0.004990028217434883, 0.006954152137041092, 0.0012458109995350242, -0.008860607631504536, 0.00851459614932537, -0.008270353078842163, 0.006543687544763088, -0.01347409375011921, 0.020638566464185715, 0.027423106133937836, 0.00648941146209836, 0.0005771098076365888, -0.016554275527596474, -0.0062790908850729465, -0.0021065992768853903, 0.004481188021600246, -0.028712168335914612, -0.026229027658700943, 0.0044404808431863785, -0.008121092803776264, 0.00917948130518198, -0.02181907743215561, -0.011038444936275482, 0.004925575107336044, -0.031805917620658875, 0.03897039219737053, -0.001310264109633863, 0.006109477020800114, 0.02388157695531845, 0.00034240720560774207, -0.037776313722133636, -0.02285032719373703, -0.000775133550632745, 0.00955941528081894, -0.030313320457935333, 0.022429686039686203, -0.021724093705415726, 0.012361429631710052, -0.005905941128730774, 0.010556742548942566, -0.00437602773308754, 0.014111841097474098, 0.0011152086080983281, 0.00955941528081894, -0.008304275572299957, 0.02658182382583618, 0.013019530102610588, -0.013134866952896118, -0.00739514734596014, 0.006346935871988535, -0.017002053558826447, 0.013033099472522736, -0.008039678446948528, -0.014356084167957306, -0.007659744471311569, 0.004504933953285217, -0.004630447831004858, -0.0012330899480730295, -0.006028062663972378, -0.004986635874956846, 0.013392679393291473, -0.04249835014343262, 0.008392474614083767, 0.19875985383987427, -0.012361429631710052, 0.008799547329545021, 0.03297285735607147, -0.00668955547735095, 0.023759454488754272, 0.008066816255450249, -0.0002561163273639977, -0.02860361523926258, 0.00440316554158926, -0.022741774097085, 0.01125555019825697, -0.013752260245382786, 0.0010923107620328665, -0.012110401876270771, 0.006045023910701275, -0.04206414148211479, -0.00869099423289299, -0.002637489465996623, -0.04681331664323807, 0.014980262145400047, -0.02325739897787571, -0.0025984784588217735, -0.014803864061832428, 0.024668583646416664, 0.010400697588920593, -0.0031870370730757713, -0.0007038959302008152, 0.02625616453588009, 0.011934003792703152, -0.02141200378537178, -0.008880961686372757, -0.009281248785555363, -0.014885278418660164, -0.0238951463252306, 0.019037416204810143, 0.01990583725273609, 0.015088814310729504, 0.017354849725961685, -0.010936676524579525, 0.0221583042293787, -0.015333057381212711, 0.02222614921629429, -0.00019643359701149166, -0.012456413358449936, 0.036989305168390274, -0.00829070620238781, -0.00218801386654377, -0.01743626408278942, 0.023460935801267624, -0.03541529178619385, 0.01087561622262001, 0.042688317596912384, 0.013148436322808266, 0.020706413313746452, -0.008446751162409782, 0.012659949250519276, 0.017599094659090042, 0.0024441301357001066, 0.010170023888349533, -0.02595764584839344, 0.03804769366979599, -0.013806536793708801, 0.02705674059689045, -0.029770556837320328, 0.01001397892832756, -0.004481188021600246, 0.004847553092986345, 0.024424340575933456, -0.02009580470621586, -0.004454049747437239, -0.01778906024992466, -0.010760278441011906, -0.0007373945554718375, -0.011825451627373695, -0.022999586537480354, 0.026459701359272003, -0.017585525289177895, 0.01801973581314087, -0.007517268881201744, 0.005200348794460297, -0.03546956926584244, -0.005186779890209436, 0.0009252415038645267, -0.004640624392777681, -0.03981167450547218, -0.015414472669363022, -0.013562292791903019, -0.021669816225767136, -0.0015146483201533556, -0.0060552009381353855, -0.012354644946753979, -0.01784333772957325, -0.010556742548942566, -0.004640624392777681, -0.021330589428544044, 0.019240953028202057, 0.015034537762403488, 0.005417454056441784, -0.009905426762998104, -0.019661594182252884, -0.018603205680847168, 0.033759865909814835, 0.027558796107769012, -0.018467513844370842, 0.0063774664886295795, 0.013121298514306545, 0.002727384679019451, 0.012354644946753979, -0.012185031548142433, 0.03205016255378723, -0.007069489452987909, 0.004281044006347656, -0.015183798037469387, 0.00967475213110447, 0.011160566471517086, -0.017395557835698128, -0.021425573155283928, -0.011228411458432674, 0.014573189429938793, 0.004674547351896763, -0.01327055785804987, -0.012049340642988682, -0.004969674628227949, -0.0005270738620311022, -0.010339637286961079, -0.014016857370734215, 0.019091691821813583, 0.0003349866019561887, -0.011113074608147144, 0.021669816225767136, -0.04198272526264191, -0.010312499478459358, 0.00036170071689412, -0.004046977497637272, 0.018562497571110725, 0.007815788500010967, -0.03373272716999054, 0.034275490790605545, -0.002966539701446891, 0.002752826549112797, -0.0008294098661281168, 0.011730467900633812, 0.0011101202107965946, 0.01041426695883274, -0.00458974065259099, 0.008507811464369297, 0.000505872187204659, 0.0019318974809721112, -0.00955941528081894, -0.03783058747649193, -0.007218749262392521, -0.013236635364592075, -0.0062790908850729465, 0.0035313523840159178, -0.021615540608763695, -0.027558796107769012, -0.013060237281024456, -0.005020558834075928, 0.026798928156495094, -0.033976972103118896, 0.024139389395713806, 0.02469572052359581, -0.010543173179030418, -0.006815069355070591, 0.0017741569317877293, -0.17314143478870392, 0.013949011452496052, 0.007842927239835262, -0.023515211418271065, 0.011126643978059292, 0.03850904107093811, 0.02911924012005329, -0.004694900941103697, -0.011723683215677738, 0.004325143527239561, 0.016432153061032295, 0.018399668857455254, -0.0379934161901474, -0.017300574108958244, -0.0046168784610927105, 0.009844365529716015, -0.007747943513095379, 0.00729337939992547, 0.027775902301073074, 0.021615540608763695, 0.0013374022673815489, -0.002932616975158453, 0.01702919229865074, -0.0123749990016222, 0.012592104263603687, 0.009423724375665188, 0.01606578752398491, 0.0036534741520881653, 0.011560854502022266, -0.007490131072700024, 0.00578721147030592, 0.015740130096673965, 0.004097861237823963, -0.02647327072918415, 0.028685029596090317, -0.002708727028220892, -0.006180714815855026, -0.00758511433377862, 0.010142885148525238, 0.02128988318145275, 0.008582442067563534, 0.009240541607141495, 0.028060853481292725, -0.010577095672488213, -0.017775490880012512, 0.030828945338726044, -0.013175574131309986, -0.007456208113580942, -0.0036941813305020332, -0.007741158828139305, 0.0014179686550050974, -0.0008828380960039794, 0.009844365529716015, 0.013263773173093796, 0.0279251616448164, 0.022022612392902374, 0.01517022866755724, -0.002661235397681594, -0.0036840045358985662, -0.008270353078842163, -0.0035924133844673634, -0.012456413358449936, 0.00042233752901665866, -0.01171011384576559, -0.004284436348825693, 0.006306228693574667, -0.00768688227981329, 0.02464144490659237, -0.027789471670985222, 0.011180919595062733, 0.002717207884415984, 0.007015213370323181, 0.04323108121752739, -0.0036602586042135954, -0.02048930712044239, -0.00449136458337307, -0.02118133008480072, 0.028467925265431404, -0.01407113391906023, -0.011669406667351723, -0.03671792522072792, 0.0373963788151741, -0.012910977005958557, -0.011438732035458088, 0.009186265990138054, 0.006140007637441158, -0.02750452049076557, -0.014084702357649803, -0.010957030579447746, -0.008962376043200493, 0.00037611788138747215, -0.01679851859807968, -0.0032497940119355917, -0.0007984554395079613, 0.024600738659501076, 0.01858963631093502, 0.01869818940758705, -0.007089843042194843, 0.002406815066933632, 0.00579738849774003, -0.010936676524579525, -0.011669406667351723, -0.01905098557472229, 0.029662003740668297, 0.03818338364362717, -0.0024644837249070406, -0.018861018121242523, 0.021479850634932518, 0.027246708050370216, -0.0026663236785680056, -0.009199834428727627, 0.026324011385440826, 0.020516445860266685, 0.010068255476653576, 0.006163753569126129, 0.02549629658460617, -0.008568872697651386, -0.015075244940817356, 0.038590457290410995, -0.019485196098685265, 0.050042759627103806, -0.004623663146048784, -0.0064758420921862125, -0.0008887745789252222, 0.0011864462867379189, -0.020584290847182274, -0.12081906944513321, -0.000610608491115272, -0.015292350202798843, 0.01830468513071537, -0.020177219063043594, 0.018236840143799782, -0.00995970331132412, 0.014912416227161884, 0.006218029651790857, 0.007544407155364752, -0.0253334678709507, -0.02141200378537178, 0.008168584667146206, 0.002260947600007057, 0.013060237281024456, -0.01246319804340601, -0.003399054054170847, -0.004063938744366169, 0.0008569720666855574, 0.03351562097668648, 0.008093954995274544, -0.019078122451901436, 0.012232523411512375, -0.020163649693131447, 0.013745475560426712, 0.009735813364386559, -0.03085608221590519, -0.00325149018317461, 0.03584950417280197, 0.00947121623903513, -0.01206291001290083, -0.01668996550142765, 0.009362663142383099, -0.009043790400028229, -0.0009744293638505042, -0.011988280341029167, -0.04301397502422333, 0.004243729170411825, 0.025862662121653557, -0.04466940462589264, 0.009342310018837452, -0.0038604026194661856, 0.0362837128341198, -0.00848745834082365, 0.014233962632715702, -0.004630447831004858, -0.04442515969276428, 0.010909538716077805, 0.01548231765627861, -0.025170639157295227, -0.018033303320407867, 0.00814823154360056, -0.058455586433410645, -0.008874177001416683, 0.037504930049180984, -0.015387333929538727, 0.026961756870150566, 0.005271586589515209, -0.0013475790619850159, -0.0201500803232193, -0.0021286490373313427, 0.004613486584275961, 0.007673313375562429, 0.039051804691553116, 0.006601356435567141, 0.0034109267871826887, -0.012734579853713512, -0.010129316709935665, 0.032375819981098175, 0.004623663146048784, -0.012537827715277672, -0.011092720553278923, -0.02388157695531845, 0.016934208571910858, -0.01997368223965168, 0.008249999023973942, -0.04124999791383743, -0.02141200378537178, 0.011031660251319408, 0.0028071028646081686, 0.007361224852502346, -0.01732771284878254, 0.010156454518437386, -0.016377877444028854, 0.0092066191136837, 0.03055756352841854, 0.014600327238440514, -0.0053937085904181, -0.0058516645804047585, -0.023990130051970482, 0.0048238071613013744, 0.013596216216683388, -0.013168789446353912, -0.03932318836450577, 0.007191610988229513, 0.03690789267420769, 0.011208058334887028, 0.01858963631093502, 0.005230879411101341, -0.021398436278104782, -0.02394942194223404, -0.0025696440134197474, -0.05959538742899895, 0.02485855109989643, 0.029634865000844002, 0.01088239997625351, -0.0031802526209503412, -0.0022168480791151524, 0.022131165489554405, -0.018209701403975487, -0.026039060205221176, 0.009735813364386559, -0.01148622389882803, 0.03310855105519295, -0.027029601857066154, -0.01967516355216503, -0.02082853391766548, -0.0042131985537707806, -0.0053903162479400635, -0.029716279357671738, 0.001258531934581697, -0.004277651663869619, 0.010916323401033878, 0.004250513389706612, 0.02221257984638214, -0.0002495438093319535, -0.028413647785782814, 0.008914884179830551, 0.015726560726761818, 0.03411266207695007, 0.0033210318069905043, -0.037206411361694336, 0.008880961686372757, -0.03753206878900528, 0.014396791346371174, 0.01819613389670849, -0.008297490887343884, 0.003205694491043687, -0.002747738268226385, 0.004684723913669586, 0.0028613791801035404, 0.05579604580998421, -0.020760688930749893, -0.0067607928067445755, -0.00981044303625822, -0.009444078430533409, 0.0021116877906024456, 0.03210443630814552, -0.012626026757061481, -0.004586348310112953, 0.016201479360461235, -0.008460319600999355, 0.019078122451901436, 0.02982483245432377, -0.0002637489524204284, -0.010271791368722916, 0.0033532583620399237, -0.005169818643480539, 0.03419407457113266, -0.007707236334681511, 0.002177837071940303, -0.03861759603023529, 0.008955591358244419, -0.005040912423282862, 0.028359372168779373, 0.006513157393783331, 0.01427466981112957, -0.013772614300251007, -0.007639390882104635, -0.000394351314753294, -0.004325143527239561, -0.008324628695845604, -0.0034041423350572586, 0.003965563140809536, 0.007313732989132404, 0.009600122459232807, 0.012598888948559761, 0.008840254507958889, -0.01306702196598053, -0.004108038265258074, -0.027205999940633774, 0.015916528180241585, -0.011330179870128632, -0.024560030549764633, -0.03210443630814552, 0.007123766001313925, 0.016432153061032295, 0.007503699976950884, 0.0048238071613013744, 0.0061535765416920185, 0.0009108243393711746, 0.021859783679246902, 0.01188651192933321, -0.0031429375521838665, 0.008127877488732338, -0.00608912343159318, 0.0069270143285393715, 0.006767577491700649, -0.012320722453296185, -0.01346730999648571, 0.025767678394913673, 0.020163649693131447, -0.00034198316279798746, 0.0044608344323933125, 0.01001397892832756, -0.022348271682858467, 0.0023508428130298853, -6.805740849813446e-05, -0.026201888918876648, -0.02176479995250702, -0.004426911473274231, 0.031046049669384956, 0.006513157393783331, 0.0038841485511511564, 0.01749054156243801, 0.01864391192793846, -0.01812828704714775, -0.0009031917434185743, -0.003941817209124565, -0.017314143478870392, -0.007340870797634125, 0.014057564549148083, 0.020014390349388123, 0.027789471670985222, 0.02774876356124878, 0.01445106789469719, -0.001488358248025179, 0.029607728123664856, 0.015740130096673965, 0.029092103242874146, 0.009098066948354244, 0.007802219595760107, 0.010665294714272022, 0.009647614322602749, -0.04743749648332596, 0.0075715454295277596, 0.004810238257050514, -0.03620230033993721, -0.005715974140912294, 0.016839224845170975, -0.028983550146222115, 0.04401808977127075, 0.01934950426220894, -0.01940378174185753, 0.0139625808224082, -0.00142390513792634, 0.02911924012005329, 0.020245064049959183, -0.0068014999851584435, 0.003439761232584715, -0.008684209547936916, 0.013949011452496052, -0.02279604971408844, 0.047871705144643784, -0.023854438215494156, -0.014736018143594265, 0.013921873643994331, 0.011757605709135532, 0.027423106133937836, -0.014193255454301834, -0.016405014321208, 0.033976972103118896, 0.005237664096057415, 0.03449259698390961, -0.005726150702685118, -0.01088239997625351, -0.0012008633930236101, 0.030286181718111038, -0.015930097550153732, 0.011961141601204872, -0.025713402777910233, 0.005909333471208811, 0.019444487988948822, -0.004966282285749912, -0.017422696575522423, 0.03091035969555378, -0.006713301409035921, 0.0006432590889744461, -0.01424753200262785, 0.013921873643994331, -0.0023406657855957747, -0.016879932954907417, 0.0048204148188233376, -0.019553041085600853, -0.004833983723074198, -0.00987150426954031, -0.004610094241797924, -0.009796873666346073, -0.008908099494874477, -0.023352382704615593], "39984902-5d3c-42d9-85df-e181705d91db": [0.01783042401075363, -0.026859333738684654, -0.010828003287315369, 0.0006094513810239732, -0.021013950929045677, 0.012265941128134727, -0.005510978866368532, -0.01655968837440014, -0.026605186983942986, -0.009931799955666065, 0.010634048841893673, 0.010038809850811958, 0.022512080147862434, -0.010754434391856194, 0.002193690510466695, 0.004878954961895943, 0.042723461985588074, -0.019047655165195465, 0.028330711647868156, -0.002385972999036312, 0.011730894446372986, -0.01217899564653635, -0.016332294791936874, 0.001571699045598507, 0.0007887755637057126, 0.0002000154199777171, 0.036837950348854065, -0.02851797826588154, 0.033333394676446915, -0.018405599519610405, -0.00874800980091095, -0.0151685681194067, 0.011550315655767918, -0.01060060877352953, -0.025976506993174553, -0.005353808868676424, 0.0065476312302052975, -0.008313285186886787, 0.011744270101189613, -0.008179523050785065, 0.0034192814491689205, 0.005424033850431442, -0.013249089010059834, 0.010359837673604488, -0.024250982329249382, 0.02090694196522236, -0.006701457314193249, -0.024839533492922783, -0.038951385766267776, 0.01470040250569582, 0.020278261974453926, 0.005591235589236021, -0.02771540731191635, 0.005828662775456905, -0.02905302494764328, 0.005805254448205233, 0.003782109823077917, 0.023140760138630867, 0.0011963305296376348, 0.013389538042247295, 0.010700929909944534, 0.029374051839113235, 0.0036817886866629124, 0.014432879164814949, -0.03884437307715416, -0.02534782700240612, -0.005918951705098152, -0.01566348597407341, -0.014071722514927387, -0.002312404103577137, 0.03897813707590103, 0.010674177668988705, -0.007550843525677919, 0.0035614031367003918, 0.02199041098356247, -0.013723942451179028, -0.039352670311927795, 0.014272364787757397, -0.015650110319256783, 0.0022037227172404528, -0.008962028659880161, -0.034456994384527206, -0.011396490037441254, 0.010058874264359474, 0.037480007857084274, -0.0009848199551925063, -6.625380046898499e-05, 0.03501879423856735, -0.02514718472957611, -0.01650618389248848, 0.022899989038705826, 0.008888459764420986, 0.0018994150450453162, 0.015502971597015858, -0.0037587014958262444, 0.018271837383508682, -0.03028363175690174, 0.003578123403713107, -0.0033674489241093397, -0.019194792956113815, -0.007885247468948364, 0.0005480046384036541, -0.033868443220853806, -0.002238835208117962, -0.016145028173923492, 0.014927797019481659, 0.0030079644639045, -0.0016185155836865306, 0.026899462565779686, -0.016145028173923492, -0.0154628437012434, 0.02153562195599079, -0.0001875797752290964, -0.042616453021764755, -0.024973295629024506, -0.02208404429256916, 0.0306314118206501, -0.0073769534938037395, -0.016626570373773575, -0.006500814575701952, 0.003962688148021698, 0.001752277254126966, -0.0018342062830924988, -0.013382850214838982, 0.003962688148021698, 0.011048709973692894, 0.010567167773842812, -0.038362834602594376, -0.015008053742349148, -0.016532937064766884, 0.03785453736782074, -0.0002462049887981266, 0.016318917274475098, -0.002867514733225107, -0.010433406569063663, 0.00758428405970335, -0.015569852665066719, 0.005537731107324362, -0.016318917274475098, -0.0217362642288208, 0.02303375117480755, 0.007249879650771618, 0.005711621139198542, -0.025026800110936165, -0.0174960196018219, 0.03057790733873844, 0.0002370088768657297, 0.0016527919797226787, -0.013817575760185719, -0.0043405648320913315, 0.034965287894010544, -0.007189687341451645, 0.0025782552547752857, -0.006440622266381979, 0.028036436066031456, 0.007015796843916178, -0.0027805697172880173, -0.0023792849387973547, -6.128998938947916e-05, -0.020545784384012222, 0.02342166006565094, 0.03162124752998352, -0.007229815702885389, 0.007677916903048754, 0.005748405586928129, 0.033975452184677124, 0.011991729028522968, -0.002508030505850911, -0.035553839057683945, -0.009262992069125175, 0.006283452268689871, 0.024398120120167732, -0.030123116448521614, 0.024585386738181114, -0.007978880777955055, 0.015569852665066719, 0.015730366110801697, 0.021281473338603973, -0.014098474755883217, 0.00901553314179182, -0.034965287894010544, -0.001815814059227705, 0.010159195400774479, 0.012319445610046387, -0.028009682893753052, 0.0001688740449026227, -0.009503763169050217, 0.00011725041986210272, 0.0014805739047005773, 0.014767282642424107, -0.014660273678600788, 0.005862102843821049, -0.004176706541329622, -0.02189677767455578, -0.6270744800567627, -0.003942623734474182, -0.011048709973692894, -0.006828530691564083, 0.009617460891604424, -0.003848990658298135, 0.02281973324716091, 0.009430194273591042, -0.01455326471477747, -0.009343248791992664, -0.02787592262029648, 0.005735029466450214, 0.02544146031141281, -0.02316751331090927, -0.023608926683664322, -0.005537731107324362, 0.010172571055591106, -0.021134335547685623, -0.0001956263731699437, -0.020251508802175522, -0.035500332713127136, 0.016586441546678543, -0.005012716632336378, 0.008821578696370125, -0.015155191533267498, -0.0033206322696059942, 0.01793743297457695, -0.0013050117995589972, 0.0017271969700232148, 0.034216221421957016, -0.041332341730594635, 0.027742160484194756, 0.022792980074882507, 0.03483152762055397, 0.041920892894268036, -0.010640736669301987, -0.031139705330133438, 0.034510497003793716, 0.018847012892365456, 0.0052401116117835045, -0.02030501328408718, -0.024919789284467697, -0.005855415016412735, 0.01995723322033882, 0.01482078805565834, 0.007136182393878698, 0.016332294791936874, 0.0028591547161340714, 0.002829058328643441, 0.01962283067405224, 0.0012005105381831527, -0.007042549550533295, -0.02485290914773941, -0.01882025972008705, -0.00025352006196044385, 0.010707617737352848, 0.04620126262307167, -0.01689409278333187, 0.015409339219331741, 0.00764447683468461, 0.010420029982924461, 0.006611167918890715, 0.003046420868486166, 0.009202799759805202, -0.015422714874148369, 0.03488503023982048, 0.00761103630065918, -0.002429445507004857, 0.0145800169557333, -0.024384744465351105, 0.024250982329249382, 0.016787083819508553, 0.017669910565018654, -0.021923528984189034, 0.0026601841673254967, -0.004427509848028421, 0.03790804371237755, -0.005878823343664408, -0.007343512959778309, 0.025775864720344543, 0.009985305368900299, -0.012974876910448074, -0.02298024669289589, -0.04250944405794144, 0.014767282642424107, -0.02184327319264412, -0.01519532036036253, 0.04085079953074455, 0.007269944064319134, 0.008594184182584286, 0.0003258349606767297, 0.014513135887682438, -0.008012320846319199, 0.01704123057425022, 0.03536657243967056, 0.004293748177587986, -0.0029277075082063675, 0.003178510582074523, -0.0031935586594045162, -0.03566084802150726, -0.0007386149372905493, -0.018164828419685364, 0.006711489520967007, -0.012393014505505562, 0.009931799955666065, -0.020184628665447235, -0.029320547357201576, -0.00028863249463029206, 0.048501964658498764, -0.025963131338357925, 0.008259779773652554, -0.01783042401075363, -0.0032938800286501646, -0.008126018568873405, 0.007189687341451645, -0.022405071184039116, 0.01606477051973343, -0.0042469315230846405, 0.02851797826588154, -0.0019880321342498064, 0.026016635820269585, -0.004277027677744627, 0.012045234441757202, 0.001640251837670803, 0.018271837383508682, 0.034564003348350525, 0.005270207766443491, 0.001372728613205254, -0.002916003344580531, 0.008794826455414295, -0.007149558514356613, 0.003838958451524377, 0.0237694401293993, -0.005173230543732643, 0.008614248596131802, -0.014566640369594097, 0.022110795602202415, 0.0028056500013917685, 0.015155191533267498, -0.025882873684167862, -0.013951336964964867, 0.00741039402782917, -0.004196770954877138, 0.0045010787434875965, -0.023702559992671013, -0.04280371963977814, -0.016238661482930183, 5.967022298136726e-05, -0.041733626276254654, 0.001425397233106196, -0.014018218033015728, -0.01010569091886282, -0.008647688664495945, 0.015596604906022549, 0.017629781737923622, -0.011543627828359604, -0.024090468883514404, -0.005183262750506401, 0.00380551815032959, -0.009463634341955185, 0.012138866819441319, 0.01610489934682846, -0.023782815784215927, 0.0088951475918293, 0.01560998149216175, -0.01615840382874012, -0.00575509387999773, 0.03603538125753403, -0.0020214724354445934, -0.03820231929421425, 0.0048254504799842834, -0.028384216129779816, -0.008580807596445084, 0.03405570983886719, -0.0370519682765007, 0.0024361335672438145, 0.009410129860043526, -0.022364942356944084, -0.014767282642424107, 0.013924584724009037, -0.01176433451473713, 0.025321075692772865, -0.0041700187139213085, -0.008955340832471848, 0.027902673929929733, 0.002019800478592515, 0.00790531188249588, 0.007825055159628391, 0.005056189373135567, 0.0243579912930727, 0.0035212747752666473, 0.009798038750886917, 0.0077849263325333595, -0.005320368334650993, -0.00032437194022350013, -0.008794826455414295, 0.01817820407450199, 0.02164263091981411, 0.020893564447760582, 0.008955340832471848, -0.00939006544649601, 0.0037352931685745716, 0.0049859643913805485, -0.0035012103617191315, 0.006029305048286915, -0.027554893866181374, -0.0021920185536146164, -0.00598917668685317, 0.03785453736782074, -0.02204391546547413, -0.0068686590529978275, -0.0231808889657259, 0.0032821758650243282, -0.030658163130283356, 0.01621190831065178, 0.026177149266004562, 0.02120121754705906, 0.008614248596131802, -0.025561844930052757, -0.003782109823077917, 0.016586441546678543, -0.005303648300468922, -0.02742113173007965, -0.0044843582436442375, -0.013871080242097378, 0.007156246807426214, 0.01566348597407341, 0.02174963988363743, 0.015971137210726738, -0.033975452184677124, -0.00028863249463029206, -0.022110795602202415, -0.008319973014295101, 0.023689182475209236, 0.002146874088793993, -0.004865578841418028, 0.009677653200924397, -0.025668855756521225, 0.02303375117480755, -0.02233819104731083, -0.007891935296356678, 0.0172017440199852, 0.014499759301543236, -0.027581647038459778, -0.01165732555091381, 0.010988516733050346, 0.012714042328298092, 0.01641255058348179, 0.01590425707399845, 0.0335206612944603, -0.021375106647610664, 0.007296696305274963, -0.005490914452821016, -0.00427368376404047, 0.0043305326253175735, -0.022645842283964157, -0.006159722805023193, 0.00758428405970335, 0.02549496479332447, 0.023287897929549217, 0.020880188792943954, 0.016813835129141808, -0.023649055510759354, 0.004862234927713871, 0.03504554554820061, -0.01705460622906685, 0.01931517757475376, 0.013697190210223198, -0.010607296600937843, -0.03501879423856735, -0.0026501521933823824, -0.01665332168340683, 0.0024946541525423527, -0.016278788447380066, 0.0028892511036247015, 0.0036483481526374817, -0.002536454703658819, -0.001055880798958242, 0.02672557160258293, -0.0010617328807711601, -0.029374051839113235, -0.03897813707590103, 0.024531882256269455, -0.0022170988377183676, -0.009430194273591042, -0.012051922269165516, -0.04277696833014488, 0.009135918691754341, -0.011342985555529594, 0.027635151520371437, -0.0025966474786400795, 0.007096054032444954, 0.0014855900080874562, -0.004350596573203802, -0.006514191161841154, 0.00834672525525093, 0.04285722225904465, -0.031594496220350266, 0.04240243509411812, -0.007042549550533295, 0.006591103971004486, 0.023394906893372536, -0.04020874202251434, 0.00840022973716259, 0.028330711647868156, -0.022966871038079262, 0.00482879439368844, -0.010874819941818714, -0.002598319435492158, -0.013255776837468147, -0.005330400541424751, -0.031246714293956757, 0.014111851342022419, -0.008881771937012672, 0.0032988958992064, 0.007417081855237484, -0.021174464374780655, 0.002404365222901106, 0.027501389384269714, -0.014352621510624886, 0.008179523050785065, -0.006811810657382011, -0.012693977914750576, 0.005825318396091461, 0.11128967255353928, 0.02134835533797741, -0.0220305398106575, 0.003972720354795456, 0.006741585675626993, 0.003912527579814196, -0.03376143425703049, -0.01467365026473999, 0.02466564252972603, 0.002350860508158803, 0.02974858507514, -0.021428611129522324, 0.019756590947508812, 0.0054006255231797695, 0.022017162293195724, -0.020666170865297318, -0.004945836029946804, -0.004517798777669668, 0.002671888330951333, 0.00474184937775135, 0.0017305410001426935, 0.00648409454151988, 0.0031116297468543053, 0.024986671283841133, -0.02371593564748764, -0.021629253402352333, 0.019796719774603844, 0.001299159717746079, 0.016439303755760193, -0.03154098987579346, 0.006226603407412767, 0.020639417693018913, 0.013830951415002346, 0.025240818038582802, 0.007196375168859959, 0.007537467405200005, -0.0021836585365235806, 0.006530911196023226, -0.004919083788990974, 0.004648216534405947, 0.018913893029093742, 0.018204957246780396, 0.011282792314887047, -0.019997362047433853, 0.013155455701053143, 0.007089365739375353, -0.014205483719706535, 0.0016661682166159153, -0.01455326471477747, -0.0018893829546868801, 0.035152554512023926, 0.004491046536713839, -0.019061030820012093, -0.004293748177587986, 0.03477802127599716, -0.004260307643562555, 0.00395265594124794, 0.003208606969565153, -0.02158912643790245, 0.024719147011637688, -0.014018218033015728, 0.00534712104126811, 0.01393796131014824, -0.018378846347332, -0.011891407892107964, -0.025708982720971107, -0.016920845955610275, 0.0072097512893378735, -0.013409602455794811, 0.01857948862016201, -0.0016193516785278916, -0.008761386387050152, -0.0214419886469841, 0.0021351699251681566, 0.018459104001522064, -0.0006182295037433505, 0.003581467317417264, -0.017228497192263603, -0.010386589914560318, 0.0015683550154790282, -0.016733579337596893, -0.03330664336681366, 0.019208168610930443, -0.009864919818937778, -0.029026271775364876, -0.005280239973217249, 0.005397281609475613, 0.0011403178796172142, -0.02371593564748764, 0.013035070151090622, 0.01645267941057682, 0.02589624933898449, 0.012720730155706406, -0.012834427878260612, 0.0064774067141115665, -0.01995723322033882, -0.0177902951836586, -0.011717517860233784, 0.0025715671945363283, -0.016813835129141808, 0.016385799273848534, -0.048207689076662064, -0.005624676123261452, -0.01595776155591011, 0.0008753025904297829, -0.003464425913989544, 0.0036918206606060266, 0.005290272179991007, -0.026150396093726158, -0.020786555483937263, 0.0069622923620045185, -0.009477010928094387, -0.007771550212055445, 0.013777446933090687, -0.0022170988377183676, 0.002643464133143425, 0.01892726868391037, 0.009075726382434368, 0.03365442529320717, -0.012767546810209751, -0.004557927139103413, -0.029721831902861595, 0.011249352246522903, -0.0038523348048329353, -0.030310383066534996, -0.0034878342412412167, 0.00971109326928854, -0.01857948862016201, 0.0072097512893378735, 0.0012189027620479465, 0.019943857565522194, 0.026966342702507973, 0.004862234927713871, -0.03271809220314026, -0.032236550003290176, -0.01118915993720293, -0.028544729575514793, -0.015155191533267498, -0.014098474755883217, 0.006273420061916113, -0.01013244315981865, -0.004785322118550539, -0.003665068419650197, -0.020345142111182213, -0.01581062376499176, -0.02094707079231739, -0.008206275291740894, 0.0014513136120513082, 0.007477274630218744, 0.01077449880540371, -0.01504818256944418, -0.021656006574630737, -0.02530769817531109, 0.006795090157538652, -0.011630573309957981, -0.009450258687138557, 0.00749733904376626, -0.02134835533797741, 0.03148748725652695, -0.018218332901597023, 0.02268597111105919, -0.008353413082659245, 0.009303120896220207, -0.015703614801168442, 0.016345670446753502, 0.0013100279029458761, -0.009704405441880226, -0.004561271518468857, -0.032183047384023666, 0.0012682273518294096, 0.021040702238678932, 0.03475126996636391, 0.008962028659880161, -0.0008021517423912883, -0.0074638985097408295, 0.03542007878422737, 0.0008071677875705063, -0.0272739939391613, -0.027795664966106415, -0.030898934230208397, -0.02336815558373928, 0.013035070151090622, -0.017870552837848663, 0.00215021800249815, 0.0037687337026000023, 0.0048154182732105255, 0.05741048604249954, 0.0024662299547344446, 0.013309281319379807, -0.020559161901474, 0.012125491164624691, -0.025856120511889458, 0.007269944064319134, 0.0018609585240483284, 0.02219105325639248, -0.005788533948361874, 0.029320547357201576, -0.015730366110801697, -0.00019813439575955272, -0.0061396583914756775, 0.0062165712006390095, -0.009503763169050217, 0.006764994002878666, -0.01799093745648861, -0.017910681664943695, 0.019582701846957207, -0.01610489934682846, -0.025267569348216057, 0.02316751331090927, -0.01054710429161787, 0.00026480620726943016, -0.011383114382624626, -0.003334008390083909, -0.021281473338603973, -0.03576785698533058, -0.002768865553662181, 0.011924848891794682, 0.019502444192767143, -0.025615351274609566, -0.01284780353307724, 0.004848858807235956, -0.0172017440199852, 0.040396008640527725, 0.01956932432949543, 0.0174960196018219, 0.00711611844599247, -0.03279834985733032, -0.005664804484695196, 0.030898934230208397, -0.010647425428032875, -0.021656006574630737, 0.02267259545624256, 0.011229287832975388, -0.008273156359791756, 0.005159854423254728, -0.009677653200924397, 0.007510715164244175, -0.019930481910705566, -0.03849659487605095, 0.017455890774726868, 0.026123644784092903, -0.002404365222901106, -0.021722886711359024, 0.013001629151403904, -0.03785453736782074, 0.00537387328222394, -0.005216703284531832, 0.010313021019101143, -0.00474184937775135, -0.0114433066919446, -0.028731996193528175, -0.00286082667298615, 0.021482115611433983, 0.00857411976903677, 0.015088310465216637, -0.012660537846386433, -0.010379902087152004, -0.007182999048382044, -0.007570907939225435, -0.006627888418734074, -0.0005789370043203235, 0.019489068537950516, -0.0018927269848063588, -0.0072164395824074745, -0.007356889080256224, -0.005480882246047258, -0.0032888639252632856, 0.005768470000475645, -0.007972192950546741, 0.027608398348093033, 0.013389538042247295, 0.0011737581808120012, 0.000671316112857312, 0.015650110319256783, -0.002541470807045698, 0.034858278930187225, -0.001508162240497768, 0.0013635325012728572, -0.021910153329372406, 0.0008372641750611365, 0.001956263789907098, 0.010660801082849503, -0.01754952408373356, -0.023849697783589363, -0.011276104487478733, -0.023087255656719208, -0.01284780353307724, -0.0023241082672029734, -0.013570116832852364, -0.039513181895017624, -0.01077449880540371, -0.010473535396158695, -0.010995205491781235, 0.018311966210603714, -0.006039337255060673, 0.01823170855641365, -0.009925112128257751, 0.03745325282216072, -0.03943292424082756, 0.02332802675664425, -0.020692922174930573, 0.00971109326928854, -0.018913893029093742, 0.0015148504171520472, 0.017710039392113686, -0.03804180398583412, 0.008139394223690033, -0.026605186983942986, -0.03336014971137047, -0.00013553813914768398, 0.021334977820515633, 0.0009764598216861486, -0.019047655165195465, -0.002106745494529605, 0.007677916903048754, -9.32151306187734e-05, 0.007911999709904194, -0.015061558224260807, -0.01878013089299202, 0.020746426656842232, 0.018218332901597023, -0.011088838800787926, 0.01000536885112524, -0.013570116832852364, 0.017081359401345253, -0.0013459763722494245, 0.011001893319189548, 0.010767810977995396, -0.04777964949607849, 0.013008317910134792, -0.015329081565141678, 0.027207113802433014, 0.005939016118645668, -0.013563428074121475, -0.02395670674741268, -0.02237831987440586, -0.007537467405200005, 0.007490650750696659, -0.0005948212346993387, -0.03574110567569733, 0.026698820292949677, 0.040449514985084534, 0.0013242400018498302, -0.002559863030910492, -0.005380561109632254, 0.005016061011701822, 0.02401021122932434, -0.012078674510121346, -0.03659718111157417, -0.02219105325639248, -0.0012063626199960709, 0.0370519682765007, -0.004517798777669668, 0.0017205089097842574, -0.006581071764230728, -0.022124171257019043, -0.0364634171128273, -0.025040175765752792, -0.00018820678815245628, 0.018418975174427032, 0.036436665803194046, 0.0022405071649700403, 0.017322130501270294, 0.02257896214723587, -0.022003786638379097, 0.0011495138751342893, -0.018258461728692055, -0.0032152950298041105, -0.00825309194624424, -0.00046314962673932314, -0.0007578431977890432, 0.008059137500822544, -0.026658691465854645, 0.018887141719460487, 0.009176047518849373, -0.013924584724009037, -0.019301801919937134, -0.0028992830775678158, -0.02578924037516117, -0.0018241740763187408, -0.020626042038202286, 0.025655478239059448, 0.019328555092215538, 0.00046147758257575333, 0.009704405441880226, -0.012252564541995525, -0.0037252611946314573, -0.0033607606310397387, -0.003624939825385809, -0.028143445029854774, -0.010165883228182793, 0.005527698900550604, 0.005173230543732643, 0.009777974337339401, -0.016974350437521935, -0.00936331320554018, -0.002071633003652096, -0.035955123603343964, 0.04312474653124809, -0.006561007350683212, -0.00795881636440754, 0.030230127274990082, -0.0054875705391168594, -0.026565058156847954, -0.019596077501773834, 0.023301273584365845, 0.0344034880399704, -0.0208534374833107, 0.016185157001018524, -0.027100104838609695, 0.01783042401075363, -0.003792142029851675, 0.01615840382874012, -0.006694769021123648, 0.004955868236720562, 0.011062085628509521, 0.007998945191502571, -0.020037490874528885, 0.03079192526638508, 0.012192372232675552, -0.005467506125569344, 0.00397940818220377, 0.001372728613205254, 0.005975800566375256, 0.0114433066919446, -0.02045215107500553, -0.018378846347332, 0.0041700187139213085, -0.00840022973716259, 0.00022091568098403513, 0.009630836546421051, -0.010099002160131931, -0.00702917343005538, 0.008901836350560188, -0.047271355986595154, 0.011102214455604553, 0.1889784187078476, -0.006681392900645733, 0.015181943774223328, 0.02267259545624256, -0.008460422977805138, 0.02395670674741268, 0.028919262811541557, 0.004785322118550539, -0.01240639016032219, -0.00752409128472209, -0.030952438712120056, 0.025013422593474388, 0.008701193146407604, 0.006524222902953625, -0.012928060255944729, -0.0034878342412412167, -0.036730941385030746, -0.0011219256557524204, -0.010065562091767788, -0.047859907150268555, 0.0067917462438344955, -0.02692621387541294, -0.009202799759805202, -0.008072514086961746, 0.012633784674108028, 0.017950810492038727, -0.01936868205666542, -0.017763543874025345, 0.025080304592847824, 0.00045144546311348677, -0.017482643947005272, -0.008380165323615074, -0.00775817409157753, -0.003342368407174945, -0.02302037551999092, 0.009236239828169346, 0.024585386738181114, 0.01793743297457695, 0.0075307791121304035, -0.016613192856311798, -0.00017671164823696017, -0.015944385901093483, 0.012346197851002216, 0.007751485798507929, -0.023608926683664322, 0.03996797278523445, -0.005467506125569344, -0.003721917048096657, -0.016466055065393448, 0.0145800169557333, -0.03657042607665062, 0.010741057805716991, 0.03860360383987427, 0.011296168901026249, 0.006052713375538588, -0.0008046597358770669, 0.017603028565645218, 0.020880188792943954, -0.022859860211610794, 0.006116250064224005, -0.018913893029093742, 0.020024115219712257, 0.010687553323805332, 0.0134898591786623, -0.032290056347846985, 0.009436882100999355, -0.01581062376499176, 0.003762045642361045, 0.03226330131292343, -0.028678491711616516, -0.002193690510466695, -0.011195847764611244, -0.01626541279256344, -0.0038188942708075047, -0.01753614842891693, -0.012372950091958046, 0.03338690102100372, -0.008794826455414295, -0.0018459103303030133, -0.004196770954877138, -0.003966032061725855, -0.04015523940324783, 0.002750473329797387, 0.0004472654254641384, -0.004581335466355085, -0.02846447378396988, 0.0024077091366052628, -0.01621190831065178, -0.021375106647610664, 0.0038122062105685472, -0.013951336964964867, -0.026458049193024635, -0.013135391287505627, -0.007978880777955055, 0.011436618864536285, -0.010734369978308678, 0.018271837383508682, 0.005524354986846447, 0.0032671275548636913, -0.01346310693770647, -0.011643948964774609, -0.02415734902024269, 0.040743790566921234, 0.01718836836516857, -0.024625513702630997, 0.002429445507004857, 0.01907440647482872, 0.013964713551104069, 0.011229287832975388, -0.023354779928922653, 0.01927504874765873, -0.013376162387430668, 0.0015073262620717287, -0.022217804566025734, 0.020880188792943954, 0.009196111001074314, -0.020692922174930573, -0.020840059965848923, 0.0028006338980048895, 0.0015006382018327713, 0.0006759141688235104, -0.02629753388464451, -0.006069433409720659, -0.004073041491210461, -0.008333348669111729, -0.011235976591706276, -0.017924057319760323, 0.022846484556794167, 0.011470058932900429, -0.021174464374780655, 0.01857948862016201, -0.029588069766759872, -0.006989044602960348, 0.002223786897957325, -0.010968453250825405, 0.014111851342022419, 0.0114433066919446, -0.020492279902100563, 0.04071703925728798, -0.005872135050594807, 0.008447046391665936, 0.011282792314887047, 0.010761122219264507, -0.004514454863965511, 0.009931799955666065, 0.013041757978498936, 0.014018218033015728, 0.0046448721550405025, 0.0008569103665649891, -0.004022880923002958, -0.027046600356698036, 0.0006922163884155452, -0.00040943597559817135, -0.0035547150764614344, 0.008687817491590977, -0.007751485798507929, -0.023234393447637558, -0.023729311302304268, -0.003678444540128112, 0.020746426656842232, -0.018378846347332, 0.022806355729699135, 0.023341402411460876, -0.012312756851315498, -0.017081359401345253, 0.010112378746271133, -0.1691817045211792, 0.01823170855641365, 0.009283056482672691, -0.022659217938780785, 0.015850752592086792, 0.03014986962080002, 0.034269727766513824, -0.0022304749581962824, -0.01376407127827406, 0.00026167117175646126, 0.01197835337370634, 0.022164300084114075, -0.04472988471388817, -0.012720730155706406, -0.007945440709590912, 0.0160513948649168, 0.0017238529399037361, 0.002733753062784672, 0.04127883538603783, 0.0071228062734007835, 0.012286004610359669, -0.01962283067405224, 0.004414133727550507, -0.017576277256011963, 0.015208696015179157, 0.0020131124183535576, 0.006795090157538652, -0.00584203889593482, 0.02629753388464451, -0.0037352931685745716, 0.0016586440615355968, 0.01183121558278799, 0.009530515410006046, -0.028143445029854774, 0.033921945840120316, 0.015275577083230019, -0.006243323907256126, -0.0008050777832977474, -0.0019010870018973947, 0.02672557160258293, 0.017067983746528625, 0.005243455525487661, 0.017509397119283676, -0.00926967989653349, -0.008527303114533424, 0.040743790566921234, 0.002832402242347598, 0.005189951043576002, 0.006360365077853203, -0.013469795696437359, -0.002671888330951333, -0.00625001173466444, 0.02530769817531109, -0.006841906812041998, 0.03247732296586037, 0.03737299516797066, 0.011871343478560448, 0.005965768359601498, 0.010486911050975323, -0.03336014971137047, -0.010206012055277824, -0.009149295277893543, 0.014071722514927387, -0.004029568750411272, 0.004052977077662945, -0.01185796782374382, -0.014325869269669056, 0.011082150042057037, -0.035206057131290436, 0.018218332901597023, -0.0008719585603103042, 0.003232015063986182, 0.023996835574507713, -0.018459104001522064, -0.014004841446876526, 0.0019880321342498064, -0.02411722019314766, 0.01853935979306698, -0.008246404118835926, -0.0022137549240142107, -0.027447884902358055, 0.04165336862206459, 0.008246404118835926, -0.014593392610549927, 0.017282001674175262, -0.0013986449921503663, -0.011958288960158825, -0.028277207165956497, -0.019288426265120506, -0.001051700790412724, 0.015837375074625015, -0.0300428606569767, 0.007296696305274963, -0.020050866529345512, 0.031246714293956757, 0.01872662641108036, 0.01991710625588894, -0.020385270938277245, 0.0032236550468951464, -0.01141655445098877, -0.01595776155591011, -0.030524402856826782, -0.018512608483433723, 0.011938224546611309, 0.03929916396737099, 0.00036847146111540496, -0.006273420061916113, 0.007570907939225435, 0.03635640814900398, -0.00395265594124794, -0.009109166450798512, 0.02593637816607952, 0.01237963791936636, 0.016840588301420212, -0.007015796843916178, 0.01452651247382164, -0.013376162387430668, -0.02248532883822918, 0.026618562638759613, -0.017964186146855354, 0.050026845186948776, -0.011938224546611309, -0.017282001674175262, 0.004705064930021763, 0.00997861661016941, -0.03376143425703049, -0.10716981440782547, -0.007015796843916178, -0.01595776155591011, 0.009938488714396954, -0.01437937468290329, 0.02673894725739956, -0.022712722420692444, 0.0169074684381485, 0.008112641982734203, 0.010754434391856194, -0.02870524302124977, -0.021468739956617355, 0.02466564252972603, 0.005795222241431475, 0.017121488228440285, -0.015703614801168442, -0.01062736101448536, -0.0035547150764614344, 0.0077314218506217, 0.035152554512023926, 0.015797248110175133, -0.013496547937393188, 0.01205861009657383, -0.02431786246597767, 0.002160250209271908, -0.0014956220984458923, -0.021455364301800728, -0.0068686590529978275, 0.02993585169315338, 0.019101159647107124, -0.005748405586928129, -0.00916267093271017, 0.012319445610046387, -0.0013443042989820242, -0.0007465570233762264, 0.004634839948266745, -0.04847521334886551, 0.013309281319379807, 0.017924057319760323, -0.03889787942171097, 0.00924292765557766, -0.005333744455128908, 0.030551154166460037, -0.02712685614824295, 0.005233423318713903, -0.005975800566375256, -0.02530769817531109, 0.01171083003282547, 0.006721521262079477, -0.0318085141479969, 0.0016419239109382033, 0.018352095037698746, -0.043713297694921494, -0.013182207942008972, 0.036543674767017365, -0.01853935979306698, 0.021281473338603973, 0.01250002346932888, 0.0003264619444962591, -0.01784379966557026, 0.003695164807140827, 0.019890353083610535, -0.0013635325012728572, 0.030551154166460037, 0.023060504347085953, -0.011904784478247166, -0.013101951219141483, -0.013596869073808193, 0.04245593771338463, -0.006520878989249468, -0.008634313009679317, -0.0013693845830857754, -0.02593637816607952, -0.0028708588797599077, -0.01848585531115532, 0.017067983746528625, -0.026270782575011253, -0.030203374102711678, 0.006193162873387337, 0.008587496355175972, 0.004347252659499645, -0.02964157611131668, 0.005012716632336378, -0.008794826455414295, -0.0048990193754434586, 0.014031593687832355, 0.01654631271958351, -0.005444097798317671, -0.0074638985097408295, -0.010219387710094452, 0.007042549550533295, 0.021308226510882378, -0.027929427102208138, -0.03697171062231064, 0.013422979041934013, 0.032584331929683685, -0.0026401199866086245, 0.019047655165195465, -0.004156642593443394, 0.0015457827830687165, -0.02604338712990284, -0.01621190831065178, -0.06329599767923355, 0.035955123603343964, 0.01817820407450199, 0.002360892714932561, 0.010513663291931152, -0.004745193291455507, 0.014513135887682438, -0.027207113802433014, -0.017977561801671982, 0.002049896866083145, -0.022471953183412552, 0.023341402411460876, -0.008239716291427612, -0.011169095523655415, -0.01927504874765873, 0.02771540731191635, -0.009697717614471912, -0.023394906893372536, -0.0024210852570831776, -0.0006311876350082457, 0.007845118641853333, 0.011583756655454636, 0.02140185981988907, 0.010319708846509457, 0.001927839359268546, 0.005220047198235989, 0.005096317734569311, 0.015155191533267498, 0.010533727705478668, -0.010313021019101143, 0.008754698559641838, -0.030256878584623337, 0.00383561453782022, 0.012078674510121346, -0.009256304241716862, 0.004230211488902569, -0.010239452123641968, -0.0019378714496269822, 0.0008527303580194712, 0.06324249505996704, -0.009283056482672691, -0.002663528313860297, -0.010513663291931152, -0.027394380420446396, 0.018365470692515373, 0.03341365233063698, -0.015181943774223328, -0.018900517374277115, 0.030524402856826782, -0.02006424404680729, 0.015061558224260807, 0.015248824842274189, -0.0035614031367003918, -0.011383114382624626, -0.006798434536904097, -0.009262992069125175, 0.036249399185180664, 0.004588023759424686, -0.0019596077036112547, -0.02643129602074623, 0.020973822101950645, -0.013449731282889843, 0.03394870087504387, 0.010988516733050346, 0.005959080066531897, -0.03231680765748024, -0.00916267093271017, 0.01591763272881508, -0.021321602165699005, -0.02228468656539917, -0.015730366110801697, -0.01084137987345457, 0.021214593201875687, 0.019689710810780525, 0.003955999854952097, 0.032049283385276794, -0.011175783351063728, -0.00256989523768425, -0.03400220349431038, 0.001245655119419098, -0.014299117028713226, -0.024518504738807678, -0.030176620930433273, 0.007009109016507864, 0.015690237283706665, 0.0014003169490024447, 0.013924584724009037, 0.021174464374780655, 0.00586879113689065, 0.023154135793447495, 0.01971646212041378, -0.010781186632812023, 0.00819958746433258, -0.013777446933090687, -0.0017706694779917598, 0.018245086073875427, -0.014339245855808258, -0.005213359370827675, 0.03389519453048706, 0.009998681023716927, -0.01828521303832531, 0.0013635325012728572, -0.00014525676670018584, -0.03207603842020035, -0.008654376491904259, 0.007570907939225435, -0.016666697338223457, -0.016813835129141808, 0.0075575318187475204, 0.032290056347846985, 0.011583756655454636, -0.0018308621365576982, 0.02094707079231739, 0.016773708164691925, -0.011055397801101208, 0.0007290008361451328, 0.003882430959492922, -0.017950810492038727, -0.01803106628358364, 0.03884437307715416, 0.004808730445802212, 0.012245876714587212, 0.034617505967617035, 0.001035816501826048, -0.005196638870984316, 0.03972719982266426, 0.027902673929929733, 0.012948124669492245, 0.00534712104126811, -0.006634576246142387, 0.015155191533267498, 0.0020649449434131384, -0.04965231567621231, 0.013723942451179028, -0.012948124669492245, -0.028009682893753052, -0.008654376491904259, 0.009965240955352783, -0.0352863147854805, 0.04216166213154793, 0.0038188942708075047, -0.014513135887682438, 0.011256040073931217, 0.0031885425560176373, 0.030203374102711678, 0.023234393447637558, 0.01118915993720293, -0.0027003127615898848, -0.008768074214458466, 0.006942227948457003, -0.03079192526638508, 0.04398082196712494, -0.002116777701303363, -0.015208696015179157, 0.01769666187465191, -0.018164828419685364, 0.04245593771338463, -0.011597132310271263, -0.013723942451179028, 0.03531306982040405, -0.002272275509312749, 0.04363304004073143, 0.0010575528722256422, 0.011677389964461327, 0.016867339611053467, 0.03477802127599716, 0.004263651557266712, 0.0011035334318876266, -0.026899462565779686, 0.001007392187602818, 0.017964186146855354, -0.023060504347085953, -0.004183394834399223, 0.03598187491297722, 0.0076244124211370945, 0.002370924688875675, -0.012807675637304783, 0.02516056038439274, -0.0057316855527460575, -0.014740530401468277, -0.006540943402796984, -0.005109693855047226, -0.008406917564570904, 0.010473535396158695, 0.0072097512893378735, -0.008560744114220142, -0.010078937746584415, -0.02475927583873272], "49cf8419-286b-45b6-b988-2391c4f5e938": [-0.0025775248650461435, -0.025529135018587112, -0.013635937124490738, 0.008334551006555557, -0.0066017890349030495, 0.036371368914842606, 0.015618137083947659, -0.016669102013111115, -0.002193390391767025, -0.014021734707057476, 0.02226981334388256, 0.013995127752423286, 0.017839796841144562, -0.00154900923371315, -0.0019921772181987762, 0.014966272749006748, 0.040894508361816406, -0.0059831831604242325, 0.03786134347319603, -0.022296421229839325, 0.015897506847977638, -0.00238795205950737, -0.004629567265510559, 0.02610117942094803, -0.001415975741110742, 0.025302978232502937, 0.012558366172015667, -0.0202610082924366, 0.00571711640805006, -0.011500748805701733, -0.012551713734865189, -0.00021576376457232982, 0.013383173383772373, -0.015870900824666023, -0.028336143121123314, -0.004616263788193464, 0.000538370106369257, -0.018810942769050598, 0.011620479635894299, -0.015059396624565125, 0.01040987391024828, 0.0031445801723748446, -0.016669102013111115, 0.0065119918435812, -0.019968334585428238, 0.021844107657670975, -0.0012189197586849332, -0.02548922598361969, -0.01924995332956314, 0.011101648211479187, 0.028123289346694946, -0.013336611911654472, -0.03046467900276184, -0.00012648578558582813, -0.02664661779999733, -0.006984260864555836, 0.016323214396834373, 0.029400411993265152, -0.01870451495051384, 0.020274311304092407, 0.006149475462734699, 0.0021601321641355753, -0.006911092437803745, 0.010576166212558746, -0.04219823703169823, -0.01525894645601511, 0.002885164925828576, -0.01720123551785946, -0.012724657543003559, 0.0019472783897072077, 0.03384373337030411, 0.017573731020092964, -0.003239366691559553, -0.001563975471071899, 0.024597901850938797, -0.027883829548954964, -0.03142252191901207, 0.00588340824469924, -0.016256697475910187, 0.010942008346319199, -0.009678189642727375, -0.031848229467868805, 0.0005204937187954783, 0.010942008346319199, 0.027325088158249855, -0.0044998591765761375, 0.00629581231623888, 0.038686152547597885, -0.013509555719792843, -0.024810753762722015, 0.030278433114290237, 0.002861883956938982, 0.008607270196080208, 0.021445006132125854, -0.001837525749579072, 0.02151152305305004, -0.01779988780617714, 0.014194678515195847, 0.0055075883865356445, -0.01875772885978222, -0.023201048374176025, -0.0005475161597132683, -0.022895071655511856, -0.003581928089261055, -0.020846355706453323, 0.0059898351319134235, 0.004968802444636822, -0.012398725375533104, 0.016150271520018578, -0.02282855473458767, -0.018930671736598015, 0.032912496477365494, 0.00131370616145432, -0.02971969172358513, -0.01579108089208603, -0.015192429535090923, 0.03849990665912628, -0.0049821059219539165, -0.03634476289153099, -0.021032601594924927, 0.005913340486586094, 0.015445193275809288, -0.003425613511353731, -0.029427018016576767, 0.0070840357802808285, -0.006598463281989098, 0.0011889872839674354, -0.024198800325393677, -0.0016238406533375382, -0.001076740212738514, 0.03086378052830696, -0.006748126354068518, 0.00498875742778182, 0.007336799520999193, -0.0069909123703837395, 0.005843498278409243, -0.022136781364679337, 0.005201611202210188, -0.016309911385178566, -0.02407906949520111, 0.01415476854890585, 0.00870039314031601, -0.007057429291307926, -0.032699644565582275, -0.012358815409243107, 0.023839609697461128, 0.011793423444032669, 0.007968708872795105, -0.020833052694797516, 0.0002384210383752361, 0.021085815504193306, 0.006179407704621553, 0.0071838111616671085, -0.006957653909921646, 0.0004901454085484147, 0.006169430445879698, 0.025276372209191322, -0.00696430541574955, -0.0020387389231473207, -0.004612938035279512, 0.0239726435393095, 0.016323214396834373, 0.014354318380355835, -0.005969880148768425, 0.0006751451874151826, 0.01720123551785946, 0.0029749623499810696, -0.01648285612463951, -0.03493460640311241, -0.010902098380029202, 0.011055086739361286, 0.021484917029738426, -0.04068165645003319, 0.007995315827429295, -0.014287801459431648, 0.015498407185077667, 0.020739927887916565, 0.01714802347123623, -0.007835675030946732, -0.0031861532479524612, -0.03719617798924446, -0.017014989629387856, 0.025409406051039696, 0.014035037718713284, -0.014394228346645832, -0.0008630550582893193, -0.022495970129966736, -0.005640621762722731, 0.0042304666712880135, 0.007483136374503374, -0.006664980202913284, 0.021538129076361656, -0.004503185395151377, -0.015618137083947659, -0.6360067129135132, -0.01924995332956314, -0.028682030737400055, -0.014859845861792564, 0.0079154958948493, 0.0030514567624777555, 0.03387033939361572, 0.006492036394774914, 0.0016579304356127977, 0.003482152707874775, -0.02905452437698841, 0.024597901850938797, 0.0012488523498177528, -0.023586846888065338, -0.011720255017280579, -0.004619589541107416, -0.0029583333525806665, -0.0358126275241375, 0.004812488332390785, -0.021631253883242607, -0.026380550116300583, 0.018731122836470604, -0.0018790987087413669, 0.015870900824666023, -0.00935225747525692, -0.004117387812584639, 0.015298856422305107, 0.007922147400677204, 0.0008098416728898883, 0.024717630818486214, -0.026460370048880577, 0.05430429056286812, 0.023600149899721146, 0.010017425753176212, 0.046375490725040436, 0.01178677100688219, -0.0077957650646567345, 0.028123289346694946, 0.02729848213493824, 0.007629473228007555, -0.023387296125292778, -0.03136930614709854, 0.010097245685756207, 0.025954842567443848, 0.014766722917556763, -0.010695896111428738, 0.018411841243505478, -0.00658516027033329, 0.015511710196733475, 0.012192524038255215, 0.0055508241057395935, 0.00824807956814766, -0.024797450751066208, -0.00469940947368741, -0.0001227442262461409, 0.010895446874201298, 0.050047215074300766, -0.02886827662587166, 0.0062791830860078335, -0.004822465591132641, 0.00443666847422719, 0.00995756033807993, 0.014035037718713284, 0.0116670411080122, -0.0108555369079113, 0.01395521778613329, 0.010549559257924557, 0.0026157719548791647, 0.004094107076525688, -0.018212290480732918, 0.01118812058120966, 0.019529324024915695, 0.0034355910029262304, -0.01885085180401802, 0.019888514652848244, 0.0051284427754580975, 0.027072325348854065, 0.004084129352122545, 0.007190462667495012, 0.026979200541973114, 0.004882331006228924, -0.02313453145325184, -0.030837174504995346, -0.026220910251140594, 0.020939478650689125, -0.021897319704294205, -0.01463368907570839, 0.03826044499874115, 0.011228030547499657, 0.00846758484840393, -0.0033541079610586166, 0.01352285873144865, 0.004845746792852879, 0.010097245685756207, 0.038287051022052765, 0.01427449844777584, -0.004506511148065329, 0.0021568061783909798, 0.017108112573623657, -0.019675660878419876, -0.0011191446101292968, -0.010888795368373394, -0.003931140992790461, -0.011527355760335922, 0.0016886944649741054, -0.02161794900894165, -0.047280117869377136, 0.00027500526630319655, 0.04932883381843567, -0.020021546632051468, 0.012112703174352646, -0.017174629494547844, -0.006984260864555836, -0.006458778399974108, 0.005737071391195059, -0.02836274914443493, 0.03669064864516258, -0.00706408079713583, 0.01588420383632183, -0.005421116482466459, 0.020048154518008232, 0.003152894787490368, 0.01950271613895893, 0.0019323121523484588, 0.006664980202913284, 0.04108075797557831, 0.005866779014468193, -0.003111321944743395, -0.0057038129307329655, 0.005776981357485056, 0.007210417650640011, 0.009013022296130657, 0.011048435233533382, 0.0008144146995618939, 0.01113490667194128, -0.017081506550312042, 0.018039347603917122, 0.005441071465611458, 0.017334269359707832, -0.018810942769050598, -0.014247891493141651, 0.014234588481485844, 0.013875397853553295, 0.016629192978143692, -0.019968334585428238, -0.02684616856276989, 0.0014276161091402173, -0.0024960418231785297, -0.042065203189849854, -0.011753512546420097, -0.020274311304092407, -0.010110548697412014, -0.01758703403174877, 0.023307476192712784, 0.004955499432981014, -0.002452805871143937, -0.023001497611403465, -0.003738242434337735, -0.0067448001354932785, -0.018784334883093834, 0.010017425753176212, 0.016802135854959488, -0.027431515976786613, 0.004576353821903467, 0.018970582634210587, -0.010888795368373394, -0.019037099555134773, 0.015485103242099285, -0.007283586077392101, -0.026526886969804764, 0.02000824362039566, -0.02693929150700569, -0.006645025219768286, 0.0325666107237339, -0.031156454235315323, -0.00764277670532465, -3.198521153535694e-05, -0.018026044592261314, -0.01950271613895893, 0.0048490725457668304, -0.02288176864385605, 0.018478358164429665, -0.015751169994473457, -0.004326915834099054, 0.025608954951167107, 0.0020636827684938908, -0.012372119352221489, -0.005919992458075285, 0.0197155699133873, 0.026180999353528023, -0.0021435029339045286, 0.01314371358603239, 0.01430110540241003, -0.0009678189526312053, 0.0007503922679461539, -0.013502904213964939, -0.008261382579803467, 0.02764436975121498, 0.01382218487560749, 0.016655799001455307, 0.01830541528761387, 0.0008879988454282284, 0.040548622608184814, 0.00993095338344574, -0.003598557086661458, -0.024797450751066208, -0.0054144649766385555, 0.0001318902795901522, 0.03363087773323059, -0.016230091452598572, -0.013110455125570297, -0.029134344309568405, 0.011341108940541744, -0.02172437682747841, 0.017866404727101326, 0.019795389845967293, 0.023413902148604393, 0.002273210557177663, -0.021045904606580734, -0.0024345137644559145, 0.011826680973172188, -0.010223627090454102, -0.004543095361441374, -0.0072702826000750065, -0.015139216557145119, 0.0024893900845199823, 0.004978780169039965, 0.010463087819516659, 0.02648697793483734, -0.01497957669198513, 0.002298154402524233, -0.030438072979450226, -0.0021967163775116205, 0.01874442584812641, 0.008913246914744377, -0.006202688440680504, 0.0028701985720545053, -0.03357766568660736, 0.03041146695613861, -0.02720535732805729, -0.009285740554332733, -0.0025026933290064335, 0.0069909123703837395, -0.019635749980807304, -0.005434419959783554, 0.009412122890353203, 0.007343451026827097, -0.0013361555757001042, 0.03041146695613861, 0.04262394458055496, -0.01120807509869337, 0.0029200860299170017, -0.008135001175105572, -0.01765355095267296, -0.0006738980300724506, -0.03357766568660736, -0.0003022355667781085, 0.012006276287138462, 0.016775529831647873, 0.03408319130539894, 0.007829023525118828, 0.0012405377347022295, -0.0020836377516388893, 0.01415476854890585, 0.04855724051594734, 0.0022033678833395243, 0.009013022296130657, 0.0203541312366724, -0.0024760866072028875, -0.0443267747759819, -0.022003747522830963, -0.02534288913011551, 0.00870039314031601, 0.0007312687230296433, -0.0005529206246137619, -0.008613921701908112, -0.00867378618568182, 0.003111321944743395, 0.010403222404420376, -0.006605115253478289, -0.020247703418135643, -0.04163949564099312, 0.03719617798924446, -0.0014409194700419903, -0.016522765159606934, 0.000984448124654591, -0.02292167767882347, -0.0152855534106493, -0.015205733478069305, 0.04116057604551315, -0.00607298081740737, 0.007729248609393835, 0.0050885328091681, -0.025608954951167107, 0.0012663130182772875, 0.012259040027856827, 0.026274124160408974, -0.02413228340446949, 0.05033988878130913, 0.0008214820991270244, 0.010343357920646667, 0.011853287927806377, -0.026886077597737312, 0.018332021310925484, 0.014700205996632576, -0.022908374667167664, -0.008587314747273922, -0.010456436313688755, 0.0006768081220798194, -0.029134344309568405, -0.007210417650640011, -0.026353944092988968, -0.011859939433634281, -0.017666853964328766, -0.003881253534927964, 0.010888795368373394, -0.020287614315748215, 0.016975078731775284, 0.019396290183067322, -0.014021734707057476, -0.002178424270823598, -0.013316657394170761, -0.01674892194569111, 0.004044219385832548, 0.09312347322702408, 0.025409406051039696, -0.015152519568800926, -0.0004331904638092965, 0.005497611127793789, 0.0001488312700530514, -0.017733370885252953, -0.02543601207435131, 0.016376428306102753, 0.005344622302800417, 0.017773279920220375, -0.01874442584812641, 0.013875397853553295, -0.0004502353840507567, 0.016376428306102753, -0.006877833977341652, -0.007283586077392101, -0.003921163268387318, 0.006605115253478289, 0.00314790615811944, -0.007982011884450912, 0.010290144011378288, -0.004769252147525549, 0.010236931033432484, -0.03243357688188553, -0.0175471231341362, 0.0239726435393095, 0.0014991216594353318, 0.0283095370978117, -0.016655799001455307, 0.0006194374291226268, 0.041240397840738297, 0.0239726435393095, 0.03655761480331421, -0.016655799001455307, -0.00019009245443157852, 0.022056959569454193, -0.0022349634673446417, -0.008999718353152275, 0.006931047420948744, 0.031209668144583702, 0.011686996556818485, 0.008580663241446018, -0.014513959176838398, 0.017427394166588783, 0.00013833408593200147, -0.012425332330167294, -0.00985778495669365, -0.027963649481534958, -0.007037474308162928, 0.03623833507299423, 0.017640246078372, -0.015046092681586742, -0.015046092681586742, 0.029320592060685158, 0.011114952154457569, 0.0033108722418546677, 0.010330053977668285, -0.024903878569602966, 0.03198126330971718, -0.003558647120371461, -0.0074232714250683784, -0.003335815854370594, -0.0031395915430039167, -0.01259162463247776, -0.02192392759025097, -0.02990593947470188, -0.004549746867269278, -0.003944444470107555, 0.034216225147247314, -0.01287099439650774, -0.021538129076361656, -0.024252014234662056, -0.00020994355145376176, 0.0053213415667414665, 0.006837924011051655, 0.020473862066864967, -0.014686902053654194, 0.006837924011051655, -0.006119542755186558, -0.02548922598361969, -0.024797450751066208, 0.026460370048880577, -0.006851227022707462, -0.03035825304687023, -0.0009611673303879797, 0.002600805601105094, 0.000867212365847081, -0.03293910250067711, 0.014686902053654194, -0.005417790729552507, 0.026407156139612198, 0.0012538410956040025, -0.01905040256679058, 0.008354506455361843, 0.0036018830724060535, 0.0031994564924389124, -0.0072370246052742004, -0.004636218771338463, -0.007503091357648373, 0.01674892194569111, -0.046136029064655304, -0.006495362613350153, -0.023906126618385315, 0.009385515935719013, -0.003961073700338602, 0.009013022296130657, 0.017733370885252953, -0.01713472045958042, -0.0283095370978117, 0.01940959319472313, -0.009166010655462742, 0.00038538151420652866, 0.013808880932629108, 0.001458380138501525, 0.017334269359707832, 0.016855349764227867, 0.007829023525118828, 0.017467303201556206, -0.000984448124654591, 0.0029101085383445024, -0.03520067408680916, -0.0044599492102861404, -0.01043648086488247, -0.02393273264169693, -0.004612938035279512, 0.01121472753584385, -0.024158889427781105, 0.01577777788043022, 0.00025172438472509384, 0.0359988734126091, 0.01563144102692604, 0.014394228346645832, -0.02990593947470188, -0.03937792778015137, 0.0004714375827461481, -0.016416339203715324, -0.005504262633621693, -0.00047310051741078496, 0.006984260864555836, 0.0017019978258758783, -0.00754300132393837, -0.02151152305305004, -0.03480157256126404, -0.005633970256894827, -0.02584841661155224, -0.004227140452712774, -0.014593779109418392, 0.004340219311416149, 0.002180087147280574, -0.010137155652046204, -0.031741801649332047, -0.029693085700273514, -0.007755855098366737, -0.012837735936045647, -0.024105677381157875, 0.009704796597361565, -0.01709480956196785, 0.03176840767264366, -0.01669570803642273, 0.024611204862594604, -0.0225225780159235, 0.009192617610096931, -0.001953930128365755, 0.016709012910723686, 0.00419720821082592, 0.0026473673060536385, -0.021431703120470047, -0.02854899689555168, -0.005986509378999472, 0.015112609602510929, 0.017826493829488754, 0.026686526834964752, 0.00023488733859267086, -0.019422896206378937, 0.060556866228580475, -0.017520517110824585, -0.027990255504846573, -0.012698051519691944, -0.037621885538101196, -0.032806068658828735, 0.016123665496706963, -0.0068977889604866505, 0.00477590411901474, -0.008128348737955093, 0.009724751114845276, 0.04222484305500984, 0.003452220233157277, 0.003704983973875642, -0.017972830682992935, 0.022655611857771873, -0.015471800230443478, 0.009631628170609474, -0.0009270774316973984, 0.019622446969151497, -0.01251845620572567, 0.02528967522084713, -0.006388935726135969, 0.002953344490379095, -0.0021701096557080746, -0.003688354743644595, -0.009511898271739483, 0.0056106895208358765, -0.013263443484902382, -0.012751264497637749, 0.018278807401657104, -0.006611766759306192, -0.024863967671990395, 0.03440247103571892, -0.0051284427754580975, -0.0018924020696431398, -0.007323496043682098, -0.012099400162696838, -0.036770470440387726, -0.021538129076361656, -0.00884672999382019, -0.008447629399597645, 0.027963649481534958, -0.009678189642727375, -0.013083848170936108, 0.01176681648939848, -0.013223533518612385, 0.04496533423662186, 0.02713884226977825, 0.025555742904543877, 0.015006182715296745, -0.029879331588745117, 0.005570779554545879, 0.007809068541973829, -0.012485197745263577, -0.010602773167192936, 0.02302810549736023, 0.02769758179783821, -0.012026231735944748, -0.0008813471649773419, -0.019649052992463112, 0.0045098369009792805, -0.02966647781431675, -0.030145399272441864, 0.0006352351629175246, 0.00022698847169522196, -0.011973018757998943, -0.011474142782390118, 0.006904440466314554, -0.027059020474553108, 0.020620198920369148, -0.009112797677516937, 0.024424957111477852, -0.006728170905262232, 0.0009886054322123528, -0.019635749980807304, 0.00812169723212719, 0.023254262283444405, 0.01946280710399151, 0.030198613181710243, -0.0050752293318510056, -0.04110736399888992, -0.024118980392813683, -0.003598557086661458, -0.010775716044008732, 0.002457794500514865, 0.028894884511828423, -0.0022665588185191154, 0.001048470614477992, 0.0007108979625627398, -0.0026141090784221888, -0.008075135760009289, 0.0030132096726447344, -0.015804383903741837, 0.025010304525494576, 0.019396290183067322, 0.015019486658275127, 0.001721121370792389, 0.015059396624565125, 0.007103990763425827, 0.01859808899462223, -0.0037781524006277323, -0.001154897385276854, -0.009358908981084824, -0.008460933342576027, 0.012185871601104736, 0.012531759217381477, 0.0018208965193480253, -0.020181188359856606, -0.00990434642881155, -0.01427449844777584, -0.004952173214405775, 0.005657250992953777, 0.005311363842338324, -0.03541352599859238, -0.020779838785529137, -0.002401255303993821, -0.01684204488992691, 0.023400599136948586, -0.011919804848730564, 0.011846636421978474, -0.01740078628063202, 0.024092374369502068, -0.03304553031921387, 0.026314033195376396, -0.015405283309519291, 0.009884391911327839, -0.02071332186460495, 0.01684204488992691, 0.0024727608542889357, -0.015964023768901825, 0.003834691597148776, -0.014553869143128395, -0.02413228340446949, 0.010010773316025734, 0.026353944092988968, 0.0023862889502197504, 0.00032385351369157434, 0.007343451026827097, -0.0011864928528666496, -0.011301198974251747, 0.008015270344913006, -0.008008618839085102, -0.029081130400300026, 0.022296421229839325, 0.01178677100688219, 0.0001384380302624777, 0.018212290480732918, -0.019649052992463112, 0.033284991979599, 0.015072699636220932, 0.010995222255587578, 0.008886639960110188, -0.036131907254457474, 0.020101366564631462, -0.02427862025797367, 0.005381206516176462, 0.010429829359054565, -0.0078024170361459255, 0.004277028143405914, -0.016655799001455307, -0.013117106631398201, 0.0028003558982163668, 0.019023796543478966, -0.028016863390803337, 0.013689151033759117, 0.01720123551785946, -0.018172381445765495, -0.002599142724648118, 0.003714961465448141, -0.0044998591765761375, 0.0016837057191878557, -0.010948659852147102, -0.036930110305547714, -0.010070638731122017, -0.01191315334290266, 0.03756866976618767, -0.007323496043682098, -0.001904042437672615, -0.026114482432603836, -0.022655611857771873, -0.03700992837548256, -0.02854899689555168, -0.006013115867972374, 0.015711260959506035, 0.039697207510471344, 0.006831272039562464, 0.011966366320848465, 0.011653738096356392, -0.006891136988997459, 0.011221379041671753, -0.023999249562621117, 0.006668305955827236, -0.013469645753502846, 0.002955007366836071, 0.0017294359859079123, 0.00380808487534523, -0.03895222023129463, -0.007296889554709196, 0.016176877543330193, -0.007263631094247103, 0.002520985435694456, 0.0020686713978648186, -0.013482948765158653, 0.0004385949287097901, -0.014354318380355835, 0.00013500826025847346, 0.017028292641043663, 0.00995756033807993, 0.0039045342709869146, -0.018637998029589653, 0.0029716365970671177, -0.0028203108813613653, -0.014726812951266766, -0.0139286108314991, -0.029427018016576767, -0.00017585371097084135, 0.00029745468054898083, 0.005141746252775192, -0.030704140663146973, -0.023866215720772743, -0.00612286850810051, -0.02679295465350151, 0.03538691997528076, 0.0012663130182772875, -0.013223533518612385, 0.021844107657670975, 0.015538317151367664, -0.036983322352170944, -0.0183586273342371, 0.0321941152215004, 0.030092185363173485, -0.04177252948284149, 0.01834532432258129, -0.025821808725595474, 0.01678883284330368, -0.005574105307459831, 0.0009129426325671375, -0.003482152707874775, 0.017520517110824585, -0.007396664470434189, -0.01118812058120966, -0.014766722917556763, 0.01427449844777584, 0.015019486658275127, -0.012165917083621025, -0.0008605606853961945, 0.0012039535213261843, -0.005574105307459831, 0.005976531654596329, -0.013808880932629108, -0.014966272749006748, -0.0013877060264348984, 0.002113570226356387, 0.010170414112508297, 0.008534101769328117, -0.014859845861792564, -0.004383455030620098, 0.016150271520018578, -0.04328911378979683, 0.0037781524006277323, 0.20465879142284393, -0.005637296009808779, -0.007070732302963734, 0.03754206374287605, -0.009245830588042736, 0.009724751114845276, 0.03849990665912628, 0.0024993675760924816, -0.0167356189340353, -0.011520704254508018, -0.01720123551785946, 0.008653831668198109, 0.005444397684186697, 0.00716385617852211, 0.0038114108610898256, -0.0002808254794217646, -0.048450812697410583, -0.007862281985580921, 0.000262533372733742, -0.05435750260949135, 0.015192429535090923, 0.0038247141055762768, 0.0020586939062923193, -0.02509012445807457, 0.005876756273210049, 0.019649052992463112, -0.02740490809082985, -0.014021734707057476, 0.011627131141722202, 0.0025675473734736443, -0.026407156139612198, -0.006578508298844099, 0.002940041245892644, -0.01178677100688219, -0.007223721127957106, 0.003847995074465871, 0.004506511148065329, 0.0020670085214078426, 0.014048341661691666, -0.016602585092186928, 0.01545849721878767, -0.0014259532326832414, 0.007489788345992565, -0.006418867968022823, -0.011806726455688477, 0.0314757339656353, -0.006502014119178057, -0.014035037718713284, -0.02624751627445221, 0.019023796543478966, -0.0260479673743248, 0.010529604740440845, 0.04403410106897354, 0.017520517110824585, 0.01176681648939848, -0.008214821107685566, 0.012957466766238213, 0.031395915895700455, -0.018159078434109688, 0.0003820556739810854, -0.020300917327404022, 0.017813190817832947, -0.004160623997449875, 0.02594153955578804, -0.03440247103571892, 0.009937604889273643, -0.013176972046494484, -0.02423871122300625, 0.02429192326962948, -0.024424957111477852, -0.009518549777567387, -0.016562676057219505, -0.007256979588419199, 0.0012713017640635371, -0.012179220095276833, -0.002402918180450797, 0.01364924106746912, -0.021990444511175156, 0.011507401242852211, -0.0028818389400839806, -0.004326915834099054, -0.026314033195376396, -0.002071997383609414, -0.014074948616325855, -0.0005358757334761322, -0.03967060148715973, 0.004469926934689283, -0.004273702390491962, -0.02449147403240204, 0.010562863200902939, -0.016975078731775284, -0.02423871122300625, -0.008933202363550663, -0.01694847270846367, 0.0055508241057395935, -0.010469739325344563, 0.01693516969680786, 0.0028136593755334616, 0.0002382131788181141, -0.011108300648629665, -0.018677908927202225, -0.0024395023938268423, 0.038739364594221115, 0.013509555719792843, -0.02554243989288807, 0.0018691212171688676, 0.015338766388595104, -0.00044025786337442696, 0.019542627036571503, -0.01060942467302084, 0.015950720757246017, -0.010529604740440845, 0.005151723511517048, -0.020700018852949142, 0.010496346279978752, 0.022988194599747658, -0.027830615639686584, -0.02791043557226658, 0.009611672721803188, 0.015950720757246017, 0.010589469224214554, -0.021737679839134216, -0.008361157961189747, 0.004682780709117651, 0.008966460824012756, -0.0030980184674263, -0.012977421283721924, 0.016522765159606934, -0.005527543369680643, -0.016190180554986, 0.029081130400300026, -0.018771031871438026, 3.4245742426719517e-05, 0.012711354531347752, -0.023759789764881134, 0.02131197229027748, 0.015325463376939297, -0.03815401718020439, 0.019542627036571503, 0.006924395449459553, 0.01738748326897621, -0.00022553341113962233, 0.0065119918435812, 0.010775716044008732, -0.003571950364857912, 0.005737071391195059, 0.0038280400913208723, -0.016855349764227867, 9.431869693798944e-05, 0.005953250918537378, -0.01990181766450405, -0.010522952303290367, -0.001641301205381751, -0.0012821106938645244, 0.005284757353365421, -0.007416619453579187, -0.012511803768575191, -0.009372212924063206, -0.003997657913714647, 0.024624507874250412, -0.03086378052830696, 0.018185684457421303, 0.01674892194569111, -0.011647086590528488, -0.01053625624626875, -0.012757916003465652, -0.16836723685264587, 0.01395521778613329, 0.004456623457372189, -0.012731309048831463, 0.029772905632853508, 0.022549184039235115, 0.017254449427127838, 0.0036916807293891907, 0.007622821722179651, -0.013316657394170761, 0.015219036489725113, 0.02337399311363697, -0.037222784012556076, -0.014380925334990025, -0.01463368907570839, 0.01007729023694992, -0.022735431790351868, 0.012950815260410309, 0.041346821933984756, 0.01935637928545475, -0.00491558900102973, -0.004656173754483461, 0.017972830682992935, -0.023919429630041122, 0.01543189026415348, 0.01718793250620365, 0.001260492717847228, 0.0021850757766515017, 0.013702454045414925, -0.004519814625382423, -0.0027637716848403215, 0.015844294801354408, 0.00814830418676138, -0.023693272843956947, 0.039537567645311356, 0.013057241216301918, -0.015844294801354408, -0.007283586077392101, 0.005926643963903189, 0.021804196760058403, 0.017986133694648743, 0.0011016839416697621, 0.01497957669198513, 0.003390692174434662, -0.003678377252072096, 0.032353755086660385, -0.014341015368700027, 0.0005055274232290685, -0.0012538410956040025, -0.012505152262747288, 0.01599063165485859, 0.0013211893383413553, 0.0060430485755205154, -0.009245830588042736, 0.023001497611403465, 0.019875209778547287, 0.019981637597084045, 0.010236931033432484, 0.007157204207032919, -0.025276372209191322, -0.0073035410605371, -0.0021767611615359783, 0.020327525213360786, -0.0015107621438801289, 0.0017909640446305275, -0.013050589710474014, -0.016868652775883675, 0.009578414261341095, -0.04065505042672157, 0.014713509008288383, -0.0061860596761107445, 0.0062193176709115505, 0.025249766185879707, -0.005514239892363548, -0.012438635341823101, -0.0013211893383413553, -0.018810942769050598, 0.025462618097662926, -0.0017826494295150042, -0.017813190817832947, -0.04273037239909172, 0.028788456693291664, -0.0012022906448692083, 0.004493207670748234, 0.008434326387941837, 0.006339048035442829, 0.004130691289901733, -0.03517406806349754, -0.013835487887263298, -0.0008090101764537394, 0.0067015644162893295, -0.02398594655096531, 0.006565204821527004, -0.02131197229027748, 0.017813190817832947, 0.000840605644043535, 0.015059396624565125, 0.0005699655739590526, 0.003059771377593279, -0.0047958591021597385, 0.0002552580845076591, -0.026314033195376396, -0.013981824740767479, 0.02820310927927494, 0.026260819286108017, 9.608555410522968e-05, -0.006671631708741188, 0.004809162579476833, 0.024824058637022972, -0.0009146055672317743, -0.003991005942225456, 0.011706951074302197, 0.018731122836470604, 0.0014858182985335588, 0.0029101085383445024, 0.027591155841946602, -0.010576166212558746, -0.015817686915397644, 0.01337652187794447, -0.006924395449459553, 0.059652239084243774, -0.005710464436560869, -0.003179501509293914, 0.009152707643806934, -0.003781478386372328, -0.030757354572415352, -0.10642682760953903, -0.0032110970932990313, 0.002402918180450797, 0.006831272039562464, -0.010576166212558746, 0.02413228340446949, -0.008061832748353481, 0.011873243376612663, -0.001301234238781035, -0.015139216557145119, -0.031395915895700455, -0.04296983405947685, 0.02328086830675602, -0.0048490725457668304, 0.00882677547633648, -0.03844669088721275, 0.003961073700338602, -0.013715757988393307, 0.0071838111616671085, 0.03711635619401932, 0.020646804943680763, -0.007902191951870918, 0.004290331620723009, -0.024877270683646202, 0.0116670411080122, 0.0002284435322508216, -0.02881506457924843, 0.004612938035279512, 0.02870863676071167, 0.016190180554986, -0.016070451587438583, -0.021205546334385872, -0.0005982351722195745, -0.0007661900017410517, -0.010223627090454102, 0.0018574807327240705, -0.049594901502132416, 0.008188214153051376, 0.017919616773724556, -0.03629154711961746, 0.008181562647223473, -0.016961775720119476, 0.01568465307354927, -0.014513959176838398, -0.006066329311579466, -0.011946411803364754, -0.029693085700273514, 0.010489694774150848, 0.0010551222367212176, -0.018225595355033875, -0.0032792766578495502, 0.01653606817126274, -0.032806068658828735, -0.01359602715820074, 0.022509275004267693, -0.022136781364679337, 0.01734757237136364, 0.002333075739443302, -0.0057869586162269115, -0.012272343970835209, -0.012658140622079372, 0.022762037813663483, 0.013323308899998665, 0.031395915895700455, 0.007676035165786743, 0.0010451447451487184, -0.0024361766409128904, -0.01118812058120966, 0.03751545771956444, 0.0028003558982163668, -0.007935450412333012, 0.0007986169657669961, -0.020394040271639824, 0.019582536071538925, -0.010842232964932919, 0.019888514652848244, -0.025316281244158745, -0.01714802347123623, -0.007662731688469648, -0.008381112478673458, -0.005913340486586094, -0.024052463471889496, 0.008228124119341373, 0.001430110540241003, 0.00832124799489975, 0.012877645902335644, 0.012079444713890553, -0.022535881027579308, -0.001193976029753685, -0.011806726455688477, -0.001183998421765864, 0.022389544174075127, -0.01120807509869337, -0.03206108137965202, 0.01432771235704422, 0.03583923354744911, 0.02348041906952858, 0.009851133450865746, -0.006482059136033058, 0.005687183700501919, -0.04294322431087494, 0.0038978825323283672, -0.06539928913116455, 0.023799698799848557, 0.034056585282087326, 0.0010301785077899694, 0.010070638731122017, -0.015059396624565125, 0.015152519568800926, -0.015112609602510929, -0.022309724241495132, 0.006468755658715963, -0.01251845620572567, 0.02865542471408844, -0.008580663241446018, -0.012890949845314026, -0.014966272749006748, 0.013017331250011921, 0.0001567301369505003, -0.017081506550312042, 0.0030148725491017103, -0.003964399453252554, 0.002125210827216506, -0.00955180823802948, 0.02292167767882347, 0.007356754504144192, -0.017826493829488754, 0.005733745638281107, 0.004004309419542551, 0.016230091452598572, 0.010343357920646667, -0.024544687941670418, 0.011301198974251747, -0.03373730555176735, 0.006951002404093742, 0.008307944051921368, 0.0029749623499810696, 0.013489600270986557, -0.02353363297879696, -0.009259134531021118, -0.0003199040947947651, 0.060556866228580475, -0.012079444713890553, -0.008301292546093464, -0.012930859811604023, -0.0350942462682724, 0.02257579192519188, 0.02854899689555168, -0.008554056286811829, -0.006817968562245369, 0.023946037515997887, -0.024744238704442978, 0.004150646273046732, 0.0253295861184597, -0.005437745712697506, -0.01317032054066658, -0.005351273808628321, -0.02297489158809185, 0.0305711068212986, -0.010602773167192936, -0.005973205901682377, -0.04028255492448807, 0.014673599041998386, -0.02574198879301548, 0.007902191951870918, 0.002717209979891777, 0.0321941152215004, -0.02353363297879696, -0.007862281985580921, -0.0010617738589644432, -0.025861719623208046, -0.011686996556818485, -0.012458590790629387, -0.0008364483364857733, 0.01337652187794447, 0.03035825304687023, 0.00884672999382019, 0.03472175449132919, -0.008261382579803467, 0.0014666947536170483, -0.018318718299269676, -0.005161701235920191, -0.01769345998764038, -0.020487165078520775, -0.029985759407281876, 0.015352070331573486, 0.014061644673347473, 0.01007729023694992, -0.006109565030783415, 0.004682780709117651, -0.005055274348706007, 0.006382283754646778, 0.030730746686458588, -0.013250140473246574, 0.023759789764881134, -0.024305226281285286, 0.0008164933533407748, 0.021351883187890053, -0.014035037718713284, -0.005963228177279234, 0.018425144255161285, 0.022615700960159302, -0.013556117191910744, 0.00814830418676138, 0.0079154958948493, -0.015059396624565125, -0.0046960837207734585, 0.002457794500514865, -0.01924995332956314, -0.019928423687815666, -0.010602773167192936, 0.017813190817832947, 0.0026457044295966625, 0.01649615913629532, 0.025063518434762955, 0.028522390872240067, -0.01765355095267296, 0.012471893802285194, 0.006003138143569231, -0.01027684099972248, -0.00014540150004904717, 0.028894884511828423, 0.001930649159476161, 0.025475922971963882, 0.03610530123114586, 0.0014151443028822541, 0.027484728023409843, 0.023187745362520218, 0.03171519562602043, 0.01497957669198513, 0.007549653295427561, 0.00740331644192338, 0.01760033704340458, 0.013323308899998665, -0.040601834654808044, 0.012485197745263577, 0.01740078628063202, -0.04312947392463684, -0.011753512546420097, 0.01136106438934803, -0.010090594179928303, 0.04347535967826843, 0.003399006789550185, -0.002140176948159933, -0.008381112478673458, 0.0034189620055258274, 0.03434925898909569, 0.018810942769050598, 0.020833052694797516, -0.001377728534862399, -0.017014989629387856, 0.008966460824012756, -0.024411654099822044, 0.029879331588745117, -0.019848603755235672, 0.0010010773548856378, 0.016775529831647873, -0.0038646243046969175, 0.0477590411901474, -0.005234869662672281, -0.02574198879301548, 0.03041146695613861, 0.014819935895502567, 0.021431703120470047, -0.00993095338344574, 0.010443132370710373, 0.011307850480079651, 0.02031422033905983, 0.0048490725457668304, -0.00814830418676138, -0.03299231827259064, -0.0013178634690120816, 0.022203296422958374, -0.0071838111616671085, -0.01693516969680786, 0.02740490809082985, 0.006741474382579327, -0.0027621088083833456, -0.01905040256679058, 0.020779838785529137, 0.010369963943958282, -0.012904252856969833, -3.890971129294485e-06, -0.01604384370148182, -0.026314033195376396, 0.012165917083621025, -0.012165917083621025, -0.015325463376939297, -0.01236546691507101, -0.0370897501707077], "707c2bc5-7953-4801-bbb2-23cdba3b6e37": [-0.012029456906020641, -0.020117290318012238, -0.022531364113092422, 0.0031164749525487423, -0.01631205342710018, 0.039907246828079224, 0.007965083234012127, -0.006042006425559521, -0.00023207339108921587, -0.02054009400308132, 0.03164210915565491, 0.014157116413116455, 0.015930166468024254, 0.014525365084409714, 0.00028875982388854027, 0.01620294339954853, 0.03884341940283775, -0.00658415025100112, 0.04135296493768692, -0.031042000278830528, 0.0016255793161690235, -0.010304143652319908, 0.0004155584319960326, 0.022244948893785477, -0.00391093734651804, 0.03551553934812546, 0.014470810070633888, -0.020117290318012238, -0.00037805159809067845, -0.004016638733446598, 0.0019537638872861862, 0.005285050719976425, 0.005874930415302515, 0.0017167890910059214, -0.028014179319143295, -0.002202672651037574, -0.0020100241526961327, -0.015916526317596436, 0.020594649016857147, -0.0011311713606119156, 0.008824329823255539, 0.0002493350475560874, -0.01563011109828949, 0.0034097100142389536, -0.030114559456706047, 0.015930166468024254, 0.015671027824282646, -0.022231310606002808, -0.026036545634269714, 0.01646208018064499, 0.025695575401186943, 0.00829241517931223, -0.027454985305666924, -0.006086332723498344, -0.01127250213176012, 0.004251908510923386, 0.008183304220438004, 0.03325149416923523, -0.006723948288708925, 0.01984451338648796, -0.002695375820621848, -0.0019009134266525507, -0.00945853628218174, 0.009833604097366333, -0.03606109321117401, -0.020758315920829773, 0.002252113539725542, -0.01539825089275837, 0.00069387600524351, -0.010788322426378727, 0.019080737605690956, 0.013829784467816353, 0.006659164093434811, -0.025641020387411118, 0.018848877400159836, -0.03207855299115181, -0.02763229049742222, -0.013918437063694, -0.014238949865102768, 0.0063932063058018684, 0.008776593953371048, -0.019803596660494804, -0.01198854111135006, 0.008005999028682709, 0.029050730168819427, -0.021358424797654152, 0.008449262008070946, 0.02022640034556389, -0.018985265865921974, -0.0328696072101593, 0.009581285528838634, 0.006178394891321659, 0.0028130109421908855, 0.02560010366141796, -0.004579240921884775, 0.012595469132065773, -0.029759950935840607, 0.025995630770921707, -0.0006857779226265848, -0.010631476528942585, -0.026268407702445984, 0.004780413582921028, -0.03019639290869236, -0.00271753896959126, -0.028477899730205536, 0.0013826374197378755, 0.004480359144508839, -0.009110745042562485, 0.009465355426073074, -0.019121654331684113, -0.015261862426996231, 0.030851056799292564, -0.019926346838474274, -0.048581551760435104, -0.0024652204010635614, -0.0058510624803602695, 0.04440806433558464, -0.013113745488226414, -0.0198717899620533, -0.008762954734265804, 0.003426758572459221, 0.015261862426996231, -0.018398795276880264, -0.003658619010820985, 0.00940398033708334, 0.016243858262896538, 0.004081422928720713, -0.03750681132078171, 0.00940398033708334, 0.012847787700593472, 0.04590833559632301, 0.003784778295084834, 0.012261318042874336, -0.00898799579590559, 0.0009998974855989218, 0.013822965323925018, -0.038134198635816574, 0.0026169526390731335, -0.017812326550483704, -0.03079650178551674, 0.0056703477166593075, 0.020485538989305496, -0.005179349798709154, -0.028232399374246597, -0.012650024145841599, 0.02948717400431633, 0.02292689122259617, 0.005653299391269684, -0.022394975647330284, -0.014198033139109612, 0.022735947743058205, -0.001805441570468247, 0.005397571250796318, 0.00458606006577611, 0.021222036331892014, -0.016393886879086494, 0.020621927455067635, -0.005929485894739628, 0.0004328200884629041, -0.014470810070633888, 0.03267866373062134, 0.018398795276880264, 0.01775776967406273, 0.0035904247779399157, 0.004572421312332153, 0.0324331633746624, 0.007030822336673737, -0.013059189543128014, -0.03581559658050537, -0.014716308563947678, 0.01457992009818554, 0.017907798290252686, -0.026582099497318268, -0.003733632620424032, -0.004661073908209801, 0.012656844221055508, 0.04260773956775665, 0.022708669304847717, -0.012247678823769093, -0.0031761450227349997, -0.04219857230782509, -0.017239494249224663, 0.03254227340221405, 0.009738132357597351, -0.011429348029196262, -0.002299849409610033, -0.012056735344231129, -0.017198577523231506, 0.0030636244919151068, -0.0011686781654134393, 0.008251498453319073, 0.022026726976037025, -0.026350239291787148, -0.028259677812457085, -0.6315328478813171, -0.02112656459212303, -0.018235130235552788, -0.007692305836826563, -0.007399071007966995, 0.0034489217214286327, 0.02480905130505562, 0.008592469617724419, -0.006604608613997698, 0.00028897292213514447, -0.01228177547454834, 0.013591104187071323, -0.0053157382644712925, -0.022244948893785477, -0.01427986565977335, 0.0037915976718068123, 0.009410800412297249, -0.0361974835395813, -0.005861291661858559, -0.016407525166869164, -0.013925256207585335, 0.0001906241086544469, 0.0027550458908081055, 0.005721493624150753, -0.01749863289296627, -0.0229132529348135, 0.020117290318012238, 0.012070373632013798, 0.005360064096748829, 0.03123294562101364, -0.03557009622454643, 0.03516093268990517, 0.018767043948173523, 0.0072490437887609005, 0.05529186129570007, 0.0007480051717720926, -0.028041455894708633, 0.021290229633450508, 0.022163115441799164, -0.0017815735191106796, -0.018535183742642403, -0.024522636085748672, 0.015521000139415264, 0.019067099317908287, 0.006028367672115564, 0.0047463164664804935, 0.029923615977168083, -0.013413799926638603, 0.011354334652423859, 0.018521545454859734, 0.0026732126716524363, 0.009513091295957565, -0.022995084524154663, -0.015821054577827454, 0.006447761785238981, 0.003269911976531148, 0.04192579537630081, -0.023663388565182686, -0.005499862600117922, -0.009540368802845478, 0.008210581727325916, 0.033906158059835434, 0.00014544544683303684, 0.002364634070545435, -0.0037302228156477213, -8.028801676118746e-05, 0.00280448654666543, 0.01151800062507391, 0.022749586030840874, -0.008510636165738106, 0.008374247699975967, 0.017825964838266373, -0.002586265094578266, -0.016516635194420815, 0.02962356247007847, 0.01133387628942728, 0.030578279867768288, -0.010317782871425152, -0.0043439706787467, 0.022695031017065048, 0.004998635035008192, -0.017580466344952583, -0.033087827265262604, -0.023595193400979042, 0.024631746113300323, -0.006771684158593416, -0.001936715329065919, 0.03595198318362236, -0.0034335781820118427, 0.008674302138388157, 0.008019638247787952, 0.014975447207689285, -0.0003855103568639606, 0.0008460343233309686, 0.03344243764877319, -0.0034659702796489, -0.015125473961234093, 0.006427303422242403, 0.0073717935010790825, -0.004780413582921028, -0.0008051178301684558, -0.006243179086595774, 0.005124794319272041, -0.02761865220963955, 0.006676212418824434, -0.016380246728658676, -0.04402617737650871, 0.005581695586442947, 0.0456082820892334, -0.013120564632117748, -0.00964266061782837, -0.013018272817134857, -0.016284774988889694, 0.002669803099706769, 0.00713311368599534, -0.023799777030944824, 0.017239494249224663, -0.01763502135872841, 0.027182208374142647, -0.009956353344023228, 0.02045826055109501, -0.011027002707123756, 0.018235130235552788, -0.0037370421923696995, 0.026404796168208122, 0.0366339273750782, 0.017921436578035355, -0.00513502350077033, -0.01867157220840454, -0.00038252686499617994, -0.004569011740386486, 0.003211946925148368, 0.01333196647465229, 0.0162165816873312, 0.003367088735103607, -0.01410256139934063, 0.011927166022360325, 0.0071262940764427185, 0.009663118049502373, -0.025286410003900528, -0.004664483480155468, -0.00280448654666543, 0.018126018345355988, 0.0059738121926784515, -0.015261862426996231, -0.02254500426352024, -0.01842607371509075, 0.002313488395884633, -0.03385160118341446, 0.004197353031486273, -0.019367152824997902, -0.009397161193192005, -0.003099426394328475, 0.004156436771154404, 0.0066216569393873215, -0.0069728572852909565, -0.019585374742746353, 0.0042587281204760075, -0.010692850686609745, -0.025354605168104172, -0.0014977151295170188, 0.010611018165946007, -0.015084557235240936, 0.0038461529184132814, 0.03314238414168358, -0.014429893344640732, -0.011838513426482677, 0.025995630770921707, -0.0046883514150977135, -0.029787227511405945, 0.010699670761823654, -0.009976811707019806, -0.00141673453617841, 0.042007628828287125, -0.037643201649188995, 0.0005476846708916128, -0.013256953097879887, -0.019339876249432564, -0.011906707659363747, 0.012609108351171017, -0.006942169740796089, 0.015507361851632595, -0.010849697515368462, -0.012670482508838177, 0.028014179319143295, -0.01421167142689228, -0.00798554066568613, -0.0022180164232850075, 0.005513501353561878, 0.03491543233394623, -0.009315327741205692, 0.01022231113165617, 0.0033040090929716825, -0.000575814803596586, 0.014088922180235386, 0.0014883384574204683, 0.008005999028682709, 0.024249859154224396, 0.006509136408567429, 0.009369883686304092, 0.010706489905714989, 0.006147707346826792, 0.038134198635816574, 0.00829241517931223, -0.003102836199104786, -0.02948717400431633, 0.006072693970054388, -0.012172665446996689, 0.030632834881544113, -0.026254767552018166, 0.0009913732064887881, -0.027509542182087898, -0.0005868963780812919, -0.029105285182595253, 0.016352970153093338, 0.028286954388022423, 0.02454991266131401, -0.0020594648085534573, -0.017184939235448837, 0.001678429776802659, 0.021317508071660995, -0.005786278285086155, 0.0048111011274158955, -0.0024464670568704605, -0.018589738756418228, -0.017812326550483704, 0.017212215811014175, 0.02633660100400448, 0.023758860304951668, -0.016366608440876007, 0.019803596660494804, -0.016243858262896538, 0.003597244154661894, 0.01809874176979065, 0.012506816536188126, -0.0069455793127417564, 0.010058645159006119, -0.020185483619570732, 0.04348062351346016, -0.033524271100759506, -0.007583195343613625, 0.001354507403448224, 0.03055100329220295, -0.022995084524154663, -0.018957987427711487, -0.0038495627231895924, 0.004654254298657179, -0.003312533488497138, 0.030878335237503052, 0.029678117483854294, -0.017184939235448837, 0.0008302644127979875, -0.0025453486014157534, -0.0008132158545777202, 0.01252045575529337, -0.035761039704084396, -0.008981176652014256, 0.013338785618543625, 0.02701854333281517, 0.02924167364835739, 0.006553462706506252, -0.00992225669324398, 0.014702670276165009, 0.024522636085748672, 0.057283129543066025, 0.00945171620696783, 0.006805781275033951, 0.020349150523543358, -0.01397981122136116, -0.02454991266131401, -0.030932890251278877, -0.012002179399132729, 0.011538458988070488, -0.00012093815894331783, 0.012718218378722668, -0.007337696384638548, 0.000639320642221719, -0.006007909309118986, 0.017198577523231506, -0.006611427757889032, -0.0232405848801136, -0.04053463414311409, 0.026936709880828857, -0.008906163275241852, -0.008101471699774265, -0.020703759044408798, -0.024017998948693275, -0.005615792702883482, -0.017198577523231506, 0.03557009622454643, -0.013413799926638603, 0.015684666112065315, 0.016598468646407127, -0.008797052316367626, -0.005864701233804226, 0.009724493138492107, 0.018262406811118126, -0.018957987427711487, 0.03557009622454643, -0.004156436771154404, 0.01110201608389616, 0.009240314364433289, -0.023090556263923645, 0.012670482508838177, 0.017553187906742096, -0.010351879522204399, -0.0035120013635605574, -0.022763224318623543, -7.68516656535212e-06, -0.01916257105767727, -0.006171575281769037, -0.03687942400574684, -0.0012684122193604708, -0.007910527288913727, -0.014784502796828747, 0.016871245577931404, 0.00025231853942386806, 0.011347515508532524, 0.021931255236268044, -0.0035222305450588465, -0.016189303249120712, -0.022054005414247513, -0.017416799440979958, -0.0043439706787467, 0.09869065135717392, 0.024468079209327698, -0.015234584920108318, -0.008265137672424316, -0.006891024298965931, 0.023704305291175842, -0.01879432238638401, -0.028368787840008736, 0.020485538989305496, -0.008081013336777687, 0.01752590946853161, -0.01928532123565674, 0.02079923264682293, 0.007733222562819719, 0.010699670761823654, -0.00681601045653224, -0.006788732949644327, 0.003327877027913928, 0.007746861316263676, 0.013318328186869621, -0.001482371473684907, 0.006672802846878767, 0.004415574483573437, 0.017675938084721565, -0.030250947922468185, -0.0068501075729727745, 0.03655209392309189, -0.007644569966942072, 0.020771954208612442, -0.006665983237326145, -0.00898799579590559, 0.023799777030944824, 0.020594649016857147, 0.029678117483854294, -0.020853787660598755, 0.004579240921884775, 0.006918301805853844, -0.011020183563232422, -0.0021310688462108374, -0.00017900978855323046, 0.022272227331995964, 0.019094375893473625, 0.005428258329629898, -0.015807416290044785, 0.0029732673428952694, 6.169444532133639e-05, -0.024277135729789734, -0.011047461070120335, -0.023677026852965355, -0.0075081815011799335, 0.03892524912953377, 0.003152277087792754, -0.01240452565252781, -0.003385842079296708, 0.02806873433291912, 0.01584833301603794, -0.011627111583948135, -0.002531709847971797, -0.020990176126360893, 0.026582099497318268, -0.0061749848537147045, 0.00461333803832531, 0.021440256386995316, -0.0020185483153909445, -0.0231314729899168, -0.005656708963215351, -0.033551547676324844, -0.01811238005757332, -0.022299503907561302, 0.02386797033250332, -0.028805231675505638, -0.011899888515472412, -0.015698306262493134, 0.008428803645074368, 0.001246249070391059, 0.0035324597265571356, 0.027932345867156982, -0.008783413097262383, 0.02219039388000965, -0.016980355605483055, -0.022149477154016495, -0.023554276674985886, 0.0211402028799057, -0.015302779152989388, -0.02279050275683403, 0.0038393335416913033, 0.0086879413574934, 0.007910527288913727, -0.025872880592942238, 0.021235674619674683, -0.002357814460992813, 0.01940806955099106, 0.00987452082335949, -0.013066009618341923, 0.001409062766470015, -0.014116199687123299, -0.006976266857236624, -0.0161074697971344, -0.017457716166973114, -0.0031113605946302414, 0.004667893052101135, -0.04476267471909523, -0.005578285548835993, -0.010829239152371883, 0.002233360195532441, -0.015425528399646282, 0.019912706688046455, 0.010460990481078625, -0.019298959523439407, -0.017007634043693542, 0.025395521894097328, -0.009322147816419601, 0.01133387628942728, 0.002252113539725542, 0.012779593467712402, 0.016871245577931404, 0.015180029906332493, 0.006253408268094063, 0.0043473802506923676, -0.004442852456122637, 0.004057554993778467, -0.0285597313195467, -0.0024532864335924387, -0.005305509082973003, -0.03205127641558647, -0.003979131579399109, 0.006703489925712347, -0.028750676661729813, 0.011831694282591343, 0.003941624891012907, 0.01869885064661503, 0.004913392476737499, 0.024017998948693275, -0.011047461070120335, -0.03756136819720268, -0.004749726038426161, -0.012847787700593472, 0.0010016023879870772, -0.010829239152371883, 0.010263227857649326, -0.013945714570581913, -0.008210581727325916, -0.017648659646511078, -0.0116202924400568, -0.008926620706915855, -0.02444080263376236, -0.012322692200541496, 0.003174440236762166, -0.00022035252186469734, -0.0005975516978651285, -0.004153026733547449, -0.016025638207793236, -0.02430441416800022, -0.012493178248405457, -0.004180304706096649, -0.03540642932057381, 0.0027891427744179964, -0.013175119645893574, 0.02124931290745735, 0.0032852557487785816, 0.025818325579166412, -0.030823780223727226, 0.012731857597827911, 0.010488267987966537, -0.0011831694282591343, 0.0007748565985821187, -0.0019196667708456516, -0.021535729989409447, -0.043426066637039185, -0.02186306193470955, 0.021344784647226334, 0.02152208983898163, 0.013959352858364582, -0.01843971200287342, -0.015370973385870457, 0.034342601895332336, -0.013113745488226414, -0.0034847238566726446, -0.007535459473729134, -0.033769767731428146, -0.023595193400979042, -0.013256953097879887, -0.007501362357288599, 0.008558372035622597, -0.022504087537527084, 0.0008144945022650063, 0.0577741302549839, 0.012390886433422565, 0.004480359144508839, -0.006894433870911598, 0.020185483619570732, -0.01681669056415558, 0.0008639353327453136, -0.004777004010975361, 0.01463447604328394, -0.017580466344952583, 0.032242219895124435, -0.003150572068989277, 0.006570511497557163, -0.0019128473941236734, -0.011858971789479256, -0.00956764630973339, -0.016257498413324356, -0.012813691049814224, -0.006195443216711283, 0.004466720391064882, -0.010399616323411465, -0.024372607469558716, 0.014811781235039234, -0.009424438700079918, -0.01028368528932333, -0.0009828489273786545, -0.01773049309849739, -0.037779588252305984, -0.015384611673653126, -0.004790642764419317, -0.0038632014766335487, 0.009117565117776394, -0.022040367126464844, -0.005789687857031822, 0.00864020548760891, -0.004712219350039959, 0.04511728510260582, 0.003353449981659651, 0.02394980378448963, 0.01948990300297737, -0.02386797033250332, 0.007555917836725712, -0.0019026182126253843, -0.01233633141964674, -0.006014728453010321, 0.02138570137321949, 0.019994540140032768, -0.0023186029866337776, 0.003921166528016329, -0.01939443126320839, -0.0030312323942780495, -0.03044189140200615, -0.024031637236475945, -0.0027840284164994955, 0.008476539514958858, -0.020376427099108696, -0.007515001110732555, -0.0015122063923627138, -0.02208128198981285, 0.01597108133137226, -0.014443532563745975, 0.03360610455274582, -0.013188758864998817, -0.01879432238638401, -0.026500267907977104, 0.010297324508428574, 0.021085647866129875, 0.02937806211411953, 0.024413524195551872, -0.016011998057365417, -0.037643201649188995, -0.013700215145945549, -0.010085922665894032, -0.02234042063355446, -0.004800871945917606, 0.02243589237332344, 0.0034131198190152645, 0.00713311368599534, 0.0013672937639057636, -0.007051280699670315, -0.022026726976037025, -0.006475039757788181, -0.012506816536188126, 0.026486627757549286, 0.024481719359755516, 0.025177299976348877, -0.0003663307288661599, 0.016707580536603928, 0.011081557720899582, 0.016830328851938248, -0.0057453615590929985, 0.004081422928720713, -0.011067919433116913, 0.0013894569128751755, 0.013038731180131435, 0.017484992742538452, -0.008974357508122921, -0.005257773213088512, -0.02009001187980175, -0.0191489327698946, -0.0018719309009611607, 0.019448986276984215, 0.001053600455634296, -0.04053463414311409, -0.0326513834297657, 0.0028505176305770874, -0.034260768443346024, 0.027932345867156982, -0.0006602051435038447, 0.013229675590991974, -0.003269911976531148, 0.01410256139934063, -0.031042000278830528, 0.028723398223519325, -0.016707580536603928, 0.011245223693549633, -0.034724488854408264, 0.01856246218085289, 0.010331422090530396, -0.019530819728970528, 0.013141022995114326, -0.014607198536396027, -0.03276049345731735, -0.0015062394086271524, 0.015357334166765213, -0.006014728453010321, 0.0050872876308858395, 0.0072490437887609005, -0.00198445119895041, -0.0116202924400568, 0.021181119605898857, -0.01843971200287342, -0.03379704803228378, 0.01763502135872841, 0.023827053606510162, 0.00975859072059393, 0.015834694728255272, -0.009015273302793503, 0.020158207044005394, 0.022722307592630386, 0.01563011109828949, 0.015370973385870457, -0.03338788077235222, 0.029814505949616432, -0.012854606844484806, 0.008926620706915855, 0.0049168020486831665, -0.0012360198888927698, -0.017594104632735252, -0.02524549327790737, -0.010426893830299377, 0.015684666112065315, 0.007760500069707632, -0.0072967796586453915, 0.018998904153704643, 0.006645524874329567, -0.016284774988889694, -0.010911072604358196, -0.0010791732929646969, -0.004569011740386486, -0.010181394405663013, -0.009956353344023228, -0.029187118634581566, -0.009485813789069653, -0.004292825236916542, 0.02984178252518177, -0.004541733767837286, -0.010549643076956272, -0.021453896537423134, -0.02560010366141796, -0.04168029502034187, -0.02712765336036682, -0.017184939235448837, 0.011149751953780651, 0.03712492436170578, 0.01216584537178278, 0.011463445611298084, 0.03633387014269829, -0.009110745042562485, 0.0035290499217808247, -0.004115520045161247, 0.007671847939491272, -0.0201991219073534, 0.0041359784081578255, -0.004129158798605204, 0.010822420008480549, -0.03030550293624401, -0.0040132286958396435, 0.010992905125021935, -0.0029630381613969803, 0.0024174845311790705, 0.0064511713571846485, 0.005247544031590223, -0.008244679309427738, -0.003228995483368635, -0.008203762583434582, 0.031042000278830528, 0.01028368528932333, 0.005527140107005835, -0.025572825223207474, -0.010781503282487392, -0.004804281517863274, -0.0034710848703980446, -0.022054005414247513, -0.03562465310096741, 0.011095196940004826, -0.015343695878982544, 0.0016102356603369117, -0.014907252974808216, -0.001834424096159637, -0.01620294339954853, -0.03818875178694725, 0.03019639290869236, -0.006267047021538019, 0.0003396923711989075, 0.02630932256579399, 0.01010638102889061, -0.019708124920725822, -0.015248224139213562, 0.021535729989409447, 0.017130384221673012, -0.02268139086663723, 0.01643480360507965, -0.026950348168611526, 0.01584833301603794, -0.007828694768249989, 0.004984996281564236, -0.021699395030736923, 0.0198717899620533, -0.02465902455151081, -0.005336196161806583, -0.023554276674985886, 0.022954167798161507, 0.014839058741927147, -0.015766499564051628, -0.009213036857545376, 0.005598743911832571, -0.010815600864589214, 0.004766774829477072, -0.0074195293709635735, -0.01856246218085289, -0.007337696384638548, 0.004149617161601782, 0.007064919453114271, 0.01022231113165617, -0.02021276205778122, 0.004988405853509903, 0.0024174845311790705, -0.023090556263923645, 0.009847243316471577, 0.21025636792182922, -0.012704580090939999, 0.0010595674393698573, 0.028614288195967674, 0.005748771131038666, 0.01729404926300049, 0.010140477679669857, 0.0002759734052233398, -0.016871245577931404, -0.00098455382976681, -0.004221220966428518, 0.016843967139720917, -0.01901254430413246, 0.006215901579707861, 0.004981586709618568, -0.008299234323203564, -0.03595198318362236, -0.007515001110732555, 0.0004006409435532987, -0.06623020768165588, 0.006887614261358976, -0.00028343216399662197, -0.010829239152371883, 0.002016843529418111, 0.012861426919698715, 0.0031761450227349997, -0.014648114331066608, -0.005711264442652464, 0.02704581990838051, -0.006928530987352133, -0.0286688432097435, 0.0005966992466710508, -0.0024140747264027596, -0.003934805281460285, -0.0038597919046878815, 0.018003270030021667, 0.01633933186531067, 0.002369748428463936, 0.016380246728658676, -0.009963173419237137, 0.012936440296471119, -0.005090697202831507, 0.00340800522826612, 0.010460990481078625, -0.007515001110732555, 0.023745222017169, 0.0035324597265571356, -0.023363333195447922, -0.014620836824178696, 0.0208128709346056, -0.02598199062049389, 0.003302304306998849, 0.04585378244519234, 0.030005449429154396, 0.005939715076237917, -0.02842334285378456, -0.010951989330351353, 0.016843967139720917, -0.008797052316367626, 0.016598468646407127, -0.023881610482931137, 0.021535729989409447, 0.008265137672424316, 0.036824870854616165, -0.03292416036128998, 0.008401526138186455, -0.008810690604150295, -0.026036545634269714, 0.007426348514854908, -0.036361150443553925, -0.006481858901679516, -0.017253132537007332, 0.00743316812440753, -0.006764865014702082, -0.002550463192164898, -0.0012598879402503371, 0.033060550689697266, -0.02915984019637108, 0.009076648391783237, 0.0003045297344215214, 0.01410256139934063, -0.022013088688254356, 0.01198172103613615, -0.014402615837752819, -0.002165165962651372, -0.03461537882685661, 0.0045178658328950405, -0.009622202254831791, -0.018835239112377167, 0.008442441932857037, -0.006348880473524332, -0.037915974855422974, -0.0033346964046359062, -0.006396616343408823, -0.012847787700593472, -0.0014371927827596664, 0.01963992975652218, 0.006202262826263905, 0.004357609432190657, 0.011006544344127178, -0.013543368317186832, -0.019571736454963684, 0.022735947743058205, -0.00678532337769866, -0.03488815575838089, -0.006795552093535662, 0.01028368528932333, 0.007378612644970417, 0.013966172933578491, 0.0013715558452531695, 0.024045275524258614, -0.019189849495887756, -0.0011047461302950978, -0.02292689122259617, -0.00475995521992445, 0.021563006564974785, -0.018767043948173523, -0.025995630770921707, 0.0025436438154429197, 0.03311510384082794, 0.017484992742538452, 0.0034625607077032328, -6.803437281632796e-05, 0.007058099843561649, -0.0019810416270047426, -0.013270591385662556, -0.011436168104410172, 0.010583740659058094, 0.009008454158902168, -0.00274652149528265, 0.018957987427711487, -0.038952529430389404, 0.004357609432190657, 0.007849153131246567, -0.02888706512749195, 0.030360059812664986, 0.011586194857954979, -0.0324331633746624, 0.02022640034556389, -0.005452126730233431, -0.0031761450227349997, -0.004777004010975361, 0.007528639864176512, 0.01631205342710018, 0.00905619002878666, -0.0003682487003970891, 0.008558372035622597, -0.0286688432097435, -0.008278775960206985, -0.012479539029300213, -0.03229677304625511, 0.0014346354873850942, -0.011095196940004826, -0.005343015771359205, 0.009594924747943878, 0.005949944257736206, -0.010856516659259796, -0.027700485661625862, -0.012029456906020641, 0.031914886087179184, -0.026472989469766617, 0.011347515508532524, 0.004320102743804455, 0.011579375714063644, -0.008381067775189877, -0.022708669304847717, -0.17414072155952454, 0.015793778002262115, 0.023690665140748024, -0.016134748235344887, 0.02409983053803444, 0.029678117483854294, 0.017484992742538452, -0.006229540333151817, -0.012418163940310478, -0.018276046961545944, 0.01984451338648796, 0.012629566714167595, -0.04563555866479874, -0.003498362610116601, -0.010447352193295956, 0.007010363973677158, -0.018617017194628716, 0.011640750803053379, 0.03739770129323006, 0.01822149008512497, -0.007542278617620468, -0.002125954255461693, 0.018657933920621872, 0.0004125749401282519, 0.008496997877955437, 0.007774139288812876, 0.004214401822537184, 0.0303327813744545, 0.008244679309427738, -0.01457992009818554, -0.009267591871321201, 0.014484448358416557, 0.01564374938607216, -0.011367973871529102, 0.03420621156692505, 0.019080737605690956, -0.008531094528734684, 0.002313488395884633, 0.008306053467094898, -0.0023748630192130804, 0.012254497967660427, -0.0038154656067490578, 0.014184393920004368, -0.006011318881064653, 0.000889934366568923, 0.039879970252513885, -0.0035631470382213593, -0.0033074188977479935, 0.008449262008070946, -0.012670482508838177, 0.01586197130382061, -0.0014550938503816724, 0.02022640034556389, 0.004834969062358141, 0.029650839045643806, 0.022722307592630386, 0.013775228522717953, 0.009281231090426445, -0.012854606844484806, -0.02572285383939743, 0.0008144945022650063, 0.0014729948015883565, 0.02430441416800022, -0.015193668194115162, 0.0008102323627099395, -0.0036245218943804502, -0.0086879413574934, 0.0036415704526007175, -0.028477899730205536, 0.02045826055109501, -0.015084557235240936, 0.029869060963392258, 0.027986900880932808, -0.007405890617519617, -0.00875613559037447, 0.0014150297502055764, -0.03194216266274452, 0.01738952100276947, -0.013577465899288654, -0.025436436757445335, -0.05218220502138138, 0.038488809019327164, -0.017103105783462524, -0.004715628921985626, 0.006481858901679516, 0.011538458988070488, -0.0052986894734203815, -0.0285597313195467, -0.007862791419029236, -0.0051929885521531105, 0.014607198536396027, -0.024168025702238083, 0.001943534822203219, -0.013952533714473248, 0.012540914118289948, 0.015671027824282646, 0.01939443126320839, -0.0005660118767991662, -0.005172530189156532, -0.006396616343408823, 0.003215356729924679, -0.015602833591401577, -0.01209765113890171, 0.023417890071868896, 0.017785048112273216, 0.01063829567283392, -0.006942169740796089, 0.0019196667708456516, 0.017825964838266373, 0.007542278617620468, -0.006481858901679516, 0.006120429839938879, 0.0211402028799057, -0.005100926384329796, 0.020581010729074478, 0.01680305227637291, -0.007740042172372341, -0.010426893830299377, 0.028014179319143295, -0.01609383150935173, 0.07441351562738419, -0.0057453615590929985, -0.008162845857441425, 0.00452809501439333, -0.021099286153912544, -0.024836327880620956, -0.11729402840137482, -0.0063727484084665775, 0.0028931391425430775, 0.0062977345660328865, -0.008381067775189877, 0.00030623457860201597, -0.01786688156425953, 0.013256953097879887, -0.0053634741343557835, -0.008231040090322495, -0.012090831995010376, -0.03101472370326519, -9.962746844394132e-05, -0.0056396606378257275, 0.008237859234213829, -0.03652481362223625, -0.006093151867389679, -0.008565192110836506, -0.003160801250487566, 0.03292416036128998, 0.010863336734473705, -0.01740316115319729, 0.0044121649116277695, -0.03420621156692505, 0.03761592134833336, 0.00910392589867115, -0.02973267249763012, 0.02163120172917843, 0.017675938084721565, 0.012056735344231129, -0.0328696072101593, -0.005881750024855137, 0.01263638585805893, 0.006983086466789246, 0.014320782385766506, -0.005690806079655886, -0.02727768011391163, -0.005124794319272041, 0.025068188086152077, -0.035897430032491684, 0.014757225289940834, -0.021931255236268044, 0.014375338330864906, -0.0025964942760765553, -0.008783413097262383, -0.008585650473833084, -0.022285865619778633, 0.01902618259191513, 0.005353244952857494, -0.016352970153093338, -0.020731037482619286, 0.014593559317290783, -0.034369878470897675, -0.014525365084409714, 0.026841238141059875, -0.003298894502222538, 0.012159026227891445, 0.005755590740591288, -0.023308778181672096, -0.0036415704526007175, -0.010583740659058094, 0.008653844706714153, 0.008817510679364204, 0.03466993197798729, 0.01404800545424223, -0.0011635635746642947, -0.003644980024546385, -0.010426893830299377, 0.03123294562101364, -0.0034744946751743555, -0.001837833784520626, 0.016475718468427658, -0.021794866770505905, 0.015548278577625751, -0.0324331633746624, 0.027577735483646393, -0.025654658675193787, -0.013270591385662556, 0.028123289346694946, 0.00041470598080195487, -0.006703489925712347, -0.021181119605898857, -0.001783278421498835, -0.0019077328033745289, 0.015084557235240936, 0.01509819645434618, 0.007405890617519617, -0.007890068925917149, -0.0038086462300270796, -0.015070918947458267, 0.0063454704359173775, 0.01427986565977335, -0.012356789782643318, -0.016639385372400284, 0.00560897309333086, 0.039907246828079224, 0.012609108351171017, 0.004268957301974297, -0.006778503768146038, 0.001591482199728489, -0.021481173112988472, 0.005094106774777174, -0.06350243836641312, 0.03499726578593254, 0.0025231854524463415, 0.01110201608389616, 0.005400980822741985, -0.02562738209962845, 0.023554276674985886, -0.016284774988889694, -0.0161074697971344, 0.014007089659571648, 0.0012479538563638926, 0.030987445265054703, -0.027114015072584152, -0.01456628181040287, -0.02221767045557499, -0.0015053870156407356, 0.01599835976958275, -0.017198577523231506, -0.0005255215801298618, -0.0021447075996547937, 0.005946534685790539, -0.015957443043589592, 0.030851056799292564, 0.009779049083590508, -0.021917616948485374, 0.002248703734949231, 0.008442441932857037, 0.03674303740262985, -0.002448171842843294, -0.034124378114938736, 0.013250133953988552, -0.033196937292814255, 0.005735132377594709, -0.00596699258312583, 0.003975722007453442, 0.016243858262896538, -0.022463170811533928, -0.01516639068722725, -0.008421983569860458, 0.050354599952697754, -0.012650024145841599, -0.005199808161705732, 0.004306463990360498, -0.02935078553855419, 0.022135838866233826, 0.03363338112831116, -0.010351879522204399, -0.005827194545418024, 0.01599835976958275, -0.015766499564051628, 0.005932895466685295, 0.030141837894916534, -0.0007872168207541108, -0.0219721719622612, -0.0037302228156477213, -0.024877244606614113, 0.04181668534874916, -0.01587560959160328, 0.015930166468024254, -0.042580459266901016, 0.0071262940764427185, -0.0078014167957007885, 0.01180441677570343, -0.003428463591262698, 0.028587009757757187, -0.007712764199823141, 0.0050122737884521484, -0.0013971286825835705, -0.017444077879190445, 0.0006815158412791789, 0.00560897309333086, -0.002183919306844473, 0.011524820700287819, 0.006747816223651171, 0.0130319120362401, 0.0322149395942688, -0.004538324195891619, -0.002325422363355756, -0.031042000278830528, 0.012759135104715824, -0.0026527545414865017, -0.030005449429154396, -0.03513365238904953, 0.002165165962651372, 0.018139658495783806, 0.006229540333151817, 0.003723403438925743, 0.0012846082681789994, -0.0077536809258162975, 0.008244679309427738, 0.022654114291071892, -0.008674302138388157, 0.019189849495887756, -0.00214300281368196, 0.011736222542822361, 0.02195853367447853, -0.01228177547454834, 0.00018881270079873502, 0.02055373229086399, 0.05016365647315979, -0.012650024145841599, 0.019053461030125618, 0.001299952040426433, -0.024999994784593582, -0.006478449329733849, -0.00033798752701841295, -0.010951989330351353, -0.003665438387542963, 0.006270457059144974, 0.02525913342833519, 0.0002751209831330925, 0.0138638811185956, 0.033060550689697266, 0.02009001187980175, -0.007051280699670315, 0.004442852456122637, 0.004098471719771624, -0.002855632221326232, -0.003999589942395687, 0.046699389815330505, 0.011927166022360325, 0.037288591265678406, 0.014539004303514957, 0.011149751953780651, 0.01598472148180008, 0.018644295632839203, 0.009097106754779816, 0.028723398223519325, -0.00999045092612505, 0.007139932829886675, 0.014116199687123299, 0.008176485076546669, -0.034342601895332336, 0.008121929131448269, -0.0016187599394470453, -0.03557009622454643, -0.019367152824997902, 0.024249859154224396, -0.014157116413116455, 0.030741946771740913, 0.0052032177336514, -0.026172934100031853, -0.0009828489273786545, -0.004848607815802097, 0.023076917976140976, 0.021099286153912544, 0.008121929131448269, 0.006608018185943365, -0.006321602500975132, -0.00670008035376668, -0.012745496816933155, 0.022531364113092422, -0.026050185784697533, -0.01760774292051792, 0.01751227118074894, -0.0038188754115253687, 0.025641020387411118, -0.019448986276984215, -0.010842878371477127, 0.02725040353834629, 0.024413524195551872, 0.02126295305788517, -0.01110201608389616, -0.014238949865102768, -0.0012189713306725025, 0.004569011740386486, -0.005987450946122408, -0.007787778042256832, -0.034478988498449326, 0.0068978434428572655, 0.015930166468024254, -0.01028368528932333, -0.014689031057059765, 0.017771409824490547, -0.001507091918028891, 0.0007258420228026807, -0.0030346419662237167, 0.01110201608389616, -0.002328831935301423, -0.021058369427919388, 0.011224765330553055, -0.02618657425045967, -0.014784502796828747, 0.021099286153912544, -0.008728858083486557, -0.024413524195551872, -0.015343695878982544, -0.028041455894708633], "727f69f9-c74c-4dfc-875a-b00f9dd8a474": [-0.017908960580825806, -0.014025090262293816, -0.009864763356745243, 0.004180555697530508, -0.014712858945131302, 0.027996238321065903, -0.005950549151748419, -0.006034834310412407, -0.007100202143192291, -0.028400808572769165, 0.013101322576403618, 0.0028336751274764538, 0.020808378234505653, -0.0022453630808740854, -0.002107135020196438, -0.0009591678390279412, 0.030774284154176712, 0.0012305667623877525, 0.03881173953413963, -0.02701178379356861, -0.008590367622673512, 0.0019233927596360445, 0.006412432994693518, 0.024651793763041496, -0.011665099300444126, 0.03282410651445389, 0.010667160153388977, -0.01892038621008396, 0.005249294452369213, -0.006351747550070286, 0.005390894133597612, 0.008806138299405575, 0.007113687694072723, 0.007976770401000977, -0.041751615703105927, -0.008644310757517815, 0.0014926943695172668, -0.014780287630856037, 0.018313530832529068, -0.014308289624750614, 0.01987786777317524, -0.0070597450248897076, -0.016816623508930206, -0.00014560302952304482, -0.03757105767726898, 0.011982012540102005, 0.005316723138093948, -0.019203584641218185, -0.0337950736284256, 0.018111245706677437, 0.005707807373255491, 0.006766431964933872, -0.021469175815582275, 0.0025892474222928286, -0.00047747677308507264, -0.0042682127095758915, 0.019217070192098618, 0.03430752828717232, -0.001047667465172708, 0.02448996528983116, 0.00011030851601390168, 0.015886111184954643, -0.003543358063325286, 0.001394080463796854, -0.029560575261712074, -0.016209768131375313, 0.007437343709170818, -0.01762576214969158, -0.003904099576175213, -0.02040380984544754, 0.03686980530619621, 0.008806138299405575, -0.0030646170489490032, -0.013917204923927784, 0.0226154588162899, -0.024584364145994186, -0.02602733112871647, -0.014429660513997078, -0.02377522550523281, 0.016371596604585648, 0.0064697470515966415, -0.022750314325094223, -0.008172311820089817, 0.020687008276581764, 0.025042878463864326, -0.021900717169046402, 0.004500840324908495, 0.024651793763041496, -0.013357549905776978, -0.025487905368208885, 0.0013232807395979762, 0.00929836556315422, 0.0018273073947057128, 0.019378898665308952, -0.007983513176441193, 0.009851277805864811, -0.02810412272810936, 0.018286559730768204, 0.004312040749937296, -0.01119984406977892, -0.01703239418566227, -0.0005149837816134095, -0.027025269344449043, 0.0005781978252343833, -0.02422025240957737, 0.0007969184662215412, -0.0012094954727217555, 0.002412248170003295, 0.012447267770767212, -0.005148152355104685, 0.002076792297884822, 0.02505636401474476, -0.01600748300552368, -0.04409812018275261, -0.0032534163910895586, -0.011327957734465599, 0.02539350464940071, -0.03152948245406151, -0.012804637663066387, -0.0011386957485228777, -0.0033663588110357523, 0.011961783282458782, -0.02280425652861595, 0.004642439540475607, 0.011732527054846287, 0.022628944367170334, 0.0035804437939077616, -0.03295896202325821, 0.0077137998305261135, -0.003917585127055645, 0.04266864061355591, 0.004551411606371403, 0.019244041293859482, -0.010653674602508545, -0.019257528707385063, 0.016465995460748672, -0.015764741227030754, -0.016870565712451935, -0.021657975390553474, -0.0226154588162899, 0.020498208701610565, 0.01405206136405468, 0.003455701284110546, -0.018016846850514412, -0.006034834310412407, 0.026256587356328964, 0.012325896881520748, -0.0011808384442701936, -0.02991120144724846, -2.2269781766226515e-05, 0.01585914008319378, -0.017517877742648125, 0.009008423425257206, -0.006783288903534412, 0.03171828016638756, -0.015589427202939987, 0.00870499573647976, 0.005825806874781847, 0.0032820734195411205, -0.01665479503571987, 0.025609275326132774, 0.022103002294898033, 0.0015567513182759285, -0.014483602717518806, 0.009500649757683277, 0.028724463656544685, -0.005087466444820166, -0.012137097306549549, -0.0358988381922245, -0.019985754042863846, 0.01780107617378235, 0.017018906772136688, -0.015899596735835075, 0.0005912620690651238, -0.010471617802977562, 0.008718481287360191, 0.04331595078110695, 0.024570878595113754, -0.009986134245991707, -0.00015350477769970894, -0.031826164573431015, -0.008152083493769169, 0.02926388941705227, 0.0070597450248897076, -0.015400627627968788, -0.0003297666262369603, -0.016101881861686707, -0.01968906819820404, 0.003742271801456809, 0.0023195340763777494, 0.01091664470732212, 0.01188086997717619, -0.03411873057484627, -0.027672581374645233, -0.6330710053443909, -0.02531259134411812, -0.010950358584523201, -0.018677644431591034, -0.002174563240259886, 0.005529121961444616, 0.01825958862900734, 0.004753696266561747, -0.001994192600250244, 0.0005748264375142753, -0.012872066348791122, 0.015697313472628593, 0.008920766413211823, -0.010464875027537346, -0.008071170188486576, -0.008152083493769169, 0.00688106007874012, -0.030477600172162056, -0.019931811839342117, -0.013971148058772087, -0.002090277848765254, -0.005185237620025873, 0.0054010082967579365, 0.018043817952275276, -0.01362726278603077, -0.01936541311442852, 0.019540727138519287, 0.0028657035436481237, 0.012885551899671555, 0.04299229755997658, -0.023289741948246956, 0.02842777967453003, 0.03023485839366913, 0.011402128264307976, 0.055399104952812195, -0.010943615809082985, -0.0185158159583807, 0.0206600371748209, 0.01749090664088726, 0.019999239593744278, -0.012049440294504166, -0.012588866986334324, 0.023100942373275757, -0.0026802755892276764, 0.009635507129132748, 0.00011378528870409355, 0.036627061665058136, -0.019796954467892647, 0.007471057586371899, 0.01755833439528942, 0.009439964778721333, 0.010276075452566147, -0.004500840324908495, -0.01148978527635336, -0.003796214237809181, 0.013027151115238667, 0.03155645355582237, -0.00841505452990532, 0.0031876738648861647, -0.003381530288606882, 0.007848656736314297, 0.029479660093784332, -0.00894099473953247, -0.008050940930843353, -0.02059260942041874, 0.00938602164387703, -0.00912979431450367, 0.005094209685921669, 0.029156005010008812, -0.025029391050338745, 0.010336761362850666, 0.007774485275149345, -0.005158266518265009, -0.013512634672224522, 0.02791532315313816, 0.020633066073060036, 0.028670521453022957, -0.01243378221988678, -0.007174373138695955, 0.011826926842331886, 0.0029449318535625935, -0.007612657267600298, -0.03317473456263542, -0.03233862295746803, 0.012838351540267467, 0.0009085966157726943, -0.00912979431450367, 0.034415412694215775, -0.0008285254589281976, 0.0015946797793731093, 0.016627823933959007, 0.017126793041825294, -0.0014783658552914858, 0.014915144070982933, 0.03430752828717232, 0.0040861559100449085, -0.005468436516821384, -0.004581754095852375, 0.011651613749563694, -0.001744707697071135, 0.0017935932846739888, -0.00964899268001318, 0.00629780488088727, -0.020579122006893158, 0.012878809124231339, -0.00805768370628357, -0.034037813544273376, -0.000422901997808367, 0.042911380529403687, -0.006692260503768921, -0.006196662317961454, -0.01917661353945732, -0.023222312331199646, 0.0031994737219065428, 0.02617567405104637, -0.02428768016397953, 0.0030140457674860954, -0.011503270827233791, 0.02875143475830555, -0.010181675665080547, 0.020295923575758934, -0.015953540802001953, 0.01657387986779213, 0.0073834010399878025, 0.02810412272810936, 0.026836471632122993, 0.011638128198683262, -0.017517877742648125, -0.027294984087347984, -0.0021324206609278917, -0.0027123040053993464, 0.009244422428309917, 0.011536985635757446, 0.013256407342851162, 0.010748074389994144, -0.010876188054680824, 0.008954480290412903, 0.014915144070982933, 0.021091578528285027, -0.02311442792415619, -0.005208837799727917, 0.0011757813626900315, 0.01684359461069107, 0.0028909891843795776, -0.005603293422609568, -0.04871021583676338, -0.014915144070982933, 0.0024965335614979267, -0.021347805857658386, 0.008549910970032215, -0.016277195885777473, -0.0015854083467274904, -0.0036209006793797016, 0.0011976954992860556, 0.017922447994351387, -0.012002240866422653, -0.016047939658164978, 0.0003419879940338433, -0.0024914764799177647, -0.023289741948246956, 0.009325336664915085, 0.018731586635112762, -0.01153024286031723, 0.01204269751906395, 0.020107124000787735, -0.013849776238203049, -0.005154895130544901, 0.03854202851653099, -0.017463933676481247, -0.03587186709046364, 0.017706677317619324, -0.011611156165599823, -0.014470117166638374, 0.04571640118956566, -0.023411111906170845, 0.015360170975327492, -0.01728862151503563, -0.008678024634718895, -0.0029196462128311396, 0.009412993676960468, -0.011793212965130806, 0.023883109912276268, 0.004693010821938515, -0.01754484884440899, 0.020430780947208405, -0.011476299725472927, -0.006756317336112261, 0.01560291275382042, -0.006119119934737682, 0.03401084244251251, 0.0067967744544148445, 0.009628764353692532, 0.006088776979595423, -3.310835745651275e-05, 0.012346125207841396, -0.0035905579570680857, 0.02883234992623329, 0.024516936391592026, 0.02551487646996975, 0.012251725420355797, 0.008408311754465103, 0.019405869767069817, 0.025676703080534935, 0.0006304548005573452, 0.0017817933112382889, -0.032743193209171295, 0.006682146340608597, -0.02202208898961544, 0.03444238379597664, -0.03050457127392292, 0.0004125770356040448, -0.015521998517215252, -0.0026499328669160604, -0.026701614260673523, 0.01923055574297905, 0.015589427202939987, 0.0094264792278409, 0.006220262497663498, 0.0063989474438130856, 0.0008137755212374032, 0.03096308372914791, -0.005245923064649105, -0.006439404562115669, -0.014375717379152775, -0.005380779970437288, -0.010127733461558819, 0.02376173995435238, 0.03271621838212013, 0.011671842075884342, -0.009932191111147404, 0.020363351330161095, -0.0015896225813776255, -0.008138597942888737, 0.005970777478069067, 0.03101702593266964, 0.0019284499576315284, 0.020997177809476852, -0.01631765253841877, 0.03673494979739189, -0.024624822661280632, -0.014294803142547607, 0.004092899151146412, 0.023208826780319214, -0.014011604711413383, -0.017720162868499756, 0.010464875027537346, 0.016412053257226944, -0.0019233927596360445, 0.02861657924950123, 0.028643550351262093, -0.010505331680178642, -0.007100202143192291, -0.0036579861771315336, -0.00031628095894120634, 0.011280757375061512, -0.0316103957593441, 0.003019103081896901, 0.006274205166846514, 0.033579301089048386, 0.025339562445878983, 0.0057381498627364635, -0.012420296669006348, 0.014497088268399239, 0.025892473757267, 0.06462330371141434, -0.012899037450551987, 0.00208016368560493, 0.011577442288398743, -0.010417675599455833, -0.025204705074429512, -0.03330959007143974, -0.00841505452990532, 2.2572683519683778e-05, -0.00561677897349, 0.015495027415454388, 0.008327397517859936, 0.0007977613131515682, -0.011240300722420216, 0.022952599450945854, 0.0028909891843795776, -0.036033693701028824, -0.040969446301460266, 0.019446326419711113, -0.014807258732616901, -0.008657796308398247, -0.026769042015075684, -0.02934480458498001, -0.005481922533363104, -0.011698813177645206, 0.036815863102674484, -0.01844838820397854, 0.02823898009955883, 0.019001299515366554, 0.0005685050273314118, -0.0018812500638887286, 0.012703495100140572, 0.032931990921497345, -0.02416631020605564, 0.027443325147032738, -0.016816623508930206, 0.00964899268001318, 0.0003775985969696194, -0.03109794110059738, 0.01761227659881115, 0.017396505922079086, -0.007322715595364571, -0.0012625952949747443, -0.03152948245406151, 0.005687578581273556, -0.01084247324615717, -0.004190669860690832, -0.03374113142490387, -0.011813441291451454, 0.00809814129024744, -0.00616969121620059, 0.0029348174575716257, -0.006554032675921917, 0.005792092531919479, 0.027888352051377296, -0.007976770401000977, -0.019850896671414375, -0.009925448335707188, -0.01852930150926113, 0.010694131255149841, 0.1001715138554573, 0.01036373246461153, -0.016331138089299202, -0.01058624591678381, 0.0010973958997055888, 0.005276266019791365, -0.018799014389514923, -0.010943615809082985, 0.021320834755897522, -0.018111245706677437, 0.010478360578417778, -0.0149960583075881, 0.028805376961827278, 0.004817753564566374, 0.007922827266156673, -0.008307169191539288, -0.007140658795833588, -0.0077070570550858974, 0.00852293986827135, 0.007444086484611034, 0.012184296734631062, -0.006958602461963892, 0.021078092977404594, 0.011874127201735973, -0.024786649271845818, -0.011469556950032711, 0.03910842537879944, -0.004365983419120312, 0.020241981372237206, -0.01414646115154028, -0.006419175770133734, 0.009217451326549053, 0.01995878294110298, 0.019217070192098618, -0.013094579800963402, -0.004709868226200342, 0.0007691042847000062, 0.009311851114034653, -0.003389958757907152, 0.0005326837417669594, 0.021523119881749153, 0.005515636410564184, 0.006668660789728165, -0.010889673605561256, -0.005323465913534164, 0.0025926188100129366, -0.026081273332238197, -0.003025845857337117, -0.029236918315291405, 0.002751075429841876, 0.03859597072005272, -0.005323465913534164, -0.01967558264732361, -0.004022099077701569, 0.016290681436657906, 0.015400627627968788, -0.009925448335707188, -0.005269523244351149, -0.005242551676928997, 0.026270072907209396, 0.00010635763464961201, 0.008408311754465103, 0.021280378103256226, -0.004099641926586628, -0.02150963433086872, -0.018960842862725258, -0.024719221517443657, -0.015387142077088356, -0.013222693465650082, 0.013478920795023441, -0.02823898009955883, -0.010606474243104458, -0.01281812321394682, 0.0012937808642163873, 0.00887356698513031, -0.004396326374262571, 0.023586425930261612, -0.0005385836702771485, 0.013424978591501713, -0.02098369225859642, -0.00767334271222353, -0.03220376372337341, 0.018569758161902428, -0.024503450840711594, -0.018030332401394844, 0.011429100297391415, 0.007154144812375307, 0.0110447583720088, -0.020579122006893158, 0.030153943225741386, 0.006223633885383606, 0.00702603068202734, 0.018353987485170364, -0.01178647018969059, 0.00400187075138092, -0.0014758373145014048, -0.006446147337555885, -0.011166129261255264, -0.0036175292916595936, -0.003786100074648857, 0.0032146451994776726, -0.04048396274447441, -0.005390894133597612, -0.015360170975327492, 0.008172311820089817, -0.009527621790766716, 0.01962164044380188, 0.024449508637189865, -0.02578458935022354, -0.019068729132413864, 0.009655735455453396, -0.010134476236999035, 0.01929798536002636, 3.4741387935355306e-05, 0.018502330407500267, 0.02060609497129917, 0.008293683640658855, 0.015387142077088356, 0.010943615809082985, -0.008516197092831135, 0.0071271732449531555, -0.035332437604665756, 0.0006759688840247691, 0.004146841820329428, -0.0362764336168766, -0.008738710545003414, 0.010390703566372395, -0.019999239593744278, 0.012191040441393852, 0.0063955760560929775, 0.009804077446460724, 0.009116308763623238, 0.022453630343079567, -0.007592428475618362, -0.03646523505449295, -0.005846035201102495, -0.014915144070982933, 0.00015814047947060317, -0.010640189051628113, 0.01366772036999464, -0.012784409336745739, -0.010646931827068329, -0.0069855740293860435, -0.007740770932286978, -0.018353987485170364, -0.021671460941433907, -0.011779727414250374, 0.023073971271514893, -4.119448931305669e-05, -0.004365983419120312, -0.00351301534101367, -0.038110487163066864, -0.03449632599949837, -0.01638508215546608, -0.01479377318173647, -0.02552836202085018, 0.00699231680482626, -0.008954480290412903, 0.03225770592689514, 0.008738710545003414, 0.028724463656544685, -0.01747742109000683, 0.019783468917012215, 0.0015331513714045286, -0.004483983386307955, 0.00848248228430748, -0.019378898665308952, -0.023397626355290413, -0.03832625597715378, -0.020417295396327972, 0.040322136133909225, 0.013687948696315289, 0.020430780947208405, -0.014631944708526134, 0.0035973007325083017, 0.023478539660573006, -0.007113687694072723, -0.00020270638924557716, -0.015495027415454388, -0.032149821519851685, -0.027375897392630577, -0.0028555893804877996, 0.005239180289208889, -0.002875817706808448, -0.034361470490694046, -0.0008323183283209801, 0.051515236496925354, 0.008367854170501232, 0.021995117887854576, 0.0023330198600888252, -0.00036116293631494045, -0.023559454828500748, -0.0016123796813189983, 0.004433412104845047, 0.020821865648031235, -0.011260529048740864, 0.03465815633535385, 0.0028522179927676916, 0.019203584641218185, -0.013917204923927784, 0.009176993742585182, -0.009325336664915085, -0.01846187375485897, -0.018367474898695946, -0.019190099090337753, 0.01395766157656908, -0.022116487845778465, -0.009696192108094692, 0.026580242440104485, -0.018488844856619835, -0.00604157755151391, -0.005556093528866768, 0.002477990696206689, -0.045554570853710175, -0.01657387986779213, 0.008239740505814552, 0.021037636324763298, 0.00809814129024744, -0.015778226777911186, -0.01363400649279356, 0.011193101294338703, -0.00955459289252758, 0.05966057628393173, 0.0019756497349590063, 0.02842777967453003, 0.012460753321647644, -0.005920206196606159, 0.003873756853863597, 0.002746018348261714, -0.012899037450551987, -0.010505331680178642, 0.014200404286384583, 0.018246103078126907, 0.007100202143192291, 0.004231126978993416, -0.01917661353945732, 0.003049445804208517, -0.038946595042943954, -0.03775985911488533, 0.010896416381001472, -0.008455511182546616, -0.02972240373492241, -0.00977710634469986, -0.008529682643711567, -0.043100181967020035, 0.015616398304700851, -0.006506832782179117, 0.024530421942472458, -0.007221573032438755, -0.0170458797365427, -0.03282410651445389, 0.019459811970591545, 0.023721283301711082, 0.03271621838212013, 0.026701614260673523, -0.014820744283497334, -0.025096820667386055, -0.012487724423408508, -0.02272334322333336, -0.011314472183585167, -0.012447267770767212, 0.016398567706346512, -0.004332269541919231, -0.005846035201102495, 0.016425538808107376, -0.0054077510721981525, -0.018151704221963882, -0.021873746067285538, 0.005603293422609568, 0.02869749255478382, 0.02376173995435238, 0.016277195885777473, -0.0009549535461701453, 0.020107124000787735, 0.007700313813984394, 0.014861201867461205, -0.013863262720406055, 0.004878439009189606, -0.007632885593920946, 0.008785909973084927, -0.006614718120545149, 0.02059260942041874, 0.0077070570550858974, -0.00631466181948781, -0.02215694636106491, -2.5983608793467283e-05, -0.0009203965310007334, 0.007848656736314297, -0.0070462594740092754, -0.045311830937862396, -0.027443325147032738, -0.00568083580583334, -0.02972240373492241, 0.015589427202939987, 0.003749014576897025, 0.02364036813378334, 0.0006473118555732071, 0.02318185567855835, -0.043046239763498306, 0.027834409847855568, -0.025622760877013206, 0.01950027048587799, -0.019796954467892647, 0.004551411606371403, 0.008158826269209385, -0.00964899268001318, 0.02175237610936165, -0.016412053257226944, -0.024961963295936584, 0.011071729473769665, 0.01786850392818451, 0.00958830676972866, 0.015886111184954643, 0.006358490325510502, 0.009574821218848228, -0.003860271302983165, 0.015171371400356293, -0.021010663360357285, -0.021064607426524162, 0.009622020646929741, 0.01658736728131771, 0.013600291684269905, 0.030100001022219658, -0.0035602152347564697, 0.017072850838303566, 0.019581183791160583, 0.02071397937834263, -0.002145906211808324, -0.03481998294591904, 0.01123355794698, -0.021024148911237717, 0.009042137302458286, 0.010579503141343594, -0.001753136282786727, -0.015454570762813091, -0.027294984087347984, -0.02059260942041874, 0.003819814184680581, -0.004150213208049536, -0.014335260726511478, 0.012062925845384598, 0.017855018377304077, -0.0039378139190375805, -0.01599399745464325, -0.006830488797277212, -0.004848096054047346, -0.0025251905899494886, -0.00631466181948781, -0.042965326458215714, -0.01188086997717619, -0.01119984406977892, 0.02883234992623329, -0.0019099070923402905, -0.02564973197877407, -0.02157706208527088, -0.035467296838760376, -0.025811560451984406, -0.011503270827233791, -0.019055243581533432, 0.01194829773157835, 0.034873925149440765, 0.013108065351843834, 0.011058243922889233, 0.038434140384197235, -0.012609095312654972, 0.0014303232310339808, 0.005610036198049784, -0.011166129261255264, -0.012224754318594933, -0.0016182796098291874, -0.017275135964155197, 0.004443526268005371, -0.03549426794052124, -0.004167070146650076, 0.0026128473691642284, -0.00707323057577014, -0.00865105353295803, 0.007943055592477322, 0.005188609007745981, 0.015886111184954643, -0.008846594952046871, -0.0033596160355955362, 0.020687008276581764, -0.0019301356514915824, 0.005320094525814056, -0.028319893404841423, -0.024921506643295288, -0.001405037590302527, -0.020026210695505142, -0.029749374836683273, -0.03158342465758324, 0.017733648419380188, -0.013863262720406055, 0.0012777666561305523, -0.019527241587638855, -0.015656854957342148, -0.018165189772844315, -0.034927867352962494, 0.044907260686159134, -0.028994176536798477, 0.007983513176441193, 0.025218190625309944, 0.009210708551108837, -0.01055253203958273, -0.013202465139329433, 0.02299305610358715, 0.02072746492922306, -0.010606474243104458, -0.0003754914505407214, -0.03355232998728752, 0.022575000301003456, -0.02343808300793171, 0.017180735245347023, -0.0167087372392416, 0.015832168981432915, -0.007949798367917538, 0.00626409100368619, -0.037975627928972244, 0.027834409847855568, 0.006702374666929245, 0.00010098444181494415, -0.0033393874764442444, 0.012359610758721828, 0.003954670857638121, 0.0075317430309951305, -0.022008603438735008, -0.00987150613218546, -0.006277576554566622, 0.012555153109133244, 0.0022976200561970472, 0.004709868226200342, -0.015414114110171795, -0.012197783216834068, 0.016560394316911697, -0.022237859666347504, -0.00015476906264666468, 0.20228496193885803, -0.008900538086891174, 0.016816623508930206, 0.034226614981889725, -0.014213889837265015, 0.019041758030653, 0.011260529048740864, -0.007565457373857498, -0.013532863929867744, -0.005943806376308203, -0.009318593889474869, 0.024975448846817017, -0.024247223511338234, 0.004231126978993416, 0.00558643601834774, 0.004699753597378731, -0.03250044956803322, -0.004645810928195715, -0.0018627073150128126, -0.06785985827445984, 0.0016570509178563952, -0.013101322576403618, -0.014658916741609573, -0.005876378156244755, 0.018812501803040504, 0.01097733061760664, -0.017774105072021484, 0.0017919075908139348, 0.028185037896037102, -0.024449508637189865, -0.03069337084889412, -0.0008323183283209801, -0.009932191111147404, -0.009669221006333828, -0.017733648419380188, 0.015063486061990261, 0.02008015289902687, 0.009487164206802845, 0.020309409126639366, -0.00822625495493412, -0.008118369616568089, -0.013006922788918018, 0.005151523742824793, -0.006432661786675453, -0.015265771187841892, 0.008091398514807224, -0.011456071399152279, -0.019351927563548088, -0.0011344815138727427, 0.004544668830931187, -0.03738225996494293, -0.0007910184795036912, 0.0499778687953949, 0.02362688258290291, 0.0029803316574543715, -0.03349838778376579, -0.0019773354288190603, 0.020188039168715477, 0.004527811426669359, 0.026202645152807236, -0.011617898941040039, 0.02861657924950123, 0.013175493106245995, 0.024705735966563225, -0.028212008997797966, 0.013013665564358234, -0.012555153109133244, -0.021078092977404594, 0.014551031403243542, -0.02991120144724846, 0.007396886590868235, -0.015103943645954132, 0.0014901658287271857, -0.0063214050605893135, -0.005168380681425333, 0.0006081191240809858, 0.03549426794052124, -0.022588485851883888, 0.01324292179197073, -0.004221012815833092, 0.014834229834377766, -0.016155825927853584, 0.018475359305739403, 0.002038020873442292, -0.01709982194006443, -0.017855018377304077, 0.0020059924572706223, -0.025986874476075172, -0.024436023086309433, 0.014079033397138119, -0.016492966562509537, -0.026512814685702324, 0.011523500084877014, -0.013094579800963402, -0.0011892669135704637, -0.0018896786496043205, 0.01877204328775406, 0.010633446276187897, -0.012089897878468037, -0.0010999244404956698, -0.02246711589396, -0.030423657968640327, 0.015036514960229397, -0.0029938174411654472, -0.021482663229107857, -0.018987813964486122, 0.011543728411197662, 0.004507583100348711, 0.0063247764483094215, -0.0077137998305261135, 0.0260408166795969, -0.01715376414358616, 0.001389866229146719, -0.01414646115154028, -0.0029853887390345335, 0.017531363293528557, -0.02486756443977356, -0.02369431033730507, -0.0002109242050210014, 0.026391444727778435, 0.00349615840241313, -0.019203584641218185, -0.0063955760560929775, 0.007659857161343098, -0.00340850162319839, -0.01631765253841877, -0.026917384937405586, 0.023168370127677917, 0.014335260726511478, 0.001439594547264278, 0.008529682643711567, -0.04293835163116455, 0.018623702228069305, 0.0047435821034014225, -0.04571640118956566, 0.021779347211122513, -0.02091626450419426, -0.037004660815000534, 0.022426659241318703, -0.010336761362850666, 0.010350246913731098, 0.005225694738328457, 0.013047379441559315, -0.004123241640627384, 0.023586425930261612, -0.009702934883534908, 0.010154704563319683, -0.024597851559519768, 0.006358490325510502, -0.02072746492922306, -0.03886568173766136, 0.0009060680167749524, -0.0017750505357980728, -0.006685517728328705, 0.013269892893731594, -0.01550851296633482, -0.006820374634116888, -0.04256075620651245, -0.0006051691598258913, 0.01846187375485897, -0.02169843204319477, 0.021145520731806755, 0.013067607767879963, 0.00699231680482626, -0.007808199152350426, -0.0181382168084383, -0.17132186889648438, 0.0150904580950737, 0.019904838874936104, -0.01619628258049488, 0.024584364145994186, 0.025042878463864326, 0.015427599661052227, -0.008023969829082489, -0.016169311478734016, -0.014915144070982933, 0.021010663360357285, -0.0011285814689472318, -0.04301926866173744, -0.011570699512958527, -0.010855959728360176, -0.0032669019419699907, -0.007558714598417282, 0.012899037450551987, 0.04436783492565155, 0.007855399511754513, -0.008866824209690094, -0.014834229834377766, 0.018664158880710602, 0.006894545629620552, 0.01941935531795025, 0.0014429660513997078, -0.007315972354263067, 0.012737208977341652, 0.013620520010590553, -0.0047402107156813145, -0.005910092033445835, 0.01807078905403614, 0.011759499087929726, -0.025595789775252342, 0.02972240373492241, 0.030019087716937065, -0.01936541311442852, -0.0009852963266894221, -0.006365233100950718, 0.014375717379152775, 0.01800336129963398, 0.012123611755669117, 0.02098369225859642, -0.003356244647875428, 0.0027392753399908543, 0.041023388504981995, -0.011166129261255264, -0.009284879080951214, 0.008475739508867264, -0.019001299515366554, 0.014551031403243542, -0.011968526989221573, 0.025744132697582245, -0.001756507670506835, 0.03120582550764084, 0.01036373246461153, 0.006092148367315531, 0.014901658520102501, -0.01311480812728405, -0.004504211712628603, 0.008570139296352863, 0.004851467441767454, 0.017908960580825806, -0.02338414080440998, -0.015319714322686195, -0.0008656110148876905, -0.005020038224756718, 0.015913082286715508, -0.022844715043902397, 0.017261650413274765, -0.008394825272262096, 0.028805376961827278, 0.028131093829870224, -0.011941554956138134, -0.006004491820931435, -0.009541107341647148, -0.015832168981432915, 0.010094019584357738, -0.0057988353073596954, -0.014470117166638374, -0.035197582095861435, 0.03878476843237877, 0.003779357299208641, -0.008947737514972687, 0.006699003279209137, 0.011510013602674007, -0.012521439231932163, -0.026243101805448532, -0.014672402292490005, 0.0007442400674335659, 0.012993437238037586, -0.029884230345487595, -0.0058123208582401276, -0.006082034204155207, 0.01676267944276333, 0.018893415108323097, 0.03082822822034359, -0.01931147091090679, 0.013492406345903873, -0.020808378234505653, 0.005566207692027092, -0.003169130999594927, -0.01049184612929821, 0.01897432841360569, 0.032419536262750626, 0.02091626450419426, -0.006017977371811867, 0.008914023637771606, 0.029290862381458282, 0.02488104999065399, -0.0065371752716600895, 0.004062556196004152, -0.0028876177966594696, 0.0037355287931859493, 0.01962164044380188, 0.024759678170084953, -0.009702934883534908, -0.022548029199242592, 0.018300045281648636, -0.023100942373275757, 0.06176434084773064, -0.016735708341002464, -0.0075250002555549145, 0.0036006721202284098, -0.021590547636151314, -0.031313709914684296, -0.12029211968183517, -0.003121931105852127, 0.02505636401474476, 0.012615838088095188, 0.002019478240981698, 0.0044165547005832195, -0.020565636456012726, 0.01825958862900734, -0.0015028086490929127, 0.0030393314082175493, -0.014685887843370438, -0.013296863995492458, 0.008765681646764278, 4.033187906316016e-06, 0.01865067332983017, -0.013789091259241104, -0.0054785506799817085, -0.005360551178455353, 0.0044165547005832195, 0.027483781799674034, 0.010323275811970234, -0.01453754585236311, 0.0100670475512743, -0.019055243581533432, 0.01709982194006443, 0.008334140293300152, -0.03347141668200493, 0.01742347702383995, 0.01987786777317524, 0.01740999147295952, -0.014712858945131302, -0.001734593533910811, 0.014780287630856037, -0.0029314460698515177, 0.010053562000393867, -0.015373656526207924, -0.024894535541534424, -0.009406250901520252, 0.02707921341061592, -0.03433449938893318, 0.0039411853067576885, -0.030747313052415848, 0.025083335116505623, -0.005549350753426552, 0.010323275811970234, -0.011402128264307976, 0.0014286375371739268, 0.007936312817037106, 0.0013333950191736221, -0.03045062907040119, -0.02525864727795124, 0.018340501934289932, -0.037975627928972244, -0.006938374135643244, 0.03155645355582237, 0.005893235094845295, 0.03425358608365059, 0.003201159415766597, -0.01950027048587799, 0.006189919542521238, -0.0018879929557442665, 0.013027151115238667, 0.0014674087287858129, 0.02888629212975502, 0.025096820667386055, 0.0009734963532537222, -0.0037355287931859493, -0.018542787060141563, 0.029695430770516396, -0.0035602152347564697, -0.008185798302292824, 0.022750314325094223, -0.02810412272810936, 0.00681700324639678, -0.02273682877421379, 0.003202845109626651, -0.016088396310806274, -0.011058243922889233, 0.02110506407916546, 0.010215390473604202, -0.005704435985535383, -0.017639247700572014, 0.0008432753966189921, -0.0002317848411621526, -0.0009448393248021603, 0.004622211214154959, 0.00137216632720083, -0.004827867727726698, -0.001726164948195219, -0.011644870974123478, 0.003428729949519038, 0.023680824786424637, -0.004918895661830902, -0.024503450840711594, 0.001030810410156846, 0.038245342671871185, 0.011813441291451454, 0.007760999258607626, -0.01631765253841877, 0.00555272214114666, -0.009709677658975124, 0.003917585127055645, -0.06030788645148277, 0.03063942864537239, -0.005572950467467308, -0.00406592758372426, 0.008206026628613472, -0.02343808300793171, 0.017828047275543213, -0.023195341229438782, -0.01626371033489704, -0.0020110495388507843, 0.0022672771010547876, 0.024503450840711594, -0.020053181797266006, -0.011354928836226463, -0.012676523998379707, -0.00406592758372426, 0.016870565712451935, -0.01469937339425087, 0.0016890793340280652, -0.011975269764661789, 0.015629883855581284, -0.01877204328775406, 0.023478539660573006, -0.004315412603318691, -0.023343684151768684, 0.00043280550744384527, 0.00208016368560493, 0.02635098621249199, -0.013944176025688648, -0.03333656117320061, 0.010687388479709625, -0.0319879949092865, -0.011678584851324558, -0.006601232569664717, 0.014389202930033207, 0.021779347211122513, -0.018151704221963882, -0.016209768131375313, -0.0023431340232491493, 0.032878048717975616, -0.0026077902875840664, -0.011240300722420216, 0.002115563489496708, -0.018165189772844315, 0.024193281307816505, 0.02079489268362522, -0.007268772926181555, -0.0052594090811908245, 0.0206600371748209, -0.02563624642789364, 0.0019756497349590063, 0.024004481732845306, 0.004376098047941923, -0.03724740445613861, -0.002504962030798197, -0.036654032766819, 0.025501390919089317, -0.010775045491755009, 0.016749193891882896, -0.036654032766819, 0.004362612031400204, -0.01340474933385849, 0.005245923064649105, 0.002471247920766473, 0.004561525769531727, -0.015751255676150322, -0.0031623882241547108, -0.009412993676960468, -0.009493906982243061, -0.01794941909611225, -0.005131294950842857, 0.006267462391406298, 0.012979951687157154, 0.011617898941040039, 0.01525228563696146, 0.007518257480114698, -0.014267832040786743, 0.010943615809082985, -0.0377059169113636, 0.018219131976366043, -0.00012621739006135613, -0.027753496542572975, -0.04040304943919182, -0.008543168194591999, 0.033390503376722336, -0.003775985911488533, 0.004770553670823574, -0.0022082773502916098, -0.008489225059747696, 0.011853898875415325, 0.01877204328775406, -0.012575381435453892, -0.005613407585769892, 0.0025251905899494886, 0.00640906160697341, 0.017720162868499756, -0.00951413530856371, -0.00922419410198927, 0.006449518725275993, 0.031691309064626694, -0.019217070192098618, 0.009864763356745243, -0.001362894894555211, -0.022709857672452927, -0.012177553959190845, -0.004821124952286482, -0.004234498366713524, -0.0019200213719159365, 0.010532303713262081, 0.03134068101644516, 0.002766246674582362, 0.0007716328254900873, 0.019082214683294296, 0.021846774965524673, -0.012973208911716938, 0.01353960670530796, 0.010195162147283554, -0.008179054595530033, -0.006304547656327486, 0.04488028958439827, 0.012838351540267467, 0.0246113371104002, 0.02156357653439045, 0.0011901098769158125, 0.013229436241090298, 0.029425717890262604, 0.001381437643431127, 0.027025269344449043, -0.007012545131146908, 0.00832065474241972, -0.0011083530262112617, -0.0003244987747166306, -0.05097581073641777, 0.0029921317473053932, -0.003927699755877256, -0.03263530507683754, -0.007491286378353834, 0.009116308763623238, -0.02602733112871647, 0.03932419419288635, 0.005792092531919479, -0.013195722363889217, -0.009237679652869701, -0.0058022066950798035, 0.019041758030653, 0.026472358033061028, 0.007585685700178146, -0.0036714719608426094, -0.005545979365706444, 0.0011100387200713158, -0.0150904580950737, 0.015279256738722324, -0.023208826780319214, -0.021037636324763298, 0.016870565712451935, -0.009864763356745243, 0.03463118523359299, -0.023020027205348015, -0.017895475029945374, 0.029560575261712074, 0.0022301916033029556, 0.029048120602965355, -0.006368604488670826, -0.004703125450760126, 0.015656854957342148, 0.010545789264142513, 0.009729905985295773, -0.0074508292600512505, -0.029506633058190346, 0.011557213962078094, 0.00754522904753685, -0.01994529739022255, -0.018704615533351898, 0.031772222369909286, 0.001395766157656908, -0.0065371752716600895, -0.0029331317637115717, 0.040322136133909225, -0.01130772940814495, -0.007491286378353834, 0.02693087048828602, -0.02629704400897026, -0.008597110398113728, 0.021415233612060547, -0.0019469927065074444, -0.025690188631415367, -0.012474238872528076, -0.018111245706677437], "5f138b06-5f92-4c93-821f-3ab574291705": [-0.01565127819776535, -0.02936963550746441, -0.012664648704230785, 0.009349155239760876, -0.01585262268781662, 0.03554423898458481, -0.005778623279184103, -0.01604054681956768, -0.0071813324466347694, -0.02410779893398285, 0.0018054003594443202, -0.007127640303224325, 0.020886266604065895, -0.011718323454260826, 0.004536991473287344, -0.0026158171240240335, 0.03106093965470791, -0.007174620870500803, 0.03272539749741554, -0.009691443294286728, -0.00024601936456747353, 0.006198093760758638, -0.003802079241722822, 0.019637923687696457, -0.01986611634492874, 0.013798896223306656, 0.02923540584743023, -0.016939889639616013, 0.01859092526137829, -0.015382816083729267, 0.008436387404799461, 0.004476587753742933, 0.011523689143359661, 0.019114425405859947, -0.022121187299489975, 0.0002760114730335772, 0.006325612775981426, -0.01722177490592003, 0.027369601652026176, -0.010926363989710808, 0.02209434285759926, 0.0018590926192700863, -0.01331566646695137, 0.00401013670489192, -0.04029599949717522, 0.017248621210455894, 0.0020856065675616264, -0.03106093965470791, -0.03208109363913536, 0.01324855163693428, 0.015181470662355423, 0.010315614752471447, -0.02324872463941574, -0.0006283666007220745, -0.010610922239720821, 0.010490114800632, 0.007422947324812412, 0.036940235644578934, -0.00042324556852690876, 0.013892858289182186, -0.005852450150996447, 0.007100793998688459, -0.008738406002521515, 0.00570144085213542, -0.03014817275106907, -0.017235197126865387, 0.001402708818204701, -0.016658006235957146, -0.0031258929520845413, -0.014792202040553093, 0.025248758494853973, 0.009698154404759407, -0.013134455308318138, -0.00919479038566351, 0.03307439759373665, -0.012584110721945763, -0.028617944568395615, -0.012543841265141964, -0.02084599807858467, 0.012852570973336697, -0.007597446907311678, -0.032000552862882614, -0.009120963513851166, 0.009798827581107616, 0.02397356927394867, -0.024658145383000374, 0.001148509792983532, 0.016845928505063057, -0.028081022202968597, -0.03954430669546127, 0.012718341313302517, 0.012939820997416973, 0.005583989433944225, 0.010349172167479992, -0.0007487545954063535, 0.0053524416871368885, -0.02150372788310051, 0.018725156784057617, 0.010053865611553192, -0.010919651947915554, -0.014335818588733673, -0.005298749543726444, -0.025235336273908615, 0.00538935512304306, -0.029074328020215034, 0.014416356571018696, -9.401379065820947e-05, -0.0015453287633135915, 0.012899552471935749, -0.01166463177651167, -0.011027036234736443, 0.022752070799469948, -0.01754392683506012, -0.0571821965277195, -0.0002976141986437142, -0.006020238623023033, 0.018040580675005913, -0.018094273284077644, -0.002577225910499692, -0.00977869238704443, 0.009570635855197906, 0.0329938605427742, -0.010362595319747925, -0.005325595382601023, 0.012490148656070232, 0.015798931941390038, -0.012684782966971397, -0.03527577966451645, 0.00021581749024335295, -0.010738440789282322, 0.04053761437535286, 0.0037920118775218725, 0.01753050461411476, -0.007228313013911247, 0.000158769529662095, 0.016201622784137726, -0.011181401088833809, -0.010839113965630531, -0.018201656639575958, -0.01636269874870777, 0.02747698500752449, 0.012939820997416973, 0.006490045227110386, -0.02287287823855877, -0.015597585588693619, 0.024443376809358597, 0.024215184152126312, 0.0031258929520845413, -0.007651139050722122, -0.00044128281297162175, 0.010664613917469978, -0.01107401680201292, 0.015866046771407127, -0.0010721662547439337, 0.040564458817243576, -0.002119164215400815, 0.008100811392068863, -0.006392728071659803, 0.0032013976015150547, -0.006953140255063772, 0.020805729553103447, 0.009100828319787979, -0.0050772689282894135, -0.01032903790473938, -0.003317171474918723, 0.0240272618830204, 0.01622846908867359, -0.026456832885742188, -0.04808136820793152, -0.01286599412560463, 0.010691460222005844, 0.023275570943951607, -0.012053899466991425, -0.0008280344773083925, -0.010201518423855305, -0.0015981820179149508, 0.030819324776530266, 0.018792271614074707, -0.010261922143399715, -0.0019681549165397882, -0.027047447860240936, -0.010020307265222073, 0.027329331263899803, 0.007845773361623287, -0.023611146956682205, 0.00555378757417202, -0.01191966887563467, -0.012456591241061687, 0.013141167350113392, 0.00708065927028656, 0.007214889861643314, 0.01364453136920929, -0.014496895484626293, -0.02805417589843273, -0.6404405832290649, -0.01793319545686245, -0.014926432631909847, -0.016604313626885414, 0.010308903641998768, -0.007584023755043745, 0.013657954521477222, 0.010302191600203514, 0.0029077683575451374, 0.006020238623023033, -0.0223359577357769, 0.009516943246126175, 0.014470049180090427, -0.023436646908521652, -0.008436387404799461, -0.0011183079332113266, 0.009027001447975636, -0.033745549619197845, -0.012852570973336697, -0.025584334507584572, -0.016215045005083084, -0.0029329366516321898, 0.0005545397871173918, 0.017906351014971733, -0.011255227960646152, -0.004396049305796623, 0.017879504710435867, -0.00254199025221169, 0.017758697271347046, 0.04671221598982811, -0.029342789202928543, 0.03353078290820122, 0.03793354332447052, 0.020107731223106384, 0.05256466940045357, -0.005382643546909094, -0.01883254013955593, 0.027651485055685043, 0.017906351014971733, 0.010080710984766483, -0.007939734496176243, -0.016658006235957146, 0.01644323766231537, 0.007892753928899765, 0.006701458245515823, 0.008731694892048836, 0.04053761437535286, -0.005597412120550871, 0.011604228056967258, 0.016980160027742386, 0.013074051588773727, 0.00818806141614914, -0.004496722016483545, -0.005355797242373228, 0.007537043187767267, -0.004795385058969259, 0.029664942994713783, -0.010637767612934113, 0.008013561367988586, -0.005191364791244268, 0.007657850626856089, 0.032322708517313004, -0.0005717380554415286, -0.007154486142098904, -0.002713134279474616, 0.02649710327386856, -0.005520229693502188, 0.014993548393249512, 0.024644721299409866, -0.017718426883220673, 0.002577225910499692, 0.012027054093778133, -0.0030554221011698246, -0.03162470832467079, 0.007543754763901234, 0.019382886588573456, 0.025033989921212196, -0.01676539145410061, -0.005382643546909094, 0.01637612283229828, 0.015503623522818089, -0.006466554943472147, -0.030497172847390175, -0.03331601247191429, 0.022309111431241035, -0.008436387404799461, -0.010094134137034416, 0.027973638847470284, -0.0036007333546876907, 0.0011225026100873947, 0.004520212300121784, 0.01591973938047886, 0.013100897893309593, 0.01786608062684536, 0.04091345891356468, 0.010993478819727898, 6.454600224969909e-05, -0.006842400413006544, 0.015517046675086021, -0.00609070947393775, 0.00022231928596738726, -0.001438783248886466, 0.015423085540533066, -0.014456626027822495, 0.0071813324466347694, -0.005922921467572451, -0.02832263708114624, -0.001352372346445918, 0.040510766208171844, -0.01923523284494877, 0.008342426270246506, -0.020805729553103447, -0.01139617059379816, 0.007543754763901234, 0.026027295738458633, -0.030040787532925606, 0.00864444486796856, -0.002192990854382515, 0.018174810335040092, -0.01309418585151434, 0.02987971156835556, -0.01448347233235836, 0.010577363893389702, 0.0010184739949181676, 0.029584404081106186, 0.024591028690338135, 0.0031745515298098326, -0.01910100132226944, -0.021141305565834045, 0.0021292315796017647, 9.102506737690419e-05, 0.0002151882799807936, 0.00016065714589785784, -0.0031560948118567467, 0.023208456113934517, -0.01555731613188982, 0.01722177490592003, 0.022510455921292305, 0.010261922143399715, -0.00724173616617918, -0.013657954521477222, -0.006047084461897612, 0.019731884822249413, 0.011389458552002907, -0.011516978032886982, -0.05192036181688309, -0.007208178285509348, -0.00045051114284433424, -0.021342651918530464, -0.006191382184624672, -0.00942298211157322, -0.0031443496700376272, -0.00393295381218195, 0.009080694057047367, 0.02475210651755333, -0.010107557289302349, -0.005872584879398346, 0.0045739044435322285, 0.0067887082695961, -0.024631299078464508, 0.002120841993018985, 0.03194686025381088, -0.00685246754437685, 0.0055571431294083595, 0.023530608043074608, -0.013698223978281021, -0.015691546723246574, 0.04574575647711754, -0.009698154404759407, -0.0402691513299942, 0.01224853377789259, 0.0023037311621010303, -0.001879227114841342, 0.03648385405540466, -0.011610939167439938, 0.0010444811778143048, -0.012772032991051674, -0.0184432715177536, -0.008631021715700626, 0.004198059439659119, -0.022953417152166367, 0.022362802177667618, 0.007134351413697004, -0.01869831047952175, 0.028242100030183792, -0.004922904074192047, 0.004808808211237192, -0.0007827316876500845, 0.016778813675045967, 0.021879572421312332, 0.011959938332438469, 0.009892788715660572, 0.005201432388275862, 0.0051578073762357235, 0.0018389580072835088, 0.00915452092885971, 0.026336025446653366, 0.025248758494853973, 0.011872688308358192, 0.016201622784137726, -0.0023440003860741854, 0.024523913860321045, 0.029960250481963158, 0.00033431785413995385, -0.005711508449167013, -0.040832921862602234, 0.002719845622777939, -0.0055672102607786655, 0.025436682626605034, -0.03132940083742142, -0.004802096635103226, -0.02006746083498001, -0.012094168923795223, -0.03272539749741554, 0.0187788475304842, 0.008221618831157684, 0.006939717568457127, -0.004070540424436331, -0.0028423310723155737, 0.0037282523699104786, 0.0285105612128973, -0.0022349380888044834, -0.01695331372320652, -0.01084582507610321, 0.0010537095367908478, 0.007523620035499334, 0.022698380053043365, 0.036537546664476395, 0.004204770550131798, -0.0050537786446511745, 0.021221844479441643, -0.00818806141614914, 0.004792029038071632, 0.007684696931391954, 0.010053865611553192, 0.0038054350297898054, 0.02163795754313469, -0.01884596422314644, 0.034846238791942596, -0.023691685870289803, 0.000406047300202772, -0.0014379443600773811, 0.011369324289262295, -0.022966841235756874, -0.004349068738520145, 0.014792202040553093, 0.011228382587432861, -0.006258497480303049, 0.021476881578564644, 0.022711802273988724, -0.01896677166223526, 0.001959765562787652, -0.007335697300732136, -0.0005218210862949491, 0.0070873708464205265, -0.026148103177547455, -0.0036779160145670176, 0.013261974789202213, 0.03006763383746147, 0.024013837799429893, 0.01016124989837408, 0.002474874956533313, 0.012664648704230785, 0.026644757017493248, 0.059276193380355835, -0.012490148656070232, -0.007765234913676977, 0.01055722963064909, -0.01805400289595127, -0.03412139415740967, -0.03151732310652733, -0.013973396271467209, 0.00029111243202351034, -0.014845894649624825, 0.031732093542814255, 0.004396049305796623, 0.001302035991102457, -0.0007789564551785588, 0.01644323766231537, 0.011355901136994362, -0.0285105612128973, -0.027651485055685043, 0.015463354997336864, -0.007825639098882675, 0.008758541196584702, -0.010725017637014389, -0.03785300254821777, -0.007416235748678446, -0.021839303895831108, 0.03514154627919197, -0.021074190735816956, 0.01707412116229534, 0.00746992789208889, -0.0025520576164126396, 0.0016686529852449894, 0.010530383326113224, 0.029530711472034454, -0.021087612956762314, 0.03304755315184593, 0.0049732401967048645, 0.006986698135733604, 0.012355918064713478, -0.0302018653601408, 0.01766473427414894, 0.010738440789282322, -0.0001145154019468464, 0.009718288667500019, -0.019825845956802368, 0.0037181852385401726, -0.012141149491071701, -0.020228538662195206, -0.037504006177186966, -0.012416321784257889, 0.0027953502722084522, 9.097262955037877e-05, 0.0028171627782285213, -0.015517046675086021, 0.004671221598982811, 0.026470256969332695, -0.01324855163693428, -0.02494002878665924, -0.008724982850253582, -0.019892960786819458, 0.012530418112874031, 0.08682029694318771, 0.0029295808635652065, -0.014456626027822495, -0.009993461892008781, 0.0020721834152936935, 0.00795986969023943, -0.023503761738538742, -0.030631402507424355, 0.025248758494853973, -0.0167519673705101, 0.014859317801892757, -0.02014799974858761, 0.029664942994713783, -0.0021342651452869177, 0.008261888287961483, -0.011946515180170536, -0.005734998732805252, -0.016604313626885414, 0.012382764369249344, -0.005869228858500719, 0.0007932184380479157, 0.00821490678936243, 0.00954378955066204, 0.01727546751499176, -0.018658040091395378, -0.0021325871348381042, 0.026711871847510338, 0.0018876165850088, 0.016913045197725296, -0.0307924784719944, -0.008369272574782372, 0.019208386540412903, 0.021651381626725197, 0.018926501274108887, -0.0069732749834656715, -0.000830551260150969, -0.006443064659833908, 0.016094237565994263, -0.01286599412560463, -0.008033695630729198, 0.027235370129346848, 0.019839270040392876, 0.013127744197845459, -0.014819048345088959, -0.0014371053548529744, -0.000796574167907238, -0.023033956065773964, -0.006026949733495712, -0.01994665339589119, 0.002449706895276904, 0.030094480141997337, -0.007141062989830971, -0.01689962111413479, -0.010738440789282322, 0.011604228056967258, 0.010013596154749393, -0.002474874956533313, -0.011557246558368206, -0.004879279062151909, 0.008845790289342403, -0.00029530710889957845, 0.0013003580970689654, 0.014308972284197807, -0.0021107748616486788, -0.019181540235877037, -0.02163795754313469, -0.035571083426475525, -0.003708117874339223, -0.016738545149564743, 0.015933161601424217, -0.023087648674845695, -0.011027036234736443, -0.01432239543646574, 0.007402812596410513, 0.024174915626645088, -0.0036980505101382732, 0.013617685064673424, 0.0007311368244700134, 0.004983307793736458, -0.020094307139515877, -0.01224182266741991, -0.039463769644498825, 0.032134782522916794, -0.012288803234696388, -0.02091311290860176, 0.005583989433944225, 0.01656404510140419, 0.019825845956802368, -0.0380677729845047, 0.018027158454060555, 0.011329054832458496, 0.01393312681466341, 0.014805625192821026, -0.0050537786446511745, 0.026027295738458633, -0.006704813800752163, 0.0005486672162078321, -0.0002936292439699173, 0.0003544524370227009, -0.00857733003795147, 0.009100828319787979, -0.04123561456799507, -0.010906228795647621, -0.009087405167520046, 0.005906142294406891, -0.001702210633084178, 0.019020462408661842, 0.02669844776391983, -0.024201761931180954, -0.023919876664876938, 0.024698413908481598, -0.011711612343788147, 0.013496877625584602, -0.0006501790485344827, 0.01832246407866478, 0.007839062251150608, 0.010812267661094666, 0.00011692736006807536, 0.020121153444051743, -0.020309075713157654, -0.010020307265222073, -0.0441618375480175, 0.009798827581107616, -0.00469471188262105, -0.031785786151885986, -0.0015637854812666774, 0.017503658309578896, -0.00531217223033309, 0.0151009326800704, 0.012423033826053143, 0.016389545053243637, 0.012758609838783741, 0.021060766652226448, -0.014282125979661942, -0.03245693817734718, -0.00522827822715044, -0.008516926318407059, -0.003842348465695977, -0.024644721299409866, 0.0017181505681946874, -0.012382764369249344, -0.017691580578684807, -0.013590838760137558, -0.01565127819776535, -0.01700700633227825, -0.031409937888383865, -0.007496774196624756, 0.00854377169162035, -0.0035503969993442297, -0.009671308100223541, 0.00677192909643054, -0.03404085710644722, -0.03549054637551308, -0.009141097776591778, -0.00938271265476942, -0.023463493213057518, 0.0018523810431361198, -0.004661154467612505, 0.02306080237030983, -0.0008926328737288713, 0.038873154670000076, -0.011886111460626125, 0.0038826174568384886, 0.007490062620490789, -7.59241302148439e-05, 0.00415778998285532, -0.00586251774802804, -0.028483714908361435, -0.03981276974081993, -0.022953417152166367, 0.03226901590824127, 0.03065824881196022, 0.01597343012690544, -0.011711612343788147, 0.002156077651306987, 0.02052384428679943, 0.0016778813442215323, 0.0024396395310759544, -0.019919807091355324, -0.047195445746183395, -0.031195171177387238, 0.006117555312812328, 0.001338949310593307, 0.009268616326153278, -0.023624569177627563, -0.009926346130669117, 0.049531057476997375, -0.005161162931472063, 0.009456539526581764, -0.012060611508786678, 0.008852502331137657, -0.021745342761278152, 0.007114217150956392, 0.01759761944413185, 0.025812527164816856, -0.004486654885113239, 0.04378599300980568, -0.0043557798489928246, 0.010678037069737911, -0.009993461892008781, 0.010980055667459965, -0.007134351413697004, -0.016215045005083084, -0.022564148530364037, -0.032779090106487274, 0.02332926355302334, -0.019637923687696457, 0.007771946489810944, 0.028537405654788017, 0.0016401290195062757, -0.00831557996571064, -0.01610766164958477, 0.004117520991712809, -0.03943692520260811, -0.010241787880659103, 0.012590821832418442, 0.019382886588573456, 0.01739627495408058, -0.0030302538070827723, -0.004194703418761492, 0.00925519410520792, -0.012282092124223709, 0.057450659573078156, 0.015798931941390038, 0.025799104943871498, 0.018658040091395378, -0.010725017637014389, -0.006194738205522299, 0.001448011607863009, -0.0006594074075110257, -0.006157824769616127, 0.02669844776391983, 0.011765304021537304, -0.0062886993400752544, -0.0019983567763119936, -0.01761104352772236, 0.006979986559599638, -0.03852415829896927, -0.034389857202768326, 0.021597689017653465, -0.0060605076141655445, -0.01010084617882967, -0.012335783801972866, -0.005198076367378235, -0.04502091184258461, 0.019074155017733574, 0.0024027260951697826, 0.029208559542894363, -0.00809409935027361, -0.018013734370470047, -0.03720869868993759, 0.006580650806427002, 0.02961125038564205, 0.025544065982103348, 0.025409836322069168, -0.007724965922534466, -0.021060766652226448, -0.0016082492657005787, -0.025436682626605034, -0.009369289502501488, -0.006271920632570982, 0.010604210197925568, -0.013651242479681969, -0.006134334485977888, 0.013389493338763714, 0.0032349552493542433, -0.006322257220745087, -0.007416235748678446, -0.010563940741121769, 0.024913182482123375, 0.005171230528503656, 0.005674595013260841, -0.00292286928743124, 0.0011761948699131608, 0.025020567700266838, 0.02624206431210041, -0.005828959867358208, 0.0014220044249668717, -0.010738440789282322, 0.013201571069657803, 0.0060068154707551, 0.01832246407866478, -0.005332306958734989, -0.002545346040278673, -0.014295549131929874, -0.003114147810265422, -0.02084599807858467, 0.011959938332438469, -0.012691495008766651, -0.0335039347410202, -0.018013734370470047, 0.011308920569717884, -0.03320862725377083, 0.015866046771407127, 0.0009010222856886685, 0.026617910712957382, -0.011248516850173473, 0.04343699291348457, -0.03551739454269409, 0.026658179238438606, -0.03001394122838974, 0.01566470041871071, -0.035759009420871735, 0.000889277143869549, 0.002719845622777939, -0.017047274857759476, 0.012617668136954308, -0.010120980441570282, -0.027463562786579132, 0.013141167350113392, 0.02591991238296032, 0.02053726837038994, 0.00646319892257452, 0.014416356571018696, 0.01185926515609026, -0.0042651742696762085, 0.015892893075942993, -0.034201934933662415, -0.026362871751189232, 0.015476778149604797, 0.012221688404679298, -0.0020184912718832493, 0.0031158258207142353, -0.011201536282896996, 0.01591973938047886, 0.013892858289182186, 0.022456765174865723, 9.055316331796348e-05, -0.042846377938985825, -0.00031355407554656267, -0.008335715159773827, 0.013698223978281021, 0.005869228858500719, -0.008550483733415604, -0.021839303895831108, -0.017114389687776566, -0.018040580675005913, -0.0003150222182739526, 0.004651087336242199, -0.014215011149644852, -6.444113387260586e-05, 0.02480579912662506, -0.004966529086232185, -0.007953157648444176, -0.01022836472839117, -0.0065840063616633415, 0.009892788715660572, -0.009946480393409729, -0.03766508027911186, -0.018617771565914154, -0.010872671380639076, 0.04067184403538704, 0.002731590997427702, -0.010664613917469978, -0.008859213441610336, -0.02805417589843273, -0.05001428723335266, -0.01487274095416069, 0.0012198197655379772, 0.016859352588653564, 0.039785921573638916, 0.0107854213565588, 0.01851038821041584, 0.024564184248447418, -0.02644341066479683, -0.004312155302613974, -0.0052819703705608845, -0.0168325062841177, -0.0026896437630057335, -0.002523533534258604, -0.016456659883260727, 0.008040407672524452, -0.01864461787045002, -0.007120928727090359, 0.009235058911144733, -0.007852484472095966, -0.010134403593838215, 0.012094168923795223, -0.014147895388305187, 0.012463303282856941, -0.01022836472839117, 0.0067685735411942005, 0.016658006235957146, -0.003996713552623987, 0.004587327595800161, -0.022966841235756874, -0.026671603322029114, -0.006302122492343187, -0.010141114704310894, -0.03495362401008606, -0.03060455620288849, 0.012691495008766651, -0.010027019307017326, 0.006177959032356739, -0.014228434301912785, -0.02987971156835556, -0.003604089142754674, -0.03624223917722702, 0.04792029410600662, -0.024201761931180954, 0.0034732145722955465, 0.028349483385682106, -0.0029245472978800535, -0.016282161697745323, 0.0019463424105197191, 0.03954430669546127, 0.01928892359137535, -0.016027122735977173, 0.00430208770558238, -0.01994665339589119, 0.009792115539312363, -0.008013561367988586, 0.018993617966771126, -0.030175019055604935, 0.022429918870329857, -0.008033695630729198, -0.0025084326043725014, -0.03047032654285431, 0.02728906273841858, 0.014980125240981579, -0.006422929931432009, -0.004594039171934128, -0.007402812596410513, 0.0002986628969665617, 0.013691511936485767, -0.022846033796668053, -0.025289028882980347, -0.0021359429229050875, 0.020054038614034653, 0.011053882539272308, 0.0038725503254681826, -0.007758523337543011, -0.0022802408784627914, 0.022913148626685143, -0.022778917104005814, 0.0034832817036658525, 0.20360083878040314, -0.009141097776591778, 0.01837615668773651, 0.023369532078504562, 0.007114217150956392, 0.007933023385703564, 0.029638096690177917, -0.0022903080098330975, -0.010073999874293804, -0.00018970546079799533, -0.009523654356598854, 0.024389684200286865, -0.019463423639535904, 0.0015713359462097287, 0.007906177081167698, 0.0028523984365165234, -0.0392490029335022, -0.011295497417449951, -0.01688619889318943, -0.06469910591840744, 0.0003099885943811387, -0.02722194790840149, -0.017718426883220673, -0.011221670545637608, 0.015611008740961552, 0.008409541100263596, -0.0271548330783844, 0.0019161405507475138, 0.03398716449737549, -0.013214994221925735, -0.04163830354809761, -0.016456659883260727, -0.012449880130589008, -0.007765234913676977, -0.01681908220052719, 0.010691460222005844, 0.024711836129426956, 0.021584266796708107, 0.023288993164896965, -0.0020654720719903708, -0.0008733372669667006, 0.003825569525361061, -0.0013666343875229359, -0.0029027347918599844, -0.002755081281065941, 0.022617841139435768, -0.00538935512304306, -0.023544032126665115, 0.0008250981918536127, 0.011483420617878437, -0.026080988347530365, 0.010644479654729366, 0.038416773080825806, 0.022899724543094635, -0.006698102690279484, -0.031866323202848434, -0.006416218355298042, 0.021060766652226448, -0.007939734496176243, 0.0196245014667511, -0.01127536315470934, 0.024335991591215134, 0.00961090438067913, 0.029960250481963158, -0.013678088784217834, 0.004798740614205599, -0.010302191600203514, -0.011892823502421379, -0.0007424625218845904, -0.02754409983754158, 0.014416356571018696, -0.0007353315013460815, -0.008402829989790916, 0.0027903167065232992, -0.0015352615155279636, 0.008040407672524452, 0.014590856619179249, -0.0313025563955307, -0.003536973847076297, 0.0037819447461515665, 0.011201536282896996, -0.01516804751008749, 0.014590856619179249, -0.007248447742313147, -0.023087648674845695, -0.026550795882940292, -0.0007156163919717073, -0.016590891405940056, -0.027946792542934418, 0.0055907005444169044, -0.011000189930200577, -0.034658316522836685, -0.0025839372538030148, -0.010886094532907009, -0.0005109148914925754, 0.0007273615919984877, 0.010094134137034416, 0.012167995795607567, -0.003453079843893647, 0.011161266826093197, -0.017946619540452957, -0.0314636304974556, 0.019570808857679367, 0.010221653617918491, -0.021919842809438705, -0.009208212606608868, 0.01604054681956768, 0.007302139885723591, -0.000841876957565546, 0.004057117272168398, 0.01955738477408886, -0.023356107994914055, -0.002758437069132924, -0.010590787045657635, 0.0007579828961752355, 0.011832419782876968, -0.02079230546951294, -0.015879468992352486, 0.007107505574822426, 0.01773185096681118, 0.011147843673825264, -0.027369601652026176, -0.007302139885723591, -0.005198076367378235, -0.009080694057047367, -0.005278614815324545, -0.028805866837501526, 0.02234937995672226, 0.010060576722025871, -0.006258497480303049, 0.02345007099211216, -0.030416633933782578, 0.012134438380599022, -0.0049531059339642525, -0.025745412334799767, 0.009181367233395576, -0.016389545053243637, -0.04405445232987404, 0.019248655065894127, -0.018335888162255287, -0.005349085666239262, 0.0008095777593553066, 0.01010084617882967, 0.0013221704866737127, 0.020698344334959984, -0.0009379356633871794, 0.020309075713157654, -0.01722177490592003, 0.006292055360972881, -0.019141271710395813, -0.032698553055524826, -0.0015688190469518304, 0.0029966961592435837, -0.006218228489160538, 0.013919703662395477, 0.001139281434006989, -0.014349241741001606, -0.03479254990816116, -0.000640111742541194, 0.01598685421049595, -0.033423397690057755, 0.024456799030303955, 0.016980160027742386, 0.0020688276272267103, -0.009758558124303818, -0.005023576784878969, -0.17063382267951965, 0.011738457717001438, 0.014913009479641914, -0.024242030456662178, 0.023611146956682205, 0.01994665339589119, 0.017960041761398315, -0.0001544699480291456, -0.009805538691580296, -0.018295617774128914, 0.02052384428679943, 0.009288751520216465, -0.03149047866463661, -0.013349223881959915, -0.012423033826053143, 0.004308799281716347, -0.011228382587432861, 0.005896075163036585, 0.042712148278951645, 0.0026611199136823416, -0.004191347863525152, -0.021772189065814018, 0.015543892979621887, 0.0011887789005413651, 0.01169147714972496, 0.0052618361078202724, -0.00469135632738471, 0.009818961843848228, 0.007208178285509348, -0.008617598563432693, -0.002877566497772932, 0.02864479087293148, 0.005335662979632616, -0.02221515029668808, 0.02923540584743023, 0.027758870273828506, -0.0054766046814620495, -0.0031745515298098326, 0.0009790437761694193, 0.012040477246046066, 0.022577572613954544, 0.009751847013831139, 0.02681925520300865, 0.006490045227110386, -0.004714846611022949, 0.029906557872891426, -0.017127813771367073, -0.0034111328423023224, -0.0031258929520845413, -0.016161354258656502, 0.010926363989710808, 0.00430208770558238, 0.021275535225868225, -0.002310442738234997, 0.027114562690258026, 0.01935604028403759, 0.010174673050642014, 0.021839303895831108, 0.004389337729662657, -0.01605396904051304, 0.007543754763901234, -0.008261888287961483, 0.019409731030464172, -0.01624189130961895, -0.00438598170876503, -0.008201484568417072, -0.008550483733415604, 0.02084599807858467, -0.030899863690137863, 0.007006832864135504, 0.007617581635713577, 0.013449897058308125, 0.019329193979501724, -0.004825586918741465, -0.006443064659833908, -0.0023305772338062525, -0.015597585588693619, 0.026993755251169205, -0.011389458552002907, -0.01812111958861351, -0.035893239080905914, 0.03237639740109444, 0.0025738701224327087, -0.0035436854232102633, 0.006389372516423464, 0.01825534924864769, -0.017449965700507164, -0.030175019055604935, -0.015517046675086021, -0.002206414006650448, 0.02527560479938984, -0.018228502944111824, -0.013973396271467209, -0.0028339417185634375, 0.021973535418510437, 0.018013734370470047, 0.025812527164816856, -0.027758870273828506, 0.02189299650490284, -0.011449862271547318, 0.009302174672484398, -0.009040424600243568, -0.015315701253712177, 0.029638096690177917, 0.03167840093374252, 0.022819187492132187, -0.005802114028483629, 0.009120963513851166, 0.03691339120268822, 0.017812388017773628, -0.01728888973593712, 0.009657884947955608, -0.0059799691662192345, 0.010120980441570282, 0.006490045227110386, 0.021852727979421616, -0.015611008740961552, -0.02194668911397457, 0.012711629271507263, -0.01688619889318943, 0.04896729066967964, -0.008322292007505894, -0.009986749850213528, -0.0039363098330795765, -0.0073961010202765465, -0.028161561116576195, -0.12510283291339874, -0.00200674613006413, 0.023436646908521652, 0.001524355262517929, 0.004392693284898996, 0.004389337729662657, -0.021476881578564644, 0.012610956095159054, -0.00831557996571064, -0.0073759667575359344, -0.009362578392028809, -0.019517116248607635, 0.013241839595139027, -0.004375914577394724, 0.0120136309415102, -0.010201518423855305, -0.00020145063172094524, -0.0032299216836690903, 0.010308903641998768, 0.023503761738538742, 0.003802079241722822, -0.00944982748478651, -0.001047836965881288, -0.017490236088633537, 0.009369289502501488, 0.0054766046814620495, -0.04032284393906593, 0.009570635855197906, 0.02241649478673935, 0.01104717142879963, -0.0034245559945702553, -0.016778813675045967, 0.018040580675005913, 0.0018205012893304229, -0.001411937177181244, -0.0019446645164862275, -0.03922215476632118, -0.0069732749834656715, 0.025745412334799767, -0.026470256969332695, -0.003349051345139742, -0.023946722969412804, 0.017879504710435867, -0.014845894649624825, 0.0030805901624262333, -0.01604054681956768, -0.024443376809358597, 0.005218211095780134, 0.0107854213565588, -0.036993928253650665, -0.02110103704035282, 0.015127778984606266, -0.03243009001016617, -0.012503571808338165, 0.026067564263939857, -0.001252538408152759, 0.019731884822249413, 0.005268547683954239, -0.02124868892133236, -0.0010788777144625783, 0.0008993443916551769, 0.014107626862823963, -0.0026242064777761698, 0.029262252151966095, 0.016523776575922966, 0.0024211828131228685, 0.0029430040158331394, -0.019141271710395813, 0.04456453025341034, 0.0015629464760422707, -0.0021711785811930895, 0.03597377613186836, -0.02001376822590828, 0.0030973691027611494, -0.011127709411084652, 0.013013647869229317, -0.025409836322069168, -0.008584041148424149, 0.001674525672569871, -0.005439691245555878, 0.00315777282230556, -0.015423085540533066, -0.0032064314000308514, 0.006634342949837446, 0.0014622736489400268, 0.022456765174865723, 0.009000156074762344, -0.00977869238704443, 0.005943055730313063, -0.025758834555745125, 0.012141149491071701, 0.009335732087492943, 0.006436353083699942, -0.022322533652186394, 0.013449897058308125, 0.02163795754313469, 0.013584127649664879, 0.008436387404799461, -0.020631229504942894, 0.007503485307097435, -0.01657746732234955, 0.00254031247459352, -0.057772811502218246, 0.021933265030384064, -0.015812354162335396, -0.0005541203427128494, 0.007496774196624756, -0.01263109128922224, 0.01610766164958477, -0.0314636304974556, -0.02033592201769352, -1.0788253348437138e-05, -0.0014220044249668717, 0.022295687347650528, -0.010725017637014389, -0.011308920569717884, -0.0013129421276971698, 0.001702210633084178, 0.0059564788825809956, -0.004365847446024418, 0.0017164726741611958, -0.010053865611553192, 0.011355901136994362, -0.013423050753772259, 0.012946533039212227, -0.004298732150346041, -0.03302070498466492, 0.000894310767762363, -0.004674577619880438, 0.020604383200407028, 0.0014824081445112824, -0.02566487342119217, 0.013114321045577526, -0.030040787532925606, -0.008000138215720654, -0.002401048317551613, 0.007073947694152594, 0.016349276527762413, -0.004375914577394724, -0.011248516850173473, 0.012550552375614643, 0.03414824232459068, -0.008953175507485867, -0.001937952940352261, -0.0034295895602554083, -0.011543824337422848, 0.003349051345139742, 0.020577536895871162, -0.015543892979621887, -0.009201501496136189, 0.032510630786418915, -0.01851038821041584, 0.002137620933353901, 0.02669844776391983, 0.0017634533578529954, -0.03659123554825783, -0.002100707497447729, -0.03455093502998352, 0.011409593746066093, -0.0055470759980380535, 0.008570617996156216, -0.03838992491364479, 0.010563940741121769, -0.02598702721297741, 0.006879313848912716, 0.012624379247426987, 0.005275259260088205, -0.011322343721985817, 0.0013968362472951412, -0.0011359256459400058, -0.019892960786819458, -0.013617685064673424, -0.0052819703705608845, -0.009912922978401184, 0.01133576687425375, 0.0064732665196061134, 0.008349137380719185, 0.012906263582408428, -0.011892823502421379, 0.009329020045697689, -0.03648385405540466, 0.009402846917510033, 0.006067219190299511, -0.024631299078464508, -0.04265845566987991, -0.004698067903518677, 0.031920015811920166, 0.0032332774717360735, 0.0005193043034523726, -0.0008750151610001922, -0.0025940046180039644, 0.009228347800672054, 0.013617685064673424, -0.02475210651755333, 0.0008808877319097519, -0.006355814635753632, 0.011221670545637608, 0.0056813061237335205, -0.002140976721420884, -0.0040504056960344315, -0.00035172587377019227, 0.03028240241110325, -0.020040614530444145, 0.007570600602775812, -0.0013263652799651027, -0.02189299650490284, -0.00802698452025652, 0.003463147208094597, -0.019731884822249413, -0.015047240070998669, 0.010926363989710808, 0.028886405751109123, 0.008624310605227947, 0.007228313013911247, 0.022752070799469948, 0.015342547558248043, -0.013322378508746624, 0.0092216357588768, 0.006701458245515823, -0.016993582248687744, -0.009966615587472916, 0.0465242937207222, 0.0011812284355983138, 0.01604054681956768, 0.02189299650490284, -0.00785919651389122, 0.015758661553263664, 0.03409454971551895, 0.010839113965630531, 0.026255488395690918, -0.013557281345129013, -0.0023339330218732357, 0.0002051210030913353, -0.0092216357588768, -0.044913530349731445, 0.0030839459504932165, -0.001425360213033855, -0.04813506081700325, -0.01371164619922638, -0.0007818927406333387, -0.034470394253730774, 0.04840352386236191, 0.0029262250754982233, -0.0035503969993442297, -0.003604089142754674, -0.0012735120253637433, 0.03532946854829788, 0.018470117822289467, 0.0014421390369534492, 0.0015218383632600307, -0.0033423397690057755, 0.009000156074762344, -0.020295653492212296, 0.010839113965630531, -0.02859109826385975, -0.022497033700346947, 0.014926432631909847, -0.005882652010768652, 0.0336650125682354, -0.013443185947835445, -0.010563940741121769, 0.040564458817243576, -0.011503554880619049, 0.020510422065854073, 0.0022634619381278753, -0.004721558187156916, 0.025168221443891525, 0.006959851831197739, 0.0026879659853875637, -0.010147826746106148, -0.029584404081106186, -0.0038725503254681826, 0.012261956930160522, -0.027396447956562042, -0.01006728783249855, 0.03124886192381382, -0.0018372801132500172, 0.004704779479652643, -0.0021359429229050875, 0.02604071982204914, 0.009436405263841152, -0.014429779723286629, 0.0073759667575359344, -0.01871173270046711, -0.028349483385682106, 0.0291011743247509, -0.007456504739820957, -0.03183947876095772, 0.003122537164017558, -0.017584197223186493], "3d0dcede-eb5e-41a9-8833-7b47a735a513": [-0.009733468294143677, -0.028378840535879135, -0.004010356031358242, 0.025398923084139824, -0.0037492653355002403, 0.027250926941633224, -0.013131131418049335, -0.01884031854569912, -0.015038835816085339, -0.027459800243377686, 0.0110772168263793, 0.0004040381754748523, 0.018366875126957893, -0.009294835850596428, -0.007832726463675499, 0.00960118230432272, 0.039268072694540024, -0.0050895316526293755, 0.0388781763613224, -0.005977240856736898, -0.006837100256234407, 0.013298229314386845, -0.006600378081202507, 0.016932614147663116, -0.01366723794490099, 0.016124973073601723, 0.024800153449177742, -0.017628857865929604, -0.0009904047474265099, -0.01698831468820572, -0.004894583951681852, 0.016695892438292503, 0.011571548879146576, 0.0007136484491638839, -0.029827024787664413, -0.017141487449407578, 0.014913512393832207, -0.022627877071499825, 0.029994122684001923, -0.010485410690307617, 0.026304038241505623, -0.008187810890376568, -0.01721111126244068, 0.018951717764139175, -0.019828982651233673, 0.016556644812226295, -0.008953677490353584, -0.024284934625029564, -0.029910573735833168, 0.016124973073601723, 0.03102456033229828, 0.0007906702812761068, -0.030216919258236885, 0.003951175604015589, -0.005496833473443985, 0.006168707739561796, 0.018171926960349083, 0.044670913368463516, -0.001432518707588315, 0.006053827702999115, -0.0009634253801777959, 0.005416765809059143, 0.004779703915119171, -0.0002282369532622397, -0.03475641831755638, -0.008647330105304718, -0.007672591134905815, -0.01754530891776085, -0.01790735498070717, -0.013715974986553192, 0.023017773404717445, 0.005270554684102535, 0.0016013574786484241, 0.0022036072332412004, 0.021583514288067818, -0.024452032521367073, -0.027097754180431366, -0.01808837801218033, -0.014050171710550785, 0.014746413566172123, -0.008703029714524746, -0.026192639023065567, -0.004341071471571922, 0.001459498074837029, 0.004737929441034794, -0.006422835867851973, 0.019675809890031815, 0.01551228016614914, -0.01776810549199581, -0.022112658247351646, 0.01605534926056862, 0.015275558456778526, 0.01960618607699871, 0.00609212089329958, -0.001805008389055729, 0.014210307039320469, -0.006060789804905653, 0.015303407795727253, -0.014829962514340878, -0.011091141030192375, -0.0012671611038967967, -0.007498530671000481, -0.020650548860430717, -0.007909313775599003, -0.0424707867205143, 0.015094535425305367, -0.015428731217980385, -0.008173885755240917, 0.00549335265532136, -0.013521026819944382, -0.026345811784267426, 0.028935832902789116, -0.012950108386576176, -0.04636974260210991, 0.0006657817866653204, -0.019271990284323692, 0.01776810549199581, -0.01026261318475008, -0.02070624940097332, -0.01551228016614914, 0.00402079988270998, 0.03968581557273865, 0.0006044254405423999, -0.011787383817136288, 0.008104261010885239, 0.0012114617275074124, 0.002033027820289135, -0.015275558456778526, -0.0030756506603211164, -0.004873696714639664, 0.04085550457239151, 0.030189070850610733, 0.015386956743896008, 0.0027362327091395855, -0.01586040109395981, 0.019856832921504974, -0.01515023410320282, -0.012302602641284466, -0.018533973023295403, -0.020636623725295067, 0.006071233656257391, 0.006492460146546364, -0.016124973073601723, -0.03155370429158211, -0.02325449511408806, 0.013075431808829308, 0.005535127129405737, 0.00402079988270998, -0.008048562332987785, 0.0018972605466842651, 0.007233958225697279, -0.01024868804961443, 0.02290637418627739, -0.022029109299182892, 0.028768735006451607, 0.0050199078395962715, 0.009907528758049011, -0.003336741589009762, 0.00219142297282815, -0.0015117162838578224, 0.038906026631593704, 0.015317332930862904, 0.010555034503340721, -0.000484323623823002, 0.0033489258494228125, 0.01790735498070717, 0.0036169791128486395, -0.017071863636374474, -0.033336084336042404, -0.005709187593311071, -0.0007628205930814147, 0.03450577333569527, -0.01623637229204178, -0.0008381017833016813, -0.013145056553184986, 0.028573786839842796, 0.024089986458420753, 0.022405080497264862, -0.009545483626425266, 0.009051150642335415, -0.0369286946952343, -0.014732489362359047, 0.04266573488712311, 0.010283499956130981, -0.024633055552840233, -0.01567937806248665, -0.02383933961391449, -0.011481037363409996, -0.0013289526104927063, 0.0020626180339604616, 0.005998128093779087, 0.006502903997898102, -0.021583514288067818, -0.016681967303156853, -0.6429937481880188, -0.022432928904891014, -0.01590217649936676, -0.0034899150487035513, 0.0038502204697579145, -0.010749982669949532, 0.008480232208967209, 0.004403733182698488, -0.011112028732895851, 0.002215791493654251, -0.03216639906167984, 0.015108459629118443, 0.006645633839070797, -0.015985725447535515, -0.014829962514340878, -0.00970561895519495, 0.020566999912261963, -0.029075082391500473, -0.022043034434318542, -0.018380798399448395, -0.020093554630875587, 0.012615911662578583, 0.0005900654359720647, 0.008201735094189644, -0.019689735025167465, -0.017322510480880737, 0.002450773259624839, 0.012212091125547886, 0.005622157361358404, 0.025983765721321106, -0.015665452927350998, 0.01590217649936676, 0.022043034434318542, 0.025064725428819656, 0.04901546612381935, -0.000461695744888857, -0.018965642899274826, 0.009914491325616837, 0.01716933771967888, 0.00011749090481316671, -0.023143097758293152, -0.022335456684231758, 0.025022951886057854, -0.004901546519249678, 0.018937792629003525, 0.005190487019717693, 0.03339178487658501, -0.016542719677090645, 0.018366875126957893, 0.01227475330233574, 0.01274123601615429, 0.0049990201368927956, -0.005963316187262535, -0.007881463505327702, 0.006485498044639826, 0.008159960620105267, 0.021764537319540977, -0.009134700521826744, 0.01808837801218033, -0.006179151125252247, 0.011717759072780609, 0.020079631358385086, -0.00014566695608664304, 0.006910205818712711, -0.01629207283258438, 0.004442026372998953, -0.017698481678962708, 0.014175495132803917, 0.019856832921504974, -0.010199951007962227, 0.018074452877044678, 0.012615911662578583, 0.00256565329618752, -0.025621719658374786, 0.012267790734767914, 0.0036622348707169294, 0.020942971110343933, -0.017155412584543228, -0.00013718150148633868, 0.013207717798650265, 0.0010260872077196836, -0.013569763861596584, -0.036538802087306976, -0.014816038310527802, 0.01885424368083477, -0.01026957482099533, 0.001591784181073308, 0.03843257948756218, 0.0019808094948530197, 0.00721307098865509, -0.010770869441330433, 0.026471136137843132, 0.0016118010971695185, -0.006896280683577061, 0.028044642880558968, 0.005691781640052795, -0.017698481678962708, -0.011411412619054317, 0.008229585364460945, -0.005691781640052795, -0.002374186646193266, -0.011703834868967533, 0.009051150642335415, -0.011202540248632431, -0.0045081693679094315, -0.009315723553299904, -0.02603946626186371, -0.0010991926537826657, 0.04311132803559303, -0.007414981257170439, -0.006962423678487539, -0.019828982651233673, -0.013709012418985367, 0.0017501793336123228, 0.020372051745653152, -0.019536562263965607, 0.015275558456778526, 0.012427926994860172, 0.01719718612730503, 0.0059319850988686085, 0.021012594923377037, -0.019522637128829956, 0.005371510051190853, -0.011863970197737217, 0.022586103528738022, 0.029659925028681755, 0.013715974986553192, -0.021388566121459007, -0.024479882791638374, -0.007143446709960699, -0.0013707272009924054, -0.00041034785681404173, 0.015832552686333656, 0.006596896797418594, 0.012950108386576176, -0.023157021030783653, 0.013235568068921566, 0.008097299374639988, 0.022335456684231758, -0.029075082391500473, -0.009266986511647701, 0.006419355049729347, 0.01303365733474493, 0.007916276343166828, -0.010088551789522171, -0.03194360062479973, -0.003919844515621662, 0.0035821672063320875, -0.04578489810228348, 0.001846782979555428, -0.0035316895227879286, -0.011585473082959652, -0.007143446709960699, 0.016194598749279976, -0.00030569391674362123, -0.0013315635733306408, -0.030189070850610733, -0.005023388657718897, -0.0011540217092260718, -0.012358302250504494, 0.00038684968603774905, 0.02549639716744423, -0.020970821380615234, 0.004636974539607763, 0.023560842499136925, -0.019856832921504974, -0.017461759969592094, 0.04712168499827385, -0.024284934625029564, -0.03291834145784378, 0.006892799865454435, -0.006290549878031015, -0.01099366694688797, 0.0387946255505085, -0.01609712466597557, -0.008501119911670685, -0.005643044598400593, -0.008473269641399384, -0.005197449587285519, 0.006784881930798292, -0.013312154449522495, 0.016890840604901314, -0.004442026372998953, -0.005145231261849403, 0.010060702450573444, -0.005117381457239389, -0.011759533546864986, 0.002887665294110775, 0.010847456753253937, 0.02292029932141304, -0.004079980310052633, 0.024117836728692055, -0.010206913575530052, -0.0009068557410500944, -0.015400881879031658, 0.001959922257810831, 0.013834335841238499, 0.0286573376506567, 0.00041187088936567307, 0.016556644812226295, 0.013883072882890701, 0.009817018173635006, 0.030996711924672127, -0.006871912628412247, 0.0025134349707514048, -0.04976740479469299, -0.005472465418279171, -0.017628857865929604, 0.032779090106487274, -0.016138898208737373, -0.0033715537283569574, -0.027793996036052704, -0.009608144871890545, -0.022043034434318542, 0.011244314722716808, 0.016598418354988098, 0.010109439492225647, 0.01469071488827467, -0.011063291691243649, 0.004946802277117968, 0.008166923187673092, 0.0009599442128092051, -0.013479252345860004, -0.02474445477128029, -0.016765516251325607, 0.006889318581670523, 0.005921541713178158, 0.03768063709139824, 0.011021517217159271, -0.00869606714695692, 0.020455600693821907, -0.013750786893069744, 0.005841473583132029, 0.004911989904940128, -0.003291485831141472, 0.012636799365282059, 0.021123994141817093, -0.017099713906645775, 0.04971170797944069, -0.024131761863827705, 0.00217401678673923, -0.0005356714827939868, 0.024911552667617798, -0.03049541637301445, -0.013507102616131306, 0.011989293619990349, 0.00851504411548376, -0.007275733165442944, 0.021360715851187706, 0.024424182251095772, -0.011829158291220665, 0.0007876242161728442, -0.008285284042358398, -0.0157211534678936, 0.009169512428343296, -0.0333082377910614, 0.004870215430855751, 0.00425752205774188, 0.02163921296596527, 0.03414372727274895, 0.015776852145791054, -0.0015299926744773984, 0.026345811784267426, 0.018060527741909027, 0.04497725889086723, -0.0015578423626720905, 0.016946539282798767, 0.015665452927350998, -0.029297878965735435, -0.018728921189904213, -0.01679336652159691, -0.02385326474905014, 0.020594850182533264, -0.006422835867851973, 0.012936183251440525, -0.011209502816200256, 0.011891820468008518, 0.0024316266644746065, 0.02308739721775055, 0.012511475943028927, -0.027237001806497574, -0.04085550457239151, 0.024326710030436516, -0.0025360628496855497, 0.00595635361969471, -0.010819606482982635, -0.016695892438292503, -0.011181652545928955, -0.014126758091151714, 0.0313587561249733, -0.017266811802983284, 0.014857812784612179, 0.018213700503110886, -0.02364439144730568, 0.0018572265980765224, 0.0009808314498513937, 0.029437128454446793, -0.016041424125432968, 0.02016318030655384, 0.0038258519489318132, 0.005451577715575695, 0.00820869766175747, -0.02162528783082962, 0.017475683242082596, 0.00952459592372179, -0.005778811872005463, -0.005764887202531099, -0.025064725428819656, 0.0034133284352719784, -0.011223427020013332, -0.01882639341056347, -0.019174516201019287, -0.005528164561837912, -0.0017928241286426783, 0.0010800460586324334, -0.0003975108847953379, -0.01645917072892189, 0.014119795523583889, 0.01902134157717228, -0.013270379975438118, -0.009956265799701214, -0.004957245662808418, -0.02512042596936226, 0.008542894385755062, 0.10020320117473602, 0.020232804119586945, -0.0157211534678936, 0.0007545527187176049, 0.003352407133206725, 0.007428906392306089, -0.03191575035452843, -0.035564061254262924, 0.03832118213176727, 0.003023432567715645, 0.012100692838430405, -0.006234850734472275, 0.025816667824983597, -0.024159610271453857, -0.0028685186989605427, -0.009099887683987617, -0.00559430755674839, 0.00420182291418314, -0.0014125017914921045, -0.011606360785663128, 0.01703008823096752, 0.010485410690307617, 0.012922259047627449, -0.0073732067830860615, -0.022836750373244286, -0.012713385745882988, 0.0387667752802372, 0.0017240701708942652, 0.0230734720826149, -0.02606731466948986, -0.011341788806021214, 0.0277243722230196, 0.027682596817612648, 0.02773829735815525, -0.02143034152686596, 0.0033489258494228125, 0.007992862723767757, 0.0221683569252491, 0.0050373137928545475, -0.002165313810110092, 0.01794912852346897, 0.020051781088113785, 0.014071058481931686, -0.018269401043653488, 2.18527638935484e-05, 0.0020173622760921717, -0.012595024891197681, -0.015762927010655403, -0.016946539282798767, -0.009413196705281734, 0.033168986439704895, 0.00022975998581387103, -0.01755923219025135, -0.01127912662923336, 0.021179692819714546, 0.00988664198666811, -0.004024281166493893, -0.0015386956511065364, -0.013346966356039047, 0.01552620530128479, -0.002833706559613347, 0.0038432579021900892, 0.021694913506507874, -0.01573507860302925, -0.020372051745653152, -0.03548051044344902, -0.016528794541954994, -0.016849065199494362, -0.006847544107586145, 0.025064725428819656, -0.01794912852346897, -0.005047757178544998, -0.01395269762724638, 0.005973759572952986, 0.011543698608875275, -0.0012993623968213797, 0.007359282113611698, 0.0011087659513577819, -0.01276212278753519, -0.003860664088279009, -0.014356518164277077, -0.03628815338015556, 0.010311350226402283, -0.02090119570493698, -0.02198733389377594, 0.0009843127336353064, 0.013806486502289772, 0.021193617954850197, -0.0332525372505188, 0.0076795537024736404, 0.005691781640052795, 0.020427752286195755, 0.030161220580339432, -0.021123994141817093, 0.01888209395110607, -0.012407039292156696, -0.006572528276592493, 0.007519417908042669, 0.008194772526621819, -0.008891015313565731, 0.0005700484616681933, -0.04082765430212021, -0.0036831223405897617, -0.020246729254722595, 0.01228867843747139, 0.00270142056979239, 0.005117381457239389, 0.016333846375346184, -0.021123994141817093, -0.024883702397346497, 0.0157490037381649, -0.016723742708563805, 0.0018520047888159752, -0.0006540326867252588, 0.009468896314501762, 0.008361871354281902, 0.02477230504155159, 0.018533973023295403, 0.019703660160303116, -0.008020712062716484, -0.009427121840417385, -0.042610034346580505, -0.0041496045887470245, 0.003220121143385768, -0.013646351173520088, -0.010798719711601734, 0.003958138171583414, 0.0003966405929531902, 0.025760969147086143, 0.015261633321642876, 0.0045012072660028934, 0.012525400146842003, 0.014579315669834614, -0.02141641639173031, -0.03729074075818062, -0.009364460594952106, -0.013374816626310349, 0.000573094526771456, -0.01460716500878334, 0.0055490517988801, -0.010408823378384113, -0.02940927818417549, -0.013541914522647858, -0.022655727341771126, 0.006346249487251043, -0.026317961513996124, 0.00017047059372998774, 0.0022906374651938677, -0.0012671611038967967, -0.002468179212883115, -0.008166923187673092, -0.027487650513648987, -0.02751549892127514, 0.00029633817030116916, -0.028935832902789116, -0.04525575414299965, -0.004939839709550142, -0.016375621780753136, 0.03121950849890709, -0.009280910715460777, 0.02478622831404209, -0.026749633252620697, -0.004602162167429924, 0.010833531618118286, -0.010944930836558342, 0.00430277781561017, -0.01515023410320282, -0.028880134224891663, -0.04341767728328705, -0.0056360820308327675, 0.03645525127649307, 0.01593002676963806, 0.036872997879981995, -0.02197341062128544, -0.0005722242058254778, 0.02790539525449276, -0.01865929551422596, -0.00397554412484169, -0.022307606413960457, -0.0387389250099659, -0.009099887683987617, 0.012887446209788322, -0.005754443351179361, 0.0037597089540213346, -0.030718214809894562, 0.0033785162959247828, 0.053527116775512695, 0.0031435342971235514, 0.015442656353116035, -0.017614932730793953, 0.013291267678141594, -0.020344203338027, 0.0023097840603441, -0.0038989572785794735, 0.017670631408691406, -0.01573507860302925, 0.024424182251095772, -0.013423553667962551, 0.008069449104368687, -0.002187941689044237, 0.002715345239266753, 0.002697939286008477, -0.019550485536456108, -0.00987271685153246, -0.03570330888032913, 0.009037226438522339, -0.028713036328554153, -0.01998215727508068, 0.023546917364001274, -0.028907984495162964, -0.006106045562773943, -0.0009390569175593555, 0.005719631444662809, -0.03230564668774605, -0.0012427926994860172, 0.003940731752663851, 0.01814407669007778, 0.005740518681704998, -0.008953677490353584, -0.017517458647489548, 0.01054110936820507, -0.013333042152225971, 0.048904065042734146, 0.01623637229204178, 0.02644328586757183, 0.012400076724588871, -0.008104261010885239, 0.005740518681704998, 0.0070250858552753925, 0.0005108678597025573, -0.008779616095125675, 0.029464978724718094, 0.0024542545434087515, 0.007999825291335583, -0.004765779245644808, -0.028239591047167778, 0.002283675130456686, -0.03754138946533203, -0.023379819467663765, 0.01551228016614914, -0.0014934398932382464, -0.004898065235465765, -0.004852809477597475, -0.015275558456778526, -0.04283283278346062, 0.002515175612643361, 0.017489608377218246, 0.03904527425765991, -0.022070884704589844, 0.003742302767932415, -0.03032831847667694, 0.011724721640348434, 0.03183220326900482, 0.02977132424712181, 0.018366875126957893, -0.00804159976541996, -0.041133999824523926, 0.0065063852816820145, -0.005496833473443985, -0.008751766756176949, -0.00430277781561017, 0.019828982651233673, -0.0014351296704262495, 0.016138898208737373, 0.007011160720139742, 0.006213963497430086, -3.5872802982339635e-05, -0.009204324334859848, -0.026735708117485046, 0.024312784895300865, 0.007609929423779249, 0.012372227385640144, 0.008633405901491642, -0.0064332797192037106, 0.008835315704345703, 0.014565390534698963, -0.013521026819944382, 0.0012514956761151552, -0.02162528783082962, 0.007449793629348278, -0.0033907005563378334, 0.014802113175392151, -0.0023759270552545786, -0.009106850251555443, -0.014112832956016064, -0.002983398735523224, -0.00867518037557602, 0.011808270588517189, 0.008431495167315006, -0.04347337409853935, -0.029325729236006737, 0.000402515142923221, -0.025412846356630325, 0.00568481907248497, -0.01682121679186821, 0.020232804119586945, -0.003016470232978463, 0.03406017646193504, -0.03032831847667694, 0.024257084354758263, -0.0050721256993710995, 0.022307606413960457, -0.022293681278824806, 0.01849219761788845, -0.003054763423278928, -0.008626443333923817, 0.027292702347040176, -0.02197341062128544, -0.035007067024707794, 0.007644741330295801, 0.021388566121459007, 0.01925806514918804, 0.002591762226074934, 0.014648939482867718, 0.0018119708402082324, -0.005764887202531099, 0.019689735025167465, -0.01081264391541481, -0.009914491325616837, -0.0026161307469010353, 0.024883702397346497, -0.0009938860312104225, 0.007783989887684584, -0.037986986339092255, 0.02847631461918354, 0.017684556543827057, 0.021667063236236572, 0.010555034503340721, -0.03812623396515846, 0.027612973004579544, -0.02514827437698841, 0.013388740830123425, -0.0032671173103153706, -0.0016292071668431163, -0.005374991334974766, -0.024452032521367073, -0.016208522021770477, 0.0005152193480171263, 0.018728921189904213, -0.0019721065182238817, 0.019285913556814194, 0.026721782982349396, -0.023198796436190605, -0.0011444484116509557, -0.01258109975606203, 0.007797914557158947, 0.014843887649476528, -0.005388916004449129, -0.040382057428359985, -0.01393877249211073, -0.011634210124611855, 0.02127716690301895, -0.006656077224761248, -0.005012945272028446, -0.0037040095776319504, -0.021360715851187706, -0.04043775796890259, -0.0055908262729644775, -0.011146840639412403, 0.024521656334400177, 0.035396963357925415, 0.017642783001065254, 0.008285284042358398, 0.022836750373244286, -0.011411412619054317, -0.005650007165968418, -0.006008571945130825, -0.01808837801218033, -0.014105870388448238, 0.0037179344799369574, -0.006993754766881466, 0.008988489396870136, -0.021736687049269676, -0.02069232426583767, 0.013527989387512207, -0.007387131918221712, 0.00039577027200721204, 0.0067291827872395515, -0.01775418035686016, 0.0096916938200593, -0.001787602319382131, -0.0009938860312104225, 0.01218424178659916, 0.018589671701192856, 0.003912882413715124, -0.019842907786369324, -0.021472115069627762, -0.0011592436349019408, -0.006374099291861057, -0.03442222252488136, -0.01793520338833332, 0.0073383948765695095, -0.01641739532351494, 0.00010954938625218347, -0.02790539525449276, -0.013632426038384438, -0.018756769597530365, -0.02808641828596592, 0.0536106638610363, -0.025468546897172928, -0.0006418484263122082, 0.018171926960349083, -0.0031348313204944134, -0.018004829064011574, -0.019174516201019287, 0.0406327061355114, 0.019299838691949844, -0.0010025890078395605, 0.017266811802983284, -0.024284934625029564, 0.0056534879840910435, -0.002114836359396577, 0.016027498990297318, -0.004546463023871183, 0.011195577681064606, 0.0038049647118896246, 0.011857007630169392, -0.028685186058282852, 0.015359107404947281, 0.026373662054538727, -0.005921541713178158, -0.0010069406125694513, 0.0018293769098818302, -0.006078196223825216, 0.008250472135841846, -0.028573786839842796, 0.0005165248294360936, -0.004059093073010445, 0.017044013366103172, 0.008452382870018482, 0.00033528421772643924, -0.011306975968182087, -0.01377167459577322, 0.016208522021770477, -0.017879504710435867, -0.004041687119752169, 0.21009810268878937, -0.014537541195750237, -0.002332411939278245, 0.024089986458420753, -0.015317332930862904, 0.011070254258811474, 0.0286294873803854, -0.005354104097932577, -0.016027498990297318, 0.006060789804905653, 0.0024177017621695995, 0.013792561367154121, -0.023741865530610085, 0.0006888448260724545, -0.002673570765182376, 0.005743999499827623, -0.04937751218676567, -0.007084266282618046, -0.0044803195632994175, -0.055337343364953995, 0.02921433001756668, -0.009322685189545155, -0.010422748513519764, -0.003547355066984892, 0.013416591100394726, 0.005587344989180565, -0.011049366556107998, -0.006718738935887814, 0.03453362360596657, -0.013277342543005943, -0.04013141244649887, -0.008347946219146252, 0.004229672718793154, 0.0008054653881117702, -0.01608319953083992, 0.01936946250498295, 0.020984746515750885, 0.010255650617182255, 0.022655727341771126, -0.004469876177608967, 0.004546463023871183, -0.007414981257170439, -0.01024868804961443, 0.00452905660495162, -0.01044363621622324, 0.021583514288067818, -0.019675809890031815, -0.005354104097932577, -0.005604751408100128, 0.007011160720139742, -0.01683514192700386, 0.010151213966310024, 0.039463017135858536, 0.0030495417304337025, 0.004918952472507954, -0.005364547483623028, -0.0026300556492060423, 0.009545483626425266, -0.014084983617067337, 0.012476664036512375, -0.009099887683987617, 0.008111223578453064, 0.0020138812251389027, 0.0332525372505188, -0.022989923134446144, 0.01082656905055046, -0.00987271685153246, -0.022293681278824806, 0.004873696714639664, -0.01625029742717743, -0.0058519174344837666, -0.0034168094862252474, -0.0056082322262227535, -0.006328843533992767, -0.006593415513634682, -0.0038362955674529076, 0.0276965219527483, -0.022850675508379936, -0.004139161203056574, -0.009998040273785591, 0.012803897261619568, -0.015776852145791054, 0.016305996105074883, -0.007999825291335583, -0.004059093073010445, -0.042220138013362885, -0.007275733165442944, -0.018979568034410477, -0.019675809890031815, 0.01322860550135374, -0.021151844412088394, -0.03186005353927612, -0.006993754766881466, -0.012142467312514782, 0.0020365091040730476, -0.011829158291220665, 0.015010985545814037, 0.00448380084708333, 0.0008237417787313461, 0.0014473138144239783, -0.0010765647748485208, -0.013054545037448406, 0.023198796436190605, 0.014259044080972672, -0.02404821291565895, 0.022683577612042427, 0.01902134157717228, -0.0055734203197062016, 0.009225212037563324, 0.000818519969470799, 0.022488629445433617, -0.026136938482522964, -0.007658666465431452, -0.016960464417934418, 0.004717042203992605, 0.022878525778651237, -0.00979613047093153, -0.01015817653387785, 0.01414764579385519, 0.008556818589568138, 0.009684731252491474, -0.01533125713467598, -0.002233197446912527, -0.002543025417253375, 0.0007397575536742806, -0.014036246575415134, -0.014342593029141426, 0.023741865530610085, -0.005987684708088636, -0.010367048904299736, 0.03088531270623207, -0.03940732032060623, 0.006649114657193422, -0.004497725982218981, -0.01450969185680151, 0.018603596836328506, -0.003178346436470747, -0.022781051695346832, 0.030272619798779488, -0.011230389587581158, 0.00102782784961164, -0.01533125713467598, 0.014593240804970264, 0.015985725447535515, 0.014523616060614586, 0.00811818614602089, 0.017865579575300217, -0.014718564227223396, 0.0012071102391928434, -0.006812731735408306, -0.02051130123436451, 0.0020138812251389027, 0.0009434084640815854, 0.0010313090169802308, 0.004069536924362183, 0.004351514857262373, -0.024257084354758263, -0.03737429156899452, -0.002323708962649107, 0.032779090106487274, -0.02921433001756668, 0.018422573804855347, 0.0387389250099659, 0.007268770597875118, -0.020372051745653152, -0.005301885772496462, -0.1792406439781189, 0.020970821380615234, 0.01772633194923401, -0.009211286902427673, 0.03252844512462616, 0.024479882791638374, 0.02605338953435421, 0.005441134329885244, -0.013437477871775627, -0.00471007963642478, 0.020956896245479584, 0.023700090125203133, -0.020650548860430717, -0.016389545053243637, -0.012219053693115711, 0.01593002676963806, -0.018352949991822243, 0.013896998018026352, 0.03673375025391579, 0.026095164939761162, 0.0070877475664019585, -0.006356692872941494, 0.008988489396870136, 0.0035299488808959723, 0.0033680726774036884, 0.0050721256993710995, -0.0026613865047693253, 0.011035442352294922, 0.007637779228389263, -0.014523616060614586, -0.00981005560606718, 0.020246729254722595, 0.009489784017205238, -0.015943950042128563, 0.021583514288067818, 0.006328843533992767, 0.015233783051371574, -0.0194390881806612, 0.0011801308719441295, 0.023560842499136925, 0.01469071488827467, 0.00952459592372179, 0.021680988371372223, 0.0027623416390269995, -0.017057938501238823, 0.025078650563955307, -0.002450773259624839, -0.01026261318475008, 0.00046082542394287884, -0.013402665965259075, 0.005782293155789375, 0.0024855853989720345, 0.01162724755704403, -0.0032566736917942762, 0.036483101546764374, 0.005012945272028446, 0.024243159219622612, 0.009336610324680805, 0.00041491695446893573, -0.01588825136423111, 0.002328930888324976, 0.0016561865340918303, 0.012734273448586464, -0.01072213239967823, -0.005434171762317419, 0.010220838710665703, -0.014829962514340878, 0.013040619902312756, -0.014816038310527802, 0.016668042168021202, 0.01153673604130745, 0.003315854351967573, 0.03258414566516876, -0.002086986554786563, -0.0006522921030409634, -0.00777006521821022, -0.0156933031976223, 0.02938142977654934, -0.008285284042358398, -0.020748022943735123, -0.041301097720861435, 0.02641543559730053, 0.0028319659177213907, -0.016375621780753136, 0.00787450186908245, 0.013479252345860004, -0.009566370397806168, -0.021123994141817093, -0.018993493169546127, 0.0017423465615138412, 0.012149429880082607, -0.024257084354758263, -0.014398292638361454, -0.017294660210609436, 0.010659471154212952, 0.014091946184635162, 0.0194112379103899, -0.014941361732780933, 0.004421139135956764, -0.009127737954258919, 0.008730879984796047, -0.0221962071955204, -0.004309740383177996, 0.02143034152686596, 0.024284934625029564, 0.008542894385755062, -0.015567979775369167, 0.004908509086817503, 0.021207543089985847, 0.013813449069857597, -0.01348621491342783, 0.01996823213994503, 0.01377167459577322, 0.0038258519489318132, 0.007637779228389263, 0.027682596817612648, 0.001205369597300887, -0.013813449069857597, 0.019856832921504974, -0.01533125713467598, 0.05659058317542076, -0.0019216289510950446, -0.001555231399834156, 0.0038188896141946316, -0.015957875177264214, -0.034310825169086456, -0.12498943507671356, -0.011244314722716808, 0.01719718612730503, 0.016862990334630013, -0.003033876186236739, 0.023031698539853096, -0.006050346419215202, 0.019327688962221146, -0.018561821430921555, 0.0047240047715604305, -0.01091708056628704, -0.02993842214345932, 0.00775614008307457, -0.01469071488827467, -0.005096494220197201, -0.02569134347140789, 0.0026718301232904196, -0.02680533193051815, -0.002583059249445796, 0.02739017643034458, 0.006593415513634682, -0.01552620530128479, 0.008772654458880424, -0.010116402059793472, 0.012212091125547886, 0.010422748513519764, -0.021541738882660866, 0.007470680866390467, 0.0249394029378891, 0.01629207283258438, -0.013430515304207802, -0.007261808030307293, 0.013924847356975079, -0.021291092038154602, -0.0017910836031660438, -0.018520047888159752, -0.03383738175034523, 0.01736428588628769, 0.021555664017796516, -0.02569134347140789, 0.018269401043653488, -0.01258109975606203, 0.016166748479008675, -0.023881113156676292, 0.0064785354770720005, -0.004668305162340403, -0.020246729254722595, 0.004584756214171648, 0.012699461542069912, -0.0156933031976223, -0.021499965339899063, 0.01554013043642044, -0.04319487884640694, -0.004494244698435068, 0.02828136645257473, 0.005632600747048855, 0.03102456033229828, -0.011362675577402115, -0.023157021030783653, -0.0022297161631286144, -0.01469071488827467, 0.009970190934836864, -0.005249667447060347, 0.025983765721321106, 0.011710797436535358, -0.016403470188379288, -0.005336698144674301, -0.013360891491174698, 0.02683318220078945, 0.01044363621622324, -0.007714365608990192, 0.013242530636489391, -0.03341963514685631, 0.02918648160994053, -0.004643936641514301, 0.017614932730793953, -0.02161136455833912, -0.00481451628729701, 0.012915296480059624, 0.005462021566927433, -0.009573332965373993, -0.025969840586185455, -0.003564761020243168, -0.002177498070523143, 0.019090967252850533, 0.029102932661771774, 0.013284305110573769, -0.011571548879146576, 0.011202540248632431, -0.01136963814496994, -0.011515849269926548, 0.01775418035686016, -0.009656881913542747, -0.03570330888032913, 0.008257434703409672, 0.039992161095142365, 0.014084983617067337, -0.01331911701709032, -0.011989293619990349, 0.006516828667372465, -0.0021113550756126642, 0.0185061227530241, -0.04882051795721054, 0.028323139995336533, 0.013256454840302467, -0.006408911198377609, -0.007783989887684584, -0.012915296480059624, 0.023783640936017036, -0.019717585295438766, -0.011453187093138695, -0.0028267439920455217, -0.021513890475034714, 0.027682596817612648, -0.01164117269217968, -0.019146665930747986, -0.006419355049729347, -0.0031800870783627033, -5.153825622983277e-05, -0.005656969267874956, -0.0007480254280380905, -0.01591610163450241, 0.021694913506507874, -0.002046952722594142, 0.021541738882660866, -0.0022088289260864258, -0.027459800243377686, 0.009294835850596428, -0.009211286902427673, 0.01587432622909546, 0.007818802259862423, -0.014829962514340878, 0.008389720693230629, -0.027988944202661514, -0.01063162088394165, 0.012330452911555767, 0.009461933746933937, 0.01567937806248665, -0.0016248556785285473, 0.007275733165442944, 0.011390525847673416, 0.05012945085763931, -0.01442614197731018, -0.004626530688256025, 0.004884140565991402, -0.02085942216217518, 0.018074452877044678, 0.01846434734761715, -0.01962011121213436, 0.004817997571080923, 0.01906311698257923, -0.00038423878140747547, -0.001250625355169177, 0.03570330888032913, 0.0025029913522303104, -0.028796585276722908, -0.011286089196801186, -0.033001888543367386, 0.023393744602799416, -0.016389545053243637, -0.007867539301514626, -0.023714015260338783, -0.0020121405832469463, -0.026512909680604935, 0.0011253018165007234, 0.0020573963411152363, 0.005792736541479826, -0.01117468997836113, -0.013374816626310349, -0.016389545053243637, -0.010833531618118286, 0.0028041161131113768, 0.010186025872826576, 0.003738821716979146, 0.0007515066536143422, 0.004431582987308502, 0.00613737665116787, 0.01906311698257923, -0.006064271088689566, 0.02290637418627739, -0.025036877021193504, 0.005420247092843056, -0.016695892438292503, -0.020010005682706833, -0.03784773498773575, 0.009273949079215527, 0.030551116913557053, 0.00481451628729701, 0.00951067078858614, 0.012156392447650433, -0.018812470138072968, 0.009441046975553036, 0.02622048929333687, -0.01998215727508068, -0.0006740496610291302, -0.008229585364460945, 0.013068469241261482, 0.005291442386806011, -0.01623637229204178, 0.0006009442149661481, 0.012149429880082607, 0.03291834145784378, -0.004100867547094822, 0.00549335265532136, 0.007790952455252409, -0.01846434734761715, 0.005145231261849403, -0.00914862472563982, -0.013131131418049335, -0.017406059429049492, -0.008925827220082283, 0.020191028714179993, 0.01063162088394165, 0.0007919757044874132, 0.019118815660476685, 0.01700223982334137, -0.0039442130364477634, 0.00036139332223683596, 0.013172905892133713, -0.03291834145784378, -0.005876285955309868, 0.04968385770916939, 0.01378559973090887, 0.035369113087654114, 0.01739213429391384, 0.010241725482046604, 0.022070884704589844, 0.008904940448701382, 0.01313809398561716, 0.020079631358385086, -0.016528794541954994, 6.455880338762654e-06, -0.0064611295238137245, 0.003610016778111458, -0.039992161095142365, 0.005284479819238186, 0.002560431370511651, -0.03177650272846222, 0.0012332192854955792, 0.004671786446124315, -0.034310825169086456, 0.030941011384129524, 0.008320096880197525, -0.005712668877094984, -0.010290462523698807, 0.002924218075349927, 0.04753943160176277, 0.004877177998423576, 0.011975369416177273, -0.013242530636489391, -0.028030717745423317, 0.01144622452557087, -0.015010985545814037, 0.022056959569454193, -0.014955286867916584, -0.012400076724588871, 0.0068022883497178555, -0.006955461576581001, 0.04283283278346062, -0.02422923594713211, -0.02603946626186371, 0.03678944706916809, -0.004215747583657503, 0.02736232616007328, -0.0056639318354427814, -0.012114617973566055, -0.0018572265980765224, 0.026680007576942444, -0.0023654834367334843, 0.002149648265913129, -0.04274928197264671, 0.006913687102496624, 0.001764104119502008, -0.011035442352294922, -0.008751766756176949, 0.022864600643515587, -5.251734546618536e-05, 0.0017249404918402433, -0.019327688962221146, 0.018923867493867874, -0.0010269575286656618, -0.011118991300463676, 0.02492547780275345, -0.022084807977080345, -0.0351741649210453, 0.009970190934836864, 0.008320096880197525, -0.022864600643515587, 0.02162528783082962, -0.029659925028681755], "d5cb66d8-0121-41b0-8622-71f33c008d06": [0.008779591880738735, -0.01572810858488083, -0.012004469521343708, 0.008608782663941383, -0.003511836752295494, 0.031100936233997345, -0.004564021248370409, -0.020838720723986626, -0.007290135603398085, -0.02812202274799347, 0.020100824534893036, 0.012161613442003727, 0.01816043257713318, -0.005998818203806877, -0.013124977238476276, 0.013869705609977245, 0.03520035743713379, -0.0024340308737009764, 0.030390368774533272, -0.026372937485575676, -0.008137349039316177, 0.0025296839885413647, -0.008683938533067703, 0.009879603050649166, 0.007064667530357838, 0.022150535136461258, 0.012735532596707344, -0.01224360242486, 0.005633286666125059, 0.003542582504451275, -0.009510654956102371, 0.00933984573930502, -9.543963096803054e-05, 0.006671806797385216, -0.025197770446538925, -0.007624921854585409, -0.0005286544328555465, -0.022246187552809715, 0.01464859489351511, -0.0007489982526749372, 0.01026221551001072, -0.0048988074995577335, -0.00797337293624878, 0.028504636138677597, -0.019882189109921455, 0.0160150695592165, -0.006149130407720804, -0.022902095690369606, -0.01883000321686268, 0.016425011679530144, 0.03694944083690643, 0.004861229099333286, -0.036129556596279144, 0.004789489321410656, -0.012721868231892586, -0.0020616669207811356, 0.006166211329400539, 0.032959338277578354, 0.0029191288631409407, 0.01571444422006607, -0.004970547277480364, 0.0022820106241852045, 0.0014988505281507969, 0.014402629807591438, -0.045202940702438354, 0.0008425163105130196, -0.001979678403586149, -0.015249843709170818, -0.020456107333302498, -0.01719023659825325, 0.0566813200712204, 0.018652362748980522, -0.005909997504204512, 0.0038671197835355997, 0.024377886205911636, -0.028613954782485962, -0.023489678278565407, -0.02074306644499302, -0.02458285726606846, 0.010685821995139122, -0.006883610039949417, -0.04432839900255203, 0.0018327825237065554, 0.004885142669081688, 0.01151253841817379, -0.01593307964503765, 0.010029914788901806, 0.023038743063807487, -0.013862873427569866, -0.031319569796323776, 0.009633637964725494, 0.005346327554434538, 0.0004172014305368066, -0.002193189924582839, -0.0029276693239808083, 0.02486981637775898, -0.02243749424815178, 0.01630202867090702, -0.009613140486180782, -0.018105773255228996, -0.01843372732400894, -0.008854747749865055, -0.017832478508353233, -0.005486391019076109, -0.034571778029203415, 0.012257266789674759, -0.019144292920827866, -0.01925361156463623, 0.009380839765071869, -0.011936145834624767, -0.006811870262026787, 0.009134874679148197, -0.028422648087143898, -0.055369503796100616, -0.01784614287316799, -0.01445728912949562, 0.04738929867744446, -0.0038124609272927046, -0.00201042415574193, -0.019977841526269913, -0.013972191140055656, 0.03541899099946022, 0.011382724158465862, -0.01630202867090702, 0.005243842024356127, 0.014252318069338799, 0.0027175741270184517, -0.02611330710351467, -0.006675222888588905, -0.0005278003518469632, 0.055232856422662735, 0.014552942477166653, 0.01615171693265438, -0.014402629807591438, -0.011819995008409023, 0.022150535136461258, -0.021412638947367668, -0.008171510882675648, -0.020346788689494133, -0.02685120329260826, 0.006941684987396002, 0.004290726501494646, -0.011519371531903744, -0.031100936233997345, -0.032658714801073074, 0.027411457151174545, 0.011881486512720585, 0.0027807734441012144, -0.026236290112137794, -0.0025177274364978075, 0.01224360242486, -0.01970454677939415, 0.024172915145754814, -0.015140525996685028, 0.02057909034192562, -0.027835063636302948, 0.00711932685226202, 0.009954758919775486, 0.001515931449830532, -0.00911437813192606, 0.02398160845041275, 0.00031962667708285153, 0.014156664721667767, -0.014785242266952991, 0.0064087603241205215, 0.025197770446538925, -0.0007276471005752683, -0.012790191918611526, -0.0330413281917572, -0.012236769311130047, 0.011854156851768494, 0.011526203714311123, -0.023339366540312767, -0.0011649186490103602, -0.02302507683634758, 0.014689589850604534, 0.04359050467610359, 0.019526906311511993, -0.01822875626385212, 0.007146656047552824, -0.033915869891643524, -0.012455405667424202, 0.033833883702754974, 0.010836134664714336, 0.00010526115511311218, -0.015591462142765522, -0.009934262372553349, 0.000479973794426769, 0.011867822147905827, 0.016069727018475533, 0.009920597076416016, 0.004755327478051186, -0.025143111124634743, -0.027507109567523003, -0.6392909288406372, -0.025197770446538925, -0.014224988408386707, -0.009052886627614498, -0.009503822773694992, 0.00826716423034668, 0.006746962666511536, 0.02627728506922722, -0.002334961434826255, -0.00019280085689388216, -0.029051225632429123, 0.01527717337012291, 0.009435499086976051, -0.0016636814689263701, -0.017818814143538475, 0.004601599182933569, 0.0041472469456493855, -0.03432581201195717, -0.011977139860391617, -0.012701370753347874, -0.02584001235663891, 0.01883000321686268, -0.00045435241190716624, 0.008212505839765072, -0.002485273638740182, -0.0007690683123655617, 0.019349263980984688, -0.007536101154983044, 0.011738006956875324, 0.01631569303572178, -0.021426303312182426, 0.026331942528486252, 0.010228053666651249, 0.03241274878382683, 0.04845514893531799, -0.006323355715721846, -0.03544631972908974, 0.02368098497390747, 0.013897035270929337, 0.016110721975564957, -0.01889832690358162, -0.01224360242486, 0.021194003522396088, 0.000452644337201491, 0.011170919984579086, 0.012947335839271545, 0.03407984599471092, -0.022314511239528656, 0.029488496482372284, 0.007098829373717308, 0.010569672100245953, -0.007447280455380678, 0.003938859794288874, -0.004765576217323542, -0.00513110775500536, -0.010924954898655415, 0.02384496107697487, -0.011027440428733826, 0.012059127911925316, -0.002990868641063571, 0.016561659052968025, 0.026755550876259804, -0.016493335366249084, 0.005920246243476868, -0.018105773255228996, 0.018392732366919518, -0.005008125212043524, 0.002541640540584922, 0.013760387897491455, -0.006179876159876585, 0.01969088241457939, 0.008355985395610332, 0.009490158408880234, -0.02015548385679722, 0.020032500848174095, -0.000527373340446502, 0.03011707402765751, -0.016547992825508118, 0.0037407211493700743, 0.027684751898050308, 0.004082339350134134, -0.019376592710614204, -0.033314622938632965, -0.025799019262194633, 0.013726226054131985, -0.017217565327882767, -0.01954057067632675, 0.027630092576146126, -0.0018464472377672791, -0.009804447181522846, -0.0030950624495744705, 0.01772315986454487, -0.003076273249462247, -0.0009847149485722184, 0.018693355843424797, 0.005100362002849579, -0.008437973447144032, -0.006582985632121563, 0.004280478227883577, -0.003955940715968609, -0.0015654661692678928, -0.006794789340347052, 0.016629982739686966, -0.00355966342613101, 0.015673451125621796, -0.016356687992811203, -0.03577427566051483, -0.010029914788901806, 0.04618680104613304, -0.03055434674024582, -0.011259741149842739, -0.00848579965531826, -0.009667799808084965, 0.009134874679148197, 0.009968424215912819, -0.020606419071555138, 0.010528678074479103, -0.007529268506914377, 0.016506999731063843, 0.002012132201343775, 0.01335727795958519, -0.01542748510837555, 0.011997636407613754, -0.011956642381846905, 0.024746833369135857, 0.044465046375989914, 0.010453522205352783, -0.023776637390255928, -0.00944916345179081, -0.00021842223941348493, -0.0031206838320940733, 0.004338553175330162, 0.01321379840373993, 0.015318167395889759, 0.020975368097424507, -0.02331203781068325, 0.014730583876371384, -0.00011177326086908579, 0.024446209892630577, -0.04170477017760277, -0.014102006331086159, 0.016916941851377487, 0.011375891044735909, 0.004796321969479322, -0.0033017415553331375, -0.033369280397892, -0.022478487342596054, -0.004215570632368326, -0.033833883702754974, -0.0037099753972142935, -0.005732356104999781, -0.015618791803717613, 0.004943217616528273, 0.008854747749865055, 0.016179045662283897, -0.0014544401783496141, -0.009783949702978134, -0.0006055185222066939, 0.009100712835788727, -0.016261033713817596, 0.020538095384836197, 0.01947224698960781, -0.01762750744819641, 0.010132400318980217, 0.011416886001825333, -0.013070318847894669, -0.013985855504870415, 0.030445028096437454, -0.019608894363045692, -0.0321941152215004, 0.005517136305570602, -0.004027680493891239, 0.004355634097009897, 0.04184141755104065, -0.009210031479597092, 0.0018191178096458316, -0.013131809420883656, -0.03459910675883293, -0.004902223590761423, 0.002770524937659502, -0.009141707792878151, 0.029242532327771187, -0.006333604454994202, -0.016479669138789177, 0.006996343843638897, 0.0025467649102211, -0.008841083385050297, 0.006015899125486612, 0.01549580879509449, 0.02089337818324566, -0.004365882836282253, 0.004423957783728838, 0.010938620194792747, 0.005185766611248255, -0.00811685249209404, -0.004437622614204884, 0.012592053040862083, 0.015290837734937668, 0.008711268194019794, 0.01022122148424387, 0.015837427228689194, -0.0011136758839711547, 0.02353067323565483, -0.00730380043387413, -0.001351954648271203, -0.03719540685415268, -0.005920246243476868, -0.0027500279247760773, 0.02722015045583248, -0.023885956034064293, 0.005455645266920328, -0.03410717844963074, -0.013384607620537281, -0.02421391010284424, 0.016807623207569122, 0.014839901588857174, 0.012448573485016823, 0.002965247491374612, -0.01727222464978695, -0.008957233279943466, 0.009722458198666573, -0.008287661708891392, -0.0017328591784462333, -0.01688961125910282, -0.012038631364703178, -0.006309691350907087, -0.008390147238969803, 0.04301658272743225, 0.016343021765351295, -0.010760978795588017, 0.031046276912093163, -0.002960123121738434, -0.0018652362050488591, 0.005370240658521652, 0.005657200235873461, 0.016479669138789177, 0.001145275542512536, -0.015154190361499786, 0.04692469909787178, -0.02753444015979767, 0.008028031326830387, 0.011382724158465862, 0.019212616607546806, -0.027192821726202965, -0.004126749932765961, 0.010494516231119633, 0.005920246243476868, 0.003038695314899087, 0.008813753724098206, 0.013159139081835747, -0.022833772003650665, -0.0010624331189319491, -0.00516526959836483, -0.0018976900028064847, 0.010569672100245953, -0.036266203969717026, 0.005571795627474785, 0.01638401672244072, 0.01762750744819641, 0.03233076259493828, 0.013630572706460953, 0.00021618037135340273, 0.030745653435587883, 0.011621857061982155, 0.05577944591641426, 0.021194003522396088, 0.012660376727581024, 0.009626805782318115, -0.027138162404298782, -0.026878532022237778, -0.004980795551091433, -0.00830815825611353, 0.003494755830615759, -0.006934852804988623, 0.020920708775520325, -0.008642944507300854, 0.01427964773029089, -0.012407578527927399, 0.025252429768443108, 0.0036928944755345583, -0.008540458977222443, -0.023967944085597992, 0.015044872649013996, -0.005356575828045607, 0.01471691858023405, -0.009059718810021877, -0.023134395480155945, 0.005014957394450903, -0.02574435994029045, 0.04066624864935875, -0.026878532022237778, 0.006548823788762093, 0.029105884954333305, -0.01214111689478159, -0.011136758141219616, -0.0064463382586836815, 0.02059275470674038, 0.00019760486611630768, 0.024828823283314705, -0.008273996412754059, -0.012762862257659435, 0.014621266163885593, -0.0247331690043211, 0.01940392330288887, 0.01873435080051422, -0.00948332529515028, -0.01978653483092785, -0.017367877066135406, 0.005896333139389753, -0.022601470351219177, -0.010412527248263359, -0.02331203781068325, 0.00026454072212800384, -0.0009283478721044958, 0.004823651164770126, 0.00569819426164031, -0.023708313703536987, 0.024090927094221115, 0.024528197944164276, -0.008834251202642918, -0.009859105572104454, -0.011956642381846905, -0.02421391010284424, -0.004786073230206966, 0.10407061874866486, 0.029570484533905983, -0.016192710027098656, -0.007132991217076778, -9.8749060271075e-06, -0.0007067229598760605, -0.02812202274799347, -0.029871109873056412, 0.025211434811353683, 0.001943808514624834, 0.00841064378619194, -0.02184990979731083, 0.026400266215205193, -0.011239243671298027, 0.005284836050122976, -0.001482623745687306, -0.013234294950962067, -0.0037646342534571886, -0.01026221551001072, -0.022806441411376, 0.004136998206377029, 0.014621266163885593, 0.01867969147861004, 0.018283415585756302, -0.028531964868307114, 0.00038175852387212217, 0.018611367791891098, -0.011703845113515854, 0.011601359583437443, -0.02190456911921501, -0.011006943881511688, 0.018802674487233162, 0.03867119923233986, 0.028231341391801834, -0.028231341391801834, -0.0022888430394232273, -0.0034230160526931286, 0.0246511809527874, 0.002381080063059926, 0.006982679478824139, 0.019977841526269913, 0.015659784898161888, 0.01151253841817379, -0.017094582319259644, 0.016561659052968025, 0.009975256398320198, -0.004106252919882536, -0.0006896420381963253, -0.020469771698117256, 0.0051994314417243, 0.04610481485724449, -0.007877719588577747, -0.012646711431443691, -0.01918528787791729, 0.029843779280781746, -0.005749437026679516, 0.003060900606215, -0.004717749543488026, -0.02404993213713169, 0.025635041296482086, -0.0013374359114095569, 0.010808805003762245, 0.010713151656091213, -0.014675924554467201, -0.026509584859013557, -0.033013999462127686, -0.025853676721453667, -0.017313217744231224, -0.004687003791332245, 0.01578276790678501, -0.01579643227159977, -0.011498874053359032, -0.014402629807591438, 0.017026258632540703, 0.026181630790233612, -0.0045606051571667194, 0.017231229692697525, 0.0010615790961310267, 0.005869003478437662, -0.01578276790678501, -0.0051618535071611404, -0.03099161759018898, 0.010877128690481186, -0.016288364306092262, -0.008601950481534004, -0.019171621650457382, 0.0051242755725979805, 0.0357196144759655, -0.0308549702167511, 0.004577686078846455, 0.0034110592678189278, 0.014047347009181976, 0.019390258938074112, -0.0022376002743840218, 0.018556708469986916, 0.01000258605927229, -0.0049363854341208935, -0.004717749543488026, -0.005219928454607725, -0.0005794701282866299, 0.0019950512796640396, -0.04501163586974144, -0.00955164898186922, -0.006931436713784933, 0.015755439177155495, -0.0013229170581325889, 0.013056653551757336, 0.019595229998230934, -0.01608339324593544, -0.026755550876259804, 0.0046528419479727745, -0.008062193170189857, 0.007030505686998367, 0.006439506076276302, 0.02000517211854458, 0.0029977010563015938, 0.018857333809137344, 0.007249141577631235, -0.004195073619484901, -0.0008297056192532182, -0.0019113547168672085, -0.04033829644322395, 0.009353511035442352, 0.004905639681965113, -0.021166672930121422, -0.01688961125910282, 0.012387081980705261, -0.007836725562810898, 0.016875946894288063, 0.016261033713817596, 0.011410052888095379, 0.019649887457489967, 0.0035767443478107452, -0.011047937907278538, -0.026290949434041977, 0.0024818573147058487, -0.02081139013171196, -0.0029208369087427855, -0.01963622309267521, -0.00669913599267602, -0.018338073045015335, -0.0321941152215004, -0.006565904710441828, -0.023421354591846466, -0.0031531373970210552, -0.021016361191868782, -0.010747313499450684, 0.009558482095599174, 0.00627211295068264, -0.001005212077870965, -0.0060432287864387035, -0.035746946930885315, -0.04214204102754593, 0.003033570945262909, -0.022273516282439232, -0.028805259615182877, -0.006104720290750265, -0.01720390096306801, 0.0343804731965065, -0.013008827343583107, 0.03224877268075943, -0.02847730740904808, -0.0060329800471663475, 0.006073974538594484, -0.0016602652613073587, -0.004874893929809332, -0.009879603050649166, -0.03653949871659279, -0.03735938295722008, -0.00776840141043067, 0.028313329443335533, 0.029023896902799606, 0.011724342592060566, -0.01889832690358162, -0.014375301077961922, 0.029133213683962822, -0.00948332529515028, -0.008103187195956707, -0.012441740371286869, -0.04315323010087013, -0.006401928141713142, -0.006371182389557362, -0.021194003522396088, -0.00903922226279974, -0.029843779280781746, -0.004089171998202801, 0.06072608008980751, 0.009783949702978134, 0.003682645969092846, -0.022984083741903305, 0.011683347634971142, -0.016629982739686966, 0.029980426654219627, 0.005646951496601105, 0.011519371531903744, -0.016916941851377487, 0.0246511809527874, -0.01324112806469202, 0.0009104129276238382, -0.014265982434153557, 0.00608763936907053, 0.011000111699104309, -0.011232411488890648, -0.016042398288846016, -0.017654836177825928, 0.012257266789674759, -0.021959228441119194, -0.01963622309267521, 0.0018754848279058933, -0.0251567754894495, -0.012489567510783672, -0.014990213327109814, 0.011464712209999561, -0.03880784660577774, -0.01807844452559948, -0.003183883149176836, 0.014935554936528206, 0.008875245228409767, -0.01785980723798275, -0.011123093776404858, 0.005073032807558775, -0.003300033276900649, 0.04361783340573311, 0.014197658747434616, 0.01225043460726738, 0.014880895614624023, -0.007146656047552824, -0.004765576217323542, 0.009285187348723412, -0.002898631850257516, -0.010603833943605423, 0.029871109873056412, 0.013938029296696186, 0.007399453781545162, -0.010836134664714336, -0.028231341391801834, -0.005609373562037945, -0.042333345860242844, -0.024473538622260094, 0.0189529862254858, 0.004215570632368326, -0.0026031318120658398, -0.00012405017332639545, -0.00463234493508935, -0.028723271563649178, 0.007645418867468834, 0.016862282529473305, 0.028204012662172318, -0.013056653551757336, -0.005650367587804794, -0.03733205422759056, 0.0023964527063071728, 0.019663553684949875, 0.024774163961410522, 0.019349263980984688, -0.018201425671577454, -0.034353140741586685, -0.002879842882975936, -0.02706983871757984, -0.010501348413527012, -0.002358874771744013, 0.016001403331756592, -0.0005927078309468925, 0.004509362392127514, 0.0017115080263465643, -0.004714333452284336, -0.008752262219786644, 0.011526203714311123, -0.02812202274799347, 0.01978653483092785, -0.005107194650918245, 0.0034674264024943113, 0.0008941860869526863, 0.005284836050122976, 0.017108246684074402, 0.014552942477166653, -0.0011700429022312164, 0.007952875457704067, -0.024897146970033646, 0.01150570623576641, 0.0005722107598558068, 0.019663553684949875, 0.007221812382340431, -0.01471691858023405, -0.010890793055295944, -0.013514422811567783, 0.011225579306483269, 0.01471691858023405, 0.007255974225699902, -0.03793330118060112, -0.022300846874713898, -0.006548823788762093, -0.028668612241744995, 0.02916054241359234, -0.002727822633460164, 0.03380655124783516, 0.0013468303950503469, 0.03298667073249817, -0.024541862308979034, 0.03260405734181404, -0.015181520022451878, 0.008328655734658241, -0.030199063941836357, 0.007372124120593071, 0.009203198365867138, -0.020182812586426735, 0.018187761306762695, -0.028613954782485962, -0.03440780192613602, 0.009934262372553349, 0.011027440428733826, -0.0025433485861867666, -6.506762292701751e-05, 0.011006943881511688, 0.0016730759525671601, -0.0004107960849069059, 0.006118384655565023, -0.013828711584210396, -0.014224988408386707, 0.007344794925302267, 0.02891457825899124, -0.0011708969250321388, 0.010023082606494427, -0.03159286454319954, 0.023216383531689644, 0.003445221111178398, 0.03159286454319954, 0.0003984124050475657, -0.04441038519144058, 0.01727222464978695, -0.018201425671577454, 0.00012501096352934837, -0.00044154172064736485, -0.004400044679641724, -0.01564612053334713, -0.010617498308420181, -0.007590760011225939, -0.0003868828061968088, 0.021071020513772964, -0.013603243045508862, 0.017367877066135406, 0.023721979930996895, -0.00424289982765913, -0.017067253589630127, -0.012831185944378376, 0.002387912245467305, 0.01579643227159977, -0.012879012152552605, -0.031920820474624634, -0.011881486512720585, -0.004232651554048061, 0.03227610141038895, -0.008595118299126625, -0.017463531345129013, 0.007290135603398085, -0.025553053244948387, -0.03017173334956169, 0.008690770715475082, -0.01977287046611309, 0.028286000713706017, 0.03990102559328079, 0.011020608246326447, 0.0010778058785945177, 0.02480149269104004, -0.008321823552250862, 0.006412176415324211, 0.0018618201138451695, -0.017805149778723717, -0.004270229488611221, 0.011915648356080055, -0.013897035270929337, -0.0030455277301371098, -0.040474943816661835, -0.004796321969479322, 0.01985485851764679, -0.009435499086976051, 0.010043580085039139, -0.0020343372598290443, 0.0065419916063547134, 0.021890904754400253, -0.01545481476932764, 0.009592643938958645, 0.021016361191868782, 0.009838609024882317, 0.005964656360447407, -0.015960410237312317, -0.024241238832473755, -0.011403220705688, -0.012086457572877407, -0.02530708909034729, -0.03197547793388367, 0.0014877479989081621, -0.022683458402752876, 0.004960298538208008, -0.004608431831002235, -0.024514533579349518, -0.008533626794815063, -0.03342394158244133, 0.04148613288998604, -0.012660376727581024, -0.0003578452451620251, 0.028313329443335533, -0.004027680493891239, -0.01586475595831871, -0.011601359583437443, 0.03254939615726471, 0.032002806663513184, -0.018338073045015335, 0.014675924554467201, -0.018269749358296394, 0.011239243671298027, -0.0034623020328581333, 0.00769324554130435, -0.007440447807312012, 0.011273405514657497, -0.013343613594770432, 0.006928020156919956, -0.01747719570994377, 0.02817668206989765, 0.010535510256886482, -0.006210621912032366, -0.01214111689478159, 0.004977379459887743, 0.0026407099794596434, -0.000610642833635211, -0.011847324669361115, -0.014757913537323475, -0.0005636702990159392, 0.001706383773125708, -0.0006294318591244519, 0.017682166770100594, -0.007590760011225939, -0.01342560164630413, 0.01703992299735546, -0.03107360564172268, 0.009066550992429256, 0.1968814879655838, -0.02596299536526203, 0.0028832589741796255, 0.01690327562391758, -0.01427964773029089, 0.010433024726808071, 0.01969088241457939, -0.006419009063392878, -0.0048885587602853775, -0.0047109173610806465, -0.007549765985459089, 0.028422648087143898, -0.0006405344465747476, 0.0053941537626087666, 0.014744248241186142, -0.0017917882651090622, -0.038479890674352646, 0.006746962666511536, 0.00044965517008677125, -0.05739188566803932, 0.011553533375263214, -0.011526203714311123, -0.004861229099333286, -0.007310633081942797, 0.014908225275576115, -0.0049842121079564095, -0.017682166770100594, -0.00841064378619194, 0.03386121243238449, -0.004854396916925907, -0.02797171100974083, -0.008998227305710316, -0.009633637964725494, -0.009982088580727577, 0.0009292019531130791, 0.005233593285083771, 0.024883480742573738, 0.006453170906752348, 0.016056062653660774, -0.015290837734937668, -0.0062789455987513065, -0.012018133886158466, -0.006313107442110777, -0.011847324669361115, -0.01434797141700983, 0.025102118030190468, -0.02552572451531887, -0.014826237224042416, -0.01572810858488083, 0.015468479134142399, -0.02480149269104004, 0.01734054833650589, 0.051160767674446106, 0.007454112637788057, -0.005687945522367954, -0.003935443703085184, -0.0012264099204912782, 0.011533035896718502, -0.0030489438213407993, -0.00558887654915452, -0.00951748713850975, 0.02163127437233925, -0.0043829637579619884, 0.016916941851377487, -0.028969237580895424, 0.009756620042026043, -0.0026817042380571365, -0.023066071793437004, 0.029461167752742767, -0.02426856756210327, 0.006073974538594484, -0.0008207380888052285, -0.010132400318980217, 0.004065258428454399, -0.007775234058499336, 0.0045606051571667194, 0.022273516282439232, -0.0189529862254858, 0.022341839969158173, -0.01013923343271017, 0.022929424419999123, -0.01003674790263176, -0.001090616569854319, 0.0036792296450585127, 0.005469310097396374, -0.025881007313728333, 0.0010257090907543898, -0.02368098497390747, -0.017094582319259644, 0.005582043901085854, -0.027575433254241943, -0.025949331000447273, 0.01725856028497219, -0.016261033713817596, -0.009052886627614498, -0.005011541303247213, 0.02183624543249607, 0.006289193872362375, -0.0011734591098502278, 0.007542933337390423, -0.0001602403644938022, -0.008499464951455593, 0.028449976816773415, 0.01858403906226158, -0.018802674487233162, 0.002727822633460164, 0.01235292013734579, 0.0043248883448541164, 0.014566606841981411, -0.0061286333948373795, 0.03602024167776108, -0.013815046288073063, -0.016124386340379715, -0.020114488899707794, 0.01947224698960781, 0.021234996616840363, -0.008212505839765072, -0.013849208131432533, -0.001641476177610457, 0.015331831760704517, 0.02530708909034729, -0.018105773255228996, -0.002791021950542927, -2.319268423889298e-05, 0.006056893616914749, -0.008909407071769238, -0.021289655938744545, 0.0228884294629097, 0.006572737358510494, -0.009305683895945549, 0.03550098091363907, -0.03867119923233986, 0.004451287444680929, -0.006405344232916832, -0.01969088241457939, 0.03060900606215, 0.003955940715968609, -0.021194003522396088, 0.03697677329182625, -0.012858514674007893, -0.0074814422987401485, -0.007255974225699902, 0.011983972042798996, 0.024664845317602158, 0.006101303733885288, 0.012879012152552605, 0.015618791803717613, -0.01858403906226158, 0.01883000321686268, -0.014088341034948826, -0.02124866284430027, 0.007221812382340431, 0.003935443703085184, -0.005783598870038986, 0.010228053666651249, -0.013459763489663601, -0.031538207083940506, -0.02139897458255291, 0.014662260189652443, 0.023489678278565407, -0.03446245938539505, 0.012011301703751087, 0.027575433254241943, 0.005045703146606684, -0.027110833674669266, -0.0064565869979560375, -0.17436201870441437, 0.02398160845041275, 0.021166672930121422, -0.002401577075943351, 0.017805149778723717, 0.026468589901924133, 0.021016361191868782, 0.018652362748980522, -0.01579643227159977, -0.00940816942602396, 0.017900802195072174, 0.022478487342596054, -0.01688961125910282, -0.019007645547389984, 0.0019113547168672085, 0.013794549740850925, -0.021234996616840363, 0.035173024982213974, 0.025990324094891548, 0.012093289755284786, 0.0028952155262231827, -0.0018703605746850371, 0.014908225275576115, -0.0015765686985105276, 0.0209617018699646, 0.008144182153046131, -0.008895741775631905, 0.031401559710502625, 0.005906581413000822, -0.00851996149867773, -0.020456107333302498, 0.02553938888013363, 0.00841747596859932, -0.02523876540362835, 0.01637035235762596, 0.006319939624518156, 0.01033053919672966, -0.014812571927905083, 0.006524910684674978, 0.02559404820203781, 0.009708793833851814, -0.006483916658908129, 0.015372826717793941, 0.002498938236385584, -0.0034810910001397133, 0.02715182676911354, -0.008014366962015629, -0.008786424063146114, 0.011020608246326447, -0.014115670695900917, 0.010877128690481186, 0.0012938795844092965, 0.008690770715475082, 0.007173985708504915, 0.03536433354020119, 0.01445728912949562, 0.020784061402082443, 0.006531742867082357, 0.004400044679641724, -0.028422648087143898, -0.002604840090498328, -0.007501939311623573, 0.01220944058150053, -0.02965247444808483, 0.006101303733885288, -0.004611847922205925, -0.020920708775520325, 0.01158086210489273, -0.019526906311511993, 0.013965358957648277, 0.001306690275669098, 0.0018771928735077381, 0.024897146970033646, -0.002777357352897525, -0.0001142286419053562, -0.004673338960856199, -0.03377922251820564, 0.027930717915296555, -0.006142298225313425, -0.02500646375119686, -0.03580160439014435, 0.04451970383524895, -0.006261864677071571, -0.022478487342596054, -0.013131809420883656, 0.015878422185778618, -0.006439506076276302, -0.01460760086774826, -0.02332570217549801, 0.008622447028756142, 0.008841083385050297, -0.012038631364703178, -0.010344203561544418, 0.000452644337201491, 0.024528197944164276, 0.017654836177825928, 0.013336780481040478, -0.019513240084052086, 0.012305092997848988, -0.018256084993481636, 0.0030421114061027765, -0.008567788638174534, 0.000741311872843653, 0.02523876540362835, 0.01342560164630413, 0.012065960094332695, -0.0041574956849217415, 0.014224988408386707, 0.02184990979731083, 0.0026219210121780634, -0.0111094294115901, 0.017108246684074402, 0.00662056403234601, -0.0030882300343364477, 0.004338553175330162, 0.0405842624604702, -0.012564723379909992, -0.011492041870951653, 0.015072202309966087, -0.017149241641163826, 0.06695719808340073, -0.004680171608924866, -0.008841083385050297, -0.007372124120593071, -0.009660967625677586, -0.022902095690369606, -0.12112420797348022, -0.002560429507866502, 0.011601359583437443, 0.028067365288734436, 0.0012742364779114723, 0.010508180595934391, 0.00044538493966683745, 0.008656608872115612, 0.001228117966093123, 0.0021351147443056107, -0.015960410237312317, -0.029925769194960594, 0.018789010122418404, -0.0023622908629477024, 0.013309451751410961, -0.03451712056994438, 0.0020257967989891768, -0.022410163655877113, 0.002934501739218831, 0.027493445202708244, -0.008294493891298771, -0.02051076665520668, 0.02243749424815178, -0.015851091593503952, 0.022300846874713898, 0.008895741775631905, -0.03047235868871212, 0.01801012083888054, 0.030718322843313217, 0.007836725562810898, 0.0016269574407488108, -0.004833899904042482, 0.02103002555668354, -0.008171510882675648, -0.008096355013549328, -0.018338073045015335, -0.04066624864935875, -0.003469134448096156, 0.018556708469986916, -0.02406359650194645, 0.02568970061838627, -0.011041105724871159, 0.02133065089583397, -0.016547992825508118, 0.010562839917838573, 0.004376131109893322, -0.025211434811353683, -0.0019250194309279323, 0.005722107365727425, -0.021945564076304436, -0.029269861057400703, 0.010665325447916985, -0.04331720992922783, 0.0004663090512622148, 0.026167966425418854, -0.006473667919635773, 0.039873696863651276, 0.009647302329540253, -0.012838018126785755, -0.005390737671405077, -0.004997876472771168, 0.0038944492116570473, -0.002782481489703059, 0.02701517939567566, 0.012838018126785755, -0.0035391661804169416, -0.02044244296848774, -0.014375301077961922, 0.02597665973007679, 0.015413820743560791, -0.015960410237312317, 0.012045463547110558, -0.038261257112026215, 0.011888318695127964, -0.016042398288846016, 0.0014091756893321872, -0.012913173995912075, -0.008636112324893475, 0.0066820550709962845, -0.006179876159876585, 0.0032897847704589367, -0.020866049453616142, 0.00017539967666380107, 0.00019269410404376686, 0.026208961382508278, 0.018789010122418404, 0.013384607620537281, -0.022546811029314995, 0.0074609448201954365, -0.019868524745106697, 0.001035957713611424, 0.00036382355028763413, -0.0020736234728246927, -0.035828933119773865, 0.013056653551757336, 0.02398160845041275, 0.009790781885385513, -0.008478967472910881, -0.017873473465442657, 0.0047484952956438065, -0.015700779855251312, 0.0123255904763937, -0.06509879231452942, 0.031319569796323776, 0.014443624764680862, 0.004727998282760382, 0.00128277693875134, -0.013664734549820423, 0.019021309912204742, -0.02470584027469158, -0.004048177506774664, -0.016493335366249084, -0.015618791803717613, 0.02243749424815178, -0.007823060266673565, -0.004823651164770126, -0.011860989965498447, 0.0014954343205317855, 0.002309340052306652, -0.016916941851377487, -0.004813402891159058, -0.019280940294265747, 0.006562488619238138, -0.0027619844768196344, 0.028012705966830254, -0.004495697561651468, -0.0294338371604681, 0.0037714666686952114, 0.001967721851542592, 0.017764154821634293, -0.0082603320479393, -0.021959228441119194, 0.005226761102676392, -0.029105884954333305, -0.01799645461142063, 0.015413820743560791, 0.006743546575307846, 0.012065960094332695, -0.01560512650758028, -0.0071056620217859745, 0.007529268506914377, 0.04020164906978607, -0.01941758766770363, -0.025430070236325264, 0.008294493891298771, -0.019362928345799446, 0.02242382988333702, 0.029488496482372284, -0.006401928141713142, 0.004423957783728838, 0.014470953494310379, -0.010357868857681751, 0.007016841322183609, 0.023271042853593826, -0.0028388486243784428, -0.024623852223157883, -0.00925785768777132, -0.01829707995057106, 0.019513240084052086, -0.01836540363729, -0.0024049931671470404, -0.03716807812452316, 0.011560365557670593, -0.00911437813192606, 0.017887137830257416, -0.0021197418682277203, 0.015058537013828754, -0.006302858702838421, -0.027479780837893486, -0.00020699937886092812, -0.009210031479597092, -0.0057255239225924015, 0.015919415280222893, 0.0017473779153078794, 0.0049261366948485374, 0.007344794925302267, 0.015755439177155495, 0.018406396731734276, -0.002855929546058178, 0.005650367587804794, -0.028613954782485962, 0.0037885475903749466, 0.0033991027157753706, -0.023134395480155945, -0.025580383837223053, 0.01948591135442257, 0.034790415316820145, 0.0008967482135631144, 0.0153864910826087, 0.01615171693265438, -0.025184106081724167, 0.013343613594770432, 0.018911993131041527, -0.01121874712407589, -0.0017917882651090622, -0.005110610742121935, 0.01675296388566494, 0.01742253638803959, -0.00716032087802887, -0.00929201953113079, 0.029242532327771187, 0.03298667073249817, -0.012865347787737846, 0.02057909034192562, 0.008834251202642918, -0.010487684048712254, -0.00665814196690917, -0.004311223514378071, -0.02353067323565483, -0.027110833674669266, 0.0038056285120546818, 0.02441888116300106, 0.003839790355414152, 0.007905049249529839, 0.015755439177155495, 0.013657902367413044, -0.01118458528071642, -0.004348801914602518, 0.014525612816214561, -0.01453927718102932, -0.010651660151779652, 0.03970971703529358, 0.013917531818151474, 0.03222144395112991, 0.016192710027098656, 0.00261850468814373, 0.021453633904457092, 0.02324371412396431, -0.0007216687663458288, 0.022970419377088547, 0.004328304436057806, 0.016588987782597542, -0.004362466279417276, -0.005769934039562941, -0.02817668206989765, 0.0007272200891748071, 0.002801270456984639, -0.025361746549606323, -0.009503822773694992, 0.004362466279417276, -0.015318167395889759, 0.031401559710502625, 0.00937400758266449, -0.01545481476932764, -0.007276471238583326, 0.0008668566006235778, 0.03274070471525192, 0.002249556826427579, 0.006951933726668358, -0.000582032254897058, -0.02183624543249607, 0.0020565425511449575, -0.020305795595049858, 0.021125679835677147, -0.014361635781824589, -0.016998929902911186, 0.01132806483656168, -0.014020017348229885, 0.035610299557447433, -0.03550098091363907, -0.010467186570167542, 0.028313329443335533, -0.0037168078124523163, 0.02685120329260826, 0.0011674807174131274, -0.02951582707464695, 0.0032744118943810463, 0.022806441411376, 0.008465303108096123, 0.008813753724098206, -0.0469520278275013, 0.003580160439014435, 0.010385198518633842, -0.009797614999115467, -0.005476142279803753, 0.02103002555668354, 0.011129925958812237, -0.0076112570241093636, -0.0294338371604681, 0.003706559306010604, 0.004816818982362747, -0.015099531970918179, 0.026386601850390434, -0.018570374697446823, -0.022027552127838135, 0.029105884954333305, 0.0004616118094418198, -0.02678287960588932, 0.008137349039316177, -0.012940503656864166], "8db11bd6-7d27-4424-b353-23f702906949": [-0.007734316401183605, -0.02678816393017769, -0.012266305275261402, 0.019144346937537193, -0.007873548194766045, 0.041546713560819626, 0.00029042846290394664, -0.024337686598300934, -0.01138914655894041, -0.026871701702475548, 0.026370469480752945, 0.005788554437458515, 0.022806139662861824, 0.007483699358999729, 0.002753305248916149, 0.011152452789247036, 0.036645762622356415, -0.013463697396218777, 0.04073917120695114, -0.010170869529247284, -0.0041491021402180195, -0.0014575810637325048, -0.003482530824840069, 0.006035690661519766, 0.008729822933673859, 0.029934797435998917, 0.02275044657289982, -0.007769124582409859, 0.013421928510069847, -0.0032736833672970533, -0.018114034086465836, -0.0017047171713784337, 0.01613694429397583, 0.0019039923790842295, -0.02295929379761219, -0.011166376061737537, 0.0056145149283111095, -0.028500713407993317, 0.01814188063144684, -0.012356806546449661, 0.006234095897525549, -0.006174922455102205, -0.01446616556495428, -0.0003100078902207315, -0.027136242017149925, 0.02440730296075344, 0.0129624642431736, -0.018573498353362083, -0.019353196024894714, 0.018100110813975334, 0.0374533049762249, -0.00016838323790580034, -0.028083017095923424, 0.004483258351683617, -0.019088655710220337, 0.004991453606635332, 0.004866145085543394, 0.02237452194094658, -0.012412498705089092, 0.020049354061484337, -0.012182766571640968, 0.005301244091242552, -0.0006448164349421859, 0.014299087226390839, -0.03497498109936714, -0.011061952449381351, 0.005012338515371084, -0.01085310522466898, -0.015774942934513092, -0.025103460997343063, 0.040126554667949677, 0.014229471795260906, 0.0015106630744412541, 0.005938228685408831, 0.03831654042005539, -0.02873740717768669, -0.024546533823013306, -0.009718366898596287, -0.027136242017149925, -0.004497181158512831, -0.002307764021679759, -0.03196758031845093, -0.028988022357225418, 0.004678182303905487, 0.023655451834201813, -0.012036573141813278, 0.02248590625822544, 0.019381040707230568, -0.02419845573604107, -0.02536800131201744, 0.007922278717160225, 0.01796087808907032, 0.011556224897503853, 0.013672544620931149, -0.0017160297138616443, 0.019756967201828957, -0.025576848536729813, 0.014842091128230095, 0.0002120018907589838, -0.02545154094696045, -0.03082588128745556, 0.0033520013093948364, -0.018601344898343086, 0.0002645400818437338, -0.029712026938796043, 0.011222068220376968, -0.00260537164285779, 0.002044964348897338, 0.010310101322829723, -0.01239857543259859, -0.0011016702046617866, 0.02247198298573494, -0.029795566573739052, -0.05001199617981911, -0.015218015760183334, -0.023794684559106827, 0.028848791494965553, 0.0010694728698581457, -0.012447306886315346, -0.00974621344357729, 0.0035521467216312885, 0.014020624570548534, 0.0007879639742895961, -0.005464841146022081, 0.004180429503321648, -0.00730269867926836, 0.01397189311683178, -0.03007403016090393, -0.009189287200570107, -0.008994362317025661, 0.04497181251645088, 0.01958988979458809, 0.019158270210027695, -0.004859183449298143, -0.02178974822163582, 0.034445904195308685, -0.029739873483777046, 0.007984933443367481, -0.014675012789666653, -0.02287575602531433, 0.017612800002098083, 0.008548821322619915, -0.010741719044744968, -0.019631657749414444, -0.015524325892329216, 0.02873740717768669, 0.018851961940526962, 0.01431301049888134, -0.022820062935352325, -0.0015750577440485358, 0.03611668199300766, -0.007741278037428856, 0.021399900317192078, -0.011291684582829475, 0.017515337094664574, -0.014208586886525154, 0.005349975079298019, -0.010950567200779915, -0.0037975425366312265, 0.00040594718302600086, 0.013616852462291718, 0.01970127411186695, 0.0220821350812912, -0.010386678390204906, -0.00015500394511036575, 0.027971632778644562, 0.01691664196550846, -0.0006391601637005806, -0.026732470840215683, -0.01234288327395916, 0.0027324205730110407, 0.010922720655798912, -0.02045312523841858, 0.002222484676167369, -0.013150426559150219, 0.017417876049876213, 0.038093771785497665, 0.02862602099776268, -0.008973478339612484, -0.00022364078904502094, -0.03514206036925316, -0.014034546911716461, 0.029906952753663063, 0.005555341485887766, -0.0042744106613099575, -0.010024677030742168, -0.011876457370817661, -0.010637295432388783, 0.006787541322410107, 0.013658622279763222, 0.006989427376538515, 0.007163466885685921, -0.02758178301155567, -0.012690962292253971, -0.6344506740570068, -0.0326358899474144, -0.020244278013706207, -0.01766849309206009, -0.01872665248811245, 0.0017682415200397372, 0.006717925425618887, 0.0035712909884750843, -0.016262253746390343, -0.015872403979301453, -0.014285163953900337, -0.0015341583639383316, -0.005851208698004484, -0.01758495345711708, -0.016735641285777092, -0.0021946383640170097, 0.011354338377714157, -0.031466346234083176, 0.0017839050851762295, -0.016345791518688202, -0.01748749054968357, 0.009022208862006664, -0.0013522871304303408, -0.009711405262351036, -0.009224094450473785, 0.006536924745887518, 0.005983478855341673, 0.0015515623381361365, 0.0074976226314902306, 0.037982385605573654, -0.0221099816262722, 0.012245421297848225, 0.018601344898343086, 0.020968282595276833, 0.038678545504808426, -0.005645842291414738, -0.015385094098746777, 0.02411491610109806, 0.010595526546239853, -0.00023734640853945166, -0.031048651784658432, -0.013227003626525402, 0.022123904898762703, 0.016666024923324585, 0.006230615079402924, 0.006268903613090515, 0.017250796779990196, -0.018782345578074455, 0.006286307703703642, 0.01739002950489521, 0.012085304595530033, 0.014006701298058033, -0.02873740717768669, -0.016763487830758095, 0.008012779988348484, -0.010143023915588856, 0.02229098230600357, -0.012523883953690529, -0.0070033506490290165, 0.0019039923790842295, 0.00583728589117527, 0.023836452513933182, -0.005882536061108112, 0.005642361473292112, -0.010943605564534664, 0.01988227479159832, -0.0072957370430231094, 0.006982465740293264, 0.03441805765032768, -0.0124960383400321, 0.018684882670640945, 0.017417876049876213, 0.0011295165168121457, -0.009523442946374416, 0.014591474086046219, 0.007553315255790949, 0.02623123675584793, -0.02056450955569744, 0.0012104448396712542, 0.03238527476787567, 0.008520974777638912, -0.01651287078857422, -0.030213261023163795, -0.02652362361550331, 0.01564963348209858, -0.013811776414513588, -0.0013844844652339816, 0.028222249820828438, -0.008444397710263729, 0.0006678766803815961, -0.004072525072842836, 0.023488374426960945, 0.009913291782140732, 0.011124606244266033, 0.03349912911653519, -0.0037627345882356167, -0.004570277873426676, -0.002027560491114855, 0.013275735080242157, -0.009224094450473785, -0.008472244255244732, -0.008047587238252163, 0.014299087226390839, -0.01460539735853672, 0.007574200164526701, -0.0163318682461977, -0.0403771698474884, -0.012328960001468658, 0.047589369118213654, -0.027136242017149925, -0.005071511957794428, -0.013477620668709278, -0.015635710209608078, 0.010010753758251667, 0.022235289216041565, -0.017250796779990196, 0.02237452194094658, -0.009718366898596287, 0.023683298379182816, -0.0016011636471375823, 0.011319531127810478, -0.009906330145895481, 0.021970748901367188, -0.008764630183577538, 0.03188404068350792, 0.04502750560641289, 0.004521546885371208, -0.01978481374680996, -0.009335479699075222, -0.002255552215501666, -0.009189287200570107, 0.006958100013434887, 0.015259785577654839, 0.018768422305583954, 0.00816593412309885, -0.017306489869952202, 0.011479646898806095, 0.010463256388902664, 0.019339272752404213, -0.01691664196550846, -0.013296619988977909, -0.0032719429582357407, 0.014208586886525154, -0.007650777697563171, 0.0010320544242858887, -0.024087069556117058, -0.028988022357225418, -0.01595594361424446, -0.042131487280130386, -0.005698054097592831, -0.01804441772401333, -0.009523442946374416, 0.0011443098774179816, 0.003668753197416663, 0.012071381323039532, -0.007845701649785042, -0.018211495131254196, 0.014424395747482777, 0.018127957358956337, -0.024421226233243942, 0.015552171505987644, 0.009767098352313042, -0.015009168535470963, 0.0032545391004532576, 0.019673427566885948, -0.026342622935771942, -0.009537366218864918, 0.026064159348607063, -0.0007226991001516581, -0.033749744296073914, 0.013895316049456596, -0.01623440720140934, 0.005746785085648298, 0.05332570895552635, -0.0283197108656168, -0.009822790510952473, -0.010860065929591656, -0.01363773737102747, -0.010324024595320225, 0.010289216414093971, 3.280237024227972e-07, 0.010658180341124535, -0.008465282618999481, -0.013756084255874157, 0.01833680458366871, 0.0030369895976036787, -0.010317062959074974, -0.002095435978844762, -0.0003078324079979211, 0.030909419059753418, 0.006519520655274391, 0.003807984758168459, 0.015106630511581898, 0.0006744031561538577, 0.005468321964144707, -0.0050401845946908, 0.020494895055890083, 0.030909419059753418, 0.003975062631070614, 0.022040365263819695, 0.018030494451522827, -0.00782481674104929, 0.02554900199174881, -0.008423512801527977, 0.005200300831347704, -0.03533698618412018, 0.004424084909260273, 0.0015324180712923408, 0.031048651784658432, -0.014842091128230095, 0.009620904922485352, -0.03614452853798866, -0.011249914765357971, -0.00480697164312005, 0.009231056086719036, 0.028876638039946556, 0.007191312965005636, 0.015176246874034405, -0.03188404068350792, 0.007212197873741388, 0.008834246546030045, -0.010456294752657413, 0.01248907670378685, -0.009975945577025414, -0.01901903934776783, -0.024713613092899323, 0.004232641309499741, 0.03995947539806366, 0.010846143588423729, -0.00010888347605941817, 0.025632541626691818, -0.0012783203274011612, -0.00771343195810914, 0.013338388875126839, 0.004239602945744991, -0.002307764021679759, 0.019673427566885948, -0.013094733469188213, 0.0413239449262619, -0.035587601363658905, 0.004737355746328831, 0.00036396016366779804, 0.03216250240802765, -0.017557106912136078, -0.026440083980560303, 0.0029621527064591646, 0.001605514669790864, -0.00045424315612763166, 0.013944046571850777, 0.038957007229328156, -0.0030944228637963533, 0.0021859363187104464, -0.008360859006643295, -0.0064603472128510475, 0.01680525578558445, -0.034250978380441666, 0.011319531127810478, 0.02084297314286232, 0.001712548895739019, 0.02275044657289982, 0.0086393216624856, 0.006143595091998577, 0.02517307735979557, 0.0035817334428429604, 0.060370828956365585, -0.0017560587730258703, 0.011201184242963791, 0.006905888207256794, -0.005913862958550453, -0.022917523980140686, -0.02178974822163582, -0.002701093442738056, 0.015788866207003593, 0.008284281007945538, 0.012837155722081661, 0.0069406963884830475, 0.01531547773629427, -0.014842091128230095, 0.004260487388819456, -0.0007305308827199042, -0.012120112776756287, -0.018615268170833588, 0.025966696441173553, -0.0010572901228442788, -0.0015411200001835823, -0.01989619806408882, -0.025395847856998444, 0.007957086898386478, -0.02053666301071644, 0.03349912911653519, -0.029517102986574173, -0.0040237936191260815, 0.03224604204297066, -0.008367820642888546, -0.0008754188311286271, 0.017557106912136078, 0.010992336086928844, -0.0026488816365599632, 0.028375403955578804, 0.0060322098433971405, -0.0039820242673158646, 0.01330358162522316, -0.023182064294815063, 0.016387561336159706, 0.020689819008111954, -0.009196248836815357, -0.004250045400112867, -0.013233965262770653, -0.0011173337697982788, -0.023766838014125824, -0.008653244934976101, -0.012440345250070095, 0.0004699067212641239, -0.003543444676324725, 0.004786086734384298, -0.00010779572767205536, -0.022054288536310196, 0.018183650448918343, 0.028069093823432922, 0.001410590368323028, -0.00385671597905457, -0.030881572514772415, -0.02457438036799431, 0.002123282290995121, 0.10058092325925827, 0.0283197108656168, -0.022402368485927582, -0.009342441335320473, 0.008068472146987915, 0.016081251204013824, -0.0201607383787632, -0.028124786913394928, 0.020425278693437576, 0.001474984921514988, 0.017626723274588585, -0.01833680458366871, 0.02277829311788082, -0.006429019849747419, 0.013240926899015903, -0.004493700340390205, -0.026732470840215683, 0.01315738819539547, -0.009968983940780163, 0.0060948641039431095, -0.01670779474079609, 0.020717665553092957, 0.010470218025147915, 0.017529260367155075, -0.028653867542743683, -0.018016571179032326, 0.019353196024894714, 0.0011242952896282077, 0.015329401008784771, -0.014675012789666653, -0.01807226426899433, 0.02430984005331993, 0.01997973769903183, 0.02362760528922081, -0.0259249284863472, -0.00641161622479558, 0.006136633455753326, 0.01958988979458809, 0.001022482174448669, 0.0015898511046543717, 0.029182948172092438, 0.016874872148036957, 0.01498132199048996, -0.02191505767405033, 0.014953476376831532, 0.0034146555699408054, -0.011500531807541847, -0.006658752448856831, -0.020731588825583458, -0.005102838855236769, 0.049427226185798645, -0.017710262909531593, -0.002835103776305914, -0.0075393919833004475, 0.024254148826003075, 0.011980880983173847, -0.009593058377504349, -0.004239602945744991, -0.01797480136156082, 0.019854428246617317, -0.007859624922275543, 0.00994809903204441, 0.03792669251561165, -0.005823362618684769, -0.01932534947991371, -0.01584455743432045, -0.019088655710220337, -0.01864311471581459, -0.008486167527735233, 0.01642933115363121, -0.01450793445110321, -0.0096000200137496, -0.01282323244959116, -0.003080499591305852, 0.013317504897713661, 0.0013897055760025978, 0.01651287078857422, -0.008360859006643295, 0.0230567567050457, -0.010003792122006416, -0.00470602884888649, -0.03912408649921417, 0.019186116755008698, -0.007595085073262453, -0.01804441772401333, -0.0054857260547578335, 0.0026036312337964773, 0.026551470160484314, -0.027637476101517677, 0.011152452789247036, -0.013609890826046467, 0.024170609191060066, 0.0055379378609359264, -0.01748749054968357, 0.0019005115609616041, -0.006603059358894825, -0.011611917056143284, -0.01652679406106472, -0.002582746557891369, -0.002165051642805338, 0.0032197311520576477, -0.0422707200050354, -0.005524014588445425, -0.01253084558993578, 0.012189728207886219, -0.003950697369873524, 0.009669636376202106, 0.014215548522770405, -0.017362182959914207, -0.022040365263819695, 0.01737610623240471, -0.030129723250865936, -0.010205677710473537, 0.0032667219638824463, 0.01248907670378685, -0.011368261650204659, 0.01786341704428196, -0.0012496038107201457, 0.009210172109305859, -0.002535755978897214, 0.004594643600285053, -0.030408184975385666, 0.0005630178493447602, 0.004229160491377115, -0.03753684461116791, -0.004410161636769772, 0.00980190560221672, -0.03035249374806881, 0.023404834792017937, 0.0068258303217589855, 0.0020414835307747126, 0.008959555067121983, 0.0002251636324217543, 0.004476296715438366, -0.040210090577602386, -0.0009606981766410172, -0.01493955310434103, 0.002328648930415511, -0.022123904898762703, 0.008152011781930923, -0.010337947867810726, -0.01814188063144684, 0.005370859522372484, -0.01901903934776783, -0.00783177837729454, -0.023084603250026703, -0.010156946256756783, -0.0038393118884414434, 0.007734316401183605, 0.00391588918864727, -0.0050575886853039265, -0.01999366097152233, -0.02517307735979557, -0.012106189504265785, -0.006547366734594107, -0.044052883982658386, -0.011618878692388535, 0.00018698371422942728, 0.023655451834201813, -0.0030491724610328674, 0.026161622256040573, -0.0264261607080698, 0.006902407389134169, 0.009697481989860535, -0.008193780668079853, -0.008339974097907543, -0.015190170146524906, -0.034529440104961395, -0.033387742936611176, -0.021051820367574692, 0.031828347593545914, 0.02190113440155983, 0.006119229830801487, -0.017028026282787323, 0.019367117434740067, 0.03775961697101593, -0.01205049641430378, -0.008534898050129414, -0.018991192802786827, -0.035197753459215164, -0.01815580390393734, -0.003658310743048787, -0.012071381323039532, 0.0059173437766730785, -0.015705326572060585, -0.01711156591773033, 0.07189920544624329, 0.012147958390414715, 0.007957086898386478, -0.03505852073431015, 0.007685585413128138, -0.011806841008365154, 0.011180299334228039, 0.004006389994174242, 0.02756786160171032, -0.017250796779990196, 0.02450476586818695, -0.007253967225551605, -0.005583188030868769, -0.013540275394916534, 0.00043422862654551864, -0.008729822933673859, -0.003473829012364149, -0.017821647226810455, -0.008534898050129414, 0.001757799182087183, -0.016485024243593216, -0.023126371204853058, 0.006049613934010267, -0.02699701115489006, -0.01950635015964508, -0.014480088837444782, 0.0006709223962388933, -0.02411491610109806, -0.021747978404164314, 0.007762162946164608, -0.0030021818820387125, 0.0028664309065788984, -0.025980619713664055, -0.01431301049888134, 0.010330986231565475, -0.00845832098275423, 0.05271309241652489, 0.018768422305583954, 0.02237452194094658, 0.006122710648924112, -0.023307373747229576, 0.0002240758913103491, 0.019046885892748833, 0.0032928278669714928, -0.019367117434740067, 0.018865885213017464, 0.0047652022913098335, -0.015440786257386208, -0.0022416291758418083, -0.024059223011136055, 0.0074349683709442616, -0.02823617309331894, -0.022430213168263435, 0.025381924584507942, -0.0009493856341578066, -0.0030665763188153505, 0.003853235160931945, -0.013122580014169216, -0.028403250500559807, 0.012809309177100658, 0.009321557357907295, 0.021734055131673813, -0.007177390158176422, -0.012920694425702095, -0.02921079471707344, 0.0006165350205264986, 0.017724184319376945, 0.023808607831597328, 0.015774942934513092, -0.016986258327960968, -0.036534376442432404, -0.008326050825417042, -0.03085372783243656, -0.007483699358999729, -0.01874057576060295, 0.01949242688715458, -0.0007949255523271859, 0.013129541650414467, 0.013442812487483025, -0.009962022304534912, 0.0024313321337103844, -0.0024121878668665886, -0.012433383613824844, 0.02585531212389469, -0.0025496790185570717, 0.014083278365433216, 0.010212639346718788, 0.012739692814648151, 0.019367117434740067, 0.013804814778268337, 0.0015533027471974492, 0.005346494261175394, -0.02371114492416382, -0.002782891970127821, 0.003486011642962694, 0.009913291782140732, -0.005652803927659988, 0.0040342360734939575, -0.017264720052480698, -0.016693871468305588, 0.0006713574402965605, 0.0163179449737072, 0.0029621527064591646, -0.049427226185798645, -0.023321297019720078, -0.00033567872014828026, -0.028027325868606567, 0.03503067418932915, -0.017891263589262962, 0.019548119977116585, 0.00036570054362528026, 0.02198467217385769, -0.031661272048950195, 0.024532610550522804, -0.0172925665974617, 0.0010268331971019506, -0.040405016392469406, 0.010115177370607853, 0.018601344898343086, -0.03522560000419617, 0.009586096741259098, -0.026913471519947052, -0.0316891148686409, 0.021204976364970207, 0.01239857543259859, -0.0007087759440764785, -0.007532430812716484, 0.0081589724868536, -0.0005029742023907602, -0.000253880163654685, 0.016025559976696968, -0.009293710812926292, -0.04285549372434616, 0.01836465112864971, 0.03400036320090294, 0.0003311102045699954, 0.011451800353825092, -0.027609629556536674, 0.018211495131254196, 0.013776969164609909, 0.009363326244056225, 0.008228588849306107, -0.03416743874549866, 0.011326491832733154, -0.021358130499720573, 0.02056450955569744, 0.017362182959914207, -0.01651287078857422, -0.015050938352942467, -0.021093590185046196, -0.008514013141393661, 0.008743745274841785, 0.013519390486180782, -0.004824375733733177, 0.031243575736880302, 0.019854428246617317, -0.0038253888487815857, -0.016373638063669205, -0.017933033406734467, -0.000292603945126757, 0.011229029856622219, -0.00487658753991127, -0.03945824131369591, -0.0031205287668854, -0.00980190560221672, 0.030296800658106804, -0.0005882536061108112, -0.013999739661812782, -0.005812920164316893, -0.017821647226810455, -0.015677480027079582, -0.011834687553346157, -0.0013731718063354492, 0.023752914741635323, 0.03297004848718643, 0.00284554623067379, 0.007135620340704918, 0.03113218955695629, -0.024462996050715446, 0.0035921758972108364, -0.0019457618473097682, -0.01041452493518591, -0.03230173513293266, 0.0074976226314902306, -0.003964620176702738, 0.006561290007084608, -0.03330420330166817, 0.010344909504055977, 0.03388897702097893, -0.005840766243636608, -0.006035690661519766, 0.012175804935395718, 0.00039702767389826477, 0.006784060504287481, -0.019534196704626083, -0.014619319699704647, 0.02854248136281967, 0.0068258303217589855, 0.002708055078983307, -0.013233965262770653, -0.016874872148036957, -0.009335479699075222, -0.0006073979311622679, -0.012572615407407284, -0.027038780972361565, 0.011291684582829475, -0.0141598554328084, 0.014424395747482777, -0.022527676075696945, -0.013254850171506405, -0.020898666232824326, -0.030296800658106804, 0.033861130475997925, -0.007205236237496138, -0.00023560599947813898, 0.014326933771371841, 0.014633242972195148, -0.019854428246617317, -0.009718366898596287, 0.022597292438149452, 0.019046885892748833, -0.024824997410178185, 0.005416110157966614, -0.027122318744659424, 0.01334535051137209, -0.010720835067331791, 0.013533313758671284, -0.02027212455868721, 0.009767098352313042, 0.0004942722734995186, 0.01023352425545454, -0.009955060668289661, 0.02056450955569744, 0.005343013443052769, -0.027108395472168922, 0.006390731316059828, -0.007142581976950169, -0.0012765799183398485, 0.00860451441258192, -0.010365794412791729, -0.021358130499720573, -0.0072470055893063545, 0.008973478339612484, 0.00398550508543849, 0.010324024595320225, -0.0292943324893713, -0.005398706067353487, 0.002758526476100087, -0.030018337070941925, 0.004385795909911394, 0.1998252272605896, -0.028458943590521812, 0.008096318691968918, 0.02823617309331894, 0.004570277873426676, 0.029182948172092438, 0.025813542306423187, -0.004347507376223803, -0.012941579334437847, -0.001170415780507028, -0.0091196708381176, 0.02217959612607956, -0.020578432828187943, 0.0057398234494030476, 0.0016559860669076443, -0.019269656389951706, -0.039151933044195175, -0.009196248836815357, -0.013568121008574963, -0.05324217304587364, -0.0026192949153482914, -0.006704002618789673, -0.020592356100678444, -0.005649323109537363, 0.014410472474992275, -0.006373327225446701, -0.020773356780409813, -0.008973478339612484, 0.028180480003356934, -0.008061510510742664, -0.020230354741215706, -0.014828167855739594, -0.010031638666987419, -0.005457879509776831, -0.010644257068634033, 0.009043093770742416, 0.010741719044744968, 0.013408005237579346, -0.0005147219053469598, -0.008903861977159977, 0.018865885213017464, 0.004967087879776955, -0.013094733469188213, 0.012468191795051098, -0.006404654588550329, 0.01652679406106472, -0.018810192123055458, -0.00994113739579916, -0.018462112173438072, 0.021566977724432945, -0.023975685238838196, 0.006978984922170639, 0.04783998429775238, 0.012711847200989723, 0.0056771691888570786, -0.017028026282787323, -0.01138914655894041, 0.009258902631700039, -0.019548119977116585, 0.011159414425492287, -0.026245160028338432, 0.028180480003356934, 0.013178273104131222, 0.024337686598300934, -0.029712026938796043, 0.015621787868440151, -0.004152582958340645, -0.00908486358821392, 0.01412504818290472, -0.01853172853589058, -0.003228433197364211, -0.007476738188415766, -0.01480032131075859, -0.011932149529457092, -0.0100942924618721, 0.0009215392637997866, 0.02948925644159317, -0.02247198298573494, 0.02094043605029583, -0.006784060504287481, 0.011876457370817661, -0.025716079398989677, 0.00033611382241360843, -0.018308958038687706, 0.010101254098117352, -0.02909940853714943, 0.00017034118354786187, -0.018100110813975334, -0.02085689641535282, 0.0025461982004344463, -0.015190170146524906, -0.03369405120611191, 0.003794061718508601, -0.002278177300468087, -0.003731407457962632, -0.01748749054968357, 0.019381040707230568, -0.00034046481596305966, 0.010024677030742168, -0.002615814097225666, -0.009405096061527729, 0.0013696911046281457, 0.014396549202501774, 0.01595594361424446, -0.032802969217300415, -0.0030369895976036787, 0.01893549971282482, 0.012273266911506653, 0.013073849491775036, -0.007483699358999729, 0.021385977044701576, -0.016652101650834084, -0.0014288645470514894, -0.017222952097654343, 0.004612047225236893, 0.0211353600025177, -0.0016890536062419415, -0.008249473758041859, -0.0019039923790842295, 0.011751148849725723, 0.02123282290995121, -0.011305607855319977, -0.012718808837234974, 0.010867027565836906, -0.012022650800645351, -0.006390731316059828, -0.008047587238252163, 0.023697221651673317, 0.014675012789666653, -0.014911706559360027, 0.024630073457956314, -0.05212831869721413, 0.00698594655841589, -0.00898043904453516, -0.020299971103668213, 0.0240313783288002, -0.000802757334895432, -0.01758495345711708, 0.01541294064372778, -0.010163907893002033, 0.007595085073262453, 0.00826339703053236, 0.013874431140720844, -0.0003802763530984521, 0.0008406108827330172, -0.00257056369446218, 0.015886327251791954, -0.02901586890220642, 0.012718808837234974, -0.0022190038580447435, -0.030213261023163795, -0.007469776552170515, 0.0019962333608418703, 0.0007066004909574986, 0.011820764280855656, -0.009258902631700039, -0.02708055078983307, -0.019924044609069824, 0.011138529516756535, 0.03274727612733841, -0.027038780972361565, 0.006112268194556236, 0.027888093143701553, -0.010101254098117352, -0.00994809903204441, -0.009502558037638664, -0.1787734031677246, 0.019186116755008698, 0.00980190560221672, -0.0016968853306025267, 0.021163206547498703, 0.013401043601334095, 0.024518689140677452, -0.003400732297450304, -0.016276177018880844, -0.012461230158805847, 0.020898666232824326, 0.006728367879986763, -0.0422985665500164, -0.02188721112906933, -0.012210613116621971, 0.013595967553555965, -0.020522741600871086, 0.016498947516083717, 0.03642299026250839, 0.025966696441173553, 0.007769124582409859, -0.0033763668034225702, -0.00023647620400879532, 0.003378107212483883, 0.00989240687340498, 0.007936201989650726, 0.0086393216624856, 0.02056450955569744, -0.0006709223962388933, -0.021539131179451942, -0.007546353619545698, 0.02102397382259369, -0.00047991398605518043, -0.03620022162795067, 0.021093590185046196, 0.014758551493287086, -0.0024992076214402914, -0.000870197603944689, 0.013595967553555965, 0.011883419007062912, 0.0051828972063958645, -0.0024191495031118393, 0.02268083021044731, 0.00691633066162467, -0.0003145764349028468, 0.04667044058442116, -0.0012121852487325668, -0.009885445237159729, 0.007998856715857983, -0.023989608511328697, 0.011702417396008968, -0.008548821322619915, 0.014953476376831532, 0.00960698164999485, 0.029823413118720055, 0.012147958390414715, 0.021845441311597824, 0.0024121878668665886, -0.013658622279763222, -0.02430984005331993, -0.0047652022913098335, -0.012837155722081661, 0.012433383613824844, -0.015496479347348213, -0.0220960583537817, -0.013150426559150219, -0.017431799322366714, 0.0031170479487627745, -0.01797480136156082, 0.0060426522977650166, 8.391968003707007e-05, 0.007699508685618639, 0.030686648562550545, -0.01758495345711708, 0.0005247291410341859, -0.008834246546030045, -0.028570327907800674, 0.009488634765148163, -0.01986835151910782, -0.0031797022093087435, -0.037787459790706635, 0.04104548320174217, -0.013937084935605526, -0.00562147656455636, 0.013470659032464027, 0.014480088837444782, -0.0017351740971207619, -0.01949242688715458, -0.017153335735201836, 0.0030596149154007435, 0.018573498353362083, -0.006540405564010143, -0.001254824921488762, -0.004107332788407803, 0.020299971103668213, 0.022360598668456078, 0.02103789709508419, -0.018183650448918343, 0.013554197736084461, -0.002697612624615431, 0.011848610825836658, -0.020787280052900314, -0.018030494451522827, 0.02805517055094242, 0.023321297019720078, 0.0063245962373912334, -0.0023147256579250097, 0.007379275746643543, 0.025980619713664055, 0.0015672259032726288, -0.0033554821275174618, 0.010964490473270416, 0.005684130825102329, -0.009572173468768597, 0.016972335055470467, 0.034835752099752426, -0.005255993455648422, -0.026259083300828934, 0.028013402596116066, -0.01766849309206009, 0.05936836451292038, -0.008360859006643295, -0.014271240681409836, -0.014076316729187965, -0.005436994601041079, -0.027233704924583435, -0.12709061801433563, 0.015440786257386208, 0.018559575080871582, 0.011145491153001785, -0.002558381063863635, 0.011222068220376968, -0.010992336086928844, 0.02181759476661682, -0.004121256060898304, 0.0011008000001311302, -0.012920694425702095, -0.013004233129322529, 0.020341739058494568, 0.0028942772187292576, 0.0259249284863472, -0.03686853125691414, -0.006279346067458391, -0.01541294064372778, -0.0012635269667953253, 0.034724365919828415, -0.00374533049762249, -0.026161622256040573, 0.0124821150675416, -0.017125489190220833, 0.031828347593545914, 0.008910823613405228, -0.035698987543582916, 0.017807723954319954, 0.02410099282860756, 0.009955060668289661, -0.008486167527735233, 0.0014671531971544027, 0.022318828850984573, -0.008089357055723667, 0.0019370599184185266, -0.00783177837729454, -0.026273006573319435, -0.01748749054968357, 0.025145230814814568, -0.03965316712856293, 0.01833680458366871, -0.000800146721303463, 0.01560786459594965, -0.024476919323205948, 0.005088915582746267, -0.006801464594900608, -0.01958988979458809, 0.007755201309919357, 0.0014010181184858084, -0.019937967881560326, -0.027623552829027176, 0.0081589724868536, -0.034334518015384674, -0.022541599348187447, 0.03603314235806465, -0.008681091479957104, 0.029544949531555176, 0.02825009636580944, -0.01748749054968357, -0.0035991373006254435, -0.012140997685492039, 0.016109097748994827, 0.004385795909911394, 0.03906839340925217, 0.007462814915925264, -0.0048000100068748, -0.025395847856998444, -0.021441670134663582, 0.019631657749414444, -0.00993417575955391, -0.010477179661393166, 0.017835570499300957, -0.02611985243856907, 0.02294537052512169, -0.0283336341381073, 0.016276177018880844, -0.00994113739579916, 0.0006095734424889088, 0.01574709638953209, 0.014577550813555717, -0.0032545391004532576, -0.02767924591898918, 0.003922850824892521, -0.012022650800645351, 0.017557106912136078, 0.014744628220796585, 0.014591474086046219, -0.012127074413001537, 0.011173337697982788, -0.027734939008951187, 0.0060008829459548, 0.0283336341381073, -0.011263838037848473, -0.023307373747229576, 0.004051640164107084, 0.049037378281354904, 0.018476035445928574, 0.006484712474048138, -0.00770647032186389, -0.0069929081946611404, -0.025590771809220314, 0.004660778678953648, -0.0614846833050251, 0.02987910620868206, 0.009293710812926292, 0.0038010231219232082, 0.009349402971565723, -0.01166761014610529, 0.007901394739747047, -0.017459645867347717, 0.0003998558095190674, 0.010602488182485104, -0.015176246874034405, 0.03110434301197529, -0.01662425510585308, -0.017306489869952202, -0.025326231494545937, -0.01758495345711708, -0.00827035866677761, -0.017069796100258827, 0.003390289843082428, 0.010797412134706974, 0.012210613116621971, -0.0011860793456435204, 0.025897081941366196, 0.0006918071303516626, -0.016485024243593216, -0.005304724909365177, -0.006972023285925388, 0.0254654623568058, 0.0016438033198937774, -0.02151128463447094, 0.004444969352334738, -0.02862602099776268, -0.006310672964900732, -0.008367820642888546, 0.003137932624667883, 0.012656154111027718, -0.017626723274588585, -0.019924044609069824, 0.0049427226185798645, 0.05599895864725113, -0.014716782607138157, -0.009711405262351036, -0.005249032285064459, -0.03324851021170616, 0.016638178378343582, 0.024643996730446815, -0.017933033406734467, 0.009057017043232918, 0.013380158692598343, -0.01119422260671854, 0.01431301049888134, 0.02873740717768669, -0.0076020462438464165, -0.03469651937484741, -0.00521074328571558, -0.0220821350812912, 0.02258336916565895, -0.01383962295949459, 0.01416681706905365, -0.026189466938376427, 0.0052803591825068, -0.011549263261258602, 0.014911706559360027, -0.00422567967325449, 0.014494011178612709, -0.006954619195312262, -0.007511545903980732, -0.007595085073262453, 0.0033450396731495857, -0.010539833456277847, 0.018517805263400078, -0.0037627345882356167, 0.01480032131075859, -0.007748239673674107, 0.01709764264523983, 0.028876638039946556, -0.012572615407407284, -0.007803932297974825, -0.021692287176847458, 0.01037275604903698, -0.01594202034175396, -0.007184351794421673, -0.02767924591898918, 0.008771591819822788, 0.03795453906059265, -0.0021720132790505886, 0.01349154394119978, 0.0201607383787632, -0.014856013469398022, 0.011646725237369537, 0.006352442782372236, -0.01787734031677246, -6.069628580007702e-05, -0.013749122619628906, 0.004897472448647022, 0.027038780972361565, -0.018670959398150444, 0.008660206571221352, 0.03948608785867691, 0.04463765770196915, -0.007034677546471357, 0.018281111493706703, 0.011834687553346157, -0.018559575080871582, -0.007957086898386478, -0.008381743915379047, -0.014953476376831532, -0.017515337094664574, 0.02198467217385769, 0.03427882492542267, -0.011131567880511284, -0.005457879509776831, 0.027010934427380562, 0.0240035317838192, -0.0063976929523050785, 0.0066900793462991714, 0.0019666466396301985, -0.0283336341381073, -0.007006831467151642, 0.029238639399409294, 0.009244979359209538, 0.03736976534128189, 0.010539833456277847, 0.012670077383518219, 0.009725328534841537, 0.00783177837729454, 0.01335231214761734, 0.03873423486948013, 0.006923292297869921, 0.007386237382888794, -0.0006413356750272214, 0.007629892788827419, -0.031744807958602905, 0.0007431487902067602, 0.0068397531285882, -0.036060988903045654, -0.015928097069263458, -0.002949969843029976, -0.01542686391621828, 0.03163342550396919, 0.0028490270487964153, -0.012433383613824844, 0.0007762162713333964, -0.0005347364349290729, 0.03082588128745556, 0.020397432148456573, 0.006728367879986763, 0.00722612114623189, -0.012301113456487656, 0.007873548194766045, -0.011486608535051346, 0.016206560656428337, -0.015983790159225464, -0.013435850851237774, 0.020787280052900314, -0.007845701649785042, 0.03235742822289467, -0.024741459637880325, -0.014285163953900337, 0.02573000267148018, 0.01560786459594965, 0.020480971783399582, -0.0031570768915116787, -0.007240044418722391, -0.014424395747482777, 0.004664259497076273, -0.0007013792637735605, 0.0038393118884414434, -0.030046183615922928, 0.0024992076214402914, 0.009774059988558292, -0.006937215570360422, -0.013331427238881588, 0.011403069831430912, 0.010665141977369785, 0.0073583913035690784, -0.029628489166498184, 0.009321557357907295, -0.00045902925194241107, -0.012920694425702095, 0.012941579334437847, -0.014702859334647655, -0.019381040707230568, 0.03642299026250839, -0.0012661375803872943, -0.014438319019973278, -0.0001489125716034323, -0.011465723626315594], "3df58f33-ab5b-458c-801a-0495b7bf7f36": [0.0030601290054619312, -0.031670331954956055, -0.0036013307981193066, 0.004807342309504747, -0.0015726591227576137, 0.023612435907125473, -0.007062350399792194, -0.02231622487306595, -0.008271702565252781, -0.025496620684862137, 0.028222674503922462, 0.008298428729176521, 0.027901962399482727, -0.004155895672738552, 0.004483289550989866, -0.001231902395375073, 0.03904671221971512, -0.011485505849123001, 0.041585683822631836, -0.023051191121339798, -0.00738306250423193, -0.001164252171292901, -0.00443985965102911, 0.01087080780416727, -0.018080150708556175, 0.03538524731993675, 0.010396420955657959, -0.01590198092162609, 0.004092421382665634, -0.013309556990861893, -0.01898883655667305, -0.0018557878211140633, 0.0039320653304457664, 0.0039788358844816685, -0.025683702901005745, -0.0006435124087147415, 0.0038819541223347187, -0.03575941175222397, 0.012628043070435524, 0.004419815260916948, -0.006444311235100031, 0.006113576702773571, -0.015674808993935585, 0.012320694513618946, -0.017532268539071083, 0.02428058721125126, 0.0007470757118426263, -0.020739389583468437, -0.019216006621718407, 0.019015561789274216, 0.028917551040649414, -0.019216006621718407, -0.02159462310373783, 0.0018992176046594977, -0.010443191044032574, 0.01197325624525547, 0.0012486061314120889, 0.009835174307227135, -0.014405323192477226, 0.01924273371696472, 0.0039153615944087505, 0.0095144622027874, -0.00011807471310021356, 0.01775943860411644, -0.02168816328048706, -0.012928711250424385, 0.0046336231753230095, -0.004272822290658951, 0.0031352960504591465, -0.02596432715654373, 0.028623566031455994, 0.01858794502913952, -0.00026558979880064726, 0.012053433805704117, 0.030013317242264748, -0.03340752422809601, -0.02124718390405178, -0.021554533392190933, -0.01628950797021389, 0.024467669427394867, -0.001526723732240498, -0.029852962121367455, -0.015554542653262615, 0.012841851450502872, 0.010322924703359604, -0.009113572537899017, 0.017385274171829224, 0.023612435907125473, -0.02330508828163147, -0.03212467208504677, 0.0057160272262990475, 0.024307312443852425, 0.02541644312441349, 0.019550081342458725, 0.0009805107256397605, 0.020097965374588966, -0.003541197394952178, 0.015260555781424046, -0.004202666226774454, -0.027060093358159065, -0.029719332233071327, -0.0009696533088572323, -0.0017338504549115896, -0.001660353853367269, -0.031670331954956055, 0.012273923493921757, -0.00870600063353777, 0.005826272070407867, 0.008605778217315674, -0.00204788101837039, -0.019349636510014534, 0.018093513324856758, -0.017986610531806946, -0.04925605282187462, -0.016944294795393944, -0.02846320904791355, 0.026311764493584633, -0.02174161560833454, -0.023492170497775078, 0.007991079241037369, 0.019950972869992256, 0.019897520542144775, 0.006738297175616026, -0.02334517613053322, -0.0016971020959317684, 0.00033261365024372935, 0.00914698000997305, -0.02291756123304367, -0.010830719023942947, -0.013516683131456375, 0.04222710803151131, 0.011051208712160587, 0.01775943860411644, -0.011799536645412445, -0.03207122161984444, 0.021714890375733376, -0.015768351033329964, -0.0053552258759737015, -0.006247206591069698, -0.018721574917435646, 0.026071229949593544, 0.00318874791264534, 0.003547878935933113, -0.026017777621746063, -0.01996433548629284, 0.014365234412252903, 0.02325163595378399, 0.007797315716743469, -0.026084592565894127, 0.0016169240698218346, 0.016944294795393944, -0.013095748610794544, 0.014164789579808712, 0.0062772734090685844, 0.0006284789997152984, -0.0233986284583807, -0.006450992543250322, -0.009668136946856976, -0.003557901130989194, -0.008198206312954426, 0.011418690904974937, 0.01755899377167225, 0.00868595577776432, -0.03022712655365467, -0.00976167805492878, 0.037015534937381744, 0.0190289244055748, -0.01981734298169613, -0.02497546374797821, 0.007035624235868454, 0.00017225753981620073, 0.03899326175451279, -0.022155869752168655, 0.00011045362043660134, -0.021220458671450615, 0.016570130363106728, 0.038592368364334106, 0.03022712655365467, -0.017746075987815857, 0.009113572537899017, -0.02747434563934803, -0.013991069979965687, 0.011759447865188122, 0.02104673907160759, -0.010436509735882282, -0.025897512212395668, -0.010850762948393822, -0.012020026333630085, 0.0073229288682341576, 0.013155882246792316, 0.02664583921432495, 0.009133616462349892, -0.013924255035817623, -0.005869701504707336, -0.6401416063308716, -0.035011082887649536, -0.01037637609988451, -0.0067583415657281876, -0.006283955182880163, 0.002417034236714244, 0.018387500196695328, 0.01432514563202858, 0.0009228828130289912, 0.004606897477060556, -0.0029532250482589006, 0.003738301806151867, -0.012020026333630085, -0.01344318687915802, -0.027140270918607712, -0.007262795232236385, 0.006641415413469076, -0.03081509843468666, 0.006658119149506092, -0.02550998330116272, -0.02620485983788967, 0.011171475052833557, 0.017492178827524185, 0.003801776096224785, -0.019763890653848648, -0.0016653649508953094, 0.01946990378201008, -0.015086837112903595, 0.0011308445828035474, 0.033487699925899506, -0.0295857023447752, 0.02350553311407566, 0.020685937255620956, 0.023331813514232635, 0.04808010533452034, -0.004312911070883274, -0.005575715564191341, 0.014204878360033035, 0.015888618305325508, 0.013803988695144653, -0.02605786733329296, -0.008311791345477104, 0.030975455418229103, 0.01344318687915802, 0.024801744148135185, 0.007249432150274515, 0.018414225429296494, 0.004610238131135702, 0.00441313348710537, 0.020766116678714752, 0.008619140833616257, 0.007069031707942486, -0.022797293961048126, -0.0004793979460373521, -0.004376385360956192, 0.0020111328922212124, 0.029398620128631592, -0.009928715415298939, 0.005639189854264259, 0.006541192997246981, 0.019509993493556976, 0.021621348336338997, -0.01371044758707285, -0.0021046740002930164, -0.023518895730376244, 0.023572348058223724, -0.0042060068808496, 0.014859666116535664, 0.021474355831742287, -0.015634721145033836, 0.020285047590732574, 0.01084408164024353, 0.013991069979965687, -0.017492178827524185, 0.010149205103516579, -0.0004347153881099075, 0.03821820393204689, -0.026752743870019913, 0.009006667882204056, 0.010957667604088783, 0.016463227570056915, -0.021260546520352364, -0.029264990240335464, -0.022971011698246002, 0.00037562582292594016, -0.011004437692463398, -0.004035628866404295, 0.02183515578508377, 0.0021197074092924595, 0.010603548027575016, 0.0025840718299150467, 0.019015561789274216, 0.016316233202815056, 0.022971011698246002, 0.019216006621718407, 0.00887971930205822, -0.005141417495906353, 0.001810687710531056, 0.026017777621746063, 0.003178725717589259, -0.007864130660891533, -0.028730468824505806, -0.0044331783428788185, -0.03386186435818672, 0.0014983273576945066, -0.01523383054882288, -0.019416451454162598, -0.015113563276827335, 0.0365879200398922, -0.01437859795987606, 0.0032455408945679665, -0.020592397078871727, -0.011445417068898678, -0.009768359363079071, 0.02722044847905636, -0.024374129250645638, 0.043697040528059006, 0.01538082305341959, 0.02688637375831604, -0.0034443156328052282, 0.01683739200234413, -0.007336291950196028, 0.01741200126707554, -0.019937610253691673, 0.02143426612019539, 0.031322892755270004, -0.0035211527720093727, -0.015314008109271526, -0.016209330409765244, -0.017091289162635803, -0.012287287041544914, 0.00522493664175272, 0.025242723524570465, 0.007730500772595406, -0.009581277146935463, -0.01697102189064026, 0.010356332175433636, 0.007797315716743469, 0.01371044758707285, -0.020472129806876183, -0.010109116323292255, 0.0016595186898484826, 0.01673048734664917, -0.000651029113214463, -0.015808438882231712, -0.03840528801083565, -0.016476590186357498, -0.007810678798705339, -0.03661464527249336, 0.0005457954248413444, -0.01590198092162609, -0.008164798840880394, -0.008178161457180977, 0.003554560476914048, 0.015541179105639458, -0.009334061294794083, -0.0027026685420423746, -0.0008159787394106388, 0.006808453239500523, -0.020525582134723663, 0.011592410504817963, 0.01678393967449665, -0.023184821009635925, 0.014685946516692638, 0.031028905883431435, -0.02055230736732483, -0.005929835140705109, 0.029398620128631592, -0.01599552109837532, -0.03359460458159447, 0.00937415100634098, -0.01346991304308176, 0.0014348530676215887, 0.03966141119599342, -0.020672574639320374, 0.010690406896173954, -0.012881940230727196, -0.03447656333446503, -0.018654759973287582, 0.007937626913189888, -0.012434279546141624, 0.016503315418958664, 0.015474364161491394, -0.012233834713697433, 0.024106867611408234, 0.010209338739514351, 0.006427607499063015, 0.014111337251961231, -0.0028129133861511946, 0.037550054490566254, 0.01878838986158371, 0.01775943860411644, 0.008832949213683605, 0.0024738269858062267, 0.013530046679079533, -0.007169254124164581, 0.013329601846635342, 0.018320685252547264, 0.006317362654954195, 0.007904219441115856, 0.005154780577868223, -0.007269477006047964, 0.015915343537926674, -0.00481068342924118, 0.004827387165278196, -0.026071229949593544, 0.0023401968646794558, -0.01717146672308445, 0.03845873847603798, -0.020325137302279472, 0.0014432049356400967, -0.036320656538009644, -0.018681487068533897, -0.00797103438526392, 0.01761244609951973, 0.01476612500846386, 0.0032538927625864744, 0.006494422443211079, -0.024855196475982666, 0.009554550983011723, 0.013623587787151337, -0.011271698400378227, -0.00696880929172039, -0.014458775520324707, -0.010857445187866688, -0.01874830201268196, 0.01167258806526661, 0.046529997140169144, 0.002453782595694065, -0.00672159343957901, 0.02982623688876629, -0.010162568651139736, -0.0029398619662970304, 0.015046748332679272, 0.008311791345477104, 0.006153665482997894, 0.016556767746806145, -0.012153656221926212, 0.01765253394842148, -0.02218259498476982, 0.0008076268713921309, 0.0022316225804388523, 0.01263472530990839, -0.017625808715820312, -0.01639641262590885, 0.011859670281410217, 0.01241423562169075, 0.0032004406675696373, 0.009420921094715595, 0.02640530653297901, -0.0058730426244437695, -0.0040890807285904884, -0.006347429472953081, -0.01717146672308445, 0.005181506741791964, -0.016944294795393944, -0.0013830714160576463, 0.01520710438489914, 0.013396416790783405, 0.02315809391438961, 0.006631392985582352, 0.006287295836955309, 0.01869484968483448, 0.01795988343656063, 0.05478833615779877, -0.01697102189064026, -0.0041358512826263905, 0.015193740837275982, -0.0028279467951506376, -0.026485484093427658, -0.02619149722158909, -0.009173705242574215, 0.021915335208177567, 0.0015409219777211547, 0.008559007197618484, 0.011859670281410217, 0.022102417424321175, -0.0009938738076016307, 0.005659234244376421, -0.008792859502136707, -0.015193740837275982, -0.009507780894637108, 0.022008875384926796, 0.0009379161638207734, -0.0073229288682341576, -0.01123160868883133, -0.0211937315762043, 0.0010798982111737132, -0.02615140937268734, 0.027982139959931374, -0.023425355553627014, 0.01698438450694084, 0.024347402155399323, -0.015447637997567654, 0.0033891932107508183, -0.00650110375136137, 0.019697075709700584, -0.019416451454162598, 0.021220458671450615, -0.006634734105318785, -0.005405337084084749, 0.014565680176019669, -0.028971003368496895, 0.02203560248017311, 0.029131360352039337, -0.016276145353913307, -0.001187637448310852, -0.015073474496603012, 0.009253883734345436, -0.012400872074067593, -0.01219374593347311, -0.021073464304208755, -0.013583499006927013, -0.006106894928961992, 0.0028212652541697025, -0.01329619437456131, -0.014004433527588844, 0.010383058339357376, 0.03236520662903786, -0.009193750098347664, -0.021260546520352364, -0.01874830201268196, -0.027554525062441826, 0.003203781321644783, 0.09108226746320724, 0.02800886705517769, -0.002453782595694065, 0.009534507058560848, 0.01084408164024353, 0.01634296029806137, -0.009821811690926552, -0.02486855909228325, 0.01991088315844536, -0.007483284920454025, 0.016329597681760788, -0.016743849962949753, 0.039474327117204666, -0.009013349190354347, 0.010383058339357376, -0.01623605564236641, -0.020472129806876183, -0.002574049634858966, -0.01069708913564682, 0.009314017370343208, 0.006303999572992325, 0.01197325624525547, 0.022930923849344254, 0.02758125029504299, -0.030574563890695572, -0.026432031765580177, 0.035839591175317764, 0.0039053393993526697, 0.021180368959903717, -0.019416451454162598, -0.024026690050959587, 0.019603533670306206, 0.01790643110871315, 0.02541644312441349, -0.022089052945375443, -0.0008155611576512456, 0.010917577892541885, 0.015180378220975399, 0.00031778906122781336, 0.010757221840322018, 0.010777266696095467, 0.020031150430440903, 0.012915347702801228, -0.02027168497443199, 0.005074602551758289, 0.0019777254201471806, -0.005141417495906353, -0.0034576784819364548, -0.019496630877256393, -0.012040071189403534, 0.054333996027708054, -0.009848537854850292, -0.02394651249051094, -0.006040079984813929, 0.03159015253186226, 0.011211564764380455, -0.007289521396160126, -0.004603556357324123, 0.004169258754700422, 0.0007224376895464957, -0.010209338739514351, 0.009227157570421696, 0.029906414449214935, 0.00026329304091632366, -0.023264998570084572, -0.021527808159589767, -0.019643623381853104, -0.01322269719094038, -0.0379776731133461, 0.012133612297475338, -0.007022261153906584, 0.011224927380681038, -0.01648995280265808, -0.0021130258683115244, 0.006531170569360256, 0.007910901680588722, 0.013623587787151337, -0.00868595577776432, 0.0047438680194318295, -0.01579507626593113, -0.0007069866987876594, -0.042066752910614014, 0.005612463690340519, -0.012354101985692978, -0.022249409928917885, -0.014445412904024124, 0.007242750842124224, 0.010296198539435863, -0.019803978502750397, 0.0029782806523144245, -0.0089331716299057, 0.018280595541000366, 0.008886400610208511, -0.006704889703541994, 0.006628052331507206, 0.0006685680709779263, -0.004048991482704878, 0.0029365213122218847, -0.009861900471150875, -0.003721598070114851, 0.016356322914361954, -0.045407503843307495, -0.0006840190035291016, -0.02840975672006607, 0.00954118836671114, -0.005381952039897442, 0.007463240530341864, 0.024654751643538475, -0.012427598237991333, -0.018040062859654427, 0.022155869752168655, -0.022449854761362076, 0.015714898705482483, 0.0029214879032224417, 0.01147882454097271, 0.01667703501880169, 0.019443178549408913, -0.004162577446550131, 0.011993300169706345, -0.008545644581317902, -0.008672593161463737, -0.03487745299935341, 0.02025832235813141, 0.005736071616411209, -0.023492170497775078, 0.0047271642833948135, 0.011886396445333958, -0.0031286145094782114, 0.03851219266653061, 0.010055663995444775, -4.2333595047239214e-05, 0.012200427241623402, 0.00819152407348156, 0.002518927212804556, -0.044178105890750885, 0.001825721119530499, -0.016797302290797234, 0.001104953815229237, -0.015394186601042747, 0.0020913109183311462, -0.012721584178507328, -0.022449854761362076, -0.003070151200518012, -0.028864098712801933, -0.006143643520772457, -0.025536710396409035, -0.010824037715792656, -0.0009136957232840359, 0.01307570468634367, -0.012327375821769238, 0.0005570704233832657, -0.027795057743787766, -0.00640422198921442, -0.010276153683662415, -0.02306455373764038, -0.036427561193704605, 0.006327384617179632, -0.010810674168169498, 0.034369658678770065, -0.012454324401915073, 0.028276126831769943, -0.008806223049759865, -0.011398646980524063, 0.019202644005417824, -0.006187072955071926, 0.0027494390960782766, -0.015514452941715717, -0.02139417827129364, -0.030440934002399445, -0.00962136685848236, 0.029318442568182945, 0.010363013483583927, 0.01987079344689846, 6.968600246182177e-06, 0.009120253846049309, 0.03963468596339226, -0.01687747985124588, -0.008585733361542225, -0.015060110948979855, -0.042360737919807434, -0.02732735313475132, 0.002455452922731638, -0.009574595838785172, 0.0006836014217697084, -0.019563445821404457, 0.003658123780041933, 0.061202581971883774, 0.01371044758707285, 0.006210458464920521, -0.023639163002371788, 0.0045868526212871075, -0.03910016268491745, 0.00022278641699813306, 0.002149773994460702, 0.03474382311105728, -0.007610233500599861, 0.03813802823424339, -0.012427598237991333, -0.003180396044626832, -0.0045267194509506226, 0.012253879569470882, -0.0024187045637518167, 0.007643640972673893, -0.001653672312386334, -0.03519816696643829, 0.0028479911852627993, -0.009835174307227135, -0.015033384785056114, 0.017131377011537552, -0.0208062045276165, -0.01391089241951704, -0.009995530359447002, -0.009554550983011723, -0.015527816489338875, -0.017919795587658882, 0.004737186711281538, 0.0035378565080463886, 0.011986618861556053, -0.011345194652676582, -0.016249418258666992, 0.005909790750592947, -0.012661450542509556, 0.06050770357251167, 0.029104633256793022, 0.04051664471626282, 0.024120232090353966, -0.020766116678714752, 0.011017801240086555, 0.0005675102584064007, 0.008445421233773232, -0.013042296282947063, 0.007583507802337408, 0.016743849962949753, -0.008031168021261692, -0.01481957733631134, -0.02934516780078411, 0.011398646980524063, -0.03241866081953049, -0.023679252713918686, 0.02404005266726017, -0.002771154046058655, -0.004917587153613567, -0.0030200399924069643, 0.0012060115113854408, -0.033728234469890594, 0.01040310226380825, 0.006775045767426491, 0.013175927102565765, -0.0018040061695501208, 0.002280063461512327, -0.02947879768908024, 0.024160319939255714, 0.02071266435086727, 0.012327375821769238, 0.027100183069705963, -0.012200427241623402, -0.023866333067417145, -0.014672583900392056, -0.010757221840322018, -0.012848532758653164, -0.010616910643875599, 0.020619122311472893, -0.013991069979965687, 0.0015768350567668676, 0.024561209604144096, -0.021501081064343452, 0.00019261524721514434, 0.012187064625322819, 0.0012461006408557296, 0.027394168078899384, 0.005665916018188, 0.00674831960350275, 0.007510011084377766, 0.015634721145033836, 0.028329579159617424, 0.0028914210852235556, 0.0059465388767421246, 0.019737163558602333, -0.013122474774718285, 0.003594649489969015, 0.0021380814723670483, 0.010102435015141964, -0.01167258806526661, -0.01924273371696472, -0.01741200126707554, -0.005532285664230585, 0.0044766077771782875, -0.0031620219815522432, -0.014044522307813168, -0.05564356967806816, -0.0182939600199461, 0.0027845168951898813, -0.010904215276241302, 0.0186013076454401, -0.02374606765806675, 0.020538944751024246, -0.007904219441115856, 0.01751890406012535, -0.029425345361232758, 0.02530953846871853, -0.01523383054882288, -0.00017173554806504399, -0.05019146203994751, 0.007489966694265604, 0.007463240530341864, -0.02130063623189926, 0.0038518873043358326, -0.013630269095301628, -0.026913100853562355, 0.0041358512826263905, 0.02541644312441349, 0.022249409928917885, 0.008478829637169838, 0.021567896008491516, 0.012888622470200062, -0.0031737147364765406, 0.013991069979965687, -0.019977698102593422, -0.031910866498947144, 0.018908657133579254, 0.016516679897904396, 0.008979941718280315, 0.034182578325271606, -0.02683292143046856, 0.029425345361232758, 0.010129161179065704, 0.004967698361724615, 0.029211537912487984, -0.02291756123304367, 0.007356336340308189, -0.01702447421848774, 0.01628950797021389, 0.01766589842736721, -0.011438735760748386, 0.0045267194509506226, -0.02591087482869625, -0.012701540254056454, 0.007262795232236385, 0.019950972869992256, -0.020204870030283928, 0.02027168497443199, 0.019109101966023445, 0.01302893366664648, -0.010984393768012524, -0.007550099864602089, -0.01393761858344078, 0.014164789579808712, -0.00804453156888485, -0.02929171547293663, -0.015728261321783066, -0.0002403253602096811, 0.03041420876979828, 0.011445417068898678, -0.007750545162707567, -0.023585710674524307, -0.009855219163000584, -0.030574563890695572, -0.02198215015232563, 0.005201551131904125, 0.012126930989325047, 0.030200399458408356, 0.004102443810552359, 0.008532281033694744, 0.0387527272105217, -0.03359460458159447, 0.013583499006927013, 0.000309645984089002, -0.02203560248017311, -0.01040310226380825, 0.012948756106197834, -0.007483284920454025, -0.0012895303079858422, -0.027313990518450737, 0.0032305074855685234, 0.022850744426250458, -0.006066806148737669, -0.003731620265170932, 0.017238281667232513, -0.020432040095329285, -0.00013697084796149284, -0.005692641716450453, -0.002166477730497718, 0.018922021612524986, 0.007075713016092777, 0.008532281033694744, -0.015260555781424046, -0.022944286465644836, -0.00011014042684109882, -0.01599552109837532, -0.00380845763720572, -0.018962109461426735, -0.0011358557967469096, -0.012040071189403534, 0.022115780040621758, -0.0215812586247921, -0.014672583900392056, -0.005569033790379763, -0.03311353549361229, 0.041131339967250824, -0.00533518148586154, -0.005572374910116196, 0.03410239890217781, -0.006340747699141502, -0.023812882602214813, 0.007730500772595406, 0.01963026076555252, -0.0028513320721685886, -0.026084592565894127, 0.0057627977803349495, -0.013570135459303856, 0.003738301806151867, -0.010316242463886738, 0.010082390159368515, 0.005896427668631077, 0.0070289429277181625, -0.0023886377457529306, 0.006517807487398386, -0.0208062045276165, 0.020097965374588966, 0.015674808993935585, -0.02458793669939041, -0.003755005542188883, 0.00125111173838377, 0.0072761583141982555, -0.00445322273299098, -0.0016252759378403425, -0.03813802823424339, -0.00421936996281147, 0.0063240439631044865, 0.0021597964223474264, 0.004473267123103142, -0.013262785971164703, -0.003581286408007145, 0.00930065382272005, -0.03546542674303055, 0.009240521118044853, 0.2022625058889389, 0.00035975725040771067, 6.691944145131856e-05, 0.021808430552482605, 0.008946534246206284, 0.021607985720038414, 0.0307081937789917, -0.007122483570128679, -0.01845431514084339, -0.0075434185564517975, -0.014432049356400967, 0.026752743870019913, -0.014899754896759987, 0.002660909201949835, -0.0009696533088572323, -0.006160347256809473, -0.03690863028168678, -0.005231617949903011, -0.01385744009166956, -0.05612463876605034, -0.0047271642833948135, -0.02216923236846924, 0.0019626920111477375, 0.00043304500286467373, 0.01018261257559061, 0.004159236326813698, -0.013189289718866348, -0.01256122812628746, 0.0336480550467968, 0.0031820666044950485, -0.028677016496658325, -0.008812904357910156, -0.014659221284091473, 0.009454328566789627, -0.02178170531988144, -0.0015492738457396626, 0.016249418258666992, 0.014752761460840702, 0.010276153683662415, -0.018962109461426735, -0.0027611316181719303, -0.0013596861390396953, -0.0002255007711937651, 0.010115797631442547, -0.02811577171087265, 0.013750536367297173, -0.026873011142015457, -0.024788381531834602, -0.007991079241037369, 0.020792841911315918, -0.026031142100691795, 0.013363009318709373, 0.04171931371092796, 0.011639180593192577, 0.012033389881253242, -0.010042301379144192, -0.009661455638706684, -0.0014565680176019669, -0.01194653008133173, 0.013055659830570221, -0.01952335610985756, 0.0394476018846035, -0.008873037993907928, 0.015420912764966488, -0.023612435907125473, 0.002525608753785491, -0.0029298397712409496, -0.015020022168755531, 0.010276153683662415, -0.020204870030283928, 0.012614680454134941, -0.010656999424099922, -0.0008088796166703105, 0.006177050992846489, -0.0190289244055748, -0.01197325624525547, 0.02110019139945507, -0.0037416424602270126, 0.014899754896759987, -0.004566808231174946, 0.011939848773181438, -0.01922936923801899, 0.010216020047664642, -0.006240525282919407, -0.017064562067389488, -0.022503307089209557, 0.00761691527441144, -0.024668114259839058, -0.01987079344689846, 0.009414239786565304, -0.01967034861445427, -0.03159015253186226, -0.004613578785210848, -0.0060100131668150425, 0.003212133189663291, -0.008305110037326813, 0.01260799914598465, 0.0019376362906768918, 0.004202666226774454, -0.004657008685171604, -0.003945428412407637, -0.020926471799612045, 0.011826262809336185, 0.004473267123103142, -0.03399549424648285, 0.005265025421977043, 0.012287287041544914, 0.023478806018829346, 0.0033324004616588354, -0.02816922217607498, 0.021006649360060692, -0.008679274469614029, 0.007663685828447342, -0.020432040095329285, 0.013055659830570221, 0.0182538703083992, -0.010109116323292255, -0.018240507692098618, 0.011057890020310879, 0.01216701976954937, 0.015501090325415134, -0.046636901795864105, 0.0027978799771517515, 0.014512227848172188, 0.006447651889175177, -0.02565697766840458, -0.009507780894637108, 0.01574162393808365, -0.000570433447137475, -0.02128727361559868, 0.021420903503894806, -0.03837856277823448, -0.007510011084377766, -0.001467425376176834, -0.01653004251420498, 0.028917551040649414, -0.005562352482229471, -0.019175918772816658, 0.02752779796719551, -0.012641406618058681, 0.0029248285572975874, 0.0036781681701540947, -0.0015843517612665892, 0.0030467661563307047, 0.009561233222484589, -0.006217139773070812, 0.007109120953828096, -0.0211937315762043, -0.00199275859631598, -0.008599095977842808, -0.024307312443852425, -0.002221600152552128, -4.1106912249233574e-05, -0.004984402563422918, -5.8045570767717436e-05, -0.01742536388337612, -0.017158104106783867, -0.02306455373764038, -0.002276722574606538, 0.03394204378128052, -0.03292645514011383, 0.015140289440751076, 0.024213772267103195, -0.00718929897993803, -0.001187637448310852, 0.005505559500306845, -0.1695498526096344, 0.011518913321197033, 0.015247193165123463, -0.011244972236454487, 0.025082368403673172, 0.025523347780108452, 0.025844059884548187, -0.0065278299152851105, -0.010463235899806023, -0.012514458037912846, 0.009674818255007267, 0.019269458949565887, -0.04404447600245476, -0.018320685252547264, -0.031910866498947144, 0.0016018906608223915, -0.0015125256031751633, 0.009494418278336525, 0.039073437452316284, 0.011044526472687721, 0.014579042792320251, 0.0023719340097159147, 0.00863250344991684, 0.0037717092782258987, 0.004262799862772226, 0.01678393967449665, -0.009868581779301167, 0.004820705391466618, 0.01062359195202589, -0.018855204805731773, -0.008752770721912384, 0.029505522921681404, 0.007115802261978388, -0.028864098712801933, 0.015327371656894684, 0.02428058721125126, -0.012160338461399078, -0.00423273304477334, -0.01222047209739685, 0.025189271196722984, 0.007710456382483244, 0.006283955182880163, 0.03664137050509453, 0.006360792089253664, -0.005365248303860426, 0.03557233139872551, -0.005996650084853172, -0.0037984352093189955, 0.01324942335486412, -0.033193714916706085, 0.01145209837704897, -0.019563445821404457, 0.020432040095329285, -0.005802886560559273, 0.028783921152353287, 0.009200431406497955, 0.01845431514084339, 0.0011884726118296385, -0.008959897793829441, -0.03175050765275955, -0.007516692392528057, 0.0005257508601062, 0.016356322914361954, -0.031135810539126396, 0.00065311708021909, 0.0018006653990596533, -0.012968800030648708, 0.014004433527588844, -0.02295764908194542, 0.005027831997722387, -0.000735800655093044, 0.0034509971737861633, 0.037068985402584076, -0.006440970115363598, -0.008305110037326813, 0.0004668701149057597, -0.01634296029806137, 0.011645861901342869, -0.008592414669692516, -0.010523369535803795, -0.035839591175317764, 0.046396367251873016, -0.0003599660412874073, -0.012701540254056454, 0.004967698361724615, 0.013189289718866348, -0.012253879569470882, -0.017331821843981743, -0.006136961746960878, -0.0012669803109019995, 0.02134072594344616, -0.0069821723736822605, -0.016209330409765244, -0.0017422023229300976, 0.011071252636611462, 0.0062939771451056, 0.012106886133551598, -0.01757235638797283, 0.010723814368247986, 0.0024187045637518167, -0.005933175794780254, -0.016516679897904396, -0.022383039817214012, 0.029906414449214935, 0.021073464304208755, -0.00170461880043149, -0.005154780577868223, 0.013262785971164703, 0.024454306811094284, 0.012908666394650936, -0.0006919532897882164, 0.017545631155371666, 0.016570130363106728, 0.006220480892807245, 0.008973260410130024, 0.04468590021133423, -0.0160890631377697, -0.021233821287751198, 0.02918481081724167, -0.017091289162635803, 0.05334513261914253, -0.010730496607720852, -0.0127817178145051, -0.008051212877035141, -0.0196837130934, -0.040837354958057404, -0.11641853302717209, 0.0033891932107508183, 0.018187055364251137, 0.010389739647507668, 0.019763890653848648, 0.019563445821404457, -0.003541197394952178, 0.013175927102565765, -0.0008894752827472985, 0.010950986295938492, -0.0009704885305836797, -0.025777244940400124, 0.011719359084963799, -0.00033052568323910236, 0.016249418258666992, -0.02506900392472744, 0.011525595560669899, -0.022530032321810722, -0.0030100177973508835, 0.02325163595378399, 0.005545648746192455, -0.016075700521469116, 0.012821807526051998, -0.01693093217909336, 0.0031837369315326214, 5.929835242568515e-05, -0.03276609629392624, 0.002046210691332817, 0.040650274604558945, 0.012006663717329502, -0.01059686578810215, -0.0028797283302992582, 0.00959464069455862, -0.02605786733329296, -0.009160342626273632, -0.006100213620811701, -0.04134514927864075, -0.013844077475368977, 0.028249401599168777, -0.03992867097258568, 0.012708221562206745, -0.014365234412252903, 0.032258301973342896, -0.027928689494729042, -0.0012377486564218998, -0.0010740518337115645, -0.017238281667232513, 0.0037182571832090616, 0.0037182571832090616, -0.021060101687908173, -0.017826253548264503, 0.03327389061450958, -0.032899729907512665, -0.019216006621718407, 0.04262799769639969, -0.001369708450511098, 0.01874830201268196, -0.0030985476914793253, -0.020138055086135864, 0.00010418971214676276, -0.01081735547631979, 0.0060567837208509445, -0.005589078646153212, 0.01711801439523697, 0.024494394659996033, -0.0061202580109238625, -0.03469037264585495, -0.010489962063729763, 0.02865029126405716, -0.007984397932887077, -0.01765253394842148, 0.004499993287026882, -0.020472129806876183, 0.023665888234972954, -0.023171458393335342, 0.012541184201836586, -0.011979937553405762, -0.012006663717329502, 0.014779487624764442, 0.0001954340114025399, 0.001212693052366376, -0.02369261533021927, -0.004890861455351114, -0.0030317327473312616, 0.002542312489822507, 0.0125879542902112, 0.00915366131812334, -0.011305105872452259, 0.012948756106197834, -0.018227145075798035, -0.005124713759869337, 0.025202635675668716, -0.00738306250423193, -0.019563445821404457, -0.006988853681832552, 0.050752706825733185, 0.004713801201432943, -0.01057013962417841, -0.00434297788888216, -0.0020879702642560005, -0.014752761460840702, 0.0005867196014150977, -0.06430280208587646, 0.014071248471736908, 0.011211564764380455, -0.0025306197348982096, 0.010109116323292255, -0.003778390819206834, 0.002864695154130459, -0.011458780616521835, -0.004028947092592716, -0.0030283918604254723, -0.018721574917435646, 0.027607977390289307, -0.016516679897904396, -0.015674808993935585, -0.010683725588023663, 0.00016630682512186468, 0.002500553149729967, -0.0208062045276165, 0.008518918417394161, -0.005351885221898556, 0.020525582134723663, 0.002275052247568965, 0.02418704703450203, -0.005842975806444883, -0.00594987953081727, -0.009748315438628197, 0.002580731175839901, 0.016757212579250336, -0.002919817343354225, -0.019002199172973633, 0.009848537854850292, -0.023278361186385155, 0.005021150689572096, 0.0084120137616992, 0.0030801736284047365, 0.012821807526051998, -0.0182939600199461, -0.01435187179595232, 2.0449057046789676e-05, 0.03779058903455734, -0.01727837137877941, -0.01618260331451893, -0.0059198131784796715, -0.026806196197867393, 0.010964348912239075, 0.0147928511723876, -0.02830285206437111, 2.790050166368019e-05, 0.001100777881219983, -0.004513356368988752, 0.014605768956243992, 0.025536710396409035, -0.005131395533680916, -0.02115364372730255, 0.007730500772595406, -0.02128727361559868, 0.021060101687908173, -0.011365239508450031, 0.00887971930205822, -0.024120232090353966, 0.011538958176970482, -0.02134072594344616, 0.00873272679746151, -0.0015743294497951865, 0.01590198092162609, -0.011318468488752842, -0.009875264018774033, 0.0069821723736822605, -0.008873037993907928, -0.025870785117149353, 0.005358566530048847, 0.003195429453626275, 0.013897528871893883, 0.010783948004245758, 0.02501555345952511, 0.006591304205358028, -0.01874830201268196, -0.007717137690633535, -0.03661464527249336, 0.017398636788129807, -0.005138076841831207, 0.002415363909676671, -0.04294871166348457, 0.006173710338771343, 0.04043646529316902, -0.02806231938302517, 0.00910020899027586, 0.024801744148135185, -0.0067583415657281876, 0.01087080780416727, 0.01079062931239605, -0.017037836834788322, -0.0016870799008756876, -0.012721584178507328, 0.013677040114998817, 0.013383053243160248, -0.02615140937268734, -0.018187055364251137, 0.03359460458159447, 0.029452072456479073, -0.021367451176047325, 0.013723810203373432, 0.007810678798705339, -0.024895286187529564, -0.007069031707942486, -0.018133603036403656, -0.005689301062375307, -0.046289462596178055, -0.000593818724155426, 0.012701540254056454, 0.011879715137183666, -0.0160890631377697, 0.014204878360033035, 0.015968795865774155, 0.006200436037033796, -0.014846302568912506, -0.005786182824522257, -0.020926471799612045, -0.006424266379326582, 0.034610193222761154, -0.004610238131135702, 0.03359460458159447, 0.002629172056913376, 0.019844068214297295, 0.013483275659382343, 0.020445404574275017, 0.0255634356290102, 0.025082368403673172, 0.007857449352741241, -0.003925384022295475, -0.00015179543697740883, -0.00015242182416841388, -0.04439191520214081, 0.002934850752353668, 0.013129156082868576, -0.04383067041635513, -0.0026325127109885216, 0.003384181996807456, -0.018026698380708694, 0.050806161016225815, 0.02207569032907486, -0.016997747123241425, 0.007723818998783827, -0.002468816004693508, 0.02840975672006607, 0.02492201142013073, 0.0020512219052761793, 0.0037115756422281265, -0.022877471521496773, 0.005615804344415665, -0.016850754618644714, 0.030734920874238014, -0.012086841277778149, -0.014164789579808712, 0.003604671685025096, -0.0034509971737861633, 0.04832063987851143, -0.026071229949593544, -0.022890834137797356, 0.030253851786255836, 0.00695544620975852, 0.02448103204369545, -0.008425377309322357, 0.010496643371880054, 0.0026542276609688997, 0.01775943860411644, -0.015487727709114552, 0.004600215703248978, -0.02290419675409794, 0.008719363249838352, 0.021233821287751198, -0.004503333941102028, -0.02477501891553402, 0.009748315438628197, -0.0074498774483799934, 0.009461010806262493, -0.01307570468634367, 0.023144731298089027, 0.0026391942519694567, -0.0042928666807711124, 0.02207569032907486, -0.016022248193621635, -0.0027410872280597687, 0.010069027543067932, 9.223607776220888e-05, -0.012227153405547142, -0.011538958176970482, -0.012674814090132713], "f2c24cce-05fc-4cc0-912b-6a88b122e069": [0.0053642624989151955, -0.023533973842859268, -0.001980832312256098, 0.011369134299457073, -0.010836416855454445, 0.015496009029448032, -0.016736768186092377, -0.030587421730160713, -0.012023230083286762, -0.031018991023302078, 0.011537715792655945, 0.008273978717625141, 0.0242487583309412, -0.005846405401825905, 0.003833542577922344, 0.00016837073781061918, 0.03641359880566597, -0.008651601150631905, 0.03803198039531708, -0.013075178489089012, -0.002048264956101775, -0.006109392736107111, 0.0004522197996266186, 0.02261688932776451, -0.01497003436088562, 0.03695305809378624, 0.031450558453798294, -0.010216036811470985, 0.005809317342936993, -0.025084922090172768, -0.010094658471643925, 0.0009423704468645155, 0.005765486508607864, 0.009184318594634533, -0.03579321876168251, -0.00027900232817046344, 0.018206799402832985, -0.03679122030735016, 0.0241004079580307, 0.0023146236781030893, 0.007579423021525145, 0.0024714043829590082, -0.018975529819726944, 0.020486019551753998, -0.015347656793892384, 0.020243262872099876, -0.0013258932158350945, -0.02767433412373066, -0.026002006605267525, 0.017572931945323944, 0.02010839805006981, -0.005546330474317074, -0.012636867351830006, 0.022090915590524673, -0.013648356311023235, -0.006298203952610493, 0.007282719481736422, 0.025705302134156227, -0.012758245691657066, 0.028105903416872025, 0.00633192015811801, 0.013007746078073978, -0.004723652731627226, 0.028483524918556213, -0.03679122030735016, -0.00971029233187437, -0.010944308713078499, -0.022886620834469795, 0.004123502876609564, -0.006318433675915003, 0.03600900247693062, 0.018112393096089363, -0.005563188344240189, 0.009096655994653702, 0.02532768063247204, -0.0284565519541502, -0.01528022438287735, -0.00927872397005558, -0.008058194071054459, 0.02636614255607128, -0.002587725641205907, -0.0347682423889637, -0.011079174466431141, 0.007026475854218006, 0.019946560263633728, -0.017667338252067566, 0.01024975348263979, 0.015873631462454796, -0.02540859952569008, -0.0375734381377697, 0.006079047918319702, 0.01661538891494274, 0.02940060943365097, 0.013479774817824364, -0.0010072742588818073, 0.01996004581451416, -0.021254751831293106, -0.001886426704004407, 0.0010544770630076528, -0.020229777321219444, -0.020486019551753998, -0.002328110160306096, -0.011868136003613472, -0.008644857443869114, -0.013999005779623985, 0.010553199797868729, 0.0021780726965516806, 0.002456231974065304, 0.010013739578425884, -0.0023651979863643646, -0.016966039314866066, 0.012953800149261951, -0.009777725674211979, -0.04992708936333656, -0.0021392989438027143, -0.03236764296889305, 0.028051957488059998, -0.009015737101435661, -0.01987912692129612, -0.00900899339467287, 0.027890117838978767, 0.029805203899741173, 0.011645607650279999, -0.017842663452029228, 0.019865641370415688, -0.009568684734404087, 0.007626625709235668, -0.01644006557762623, -0.015131873078644276, -0.014444060623645782, 0.032556455582380295, 0.009312440641224384, 0.017586419358849525, -0.003557068994268775, -0.019002502784132957, 0.01894855685532093, -0.011355647817254066, 0.0003179867926519364, -0.0013073493028059602, -0.017343662679195404, 0.014241762459278107, -0.007195057347416878, 0.011409593746066093, -0.02261688932776451, -0.027175333350896835, 0.0284565519541502, 0.017599904909729958, 0.006773603614419699, -0.012738015502691269, 0.000690341112203896, 0.016197307035326958, -0.004113387782126665, 0.014363141730427742, -8.093227734207176e-06, 0.009959793649613857, 0.001361295348033309, -0.006122879218310118, -0.00885389931499958, -0.020877128466963768, -0.014214789494872093, 0.02807893045246601, 0.01209066342562437, 0.0010544770630076528, -0.016979524865746498, -0.010667835362255573, 0.03487613424658775, 0.013398854993283749, -0.025988519191741943, -0.0277552530169487, -0.010243009775876999, -0.011955797672271729, 0.04437064379453659, -0.02573227509856224, 0.004113387782126665, -0.007471530698239803, 0.005809317342936993, 0.03851749375462532, 0.027472035959362984, -0.030425583943724632, 0.01360789593309164, -0.02496354468166828, -0.021794212982058525, 0.02659541368484497, 0.007390611805021763, -0.020445561036467552, -0.012218785472214222, -0.003580670338124037, -0.004531470127403736, 0.007903099060058594, 0.012340163812041283, 0.0076333689503371716, 0.024761246517300606, -0.024990517646074295, -0.010141861625015736, -0.634405791759491, -0.025246761739253998, -0.00711413798853755, -0.010465538129210472, -0.002346654189750552, -0.014943061396479607, 0.02276524156332016, 0.02111988700926304, -0.00022084172815084457, -0.0027461922727525234, -0.004912463948130608, -0.0005453610792756081, -0.012812191620469093, -0.02377673052251339, -0.02151099592447281, -0.01870580017566681, 0.012724529020488262, -0.01809890754520893, -0.007080421783030033, -0.021956050768494606, -0.024073434993624687, 0.002607955364510417, 0.009076426737010479, 0.0075591932982206345, -0.0184900164604187, -0.0042415098287165165, 0.017249256372451782, -0.002752935513854027, -0.0006886553019285202, 0.03703397884964943, -0.04248253256082535, 0.04226674512028694, 0.022104403004050255, 0.004147103987634182, 0.04054047167301178, -0.0017262742621824145, -0.016547957435250282, 0.018287718296051025, 0.018543962389230728, 0.019299207255244255, -0.023898109793663025, -0.010121631436049938, 0.026460547000169754, 0.016008496284484863, 0.014875628985464573, 0.009764239192008972, 0.007478273939341307, -0.006834292784333229, -0.0034474909771233797, 0.023196810856461525, 0.003391859121620655, 0.006746630650013685, -0.017667338252067566, -0.0032199060078710318, 0.014133870601654053, 0.005748628173023462, 0.02759341523051262, -0.0050136130303144455, -0.005097903776913881, -0.0034390620421618223, 0.01629171334207058, 0.03204396739602089, -0.015293710865080357, -0.011888365261256695, -0.026460547000169754, 0.0075591932982206345, -0.007012989372014999, 0.02308891899883747, 0.024275731295347214, -0.02043207362294197, 0.013540463522076607, 0.018989017233252525, 0.006638738326728344, -0.010087915696203709, 0.003678447799757123, -0.00750524690374732, 0.027350658550858498, -0.020796209573745728, 0.005704796873033047, 0.027000008150935173, 0.017977528274059296, -0.027971038594841957, -0.0316663421690464, -0.0205939132720232, 0.0031474160496145487, -0.02002747915685177, -0.006554447580128908, 0.01950150541961193, -0.0021190689876675606, 0.008024478331208229, 0.0008117198012769222, 0.013439314439892769, 0.012636867351830006, 0.01205020397901535, 0.03312288597226143, 0.014079924672842026, -0.005792459473013878, -0.00340197398327291, 0.013985519297420979, 0.006894981954246759, -0.003651474602520466, -0.017950555309653282, 0.015887117013335228, -0.01722228340804577, -0.011935568414628506, -0.010189063847064972, -0.02517932839691639, -0.013709045015275478, 0.03204396739602089, -0.019636370241642, 0.009534968063235283, -0.014390114694833755, -0.009211291559040546, -0.012367136776447296, 0.017181823030114174, -0.022657349705696106, 0.03935365751385689, 0.009096655994653702, 0.020378127694129944, -0.012994259595870972, 0.014551952481269836, -0.0016908721299842, 0.006109392736107111, -0.01942058466374874, 0.023641865700483322, 0.03827473893761635, -0.005114761646836996, -0.01274475920945406, -0.013473031111061573, -0.0050675589591264725, -0.005371005740016699, 0.00998002290725708, 0.019825180992484093, -0.006655596662312746, 0.006365636363625526, -0.010795957408845425, 0.01699301227927208, 0.009528224356472492, 0.02253597043454647, -0.022630376741290092, -0.02207743003964424, -0.0009398416732437909, 0.01410689763724804, 0.00830769445747137, -0.02058042585849762, -0.03671029955148697, -0.013317936100065708, -0.002237076172605157, -0.03813987225294113, -0.0017970785265788436, 0.00017901245155371726, -0.01707393117249012, -0.010620633140206337, 0.0002943853905890137, 0.025934573262929916, -0.020566940307617188, -0.003557068994268775, -0.009615886956453323, -0.000370879250112921, -0.021848158910870552, 0.016817687079310417, 0.024896111339330673, -0.011477026157081127, 0.009872131049633026, 0.013891112990677357, -0.012596407905220985, -0.021929077804088593, 0.02072877809405327, -0.024221785366535187, -0.03212488442659378, -0.003847029060125351, -0.011497256346046925, -0.0004454765294212848, 0.03139661252498627, -0.0262043047696352, -0.003061439609155059, -0.009002250619232655, -0.032313697040081024, -0.020755751058459282, 0.01146353967487812, -0.019002502784132957, 0.016183821484446526, 0.013628126122057438, -0.010418334975838661, 0.019595909863710403, 0.001092407968826592, -0.01449800655245781, -0.00620042672380805, 0.002039835788309574, 0.027647361159324646, 0.009851900860667229, 0.022967539727687836, 0.010033968836069107, 0.0025961545761674643, 4.9731534090824425e-05, -0.015185819007456303, 0.01644006557762623, 0.02463986724615097, 0.011126376688480377, 0.007350152358412743, 0.004342658910900354, 0.004753997549414635, 0.018341664224863052, -0.013655099086463451, 0.006524102762341499, -0.01700649969279766, 0.004136989358812571, -0.002940060803666711, 0.022428078576922417, -0.01707393117249012, -0.004544956609606743, -0.018449556082487106, -0.011753500439226627, -0.022347159683704376, 0.015887117013335228, 0.012016487307846546, 0.0023449682630598545, 0.01279196236282587, -0.00989910401403904, -0.005212538875639439, 0.0023230526130646467, -0.009561941027641296, -0.013021232560276985, -0.010263239964842796, -0.017896609380841255, 0.01383716706186533, 0.007323178928345442, 0.03261040151119232, 0.004629247356206179, -0.002813624683767557, 0.025907600298523903, -0.009831671603024006, 0.008044707588851452, 0.010013739578425884, 0.00963611714541912, 0.016413092613220215, 0.028240768238902092, -0.009703549556434155, 0.033959049731492996, -0.022320186719298363, -2.9027622076682746e-05, -0.007552450057119131, -0.0025118638295680285, -0.020405100658535957, -0.01068132184445858, 0.024383623152971268, 0.006173453293740749, -0.0091168861836195, 0.01599501073360443, 0.014376628212630749, -0.004029097035527229, 0.0014143985463306308, -0.007950302213430405, -0.004834916442632675, 0.014052951708436012, -0.026312196627259254, 0.0026956177316606045, 0.01816633902490139, 0.008469533175230026, 0.02501749061048031, -0.0011657408904284239, 0.018260745331645012, 0.012839164584875107, 0.011686068028211594, 0.05364936590194702, -0.004791085608303547, -0.009035967290401459, 0.01676374115049839, -0.003412089077755809, -0.036602407693862915, -0.01660190336406231, -0.01178047340363264, 0.024585921317338943, -0.0074378144927322865, 0.004484266974031925, 0.0024899484124034643, 0.010465538129210472, 0.008590911515057087, 0.014376628212630749, 0.007646855432540178, -0.03439062088727951, -0.015347656793892384, 0.020013991743326187, 0.00042313948506489396, -0.009831671603024006, -0.01739760860800743, -0.02720230631530285, -0.005509242415428162, -0.010094658471643925, 0.04054047167301178, -0.02931968867778778, 0.01942058466374874, 0.02051299251616001, -0.019461045041680336, 0.013156098313629627, -0.007498503662645817, 0.026635872200131416, -0.008907845243811607, 0.03673727437853813, -0.003894231980666518, 0.006780346855521202, 0.015968037769198418, -0.019434072077274323, 0.015927577391266823, 0.01501049380749464, -0.003863887395709753, -0.013270733878016472, -0.016547957435250282, 0.0018189940601587296, -0.022198807448148727, -0.002929945942014456, -0.0298591498285532, -0.0014557009562849998, -0.019042963162064552, -0.005620506126433611, 0.004281969275325537, -0.018678827211260796, -3.46909073414281e-05, 0.030992018058896065, -0.010243009775876999, -0.022724783048033714, -0.003951549530029297, -0.024761246517300606, 0.008719033561646938, 0.09311091899871826, 0.03031769208610058, -0.029373636469244957, 0.008516736328601837, 0.007532220333814621, 0.0073366654105484486, -0.02128172479569912, -0.024599408730864525, 0.021861644461750984, -0.012158095836639404, 0.003432318801060319, -0.02628522366285324, 0.0445864275097847, -0.015873631462454796, 0.002398914424702525, -0.00501024117693305, -0.01777523010969162, 0.0014236705610528588, -0.006652224808931351, -0.005549701862037182, 0.00742432801052928, 0.0024697184562683105, 0.02348002791404724, 0.02128172479569912, -0.02878022938966751, -0.012960543856024742, 0.022198807448148727, 0.00044969108421355486, 0.021106399595737457, -0.022198807448148727, -0.013473031111061573, 0.019366638734936714, 0.03298802301287651, 0.020944561809301376, -0.02767433412373066, 0.0038773738779127598, -0.002132555702701211, 0.007012989372014999, -0.023898109793663025, 0.007323178928345442, 0.002205045660957694, 0.02418132685124874, 0.004551699850708246, -0.011942311190068722, 0.017721284180879593, 0.0007135210908018053, -0.00690172566100955, -0.011982770636677742, -0.01465984433889389, -0.018746258690953255, 0.040513500571250916, 0.0010789213702082634, -0.03627873212099075, -0.009750752709805965, 0.016898605972528458, 0.015388116240501404, -0.01243456918746233, -0.004845031537115574, -0.010661092586815357, 0.012070433236658573, -0.023264242336153984, 0.010485767386853695, 0.013156098313629627, -0.01244131289422512, -0.015792712569236755, -0.02260340377688408, -0.006132993847131729, -0.00854370929300785, -0.03080320730805397, 0.01661538891494274, -0.018665339797735214, -0.007970532402396202, -0.02106594108045101, -0.000443369266577065, -0.006301575340330601, -0.0011691125109791756, 0.01777523010969162, -0.008469533175230026, -0.0073366654105484486, -0.02807893045246601, -0.0013368510408326983, -0.03420180827379227, 0.009750752709805965, -0.02956244722008705, -0.022859647870063782, -0.02036464214324951, 0.010276726447045803, 0.012178325094282627, -0.00830769445747137, 0.004393232986330986, -0.011288215406239033, 0.019541963934898376, 0.0023921711836010218, -0.004996754694730043, 0.010843160562217236, -0.00019913686264771968, 0.0034963798243552446, -0.007538963574916124, -0.0011303387582302094, -0.013762990944087505, 0.01532068382948637, -0.03420180827379227, -0.00027710580616258085, -0.01700649969279766, 0.007410841528326273, 0.00023116734519135207, 0.013115638867020607, 0.012947057373821735, 0.00039384845877066255, -0.024977030232548714, 0.004163962323218584, -0.021794212982058525, 0.007646855432540178, -0.010317185893654823, 0.008395357057452202, 0.021322185173630714, 0.032718293368816376, 0.004002124071121216, 0.004450550768524408, -0.007289462722837925, -0.00024633968132548034, -0.05035865679383278, 0.011645607650279999, 0.0033632004633545876, -0.027472035959362984, -0.007714288309216499, 0.017950555309653282, -0.007228773552924395, 0.033716294914484024, 0.017438067123293877, 0.010728524997830391, 0.005472154356539249, 0.016413092613220215, -0.01430919487029314, -0.0400819294154644, -0.002948489971458912, -0.0024697184562683105, 0.002886114874854684, -0.008469533175230026, 0.016116388142108917, -0.005576675292104483, -0.028240768238902092, -0.016399605199694633, -0.024032974615693092, 0.007525477092713118, -0.026865143328905106, -0.021403104066848755, 0.01251548808068037, 0.022360647097229958, -0.0024798335507512093, 0.0043628886342048645, -0.02137613110244274, -0.017599904909729958, -0.00602173013612628, -0.01360789593309164, -0.04218582808971405, 0.008233519271016121, -0.016709795221686363, 0.030614394694566727, 0.004079671576619148, 0.026163844391703606, -0.02159191481769085, -0.0064903865568339825, 0.01911039650440216, -0.0021881875582039356, -0.008314438164234161, -0.019434072077274323, -0.02002747915685177, -0.025368139147758484, -0.0031389868818223476, 0.04099901393055916, 0.013985519297420979, 0.01950150541961193, -0.00034264184068888426, -0.012893110513687134, 0.03681819513440132, -0.0017414465546607971, 0.0051484783180058, -0.01973077468574047, -0.04555745795369148, -0.014133870601654053, -0.0013317936100065708, -0.006284717470407486, -0.011659094132483006, -0.03252948075532913, -0.0006536746514029801, 0.04981919750571251, 0.011793959885835648, -0.0008319495827890933, -0.017451554536819458, 0.020566940307617188, -0.026244763284921646, 0.0060621895827353, 0.012279474176466465, 0.02791709080338478, -0.00920454878360033, 0.023291215300559998, -0.007201800588518381, 0.002843969501554966, -0.0014034407213330269, 0.01878671906888485, 0.0013553950702771544, -0.007329922169446945, -0.006493758410215378, -0.02907693199813366, 0.008948304690420628, -0.014444060623645782, -0.016278227791190147, 0.022859647870063782, -0.02090410329401493, -0.010317185893654823, -0.0050675589591264725, -0.0021983024198561907, -0.03452548384666443, -0.022252753376960754, 0.004544956609606743, -0.00230956613086164, 0.021618887782096863, -0.013027976267039776, -0.009170832112431526, 0.004544956609606743, -0.017127877101302147, 0.054000016301870346, 0.020715290680527687, 0.033419590443372726, 0.026959549635648727, -0.021349158138036728, 0.00880669616162777, 0.0016849718522280455, -0.0007211072370409966, -0.015536468476057053, 0.020378127694129944, 0.010067685507237911, -0.013999005779623985, 0.006234142929315567, -0.016885120421648026, -0.0038773738779127598, -0.0417812317609787, -0.03422878310084343, 0.020836669951677322, -0.002441059798002243, -0.0076333689503371716, -0.00946753565222025, -0.003833542577922344, -0.025840168818831444, 0.01041159126907587, 0.007195057347416878, 0.027539469301700592, -0.008489762432873249, -0.0016200679820030928, -0.026851655915379524, 0.018611393868923187, 0.024032974615693092, 0.014781223610043526, 0.014700304716825485, -0.008692060597240925, -0.021956050768494606, -0.018962044268846512, -0.021497508510947227, -0.0037189072463661432, 0.0009971593972295523, 0.02931968867778778, -0.008867385797202587, 0.0013688815524801612, 0.018543962389230728, -0.009265237487852573, -0.002938375109806657, 0.006756745278835297, -0.0029434324242174625, 0.025476031005382538, -0.002102210884913802, 0.008429073728621006, 0.002816996304318309, 0.012697556056082249, 0.035199809819459915, 0.0046595917083323, 0.014133870601654053, 0.021241266280412674, -0.012063690461218357, 0.007478273939341307, 0.003329484025016427, 0.010229523293673992, -0.006301575340330601, -0.027229279279708862, -0.01607592962682247, -0.012616637162864208, -0.004845031537115574, 0.0010704923188313842, -0.006760117132216692, -0.06818783283233643, -0.014336168766021729, 0.006517359521239996, -0.028348660096526146, 0.01278521865606308, -0.014983520843088627, 0.015522981993854046, -0.0121243791654706, 0.016858147457242012, -0.016804201528429985, 0.03352748230099678, -0.012818935327231884, 0.005384492222219706, -0.04466734826564789, 0.00251523545011878, 0.002855770057067275, -0.012582921423017979, 0.005923952907323837, -0.006618508603423834, -0.0212952122092247, 0.010350902564823627, 0.019069936126470566, 0.01785614900290966, -0.00892807450145483, 0.006163338664919138, 0.0014295708388090134, 0.00818631611764431, 0.006692684255540371, -0.016345659270882607, -0.028645362704992294, 0.024815192446112633, 0.019353153184056282, 0.004194307141005993, 0.023331675678491592, -0.032394614070653915, 0.022239267826080322, 0.002513549756258726, 0.007532220333814621, 0.016574930399656296, -0.03900301083922386, 0.010175577364861965, -0.025125382468104362, 0.01598152332007885, 0.008516736328601837, -0.0006123721832409501, 0.004379746504127979, -0.04512588679790497, -0.012886367738246918, -0.001259303535334766, 0.022981025278568268, -0.017046958208084106, 0.0049428087659180164, 0.02370929718017578, -0.005509242415428162, -0.0024781476240605116, -0.0039582927711308, -0.007228773552924395, 0.00950799509882927, -0.017518986016511917, -0.03633267804980278, -0.012535718269646168, 0.004163962323218584, 0.038706306368112564, 0.010580172762274742, -0.012367136776447296, -0.013769734650850296, -0.013972031883895397, -0.043156854808330536, -0.028591416776180267, 0.004136989358812571, 0.023102404549717903, 0.0319630466401577, 0.0006494601257145405, 0.010216036811470985, 0.02650100737810135, -0.018962044268846512, 0.025381626561284065, -0.0003306303988210857, -0.010317185893654823, -0.010033968836069107, 0.01138936448842287, -0.006180196534842253, 0.001947115990333259, -0.024127380922436714, 0.010876876302063465, 0.013398854993283749, -0.009973280131816864, -0.0026332426350563765, 0.013317936100065708, -0.005263113416731358, 0.0073838685639202595, -0.011200552806258202, 0.011908595450222492, 0.022589916363358498, -0.004103273153305054, 0.002720905002206564, -0.03422878310084343, -0.012272731401026249, 0.006048703100532293, -0.02486913837492466, -0.005880121607333422, -0.018233772367239, -0.002631556708365679, 0.003975151106715202, 0.010323929600417614, -0.014444060623645782, -0.01862488128244877, -0.005886864848434925, -0.02111988700926304, 0.052597418427467346, -0.003214848693460226, -0.0012660468928515911, 0.04491010308265686, -0.0013006060617044568, -0.02527373470366001, 0.00826723501086235, 0.021470535546541214, 0.005290086381137371, -0.02478821948170662, 0.016264740377664566, -0.024518489837646484, 0.012953800149261951, -0.010000253096222878, 0.011483769863843918, 0.0009836729150265455, 0.008368384093046188, 0.005475526209920645, 0.007849153131246567, -0.029427582398056984, 0.025759248062968254, 0.014916088432073593, -0.010040712542831898, -0.0042920843698084354, -0.004278597887605429, -0.0005651693791151047, 0.021929077804088593, -0.012535718269646168, -0.02751249633729458, 0.012528974562883377, 0.0066825696267187595, 0.01614336110651493, 0.004615760874003172, -0.013129125349223614, 0.011133120395243168, 0.023034973070025444, -0.033257752656936646, 0.0019049706170335412, 0.2035924643278122, 0.004615760874003172, 0.0037661101669073105, 0.023749757558107376, -0.007100651506334543, 0.020796209573745728, 0.033797211945056915, -0.014565438963472843, -0.01519930548965931, 0.00020440503431018442, -0.011800702661275864, 0.018989017233252525, -0.0030563820619136095, 0.004184192046523094, -0.0074378144927322865, 0.002988949418067932, -0.029184823855757713, 0.00711413798853755, -0.010957795195281506, -0.05880121886730194, 0.0024360022507607937, -0.006578049156814814, -0.00012485565093811601, -0.0005567403277382255, 0.016817687079310417, 0.012009743601083755, -0.006395981181412935, -0.016750255599617958, 0.020917588844895363, 0.0021173832938075066, -0.02752598188817501, -0.0067904614843428135, -0.019919587299227715, 0.0063824946992099285, -0.030236773192882538, -0.00740409828722477, 0.017667338252067566, 0.005212538875639439, 0.008772979490458965, -0.0063690077513456345, -0.0007539806538261473, 0.0053676338866353035, 0.00481805857270956, 0.0017245884519070387, -0.02159191481769085, 0.02948152832686901, -0.023129377514123917, -0.0044707804918289185, -0.017343662679195404, 0.01888112537562847, -0.019744262099266052, 0.011193810030817986, 0.02907693199813366, 0.01761339232325554, 0.013223530724644661, -0.01480819657444954, 0.007768234238028526, -0.0003458027495071292, -0.006608393508940935, 0.010027226060628891, -0.00993956346064806, 0.03805895149707794, -0.017748257145285606, 0.03649451583623886, -0.029508501291275024, 0.011274728924036026, -0.0021797583904117346, -0.01313586812466383, 0.0036211300175637007, -0.013574180193245411, -0.005556445103138685, -0.007046705577522516, -0.003894231980666518, 0.011544459499418736, -0.015401603654026985, -0.013048205524682999, 0.02853747084736824, -0.013783221133053303, 0.001957230968400836, -0.008698804304003716, 0.014390114694833755, -0.016966039314866066, -0.0018088791985064745, -0.006750002037733793, -0.016399605199694633, -0.024451056495308876, -0.0054350667633116245, -0.00928546767681837, -0.023426081985235214, 0.01629171334207058, -0.025044463574886322, -0.018449556082487106, 0.005795830860733986, -0.0249500572681427, 0.003359828609973192, -0.0077345180325210094, 0.014349655248224735, 0.0005141734727658331, 0.005681195762008429, -0.007984018884599209, -0.005937439389526844, -0.02455894835293293, 0.027863144874572754, 0.0009373129578307271, -0.01909690909087658, -0.004231394734233618, 0.009042710065841675, -0.013270733878016472, 0.00010357223800383508, -0.02767433412373066, 0.019150855019688606, -0.024680327624082565, -0.00230956613086164, -0.02517932839691639, 0.008584168739616871, 0.022967539727687836, -0.002171329455450177, -0.014376628212630749, 0.0165344700217247, 0.00954845454543829, 0.029211796820163727, -0.033635374158620834, -0.00422802334651351, 0.006257744040340185, -0.0023264242336153984, -0.009447305463254452, -0.027552954852581024, 0.02571878954768181, -0.011065687984228134, -0.014686818234622478, 0.02462638169527054, -0.03436364606022835, -0.0004922578809782863, 0.001052791252732277, -0.02642008848488331, 0.02012188360095024, -0.008273978717625141, -0.027863144874572754, 0.01971728913486004, -0.007323178928345442, -0.004110016394406557, 0.008361641317605972, 0.00026973034255206585, 0.01707393117249012, 0.010040712542831898, -0.02886114828288555, 0.01699301227927208, -0.0029215170070528984, -0.0064870151691138744, -0.019366638734936714, -0.023142864927649498, -0.012286217883229256, 0.00026909817825071514, -0.021227778866887093, -0.008705547079443932, 0.00705344881862402, -0.013520234264433384, -0.02292707934975624, 0.011119633913040161, 0.028672337532043457, -0.02674376405775547, 0.019164342433214188, 0.017640365287661552, 0.00428871251642704, -0.012023230083286762, -0.0015989952953532338, -0.1711169332265854, -0.003772853408008814, 0.024059947580099106, -0.013695558533072472, 0.024194812402129173, 0.023817190900444984, 0.03242158889770508, -0.004160590935498476, -0.012920084409415722, -0.017289714887738228, 0.011544459499418736, 0.03288013115525246, -0.043696317821741104, -0.01832817681133747, -0.026878628879785538, 0.01064086239784956, -0.00935964286327362, 0.016979524865746498, 0.040270742028951645, 0.01449800655245781, 0.0205939132720232, -0.018193311989307404, 0.017019985243678093, -0.000184280623216182, 0.0019791463855654, -0.007538963574916124, -0.001987575553357601, 0.007363638840615749, 0.013810194097459316, -0.026784224435687065, -0.010236267000436783, 0.023844163864850998, 0.01621079444885254, -0.02571878954768181, 0.021942565217614174, 0.002493320032954216, -0.006443183869123459, 0.0036211300175637007, -0.006547704339027405, 0.0066151367500424385, 0.010701552033424377, -0.00214435625821352, 0.023655351251363754, 0.00787612609565258, 0.012886367738246918, 0.017559446394443512, -0.024437570944428444, -0.005323803052306175, 0.00446740910410881, -0.0284565519541502, 0.015334170311689377, -0.0018611394334584475, 0.01532068382948637, -0.014686818234622478, 0.02706744149327278, 0.008422330021858215, 0.027863144874572754, 0.00818631611764431, -4.377850200398825e-05, -0.029454555362462997, 0.004582044202834368, -0.005003497935831547, 0.03679122030735016, -0.006699427496641874, -0.003911090083420277, -0.004254996310919523, -0.006345406640321016, 0.013628126122057438, -0.02899601310491562, 0.008719033561646938, 0.005637364462018013, 0.02261688932776451, 0.03681819513440132, -0.0004026989918202162, -0.005054072476923466, 0.0027563071344047785, -0.01925874687731266, 0.018746258690953255, -0.011092660948634148, -0.0049090925604105, -0.050790224224328995, 0.04250950366258621, -0.008597655221819878, -0.00854370929300785, 0.0028405978810042143, 0.03493008017539978, 0.003911090083420277, -0.016628876328468323, -0.010553199797868729, 0.003503123065456748, 0.008550452068448067, -0.016480524092912674, -0.008300951682031155, -0.006800576578825712, 0.013041462749242783, 0.0018122508190572262, 0.015253251418471336, -0.00994630716741085, 0.013891112990677357, 0.009824927896261215, 0.00245454628020525, -0.013156098313629627, -0.013506747782230377, 0.023439567536115646, 0.019987018778920174, -0.0032519365195184946, -0.0031693316996097565, 0.01621079444885254, 0.021038968116044998, 0.02051299251616001, -0.013156098313629627, 0.02659541368484497, 0.02198302373290062, 0.01622427999973297, -0.0037189072463661432, 0.03873327746987343, -0.006429697386920452, -0.017438067123293877, 0.027323685586452484, -0.0028591416776180267, 0.0687272921204567, -0.008429073728621006, -0.011928824707865715, 0.007275976240634918, -0.01465984433889389, -0.03908392786979675, -0.12677326798439026, -0.0009803012944757938, 0.012724529020488262, 0.014605898410081863, 0.017883121967315674, 0.021146859973669052, -0.005853148642927408, 0.012333420105278492, -0.0007375439163297415, 0.003327798331156373, -0.006038588471710682, -0.02994006872177124, 0.002402286045253277, -0.0002667801745701581, 0.006986015941947699, -0.017815690487623215, 0.0054182084277272224, -0.01669630967080593, -0.0031507876701653004, 0.020081425085663795, 2.238972592749633e-05, -0.011396107263863087, 0.01661538891494274, -0.02036464214324951, -0.0017178452108055353, 0.007026475854218006, -0.028051957488059998, 0.008860642090439796, 0.03182817995548248, 0.009110142476856709, -0.006328548304736614, -0.009494508616626263, 0.017411094158887863, -0.02002747915685177, -0.004352773539721966, 0.007640112191438675, -0.04404696822166443, -0.010782470926642418, 0.017438067123293877, -0.04070230945944786, 0.006952299736440182, -0.006709542591124773, 0.022036969661712646, -0.01185464859008789, -0.004093158058822155, -0.000329998234519735, -0.02049950696527958, 0.012926827184855938, 0.005873378366231918, -0.0277552530169487, -0.014794710092246532, 0.01769431121647358, -0.02956244722008705, -0.009474278427660465, 0.04021679610013962, -0.008078424260020256, 0.013560693711042404, 0.0022623634431511164, -0.01971728913486004, 0.005091160535812378, -0.004477523732930422, 0.007370382081717253, -0.01739760860800743, 0.02105245366692543, 0.012616637162864208, -0.005957669112831354, -0.02167283371090889, -0.019056448712944984, 0.029103904962539673, -0.006534217856824398, -0.027000008150935173, 0.009845158085227013, -0.026150356978178024, 0.021322185173630714, -0.02642008848488331, 0.008698804304003716, -0.021011995151638985, -0.01314261183142662, 0.02128172479569912, 0.007356895599514246, -0.012798705138266087, -0.010816187597811222, 0.0007868540124036372, 0.0028203679248690605, 0.004039212130010128, 0.024855652824044228, 0.010216036811470985, -0.01777523010969162, 0.0047843423672020435, -0.011800702661275864, -0.013864140026271343, 0.012468285858631134, -0.00742432801052928, -0.037627384066581726, 0.007302949205040932, 0.050709307193756104, 0.007222030311822891, 0.0019724031444638968, -0.001987575553357601, 0.0073164356872439384, -0.016507497057318687, 0.0035166095476597548, -0.0563196986913681, 0.014052951708436012, 0.022900106385350227, -0.011187066324055195, 0.013641612604260445, -0.00011063159035984427, 0.016413092613220215, -0.01573876664042473, -0.009501251392066479, 0.00993956346064806, -0.015617387369275093, 0.027323685586452484, -0.03633267804980278, -0.009251751005649567, -0.0034289471805095673, 0.00496978173032403, 0.014605898410081863, -0.030290719121694565, 0.010580172762274742, -0.009919334203004837, 0.021187318488955498, 0.00994630716741085, 0.018989017233252525, 0.005266485270112753, -0.016804201528429985, -0.0028894864954054356, 0.0037189072463661432, 0.01536114327609539, 0.0017852777382358909, -0.030911099165678024, 0.010222780518233776, -0.03873327746987343, 0.006564562674611807, 0.006750002037733793, 0.006810691207647324, 0.014214789494872093, -0.02190210483968258, -0.008429073728621006, -0.0007278504781424999, 0.03573927283287048, -0.017505500465631485, -0.015172332525253296, -0.0037357653491199017, -0.024815192446112633, 0.005768857896327972, 0.014794710092246532, -0.019204800948500633, 0.006760117132216692, 0.01762687787413597, -0.012879624031484127, 0.016237767413258553, 0.0172357689589262, -0.000463599048089236, -0.028645362704992294, 0.011969284154474735, -0.04671729728579521, 0.017276229336857796, -0.018989017233252525, 0.009838414378464222, -0.028726283460855484, 0.007471530698239803, -0.0047674840316176414, 0.005880121607333422, 0.0135269770398736, 0.01286613754928112, -0.016278227791190147, -0.0036953059025108814, -0.0006549390382133424, -0.020634371787309647, -0.0233991090208292, 0.0010468909749761224, 0.0060857911594212055, 0.009056196548044682, 0.02028372325003147, 0.024383623152971268, 0.014471033588051796, -0.010263239964842796, -0.001916771288961172, -0.024208299815654755, 0.01515884604305029, -0.0029737772420048714, -0.009123628959059715, -0.04372328892350197, 0.007458044216036797, 0.02619081735610962, -0.008321181870996952, 0.0038099412340670824, 0.023277729749679565, -0.004457294009625912, 0.004669706802815199, 0.03139661252498627, -0.02449151687324047, -0.012421082705259323, -0.019555451348423958, 0.007222030311822891, 0.018516989424824715, -0.01621079444885254, -0.011753500439226627, 0.02807893045246601, 0.022360647097229958, -0.01216483861207962, -0.002688874490559101, 0.010243009775876999, -0.009818185120821, -0.001761676394380629, -0.013628126122057438, -0.015792712569236755, -0.02907693199813366, -0.002173015149310231, 0.01204346027225256, 0.0005613762768916786, -0.0028051957488059998, 0.012528974562883377, 0.018449556082487106, 0.001462444313801825, -0.0022977653425186872, -0.00962937343865633, -0.037546467036008835, -0.011969284154474735, 0.03946154937148094, 0.002886114874854684, 0.02012188360095024, 0.011976027861237526, 0.002233704552054405, 0.01099151186645031, 0.020863642916083336, 0.012677326798439026, 0.028024984523653984, 0.0076873148791491985, -0.001659684581682086, -0.0012761617545038462, -0.009717036038637161, -0.03002098761498928, -0.0009078112198039889, 0.007201800588518381, -0.053919099271297455, 0.00795704498887062, 0.0034205180127173662, -0.031045963987708092, 0.047283731400966644, 0.016102902591228485, -0.01630520075559616, 0.022670837119221687, 0.0013537092600017786, 0.026028979569673538, 0.03010190837085247, -0.0020583798177540302, -0.0041167596355080605, -0.025476031005382538, 0.014754250645637512, -0.009130372665822506, 0.04005495831370354, -0.005239512305706739, -0.003975151106715202, 0.01911039650440216, -0.004123502876609564, 0.05221979692578316, -0.029751257970929146, -0.026622386649250984, 0.03573927283287048, -0.004197678528726101, 0.046123892068862915, -0.009690063074231148, 0.008907845243811607, 0.004642733838409185, 0.02036464214324951, -0.00989910401403904, 0.004062813241034746, -0.018220284953713417, 0.008793209679424763, 0.030047960579395294, -0.01457892544567585, -0.01817982643842697, -0.0010334043763577938, -0.014349655248224735, 0.01801798678934574, -0.012158095836639404, 0.02418132685124874, 0.015266737900674343, -0.0010738639393821359, 0.010930822230875492, -0.007478273939341307, -0.013237017206847668, 0.014835169538855553, -0.010377875529229641, -0.01925874687731266, 0.0019403727492317557, -0.03673727437853813], "7264d468-2455-4b35-b331-6195c8c8b928": [0.0024282438680529594, -0.01821853592991829, 0.008284201845526695, 0.0036457194946706295, -0.020069904625415802, 0.03533698245882988, -0.01377793587744236, -0.018969815224409103, -0.006962754298001528, -0.025087380781769753, 0.0187819954007864, 0.008438482880592346, 0.022243250161409378, 0.014529215171933174, -0.004957105498760939, 0.00863301008939743, 0.028280319646000862, -0.010048368014395237, 0.024711741134524345, -0.02182736247777939, 0.006084024906158447, -0.007586584892123938, -0.002951456466689706, 0.022042013704776764, -0.02865595929324627, 0.029970699921250343, 0.015052428469061852, -0.008391527459025383, 0.0065334513783454895, -0.006073963362723589, -0.028307151049375534, 0.007586584892123938, 0.0032667256891727448, -0.015911033377051353, -0.03310997411608696, -0.004967167042195797, 0.007378641050308943, -0.02571791782975197, 0.014368226751685143, 0.0017943513812497258, 0.0001548047293908894, -0.011631421744823456, -0.019989410415291786, 0.018674669787287712, -0.006976169999688864, 0.034585703164339066, 0.0015402913559228182, -0.030856136232614517, -0.022162755951285362, 0.013898677192628384, 0.03005119413137436, 0.006815181579440832, -0.02503371797502041, 0.0036155341658741236, -0.024980055168271065, -0.0008644749177619815, 0.015052428469061852, 0.0030906444881111383, -0.028629127889871597, 0.019452782347798347, 0.005537334829568863, -0.001728949835523963, 0.010517917573451996, 0.022753046825528145, -0.04142771661281586, -0.020136982202529907, -0.0025221537798643112, 0.000986893312074244, -0.004058252554386854, -0.009585525840520859, 0.038342103362083435, 0.018312446773052216, 0.008505561389029026, -0.007049956358969212, 0.019560107961297035, -0.034854017198085785, -0.028012005612254143, -0.011430186219513416, -0.019788173958659172, 0.016367167234420776, -0.005168403033167124, -0.03021218255162239, 0.0035786409862339497, -0.011155163869261742, 0.033485617488622665, -0.01570979878306389, 0.01121553499251604, 0.038610417395830154, -0.025543514639139175, -0.023490911349654198, 0.02365189976990223, 0.0204321276396513, 0.006077317055314779, 0.01964060217142105, -0.0034947928506881, 0.027059489861130714, -0.024658078327775, 0.022766461595892906, -0.008793998509645462, -0.024819066748023033, -0.010558164678514004, -0.0004905119421891868, -0.02408120222389698, -0.007177405524998903, -0.024108033627271652, 0.003112445119768381, -0.013898677192628384, -0.008518977090716362, 0.004749161656945944, -0.007177405524998903, -0.007774404715746641, 0.03133910149335861, -0.002042541978880763, -0.050308916717767715, -0.012000354006886482, -0.0327879972755909, 0.017145279794931412, 0.0038134159985929728, -0.03329779580235481, -0.02978288009762764, 0.008854369632899761, 0.027609534561634064, -0.003712798235937953, -0.019667433574795723, 0.00027607017545960844, -0.009001942351460457, 0.024416593834757805, -0.03007802553474903, 0.0038905562832951546, -0.005500441882759333, 0.029326744377613068, -0.011181995272636414, 0.03187572956085205, 0.003702736459672451, -0.00587608153000474, 0.00594316003844142, -0.025664255023002625, -0.0003471315430942923, -0.016876965761184692, -0.028333982452750206, 0.025530098006129265, 0.014462136663496494, -0.008472021669149399, -0.030507327988743782, -0.008552515879273415, 0.012456487864255905, 0.00315101514570415, 0.0038637248799204826, -0.024537336081266403, 0.015079259872436523, 0.028307151049375534, -0.003793292446061969, 0.01990891620516777, -0.018164873123168945, 0.016367167234420776, -0.010484378784894943, 0.016675729304552078, -0.00465860590338707, 0.0032834953162819147, -0.007210944779217243, 0.023718977347016335, 0.021773699671030045, -0.002304148394614458, -0.005195234436541796, 0.009095852263271809, 0.030534159392118454, -0.0018916153348982334, -0.015696382150053978, -0.03227820247411728, -0.007217652630060911, 0.007714034058153629, 0.016340335831046104, -0.03963001072406769, 0.0091159762814641, -0.007975640706717968, 0.015240248292684555, 0.030292676761746407, 0.022243250161409378, -0.017427008599042892, -0.0014245808124542236, -0.038046956062316895, -0.01279858872294426, 0.030829304829239845, 0.017574582248926163, -0.02114316076040268, 0.0054467786103487015, -0.01821853592991829, -0.0057385703548789024, -0.00925684068351984, 0.009759929962456226, 0.019935747608542442, 0.02047237567603588, -0.022873787209391594, 0.0029631953220814466, -0.635797381401062, -0.008418358862400055, -0.008679965510964394, -0.014354811049997807, -0.0039240955375134945, -0.009699559770524502, 0.02463124692440033, 0.0027871141210198402, -0.018701501190662384, -0.008867785334587097, -0.022243250161409378, 0.0061309803277254105, 0.0010665490990504622, -0.006516681984066963, -0.030024362727999687, -0.017977053299546242, 0.02198835089802742, -0.023142101243138313, 0.024698324501514435, -0.018969815224409103, -0.0226993840187788, -0.003974404651671648, 0.02102242037653923, 0.00806955061852932, -0.009867255575954914, -0.004712268710136414, 0.019425950944423676, -0.010269726626574993, 0.023598236963152885, 0.03850309178233147, -0.027475377544760704, 0.03088296763598919, 0.01612568460404873, 0.0007470874115824699, 0.04437917470932007, -0.01230891514569521, -0.013925508596003056, 0.008217123337090015, 0.018688086420297623, 0.03327096253633499, -0.03064148500561714, -0.02603989653289318, 0.024550752714276314, 0.009840424172580242, 0.006768226623535156, 0.020499207079410553, 0.014220654033124447, -0.009719682857394218, 0.0009500000742264092, 0.02029797062277794, 0.0030218889005482197, -0.012208296917378902, -0.01989549957215786, -0.013549868948757648, -0.0009541924810037017, 0.006258429493755102, 0.027502208948135376, -0.014918271452188492, 0.010578288696706295, 0.004702206701040268, 0.02562400884926319, 0.0323050320148468, 0.0009022065787576139, -0.005326037295162678, -0.0038167699240148067, 0.02589232288300991, -0.00015103156329132617, 0.010135569609701633, 0.03968367353081703, -0.025784997269511223, 0.025543514639139175, 0.016729392111301422, 0.008713504299521446, -0.018205121159553528, 0.022994529455900192, -0.007016417104750872, 0.032895322889089584, -0.017628245055675507, -0.002542277332395315, 0.028870610520243645, 0.019130803644657135, -0.027341220527887344, -0.046981822699308395, -0.01866125501692295, -0.00015543359040748328, -0.015964696183800697, -0.015897618606686592, 0.024537336081266403, 0.0021699913777410984, 0.007137158419936895, -0.0030269199050962925, 0.023168932646512985, 0.003216416807845235, 0.00285419262945652, 0.029031598940491676, -0.0004733230744022876, -0.0021129746455699205, 0.0017691969405859709, 0.01057158038020134, -0.015790292993187904, -0.006587114185094833, -0.010745984502136707, 0.004890026990324259, -0.027529040351510048, 0.007271315436810255, -0.006479788571596146, -0.03466619923710823, -0.01612568460404873, 0.059512097388505936, -0.023960459977388382, -0.0036725508980453014, -0.02100900374352932, -0.019103972241282463, -0.02059311605989933, 0.020901678130030632, -0.026509445160627365, 0.026670433580875397, -0.00754633778706193, 0.01964060217142105, -0.004420476965606213, 0.02322259731590748, 0.00141032668761909, -0.0006213151500560343, -0.021076083183288574, 0.026657018810510635, 0.032090380787849426, 0.012986408546566963, -0.018325861543416977, -0.013684025965631008, -2.1735024347435683e-05, -0.001403618836775422, -0.00827749352902174, 0.008391527459025383, 0.006721271201968193, -0.009572110138833523, -0.021465137600898743, 0.01599152758717537, 0.01654157228767872, 0.00403477530926466, -0.026267962530255318, -0.014086497016251087, -0.005205295979976654, 0.01515975408256054, 0.02088826335966587, -0.016179347410798073, -0.04365472495555878, -0.007190821226686239, -0.003907326143234968, -0.030856136232614517, 0.0091159762814641, 0.004457369912415743, -0.016045190393924713, -0.010974052362143993, 0.011249073781073093, 0.012577229179441929, -0.018983231857419014, 9.946492355084047e-05, 0.011369815096259117, -0.00031841351301409304, -0.013254722580313683, 0.013368756510317326, 0.024443425238132477, -0.032761167734861374, -0.001992233097553253, 0.017574582248926163, -0.007163989823311567, -0.015763461589813232, 0.03434422239661217, -0.00407166825607419, -0.035819947719573975, 0.017574582248926163, -0.014945102855563164, -0.0009156222804449499, 0.03689320757985115, -0.012154634110629559, 0.017091616988182068, 0.0004334951809141785, -0.0198820848017931, -0.01079293992370367, 0.00827749352902174, -0.01933204010128975, 0.004655251745134592, -0.0116850845515728, 0.002332656877115369, 0.031204944476485252, -0.0070969113148748875, -0.0062349517829716206, 0.007760989014059305, 0.005634598899632692, 0.018983231857419014, -0.008183583617210388, 0.0042158872820436954, 0.017561165615916252, 0.0012870697537437081, 0.013764520175755024, -0.007600000593811274, 0.02366531454026699, 0.013509620912373066, 0.008022595196962357, 0.003729567863047123, 0.02005648799240589, -0.005443424917757511, 0.011202119290828705, -0.014636540785431862, 0.008049426600337029, -0.029863374307751656, 0.007586584892123938, -0.0047323922626674175, 0.03147326037287712, -0.029621891677379608, 0.004044836852699518, -0.018138041719794273, -0.011966814287006855, -0.00994104240089655, 0.01036363746970892, 0.034183233976364136, 0.01905030943453312, 0.0217200368642807, -0.007163989823311567, 0.007989056408405304, 0.004678729455918074, -0.01836610957980156, 0.0009189762058667839, -0.00019568072457332164, -0.012429656460881233, -0.0005215357523411512, 0.007975640706717968, 0.02672409638762474, 0.01570979878306389, -0.01239611767232418, 0.01643424667418003, -0.012315623462200165, -0.006670962553471327, 0.02516787499189377, 0.01585737057030201, -0.0013440866023302078, 0.022511564195156097, -0.005792233161628246, 0.043466903269290924, -0.027354635298252106, -0.01599152758717537, 0.01119541097432375, -0.00032931379973888397, -0.012523566372692585, -0.02451050467789173, 0.0007428950048051775, 0.0052891443483531475, 0.002577493665739894, 0.008666549809277058, 0.03563212975859642, -0.009927626699209213, -0.010739277116954327, -0.006221536081284285, -0.011410062201321125, 0.019425950944423676, -0.03874457627534866, 0.0013977494090795517, 0.02169320546090603, 0.015830539166927338, 0.02838764525949955, 0.013684025965631008, -0.00462506664916873, 0.0076201241463422775, 0.009786761365830898, 0.05731191858649254, -0.0017130186315625906, 0.002329302951693535, 0.008015887811779976, -0.03590044379234314, -0.02326284348964691, -0.020365050062537193, -0.016783054918050766, -0.002879346953704953, 0.0041689323261380196, 0.0024701678194105625, 0.010906972922384739, -0.011718624271452427, -0.009236717596650124, 0.01753433421254158, 0.00912268366664648, -0.021344397217035294, -0.02158587984740734, 0.020136982202529907, 0.006902383640408516, 0.006422771606594324, -0.02489956095814705, -0.018044132739305496, -0.014073081314563751, -0.025288615375757217, 0.033351458609104156, -0.015548809431493282, 0.018057547509670258, 0.022042013704776764, -0.02019064500927925, 0.002525507705286145, -0.006214828230440617, 0.03308314457535744, -0.028172994032502174, 0.04663301259279251, -0.0009248455753549933, 0.01616593264043331, 0.013248015195131302, -0.02852180227637291, 0.008411651477217674, 0.018594175577163696, -0.0008565093157812953, 0.0011109885526821017, -0.00027607017545960844, -0.002357811201363802, -0.022632304579019547, -0.007660371251404285, -0.0067917038686573505, 0.0027267432305961847, -0.011269197799265385, -0.012094263918697834, 0.0038067081477493048, -0.014166991226375103, 0.0036893205251544714, 0.028172994032502174, -0.00400123605504632, -0.006090732757002115, -0.012550397776067257, -0.011946691200137138, 0.004346690606325865, 0.08999259024858475, 0.02366531454026699, -0.030829304829239845, 0.0008095543598756194, 0.007801236119121313, 0.016072021797299385, -0.017762402072548866, -0.029675554484128952, 0.017789233475923538, 0.002057634759694338, 0.015414652414619923, -0.008505561389029026, 0.016528155654668808, 0.001199029153212905, 0.02586549147963524, -0.005959929898381233, -0.010618535801768303, -0.0012342454865574837, 0.008109797723591328, 0.007875022478401661, 0.0076335398480296135, -0.0036490734200924635, 0.0052153579890728, 0.024819066748023033, -0.02838764525949955, -0.014126744121313095, 0.03906655311584473, 0.008136629126966, 0.025838660076260567, -0.019828421995043755, -0.010853310115635395, 0.035819947719573975, 0.015360989607870579, 0.028602296486496925, -0.015696382150053978, -0.004269550088793039, -0.002344395499676466, 0.019533276557922363, -0.00403477530926466, 0.024269022047519684, 0.019103972241282463, 0.031795237213373184, 0.010350221768021584, -0.01836610957980156, 0.0116850845515728, 0.0005848411819897592, -0.010645367205142975, -0.011879612691700459, -0.010880141519010067, -0.005637952592223883, 0.04046178609132767, 0.0032650488428771496, -0.0055742282420396805, -0.004903442692011595, 0.037617653608322144, 0.006731333211064339, 0.02186760865151882, -0.012342454865574837, -0.010263019241392612, 0.035685792565345764, -0.011698500253260136, 0.0006980362231843174, 0.010410591959953308, -0.008250662125647068, -0.007130450569093227, -0.021733451634645462, -0.02130414918065071, -0.012684554792940617, -0.019573522731661797, 0.020378464832901955, -0.016957459971308708, -0.027381466701626778, -0.008606178686022758, -0.008639718405902386, -0.0044540162198245525, 0.008264077827334404, 0.0269789956510067, -0.020968757569789886, 0.0017641660524532199, -6.713096081512049e-05, -0.026938747614622116, -0.05417264252901077, 0.0042225951328873634, -0.022578641772270203, -0.016031775623559952, -0.014623125083744526, 0.017977053299546242, 0.011228950694203377, -0.01974792778491974, 0.0002469329338055104, -0.012993116863071918, 0.024953223764896393, -0.00452444888651371, -0.008183583617210388, 0.0070767877623438835, -0.007559753488749266, -0.002894439734518528, -0.01357670035213232, 0.006630715448409319, -0.008257370442152023, 0.01079293992370367, -0.03571262210607529, 0.010229479521512985, -0.016756223514676094, 0.01077281590551138, -0.011403354816138744, -0.0036759048234671354, 0.026133805513381958, -0.012765049003064632, -0.026227716356515884, -0.0038067081477493048, -0.023826302960515022, -0.007224360480904579, -0.0030688440892845392, 0.009169639088213444, 0.009243424981832504, 0.017896559089422226, -0.012610768899321556, 0.010242895223200321, -0.0011210503289476037, -0.006073963362723589, -0.017641659826040268, 0.001290423795580864, -0.012060724198818207, -0.025556929409503937, 0.002391350455582142, 0.024430010467767715, -0.024980055168271065, 0.014904855750501156, -0.002559046959504485, 0.024188527837395668, 0.016796471551060677, 0.009270256385207176, -0.011322860606014729, -0.04593539610505104, 0.009645896032452583, 0.0033304502721875906, 0.004779347218573093, -0.0007345101912505925, 0.00410185381770134, -0.015119506977498531, -0.01287237461656332, -0.01509267557412386, -0.028629127889871597, -0.010584996081888676, -0.025784997269511223, -0.031124450266361237, -0.00472903810441494, -0.0011168579803779721, -0.0030017653480172157, 0.006285260897129774, -0.03643707185983658, -0.030668316408991814, -0.0187819954007864, -0.022323744371533394, -0.024819066748023033, 0.0010506178950890899, -0.0020945279393345118, 0.01852709800004959, -0.004044836852699518, 0.007365225348621607, -0.02743512950837612, 0.00842506717890501, 0.0021515446715056896, 0.0006389232585206628, 0.013415711000561714, -0.018755163997411728, -0.014529215171933174, -0.03480035439133644, -0.015468315221369267, 0.015562225133180618, 0.015817124396562576, 0.017735570669174194, -0.005081200506538153, -0.01585737057030201, 0.03225136920809746, -5.7802848459687084e-05, -0.006962754298001528, -0.01781606487929821, -0.034022245556116104, -0.024175111204385757, -0.00981359276920557, -0.004833010025322437, 0.006563636939972639, -0.006050485651940107, 0.018674669787287712, 0.05417264252901077, -0.0005441748071461916, 0.007539629936218262, -0.022042013704776764, 0.01964060217142105, -0.03182206675410271, -0.005701677408069372, -0.0036323037929832935, 0.020230893045663834, 0.008304324932396412, 0.023289674893021584, -0.012476611882448196, 0.004537864588201046, 0.0054534864611923695, 0.007921977899968624, 0.01538782101124525, -0.016756223514676094, -0.004477493464946747, -0.022605473175644875, 0.0161525160074234, -0.023329922929406166, -0.03855675458908081, 0.035578466951847076, -0.028763284906744957, -0.01795022189617157, -0.009551986120641232, -0.016675729304552078, -0.03603459894657135, -0.03590044379234314, -0.018540512770414352, -0.004735745955258608, 0.021760283038020134, -0.02017723023891449, -0.013073611073195934, 0.006654192693531513, -0.010088615119457245, 0.04915516823530197, 0.011919859796762466, 0.03386125713586807, -0.0002460944524500519, -0.026616770774126053, 0.00344448396936059, -0.002027449430897832, -0.00466195959597826, -0.011825949884951115, 0.015052428469061852, 0.01894298382103443, -0.026938747614622116, 0.014596293680369854, -0.02433609962463379, -0.0006724625127390027, -0.036115095019340515, -0.03163424879312515, 0.01866125501692295, 0.014059665612876415, -0.015763461589813232, -0.0007521182997152209, 0.0036624891217797995, -0.028763284906744957, 0.028763284906744957, 0.004068314563483, 0.00793539360165596, -0.01467678789049387, -0.011168579570949078, -0.016098853200674057, 0.003219770733267069, 0.03136593475937843, 0.03273433446884155, 0.028307151049375534, -0.006982877850532532, -0.022605473175644875, -0.0187819954007864, 0.009793469682335854, -0.008773875422775745, -0.02019064500927925, 0.004950397647917271, 0.0009692851454019547, 0.01010203082114458, -0.008706796914339066, -0.004521094728261232, -0.0003087709774263203, 0.0038436013273894787, -0.02657652460038662, 0.025409357622265816, 0.017145279794931412, 0.02587890811264515, 0.008042719215154648, 0.018540512770414352, 0.027220478281378746, 0.025959402322769165, -0.0018262136727571487, 0.0007097749621607363, -0.009505031630396843, -0.0024030893109738827, -0.014596293680369854, 0.0050174761563539505, 0.0029397178441286087, -0.01384501438587904, -0.0027250663843005896, -0.009572110138833523, -0.004225949291139841, -1.1476721738290507e-05, 0.003981112502515316, -0.05221394822001457, -0.02071385830640793, -0.0007793689728714526, -0.01308702677488327, 0.03412957116961479, -0.01587078720331192, 0.029031598940491676, -0.008465314283967018, 0.014354811049997807, -0.02531544677913189, 0.008887908421456814, -0.007210944779217243, 0.007774404715746641, -0.029165755957365036, -0.0020995589438825846, 0.007392056751996279, -0.021237071603536606, 0.02394704520702362, -0.016608649864792824, -0.014140159823000431, 0.00912268366664648, 0.01288579124957323, 0.006073963362723589, 0.008438482880592346, 0.0033069727942347527, -0.005792233161628246, -0.016809886321425438, 0.012630891986191273, -0.0035920566879212856, -0.026080142706632614, 0.013764520175755024, 0.019734511151909828, -0.004537864588201046, 0.01599152758717537, -0.02020406164228916, 0.021934688091278076, -0.006224890239536762, 0.012972992844879627, 0.002830715151503682, -0.03742983564734459, 0.014945102855563164, -0.02252497896552086, 0.007237776182591915, 0.01894298382103443, -0.00862630270421505, 0.004346690606325865, -0.027233894914388657, 0.002003971952944994, 0.005067784804850817, 0.014623125083744526, -0.017695322632789612, 0.02519470639526844, 0.01030326634645462, 0.0036021184641867876, -0.0016928950790315866, -0.0008418358629569411, -0.006134334020316601, 0.01280529610812664, -0.02061994932591915, -0.03979099914431572, 0.0007080979994498193, -0.011363107711076736, 0.03174157440662384, 0.0015067521017044783, -0.020485790446400642, -0.02087484672665596, -0.03447837755084038, -0.026750927790999413, -0.011758871376514435, 0.0068319509737193584, 0.021371228620409966, 0.038207944482564926, 0.002334333723410964, 0.007573169190436602, 0.013409003615379333, -0.015293911099433899, 0.011463725008070469, -0.01183936558663845, -0.013040071353316307, 0.0014396734768524766, 0.0007894307491369545, -0.005483672022819519, 0.002071050461381674, -0.03533698245882988, 0.007700618356466293, 0.016796471551060677, -0.01357670035213232, -0.008230539038777351, 0.004128685221076012, -0.011175287887454033, 0.002005648799240589, -0.01977475918829441, 0.012369286268949509, 0.018902737647294998, 0.020700443536043167, 0.002656310796737671, -0.020700443536043167, -0.0055608125403523445, 0.0007357679423876107, -0.024550752714276314, -0.018996646627783775, -0.016353752464056015, -0.00842506717890501, -0.009699559770524502, 0.027502208948135376, -0.015562225133180618, -0.008894616737961769, -0.009042189456522465, -0.033485617488622665, 0.04164236783981323, -0.000986893312074244, -0.012302207760512829, 0.03603459894657135, 0.008908032439649105, -0.021612711250782013, -0.008217123337090015, 0.022444484755396843, 0.0024969992227852345, -0.031258609145879745, 0.028709622099995613, -0.011638130061328411, 0.03155375272035599, -0.004145454615354538, -0.0062819067388772964, 0.004551280289888382, 0.0035819949116557837, 0.005537334829568863, 0.005604413338005543, -0.00904889777302742, 0.024738572537899017, 0.008646425791084766, -0.02562400884926319, -0.008874492719769478, -0.007781112566590309, -0.01825878396630287, 0.013764520175755024, -0.015414652414619923, -0.01974792778491974, 0.000703486381098628, 0.006184643134474754, 0.00417228601872921, 0.009223301894962788, -0.003736275713890791, 0.009726391173899174, 0.02879011631011963, -0.03823477774858475, -0.008948279544711113, 0.19340088963508606, -0.007962225005030632, 0.006694439798593521, 0.02377264015376568, -0.0018295675981789827, 0.025288615375757217, 0.030534159392118454, 0.009860548190772533, 0.003189585404470563, -0.004256134387105703, -0.006566990632563829, 0.015615887939929962, 0.004158870317041874, 0.004936981946229935, 0.0022421006578952074, 0.003753045340999961, -0.03563212975859642, -0.013523037545382977, -0.0032415713649243116, -0.05116752162575722, 0.0032315095886588097, -0.015790292993187904, -0.0022135924082249403, -0.005772109609097242, 0.015535393729805946, -0.0014966903254389763, -0.002367872977629304, 0.003464607521891594, 0.030936630442738533, 0.008807414211332798, -0.017601413652300835, -0.004088438116014004, -0.015132922679185867, 0.0055809360928833485, -0.01049779448658228, 0.014757282100617886, 0.02905843034386635, -0.012349162250757217, 0.004121977370232344, -0.00827749352902174, 0.008686672896146774, -0.004497617017477751, 0.006463019177317619, -0.005634598899632692, -0.024604415521025658, 0.03455887362360954, -0.013315093703567982, -0.010330097749829292, -0.017185525968670845, 0.007593292742967606, -0.019425950944423676, 0.0038402474019676447, 0.03302948176860809, -0.0025406002532690763, -0.008056134916841984, -0.0035350399557501078, 0.016487909480929375, 0.012832127511501312, -0.02838764525949955, 0.01316081266850233, -0.021934688091278076, 0.02854863367974758, -0.0023829657584428787, 0.016783054918050766, -0.018822243437170982, 0.014596293680369854, 0.0027954988181591034, -0.005171756725758314, 0.00800247211009264, -0.018325861543416977, 0.012000354006886482, -0.01585737057030201, 0.000591968244407326, -0.0038503091782331467, -0.010202648118138313, -0.011846072971820831, 0.023464079946279526, -0.024456841871142387, -0.0012191528221592307, -0.007264607585966587, 0.006285260897129774, -0.03509550169110298, 0.010779524222016335, -0.011919859796762466, -0.0024651370476931334, -0.030400002375245094, 0.01572321355342865, -0.019788173958659172, -0.014113328419625759, 0.009699559770524502, -0.01295286975800991, -0.03493451327085495, -0.006664254702627659, -0.005490379873663187, 0.0027569287922233343, -0.005788879469037056, 0.03182206675410271, 0.016474492847919464, 0.016072021797299385, -0.006929215043783188, -0.010813063010573387, -0.009699559770524502, 0.03396858274936676, -0.000706840306520462, -0.023705562576651573, 0.01155763491988182, 0.017869727686047554, 0.0015310681192204356, 0.018889321014285088, -0.01825878396630287, 0.022578641772270203, -0.01404624991118908, 0.0004783539625350386, -0.025141043588519096, 0.023128686472773552, 0.02616063691675663, -0.0003789938346017152, -0.01825878396630287, -0.0014044572599232197, 0.022887203842401505, 0.019144220277667046, -0.03176840394735336, 0.003776522818952799, 0.0006099956226535141, -0.0057117389515042305, -0.022350575774908066, -0.019680848345160484, 0.03412957116961479, 0.010075199417769909, -0.010135569609701633, 0.021639542654156685, -0.043225422501564026, -0.011597882956266403, -0.0045278025791049, -0.024550752714276314, 0.0243495162576437, 0.008948279544711113, -0.023316506296396255, 0.03383442386984825, -0.004242718685418367, 0.006147749722003937, 0.0042091794312000275, 0.007439012173563242, 0.00044607240124605596, -0.007036540657281876, -0.004651898052543402, 0.014878024347126484, -0.02225666493177414, 0.001718888059258461, 0.0026076789945364, -0.03509550169110298, -0.01279858872294426, -0.0035887027624994516, -0.003099029418081045, 0.003464607521891594, -0.004963813349604607, -0.009075729176402092, -0.02905843034386635, 0.012033892795443535, 0.017641659826040268, -0.022243250161409378, 0.022618889808654785, 0.03155375272035599, -0.016903797164559364, -0.010517917573451996, -0.013040071353316307, -0.16989657282829285, 0.01654157228767872, 0.003950926940888166, -0.009344043210148811, 0.0263082105666399, 0.020794352516531944, 0.02561059221625328, -0.001204060041345656, -0.004987290594726801, -0.012302207760512829, 0.022377407178282738, 0.02798517420887947, -0.04309126362204552, -0.013563284650444984, -0.016233010217547417, 0.015414652414619923, -0.015790292993187904, 0.010008120909333229, 0.04483530670404434, 0.011913151480257511, 0.01573663018643856, 0.00016706752649042755, 9.773555211722851e-05, -0.007123742718249559, -0.006151103880256414, 0.008391527459025383, -0.00403812900185585, 0.0022370698861777782, 0.013140689581632614, -0.024966638535261154, -0.009310503490269184, 0.011664961464703083, 0.006013592705130577, -0.030587822198867798, 0.020365050062537193, 0.001037202193401754, -0.018017299473285675, 0.0029430717695504427, 0.006687731947749853, 0.010699030011892319, 0.01825878396630287, -0.01377793587744236, 0.010538041591644287, -0.01293274573981762, -0.004145454615354538, 0.03286849334836006, -0.009712975472211838, 0.004319859202951193, -0.008116505108773708, -0.012087555602192879, 0.0035417478065937757, -0.004242718685418367, 0.030292676761746407, 0.009491615928709507, 0.029621891677379608, 0.02145172283053398, 0.024269022047519684, 0.000430979736847803, 0.0021330981981009245, -0.02295428141951561, 0.007405472919344902, -0.005362930707633495, 0.024161696434020996, -0.00862630270421505, -0.000703486381098628, -0.006067255511879921, -0.004420476965606213, 0.021599294617772102, -0.01989549957215786, 0.020700443536043167, 0.009223301894962788, 0.0027284203097224236, 0.03171474114060402, -0.009357458911836147, -0.01825878396630287, 0.006962754298001528, -0.031500089913606644, -0.002290732692927122, -0.01030326634645462, -0.017024537548422813, -0.053770169615745544, 0.050147928297519684, -0.010826478712260723, -0.005336099304258823, 0.011524096131324768, 0.01454263087362051, -4.470157000469044e-05, -0.01014898531138897, -0.02326284348964691, -0.0008472860208712518, 0.010048368014395237, -0.009156223386526108, -0.0065401592291891575, -0.011430186219513416, 0.017158694565296173, 0.011021006852388382, 0.023839719593524933, -0.01105454657226801, -0.011336276307702065, -0.014649956487119198, 0.007425596471875906, -0.02393362857401371, -0.004846425727009773, 0.033753931522369385, 0.01654157228767872, -0.008706796914339066, -0.015401236712932587, 0.01655498705804348, 0.041266728192567825, 0.004346690606325865, 0.0018127979710698128, 0.009276964701712132, 0.029246250167489052, 0.008163460530340672, 0.0010229479521512985, 0.030239013954997063, -0.02339700050652027, -0.004849779885262251, 0.020941926166415215, -0.022323744371533394, 0.0703519880771637, 0.005443424917757511, -0.0009676081826910377, -0.002052603755146265, -0.016072021797299385, -0.027193646878004074, -0.1144091859459877, -0.004353398457169533, -0.004621712490916252, 0.011067962273955345, -0.0003745918220374733, 0.018674669787287712, -0.007895146496593952, 0.01726602017879486, 0.001993910176679492, -0.0062349517829716206, -0.017641659826040268, -0.034880850464105606, 0.0007605031132698059, -0.008840953931212425, 0.00024483673041686416, -0.026053311303257942, -0.0059968228451907635, -0.01699770614504814, 0.01391209289431572, 0.03321729972958565, -0.01342912670224905, -0.02405437082052231, 0.018164873123168945, -0.03241235762834549, 0.010034952312707901, -0.021344397217035294, -0.020633364096283913, 0.008921448141336441, 0.02548985183238983, 0.013046779669821262, -0.005681553855538368, -0.0025070609990507364, 0.0010212709894403815, -0.0009323919657617807, -0.006838658824563026, -0.010591704398393631, -0.03174157440662384, -0.006734686903655529, 0.020150398835539818, -0.04217899590730667, 0.015481730923056602, -0.01851368136703968, 0.019238129258155823, -0.016742808744311333, 0.008539100177586079, -0.0016165932174772024, -0.014985349960625172, 0.007821359671652317, 0.006258429493755102, -0.02451050467789173, -0.019788173958659172, 0.002057634759694338, -0.02603989653289318, -0.025972817093133926, 0.024684909731149673, -0.017856311053037643, 0.025275200605392456, -0.002612709766253829, -0.009666020050644875, -0.01016910932958126, -0.02559717744588852, 0.012651016004383564, -0.0025271845515817404, 0.026777759194374084, 0.016085438430309296, -0.011342983692884445, -0.020660195499658585, -0.014515799470245838, 0.040005650371313095, 0.003219770733267069, -0.014851192943751812, -0.0058458964340388775, -0.022753046825528145, 0.009645896032452583, -0.011047838255763054, 0.019023478031158447, -0.0161525160074234, -0.005993469152599573, 0.015347573906183243, -0.0058425422757864, -0.006228243932127953, -0.027354635298252106, 0.009632480330765247, -0.006110856309533119, 0.023276260122656822, 0.012208296917378902, 0.02240423858165741, -0.012268668040633202, -0.011302736587822437, -0.005104678217321634, -0.0014908208977431059, 0.009558694437146187, -0.012939454056322575, -0.03308314457535744, 0.007197529077529907, 0.04231315478682518, -0.0012426303001120687, -0.00465860590338707, -0.01835269294679165, 0.00013405230129137635, -0.034988176077604294, 0.003181200474500656, -0.054038483649492264, 0.019291792064905167, 0.01793680526316166, 0.02338358573615551, -0.002689850050956011, -0.012208296917378902, -0.004816240165382624, -0.014086497016251087, -0.03815428167581558, -0.006634069141000509, -0.019546691328287125, 0.02394704520702362, -0.019103972241282463, -0.006174581125378609, -0.017561165615916252, -0.0001742994354572147, 0.008324448950588703, -0.019949162378907204, 0.013167520985007286, 0.005993469152599573, -0.0033539277501404285, 0.008384820073843002, 0.030024362727999687, -0.0129998242482543, -0.013348632492125034, 0.009203177876770496, 0.026375288143754005, 0.019546691328287125, 0.0038301856257021427, -0.03048049658536911, 0.013502913527190685, -0.02228349633514881, 0.014180406928062439, -0.0022437777370214462, 0.00469214515760541, 0.021679788827896118, -0.020230893045663834, -0.0042225951328873634, -0.0003561452031135559, 0.048779524862766266, 0.0008007502765394747, -0.01625984162092209, 0.013925508596003056, -0.009411121718585491, 0.011202119290828705, 0.029917037114501, -0.024604415521025658, -0.005926390644162893, 0.012510150671005249, -0.01509267557412386, 0.004028067458420992, 0.017977053299546242, -0.004544572439044714, -0.015079259872436523, 0.012939454056322575, -0.020526038482785225, 0.03163424879312515, -0.008472021669149399, 0.004024713300168514, -0.023759225383400917, 0.008995234034955502, -0.011094793677330017, 0.005493734031915665, -0.002081112237647176, 0.02379947155714035, -0.011913151480257511, -0.014059665612876415, -0.011799118481576443, -0.01552197802811861, -0.016944043338298798, 0.008740335702896118, 0.011436893604695797, 0.005919682793319225, 0.0198820848017931, 0.0076067084446549416, 0.03579311817884445, 0.001125242793932557, 0.004769285209476948, -0.021907856687903404, 0.016903797164559364, -0.017198942601680756, -0.011027715168893337, -0.0307756420224905, 0.011275905184447765, 0.04105207696557045, -0.002022418426349759, 0.011088085360825062, 0.013516329228878021, -0.004500971175730228, 0.016246426850557327, 0.013938924297690392, -0.003380759386345744, 0.010839894413948059, -0.020217476412653923, 0.0036826126743108034, 0.01545489951968193, -0.010269726626574993, -0.0009583848877809942, 0.008532392792403698, 0.02656310796737671, -0.021089497953653336, 0.029434069991111755, -0.0018597530433908105, -0.015360989607870579, -0.011067962273955345, -0.016233010217547417, -0.017158694565296173, -0.020687026903033257, 0.002401412231847644, 0.020016241818666458, 0.01112833246588707, -0.021679788827896118, 0.025919154286384583, 0.01683671772480011, -0.012577229179441929, 0.0019201237009838223, 0.0011965137673541903, -0.01197352260351181, -0.005104678217321634, 0.03394174948334694, -0.003467961447313428, 0.03968367353081703, 0.024322684854269028, 0.011443601921200752, 0.008706796914339066, 0.0030168581288307905, 0.024738572537899017, 0.019171051681041718, 0.0019385702908039093, 0.004876611288636923, 0.01570979878306389, 0.012966285459697247, -0.04271562397480011, 0.009531863033771515, 0.00476257735863328, -0.03187572956085205, 0.00786831509321928, 0.015226832590997219, -0.01434139534831047, 0.04786725714802742, 0.01850026659667492, -0.018674669787287712, 0.00505101541057229, 0.0050174761563539505, 0.014314563944935799, 0.025100795552134514, -0.007224360480904579, 0.012208296917378902, -0.010564872995018959, -0.004417122807353735, -0.012127802707254887, 0.02032480202615261, -0.013952339999377728, -0.011571050621569157, 0.019828421995043755, -0.0017708739032968879, 0.037215184420347214, -0.0268582534044981, -0.011577758938074112, 0.031661078333854675, -0.003397529013454914, 0.040139809250831604, -0.004420476965606213, -0.004531156737357378, -0.0054333629086613655, 0.029890205711126328, -0.000501831469591707, 0.009994705207645893, -0.039442192763090134, 0.011443601921200752, 0.0008711827686056495, -0.011108209379017353, -0.021599294617772102, 0.01642083004117012, -0.0018027361948043108, 0.009303796105086803, -0.01132956799119711, 0.03742983564734459, 0.00981359276920557, -0.015414652414619923, 0.0007093557505868375, -0.01656840369105339, -0.01950644515454769, -0.004360106308013201, -0.008485437370836735, 0.00018991615797858685, -0.013241306878626347, -0.012630891986191273], "ab546a42-b0aa-4a4e-a411-32be5422b8cb": [-0.004159012343734503, -0.012033135630190372, 0.0032814538571983576, -0.009840946644544601, -0.007901440374553204, 0.04116670787334442, -0.010517042130231857, -0.017318973317742348, -0.006631200201809406, -0.02645650878548622, 0.031988199800252914, 0.010878992266952991, 0.028409672901034355, -0.002815357642248273, -0.007109247613698244, 0.026743335649371147, 0.0363042838871479, -0.0037834036629647017, 0.040101345628499985, -0.03523892164230347, -0.005767300259321928, 0.011008747853338718, 0.008434121496975422, 0.026866262778639793, -0.017605802044272423, 0.04231402277946472, 0.012183379381895065, -0.01103606540709734, -0.0111453328281641, -0.005395106039941311, -0.02149847336113453, -0.007635099813342094, 0.005975592415779829, -0.00971802044659853, -0.03469258174300194, -0.021566765382885933, -0.00820875633507967, -0.01832970231771469, 0.009847776032984257, -0.003477794583886862, 0.0006487785722129047, -0.015051662921905518, -0.014013617299497128, 0.009567776694893837, -0.01888970099389553, 0.0384623259305954, 0.0044458406046032906, -0.0256643146276474, -0.02492675557732582, 0.004449255298823118, 0.020228233188390732, -0.003974622581154108, -0.03854427859187126, 0.004387792199850082, -0.00781948957592249, -0.0030116986017674208, 0.019722869619727135, 0.011958014219999313, -0.0030612105038017035, 0.025609681382775307, -0.008898510597646236, -0.0057638855651021, 0.006054128520190716, 0.013235082849860191, -0.030157960951328278, 0.0006278640357777476, 0.005005838815122843, -0.006839492358267307, 0.0023543834686279297, -0.011992160230875015, 0.02983015589416027, 0.02397066168487072, -0.0001571794127812609, -0.0009868263732641935, 0.03021259419620037, -0.04184963181614876, -0.026101386174559593, -0.009492655284702778, -0.003916573710739613, 0.01208776980638504, 0.0062726647593081, -0.027972601354122162, 0.003346331650391221, -0.005531691014766693, 0.01641751267015934, -0.008700462058186531, 0.008249731734395027, 0.025800900533795357, -0.0290379635989666, -0.026196995750069618, 0.005128765478730202, 0.006859980057924986, 0.0077853430993855, 0.017824338749051094, 0.0014580445131286979, 0.02603309415280819, -0.024585293605923653, 0.03411892428994179, 0.001736336387693882, -0.004223890136927366, -0.012381426990032196, -0.009581435471773148, -0.021266279742121696, -0.005292667541652918, -0.02737162634730339, 0.003235356416553259, 0.008188269101083279, -7.341441960306838e-05, 0.003981451969593763, -0.005982421338558197, -0.013569716364145279, 0.017619460821151733, -0.0014332884456962347, -0.037642817944288254, -0.022113105282187462, -0.025145292282104492, 0.016158001497387886, -0.010359969921410084, -0.041057441383600235, -0.03135990723967552, -0.0010995089542120695, 0.010059482418000698, -0.017073120921850204, -0.006931687239557505, 0.008925827220082283, -0.001779019134119153, 0.006002909038215876, -0.031250640749931335, 0.014997029677033424, 0.0008041440160013735, 0.03245258703827858, 0.0005296935560181737, 0.014177519828081131, -0.003457306884229183, -0.015912149101495743, 0.007799001410603523, -0.03493843600153923, -0.004080475773662329, -0.005739983171224594, -0.045045722275972366, 0.016335561871528625, 0.014450689777731895, 0.002784626092761755, -0.04001939669251442, 0.002140969270840287, 0.016308244317770004, 0.0051048630848526955, 0.01583019830286503, -0.02813650295138359, 0.026483824476599693, 0.03176966309547424, 0.016130683943629265, 0.011370697990059853, -0.00801753718405962, 0.002700967714190483, -0.02264578826725483, 0.010250701569020748, -0.010715090669691563, -0.006190713495016098, -0.02132091298699379, 0.004302426241338253, 0.01639019511640072, 0.009035095572471619, -0.005016082897782326, 0.006552663631737232, 0.03308087959885597, 0.009506314061582088, -0.009192167781293392, -0.025773582980036736, -0.01607605069875717, 0.014450689777731895, 0.03302624449133873, -0.030130643397569656, 0.007641928736120462, -0.019354090094566345, 0.0019804819021373987, 0.03969158977270126, 0.03204283490777016, -0.013597032986581326, 0.01188289187848568, -0.03919988498091698, -0.010503384284675121, 0.021088719367980957, 0.011944355443120003, -0.028191136196255684, -0.00042149267392233014, -0.018234092742204666, -0.011377527378499508, -0.007027296349406242, -0.009185339324176311, 0.017318973317742348, 0.016526781022548676, -0.019763844087719917, 0.0032968195155262947, -0.6350654363632202, -0.016198977828025818, -0.009007778950035572, -0.010428261943161488, -0.004759985953569412, 0.016895560547709465, 0.029365766793489456, -0.006218030583113432, -0.009458509273827076, 0.004787303041666746, -0.013795081526041031, 0.015953123569488525, -0.008229244500398636, -0.021566765382885933, -0.0336272194981575, -0.008140464313328266, 0.021853594109416008, -0.040265247225761414, 0.010633139871060848, -0.018753115087747574, -0.013460448011755943, -0.007655587512999773, -0.006562907714396715, -0.005500959698110819, -0.014191177673637867, -0.012620450928807259, 0.024380415678024292, -0.008167780935764313, 0.005678520072251558, 0.052940331399440765, -0.041412562131881714, 0.022932615131139755, 0.014259470626711845, 0.019517991691827774, 0.05375984311103821, -0.017482874915003777, -0.020952133461833, -0.0030577960424125195, 0.017687752842903137, 0.01644483022391796, -0.045209623873233795, -0.01979116164147854, 0.036686722189188004, 0.011698502115905285, 0.005562422797083855, 0.01890335977077484, 0.012729719281196594, -0.0111453328281641, -0.007355100475251675, 0.015434101223945618, 0.0068975407630205154, -0.008775584399700165, -0.03269844129681587, -0.003558038268238306, -0.02324676141142845, -0.0032268199138343334, 0.025746265426278114, -0.0230555422604084, -0.005845836363732815, 0.023478955030441284, 0.026729678735136986, 0.027289675548672676, -0.003477794583886862, 0.013173620216548443, -0.005360960029065609, 0.011637039482593536, -0.011370697990059853, 0.014245811849832535, 0.02659309282898903, -0.026142362505197525, 0.010571676306426525, 0.01566629484295845, 0.004544864874333143, -0.01386337447911501, 0.02983015589416027, -0.0005117668188177049, 0.03321746364235878, -0.006129250396043062, -0.004647303372621536, 0.012763865292072296, 0.020037014037370682, -0.0307589340955019, -0.028163820505142212, -0.014136544428765774, 0.007225344888865948, -0.010257530957460403, -0.016280928626656532, 0.026483824476599693, -0.007122905924916267, -0.006900955457240343, 0.005330228246748447, 0.02376578375697136, 0.0018712140154093504, 0.003739013336598873, 0.024011636152863503, 0.0014648737851530313, 0.0016902389470487833, 0.002801699098199606, 0.021075060591101646, -0.014669225551187992, 0.0022724324371665716, -0.006064372602850199, 0.0008438390213996172, -0.02077457308769226, 0.012989230453968048, -0.02570529095828533, -0.03512965142726898, -0.01733263209462166, 0.03939110413193703, -0.001526337000541389, 0.011022406630218029, -0.030649665743112564, -0.011637039482593536, 0.0017704826314002275, 0.017305314540863037, -0.018794091418385506, 0.009875092655420303, 0.00039502931758761406, 0.028737476095557213, -0.01793360523879528, 0.008338511921465397, -0.0034402338787913322, 0.003779988968744874, -0.02963893674314022, 0.024653585627675056, 0.02000969834625721, 0.01179411169141531, -0.0011225576745346189, -0.017305314540863037, 0.007375588174909353, 0.0025353585369884968, 0.0015758490189909935, 0.006088274996727705, 0.0044560846872627735, -0.003091942286118865, -0.02283700555562973, 0.009130705147981644, -0.0067677851766347885, 0.012360939756035805, -0.038407690823078156, -0.010127775371074677, 0.008242902345955372, 0.016198977828025818, 0.014928736723959446, 0.0001137496656156145, -0.034829165786504745, -0.017291657626628876, -0.01113850437104702, -0.03168771043419838, 0.002842674497514963, 0.00915802177041769, -0.015311175025999546, 0.005586325190961361, 0.02473553828895092, 0.017496533691883087, -0.0149014201015234, -0.005436081439256668, 0.009758995845913887, -0.0032182831782847643, -0.0151882478967309, 0.024762853980064392, 0.013364839367568493, -0.024653585627675056, 0.004145353566855192, 0.023356029763817787, -0.0066619315184652805, -0.00952680129557848, 0.010155091993510723, 0.009608752094209194, -0.02489943988621235, -0.0028170649893581867, -0.021034084260463715, -0.001064509036950767, 0.04488182067871094, -0.017441900447010994, 0.00022173715115059167, 0.006907784845679998, -0.008557047694921494, -0.01771507039666176, 0.003978037275373936, -0.008167780935764313, 0.0014964590081945062, -0.012907279655337334, -0.004940961021929979, 0.0457286462187767, 0.0018131653778254986, 0.010824359022080898, -0.0019292626529932022, 0.01501068752259016, 0.027836015447974205, -0.0069829062558710575, 0.003616086905822158, 0.005907299928367138, -0.0036877940874546766, 0.02117067016661167, -0.008946315385401249, 0.0145189817994833, 0.026729678735136986, -0.0015630441484972835, 0.014764835126698017, 0.02377944253385067, -0.0015442637959495187, 0.020993109792470932, -0.022222373634576797, 0.008461439050734043, -0.028218453750014305, -0.00391998840495944, -0.006573151331394911, 0.05020863190293312, -0.020077990368008614, 0.010790212079882622, -0.013446790166199207, -0.004203402437269688, -0.006702907383441925, 0.017974581569433212, 0.023178469389677048, 0.022918958216905594, 0.008099488914012909, -0.020842865109443665, 0.00019719454576261342, 0.03474721685051918, -0.017291657626628876, 0.009533630684018135, 0.005982421338558197, -0.00622144527733326, -0.021047743037343025, 0.00651851762086153, 0.03166039660573006, 0.021225303411483765, -0.011240942403674126, 0.009280948899686337, -0.005357545334845781, -0.0035068190190941095, 0.030076010152697563, 0.00736192986369133, -0.0115277711302042, 0.017455559223890305, -0.025213584303855896, 0.05072765797376633, -0.044827185571193695, -0.0063682738691568375, 0.0018797506345435977, 0.0003542672493495047, -0.022317983210086823, -0.021047743037343025, 0.006911199074238539, -0.0014495080104097724, -0.0005442057154141366, 0.004384377505630255, 0.04138524457812309, -0.012504353187978268, 0.00486583961173892, -0.010032165795564651, -0.010407774709165096, 0.02168969251215458, -0.03551208972930908, 0.003023649798706174, 0.019900429993867874, 0.00736192986369133, 0.029365766793489456, 0.00839997548609972, -0.004459498915821314, 0.007239003200083971, -0.00141450809314847, 0.05113741010427475, 0.005931202322244644, 0.012436061166226864, 0.02550041303038597, -0.03340868279337883, -0.02173066884279251, -0.01776970364153385, -0.00831119529902935, 0.0073141250759363174, 0.0038995007053017616, 0.02718040905892849, 0.009403875097632408, -0.0016885315999388695, -0.013364839367568493, 0.017797021195292473, 0.012436061166226864, -0.01906726136803627, -0.03466526418924332, 0.035402823239564896, -0.004520962480455637, 0.006829248275607824, -0.021416522562503815, -0.031223323196172714, -0.0005834738840349019, -0.013952154666185379, 0.043515969067811966, -0.0077102212235331535, 0.01481946837157011, 0.014491665177047253, -0.012804840691387653, 0.0013820690801367164, 0.0028170649893581867, 0.022358959540724754, -0.02963893674314022, 0.03297160938382149, -0.0034129167906939983, 0.011589234694838524, 0.011281917802989483, -0.024435050785541534, 0.013638009317219257, 0.009950214996933937, -0.011561917141079903, -0.0020197501871734858, -0.00768290413543582, 0.007874123752117157, -0.03436477854847908, 0.004121451172977686, -0.00792875699698925, -0.005197057966142893, -0.005152667872607708, -0.007792172487825155, 0.01397264190018177, -0.019900429993867874, 0.009854605421423912, 0.015775563195347786, -0.0017269462114199996, 0.004384377505630255, -0.029010646045207977, -0.01607605069875717, -0.009267290122807026, 0.1068640798330307, 0.017045803368091583, -0.02756284549832344, 0.0024346269201487303, 0.00848875567317009, 0.02117067016661167, -0.011671185493469238, -0.03376380354166031, 0.02323310263454914, -0.010906309820711613, 0.021785302087664604, -0.012838986702263355, 0.023287735879421234, 0.025254560634493828, 0.014805810526013374, -0.013398985378444195, -0.02136188931763172, -0.005477057304233313, -0.00896680261939764, 0.004336572717875242, 0.014109226875007153, 0.0032438929192721844, 0.004090719856321812, 0.015898490324616432, -0.037260379642248154, -0.0162399522960186, 0.021648718044161797, 0.011835087090730667, 0.012791181914508343, -0.013965812511742115, -0.015147272497415543, 0.019135553389787674, 0.012798011302947998, 0.017114095389842987, -0.008946315385401249, -0.0019138968782499433, 0.017032144591212273, -0.0031056005973368883, -0.00933558214455843, 0.018971651792526245, 0.020897500216960907, 0.021744325757026672, 0.013241912238299847, -0.009793141856789589, 0.012019476853311062, -0.010032165795564651, -0.00794241577386856, 0.002844381844624877, -0.01888970099389553, -0.009096559137105942, 0.053486671298742294, 0.004582425579428673, -0.002113652415573597, -0.0028597477357834578, 0.030267229303717613, -0.011295576579868793, -0.004657547455281019, -0.006515102926641703, -0.007498514838516712, 0.030868202447891235, 0.005490715615451336, 0.0015357271768152714, 0.007908269762992859, -0.013439960777759552, -0.016349220648407936, -0.020132623612880707, -0.024435050785541534, -0.013255571015179157, -0.017100438475608826, 0.017810679972171783, -0.01790628954768181, -0.021921886131167412, -0.011923867277801037, -0.00012324658746365458, -0.0030356007628142834, -0.003848281456157565, 0.03529355674982071, -0.016130683943629265, -0.0015357271768152714, -0.000482742500025779, -0.02186725288629532, -0.041057441383600235, 0.012094599194824696, -0.024038953706622124, -0.028218453750014305, -0.014013617299497128, -0.004346816334873438, 0.005057058297097683, -0.025636998936533928, 0.005470227915793657, 0.006286323070526123, 0.01965457573533058, -0.0014810932334512472, -0.018944334238767624, 0.0081199761480093, 0.00867997482419014, 0.0032677953131496906, -0.01084484625607729, 0.005214130971580744, -0.0018865797901526093, 0.006740468088537455, -0.027521871030330658, -0.00047121813986450434, -0.021252620965242386, 0.008406804874539375, 0.001989018637686968, 0.002525114454329014, 0.036167699843645096, -0.004746327642351389, -0.012688742950558662, 0.007047784049063921, -0.024626269936561584, -0.0012420695275068283, 0.0008946315501816571, -0.0009014607639983296, 0.015283857472240925, 0.017305314540863037, 0.008809730410575867, -0.005579495802521706, 0.0057638855651021, -0.009567776694893837, -0.018247751519083977, 0.0052175456658005714, -0.002029994037002325, -0.025596022605895996, 0.0023014566395431757, 0.010134604759514332, -0.027836015447974205, 0.01965457573533058, -0.011958014219999313, 0.020815549418330193, 0.011500454507768154, 0.009219485335052013, -0.019859453663229942, -0.04619303718209267, 0.005900470539927483, -0.018561897799372673, 0.004841937217861414, -0.02397066168487072, 0.002479017246514559, -0.0015032882802188396, -0.013296546414494514, -0.0027402357663959265, -0.015106297098100185, -0.0011797526385635138, -0.030048692598938942, -0.03204283490777016, 0.0007896318566054106, -0.0027914552483707666, -0.0021614572033286095, -0.009943385608494282, -0.03414624184370041, -0.0286555252969265, -0.01539312582463026, -0.02151213213801384, -0.026128703728318214, -0.0016859706956893206, 0.005965348333120346, 0.01813848316669464, -0.006358030252158642, 0.03395502269268036, -0.015461417846381664, -0.006054128520190716, 0.0108585050329566, 0.008659486658871174, 0.009813630022108555, -0.014942395500838757, -0.01472385972738266, -0.03900866582989693, -0.006737053394317627, 0.013091669417917728, 0.01056484691798687, 0.01755116879940033, 0.008359000086784363, -0.01454629935324192, 0.04193158447742462, -0.005279008764773607, -0.0036195016000419855, -0.02607407048344612, -0.03092283569276333, -0.028546258807182312, -0.004080475773662329, -0.006651687901467085, 0.0007439612527377903, -0.00485218083485961, 0.02357456460595131, 0.04296962916851044, 0.011459479108452797, 0.017100438475608826, -0.02114335261285305, 0.03794330358505249, -0.01830238476395607, -0.0011874355841428041, -0.004650718066841364, 0.040101345628499985, -0.016349220648407936, 0.013016547076404095, 0.003998524975031614, 0.00989558082073927, -0.00035661482252180576, 0.011042894795536995, 0.005958518944680691, 0.0027419431135058403, -0.020637989044189453, -0.022304324433207512, 0.02074725553393364, -0.018343361094594002, -0.015980441123247147, 0.023506272584199905, -0.03316282853484154, -0.0290379635989666, -0.009021436795592308, -0.021757984533905983, -0.0294204019010067, -0.01980482041835785, -0.014573615975677967, -0.017264340072870255, 0.021006768569350243, -0.0031448688823729753, -0.010052653960883617, 0.005835592746734619, -0.010250701569020748, 0.05649154260754585, -0.0009193875594064593, 0.03357258439064026, 0.006959003861993551, -0.02168969251215458, 0.01481946837157011, 0.0038755983114242554, -0.0034829166252166033, -0.01537946704775095, 0.003208039328455925, 0.02813650295138359, -0.0149014201015234, 0.008324854075908661, -0.028355039656162262, -2.1674859453924e-05, -0.024284806102514267, -0.03529355674982071, 0.015215565450489521, 0.007771684788167477, -0.00768290413543582, -0.0019975551404058933, 0.0072868079878389835, -0.02890137955546379, 0.023301394656300545, 0.013644837774336338, 0.007341441698372364, -0.006419493351131678, -0.008973632007837296, -0.021375548094511032, -0.0018575555877760053, 0.019777502864599228, 0.02472187951207161, 0.035949163138866425, -0.0003485050692688674, -0.026879921555519104, -0.015078980475664139, 0.006579980719834566, 0.0011660940945148468, -0.03335404768586159, 0.010134604759514332, 0.001359874033369124, -0.0019292626529932022, -0.005490715615451336, -0.01377459429204464, -0.0016287757316604257, -0.0025558462366461754, -0.01644483022391796, 0.024981390684843063, 0.03272575885057449, 0.02511797472834587, -0.004886327311396599, 0.0050707170739769936, 0.027781382203102112, 0.0073141250759363174, 0.0028051137924194336, 0.007799001410603523, -0.005716080777347088, -0.005999494809657335, -0.0125453295186162, -0.0019787747878581285, 0.010100457817316055, -0.00990923959761858, -0.002945113228634, -0.01659507304430008, 0.004770230036228895, -0.0008438390213996172, -0.001359020359814167, -0.034255508333444595, -0.026511142030358315, -0.016321903094649315, -0.0250906590372324, 0.021430181339383125, -0.005500959698110819, 0.01890335977077484, -0.004019012674689293, 0.005582910496741533, -0.03335404768586159, 0.019299454987049103, -0.010660456493496895, -0.007068272214382887, -0.027262359857559204, 0.00015152394189499319, 0.015980441123247147, -0.026948213577270508, 0.008632170036435127, -0.012586304917931557, -0.02376578375697136, 0.00028213331825099885, 0.01358337514102459, 0.005818519741296768, 0.006101933307945728, 0.018917018547654152, -0.00439462112262845, -0.00646729813888669, 0.015147272497415543, -0.020241891965270042, -0.02961162105202675, 0.021402863785624504, 0.004739498253911734, 6.333060446195304e-05, 0.034801848232746124, -0.0238204188644886, 0.018193118274211884, 0.004985351115465164, 0.010004849173128605, 0.0003228953864891082, -0.027795040979981422, 0.02155310846865177, -0.01416386105120182, -0.0073824175633490086, 0.020378477871418, -0.0046882787719368935, 0.0019070676062256098, -0.021075060591101646, -0.0031243811827152967, 0.012326792813837528, 0.008440950885415077, -0.005743397865444422, 0.01387020293623209, 0.0015528002986684442, -0.020911158993840218, -0.008700462058186531, -0.010038995184004307, 0.0032934050541371107, -0.010995090007781982, -0.010161921381950378, -0.037069160491228104, -0.0021495060063898563, -0.016171660274267197, 0.03207014873623848, -0.0026429190766066313, -0.015119955874979496, -0.012579475529491901, -0.027426261454820633, -0.023697491735219955, -0.025049682706594467, -0.019121894612908363, 0.015598002821207047, 0.03600379824638367, -0.001231825677677989, 0.001441825064830482, 0.01454629935324192, -0.012210696004331112, 0.022591153159737587, -0.011288747191429138, -0.016144342720508575, -0.004363889805972576, -0.0038073058240115643, 0.009294606745243073, 0.005767300259321928, -0.02207213081419468, 0.0015570686664432287, 0.01867116428911686, -0.02112969383597374, -0.005514618009328842, 0.0037185256369411945, 0.011281917802989483, 0.005053643602877855, -0.010025336407124996, 0.008454609662294388, 0.017100438475608826, 0.013084840029478073, 0.006986320950090885, -0.020733598619699478, 0.00034039534511975944, -0.0027982844039797783, -0.01980482041835785, -0.020241891965270042, -0.019681893289089203, 0.014833127148449421, -0.02453066036105156, 0.027221383526921272, -0.033135510981082916, -0.00848875567317009, -0.01852092146873474, -0.023834075778722763, 0.02813650295138359, -0.005022912286221981, 0.004630230367183685, 0.03805257007479668, 0.012012647464871407, -0.024011636152863503, -0.0022195056080818176, 0.033108197152614594, 0.009383386932313442, -0.029502352699637413, 0.0277677234262228, -0.024995049461722374, 0.017318973317742348, -0.004828278440982103, -0.0012147525558248162, 0.001849018968641758, 0.0003997244348283857, -0.0005117668188177049, 0.004927302710711956, -0.015707271173596382, 0.03638623654842377, -0.005596568807959557, -0.010592164471745491, -0.011432161554694176, 0.004374133422970772, -0.014177519828081131, -0.000608229951467365, -0.0119102094322443, -0.017660435289144516, -0.015570686198771, 0.0020760914776474237, 0.002506334101781249, -0.0012685328256338835, -0.02321944385766983, 0.002827308839187026, 0.01558434497565031, -0.02603309415280819, 0.012128745205700397, 0.19701015949249268, -0.016376538202166557, 0.0011088992469012737, 0.03786135092377663, -0.006877053063362837, 0.013358009979128838, 0.02623797208070755, -0.01256581675261259, -0.005477057304233313, -0.013105327263474464, 0.008318024687469006, 0.013501424342393875, -0.010551189072430134, 0.004995595198124647, 0.00989558082073927, 0.006218030583113432, -0.037096478044986725, -0.010906309820711613, -0.0005924372817389667, -0.06539688259363174, 0.002364627318456769, -0.0213345717638731, -0.01537946704775095, -0.005630715284496546, 0.02097945101559162, 0.013822398148477077, -0.02170335128903389, -0.0065492489375174046, 0.009431191720068455, 0.0012429232010617852, -0.02265944518148899, -0.009677045047283173, 0.00042170609231106937, 0.0050877900794148445, -0.005166326183825731, 0.01520190667361021, 0.01569361239671707, -0.008912169374525547, 0.006617541424930096, -0.008406804874539375, 0.0023834076710045338, -0.0017841411754488945, -0.0005036570364609361, 0.0008032903424464166, -0.015338491648435593, 0.028163820505142212, -0.00509803369641304, -0.012067281641066074, -0.009376557543873787, 0.015570686198771, -0.01734629087150097, -0.0042307195253670216, 0.045947182923555374, 0.014491665177047253, -0.009991190396249294, -0.005251692142337561, 0.0015920684672892094, -0.0005489008035510778, -0.045045722275972366, 0.01998238079249859, -0.03152380883693695, 0.024052612483501434, 0.01565263792872429, 0.013071181252598763, -0.014478006400167942, 0.029283815994858742, -0.002436334267258644, -0.009212655946612358, 0.01756482571363449, -0.019517991691827774, 0.027781382203102112, -0.001511824899353087, -0.011609721928834915, -0.0015878002159297466, -0.013829227536916733, -0.01584385521709919, 0.01776970364153385, -0.02851894125342369, 0.007771684788167477, 0.0001776671560946852, 0.0044731576927006245, -0.012477036565542221, 0.008884851820766926, -0.0070887599140405655, -0.006074616219848394, -0.016554098576307297, -0.004452669993042946, -0.01569361239671707, -0.027412602677941322, 0.010325822979211807, -0.010025336407124996, -0.022413592785596848, 4.049530980410054e-05, -0.0002817064814735204, 0.014450689777731895, 0.005337057635188103, 0.02362919971346855, 0.001174630713649094, 0.012395085766911507, -0.012948255054652691, -0.01245654933154583, -0.00665851728990674, 0.035757943987846375, 0.012101427651941776, -0.044253528118133545, 0.01849360391497612, 0.021976521238684654, -0.0022212129551917315, 0.003095356747508049, -0.01660873182117939, 0.010544359683990479, -0.007471197750419378, 0.007423392962664366, -0.020064331591129303, 0.013842886313796043, 0.007962903939187527, -0.013877032324671745, -0.019367748871445656, 6.573151767952368e-05, 0.005207302048802376, 0.007177540101110935, -0.025937484577298164, 0.005391691345721483, -8.328481635544449e-05, -0.011862404644489288, -0.02173066884279251, -0.0332447811961174, 0.027836015447974205, 0.009226314723491669, -0.007867294363677502, 0.027508212253451347, -0.0320974662899971, 0.0012710938462987542, 0.004845351446419954, -0.015256540849804878, 0.020733598619699478, 0.02454431913793087, -0.015420442447066307, 0.025964802131056786, 0.0008707291563041508, 0.01348093617707491, -0.00044774258276447654, 0.009492655284702778, 0.008905339986085892, -0.012395085766911507, -0.005559008102864027, 0.010318994522094727, -0.014682883396744728, 0.010175580158829689, -0.0006086567300371826, -0.03092283569276333, -0.013084840029478073, 0.011575575917959213, -0.008912169374525547, 0.013146302662789822, -0.0048965709283947945, 0.0021665790118277073, -0.03704184293746948, 0.011848745867609978, 0.020323842763900757, -0.0273852851241827, 0.012531670741736889, 0.029884791001677513, -0.0071911984123289585, -0.01887604221701622, -0.01984579488635063, -0.17406387627124786, 0.027890650555491447, 0.00127450842410326, -0.014095568098127842, 0.03723306208848953, 0.03258917108178139, 0.015953123569488525, 0.0026514555793255568, 0.00409754877910018, -0.02149847336113453, -0.002965601161122322, 0.014300446026027203, -0.0336272194981575, -0.024612611159682274, -0.011268259957432747, 0.011841916479170322, -0.01434142142534256, 0.019203845411539078, 0.044854503124952316, 0.012838986702263355, 0.008256561122834682, -0.0026275531854480505, 0.0007870708941482008, -0.00495461979880929, -0.005022912286221981, 0.01604873314499855, -0.014054592698812485, 0.007211686111986637, -0.011165820993483067, -0.025814559310674667, -0.02663406915962696, 0.01663604937493801, 0.0050775459967553616, -0.014833127148449421, 0.024489684030413628, 0.0023185298778116703, -0.027235042303800583, 0.003984866198152304, -0.0013632887275889516, 0.007437051273882389, 0.028245771303772926, 0.0011225576745346189, 0.027781382203102112, -0.005664861295372248, 0.002576333936303854, 0.045373525470495224, 0.0019480431219562888, 0.005576081108301878, 0.003616086905822158, -0.012395085766911507, 0.008024366572499275, 0.0014367031399160624, 0.021962862461805344, 0.014491665177047253, 0.029939424246549606, 0.018466288223862648, 0.011452649720013142, 0.017100438475608826, -0.00637851795181632, -0.020077990368008614, 0.01682726852595806, -0.01979116164147854, 0.022167740389704704, -0.022700421512126923, 0.0022280423436313868, -0.013631179928779602, -0.011951184831559658, 0.014997029677033424, -0.0111453328281641, 0.02398432046175003, 0.0038448667619377375, 0.02173066884279251, 0.015488735400140285, -0.0066721756011247635, -0.009062412194907665, -0.005559008102864027, -0.02324676141142845, 0.006877053063362837, 0.005839007440954447, -0.009226314723491669, -0.04072963818907738, 0.030540399253368378, -0.015611661598086357, -0.020050672814249992, 0.015461417846381664, 0.008884851820766926, 0.007266320288181305, -0.010715090669691563, -0.0013410936808213592, 0.00820875633507967, 0.02205847203731537, -0.01056484691798687, -0.0158575139939785, -0.022918958216905594, 0.01471020095050335, 0.013262400403618813, 0.016526781022548676, -0.004790717735886574, -0.011418502777814865, -0.010038995184004307, 0.006699492689222097, -0.029502352699637413, -0.002173408167436719, 0.029584303498268127, 0.02358822338283062, 0.008598024025559425, -0.010503384284675121, 0.006067787297070026, 0.028737476095557213, -0.006289737764745951, -0.007423392962664366, 0.000546339841093868, 0.03428282588720322, -0.01074240729212761, 0.013146302662789822, 0.04471791908144951, -0.01940872333943844, -0.01701848767697811, 0.011070211417973042, -0.013938495889306068, 0.06217347830533981, -0.0004861571069341153, -0.008557047694921494, -0.0043604751117527485, -0.028409672901034355, -0.03097747080028057, -0.1230357363820076, 0.007396075874567032, 0.0019497503526508808, -0.0067575410939753056, -0.005432667210698128, 0.004374133422970772, -0.0073209539987146854, 0.010926797054708004, -0.0023185298778116703, 0.0026429190766066313, -0.0044560846872627735, -0.02775406464934349, -0.006388761568814516, -0.011418502777814865, 0.014983370900154114, -0.03452868014574051, -0.01565263792872429, -0.03078625164926052, 0.009779484011232853, 0.0328623428940773, -0.014764835126698017, -0.011199967004358768, 0.008379487320780754, -0.025718949735164642, 0.03567599132657051, -0.018944334238767624, -0.017400924116373062, 0.025186268612742424, 0.021662374958395958, 0.017701411619782448, -0.01027801912277937, -0.003510233713313937, 0.010954114608466625, -0.0017337753670290112, -0.01588483154773712, -0.012859474867582321, -0.026087729260325432, -0.023492613807320595, 0.028273088857531548, -0.03985549136996269, 0.007355100475251675, -0.011855575256049633, 0.018275069072842598, -0.01471020095050335, 0.015502393245697021, 0.00079731474397704, -0.020692622289061546, 0.02076091431081295, 0.0004857302992604673, -0.021757984533905983, -0.028027234598994255, 0.000357255048584193, -0.024762853980064392, -0.0104760667309165, 0.03447404503822327, -0.025541389361023903, 0.029201865196228027, 0.009485825896263123, -0.021976521238684654, 0.001234386581927538, -0.016308244317770004, 0.020829208195209503, -0.003950720187276602, 0.013918007723987103, 0.006453639827668667, -0.010981431230902672, -0.019299454987049103, -0.019381405785679817, 0.04641157016158104, 0.003122673835605383, -0.01812482438981533, 0.0034129167906939983, -0.027030164375901222, 0.007860464975237846, -0.027617480605840683, 0.020255550742149353, -0.014751176349818707, -0.010776554234325886, 0.011104357428848743, 0.0010184115963056684, -0.010366799309849739, -0.023875052109360695, 0.011063382029533386, -0.0036434039939194918, 0.03146917745471001, 0.005982421338558197, 0.015980441123247147, -0.00895997416228056, 0.0032421855721622705, -0.027521871030330658, -0.0057194954715669155, 0.0052175456658005714, -0.014956053346395493, -0.017318973317742348, 0.005036570597440004, 0.04204085096716881, -0.009062412194907665, -0.01142533216625452, -0.019190188497304916, 0.007443880662322044, -0.026128703728318214, -0.005866324063390493, -0.05698324739933014, 0.021798960864543915, 0.003820964368060231, 0.026005778461694717, -0.006320469081401825, -0.01719604805111885, -0.0053131552413105965, -0.004821449518203735, -0.03357258439064026, 0.014805810526013374, -0.008440950885415077, 0.02148481458425522, -0.012955084443092346, -0.010633139871060848, -0.030540399253368378, -0.009356070309877396, 0.00400876859202981, -0.007566807325929403, 0.006532175932079554, 0.008427292108535767, -0.010141434147953987, -0.002069262322038412, 0.014259470626711845, 0.001808043452911079, -0.012770694680511951, 0.005968763027340174, 0.017414582893252373, 0.023902369663119316, 0.0050707170739769936, -0.02645650878548622, 0.01791994832456112, -0.029939424246549606, 0.005039985291659832, 0.002869991585612297, 0.006859980057924986, 0.008201926946640015, -0.02020091563463211, 0.008468267507851124, 0.004421938210725784, 0.0434340201318264, 0.008079000748693943, -0.0059277876280248165, 0.01716873049736023, -0.023069201037287712, 0.0021614572033286095, 0.041412562131881714, -0.022386275231838226, -0.010189238935709, 0.012477036565542221, -0.013487765565514565, 0.009014607407152653, 0.018575554713606834, -0.0031756004318594933, -0.01847994513809681, -0.00781948957592249, -0.030048692598938942, 0.021839935332536697, -0.001049996935762465, 0.010052653960883617, -0.011589234694838524, 0.00490340031683445, -0.002029994037002325, 0.012879962101578712, -0.008277049288153648, 0.02663406915962696, -0.010776554234325886, -0.007020467426627874, -0.005705837160348892, -0.006986320950090885, -0.031715027987957, -0.0044731576927006245, 0.001679995097219944, 0.012804840691387653, 0.013836056925356388, 0.013918007723987103, 0.019162870943546295, 0.0052175456658005714, 0.010530700907111168, -0.02961162105202675, 0.00924680195748806, -0.008126805536448956, -0.0065765660256147385, -0.031196005642414093, 0.013467277400195599, 0.033873070031404495, -0.004128280561417341, -0.00288194278255105, 0.009397045709192753, 0.0025285291485488415, 0.005565837491303682, 0.016007758677005768, -0.0007362783071585, 0.0056341299787163734, -0.021252620965242386, 0.01980482041835785, 0.009595094248652458, -0.03002137504518032, -0.008536560460925102, 0.01681360974907875, 0.02757650427520275, -0.01737360842525959, 0.020105307921767235, -0.004630230367183685, -0.00674729747697711, 0.006873638369143009, -0.003122673835605383, -0.005046814680099487, -0.010940455831587315, 0.010749236680567265, 0.015488735400140285, 0.008755096234381199, -0.0013043864164501429, 0.03583989664912224, 0.022222373634576797, -0.006091689690947533, -0.0019668235909193754, 0.0085024144500494, -0.012572646141052246, -0.0045585231855511665, 0.03777940198779106, -0.008249731734395027, 0.03603111580014229, 0.020296525210142136, 0.012477036565542221, 0.02040579356253147, 0.011548259295523167, 0.025036023929715157, 0.024872122332453728, 0.018998969346284866, -0.0011259723687544465, 0.02148481458425522, 0.009492655284702778, -0.046903278678655624, -0.002337310230359435, -0.003913159482181072, -0.02644285000860691, -0.0016424341592937708, 0.013644837774336338, -0.008304365910589695, 0.03359990194439888, 0.02170335128903389, -0.015420442447066307, 0.009198997169733047, 0.009847776032984257, 0.013535570353269577, 0.027221383526921272, -0.001247191452421248, 0.01738726533949375, -0.021839935332536697, 0.00040655367774888873, -0.010025336407124996, 0.029393084347248077, -0.016758974641561508, 0.001497312681749463, 0.010366799309849739, -0.0034351118374615908, 0.025568705052137375, -0.016485804691910744, -0.022987250238656998, 0.015270199626684189, 0.015229223296046257, 0.028409672901034355, 0.0037048670928925276, -0.0038721838500350714, -0.01434142142534256, 0.015625320374965668, 0.011630210094153881, 0.012012647464871407, -0.03215210139751434, 0.006163396406918764, 0.018001899123191833, 0.0016748731723055243, -0.01625361107289791, 0.014587274752557278, 0.0006385347223840654, -0.008618511259555817, -0.0179609227925539, 0.03319014608860016, 0.0013137765927240252, -0.00924680195748806, 0.010721920058131218, -0.018466288223862648, -0.007949245162308216, 0.020433111116290092, -0.004500474780797958, -0.0043434021063148975, -0.005681934766471386, -0.01964091882109642], "43f99e98-de95-4dbb-bc53-9ec7f304c384": [-0.008722340688109398, -0.008143150247633457, -0.009018831886351109, 0.004009518772363663, -0.008625809103250504, 0.04032272845506668, -0.013293812982738018, -0.023264171555638313, -0.0016125987749546766, -0.025980854406952858, 0.027263348922133446, 0.014135018922388554, 0.023360705003142357, -0.004871410317718983, 0.0036544194445014, 0.012438816949725151, 0.03458597883582115, -0.0012893895618617535, 0.03811628371477127, -0.032407116144895554, 0.0062125129625201225, 0.009122258052229881, 0.008887823671102524, 0.026449723169207573, -0.015831220895051956, 0.047990113496780396, 0.013514457270503044, -0.014383243396878242, 0.0036992377135902643, -0.005371307022869587, -0.015693318098783493, -0.004316351842135191, 0.007632910273969173, -0.009356692433357239, -0.03624080866575241, -0.015127917751669884, 0.00306316209025681, -0.02478110045194626, 0.005223061889410019, -0.002315040212124586, 0.0007339005242101848, -0.007005453109741211, -0.011921681463718414, -0.003475146135315299, -0.01424534060060978, 0.025649888440966606, 0.004288771655410528, -0.02893196977674961, -0.024270862340927124, 0.008032827638089657, 0.01869959570467472, 0.009515280835330486, -0.029400838539004326, 0.0054816291667521, -0.006419367156922817, -0.006540031637996435, 0.01529340073466301, 0.013486876152455807, -0.017030972987413406, 0.034723881632089615, -0.004681793972849846, -0.006009106524288654, 0.0038233501836657524, 0.011749302968382835, -0.03362065926194191, -0.007701861206442118, 0.005850518587976694, -0.00852927751839161, -0.000688220257870853, -0.009632498025894165, 0.029318097978830338, 0.01555541530251503, 0.0005205823690630496, 0.010487494058907032, 0.030559221282601357, -0.02773221768438816, -0.026256659999489784, -0.013983326032757759, -0.011052895337343216, 0.005150662735104561, 0.00916362926363945, -0.03411711007356644, -0.005274775438010693, 0.008239681832492352, 0.022464336827397346, -0.013031797483563423, 0.006353863514959812, 0.025967063382267952, -0.028352778404951096, -0.026739317923784256, 0.010253059677779675, 0.006388338748365641, 0.008184520527720451, 0.018341049551963806, 0.0006059096194803715, 0.0194166898727417, -0.034834202378988266, 0.026918591931462288, -9.954845154425129e-05, -0.022381596267223358, -0.016217349097132683, -0.0077432324178516865, -0.027746006846427917, -0.006922711618244648, -0.023567557334899902, 0.010825355537235737, 0.0029993820935487747, 0.0021547283977270126, 0.009942779317498207, -0.0067537808790802956, -0.011549344286322594, 0.02098877914249897, -0.01523823942989111, -0.048486560583114624, -0.00961181242018938, -0.02369167096912861, 0.01769290678203106, -0.011363175697624683, -0.03290356695652008, -0.022505708038806915, -0.0020409587305039167, 0.005488524213433266, -0.0036302865482866764, 0.0013850594405084848, 0.0050541311502456665, -0.014424614608287811, 0.00020706940267700702, -0.035965003073215485, 0.013631674461066723, -0.004654213320463896, 0.04332900419831276, -0.006715857889503241, 0.013673044741153717, -0.010135842487215996, -0.006246988661587238, 0.011811359785497189, -0.027608104050159454, -0.004333589691668749, -0.00817073043435812, -0.03615806624293327, 0.026959963142871857, 0.016437992453575134, -0.00728125823661685, -0.03726128861308098, -0.007439846638590097, 0.02151280827820301, 0.010970153845846653, 0.02024410478770733, -0.031055670231580734, 0.017748067155480385, 0.02792528085410595, 0.002153004752472043, 0.019513221457600594, -0.012997321784496307, 0.010494389571249485, -0.018423790112137794, 0.009632498025894165, -0.0015867420006543398, 0.008467220701277256, -0.029621483758091927, 0.014686629176139832, 0.025277551263570786, 0.01354893296957016, -0.006178037263453007, 0.011128741316497326, 0.03439291566610336, 0.014203970320522785, -0.019664913415908813, -0.019540801644325256, -0.022684982046484947, 0.021719662472605705, 0.026822060346603394, -0.02995244972407818, 0.007239887490868568, -0.006750333122909069, 0.009177419357001781, 0.040046922862529755, 0.043080780655145645, -0.015831220895051956, 0.01356961764395237, -0.03761983662843704, -0.006657249294221401, 0.0338137224316597, 0.013900584541261196, -0.01239055022597313, 0.0052023762837052345, -0.01858927309513092, -0.01839620992541313, -0.007246783003211021, -0.007329524494707584, 0.011080475524067879, 0.011949262581765652, -0.021374905481934547, 0.0008166420739144087, -0.629718542098999, -0.018685804679989815, -0.01324554719030857, -0.004343932494521141, -0.009287741966545582, 0.004936913959681988, 0.015114127658307552, -0.0030200674664229155, 0.0017056830693036318, 0.0053299362771213055, -0.015955332666635513, 0.01799629256129265, -0.00317176035605371, -0.015334771946072578, -0.03568919748067856, -0.015017595142126083, 0.012528453022241592, -0.024836262688040733, 0.01169414259493351, -0.019058141857385635, -0.014100543223321438, -0.012128535658121109, -0.0019737312104552984, 7.913240551715717e-05, -0.011266644112765789, -0.0020754344295710325, 0.024050217121839523, -6.237938941922039e-05, 0.013562723062932491, 0.03814386576414108, -0.03058680146932602, 0.030117932707071304, 0.023705460131168365, 0.019968299195170403, 0.050803326070308685, -0.008577543310821056, -0.019016770645976067, 0.00817073043435812, 0.014369453303515911, 0.0157071091234684, -0.04332900419831276, -0.02342965453863144, 0.028904389590024948, 0.02155417948961258, 0.004068127367645502, 0.011266644112765789, 0.004543891176581383, -0.012700831517577171, -0.014948643743991852, 0.007584644015878439, 0.009949673898518085, 0.0016617266228422523, -0.01114942692220211, -0.00446114968508482, -0.014824531972408295, -0.008777501992881298, 0.02199546806514263, -0.01985797844827175, -0.01250087283551693, 0.012431921437382698, 0.016589686274528503, 0.025139648467302322, 0.0016979260835796595, -0.006377996411174536, -0.01682412065565586, 0.0218161940574646, -0.0032476068008691072, 0.025774000212550163, 0.032214052975177765, -0.02724955789744854, 0.0043853032402694225, 0.0057436442002654076, -0.007805288303643465, -0.016920652240514755, 0.024036426097154617, -0.004264638759195805, 0.027594314888119698, -0.003197617130354047, 0.0032803586218506098, 0.02387094311416149, 0.003657866967841983, -0.03102809004485607, -0.03693032264709473, -0.015845011919736862, 0.018920239061117172, -0.009549756534397602, -0.02068539336323738, 0.02500174567103386, -0.005812595598399639, -0.006040134932845831, 0.0035992583725601435, 0.021636921912431717, 0.0009058478754013777, 0.007446741685271263, 0.03673725947737694, -1.414040582403686e-07, -0.004292218945920467, 0.0003910832165274769, 0.009432539343833923, -0.008398269303143024, 0.0011333872098475695, -0.0012066479539498687, 0.002440876327455044, -0.022616030648350716, 0.010046206414699554, -0.0045576817356050014, -0.041812073439359665, -0.018465161323547363, 0.044763192534446716, -0.010094472207129002, -0.0014169494388625026, -0.018037663772702217, -0.01326623186469078, -0.000904985936358571, 0.01761016435921192, -0.019623542204499245, 0.015431303530931473, 0.010115156881511211, 0.02799423225224018, -0.003850930603221059, 0.012425025925040245, -0.004361170344054699, 0.012045794166624546, -0.02616012655198574, 0.031469378620386124, 0.025015534833073616, 0.01998209021985531, -0.0024012294597923756, -0.030641961842775345, -0.005457496270537376, -0.004543891176581383, -0.00884645339101553, 0.006429709959775209, 0.006271121557801962, 0.004181896802037954, -0.004998969845473766, 0.01664484664797783, -0.001117873121984303, 0.008839557878673077, -0.030752284452319145, -0.014824531972408295, 0.0018203145591542125, 0.011976842768490314, 0.004850724712014198, -0.004023308865725994, -0.036378711462020874, -0.01926499605178833, -0.0033182818442583084, -0.03144179657101631, 0.011232168413698673, 0.003557887626811862, -0.004857619758695364, -0.0051368726417422295, -0.0005434225313365459, 0.01245950162410736, -0.01847895048558712, -0.008418954908847809, 0.01125974953174591, 0.005229956936091185, -0.021264584735035896, 0.01638283208012581, 0.018010081723332405, -0.01836862973868847, 0.015403722412884235, 0.02860100381076336, -0.011425232514739037, -0.006264226511120796, 0.008315527811646461, -0.0037061329931020737, -0.03800596296787262, 0.015058966353535652, -0.015651946887373924, 0.006053925026208162, 0.04459770768880844, -0.020809505134820938, -0.0009980702307075262, -0.006250436417758465, -0.01225954294204712, -0.01852032169699669, 0.004840381909161806, -0.007639805320650339, 0.013142120093107224, -0.010004835203289986, -0.005074816290289164, 0.038695476949214935, -0.0012178525794297457, -0.00959802232682705, 0.004137078765779734, 0.011156322434544563, 0.021002570167183876, 0.0006981320329941809, -0.0024064008612185717, 0.008074198849499226, 0.00031609865254722536, 0.02559472620487213, -0.005347174126654863, 0.023264171555638313, 0.028173506259918213, 0.009494595229625702, 0.004874857608228922, 0.024574248120188713, 0.01088741235435009, 0.02293320558965206, -0.007950086146593094, 0.0028925074730068445, -0.023939894512295723, -0.001946150790899992, -0.013404134660959244, 0.03248985856771469, -0.02604980580508709, 0.013149014674127102, -0.017141295596957207, -0.007219202350825071, -0.0012773229973390698, 0.014824531972408295, 0.030200673267245293, 0.017941130325198174, 0.0075708539225161076, -0.018203146755695343, -0.0012299190275371075, 0.022422965615987778, -0.011921681463718414, 0.011735512875020504, 0.007315733935683966, -0.017099924385547638, -0.01937531866133213, 0.006415919400751591, 0.04528722167015076, 0.0246569886803627, -0.0026873773895204067, 0.010253059677779675, -0.0022029944229871035, 0.007867344655096531, 0.018672015517950058, 0.016548315063118935, -0.02170587331056595, 0.01206647977232933, -0.009770400822162628, 0.057808779180049896, -0.041094981133937836, -0.013879898935556412, 0.00628835940733552, 0.0109632583335042, -0.02057507075369358, -0.011183902621269226, -0.007894924841821194, 0.004054337274283171, -0.0029356020968407393, 0.0035820205230265856, 0.03715096786618233, -0.0036337340716272593, 3.31828196067363e-05, -0.006329730153083801, -0.011142531409859657, 0.020712973549962044, -0.039219506084918976, 0.0035475450567901134, 0.018423790112137794, 0.014217760413885117, 0.023898525163531303, 0.009046412073075771, -0.014659048989415169, 0.015831220895051956, 0.007246783003211021, 0.05458185821771622, 0.005257537588477135, -0.0006985629443079233, 0.028132135048508644, -0.029290517792105675, -0.0157071091234684, -0.01915467344224453, -0.005809147842228413, 0.005636769812554121, -0.001784115214832127, 0.02129216492176056, 0.010977048426866531, -0.0006024620961397886, -0.007012348156422377, 0.013280022889375687, 0.007515693083405495, -0.018644435331225395, -0.036599356681108475, 0.021278373897075653, -0.006826179567724466, -0.001526409643702209, -0.024836262688040733, -0.026063594967126846, -0.005126529838889837, -0.025622306391596794, 0.04137078672647476, -0.023857153952121735, 0.01250087283551693, 0.024353602901101112, -0.01642420142889023, 0.0006533136474899948, 0.007860449142754078, 0.009370483458042145, -0.029097452759742737, 0.04252916947007179, 0.005340279079973698, 0.009797981008887291, 0.00609874352812767, -0.026325611397624016, 0.019554592669010162, 0.00854306761175394, -0.011563134379684925, -0.006853760220110416, -0.009570442140102386, 0.016010494902729988, -0.024298442527651787, 0.0025942930951714516, -0.005867756437510252, -0.003844035556539893, -0.00609874352812767, -0.018561692908406258, 0.005516104865819216, -0.01021168939769268, 0.018878869712352753, 0.02391231432557106, -0.001932360464707017, -0.0054850769229233265, -0.024574248120188713, -0.01638283208012581, -0.01585880108177662, 0.10028278827667236, 0.02496037445962429, -0.021871356293559074, 0.002587398048490286, 0.014397033490240574, 0.023664090782403946, -0.009949673898518085, -0.03684758022427559, 0.025718839839100838, -0.014231550507247448, 0.018534112721681595, -0.02120942249894142, 0.0320761501789093, 0.017596375197172165, 0.005888442043215036, -0.005029998254030943, -0.016217349097132683, -0.003057990688830614, -0.012128535658121109, 0.005057578440755606, -0.0016022560885176063, 0.006415919400751591, 0.0022426412906497717, 0.015058966353535652, -0.029566321521997452, -0.01863064430654049, 0.031800344586372375, 0.02443634532392025, 0.020823296159505844, -0.008860243484377861, -0.02251949906349182, 0.026808269321918488, 0.021085310727357864, 0.02458803728222847, -0.01141144149005413, -0.015941543504595757, 0.007219202350825071, 0.008818872272968292, -0.00535062188282609, 0.012121640145778656, 0.015320980921387672, 0.01784459874033928, 0.00792940054088831, -0.009777296334505081, 0.011976842768490314, -0.006805494427680969, -0.01232849434018135, 0.0039612529799342155, -0.0218161940574646, 0.0022598791401833296, 0.05510588735342026, 0.015900172293186188, -0.011535554192960262, -0.007136460859328508, 0.024615617468953133, -0.002840793924406171, -0.01642420142889023, -0.0009877275442704558, -0.006870998069643974, 0.033455174416303635, -0.0029407734982669353, 0.005881546996533871, 0.005498867016285658, -0.008218996226787567, -0.011894101276993752, -0.02631182037293911, -0.025760209187865257, -0.012673251330852509, -0.020588861778378487, 0.015431303530931473, -0.029566321521997452, -0.018906449899077415, -0.0044749402441084385, 0.0008209515362977982, 0.006867550779134035, -0.014838322065770626, 0.032738082110881805, -0.01732056960463524, 0.0002607221540529281, -0.018230726942420006, -0.02439497411251068, -0.04090191796422005, 0.02162313088774681, -0.02649109438061714, -0.017265407368540764, -0.002944221021607518, 0.005574713461101055, 0.00615735212340951, -0.01649315282702446, 0.009694553911685944, 0.0012238858034834266, 0.022988367825746536, 0.004378408193588257, -0.027635686099529266, 0.012121640145778656, -0.004071575123816729, -0.0037854269612580538, -0.01206647977232933, 0.005198928993195295, 0.0038991966284811497, -0.0002096550742862746, -0.03897128254175186, -0.008508591912686825, -0.015389932319521904, 0.006209065672010183, -0.01690686121582985, 0.012514662928879261, 0.02904229238629341, -0.012052688747644424, -0.01922362484037876, 0.013459295965731144, -0.016396621242165565, -0.0051368726417422295, -0.0020788819529116154, -0.0025098277255892754, 0.0078535545617342, 0.018079033121466637, 0.01349377166479826, -0.006164247170090675, -0.0029838678892701864, -0.0073640001937747, -0.023209011182188988, -0.0018927134806290269, 0.003540649777278304, -0.023250382393598557, 0.0015539901796728373, 0.012797363102436066, -0.025691257789731026, 0.01612081564962864, -0.013231756165623665, 0.01638283208012581, 0.005119634792208672, 0.01799629256129265, -0.010390962474048138, -0.04175691306591034, 0.008391374722123146, -0.01503138616681099, 0.003501002909615636, -0.010004835203289986, 0.000282269436866045, -0.008687864989042282, -0.01784459874033928, -0.005619531963020563, -0.015941543504595757, -0.006333177909255028, -0.021043939515948296, -0.028628583997488022, 0.001268704072572291, 0.013500666245818138, -0.003716475563123822, -0.010170318186283112, -0.037123385816812515, -0.0291250329464674, -0.01963733322918415, -0.021650711074471474, -0.033262111246585846, 0.0027959756553173065, -0.001075640437193215, 0.023333122953772545, -0.006795151624828577, 0.03695790097117424, -0.02998002991080284, 0.0140729621052742, 0.011404546909034252, 6.738913361914456e-05, -0.0003479886509012431, -0.017927341163158417, -0.018575483933091164, -0.03455839678645134, -0.012921475805342197, 0.020561281591653824, 0.010997734032571316, 0.008329317905008793, -0.01028753537684679, -0.011039105243980885, 0.02432602271437645, 0.001279908698052168, -0.004923123400658369, -0.025539565831422806, -0.02544303424656391, -0.027028914541006088, -0.009287741966545582, 0.0035285833291709423, 0.0007731165969744325, -0.010866726748645306, 0.015376142226159573, 0.07077162712812424, 0.005764329805970192, 0.014659048989415169, -0.020533699542284012, 0.020340636372566223, -0.02469835989177227, -0.0011790674179792404, 0.0039991759695112705, 0.030559221282601357, -0.0031734840013086796, 0.024229491129517555, 0.01023237407207489, 0.01985797844827175, -0.004961046855896711, 0.004040546715259552, -0.0017996291862800717, 0.006136666517704725, -0.012562928721308708, -0.009591127745807171, 0.008722340688109398, -0.02319522015750408, -0.0184375811368227, 0.029676644131541252, -0.032434698194265366, -0.03193824738264084, -0.007770812604576349, -0.008653389289975166, -0.03193824738264084, -0.0219265166670084, -0.001932360464707017, -0.005302355624735355, 0.009336007758975029, -0.014086753129959106, -0.005819490645080805, 0.0109080970287323, -0.0012480186996981502, 0.05386476591229439, -0.005581608507782221, 0.04018482565879822, 0.0011626915074884892, -0.011763093993067741, 0.0037061329931020737, -0.007060614414513111, -0.001256637624464929, -0.010928782634437084, 0.009039516560733318, 0.01634146086871624, -0.015720898285508156, 0.012128535658121109, -0.016520734876394272, 0.008667179383337498, -0.034089528024196625, -0.031386636197566986, 0.028463101014494896, 0.0053575169295072556, -0.023153850808739662, -0.006519346497952938, -0.007095090113580227, -0.029731804504990578, 0.01761016435921192, 0.0014652153477072716, 0.022354014217853546, -0.008494801819324493, -0.017596375197172165, -0.02511206828057766, 0.00303558143787086, 0.021912727504968643, 0.030862607061862946, 0.044845931231975555, -0.011721722781658173, -0.02679448015987873, -0.012052688747644424, -0.008253471925854683, -0.002854584250599146, -0.02788390964269638, 0.0030545431654900312, -0.00671930518001318, 0.004481835290789604, 0.002749433508142829, -0.004033651668578386, -0.006022897083312273, 0.0033992996904999018, -0.01869959570467472, 0.02829761803150177, 0.030669543892145157, 0.023333122953772545, -0.005605741403996944, 0.00921879056841135, 0.024270862340927124, 0.003878511255607009, 0.0065986402332782745, 0.0003770774928852916, -0.010356486774981022, -0.009749715216457844, -0.0007757022394798696, 0.0005111015634611249, 0.008439640514552593, -0.003197617130354047, -0.015417513437569141, -0.012997321784496307, 0.0054850769229233265, -0.0036888951435685158, -0.00921879056841135, -0.042860135436058044, -0.027608104050159454, -0.002328830538317561, -0.023926105350255966, 0.015472673811018467, -0.009170524775981903, 0.01825830712914467, -0.008253471925854683, 0.017113715410232544, -0.028545843437314034, 0.016134606674313545, -0.018037663772702217, -0.007115775253623724, -0.02747020311653614, 0.009487700648605824, 0.012542243115603924, -0.017334358766674995, 0.011011524125933647, -0.017982501536607742, -0.024257071316242218, 0.0020943961571902037, 0.017444681376218796, 0.005529894959181547, 0.0067710187286138535, 0.021719662472605705, 0.008460326120257378, -0.0006877893465571105, 0.009329112246632576, -0.014645258896052837, -0.03271050006151199, 0.025387872010469437, 0.022395385429263115, 0.00295628746971488, 0.01874096691608429, -0.02807697467505932, 0.01503138616681099, 0.00014145793102215976, 0.014796950854361057, -0.006253883708268404, -0.037647414952516556, 0.013845423236489296, -0.015155497938394547, 0.007232992444187403, 0.02345723658800125, -0.00572640635073185, -0.0047335075214505196, -0.02473973110318184, -0.0030959139112383127, 0.007860449142754078, 0.018037663772702217, -0.008108674548566341, 0.02360892854630947, -0.000682187033817172, -0.01732056960463524, -0.014086753129959106, -0.013376554474234581, -0.002837346401065588, 0.009191209450364113, -0.013121434487402439, -0.035440973937511444, -0.004519758280366659, -0.010783985257148743, 0.03613048791885376, -0.004123288206756115, -0.022009259089827538, -0.016479363664984703, -0.043191101402044296, -0.024601828306913376, -0.0218161940574646, -0.01010136678814888, 0.011301119811832905, 0.04183965548872948, 0.004526653792709112, -0.0009920370066538453, 0.015500254929065704, -0.01671379804611206, 0.01686549000442028, -0.011370071209967136, -0.013935060240328312, -0.006188380066305399, 0.0005998763954266906, 0.007426056079566479, 0.0010256507666781545, -0.016437992453575134, 0.00903262197971344, 0.01083225104957819, -0.0018996086437255144, 0.002344344509765506, 0.004643870983272791, 0.013100748881697655, 0.0034941076301038265, -0.010259955190122128, 0.0013988497667014599, 0.019099513068795204, 0.01319038588553667, 0.010763299651443958, -0.02147143892943859, -0.003857825882732868, -0.003347586141899228, -0.009225685149431229, -0.0218161940574646, -0.016741378232836723, 0.0010480599012225866, -0.014824531972408295, 0.02079571597278118, -0.02901471219956875, -0.010694348253309727, -0.00890161469578743, -0.015376142226159573, 0.03196582943201065, -0.007708756718784571, 0.0054402584210038185, 0.03400678560137749, 0.008315527811646461, -0.022064419463276863, -0.0067262002266943455, 0.02229885384440422, -0.0004065972752869129, -0.02709786593914032, 0.024188119918107986, -0.0208370853215456, 0.01952701061964035, -0.01627250947058201, 0.00424395315349102, -0.011763093993067741, 0.004130183719098568, -0.00824657641351223, 0.01630008965730667, -0.01974765583872795, 0.03111083060503006, -0.0032527782022953033, -0.009984149597585201, -0.006260779220610857, 0.010977048426866531, -0.008370689116418362, 0.004295666702091694, -0.019140884280204773, -0.026601415127515793, -0.00942564383149147, 0.01349377166479826, -0.0023167640902101994, -0.0012152668787166476, -0.020023461431264877, 0.0026891010347753763, 0.016782749444246292, -0.03395162522792816, 0.009322217665612698, 0.21115648746490479, -0.01356961764395237, 0.004185344558209181, 0.022285062819719315, -0.0054023354314267635, 0.0075708539225161076, 0.015569206327199936, -0.01784459874033928, 0.0026959963142871857, -0.014424614608287811, 0.006329730153083801, 0.024008845910429955, -0.005340279079973698, 0.005560923367738724, 0.016313880681991577, 0.004257743246853352, -0.042253363877534866, -0.016934441402554512, -0.0002766671241261065, -0.06928227841854095, -0.0006830489146523178, -0.014438404701650143, -0.013390344567596912, 0.006036687176674604, 0.021195633336901665, 0.004836934618651867, -0.02000967040657997, -0.00303558143787086, 0.014645258896052837, -0.0011256301077082753, -0.022202322259545326, -0.009177419357001781, 0.006246988661587238, 0.0016677598468959332, -0.006053925026208162, 0.016782749444246292, 0.014148809015750885, -0.0012437092373147607, 0.013969535939395428, -0.008784396573901176, 0.004626633133739233, 0.0019495983142405748, -0.0007438122411258519, 0.00021622699568979442, -0.02016136422753334, 0.03215889260172844, 0.00017948888125829399, -0.01503138616681099, -0.009646288119256496, 0.022395385429263115, -0.01985797844827175, 0.010170318186283112, 0.045673348009586334, 0.026339400559663773, -0.004788668360561132, -0.01503138616681099, -0.006698620039969683, 0.00368200009688735, -0.02491900324821472, 0.02353997714817524, -0.0265048835426569, 0.027415040880441666, 0.013741996139287949, 0.021126681938767433, -0.015169288031756878, 0.015982914716005325, -0.006136666517704725, -0.012693936005234718, 0.008067303337156773, -0.023250382393598557, 0.01825830712914467, -0.019582172855734825, -0.00403020391240716, -0.004809353966265917, -0.012831838801503181, -0.013342078775167465, 0.01863064430654049, -0.028656164184212685, 0.009315322153270245, 0.009928989224135876, 0.013824737630784512, -0.016396621242165565, 0.013583408668637276, -0.007708756718784571, -0.009370483458042145, -0.02432602271437645, -0.00408536521717906, -0.009908303618431091, -0.026284240186214447, 0.003273463575169444, -0.01612081564962864, -0.030310995876789093, 0.003957805223762989, -0.0011359727941453457, 0.0038371405098587275, 0.00803972315043211, 0.011983738280832767, 0.005702273454517126, 0.008253471925854683, -0.004078470170497894, -0.00663311593234539, -0.015279610641300678, 0.03458597883582115, -0.0019961404614150524, -0.026546254754066467, 0.0009584232466295362, 0.013969535939395428, -0.004840381909161806, 0.01232849434018135, -0.017817018553614616, 0.013714415952563286, -0.009887618012726307, -0.001109254197217524, -0.01614839769899845, 0.010921888053417206, 0.011245958507061005, -0.023264171555638313, -0.015417513437569141, -0.0007468289113603532, 0.012755992822349072, 0.016051864251494408, -0.030117932707071304, -0.0021547283977270126, 0.010073786601424217, -0.007881134748458862, -0.02369167096912861, -0.027759797871112823, 0.0209474079310894, 0.004854172468185425, 0.0020857772324234247, 0.02327796258032322, -0.0340343676507473, 0.0013635121285915375, 0.004699031822383404, -0.018244516104459763, 0.01998209021985531, 0.018272098153829575, -0.014493566006422043, 0.028021812438964844, -0.002125424100086093, 0.014017801731824875, -0.0019806264899671078, 0.008667179383337498, 0.007598434574902058, -0.006271121557801962, -0.00024391525948885828, 0.02544303424656391, -0.02649109438061714, 0.00032105454010888934, -0.009260160848498344, -0.033344853669404984, -0.020299265161156654, -0.006312492303550243, -0.00690547376871109, 0.01566573791205883, -0.0030062771402299404, -0.01394195482134819, -0.035965003073215485, 0.011045999825000763, 0.0210577305406332, -0.023815782740712166, 0.013783367350697517, 0.03050405904650688, -0.005516104865819216, -0.01641041226685047, -0.02882164716720581, -0.17662568390369415, 0.022147161886096, 0.0038164551369845867, -0.0145625164732337, 0.03091776743531227, 0.03006277233362198, 0.018823707476258278, -0.0014824531972408295, 0.004543891176581383, -0.020781924948096275, 0.002942497143521905, 0.0146176777780056, -0.037123385816812515, -0.019664913415908813, -0.009749715216457844, 0.0005826386041007936, -0.01727919839322567, 0.010997734032571316, 0.04920365661382675, 0.011680352501571178, 0.01287321001291275, -0.007253678049892187, 0.008032827638089657, -0.00013133070024196059, -0.000944632978644222, 0.010170318186283112, -0.01268704142421484, 0.014452194795012474, -0.0030235149897634983, -0.028380360454320908, -0.027690846472978592, 0.005419572815299034, -0.009039516560733318, -0.015720898285508156, 0.02668415755033493, 0.006667591631412506, -0.028352778404951096, -0.0007244197186082602, 0.0004451668937690556, 0.005012760404497385, 0.0265048835426569, -0.004492178093641996, 0.03091776743531227, -0.014176389202475548, -0.004809353966265917, 0.05364412069320679, 0.0004886924289166927, -0.00746742682531476, 0.0073777902871370316, -0.023705460131168365, 0.009129153564572334, 0.00014328944962471724, 0.028738906607031822, 0.02136111631989479, 0.03946772962808609, 0.016465572640299797, 0.012218172661960125, 0.014135018922388554, -0.00830173771828413, -0.014045381918549538, 0.004254295956343412, -0.006498660892248154, 0.015941543504595757, -0.016920652240514755, -0.006853760220110416, -0.020478539168834686, -0.014176389202475548, 0.013859213329851627, -0.011501078493893147, 0.01978902705013752, 0.002023720880970359, 0.027084074914455414, 0.019609753042459488, -0.006143562030047178, -0.010466809384524822, -0.002246089046820998, -0.014162599109113216, -0.0015496807172894478, 0.0073640001937747, -0.006546927150338888, -0.03306904807686806, 0.027153026312589645, -0.028352778404951096, -0.017982501536607742, 0.005833280738443136, 0.012404341250658035, -0.00041672447696328163, -0.004075022414326668, -0.008756816387176514, 0.001719473279081285, 0.0006046168273314834, -0.009991045109927654, -0.004736955277621746, -0.018823707476258278, 0.012411235831677914, 0.018906449899077415, 0.007977666333317757, -0.00972902961075306, -0.008474116213619709, -0.0104185426607728, 0.0036923426669090986, -0.013900584541261196, -0.006853760220110416, 0.022574659436941147, 0.028876809403300285, 0.006784808821976185, -0.010935678146779537, 0.00953596644103527, 0.03400678560137749, 0.005364411976188421, -0.009039516560733318, 0.008425850421190262, 0.022809093818068504, 0.0012523281620815396, 0.00591257493942976, 0.03855757415294647, -0.01641041226685047, -0.023553768172860146, 0.013073168694972992, -0.01701718382537365, 0.0628284364938736, -0.0066055357456207275, -0.0056988256983459, 0.0012643946101889014, -0.020588861778378487, -0.04115014150738716, -0.11661045998334885, 0.004175001755356789, -0.003985385876148939, 0.0043197995983064175, 0.005995316430926323, 0.005171348340809345, -0.012838734313845634, 0.009556652046740055, 0.0018461713334545493, 0.008929194882512093, -0.010880516842007637, -0.023898525163531303, -0.00020125163428019732, -0.0038681684527546167, 0.01664484664797783, -0.014852112159132957, -0.018768547102808952, -0.02544303424656391, 0.0049886275082826614, 0.029345678165555, 0.0020616441033780575, -0.01612081564962864, 0.018037663772702217, -0.032958727329969406, 0.03265533968806267, -0.020547490566968918, -0.026808269321918488, 0.023967476561665535, 0.021223213523626328, 0.011618295684456825, -0.0011075304355472326, 0.0009782466804608703, 0.0210577305406332, 0.0015186526579782367, -0.004088812507688999, -0.005226509179919958, -0.027346089482307434, -0.01227333303540945, 0.02275393344461918, -0.038998860865831375, 0.009322217665612698, -0.012300914153456688, 0.01326623186469078, -0.0070744045078754425, 0.02109910175204277, -0.0026684156619012356, -0.014031591825187206, 0.011342491023242474, 0.0015401998534798622, -0.017968712374567986, -0.019954510033130646, 0.008722340688109398, -0.03533065319061279, -0.0173481497913599, 0.023112479597330093, -0.02024410478770733, 0.030531641095876694, 0.011266644112765789, -0.023222802206873894, -0.010914992541074753, -0.02211957983672619, 0.01523823942989111, -0.0005959979025647044, 0.02129216492176056, 0.009067097678780556, -0.003457908285781741, -0.025401663035154343, -0.02751157246530056, 0.038585152477025986, -0.004095708020031452, -0.01911330409348011, 0.006512451451271772, -0.03557887673377991, 0.012597404420375824, -0.02709786593914032, 0.019292576238512993, -0.025967063382267952, 0.0030114485416561365, 0.024229491129517555, 0.008350003510713577, -0.020961198955774307, -0.024091588333249092, 0.010735719464719296, -0.01244571153074503, 0.027966652065515518, 0.003878511255607009, 0.01201131846755743, -0.011935471557080746, -0.006202170625329018, -0.023981265723705292, -0.006636563688516617, 0.012735307216644287, -0.006360758561640978, -0.016686217859387398, -0.000659777841065079, 0.05022413656115532, 0.0070364810526371, 0.002663244493305683, -0.0265048835426569, -0.0059367078356444836, -0.043604809790849686, -0.003857825882732868, -0.05929812788963318, 0.020754344761371613, 0.0029838678892701864, 0.013038692995905876, -0.01294905599206686, -0.017527423799037933, 0.004388750996440649, -0.015224449336528778, -0.030835026875138283, 0.01375578623265028, -0.006522793788462877, 0.026932382956147194, -0.0114528127014637, -0.01002552080899477, -0.029400838539004326, -0.011652771383523941, -0.0002954132796730846, -0.0193063672631979, 0.00728125823661685, 0.004836934618651867, 0.0015022766310721636, -0.0016272509237751365, 0.021416276693344116, 0.0027856328524649143, -0.011039105243980885, -0.0018789232708513737, 0.02371925115585327, 0.027525363489985466, 0.002244365168735385, -0.029704224318265915, 0.011542449705302715, -0.04018482565879822, 0.011080475524067879, 0.00843274500221014, 0.01627250947058201, 0.012604299932718277, -0.028545843437314034, 0.003285530023276806, 0.006864103022962809, 0.05187896639108658, 0.01201131846755743, -0.004168106708675623, 0.0035785729996860027, -0.02140248753130436, 0.005902232136577368, 0.03811628371477127, -0.02369167096912861, 0.002161623677238822, 0.007757022511214018, -0.019554592669010162, 0.00440254108980298, 0.021319745108485222, -0.012342284433543682, -0.018120404332876205, -0.0015522664180025458, -0.023374494165182114, 0.025622306391596794, -0.0007632048218511045, 0.018865078687667847, -0.01499001495540142, 0.015210659243166447, -0.004195687361061573, 0.027277138084173203, -0.010508179664611816, 0.03439291566610336, -0.015224449336528778, -0.0004158625961281359, -0.009301532059907913, -0.012997321784496307, -0.03100050985813141, -0.008632703684270382, -0.0018444475717842579, 0.011763093993067741, 0.004088812507688999, 0.007688071113079786, 0.03152453899383545, -0.00016957713523879647, 0.0016108750132843852, -0.018865078687667847, 0.014010906219482422, -0.01561057660728693, -0.0017686011269688606, -0.03571677953004837, 0.018975401297211647, 0.041067399084568024, -0.011459708213806152, 0.0029407734982669353, 0.017748067155480385, 0.0031941693741828203, 0.008101779036223888, 0.01195615716278553, -0.0029269831720739603, 0.003316557966172695, -0.020147573202848434, 0.01534856203943491, 0.019168464466929436, -0.026959963142871857, -0.0006989939138293266, 0.026601415127515793, 0.02742883190512657, -0.024146748706698418, 0.023484816774725914, -0.0025270655751228333, -0.009232580661773682, -0.002056472934782505, -0.007081299554556608, -0.008446536026895046, -0.011873415671288967, -0.0002080390404444188, 0.02380199171602726, 0.010866726748645306, -0.006067715585231781, 0.028132135048508644, 0.028876809403300285, -0.01045991387218237, -0.001994416583329439, 0.005967735778540373, 0.001691030920483172, -0.006819284521043301, 0.04699721187353134, 0.011687247082591057, 0.03089018724858761, 0.02031305618584156, 0.009860037826001644, 0.00677446648478508, 0.012728411704301834, 0.021981677040457726, 0.03442049399018288, 0.010239269584417343, 0.00042060299892909825, 0.015100336633622646, 0.003126941854134202, -0.05262364074587822, 0.0010420266771689057, 0.00803972315043211, -0.022160951048135757, -0.009398063644766808, 0.008825767785310745, -0.00618493277579546, 0.0383920893073082, 0.01163898129016161, -0.017968712374567986, -0.0019099513301625848, 0.005367859732359648, 0.015789849683642387, 0.018534112721681595, -0.005123082548379898, 0.012838734313845634, -0.013100748881697655, 0.00860512349754572, -0.005412677768617868, 0.027235766872763634, -0.012549138627946377, -0.00430256174877286, 0.016051864251494408, -0.0007041652570478618, 0.01869959570467472, -0.008129359222948551, -0.016244929283857346, 0.022174742072820663, 0.003211407223716378, 0.028435520827770233, 0.009563546627759933, -0.0021633473224937916, -0.005274775438010693, 0.01504517626017332, 0.006112533621490002, 0.012300914153456688, -0.038364510983228683, 0.002644282765686512, 0.011121846735477448, -0.008874033577740192, -0.020299265161156654, 0.004340485204011202, -0.004802458919584751, 0.003561335150152445, -0.01869959570467472, 0.026780689135193825, -0.0024132959078997374, -0.025167228654026985, 0.012728411704301834, -0.016010494902729988, -0.01825830712914467, 0.011928576976060867, -0.004530101083219051, 0.00034669580054469407, -0.010266849771142006, -0.015845011919736862], "255e1ca5-3563-4b20-8349-2167ee5fd3f9": [-0.009726064279675484, -0.015605507418513298, -0.01790526695549488, 0.010944388806819916, -0.019260480999946594, 0.038411449640989304, -0.019041456282138824, -0.017070235684514046, -0.01403126772493124, -0.015140079893171787, 0.0154138607904315, 0.015537062659859657, 0.0029602553695440292, 0.003364081960171461, -0.0007165357819758356, -0.0014869722072035074, 0.028746986761689186, -0.009732908569276333, 0.03320961445569992, -0.025557441636919975, -0.009602862410247326, -0.002056778408586979, -0.002489694394171238, 0.03945181891322136, 0.003413704689592123, 0.04032791778445244, 0.009404371492564678, -0.02116325870156288, 0.0032922145910561085, -0.01748090609908104, -0.006858210079371929, 0.004466049838811159, 0.016714319586753845, -0.006464649923145771, -0.03110150247812271, -0.004428404849022627, 0.005687796976417303, -0.01906883530318737, 0.023148169741034508, 0.004428404849022627, 0.010266780853271484, -0.003925332799553871, -0.018233804032206535, -0.003340126248076558, -0.02741914987564087, 0.020793654024600983, 0.01943843998014927, -0.04128614813089371, -0.01696072332561016, 0.016331026330590248, 0.018452828750014305, 0.021423351019620895, -0.030280159786343575, 0.005547483917325735, -0.012128490954637527, -0.0033880379050970078, 0.009472817182540894, 0.013237303122878075, -0.022217314690351486, 0.032744187861680984, -0.006474916823208332, 0.00804231222718954, 0.0014253715053200722, 0.005571439862251282, -0.03734370693564415, -0.008576184511184692, -0.011142879724502563, -0.0003101423499174416, -0.006803453899919987, 0.001271369750611484, 0.025708019733428955, 0.02995162270963192, 0.00826818123459816, 0.015824532136321068, 0.025434238836169243, -0.034852299839258194, -0.01748090609908104, -0.02082103304564953, -0.018466517329216003, -0.0031450572423636913, -0.00902792252600193, -0.03066345304250717, -0.01783682219684124, 0.00037815977702848613, 0.028966011479496956, -0.018398072570562363, 0.022942833602428436, 0.01834331639111042, -0.025105701759457588, -0.031156258657574654, 0.004359959624707699, 0.0068924324586987495, 0.010287314653396606, 0.010602163150906563, -0.009438593871891499, 0.001721397042274475, -0.03211449086666107, 0.015851911157369614, -0.009623396210372448, -0.028336316347122192, -0.014565140008926392, -0.0045687174424529076, -0.01675538718700409, -0.0075631956569850445, -0.028911255300045013, 0.03074558824300766, -0.006365404464304447, 0.005085479002445936, 0.0016546628903597593, -0.029568329453468323, -0.0037302637938410044, 0.018658163025975227, -0.03205973654985428, -0.04544761776924133, -0.0050512561574578285, -0.0065981182269752026, 0.03602955862879753, -0.014633585698902607, -0.007241502869874239, -0.022942833602428436, 0.006269581150263548, 0.01566026359796524, 0.00030479507404379547, 0.003846620675176382, 0.007816443219780922, 0.003819242585450411, 0.011663063429296017, -0.028172047808766365, 0.011005989275872707, -0.005670685321092606, 0.034551139920949936, 0.01453776191920042, 0.012799253687262535, -0.0066460296511650085, -0.0002838337095454335, 0.020287159830331802, -0.036741387099027634, 0.006317492574453354, -0.015824532136321068, -0.02566695399582386, 0.025037257000803947, 0.012703430838882923, -0.010718519799411297, -0.02494143322110176, -0.02806253544986248, 0.027227504178881645, 0.024996189400553703, 0.023887377232313156, -0.018685542047023773, 0.0059786890633404255, 0.030143270269036293, -0.010704830288887024, 0.018261181190609932, -0.01775468699634075, 0.008583028800785542, 0.001101967878639698, 0.004616629332304001, -0.005646729841828346, 0.002991055604070425, -0.004821965005248785, 0.026282960548996925, 0.023682042956352234, 0.02132752723991871, -0.008008088916540146, 0.016563739627599716, 0.026009179651737213, 0.0028028313536196947, -0.003863732097670436, -0.024339115247130394, -0.018165357410907745, 0.016221513971686363, 0.01587928831577301, -0.026009179651737213, 0.0019010656978935003, -0.004804853815585375, 0.016851210966706276, 0.03783651068806648, 0.03104674629867077, -0.015756087377667427, -0.0004083184467162937, -0.037097301334142685, -0.01217640284448862, 0.0369604118168354, 0.013873843476176262, 0.004435249604284763, 0.001822353689931333, -0.012936144135892391, -0.007987556047737598, -0.0010369449155405164, -2.820691224769689e-05, 0.012018978595733643, 0.025174148380756378, -0.03178595378994942, -0.018822431564331055, -0.6329813003540039, -0.027391772717237473, -0.020205024629831314, -0.006800031289458275, -0.02139597199857235, 0.0008115035016089678, 0.00801493413746357, 0.00019988139683846384, -0.00964393001049757, 0.0009103212505578995, -0.026638874784111977, 0.007405771408230066, -0.008103912696242332, -0.01468834187835455, -0.032306138426065445, -0.01581084355711937, 0.016632186248898506, -0.02828156016767025, 0.008206580765545368, -0.016221513971686363, -0.0038089759182184935, 0.0008337481995113194, 0.003381193382665515, 0.00026501130196265876, -0.008316093124449253, -0.003993778023868799, 0.013011434115469456, 0.004171735607087612, 0.008076534606516361, 0.02646091766655445, -0.01871291920542717, 0.01813798025250435, 0.025488995015621185, 0.015276970341801643, 0.04824018105864525, -0.010444738902151585, -0.03329174965620041, 0.027966711670160294, 0.009917710907757282, 0.007179902400821447, -0.015030567534267902, -0.034907057881355286, 0.016563739627599716, 0.012607607059180737, -0.004852765239775181, 0.0078095984645187855, 0.021669752895832062, -0.015263281762599945, 0.008884187787771225, -0.001482694293372333, 0.0007216691737994552, 0.003514661453664303, -0.01768624223768711, -0.021669752895832062, 0.006786342244595289, -0.005882865749299526, 0.02522890456020832, -0.0166732519865036, -0.006228514015674591, -0.0031809911597520113, 0.0013312592636793852, 0.018945634365081787, 0.015906665474176407, -0.0025102279614657164, -0.020492495968937874, 0.004801431205123663, -0.015495995059609413, 0.028883878141641617, 0.021423351019620895, -0.02458551898598671, -0.005793886724859476, 0.01863078586757183, -0.00025303338770754635, -0.010780120268464088, 0.019109902903437614, 0.010670607909560204, 0.03728894889354706, -0.02667994238436222, -0.010239402763545513, 0.036741387099027634, 0.0017111302586272359, -0.011348215863108635, -0.03720681369304657, -0.02610500156879425, 0.027076924219727516, -0.016276270151138306, -0.0012260248186066747, 0.02893863432109356, -0.006173757836222649, 0.0040793344378471375, 0.001626429264433682, 0.009890332818031311, 0.005102590192109346, 0.006748697720468044, 0.03663187474012375, 0.009787664748728275, -0.00990402139723301, -0.003754219738766551, -0.008665163069963455, -0.004787742160260677, 0.000940266065299511, -0.007090923376381397, 0.012546006590127945, -0.007590573746711016, 0.016262581571936607, -0.010458427481353283, -0.0333465039730072, -0.0044523607939481735, 0.04744621738791466, -0.027569729834794998, -0.010629541240632534, -0.010971766896545887, -0.026009179651737213, 0.003952710889279842, 0.030827721580863, -0.009972467087209225, 0.02124539203941822, -0.0056741079315543175, 0.026953723281621933, -0.005550906527787447, 0.016344714909791946, -0.012758187018334866, 0.012956677936017513, -0.029185036197304726, 0.014359804801642895, 0.02995162270963192, 0.03345601633191109, -0.020834721624851227, -0.020040756091475487, -0.009288014844059944, 0.01076643168926239, -0.0020362448412925005, 0.007494750432670116, 0.013449483551084995, 0.003829509485512972, -0.011574084870517254, 0.03616644814610481, 0.01015042420476675, 0.012963522225618362, -0.01193000003695488, -0.011553551070392132, -0.0036618185695260763, 0.010828032158315182, -0.0008577040280215442, -0.00043933268170803785, -0.03638547286391258, -0.015632886439561844, -0.01054740697145462, -0.0485687181353569, 0.013141480274498463, -0.02075258642435074, 0.0031330795027315617, -0.0005261725164018571, -0.006748697720468044, 0.0049348995089530945, -0.01145772822201252, -0.02907552383840084, -0.002440071664750576, 0.02131383866071701, -0.025133080780506134, 0.005882865749299526, 0.009773976169526577, -0.017494594678282738, 0.01032838225364685, 0.018945634365081787, -0.007262036669999361, -0.00804915651679039, 0.029842110350728035, -0.003788442350924015, -0.04161468520760536, 0.0078095984645187855, -2.866143040591851e-05, 0.00462347362190485, 0.04407871514558792, -0.02146441675722599, 0.0015614063013345003, -0.027159059420228004, -0.004561873152852058, -0.001329548191279173, 0.014140780083835125, -0.002753208391368389, 0.02038298361003399, -0.00826133694499731, -0.003348681842908263, 0.0066357627511024475, 0.0008384538232348859, -0.007638485170900822, -0.004192268941551447, 0.004496850073337555, 0.02138228341937065, -0.005040989723056555, 0.009089523926377296, 0.006971144583076239, 0.002422960475087166, 0.009507039561867714, 0.005636462941765785, 0.01863078586757183, 0.027816133573651314, 0.009315392933785915, 0.014702030457556248, 0.01611200161278248, 0.00014416272460948676, 0.01869923062622547, -0.02465396374464035, -0.001194368931464851, -0.021697131916880608, 0.00482538715004921, -0.006071089766919613, 0.04002675786614418, -0.026885278522968292, 0.0010703119914978743, -0.032525163143873215, -0.01102652307599783, -0.0022638251539319754, 0.015304348431527615, 0.031813330948352814, 0.014838920906186104, 0.009116902016103268, -0.010129890404641628, 0.008405071683228016, 0.00757688470184803, -0.010198336094617844, 0.018302248790860176, -0.012970366515219212, -0.0188634991645813, 0.005605662707239389, 0.011875243857502937, 0.03501657024025917, 0.015454928390681744, -0.0035351950209587812, 0.025981800630688667, -0.005112857092171907, -0.007405771408230066, 0.004004044458270073, 0.015550751239061356, -0.007090923376381397, 0.011355060152709484, -0.010739053599536419, 0.04098499193787575, -0.028883878141641617, -0.00701563386246562, -0.0007306525949388742, 0.014784164726734161, -0.024407561868429184, -0.009267481043934822, 0.0026556740049272776, 0.01763148605823517, 0.005044411867856979, 0.00608820142224431, 0.02269643172621727, -0.0007943921955302358, -0.004058800637722015, -0.003348681842908263, -0.01987648755311966, 0.012231159023940563, -0.022532163187861443, -0.004856187384575605, 0.023107102140784264, 0.010177802294492722, 0.022066734731197357, 0.010526873171329498, -0.005756242200732231, 0.019342616200447083, 0.019739598035812378, 0.05700116977095604, -0.002304892288520932, 0.007501594722270966, 0.018658163025975227, -0.023969512432813644, -0.02965046465396881, -0.017070235684514046, -0.008589874021708965, 0.011355060152709484, -0.0014108268078416586, 0.005752819590270519, 0.008644630201160908, -0.00023656374833080918, -0.0016495295567438006, 0.015181147493422031, 0.007481061387807131, -0.03227876126766205, -0.026721009984612465, 0.023914756253361702, 0.016947032883763313, 0.0039116437546908855, -0.01915096864104271, -0.018822431564331055, 0.013189391233026981, -0.02566695399582386, 0.03901376947760582, -0.011464572511613369, 0.019561640918254852, 0.03225138038396835, -0.012730808928608894, 0.003044100711122155, 0.006546784192323685, 0.021204326301813126, -0.02139597199857235, 0.04199798032641411, -0.0073852380737662315, 0.006450960878282785, 0.008021778427064419, -0.015071635134518147, 0.012628140859305859, 0.022929145023226738, 0.0003719569358509034, -0.02422960288822651, -0.006115579511970282, 0.01080749835819006, -0.02568064257502556, 0.009780820459127426, -0.016563739627599716, -0.006108734756708145, -0.007289414759725332, -0.00877467542886734, 0.01769993081688881, -0.009370149113237858, 0.014811542816460133, 0.02131383866071701, 0.007494750432670116, -0.008446138352155685, -0.020766276866197586, -0.024037957191467285, -0.011587773449718952, 0.09248316287994385, 0.02762448601424694, -0.02880174294114113, 0.0029174769297242165, -0.0032631251960992813, 0.02340826205909252, -0.010656919330358505, -0.04186109080910683, 0.02110850252211094, -0.01052002888172865, 0.006139534991234541, -0.019096212461590767, 0.019178347662091255, 0.0016811854438856244, 0.015030567534267902, -0.005804153624922037, -0.00327168102376163, 0.012990900315344334, -0.006865054368972778, 0.011033367365598679, 0.009657618589699268, 0.0006207124679349363, 0.004496850073337555, 0.010348915122449398, -0.03216924890875816, -0.02168344147503376, 0.03299058973789215, 0.013189391233026981, 0.022710120305418968, -0.014633585698902607, -0.018384382128715515, 0.023449327796697617, 0.028226803988218307, 0.027309637516736984, -0.02299758978188038, -0.008322937414050102, 0.0010138446232303977, 0.029048146679997444, 0.006348293274641037, 0.004483161028474569, 0.015290659852325916, 0.01290192175656557, 0.0015947733772918582, 7.11188476998359e-06, 0.019055146723985672, 0.008322937414050102, -0.008418760262429714, -0.012546006590127945, -0.02479085512459278, -0.010239402763545513, 0.033401262015104294, -0.002152601722627878, -0.013928599655628204, 0.0017744420329108834, 0.009199036285281181, 0.014127090573310852, -0.00245718308724463, 0.003921910654753447, -0.014578829519450665, 0.030499184504151344, -0.008897877298295498, 0.016796454787254333, 0.026132380589842796, -0.006358559709042311, -0.015057945623993874, -0.025406861677765846, -0.026556741446256638, -0.013250992633402348, -0.011820487678050995, 0.02153286337852478, -0.025037257000803947, -0.015085323713719845, -0.008637784980237484, 0.005571439862251282, -0.00310056796297431, -0.003966399934142828, 0.0253794826567173, -0.025872288271784782, 0.006817142944782972, -0.00946597196161747, -0.022573228925466537, -0.029677841812372208, 0.011546706780791283, -0.01965746469795704, -0.014592518098652363, 0.0015725286211818457, 0.013880688697099686, 0.02458551898598671, -0.01819273643195629, 0.012799253687262535, -0.010656919330358505, 0.021642375737428665, 0.02785719931125641, -0.01175204198807478, 0.011204480193555355, -0.017124991863965988, -0.002352803945541382, -0.01871291920542717, -0.011621996760368347, -0.004958855453878641, -0.003203235799446702, -0.051388662308454514, 0.014565140008926392, -0.01294298842549324, 0.007200435735285282, -0.03329174965620041, 0.0119642224162817, 0.017097612842917442, -0.019178347662091255, -0.013606907799839973, 0.017645174637436867, -0.01589297689497471, -0.013470017351210117, 0.002669363049790263, 0.0055440617725253105, 0.001252547255717218, 0.012593918479979038, 0.005448238458484411, 0.010930699296295643, 0.0016555184265598655, 0.005102590192109346, -0.024380182847380638, -0.00714567955583334, -0.007501594722270966, -0.02617344819009304, -0.002956832991912961, 0.014359804801642895, -0.027720309793949127, 0.0210400577634573, -0.005680952221155167, 0.019684841856360435, -0.0041477796621620655, 0.017166057601571083, -0.00808337889611721, -0.035290349274873734, 0.006166913080960512, -0.02095792256295681, 0.0021834021899849176, -0.007802753709256649, 0.0059786890633404255, -0.00823395885527134, -0.015975112095475197, -0.016153069213032722, -0.03438687324523926, -0.003261414123699069, -0.018726609647274017, -0.02667994238436222, 0.0027412306517362595, 0.003305903635919094, -0.006030022632330656, 0.003986933268606663, -0.033620286732912064, -0.026803143322467804, -0.018740298226475716, -0.008877343498170376, -0.04024578258395195, -0.01218324713408947, 0.005934199783951044, 0.02364097535610199, -0.007214124780148268, 0.024599207565188408, -0.03400357812643051, 0.0027412306517362595, 0.0003174146404489875, -0.0035591507330536842, -0.005287392530590296, -0.017795754596590996, -0.03299058973789215, -0.03928754851222038, -0.024927744641900063, 0.037097301334142685, 0.015715019777417183, 0.01316201314330101, -0.019630085676908493, 0.0030646342784166336, 0.038466207683086395, -0.0053695267997682095, -0.004291514400392771, -0.020779965445399284, -0.03496181219816208, -0.02008182369172573, -0.007768531329929829, 0.010786964558064938, -0.007590573746711016, -0.03893163427710533, 0.01055425126105547, 0.07638484984636307, 0.009048456326127052, 0.011478261090815067, -0.019561640918254852, 0.005629618186503649, -0.00677949795499444, 0.005609084852039814, -0.008870499208569527, 0.0026898966170847416, -0.009253792464733124, 0.02522890456020832, -0.008610406890511513, 0.01334681548178196, 0.001516061369329691, 0.007227813825011253, 0.004048534203320742, -0.0005805009277537465, -0.0032289025839418173, -0.015482306480407715, 0.007871199399232864, -0.01748090609908104, -0.02654305100440979, 0.026200825348496437, -0.01987648755311966, -0.025776466354727745, -0.008843121118843555, 0.0012679474893957376, -0.029623085632920265, -0.025256281718611717, -0.0041375127620995045, 0.008391382172703743, 0.0028712765779346228, -0.012135335244238377, -0.010725364089012146, 0.006841098424047232, -0.007528972811996937, 0.03693303465843201, 0.001457882928662002, 0.03320961445569992, 0.009780820459127426, -4.2109844798687845e-05, 0.0005621062591671944, -0.0007443416398018599, -0.013319437392055988, -0.016289958730340004, 0.023818932473659515, -0.00045302172657102346, -0.009110056795179844, 0.015208525583148003, -0.017727309837937355, 0.005879443604499102, -0.03559150919318199, -0.02792564406991005, 0.025352105498313904, 0.020793654024600983, -0.010088823735713959, -0.003492416813969612, -0.016057245433330536, -0.03838407248258591, 0.0112455477938056, -0.006481761112809181, 0.021779265254735947, -0.016659563407301903, -0.018165357410907745, -0.023969512432813644, 0.014770476147532463, 0.014017578214406967, 0.036659251898527145, 0.022094113752245903, -0.010828032158315182, -0.026351405307650566, -0.006043711677193642, -0.014483005739748478, -0.020697830244898796, -0.0016255737282335758, 0.006187446881085634, -0.006334604229778051, 0.01869923062622547, -0.0015562729677185416, 0.0011148013873025775, -0.0068342541344463825, -0.00048339428030885756, -0.030581319704651833, 0.029486196115612984, 0.010191491805016994, 0.016933344304561615, 0.01616675779223442, 0.030855100601911545, 0.013059346005320549, 0.017604107037186623, 0.0018685541581362486, 0.003158746287226677, -0.025584818795323372, -0.008192891255021095, 0.011129191145300865, 0.0170291680842638, 0.008206580765545368, -0.0034376606345176697, -0.014524073339998722, -0.0020619118586182594, -0.0002147468476323411, 0.02428435906767845, -0.004301781300455332, -0.04364066570997238, -0.03876736760139465, 0.010691141709685326, -0.02791195549070835, 0.008418760262429714, -0.014127090573310852, 0.023298749700188637, -0.008829431608319283, 0.028117291629314423, -0.036522362381219864, 0.017234504222869873, -0.013764331117272377, 0.010040911845862865, -0.02951357327401638, 0.013141480274498463, 0.005147079471498728, -0.01596142165362835, 0.029568329453468323, -0.02893863432109356, -0.024311738088726997, 0.017316637560725212, 0.0070703900419175625, -0.001025822595693171, -0.0009479661239311099, 0.020998990163207054, 0.011266081593930721, -0.009322237223386765, 0.015988800674676895, -0.004075912293046713, -0.033100102096796036, 0.01906883530318737, 0.036303337663412094, -0.007398927118629217, 0.01240227185189724, -0.01609831303358078, 0.02625558152794838, -0.007816443219780922, 0.016194136813282967, 0.0019951777067035437, -0.0340583361685276, 0.0235588401556015, -0.008617252111434937, 0.019055146723985672, 0.008295559324324131, -0.013709574937820435, -0.0060266004875302315, -0.02871960960328579, 0.0005621062591671944, -0.00044275494292378426, 0.016508983448147774, -0.008275025524199009, 0.03178595378994942, 0.007686397060751915, -0.00585206551477313, -0.008350315503776073, -0.008713074959814548, -0.0008298981701955199, 0.026378782466053963, -0.014017578214406967, -0.03008851408958435, 0.005670685321092606, -0.0017829976277425885, 0.03589266538619995, 0.002761764219030738, -0.017344016581773758, -0.00276347529143095, -0.03589266538619995, -0.021286459639668465, -0.008911565877497196, -0.004869876429438591, 0.02349039539694786, 0.05158030986785889, 0.01972590945661068, 0.009103212505578995, 0.027076924219727516, -0.025844911113381386, -0.01334681548178196, -0.00043419928988441825, -0.001972933067008853, -0.02110850252211094, -0.010513183660805225, 0.005992378108203411, -0.0006301237153820693, -0.02073889784514904, -0.002126934938132763, 0.006687096785753965, 0.0021799798123538494, 0.007583728991448879, 8.550303755328059e-05, -0.0002838337095454335, 0.013661663979291916, -0.01243649423122406, -0.002991055604070425, 0.011615151539444923, 0.03367504104971886, 0.003980088979005814, -0.011916310526430607, -0.014154468663036823, -0.007289414759725332, -0.006865054368972778, -0.018808742985129356, -0.02321661449968815, -0.008747297339141369, -0.012580228969454765, 0.020205024629831314, -0.017645174637436867, -0.016002489253878593, -0.02602286823093891, -0.03052656352519989, 0.0355367511510849, -0.007617951836436987, 0.004260714165866375, 0.01964377425611019, -0.004041689448058605, -0.00920588057488203, -0.005318192765116692, 0.013647974468767643, 0.011936844326555729, -0.03017064742743969, 0.0038671542424708605, -0.02740546129643917, 0.016413161531090736, -0.013107256963849068, 0.009534417651593685, -0.02080734260380268, 0.00830924790352583, -0.012190091423690319, 0.01171781960874796, -0.012628140859305859, 0.017152369022369385, 0.014154468663036823, -0.010123046115040779, -0.006738430820405483, 0.007905421778559685, -0.010321537032723427, 0.026570430025458336, -0.00855565071105957, -0.006557051092386246, 0.001651240629144013, 0.021149570122361183, -0.010034067556262016, 0.001372326398268342, -0.01240227185189724, 0.011416660621762276, 0.0019164658151566982, -0.03326437249779701, -0.003074900945648551, 0.18890877068042755, -0.025215214118361473, 0.009732908569276333, 0.017015479505062103, -0.006194291170686483, 0.017604107037186623, 0.01682383194565773, -0.01055425126105547, -0.010143579915165901, -0.004069067537784576, 0.0005646729841828346, 0.02674838714301586, -0.004856187384575605, 0.0047124526463449, 0.013983355835080147, 0.0018839543918147683, -0.053058724850416183, -0.004667963366955519, -0.0023836044128984213, -0.05308610200881958, 4.200289913569577e-05, -0.0023699153680354357, -0.010533717460930347, -0.003160457592457533, 0.017946332693099976, -0.009520728141069412, -0.021669752895832062, -0.013504239730536938, 0.03060869686305523, -0.00621824711561203, -0.028021467849612236, -0.006868476513773203, 0.0015639730263501406, -0.007925955578684807, -0.008281869813799858, 0.01835700497031212, 0.007282570004463196, 0.0022484250366687775, 0.013011434115469456, -0.02254585176706314, 0.015222214162349701, 0.01431873720139265, -0.007884887978434563, -0.0019472661660984159, -0.006334604229778051, 0.02087578922510147, 0.0015494284452870488, -0.013613752089440823, -0.020273471251130104, 0.015304348431527615, -0.018014779314398766, -0.0006399626727215946, 0.036522362381219864, 0.022710120305418968, -0.005348992999643087, -0.01768624223768711, 0.012765031307935715, 0.01407233439385891, -0.015386482700705528, 0.019109902903437614, -0.02335350587964058, 0.0239421334117651, 0.010040911845862865, 0.04032791778445244, -0.02858271822333336, 0.0010446449741721153, -0.004359959624707699, 0.008138135075569153, 0.01567395217716694, -0.01446931716054678, -0.007850665599107742, -0.03074558824300766, -0.00016608658188488334, 0.0003974099818151444, -0.011827331967651844, -0.008131290785968304, 0.01690596714615822, -0.02828156016767025, -0.002939721802249551, -0.008405071683228016, 0.013278370723128319, -0.01841176114976406, 0.014140780083835125, -0.0040793344378471375, 0.0018411760684102774, -0.03901376947760582, -0.014113401994109154, -0.013511084020137787, -0.00585890980437398, 0.014455627650022507, -0.024544451385736465, -0.03559150919318199, 0.001753908465616405, -0.010814342647790909, -0.009151124395430088, -0.019246792420744896, 0.02276487648487091, 0.011423504911363125, 0.014483005739748478, 0.008138135075569153, -0.0007661585696041584, -0.005530372727662325, 0.015030567534267902, 0.0049348995089530945, -0.0289933905005455, -0.0016469628317281604, 0.01403126772493124, -0.006515983957797289, 0.008665163069963455, 0.008357159793376923, 0.031128881499171257, -0.01431873720139265, -0.005030722822993994, -0.01403126772493124, 0.008795209228992462, 0.01623520255088806, -0.013730108737945557, -0.025420550256967545, -0.01515376940369606, 0.003935599699616432, 0.036796145141124725, -0.014387182891368866, -0.0008277592132799327, 0.003939021844416857, -0.0043360041454434395, -0.016413161531090736, -0.02080734260380268, 0.030198026448488235, 0.0062832701951265335, -0.012285915203392506, 0.015865599736571312, -0.04610469192266464, 0.014962122775614262, 0.008562495931982994, -0.02488667704164982, 0.01574239879846573, 0.01221746951341629, -0.02416115812957287, 0.035865288227796555, -0.0018240647623315454, -0.0017966866726055741, -0.005468772258609533, 0.006348293274641037, 0.013798554427921772, -0.0036618185695260763, -0.012299603782594204, 0.014428249560296535, -0.029404060915112495, 0.006947188638150692, -0.009370149113237858, -0.03268942981958389, 0.007022478152066469, -0.0005710896803066134, -0.0014168157940730453, -0.005458505358546972, 0.0047466750256717205, -0.01579715497791767, -0.0272001251578331, 0.005893132649362087, 0.02291545644402504, -0.02203935757279396, 0.01930154860019684, 0.018548650667071342, -0.010718519799411297, -0.02117694728076458, -0.01403126772493124, -0.17456266283988953, 0.01835700497031212, 0.009233258664608002, -0.009568640030920506, 0.0031553241424262524, 0.028555341064929962, 0.02190246619284153, 0.003990355413407087, 0.009753442369401455, -0.01711130142211914, 0.023463018238544464, 0.016002489253878593, -0.035920046269893646, -0.017124991863965988, 0.008507739752531052, 0.0009565217769704759, -0.014140780083835125, 0.01101967878639698, 0.041669443249702454, 0.016221513971686363, 0.016358405351638794, -0.006906121503561735, 0.003956133034080267, -0.00015646146493963897, 0.017070235684514046, 0.0012927588541060686, -0.004719296935945749, 0.030636075884103775, 0.004428404849022627, -0.025215214118361473, -0.0065981182269752026, 0.010643229819834232, -0.00038329316885210574, -0.03504394739866257, 0.02377786487340927, 0.0003101423499174416, -0.004277825355529785, 0.013066190294921398, 0.004880143329501152, 0.005992378108203411, 0.00964393001049757, -0.01214902475476265, 0.029979001730680466, -0.005578284617513418, -0.010869098827242851, 0.03693303465843201, 0.0031330795027315617, -0.017727309837937355, 0.005499572493135929, -0.027213815599679947, 0.009746598079800606, 0.006009489297866821, 0.02146441675722599, -0.000660496240016073, 0.02624189294874668, 0.0110539011657238, 0.02277856506407261, 0.0071867466904222965, -0.009329081512987614, -0.014168158173561096, 0.00021357044170144945, -0.008980011567473412, 0.01930154860019684, -0.01018464658409357, -0.006379093509167433, -0.01468834187835455, -0.013066190294921398, 0.013230458833277225, -0.015318037942051888, 0.024380182847380638, 0.005301081575453281, 0.002830209443345666, 0.03581053391098976, -0.009657618589699268, -0.013038812205195427, -0.006738430820405483, -0.026146069169044495, 0.0253794826567173, -0.013298903591930866, -0.0242980495095253, -0.043832309544086456, 0.04183370992541313, -0.013764331117272377, -0.008966322056949139, -0.004414715804159641, 0.02595442347228527, -0.01149879489094019, -0.003997200168669224, -0.02073889784514904, -0.006731586065143347, 0.012737653218209743, -0.02973259799182415, -0.014263981021940708, -0.017604107037186623, 0.015167457982897758, 0.01819273643195629, 0.014660963788628578, -0.007111457176506519, 0.0031450572423636913, -0.009780820459127426, 0.009103212505578995, -0.022942833602428436, -0.0060847788117825985, 0.025913355872035027, 0.028746986761689186, 0.015386482700705528, -0.004893832374364138, 0.016440538689494133, 0.024051645770668983, 0.007645329926162958, -0.01986279897391796, 0.010362604632973671, 0.014332426711916924, 0.0004267130861990154, 0.011834176257252693, 0.022819632664322853, -0.004620051477104425, -0.023257682099938393, 0.005581706762313843, -0.03222400322556496, 0.06707630306482315, 0.005106012336909771, 0.006259314250200987, -0.0007807031506672502, -0.004534495063126087, -0.03676876425743103, -0.10940282046794891, 0.005102590192109346, 0.01475678663700819, 0.008275025524199009, -0.007398927118629217, 0.004821965005248785, -0.011820487678050995, 0.01994493417441845, -0.008076534606516361, 0.012792409397661686, -0.022805944085121155, -0.025256281718611717, 0.0033675043378025293, -0.0026984524447470903, 0.005177880171686411, -0.0257353987544775, -0.007967022247612476, -0.01841176114976406, -0.004277825355529785, 0.019999690353870392, -0.005513261537998915, -0.033401262015104294, 0.02023240365087986, -0.018726609647274017, 0.012285915203392506, 0.0027583418413996696, -0.026857899501919746, 0.029321927577257156, 0.02306603454053402, 0.015646575018763542, 0.0014724275097250938, -0.010314692743122578, 0.02240896038711071, -0.012970366515219212, 0.005017033778131008, -0.006663140840828419, -0.03247040510177612, 0.007624796126037836, 0.01893194392323494, -0.04125877097249031, 0.009349615313112736, -0.0076111070811748505, 0.013114102184772491, -0.0085145840421319, 0.009253792464733124, -0.0015126391081139445, -0.007583728991448879, -0.0010874232975766063, 0.015290659852325916, -0.013908066786825657, -0.023394571617245674, 0.01058847364038229, -0.04227175936102867, -0.01980804279446602, 0.027980400249361992, -0.016125690191984177, 0.019849110394716263, 0.013011434115469456, -0.01813798025250435, -0.01399704534560442, -0.03301796689629555, 0.012203780934214592, 0.004359959624707699, 0.02553006261587143, 0.010485805571079254, -0.007624796126037836, -0.010342070832848549, -0.01214902475476265, 0.03394882380962372, 0.013401571661233902, -0.019123591482639313, 0.009979311376810074, -0.03676876425743103, 0.01842544972896576, -0.01574239879846573, 0.01915096864104271, -0.027569729834794998, 0.006136112846434116, 0.01930154860019684, 0.0055543286725878716, -0.01312779076397419, -0.02082103304564953, -0.0008820876246318221, -0.002609473653137684, 0.022176247090101242, 0.016207825392484665, -0.006557051092386246, -0.021656064316630363, 0.007693241350352764, -0.026652563363313675, 0.014702030457556248, 0.025625886395573616, -0.0014074045466259122, -0.022299448028206825, 0.0009171657729893923, 0.045502375811338425, 0.029540952295064926, 0.01360006257891655, -0.02472240850329399, -0.0027343861293047667, -0.03159430995583534, 0.007556350901722908, -0.0652693510055542, 0.02785719931125641, 0.003976666368544102, 0.012984056025743484, -0.01661849580705166, -0.0013757486594840884, 0.012409116141498089, -0.020259780809283257, -0.01719343662261963, 0.015495995059609413, -0.006071089766919613, 0.0170428566634655, -0.01936999335885048, 0.0035351950209587812, -0.016714319586753845, -0.012196935713291168, -0.001745352754369378, -0.01544123888015747, 0.0019609553273767233, -0.002345959423109889, 0.003939021844416857, -0.014784164726734161, 0.020054446533322334, 0.003497550031170249, -0.03233351558446884, 0.007905421778559685, 0.011553551070392132, 0.02399688959121704, 0.0038671542424708605, -0.030444428324699402, 0.009185346774756908, -0.03616644814610481, -0.005684374365955591, 0.006355137564241886, 0.006242203060537577, 0.007255191914737225, -0.02234051562845707, 0.003328148275613785, -0.01748090609908104, 0.04706292599439621, -0.005366104189306498, -0.007980710826814175, 0.007248347625136375, -0.0377269983291626, 0.01572870835661888, 0.02959570847451687, -0.010068289935588837, 0.0019284437876194715, 0.01294298842549324, -0.014879988506436348, -0.0008696819422766566, 0.029185036197304726, -0.012457028031349182, -0.033538151532411575, 9.614412556402385e-05, -0.038110293447971344, 0.03329174965620041, -0.012477561831474304, 0.01674169860780239, -0.030198026448488235, 0.003252858528867364, 0.0007644474389962852, 0.015715019777417183, 0.006697363685816526, 0.01987648755311966, -0.011649374850094318, -0.002751497318968177, -0.015701331198215485, -0.013736953027546406, -0.023969512432813644, 0.011136035434901714, -0.008213425055146217, 0.004277825355529785, -0.014387182891368866, 0.00845298357307911, 0.03518083691596985, 7.769600779283792e-05, 0.020355604588985443, -0.019274171441793442, -0.0032648365013301373, -0.012265381403267384, -0.018247492611408234, -0.026433538645505905, 0.012723964639008045, 0.02995162270963192, 0.0021406239829957485, 0.023695731535553932, 0.02116325870156288, -0.0039595551788806915, 0.011567240580916405, 0.007549506612122059, -0.009794509038329124, -0.006071089766919613, -0.02617344819009304, -0.0007148246513679624, 0.021067434921860695, -0.010759586468338966, 0.006300381384789944, 0.01869923062622547, 0.03096461296081543, -0.011423504911363125, 0.025488995015621185, 0.010656919330358505, -0.013579529710114002, -0.004794586915522814, -0.01221746951341629, -0.024626586586236954, -0.010273626074194908, -0.00804231222718954, 0.031074125319719315, 0.00402115611359477, 0.01330574881285429, 0.034770164638757706, 0.0221214909106493, -0.007446838542819023, -0.008199735544621944, 0.013976511545479298, 0.00031121179927140474, -0.0027497862465679646, 0.028883878141641617, 0.013504239730536938, 0.04815804958343506, 0.02986948937177658, 0.007932799868285656, 0.006741852965205908, 0.014647274278104305, 0.01618044637143612, 0.03277156502008438, 0.0005005055572837591, 0.019260480999946594, 0.0033247258979827166, 0.00701563386246562, -0.03961608558893204, -0.0071867466904222965, 0.015537062659859657, -0.03008851408958435, -0.017316637560725212, 0.010259936563670635, -0.018179047852754593, 0.037809133529663086, 0.011204480193555355, -0.02313448116183281, -0.011882088147103786, -0.0005266003427095711, 0.02806253544986248, 0.018398072570562363, -0.004845920950174332, 0.0037405306939035654, -0.006680252496153116, 0.007802753709256649, -0.007337326183915138, 0.014825232326984406, -0.024818232282996178, -0.01646791771054268, 0.03227876126766205, -0.005208680406212807, 0.026803143322467804, -0.014989500865340233, -0.019055146723985672, 0.043394263833761215, 0.00745368329808116, 0.016728008165955544, 0.0033076147083193064, -0.012046356685459614, -0.006700785830616951, 0.010937544517219067, -0.0060847788117825985, 0.0035694176331162453, -0.05459189787507057, -0.007905421778559685, -0.0019609553273767233, -0.011218169704079628, -0.012785565108060837, 0.012922455556690693, 0.0017034300835803151, 0.006101890467107296, -0.012525472790002823, 0.030553940683603287, -0.0004220074915792793, -0.019849110394716263, 0.017590418457984924, -0.014729408547282219, -0.018151668831706047, 0.009657618589699268, -0.011984756216406822, -0.014359804801642895, -0.010143579915165901, -0.0173987727612257], "f38b34af-f8a3-406f-8721-ff6b81fba668": [-0.005332630593329668, -0.012472468428313732, -0.019208421930670738, 0.02501339092850685, -0.011883757077157497, 0.0293534267693758, -0.017989926040172577, -0.017031559720635414, -0.02108408510684967, -0.015867827460169792, 0.01033667754381895, 0.018167909234762192, 0.007317820098251104, 0.0009712027967907488, 0.002503735013306141, 0.0004419614269863814, 0.026423560455441475, -0.003980647772550583, 0.03584294393658638, -0.017633961513638496, -0.012581995688378811, -0.005917919334024191, -0.009960176423192024, 0.023507384583353996, -0.009364619851112366, 0.039183538407087326, 0.009309855289757252, -0.014265984296798706, -0.004668618552386761, -0.015101133845746517, -0.008529470302164555, 0.01437551248818636, 0.02144004963338375, -0.008796444162726402, -0.03263925760984421, -0.005134111735969782, 0.016251174733042717, -0.02482171729207039, 0.025561030954122543, 0.01268467865884304, 0.008330951444804668, 0.0002943557337857783, -0.019619151949882507, -0.003614414483308792, -0.02645094320178032, 0.020919792354106903, 0.012205494567751884, -0.022028760984539986, -0.011520946398377419, 0.014183838851749897, 0.014868387021124363, 0.013574590906500816, -0.027956949546933174, 0.004203125834465027, -0.012616223655641079, -0.004076484590768814, 0.005517458543181419, 0.016880959272384644, -0.020495373755693436, 0.0183869656175375, 0.004781569354236126, 0.009207173250615597, 0.0017952276393771172, 0.002621819730848074, -0.03359762579202652, -0.003010300686582923, -0.005445580929517746, 0.000903603620827198, -0.017387524247169495, -0.008029750548303127, 0.0337071530520916, 0.016579758375883102, 0.0018054959364235401, 0.015183279290795326, 0.022179361432790756, -0.02598544955253601, -0.015991047024726868, -0.02828553132712841, -0.01822267286479473, 0.008310414850711823, -0.011377191171050072, -0.03502148762345314, -0.011876910924911499, 0.006479248870164156, 0.020687047392129898, -0.01559400837868452, 0.024575280025601387, 0.019276877865195274, -0.018085762858390808, -0.025492575019598007, -0.006975546013563871, 0.014950532466173172, 0.018674474209547043, 0.01562139019370079, -0.0010961327934637666, 0.009652129374444485, -0.018167909234762192, 0.0021973997354507446, 0.0023651141673326492, -0.021097775548696518, -0.011883757077157497, -0.009741120971739292, -0.014485039748251438, -0.006931050680577755, -0.03272140398621559, 0.006807832047343254, -0.012116502970457077, 0.006821522954851389, 0.005469540134072304, -0.024328842759132385, 0.0033320384100079536, 0.027409309521317482, -0.02128944918513298, -0.04682309553027153, -0.006941318977624178, -0.014088002033531666, 0.03118801675736904, -0.023343093693256378, -0.015046369284391403, -0.012041202746331692, 0.0031489217653870583, 0.008673225529491901, -0.0020467990543693304, -0.007215138059109449, 0.003723942209035158, 0.011144444346427917, 0.01145933661609888, -0.029736774042248726, 0.008625307120382786, -0.00036986995837651193, 0.028970079496502876, 0.008187196217477322, 0.01889353059232235, -0.006588776595890522, -0.0064107938669621944, 0.015169587917625904, -0.032557111233472824, -0.0003022708115167916, -0.017702417448163033, -0.028121240437030792, 0.013355535455048084, 0.01006285846233368, -0.00824880599975586, -0.023918114602565765, -0.023247256875038147, 0.023986568674445152, 0.024643735960125923, 0.007865458726882935, -0.0196602251380682, 0.0012980744941160083, 0.023315712809562683, -0.01593628153204918, 0.02684798091650009, -0.019016748294234276, 0.02654678001999855, 0.0015042946906760335, 0.018058381974697113, -0.0032567381858825684, 0.008960735984146595, 0.003573341527953744, 0.02639617957174778, 0.02992844767868519, 0.02869626134634018, -0.005226525478065014, 0.01325285341590643, 0.024958627298474312, 0.0034775049425661564, 0.0032447585836052895, -0.03012012131512165, -0.013999010436236858, 0.013677272945642471, 0.01975606195628643, -0.03146183490753174, -0.003172880969941616, -0.008488398045301437, 0.01161678321659565, 0.041374094784259796, 0.02823076769709587, -0.020029880106449127, -0.0008257362642325461, -0.033159516751766205, -0.00888543576002121, 0.03975855931639671, 0.00430238526314497, 0.005784432403743267, -0.010480432771146297, -0.010583115741610527, -0.01368411909788847, 0.009357773698866367, 0.0048123737797141075, 0.011835838668048382, 0.017757181078195572, -0.025903305038809776, -0.027245018631219864, -0.6387656331062317, -0.025355665013194084, -0.011178672313690186, -0.0060856337659060955, -0.013020106591284275, 0.0004642092389985919, 0.0008916240185499191, -0.003792396979406476, -0.006722263526171446, 0.007509493734687567, -0.02604021318256855, -0.005671482067555189, -0.0025259829126298428, -0.008152969181537628, -0.026259269565343857, -0.01401270180940628, 0.01024084072560072, -0.016251174733042717, 0.0022966591641306877, -0.013622509315609932, -0.00860477052628994, 0.005469540134072304, 0.006715417839586735, 0.018003618344664574, -0.006246502511203289, -0.00564067717641592, 0.015251734293997288, 0.0009395424276590347, -0.0021665950771421194, 0.02083764784038067, -0.023425240069627762, 0.015169587917625904, 0.026464633643627167, 0.010966462083160877, 0.04983510822057724, -0.01960546150803566, -0.024013951420783997, 0.015799373388290405, 0.00736573850736022, 0.000783379829954356, -0.022603781893849373, -0.02302820235490799, 0.009501528926193714, 0.0038882337976247072, -0.0005087048630230129, 0.007523184642195702, 0.0194000955671072, -0.022809145972132683, 0.0047302283346652985, 0.009617902338504791, -0.0022008225787431, -0.0022966591641306877, -0.0077764675952494144, -0.008098205551505089, 0.005038274917751551, -0.004778146278113127, 0.03146183490753174, -0.009782194159924984, 0.014717786572873592, -0.014129075221717358, 0.007687476463615894, 0.027915876358747482, 0.0004043112858198583, -0.00716037442907691, -0.01179476547986269, 0.012157576158642769, -0.010507814586162567, 0.017442287877202034, 0.025163991376757622, -0.011541482992470264, 0.0025054465513676405, 0.01204804889857769, 0.004227085039019585, -0.02364429458975792, 0.02572532184422016, 0.0025499421171844006, 0.03485719487071037, -0.03496672213077545, -0.001278393785469234, 0.029599864035844803, 0.004815796855837107, -0.00885805394500494, -0.04055263474583626, -0.017141086980700493, 0.01781194470822811, -0.019016748294234276, -0.002204245189204812, 0.036746546626091, -0.007701167371124029, 0.007482111919671297, 0.002053644508123398, 0.026218196377158165, 0.00824880599975586, 0.004405067767947912, 0.04044310748577118, 0.005229948088526726, -0.010288759134709835, -0.005585913546383381, -0.00579470070078969, -0.012855815701186657, 0.008378869853913784, -0.013499290682375431, 0.020385846495628357, -0.012020666152238846, 0.0061677792109549046, -0.007119301240891218, -0.03589770942926407, -0.011007535271346569, 0.038882337510585785, -0.033515479415655136, -0.01859232969582081, -0.005123843438923359, -0.014827313832938671, 0.0021546154748648405, 0.04435872286558151, -0.016812503337860107, 0.016401775181293488, 0.0018499915022403002, 0.024698499590158463, -0.015744607895612717, 0.023356784135103226, -0.010761098004877567, 0.010446205735206604, -0.016374392434954643, 0.021891850978136063, 0.03304998576641083, 0.03712989389896393, -0.019537005573511124, -0.015210661105811596, -0.01992035284638405, 0.013204935006797314, -0.010281913913786411, -0.003237913129851222, 0.013930556364357471, 0.010206613689661026, -0.014868387021124363, 0.040716927498579025, 0.009761657565832138, 0.011890602298080921, -0.016114264726638794, -0.014101693406701088, 0.0016249462496489286, 0.008461016230285168, 0.0006545992218889296, 0.0031437876168638468, -0.023110346868634224, -0.012479313649237156, -0.009131873026490211, -0.038115642964839935, 0.016607139259576797, -0.024534206837415695, -0.006568240001797676, -0.008118742145597935, 0.002063912805169821, 0.014717786572873592, -0.004723382648080587, -0.03529530391097069, 0.0038232016377151012, 0.01286266092211008, -0.028833171352744102, 0.006506630685180426, 0.006294420920312405, -0.019769752398133278, 0.007372584193944931, 0.028778405860066414, -0.015703536570072174, -0.01240401342511177, 0.039402592927217484, -0.008255651220679283, -0.036938220262527466, 0.016607139259576797, -0.0032550266478210688, 0.0031027146615087986, 0.05224471911787987, -0.010603651404380798, -0.007721703965216875, -0.02237103506922722, -0.008118742145597935, 0.00030162904295139015, 0.008433633483946323, -0.011329272761940956, 0.022220434620976448, -0.004860292188823223, -0.010843243449926376, 0.01648392155766487, -0.004333190154284239, -0.009412538260221481, 0.003912192769348621, -0.0024147438816726208, 0.03233805671334267, -0.012068584561347961, 0.007132992148399353, -0.0018910644575953484, 0.008947044610977173, 0.013855256140232086, 0.010302450507879257, 0.02179601415991783, 0.031160634011030197, 0.004559090826660395, 0.0020177059341222048, 0.012472468428313732, 0.013896328397095203, 0.016141647472977638, -0.014224912039935589, 0.0010165540734305978, -0.025259828194975853, 0.006441598758101463, -0.007002928294241428, 0.03691083937883377, -0.02613605000078678, 0.0027809771709144115, -0.024575280025601387, -0.010548887774348259, 0.004675464238971472, 0.016223791986703873, 0.030010594055056572, 0.005924764554947615, 0.014252293854951859, -0.003833469934761524, 0.009419383481144905, 0.009515220299363136, -0.010446205735206604, 0.0053839716129004955, -0.015073751099407673, -0.02293236553668976, 0.008228269405663013, 0.01360881794244051, 0.0377870611846447, 0.012445086613297462, -0.007660094648599625, 0.023260947316884995, -0.008844362571835518, -0.004548822995275259, 0.003847160842269659, 0.015484480187296867, -0.0024609507527202368, 0.011753692291676998, -0.012390322983264923, 0.03359762579202652, -0.03721204027533531, -0.005917919334024191, -0.002413032343611121, 0.03614414483308792, -0.026409870013594627, -0.007112456019967794, 0.01730537787079811, 0.012623068876564503, -0.0005754483281634748, 0.00509303854778409, 0.023000819608569145, -0.010788479819893837, -0.0034244523849338293, -0.01069948822259903, -0.015333879739046097, 0.0026423560921102762, -0.02712179906666279, -0.004175744019448757, 0.014813623391091824, 0.008673225529491901, 0.026272960007190704, 0.021152539178729057, 0.0007645547739230096, 0.03028441220521927, 0.02379489503800869, 0.04657666012644768, 0.00031146942637860775, 0.0077833132818341255, 0.018660783767700195, -0.022863909602165222, -0.024986010044813156, -0.015402334742248058, -0.008002368733286858, 0.020892411470413208, -0.00672910874709487, 0.011021225713193417, 0.013033797964453697, 0.004254467319697142, -0.013540363870561123, 0.020618591457605362, 0.0051649161614477634, -0.022863909602165222, -0.03452861309051514, 0.021878160536289215, 0.007420502603054047, 0.0020331081468611956, -0.01955069601535797, -0.017373833805322647, 0.008016059175133705, -0.0028836592100560665, 0.02839506044983864, -0.021262066438794136, 0.019673915579915047, 0.0352131612598896, -0.010329832322895527, -0.0015616256278008223, 0.016524992883205414, 0.0214537400752306, -0.01432074885815382, 0.03381668031215668, -0.01689464971423149, 0.005130688659846783, 0.001387065858580172, -0.015128515660762787, 0.007393120788037777, 0.02598544955253601, 0.004062793683260679, -0.009104491211473942, -0.010432514362037182, 0.01612795516848564, -0.022644855082035065, 0.006414216477423906, -0.028531968593597412, -0.01143880095332861, -0.009960176423192024, -0.0009087377693504095, 0.008618461899459362, -0.019181041046977043, 0.013560899533331394, 0.029435573145747185, 0.005428467411547899, -0.013061179779469967, -0.010542042553424835, -0.01746967062354088, -0.0029606709722429514, 0.09167469292879105, 0.019085204228758812, -0.017195850610733032, 0.007851768285036087, -0.003429586533457041, 0.019386405125260353, -0.0163333211094141, -0.04074430838227272, 0.020235244184732437, 0.006030869670212269, -0.0002005512360483408, -0.008481551893055439, 0.020358463749289513, -0.004206548910588026, 0.00403198879212141, -0.0026201081927865744, -0.010966462083160877, 0.013006416149437428, 1.803624036256224e-05, 0.006886554881930351, 0.009200328029692173, 0.01360881794244051, 0.0002058992686215788, 0.0061951614916324615, -0.026533087715506554, -0.01803099922835827, 0.0308868158608675, 0.012027512304484844, 0.017277996987104416, -0.011110217310488224, -0.013451372273266315, 0.02665630728006363, 0.028148623183369637, 0.02297343872487545, -0.014608258381485939, -0.005722823087126017, 0.007085073739290237, 0.02439729869365692, -0.0029486913699656725, 0.0049219015054404736, 0.01069948822259903, 0.018208982422947884, 0.007009773515164852, -0.01337607204914093, 0.01033667754381895, 0.004305808339267969, -0.007687476463615894, -0.012212339788675308, -0.03603461757302284, -0.007153528742492199, 0.04052525386214256, -5.877488001715392e-05, -0.020413227379322052, -0.007167219650000334, 0.00227269995957613, 0.01827743649482727, 0.005757050588726997, -0.0039190384559333324, -0.008228269405663013, 0.038991864770650864, -0.009960176423192024, 0.015457098372280598, 0.018318509683012962, -0.005472962744534016, -0.02231627143919468, -0.024671116843819618, -0.024575280025601387, -0.01179476547986269, -0.021576959639787674, 0.027231328189373016, -0.017962545156478882, -0.017962545156478882, -0.01485469564795494, 0.011144444346427917, -0.006835213862359524, 0.0016951124416664243, 0.02992844767868519, -0.02573901228606701, 0.00709876511245966, -0.022740691900253296, -0.010747406631708145, -0.02538304775953293, 0.004613854922354221, -0.021864470094442368, -0.008905972354114056, 0.00946730189025402, 0.019838206470012665, 0.018619710579514503, -0.022220434620976448, 0.01623748429119587, -0.0035973007325083017, 0.01930425874888897, 0.02619081363081932, -0.015991047024726868, 0.008700607344508171, -0.011986439116299152, -0.011377191171050072, -0.012445086613297462, -0.019619151949882507, -0.016456538811326027, 0.007139837834984064, -0.0526006855070591, 0.012191803194582462, -0.00937146507203579, 0.013177553191781044, -0.027190255001187325, 0.0020467990543693304, 0.006571662612259388, -0.014443967491388321, -0.015854137018322945, 0.008625307120382786, -0.01608688198029995, -0.0005322362412698567, -0.009501528926193714, -0.004446140490472317, 0.007625867146998644, 0.011315582320094109, 0.016114264726638794, 0.020139407366514206, -0.0007624155841767788, -0.003280697390437126, -0.03707513213157654, 0.0014640775043517351, 0.0039258841425180435, -0.02057751826941967, -0.0005818659556098282, 0.0097000477835536, -0.02087872102856636, 0.017729798331856728, 0.006838636472821236, 0.024931246414780617, 0.0035425368696451187, 0.012513541616499424, -0.004980088211596012, -0.03058561310172081, -0.004192857537418604, -0.011411418206989765, -0.005575645249336958, -0.007530030328780413, 0.015580317005515099, -0.012068584561347961, -0.016771430149674416, -0.003470659488812089, -0.01623748429119587, -0.0014384068781509995, -0.015648771077394485, -0.021686486899852753, 0.011178672313690186, -0.0008642420871183276, -0.001796939061023295, 0.003227644832804799, -0.032146383076906204, -0.03170827403664589, -0.01623748429119587, -0.0068694413639605045, -0.04356464743614197, -0.00873483531177044, -0.00724936556071043, 0.019632842391729355, -0.012643605470657349, 0.03252973034977913, -0.02291867323219776, 0.01401270180940628, -0.006910514086484909, -0.0168535765260458, -0.006119860801845789, -0.01549817156046629, -0.02976415678858757, -0.041538383811712265, -0.01930425874888897, 0.03869066387414932, 0.014252293854951859, 0.019427478313446045, -0.02007095329463482, -0.010103931650519371, 0.03181780129671097, -0.012383476831018925, -0.009768502786755562, -0.02267223596572876, -0.028531968593597412, -0.02291867323219776, 0.007708012592047453, 0.00564067717641592, -0.0005891392938792706, -0.03135230764746666, 0.006777027156203985, 0.07310974597930908, 0.007509493734687567, 0.00036516369436867535, -0.019482241943478584, 0.007865458726882935, -0.008365179412066936, 0.0007615598733536899, -0.011219745501875877, -0.0007256211247295141, -0.011781075038015842, 0.025697939097881317, -0.010548887774348259, 0.004685732536017895, -0.005134111735969782, 3.510983515297994e-05, 0.012821587733924389, -0.00921401847153902, -0.004322921857237816, -0.023507384583353996, 0.002402764279395342, -0.011815302073955536, -0.03195470944046974, 0.024191932752728462, -0.030804669484496117, -0.00819404236972332, -0.010959616862237453, 0.007694321684539318, -0.03231067582964897, -0.024588972330093384, 5.781223444500938e-05, 0.014594567939639091, 0.007324665784835815, -0.007064537610858679, -0.016880959272384644, 0.010275068692862988, -0.005979528650641441, 0.03220114856958389, 0.0007739673019386828, 0.027299782261252403, 0.01289004273712635, -0.00906341802328825, 0.0024404143914580345, 0.0034535457380115986, -0.002789533929899335, -0.02482171729207039, 0.03206423670053482, 0.007215138059109449, 0.0029692277312278748, 0.008296724408864975, -0.020344773307442665, 0.011527791619300842, -0.04737073555588722, -0.02894269861280918, 0.01874293014407158, 0.012595687061548233, -0.01689464971423149, -0.0006126706721261144, -0.017291687428951263, -0.03170827403664589, 0.01883876696228981, -0.0005899950047023594, 0.017031559720635414, -0.01449873112142086, -0.014046928845345974, -0.03129754215478897, 0.011486719362437725, 0.0183869656175375, 0.03140707314014435, 0.014690404757857323, -0.01095277164131403, -0.030092738568782806, 0.0018226095708087087, -0.023260947316884995, -0.01960546150803566, -0.008118742145597935, 0.009939639829099178, 0.00165318395011127, 0.007174065336585045, 0.006564817391335964, 0.006376566365361214, -0.02250794507563114, -0.005585913546383381, -0.026998581364750862, 0.02536935731768608, 0.01000809483230114, 0.029243899509310722, 0.0146767133846879, 0.026067595928907394, 0.01000809483230114, 0.014019547030329704, -0.004055947996675968, 0.010288759134709835, -0.019126277416944504, -0.0016856999136507511, 0.004384531173855066, 0.01612795516848564, -0.003176303580403328, -0.017894089221954346, -0.014594567939639091, 0.001399901113472879, -0.003172880969941616, 0.027792656794190407, 0.0037752834614366293, -0.04739811643958092, -0.03639058396220207, 0.01306802500039339, -0.03124278038740158, 0.009878030978143215, -0.010097086429595947, 0.029079608619213104, -0.003539114259183407, 0.027149181813001633, -0.025095537304878235, 0.020194172859191895, -0.011206054128706455, 0.013910019770264626, -0.03376191854476929, 0.016305938363075256, 0.009754812344908714, -0.021522196009755135, 0.02389073185622692, -0.02551995776593685, -0.02405502460896969, 0.01434813067317009, 0.012623068876564503, 0.010733716189861298, -0.0012142173945903778, 0.016210101544857025, 0.008262496441602707, -0.0006366298184730113, 0.015813063830137253, -0.00282033858820796, -0.031324926763772964, 0.008994963020086288, 0.03211900219321251, -0.0034689479507505894, 0.01391686499118805, -0.016196411103010178, 0.02725870907306671, 0.01003547664731741, 0.010918543674051762, 0.011828993447124958, -0.042305078357458115, 0.023863350972533226, -0.015895210206508636, 0.015854137018322945, 0.011774228885769844, -0.02052275463938713, -0.007317820098251104, -0.03650011122226715, -0.0034227410797029734, 0.0006486094207502902, 0.011117062531411648, -0.007509493734687567, 0.02660154365003109, 0.0007902253419160843, -0.0026457789354026318, -0.0063081118278205395, -0.01782563515007496, 0.007085073739290237, 0.02572532184422016, -0.00019520320347510278, -0.03644534572958946, 0.002247029449790716, 0.0012142173945903778, 0.029955830425024033, -0.0025499421171844006, -0.02241210825741291, -0.006924204993993044, -0.04104550927877426, -0.020687047392129898, -0.005452426616102457, -0.0033987818751484156, 0.02594437636435032, 0.04257889837026596, 0.009138718247413635, 0.013971628621220589, 0.019523315131664276, -0.01934533193707466, -0.006373143754899502, 0.005411353427916765, -0.0005976961692795157, -0.014046928845345974, -0.006113015580922365, -0.009768502786755562, 0.011897447519004345, -0.022425798699259758, -0.007057691924273968, 0.014594567939639091, 0.00742734782397747, 0.014841005206108093, 0.00222820439375937, 0.0031574785243719816, 0.010179231874644756, -0.01766134425997734, -0.007153528742492199, 0.00937146507203579, 0.02828553132712841, 0.0005758761544711888, -0.00606509717181325, -0.019276877865195274, -0.010507814586162567, -0.006332071032375097, -0.017743488773703575, -0.029901064932346344, -0.007810695096850395, -0.010569424368441105, 0.008303569629788399, -0.012787360697984695, -0.013239162042737007, -0.029189135879278183, -0.036582257598638535, 0.03272140398621559, -0.013102252967655659, 0.002015994396060705, 0.03414526581764221, -0.00037971034180372953, -0.019988806918263435, -0.009125027805566788, 0.02276807278394699, 0.010432514362037182, -0.02823076769709587, 0.01161678321659565, -0.02992844767868519, 0.02144004963338375, -0.002248740755021572, 0.007482111919671297, -0.028203386813402176, 0.02072812058031559, -0.008330951444804668, 0.022781765088438988, -0.01960546150803566, 0.017592888325452805, 0.019988806918263435, -0.00033072236692532897, -0.002204245189204812, -0.0038916566409170628, -0.010528351180255413, 0.017031559720635414, -0.020235244184732437, -0.005240216385573149, -0.006999505218118429, 0.02551995776593685, 0.008406251668930054, 0.00038955072523094714, -0.01024084072560072, 0.009083954617381096, 0.012643605470657349, -0.02138528600335121, -0.005106729455292225, 0.20952650904655457, -0.02695750817656517, -0.0017781140049919486, 0.021330522373318672, -0.011117062531411648, 0.021987687796354294, 0.023302020505070686, -0.012301331385970116, -0.017743488773703575, -0.009172946214675903, -0.013246008194983006, 0.02026262693107128, -0.014265984296798706, -0.00040259992238134146, 0.010056013241410255, -0.0006353462813422084, -0.05673535540699959, -0.015183279290795326, 0.004839755594730377, -0.05673535540699959, -0.000173704102053307, -0.01260937750339508, -0.008529470302164555, -0.007119301240891218, 0.0146767133846879, -0.0016249462496489286, -0.001928714569658041, -0.008283033035695553, 0.03192732855677605, -0.005544840358197689, -0.03296784311532974, 0.0011859798105433583, -0.006581930909305811, -0.011384036391973495, -0.007146683055907488, 0.018085762858390808, 0.007769622374325991, 0.01792147196829319, 0.018770311027765274, -0.015018987469375134, 0.007530030328780413, 0.003328615566715598, 0.0037513242568820715, -0.0011714331340044737, -0.0019783442839980125, 0.025396738201379776, -0.002801513532176614, -0.013752573169767857, -0.01573091745376587, 0.008755371905863285, -0.03200947493314743, 0.012506695464253426, 0.03849899023771286, 0.022069834172725677, -0.005900805350393057, -0.017086323350667953, 0.004384531173855066, 0.006359452847391367, 0.0008133288356475532, 0.012034357525408268, -0.024328842759132385, 0.018961984664201736, 0.006513476371765137, 0.03721204027533531, -0.024698499590158463, 0.00834464281797409, -0.004189434926956892, 0.008474706672132015, 0.014402894303202629, -0.021576959639787674, -0.007680630777031183, -0.026779524981975555, 0.007495802827179432, -0.007447884418070316, -0.008796444162726402, -0.012753132730722427, 0.021741250529885292, -0.030804669484496117, 0.0061951614916324615, 0.0010713179362937808, 0.019482241943478584, -0.006951586809009314, 0.02048168145120144, -0.005175184458494186, 0.004764455370604992, -0.029791537672281265, -0.011678392067551613, -0.0163333211094141, -0.012595687061548233, 0.0067496453411877155, -0.027915876358747482, -0.02460266277194023, -0.003929306752979755, -0.01874293014407158, -0.009508374147117138, -0.01807207241654396, 0.025081846863031387, 0.010576269589364529, 0.008283033035695553, 0.008433633483946323, -0.007078228518366814, -0.021001938730478287, 0.013670427724719048, 0.011698928661644459, -0.027710512280464172, -0.008070823736488819, 0.018414346501231194, 0.002626953646540642, 0.017195850610733032, 0.009919103235006332, 0.03354286029934883, -0.016223791986703873, -0.0005211123498156667, -0.013978474773466587, 0.012239721603691578, 0.02097455784678459, -0.01207543071359396, -0.022220434620976448, -0.006896823178976774, 0.006893400568515062, 0.026779524981975555, -0.01240401342511177, -0.007242519874125719, 0.00819404236972332, -0.0015128515660762787, -0.016114264726638794, -0.02052275463938713, 0.027505146339535713, 0.0046104323118925095, -0.002676583593711257, 0.015155897475779057, -0.047562409192323685, 0.009768502786755562, -0.004110712092369795, -0.01179476547986269, 0.0074136569164693356, -0.0042407759465277195, -0.028422441333532333, 0.032858312129974365, -0.0005634687258861959, 0.00016504029917996377, 0.0016779988072812557, 0.005455849226564169, 0.0098301125690341, -0.0014118807157501578, -0.007016619201749563, 0.010932235047221184, -0.031133253127336502, 0.00024451204808428884, -0.008070823736488819, -0.03277616947889328, 0.007290438283234835, -0.004894519690424204, -0.004199703224003315, 0.008844362571835518, 0.00403198879212141, -0.015744607895612717, -0.01751074381172657, -0.0036417965311557055, 0.02929866313934326, -0.02512292005121708, 0.013362380675971508, 0.021672796458005905, 0.007399966008961201, -0.019838206470012665, -0.023247256875038147, -0.17491576075553894, 0.021713869646191597, 0.01485469564795494, -0.009747966192662716, 0.0194000955671072, 0.0306403785943985, 0.023151420056819916, -0.00016332892118953168, -0.003778706071898341, -0.016867266967892647, 0.021713869646191597, 0.019797133281826973, -0.03444646671414375, -0.01730537787079811, -0.004220239818096161, 0.0017575775273144245, -0.030092738568782806, 0.014621949754655361, 0.036938220262527466, 0.024082405492663383, 0.00870745349675417, -0.010076549835503101, 0.013937401585280895, -0.011726310476660728, 0.007920222356915474, -0.008317261002957821, -0.0037513242568820715, 0.02802540361881256, 0.005599604453891516, -0.02506815455853939, -0.014977915212512016, 0.012896887958049774, -0.0007414512801915407, -0.03417264670133591, 0.026355106383562088, 0.005561954341828823, -0.003747901413589716, 0.0012732596369460225, -0.007701167371124029, 0.018085762858390808, 0.012773669324815273, 0.0028408749494701624, 0.019838206470012665, -0.0012826721649616957, -0.008070823736488819, 0.03302260488271713, -0.0050348518416285515, -0.01981082558631897, 0.012780515477061272, -0.012623068876564503, 0.007139837834984064, -0.003713673911988735, 0.020618591457605362, 0.0009489549556747079, 0.023877041414380074, 0.015388643369078636, 0.01268467865884304, 0.011267663910984993, -0.01608688198029995, -0.003340595168992877, 0.001377653214149177, -0.008926508948206902, 0.022631164640188217, -0.01447134930640459, -0.004843178670853376, -0.003183149266988039, -0.010918543674051762, 0.008796444162726402, -0.01649761199951172, 0.022247817367315292, 0.011548328213393688, 0.004120980389416218, 0.04162053018808365, -0.007557412143796682, -0.00796814076602459, -0.008481551893055439, -0.02102932147681713, 0.019591769203543663, -0.01549817156046629, -0.017688725143671036, -0.04611116647720337, 0.03890971839427948, -0.015155897475779057, -0.01082270685583353, -0.0015830177580937743, 0.011425109580159187, -0.008488398045301437, -0.01279420591890812, -0.019468551501631737, -0.009617902338504791, 0.01549817156046629, -0.024999700486660004, -0.012369786389172077, 0.0005352311418391764, 0.011828993447124958, 0.014882078394293785, 0.017332760617136955, -0.01447134930640459, 0.00694474158808589, -0.023575840517878532, 0.005339475814253092, -0.02328833006322384, -0.0006426196196116507, 0.031133253127336502, 0.024068715050816536, 0.024328842759132385, -0.00785861350595951, 0.02012571692466736, 0.01679881289601326, 0.010220305062830448, -0.011685238219797611, 0.007242519874125719, 0.024068715050816536, 0.0073041291907429695, 0.01900305785238743, 0.022480562329292297, -0.0063081118278205395, -0.019783442839980125, 0.009816421195864677, -0.0173601433634758, 0.05673535540699959, -0.0019372714450582862, -0.0004804672789759934, -0.0036417965311557055, -0.00043040968012064695, -0.032913077622652054, -0.12113764882087708, -0.01179476547986269, 0.010227150283753872, 0.019290568307042122, -0.0021101199090480804, 0.012027512304484844, -0.0070919194258749485, 0.017935162410140038, -0.013519827276468277, 0.003580187214538455, -0.017442287877202034, -0.02650570683181286, 0.008152969181537628, -0.00785861350595951, 0.012677832506597042, -0.030914196744561195, -0.004873983096331358, -0.0211799219250679, -0.011247127316892147, 0.026272960007190704, -0.005322362296283245, -0.023110346868634224, 0.018756620585918427, -0.020029880106449127, 0.016976796090602875, -0.0020861607044935226, -0.01664821244776249, 0.025451501831412315, 0.027505146339535713, 0.010377750732004642, -0.01322547160089016, -0.0026492015458643436, 0.01668928563594818, -0.012568305246531963, 0.009227709844708443, -0.02572532184422016, -0.03485719487071037, 0.004891097079962492, 0.015087442472577095, -0.039293065667152405, 0.013649891130626202, -0.014991605654358864, 0.009357773698866367, -0.014307057484984398, 0.012137039564549923, -0.0019475396256893873, -0.012636760249733925, 0.002589303534477949, 0.009645284153521061, -0.01133611798286438, -0.035103630274534225, 0.00564067717641592, -0.04427657648921013, -0.011089680716395378, 0.02701227180659771, -0.005914496723562479, 0.027655746787786484, 0.004025143571197987, -0.013300771825015545, -0.009611057117581367, -0.020741811022162437, 0.006722263526171446, 0.004535132087767124, 0.02465742640197277, 0.010877471417188644, -0.0002945696469396353, -0.0077764675952494144, -0.004880828782916069, 0.029435573145747185, 0.014786241576075554, -0.01919473148882389, 0.0010328120552003384, -0.029654627665877342, 0.020029880106449127, -0.013280235230922699, 0.016114264726638794, -0.02052275463938713, -0.0012715483317151666, 0.008851208724081516, 0.01648392155766487, -0.014183838851749897, -0.020687047392129898, -0.002964093815535307, -0.0027604405768215656, 0.012595687061548233, 0.016757739707827568, 0.001695968210697174, -0.026793217286467552, 0.005767318420112133, -0.02037215419113636, 0.003953265957534313, 0.020495373755693436, -0.00918663665652275, -0.037294186651706696, -0.0076532489620149136, 0.033734533935785294, 0.02970939129590988, 0.01930425874888897, -0.02946295402944088, -0.007475266233086586, -0.022809145972132683, 0.012568305246531963, -0.05449003726243973, 0.028860552236437798, -0.0028939275071024895, 0.004559090826660395, -0.003963534254580736, 0.002524271607398987, 0.016620829701423645, -0.028887934982776642, -0.016470229253172874, 0.008563698269426823, -0.01343083567917347, 0.021919233724474907, -0.013636200688779354, 0.007728549186140299, -0.024137169122695923, -0.008673225529491901, -0.0026731607504189014, -0.01898936741054058, 0.004021720495074987, -0.011726310476660728, 0.008310414850711823, 0.006403948646038771, 0.022549018263816833, -0.0019663646817207336, -0.03376191854476929, 0.004435872193425894, 0.016018427908420563, 0.026053905487060547, -0.00013434258289635181, -0.024547899141907692, 0.01049412414431572, -0.03017488494515419, -0.0014914594357833266, 0.006212275009602308, 0.005014315713196993, 0.015169587917625904, -0.012061739340424538, -0.0048226420767605305, -0.0181268360465765, 0.04156576842069626, -0.003184860572218895, -0.002226493088528514, 0.010247686877846718, -0.022398417815566063, 0.02123468555510044, 0.031379688531160355, -0.022891292348504066, -5.9897967730648816e-05, 0.01730537787079811, -0.007612176239490509, -0.010610497556626797, 0.030804669484496117, 0.0008013492333702743, -0.03376191854476929, 0.0006006910698488355, -0.03058561310172081, 0.026026522740721703, -0.014813623391091824, 0.01679881289601326, -0.032392822206020355, 0.014745168387889862, -0.0056167179718613625, -0.004651505034416914, 0.0013631066540256143, 0.021522196009755135, -0.01544340793043375, -0.008433633483946323, -0.013937401585280895, -0.014594567939639091, -0.009795884601771832, 0.004918478894978762, 0.002587592229247093, -0.005935032851994038, -0.0030154348351061344, 0.01694941334426403, 0.01930425874888897, 0.002753595123067498, 0.00888543576002121, -0.015416025184094906, 0.015292806550860405, -0.018058381974697113, -0.018811384215950966, -0.026628924533724785, 0.0005219680024310946, 0.034336939454078674, 0.0033970705699175596, 0.017497051507234573, 0.0025858809240162373, -0.009131873026490211, 0.008933354169130325, 0.017839325591921806, -0.013595127500593662, -0.0097000477835536, -0.013170707039535046, 0.006373143754899502, 0.011904293671250343, -0.011671546846628189, 0.0042681582272052765, 0.005585913546383381, 0.04156576842069626, -0.012780515477061272, 0.018291128799319267, 0.016360701993107796, -0.012759978882968426, 0.007564257830381393, -0.016045810654759407, -0.022590091452002525, -0.01571722701191902, -0.0017986503662541509, 0.02751883864402771, -0.00012749710003845394, -0.00045907514868304133, 0.036746546626091, 0.017387524247169495, -0.014772550202906132, -0.008515779860317707, 0.0055037676356732845, -0.01136349979788065, -0.009987558238208294, 0.04025143384933472, 0.0206733550876379, 0.03844422847032547, 0.019016748294234276, 0.0107268700376153, 0.00888543576002121, 0.014211220666766167, 0.01868816651403904, 0.028887934982776642, 0.0006024024332873523, 0.013574590906500816, 0.006811254657804966, 0.006708572618663311, -0.03647272661328316, -0.007831231690943241, 0.012985879555344582, -0.02869626134634018, -0.01608688198029995, 0.008173505775630474, -0.030366558581590652, 0.03395359218120575, 0.001630936050787568, -0.026437250897288322, -0.01797623559832573, 0.0027724201790988445, 0.027094418182969093, 0.017880398780107498, 0.0029794960282742977, -0.00116801040712744, -0.0038916566409170628, 0.014265984296798706, -0.02368536777794361, 0.013499290682375431, -0.020796574652194977, -0.011787920258939266, 0.028066476806998253, 0.005000624805688858, 0.03258449584245682, -0.019112585112452507, -0.009939639829099178, 0.03452861309051514, 0.00572966830804944, 0.024876480922102928, -0.0009831823408603668, -0.005770741496235132, -0.0010627610608935356, 0.016264865174889565, -0.0051443795673549175, 0.004387953784316778, -0.041894350200891495, -0.0066469633020460606, 0.002382227685302496, -0.019769752398133278, -0.015539244748651981, 0.014265984296798706, 0.0015060061123222113, -0.00010754894174169749, -0.014402894303202629, 0.024328842759132385, -0.0044803679920732975, -0.021097775548696518, 0.024479443207383156, -0.017346451058983803, -0.02665630728006363, 0.013978474773466587, -0.022685928270220757, -0.0199066624045372, -0.004572782199829817, -0.020851338282227516], "e5edb519-c22d-4cc9-972e-f77b5d9a847c": [-0.00514468178153038, -0.03004630096256733, -0.007633825298398733, 0.005226181820034981, -0.011885403655469418, 0.03200230002403259, -0.02750622108578682, -0.012809069827198982, -0.009854697622358799, -0.024449974298477173, 0.011151904240250587, 0.008224699646234512, 0.0002491690102033317, 0.006662617903202772, -0.003725225105881691, 0.0001132296965806745, 0.031540464609861374, -0.0013354100519791245, 0.030779799446463585, -0.019763728603720665, 0.014126651920378208, -0.0009805457666516304, -0.011050029657781124, 0.024775972589850426, -0.021366560831665993, 0.03800612688064575, 0.014289651066064835, -0.01980447955429554, 0.013528985902667046, -0.014031568542122841, -0.01163411233574152, 0.006258514244109392, 0.004903578199446201, -0.010085614398121834, -0.02674555405974388, -0.008428449742496014, 0.01240156963467598, -0.014466234482824802, 0.030725466087460518, 0.0038406832609325647, -0.005538598168641329, -0.0003200569481123239, -0.01229290384799242, 0.0035384546499699354, -0.014031568542122841, 0.024911805987358093, 0.006081930827349424, -0.03431146219372749, -0.013488235883414745, 0.023132391273975372, 0.015186150558292866, 0.005134494509547949, -0.020062562078237534, 0.010954946279525757, -0.01634073257446289, 0.0017293263226747513, 0.014371151104569435, 0.0045775785110890865, -0.031703464686870575, 0.038495127111673355, 0.016924815252423286, 0.0015400088159367442, 0.007912282831966877, 0.0030358717776834965, -0.046101782470941544, -0.004455328453332186, -0.008020949549973011, -0.0023363307118415833, 0.002998517593368888, 0.001184295630082488, 0.028687968850135803, 0.008842740207910538, 0.00016671401681378484, 0.0006426607724279165, 0.01950564607977867, -0.034474462270736694, -0.03088846616446972, -0.018242396414279938, -0.02620222233235836, 0.009229864925146103, -0.007124450523406267, -0.02751980349421501, -0.0023668932262808084, -0.014860150404274464, 0.028416302055120468, -0.010778363794088364, 0.013046777807176113, 0.022629808634519577, -0.01552573312073946, -0.02857930213212967, 0.003881433280184865, 0.023458391427993774, 0.01212990377098322, 0.02734322100877762, -0.00585780618712306, 0.013875359669327736, -0.024748805910348892, 0.016449399292469025, -0.00570159824565053, -0.03784312680363655, -0.01848689652979374, 0.00348751712590456, -0.0060479724779725075, -0.006845992524176836, -0.022548308596014977, 0.017047064378857613, -0.008863115683197975, -0.004343266133219004, 0.008156782947480679, -0.007851158268749714, -0.01090740505605936, 0.02751980349421501, -0.013922901824116707, -0.03664779290556908, -0.011145113036036491, -0.017862064763903618, 0.03029080107808113, -0.010730821639299393, -0.019682228565216064, -0.011722404509782791, 0.01812014728784561, 0.027750719338655472, -0.010615363717079163, 0.0017047064611688256, 0.008326574228703976, 0.008054908365011215, 0.016693899407982826, -0.02002181112766266, 0.0026657262351363897, -0.005229577887803316, 0.04604744911193848, -0.01571589894592762, 0.026704804971814156, -0.001317581976763904, -0.01062894705682993, 0.01375311054289341, -0.030453801155090332, -0.006788263563066721, -0.013841401785612106, -0.035479627549648285, 0.024409223347902298, 0.008340157568454742, -0.008618615567684174, -0.02674555405974388, -0.017549647018313408, 0.019981062039732933, 0.02518347278237343, 0.016449399292469025, -0.009392865002155304, 0.005086952820420265, 0.014371151104569435, -0.010676488280296326, 0.019994644448161125, -0.016367899253964424, 0.016272814944386482, -0.00897178240120411, 0.012605319730937481, -0.004842453170567751, 0.011681654490530491, -0.0027353407349437475, 0.02112206071615219, 0.031187299638986588, 0.011858236975967884, -0.010438780300319195, 0.011525445617735386, 0.022249476984143257, 0.004462120123207569, -0.013196194544434547, -0.016965564340353012, -0.018663480877876282, 0.011389613151550293, 0.021855559200048447, -0.03890262544155121, 0.006224555894732475, -0.012374402955174446, 0.009596615098416805, 0.020035395398736, 0.021869143471121788, -0.017454564571380615, 0.01028936356306076, -0.03558829426765442, -0.00901253242045641, 0.038033291697502136, 0.02049722708761692, -0.012931319884955883, -0.012306487187743187, -0.0197908952832222, -0.005633681546896696, 0.0018422376597300172, -0.00013816781574860215, 0.015973983332514763, 0.022154392674565315, -0.02064664475619793, -0.020633060485124588, -0.6354820132255554, -0.016924815252423286, -0.008333366364240646, 0.009942988865077496, -0.0015476493863388896, -0.00901253242045641, 0.012646069750189781, 0.0061566391959786415, -0.003166611073538661, 0.00044358024024404585, -0.030779799446463585, 0.010561030358076096, -0.005986847914755344, -0.011206237599253654, -0.02064664475619793, -0.018541229888796806, 0.0035180796403437853, -0.03183929994702339, 0.010072031058371067, -0.014941650442779064, -0.010771571658551693, -0.0009126292425207794, 0.01552573312073946, 0.002176726935431361, -0.0063196392729878426, 0.015471399761736393, 0.022303808480501175, 0.0017929980531334877, 0.015362733043730259, 0.019478479400277138, -0.020673811435699463, 0.04151062294840813, 0.01955997943878174, 0.014031568542122841, 0.05224144458770752, -0.005066577810794115, -0.018378229811787605, 0.009433615021407604, 0.008815573528409004, 0.0034637462813407183, -0.020931893959641457, -0.03412129729986191, 0.01833748072385788, 0.011308113113045692, -0.006075139157474041, 0.007484408561140299, 0.02273847535252571, 0.001877893810160458, -0.005525014828890562, 0.01617773249745369, -0.004509661812335253, -0.0006409628549590707, -0.005847618915140629, 0.0008871604804880917, -0.004204037133604288, -0.00355543359182775, 0.04091295599937439, -0.01596039906144142, -0.003810120979323983, -0.012843027710914612, 0.004221016075462103, 0.022018559277057648, 0.008136407472193241, -0.004489286802709103, -0.013630860485136509, 0.006428305525332689, 0.004251578822731972, 0.020320644602179527, 0.03442012891173363, -0.024830305948853493, -0.0018167688976973295, 0.013039985671639442, 0.008000575006008148, -0.018065813928842545, 0.015756649896502495, 0.011382821016013622, 0.03428429737687111, -0.022086476907134056, -0.001867706305347383, 0.04498795047402382, 0.01102286297827959, -0.022982975468039513, -0.042189788073301315, -0.017223648726940155, 0.00525674456730485, -0.017549647018313408, -0.01672106608748436, 0.04170078784227371, 0.01151865441352129, 0.0013481443747878075, -0.0005280515179038048, 0.011131529696285725, 0.0012454205425456166, 0.0020782477222383022, 0.03708245977759361, 0.021869143471121788, -0.02110847644507885, 0.0018269564025104046, 0.004686244763433933, -0.013250527903437614, -0.010914196260273457, -0.018772145733237267, 0.007464033551514149, -0.0100584477186203, 0.013569734990596771, 0.005820452235639095, -0.03735412657260895, -0.009467572905123234, 0.03235546499490738, -0.024028891697525978, -0.009610198438167572, -0.003231131937354803, -0.007851158268749714, -0.02080964483320713, 0.021434476599097252, -0.021054144948720932, 0.03004630096256733, 0.010914196260273457, 0.011878612451255322, 0.003701454261317849, 0.012910944409668446, -0.0019050604896619916, 0.013882151804864407, -0.030698301270604134, 0.016856899484992027, 0.03681079298257828, 0.022466808557510376, -0.014167401008307934, -0.02072814479470253, 0.00048050988698378205, 0.008428449742496014, -0.00835374090820551, 0.014955233782529831, 0.001955997897312045, 0.01749531365931034, -0.01587889902293682, 0.03300746530294418, 0.006767888553440571, 0.009338531643152237, -0.01771264709532261, -0.008068491704761982, 0.00308341346681118, 0.013698777183890343, 0.012815861031413078, -0.011783529072999954, -0.03667496144771576, -0.004458724521100521, 0.0006885044858790934, -0.03773446008563042, 0.035859961062669754, -0.009786780923604965, -0.0004592859768308699, -0.016123399138450623, 0.00585780618712306, 0.008306199684739113, -0.008129616267979145, -0.01155940443277359, 0.002404247410595417, 0.004655682481825352, -0.01657164841890335, 0.014995983801782131, 0.01144394651055336, -0.026677638292312622, 0.00851674098521471, 0.02780505269765854, -0.01301961112767458, -0.017087815329432487, 0.02120356075465679, -0.012517028488218784, -0.03096996620297432, 0.004750765860080719, -0.010527072474360466, 0.016136983409523964, 0.042733121663331985, -0.016204899176955223, 0.011138321831822395, -0.005861202254891396, -0.02034781128168106, -0.010486322455108166, 0.012089153751730919, -0.008109241724014282, 0.023404058068990707, -0.015620816498994827, -0.006441888865083456, 0.020605893805623055, 0.0018031855579465628, -0.018283147364854813, 0.004221016075462103, 0.022167976945638657, 0.024083225056529045, -0.01817448064684868, 0.024871056899428368, 0.012503445148468018, 0.006394347175955772, 0.0187178123742342, -0.004448536783456802, 0.016734648495912552, 0.029068302363157272, 0.007973408326506615, 0.011946529150009155, 0.014017985202372074, 0.012041612528264523, 0.017848480492830276, -0.005630285479128361, -0.00304266344755888, -0.028226137161254883, 0.013189402408897877, -0.011253779754042625, 0.035398129373788834, -0.030317967757582664, 0.004944328218698502, -0.025944137945771217, -0.0025791325606405735, -0.001084967632777989, 0.01596039906144142, 0.024219056591391563, 0.017047064378857613, 0.01301961112767458, -0.0029051322489976883, -0.0008311293204315007, -0.0016130191506817937, -0.01788923144340515, -0.009773197583854198, 0.005086952820420265, -0.019763728603720665, 0.00458437018096447, -0.0011367539409548044, 0.02866080217063427, 0.013583318330347538, -0.0024076432455331087, 0.016965564340353012, -0.008224699646234512, -0.004509661812335253, 0.018459729850292206, 0.004567390773445368, -0.0028575907927006483, 0.01544423308223486, -0.020633060485124588, 0.025006890296936035, -0.026256555691361427, -0.004034245852380991, -0.0016682012937963009, -0.005470681469887495, -0.01670748181641102, -0.0037965376395732164, 0.0035724127665162086, 0.01005165558308363, -0.00019197049550712109, 0.006458868272602558, 0.026392389088869095, -0.009080448187887669, -0.0017293263226747513, -0.004900182131677866, -0.009589822962880135, 0.0046658702194690704, -0.03159479796886444, -0.012741153128445148, 0.012055194936692715, 0.030263634398579597, 0.025753973051905632, 0.01244231965392828, -0.0063603888265788555, 0.002752319909632206, 0.02450430765748024, 0.053817108273506165, 0.0027692990843206644, 0.022439641878008842, 0.004743974190205336, -0.03542529419064522, -0.021230727434158325, -0.01094815507531166, -0.018677063286304474, 0.006109097506850958, -0.0018948729848489165, 0.0006176165188662708, 0.008238282985985279, -0.00693428423255682, -0.0014500193065032363, 0.002076549921184778, 0.003973120823502541, -0.03357796370983124, -0.04433595389127731, 0.028470635414123535, 0.009155157022178173, -0.008523532189428806, -0.01996747776865959, -0.008706907741725445, -0.01155261229723692, -0.01725081540644169, 0.0445261187851429, -0.01625923253595829, 0.01832389645278454, 0.025074806064367294, -0.010065238922834396, -0.0035758086014539003, 0.005137890111654997, 0.028796635568141937, -0.024246223270893097, 0.03882112354040146, -0.002652142895385623, 0.016218483448028564, 0.01594681665301323, -0.019356228411197662, 0.011742779053747654, 0.009487948380410671, -0.006445284932851791, -0.002312560100108385, -0.0031360487919300795, 0.008937823586165905, -0.025876222178339958, -0.004176870454102755, -0.02697647176682949, -0.008992156945168972, -0.006947867572307587, -0.004431557841598988, 0.0067610968835651875, -0.019396979361772537, 0.005922326818108559, 0.022222310304641724, -0.0007148221484385431, -0.02127147652208805, -0.01028936356306076, -0.018133729696273804, 0.00389162078499794, 0.10040789097547531, 0.00851674098521471, -0.020741727203130722, 0.012713986448943615, -0.0018133730627596378, 0.015172567218542099, -0.013386360369622707, -0.03998928889632225, 0.01950564607977867, 0.00494772382080555, 0.006255118176341057, -0.0235806405544281, 0.0304266344755888, -0.008462407626211643, 0.014248901046812534, -0.0006418118136934936, -0.007029367610812187, -0.0018252584850415587, 0.005345035810023546, 0.0100991977378726, 0.010438780300319195, 0.0035724127665162086, 0.002993423957377672, 0.02798163704574108, -0.022765642032027245, -0.02303730882704258, 0.043738286942243576, 0.01687048189342022, 0.029693134129047394, -0.023621391505002975, -0.01290415320545435, 0.03406696394085884, 0.024286974221467972, 0.019288312643766403, -0.01957356184720993, -0.004859432112425566, 0.0032481111120432615, 0.0038984124548733234, -0.011382821016013622, 0.009616989642381668, 0.015512149780988693, 0.03202946484088898, 0.009413239546120167, -0.014343984425067902, 0.016150565817952156, 0.001555289956741035, -0.020008228719234467, -0.007430075202137232, -0.01832389645278454, -0.0037863501347601414, 0.038250625133514404, 0.007368950638920069, -0.017671898007392883, -0.01248986180871725, 0.01764473132789135, 0.011267363093793392, 0.018065813928842545, -0.012639278545975685, -0.008312990888953209, 0.028796635568141937, 0.0004170503234490752, 0.0028575907927006483, 0.009046490304172039, -0.011939737014472485, -0.006061555817723274, -0.022249476984143257, -0.026990054175257683, -0.016829732805490494, -0.015226900577545166, 0.026677638292312622, -0.03151329979300499, -0.021013393998146057, -0.009915823116898537, 0.008937823586165905, -0.0034263920970261097, -0.000491970800794661, 0.02180122584104538, -0.02420547418296337, -0.0014075713697820902, -0.010431989096105099, -0.02742472104728222, -0.03012780100107193, 0.01371236052364111, -0.030100634321570396, -0.012544195167720318, -0.009148364886641502, 0.018663480877876282, 0.019451312720775604, -0.016245650127530098, 0.0047235991805791855, -0.0034501629415899515, 0.01973656192421913, 0.013447485864162445, -0.00577630614861846, 0.01572948321700096, -0.012435528449714184, -0.0037184334360063076, -0.011491487734019756, -0.003185288282111287, -0.008944615721702576, 0.002156351925805211, -0.055202607065439224, 0.008856323547661304, -0.0210269782692194, 0.00920269824564457, -0.015294817276299, -0.002338028745725751, 0.010846279561519623, -0.012734360992908478, -0.020239144563674927, 0.0042108288034796715, -0.018473314121365547, -0.008652574382722378, 0.00020056619541719556, -0.005463889800012112, 0.004740578122437, 0.022167976945638657, 0.002660632599145174, 0.005725368857383728, -0.01167486235499382, -0.003667496144771576, -0.025767555460333824, 0.0007165200659073889, -0.008944615721702576, -0.013821027241647243, 0.004954515490680933, 0.005215994548052549, -0.011885403655469418, 0.02766922116279602, 0.003497704630717635, 0.02966596744954586, 0.0004147157014813274, 0.019858812913298607, -0.015308400616049767, -0.035724129527807236, 0.0018728000577539206, -0.0018269564025104046, -0.004754161462187767, -0.003054548753425479, 0.006744117941707373, -0.012381195090711117, -0.004811890888959169, -0.019695812836289406, -0.0305081345140934, -0.011953320354223251, -0.024178307503461838, -0.02080964483320713, 0.011240196414291859, -0.00916874036192894, -0.0007190669421106577, 0.002424622420221567, -0.03029080107808113, -0.0201983954757452, -0.0035961836110800505, 0.0026572367642074823, -0.029774634167551994, 0.0036097669508308172, -0.005477473139762878, 0.01491448376327753, -0.013067152351140976, 0.027696387842297554, -0.029801800847053528, -0.0021886122412979603, -0.003300746437162161, -0.00786474160850048, 0.00230237259529531, -0.025686055421829224, -0.024857472628355026, -0.033170465379953384, -0.01649014838039875, 0.024232640862464905, 0.022942224517464638, 0.01826956309378147, -0.016272814944386482, 0.0007763715693727136, 0.031160132959485054, -0.010187488980591297, -0.001006014528684318, -0.021991392597556114, -0.02620222233235836, -0.015023150481283665, -0.009453989565372467, -0.007307825610041618, -0.010235031135380268, -0.023254642263054848, 0.011919362470507622, 0.06710159778594971, -0.0033941317815333605, 0.007063325960189104, -0.007097283843904734, 0.011253779754042625, -0.029149802401661873, 0.01787564717233181, -0.0029611634090542793, 0.025631722062826157, 0.0014152120565995574, 0.023933807387948036, -0.00851674098521471, -0.001755643985234201, 0.015743065625429153, 0.015471399761736393, 0.0017845084657892585, -0.013685193844139576, 0.0063196392729878426, -0.032246798276901245, 0.016585232689976692, -0.019396979361772537, -0.01560723315924406, 0.034094128757715225, -0.02857930213212967, -0.009508322924375534, 0.0021903100423514843, -0.0019746748730540276, -0.0374356247484684, -0.026025637984275818, -0.016693899407982826, 0.001039972878061235, 0.017739813774824142, -0.009712073020637035, -0.032790131866931915, 0.0033245172817260027, -0.00355543359182775, 0.044254451990127563, 0.0077900332398712635, 0.021448060870170593, 0.007579491939395666, -0.009447198361158371, 0.014439067803323269, -0.014466234482824802, -0.011668071150779724, -0.015756649896502495, 0.018744979053735733, 0.0038169126491993666, -0.01734589785337448, 0.010567821562290192, -0.0022293622605502605, 0.01144394651055336, -0.04976927861571312, -0.02920413576066494, 0.00789869949221611, 0.003769370960071683, -0.020904727280139923, 0.0011545821325853467, -0.008455615490674973, -0.02720738761126995, 0.03113296627998352, -0.0015934930415824056, 0.01556648313999176, -0.012917736545205116, 0.0018184668151661754, -0.0234991405159235, 0.006475847214460373, 0.012652860954403877, 0.03452879562973976, 0.021244309842586517, -0.024558641016483307, -0.030589634552598, -0.012571361847221851, -0.009508322924375534, -0.010438780300319195, -0.0016461284831166267, 0.013454277068376541, -0.0018286543199792504, 0.011742779053747654, 0.003497704630717635, -0.006866367533802986, -0.010302946902811527, 0.006061555817723274, -0.02920413576066494, 0.027397554367780685, 0.016462981700897217, 0.029149802401661873, 0.01926114596426487, 0.023132391273975372, 0.016435815021395683, 0.02097264491021633, 0.0008396189077757299, 0.0004979135119356215, -0.020211977884173393, -0.0032803714275360107, 0.0019831645768135786, 0.019981062039732933, 0.003341496456414461, -0.016136983409523964, -0.009277407079935074, 0.0002576585684437305, -0.01399081852287054, 0.009453989565372467, -0.0016834825510159135, -0.0497964471578598, -0.028552135452628136, 0.007953032851219177, -0.024599390104413033, 0.012537403032183647, -0.009746030904352665, 0.0153355672955513, -0.013162235729396343, 0.025400806218385696, -0.037326961755752563, 0.013223361223936081, -0.02242605946958065, 0.014765067026019096, -0.03903845697641373, 0.0026894970797002316, 0.007885116152465343, -0.011606945656239986, 0.03493629768490791, -0.02958446741104126, -0.006682992912828922, 0.02204572595655918, 0.012550986371934414, -0.00028461296460591257, -0.0019152479944750667, 0.009155157022178173, 0.0006384159787558019, -0.006204180885106325, 0.010601780377328396, -0.010309739038348198, -0.025984888896346092, 0.024708056822419167, 0.0354524627327919, -0.007246700581163168, 0.015471399761736393, -0.029312802478671074, 0.026215804740786552, 0.0027336429338902235, 0.011994070373475552, 0.005355223547667265, -0.048356615006923676, 0.014276067726314068, -0.03390396386384964, 0.01832389645278454, 0.005219390150159597, -0.015539316460490227, 0.008068491704761982, -0.018378229811787605, -0.014357567764818668, -0.003266788087785244, 0.0105134891346097, -0.027451887726783752, 0.023784391582012177, 0.010690071620047092, -0.0010000718757510185, 0.00042002167901955545, 0.0006694029434584081, 0.0005874785128980875, 0.013196194544434547, -0.005460494197905064, -0.024857472628355026, -0.0007296788971871138, -0.003231131937354803, 0.03588712960481644, -0.005759327206760645, -0.030399467796087265, -0.02226305939257145, -0.02772355265915394, -0.02673197165131569, -0.017590397968888283, -0.0007025122758932412, 0.01317581906914711, 0.03985345736145973, 0.0055318064987659454, 0.011348863132297993, 0.012673236429691315, -0.01856839656829834, 0.013515402562916279, -0.014669984579086304, -0.0023889662697911263, 0.0029662572778761387, 0.00043211932643316686, -0.001139300875365734, -0.011342070996761322, -0.024477140977978706, 0.005491056479513645, -0.004540224093943834, -0.006604888942092657, 0.004757557529956102, 0.0061566391959786415, -0.011240196414291859, -0.0011460925452411175, -0.024232640862464905, 0.0067067635245621204, 0.012279320508241653, 0.025523055344820023, 0.00847599096596241, -0.017699064686894417, -0.010486322455108166, 0.0034179026260972023, -0.01144394651055336, -0.016693899407982826, -0.015620816498994827, -0.00840128306299448, -0.0007818897720426321, 0.01932906173169613, -0.02127147652208805, -0.008734074421226978, -0.015702316537499428, -0.010893821716308594, 0.0473242811858654, -0.0032226424664258957, -0.009420031681656837, 0.030236467719078064, 0.000905837572645396, -0.025876222178339958, -0.003356777597218752, 0.006054764147847891, 0.0013133371248841286, -0.03414846211671829, 0.023145975545048714, -0.0093996562063694, 0.019845228642225266, -0.018595563247799873, 0.004839057102799416, -0.005518223159015179, 0.027383970096707344, -0.0019186438294127584, -0.0014814307214692235, -0.018079396337270737, 0.017223648726940155, 0.02643313817679882, -0.01079194713383913, -0.004384016152471304, -0.0013549360446631908, -0.001520482706837356, 0.0032243402674794197, -0.0017522481502965093, -0.005647264886647463, 0.009189114905893803, 0.005226181820034981, 0.010167114436626434, -0.0036946625914424658, -0.008998949080705643, 0.010520280338823795, 0.01756323128938675, -0.04870977997779846, -0.009107614867389202, 0.20624911785125732, -0.008068491704761982, 0.008985365740954876, 0.025305721908807755, -0.006173618603497744, 0.012836236506700516, 0.02318672463297844, -0.008217907510697842, 0.0025231014005839825, -0.024762390181422234, -0.004940932150930166, 0.030100634321570396, -0.0018728000577539206, 0.0007933506858535111, -0.004193849861621857, -0.0067067635245621204, -0.03374096378684044, -0.01183107029646635, 0.006041180808097124, -0.057973604649305344, 9.805458103073761e-05, -0.027451887726783752, -0.01136244647204876, -0.011097571812570095, 0.019532812759280205, 0.010153531096875668, -0.0076066586188972, -0.009881864301860332, 0.03542529419064522, 0.013155444525182247, -0.032328300178050995, -0.0015722691314294934, -0.004041037522256374, -0.0038950166199356318, -0.0035418502520769835, 0.009956572204828262, 0.014765067026019096, 0.013481443747878075, 0.005097140558063984, -0.02389305830001831, 0.0041021620854735374, 0.004285537172108889, -0.0003869123465847224, -0.00920269824564457, -0.015267650596797466, 0.028850968927145004, -0.006608284544199705, -0.011450737714767456, -0.00840128306299448, -0.0016682012937963009, -0.016829732805490494, 0.016693899407982826, 0.01873139664530754, 0.016775399446487427, 0.0012004257878288627, -0.018704229965806007, 0.010493113659322262, 0.01780773140490055, -0.008666157722473145, 0.0026776117738336325, -0.019125312566757202, 0.03450163081288338, -0.01313506904989481, 0.02125789411365986, -0.02110847644507885, 0.019587146118283272, 0.00464549520984292, 0.00699540926143527, 0.013698777183890343, -0.014208151027560234, 0.010309739038348198, -0.02719380334019661, 0.0016749929636716843, -0.0008536266977898777, -0.0069274925626814365, -0.017685480415821075, 0.015417066402733326, -0.02612072229385376, 0.003922183066606522, -0.019994644448161125, 0.014398317784070969, -0.018473314121365547, 0.018296729773283005, -0.006384159903973341, -0.011185863055288792, -0.04398278519511223, 0.0034297879319638014, -0.009739239700138569, -0.009026115760207176, 0.01163411233574152, -0.01601473242044449, -0.027845803648233414, 0.005997035186737776, -0.016150565817952156, -0.009929406456649303, -0.0031937777530401945, 0.011464321054518223, 0.020551560446619987, 0.00043975995504297316, 0.008652574382722378, -0.004794911481440067, -0.017277982085943222, 0.03928295895457268, 0.007959824986755848, -0.019587146118283272, -0.0006477545248344541, 0.011464321054518223, 0.007083700504153967, 0.00537220248952508, -0.016435815021395683, 0.008523532189428806, -0.0022853934206068516, 0.0032939547672867775, -0.003942558076232672, 0.022127225995063782, 0.024015307426452637, -0.00699540926143527, -0.02944863587617874, -0.0018880813149735332, 0.014276067726314068, 0.0326542966067791, -0.02928563579916954, -0.0050360155291855335, 0.0005021583056077361, -0.002378778764978051, -0.024993306025862694, -0.019614312797784805, 0.029801800847053528, -0.005501244217157364, 0.0011019466910511255, 0.019899562001228333, -0.03596862778067589, 0.002248039236292243, -0.006251722574234009, -0.02480313926935196, 0.015023150481283665, 0.004513057880103588, -0.02659613825380802, 0.023947391659021378, 0.0021631435956805944, 0.008000575006008148, 0.0059562851674854755, 0.019750146195292473, 0.0003003187011927366, -0.014343984425067902, -0.022915057837963104, 0.019138896837830544, -0.02180122584104538, 0.006618472281843424, -0.025998471304774284, -0.029475802555680275, -0.005120911169797182, -0.007579491939395666, -0.014506984502077103, -0.003231131937354803, -0.007205950561910868, -0.018758563324809074, -0.02635163813829422, 0.008292616344988346, 0.012469486333429813, -0.027750719338655472, 0.024151140823960304, 0.03700096160173416, -0.020619478076696396, -0.0095219062641263, -0.012496653012931347, -0.17343181371688843, 0.01021465566009283, 0.0004115321207791567, -0.008876699022948742, 0.01663956604897976, 0.01544423308223486, 0.023145975545048714, 0.001811675145290792, 0.005083557218313217, -0.0152133172377944, 0.02549588866531849, 0.018310314044356346, -0.038576625287532806, -0.01718289777636528, -0.00836053304374218, 0.0050394111312925816, -0.02064664475619793, 0.0005221088067628443, 0.05107327923178673, 0.0246537234634161, 0.02396097406744957, -0.003032475942745805, 0.020755311474204063, -0.005202411208301783, 0.008727282285690308, 0.005314473528414965, 0.004937536548823118, 0.026012055575847626, -0.0056438688188791275, -0.028171803802251816, -0.007144825533032417, 0.010085614398121834, 0.0021071124356240034, -0.028715135529637337, 0.02790013700723648, 0.00772211654111743, -0.02250755950808525, 0.003748995950445533, 0.015906065702438354, 0.01491448376327753, 0.022208726033568382, -0.008143199607729912, 0.027764303609728813, -0.012279320508241653, 0.006428305525332689, 0.03575129434466362, -0.022100059315562248, -0.008014158345758915, -0.0038678499404340982, -0.021760476753115654, 0.011314904317259789, 0.008964990265667439, 0.025020472705364227, 0.007368950638920069, 0.024286974221467972, 0.021529560908675194, 0.008000575006008148, 0.011484695598483086, 0.007966616190969944, -0.018677063286304474, 0.007919074967503548, 0.006268701516091824, 0.021094894036650658, -0.014113068580627441, 0.006092118564993143, -0.009888656437397003, -0.015919649973511696, 0.0033143297769129276, -0.01926114596426487, 0.006268701516091824, 0.013264110311865807, -0.006292472593486309, 0.0283619686961174, -0.009189114905893803, -0.0077900332398712635, -0.0012318372027948499, -0.029557300731539726, 0.014860150404274464, -0.006757701281458139, -0.022697726264595985, -0.04830228164792061, 0.025849055498838425, -0.008768032304942608, -0.004380620084702969, 0.0044655161909759045, 0.016082650050520897, -0.0008116032695397735, -0.018921563401818275, -0.02681347168982029, -0.009433615021407604, 0.008211116306483746, -0.020062562078237534, -0.026827054098248482, -0.011348863132297993, 0.01090740505605936, 0.014371151104569435, 0.01693839766085148, -0.01033011358231306, -0.008238282985985279, -0.018758563324809074, 0.014411901123821735, -0.008951406925916672, -0.0008854625630192459, 0.02397455833852291, 0.022521141916513443, 0.004261766094714403, -0.01725081540644169, 0.015688732266426086, 0.028008803725242615, 0.01560723315924406, -0.003905204124748707, 0.010072031058371067, 0.020687393844127655, 0.005365410819649696, 0.014384734444320202, 0.026867805048823357, -0.016218483448028564, -0.020986227318644524, 0.020442895591259003, -0.030535301193594933, 0.06699293106794357, 0.007307825610041618, -0.00628228485584259, 0.005650660488754511, -0.009746030904352665, -0.040885791182518005, -0.10774288326501846, -0.007559116929769516, 0.0024874452501535416, 0.022982975468039513, -0.002818538574501872, 0.004404391162097454, -0.009583031758666039, 0.022548308596014977, 4.390701724332757e-05, 0.0071855755522847176, -0.01695198193192482, -0.046971116214990616, 0.002628372283652425, -0.0016257534734904766, 0.004030849784612656, -0.015430649742484093, -0.009094031527638435, -0.017766980454325676, 0.00118514453060925, 0.0202798955142498, -0.003623350290581584, -0.03075263276696205, 0.03846795856952667, -0.01399081852287054, 0.019627895206212997, -0.019206812605261803, -0.02866080217063427, 0.010567821562290192, 0.03175779804587364, 0.014194567687809467, -0.00566084822639823, -0.011294529773294926, 0.008924240246415138, -0.011668071150779724, -0.011783529072999954, -0.012700403109192848, -0.042352788150310516, 0.013977235183119774, 0.009032906964421272, -0.04808494821190834, 0.016069065779447556, -0.02405605837702751, 0.021923476830124855, -0.01833748072385788, 0.007233117241412401, -0.0007088794372975826, -0.014017985202372074, 0.007022575940936804, 0.014113068580627441, -0.011314904317259789, -0.02496613934636116, 0.01224536169320345, -0.042651619762182236, -0.012870194390416145, 0.02397455833852291, -0.013196194544434547, 0.01749531365931034, 0.002837215783074498, -0.005847618915140629, -0.018935145810246468, -0.025455139577388763, 0.005609910469502211, -0.004920557141304016, 0.032246798276901245, 0.0094404062256217, -0.006832409184426069, 0.00878840684890747, -0.011423571035265923, 0.03515362739562988, 0.007226325571537018, -0.017210064455866814, -0.0037863501347601414, -0.017984313890337944, 0.011980487033724785, -0.0007542986422777176, 0.031703464686870575, -0.026609720662236214, -0.007620241958647966, 0.015892483294010162, 0.002494236920028925, -0.009732447564601898, -0.02435488998889923, -0.0019729770720005035, 0.002806653268635273, 0.017128564417362213, 0.01174957025796175, 0.000748780439607799, -0.01487373374402523, 0.005389181897044182, -0.013399943709373474, -0.003164913272485137, 0.009535489603877068, -0.0011257175356149673, -0.040260955691337585, 0.00798019953072071, 0.025835473090410233, 0.014031568542122841, 0.007158408872783184, -0.019288312643766403, -0.0188808124512434, -0.04199962317943573, -0.0006952961557544768, -0.06329826265573502, 0.018364647403359413, 0.009080448187887669, 0.002045987406745553, -0.016530899330973625, -0.003959537483751774, -0.0047813281416893005, -0.017549647018313408, -0.0395817905664444, 0.01086665503680706, -0.014140235260128975, 0.028008803725242615, -0.018378229811787605, -0.0045232451520860195, -0.011960112489759922, 0.0003983732603956014, 0.0014703941997140646, -0.023322558030486107, 0.009807156398892403, -0.003633537795394659, 0.00785794947296381, 0.013359193690121174, 0.030861299484968185, 0.00537220248952508, -0.025631722062826157, 0.0094404062256217, 0.018907979130744934, 0.01950564607977867, -0.0010476134484633803, -0.025713222101330757, 0.01748173125088215, -0.03289879858493805, 0.004227807745337486, 0.015118233859539032, 0.01329127699136734, 0.020619478076696396, -0.02148880995810032, 0.003928974736481905, 0.002047685207799077, 0.03634896129369736, -0.004930744878947735, -0.007158408872783184, 0.0038033293094486, -0.014982400462031364, -0.0016537690535187721, 0.03765295818448067, -0.026066388934850693, 0.008211116306483746, 0.02079606056213379, -0.004343266133219004, 0.010377655737102032, 0.02127147652208805, 0.0030783195979893208, -0.03192079812288284, -0.00435684947296977, -0.01980447955429554, 0.03135029971599579, -0.012048403732478619, 0.018296729773283005, -0.03382246196269989, 0.01703348197042942, -0.0011376029578968883, 0.014819400385022163, 0.0012819257099181414, 0.021380143240094185, -0.017739813774824142, -0.00920269824564457, 0.0012700402876362205, -0.005823847837746143, -0.031947966665029526, 0.006149847526103258, 0.002984934253618121, 0.0009915822884067893, 0.0034246942959725857, 0.009236657060682774, 0.028443468734622, 0.0030019134283065796, 0.0036742878146469593, -0.02104056067764759, 0.01013315562158823, -0.013603693805634975, -0.01329127699136734, -0.02742472104728222, 0.0026538409292697906, 0.03156763315200806, -0.0031818924471735954, 0.022222310304641724, 0.015267650596797466, -0.0070157842710614204, 0.01596039906144142, 0.0249797236174345, -0.011246987618505955, -0.009372489526867867, -0.011301320977509022, -0.010988905094563961, 0.011423571035265923, -0.016055483371019363, -0.003176798578351736, 0.01996747776865959, 0.030480967834591866, -0.020048977807164192, 0.014805817045271397, 0.00789869949221611, -0.02120356075465679, -0.002540080575272441, -0.007966616190969944, -0.03420279547572136, -0.025400806218385696, -0.0071855755522847176, 0.023322558030486107, 0.023716473951935768, 0.00046098389429971576, 0.02133939415216446, 0.02010331116616726, -0.004944328218698502, -0.007728908210992813, -0.006024201866239309, -0.004808494821190834, -0.012965277768671513, 0.03436579555273056, 0.008367324247956276, 0.03403979539871216, 0.025753973051905632, 2.5840141461230814e-05, 0.01772623136639595, 0.011043238453567028, 0.019926728680729866, 0.030073467642068863, -0.0006872310186736286, 0.0024110390804708004, 0.006340013816952705, -0.0021495602559298277, -0.049198780208826065, -0.005949493497610092, 0.015973983332514763, -0.01909814588725567, -0.00464549520984292, 0.010533863678574562, -0.01578381657600403, 0.04803061485290527, 0.007402908522635698, -0.01642223261296749, 0.0015841545537114143, 0.0036369336303323507, 0.02397455833852291, 0.01640864834189415, -0.01386177632957697, 0.01132169645279646, -0.0008039626991376281, 0.002137674717232585, -0.01468356791883707, 0.024748805910348892, -0.012496653012931347, -0.00664563849568367, 0.027316054329276085, 0.004509661812335253, 0.03259996324777603, -0.030997132882475853, -0.014493401162326336, 0.028769468888640404, -0.007117658853530884, 0.029774634167551994, 0.005158265121281147, 0.0009576239972375333, 0.0007886814419180155, 0.02890530228614807, 0.012136694975197315, 0.0010246916208416224, -0.05332810804247856, 0.00840128306299448, 0.0007695798994973302, -0.0071312421932816505, -0.018514063209295273, 0.004937536548823118, -0.01957356184720993, 0.004112349823117256, -0.008061699569225311, 0.01741381548345089, 0.017359482124447823, -0.007301033940166235, 0.013922901824116707, -0.01949206180870533, -0.01812014728784561, 0.010730821639299393, -0.02434130758047104, -0.009786780923604965, -0.010479530319571495, -0.021869143471121788], "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3": [-0.006771137937903404, -0.019577275961637497, -0.00909892376512289, 0.007706231437623501, -0.017574451863765717, 0.03278796002268791, -0.011645561084151268, -0.01424525398761034, -0.0003506600623950362, -0.02315848506987095, 0.020068034529685974, -0.006452808156609535, 0.016738835722208023, 0.004665519576519728, -0.009649368934333324, 0.005368497688323259, 0.03920760750770569, -0.016433769837021828, 0.0333980917930603, -0.011751671321690083, 0.006572181824594736, -0.013091308996081352, -0.0015560021856799722, 0.02709781564772129, -0.015704264864325523, 0.04122369736433029, 0.017242858186364174, -0.012719924561679363, 0.007759286556392908, -0.014815595000982285, -0.00397580536082387, 0.023065639659762383, 0.005965366028249264, -0.004867791663855314, -0.026036716997623444, -0.0054281847551465034, 0.012010314501821995, -0.016314396634697914, 0.01990886963903904, -0.011360391043126583, 0.005106538999825716, -0.011804725974798203, -0.023211540654301643, 0.00817046221345663, -0.018211111426353455, 0.020426155999302864, -0.003922750242054462, -0.03355725482106209, -0.023145221173763275, 0.011446605436503887, 0.0231319572776556, 0.011526187881827354, -0.027615102007985115, 0.013913660310208797, -0.033902112394571304, 0.0084887919947505, 0.0066186049953103065, 0.027031496167182922, -0.026938650757074356, 0.03159422427415848, 0.015067605301737785, -0.0005782160442322493, 0.009835061617195606, 0.021076079457998276, -0.037907760590314865, -0.009576418437063694, -0.016314396634697914, -0.015863429754972458, -0.004692046903073788, -0.023821672424674034, 0.048067785799503326, 0.013807551003992558, 0.00292631215415895, 0.010000858455896378, 0.019497694447636604, -0.026142826303839684, -0.024789925664663315, -0.01847638562321663, -0.035228487104177475, 0.014311572536826134, -0.01701737567782402, -0.02952507883310318, 0.0018502913881093264, -0.017322441563010216, 0.029472025111317635, -0.005570769775658846, 0.012753083370625973, 0.021964749321341515, -0.02045268379151821, -0.022760573774576187, 0.010352347046136856, 0.03252268582582474, 0.009709055535495281, 0.01420546229928732, -0.010657412931323051, 0.02077101357281208, -0.012580654583871365, 0.005375129636377096, -0.007818973623216152, -0.024285903200507164, -0.022999320179224014, 0.0018801348051056266, -0.0022598092909902334, -0.009258088655769825, -0.03361031040549278, 0.007208841387182474, -0.019205892458558083, -0.023012584075331688, 0.008482160046696663, -0.023609451949596405, -0.014775803312659264, 0.024153266102075577, -0.013575435616075993, -0.030320903286337852, -0.008886704221367836, -0.03695277124643326, 0.01883450709283352, -0.0014101010747253895, -0.026832541450858116, -0.00019367129425518215, 0.008276572450995445, 0.01809173822402954, -0.015412462875247002, -0.012839297764003277, 0.008210253901779652, 0.00904586911201477, 0.017985627055168152, -0.03406127914786339, -0.0024140002205967903, -0.002707460429519415, 0.03212477266788483, -0.008236780762672424, 0.02284015528857708, 0.003849799744784832, -0.011380286887288094, 0.008813753724098206, -0.029472025111317635, -0.010591094382107258, -0.008316363207995892, -0.03459182754158974, 0.027747739106416702, 0.01809173822402954, -0.005587349180132151, -0.022004541009664536, -0.007474116049706936, 0.012501072138547897, 0.017415286973118782, 0.003786796936765313, -0.016964320093393326, 0.0062306406907737255, 0.009894748218357563, -0.00431734649464488, 0.025148045271635056, -0.004857843741774559, 0.017322441563010216, 0.009059133008122444, 0.0009491862147115171, -0.008906600065529346, 0.0037702172994613647, 0.0039824373088777065, 0.030188266187906265, 0.008913231082260609, -0.002312864176928997, -0.00042775552719831467, 0.012892352417111397, 0.01866207830607891, 0.006837456487119198, -0.004857843741774559, -0.04270923510193825, -0.011473133228719234, 0.0040785991586744785, 0.01687147468328476, -0.032443102449178696, -0.008694379590451717, -0.008820385672152042, 0.006270431913435459, 0.028013013303279877, 0.03066576085984707, -0.00571003882214427, 0.015558363869786263, -0.04698015749454498, -0.016539881005883217, 0.02463076077401638, 0.0198027603328228, -0.016380716115236282, -0.0017939205281436443, -0.015067605301737785, -0.003674055216833949, 0.0034784150775521994, 0.005945470184087753, 0.015147187747061253, 0.00941725354641676, -0.0027820689138025045, -0.026355046778917313, -0.6324149966239929, -0.024179793894290924, -0.018436595797538757, -0.011579242534935474, 0.003143505658954382, 0.003040711861103773, 0.021606627851724625, 0.012872457504272461, -0.015160451643168926, -0.0014830516884103417, -0.0545404888689518, 0.023118693381547928, -0.01368817687034607, -0.014881913550198078, -0.017468342557549477, -0.018423331901431084, 0.0073083192110061646, -0.03135547414422035, -0.0017574451630935073, -0.013436165638267994, -0.003110346384346485, -0.006499231327325106, 0.017322441563010216, 0.0021735948976129293, -0.0017325757071375847, -0.007414428982883692, 0.013071413151919842, -0.015346144326031208, 0.012116423808038235, 0.02294626645743847, -0.02294626645743847, 0.03170033171772957, 0.015001286752521992, 0.011201226152479649, 0.04647613689303398, 0.00768633559346199, -0.027323298156261444, 0.012514336034655571, 0.009158610366284847, 0.006485967431217432, -0.01630113273859024, -0.023675771430134773, 0.020028242841362953, 0.01236843504011631, 0.009808533824980259, 0.01691126450896263, 0.035440705716609955, -0.01712348498404026, 0.0037635855842381716, 0.004509670659899712, 0.01203020941466093, 0.0008339575142599642, -0.022641200572252274, -0.0007427692762576044, 0.0030639234464615583, 0.003906170604750514, 0.04247048869729042, -0.024365484714508057, 0.011917468160390854, -0.004456615541130304, 0.014497265219688416, 0.019431374967098236, 0.002355971373617649, 0.006217376794666052, -0.007500643376260996, 0.02701823227107525, 0.004357137717306614, 0.013900396414101124, 0.04239090532064438, -0.0034021486062556505, 0.011161435395479202, 0.014404418878257275, 0.007805709261447191, -0.01862228661775589, 0.009755479171872139, 0.012673500925302505, 0.02623567171394825, -0.01855596899986267, -0.006293643265962601, 0.03066576085984707, -0.0010544671677052975, -0.022972792387008667, -0.018781451508402824, -0.03241657465696335, 0.0070762038230896, -0.01238833088427782, -0.018701869994401932, 0.039552465081214905, 0.0009616209426894784, 0.0026262199971824884, -0.003075529122725129, 0.018449857831001282, 0.006529074627906084, -9.419325942872092e-05, 0.04721890389919281, 0.014895177446305752, -0.011691984720528126, -0.0027041444554924965, 0.0066186049953103065, -0.003892906941473484, -0.010160022415220737, -0.013283632695674896, 0.01185114961117506, -0.00756033044308424, 0.00013605692947749048, -0.0030075523536652327, -0.028357870876789093, -0.007566962391138077, 0.04032175987958908, -0.011267544701695442, 0.002291310578584671, -0.0019481114577502012, -0.006233956664800644, -0.011466501280665398, 0.024604232981801033, -0.018330484628677368, 0.02180558443069458, 0.013111204840242863, 0.017110221087932587, -0.006124530918896198, 0.020399628207087517, -0.008667852729558945, 0.004665519576519728, -0.02041289210319519, 0.023569662123918533, 0.03177991509437561, 0.022044330835342407, -0.011327231302857399, -0.012991830706596375, -0.0034949947148561478, -0.0005164567846804857, 0.0026361679192632437, 0.015478781424462795, 0.00846889615058899, 0.017892781645059586, -0.01708369329571724, 0.020492473617196083, 0.016128703951835632, 0.005676879547536373, -0.021938221529126167, -0.008919863030314445, 0.0027389617171138525, 0.009662632830440998, 0.01270666066557169, 0.000613447860814631, -0.027747739106416702, -0.01047172024846077, -0.010796681977808475, -0.04477837681770325, 0.017136748880147934, -0.008846912533044815, 0.0010022411588579416, -0.017455078661441803, 0.001853607245720923, 0.007202209439128637, -0.008992813527584076, -0.009019341319799423, -0.011466501280665398, -0.007520539220422506, -0.012739819474518299, 0.025121519342064857, 0.02165968343615532, -0.02587755210697651, 0.015160451643168926, 0.03116978332400322, -0.021818848326802254, -0.017150012776255608, 0.021566836163401604, -0.009403989650309086, -0.03212477266788483, 0.010577830485999584, -0.010431929491460323, 0.0040785991586744785, 0.03650180622935295, -0.010869632475078106, -0.002031009877100587, 5.41106101081823e-06, -0.008906600065529346, -0.0022249920293688774, 0.015637947246432304, -0.02030678279697895, 0.009536626748740673, -0.013482589274644852, -0.0028798889834433794, 0.02087712287902832, -0.004615780431777239, -0.020572056993842125, 0.004715258721262217, 0.01862228661775589, 0.02494909055531025, -0.012010314501821995, 0.01923241838812828, 0.01765403524041176, 0.004748417995870113, 0.008196990005671978, -0.0027605153154581785, 0.005401656962931156, 0.03663444146513939, 0.02155357412993908, 0.010736995376646519, 0.011685352772474289, 0.004085231106728315, 0.03485710173845291, -0.0019099782221019268, -0.001762419124133885, -0.026368310675024986, 0.0029462077654898167, -0.018224375322461128, 0.03053312376141548, -0.019033463671803474, 0.005501135252416134, -0.036050837486982346, -0.007852132432162762, -0.014629902318120003, 0.016393980011343956, 0.03199213370680809, 0.007228736765682697, 0.023277858272194862, -0.01783972606062889, -0.005351917818188667, 0.0056105609983205795, -0.013913660310208797, 0.0006005986360833049, -0.01322394609451294, -0.016990847885608673, -0.00895302277058363, 0.007460852153599262, 0.030002573505043983, 0.014139143750071526, 0.002362603321671486, 0.015969539061188698, -0.0069634621031582355, -0.005812833085656166, 0.025320474058389664, -0.0011763276997953653, 0.011871044524013996, 0.02859661728143692, -0.022031066939234734, 0.030082156881690025, -0.0390484444797039, -0.0043107145465910435, 0.0006490941741503775, 0.018250903114676476, -0.014802331104874611, -0.011201226152479649, 0.008966286666691303, 0.009702423587441444, -0.0013868894893676043, 0.0244450680911541, 0.02910063974559307, -0.011917468160390854, -0.0013736258260905743, -0.004227816127240658, -0.009788637980818748, 0.012501072138547897, -0.03639569506049156, -0.011619034223258495, 0.019564012065529823, 0.036050837486982346, 0.027217188850045204, 0.004841264337301254, -0.0001303576718783006, 0.01940484717488289, 0.026222409680485725, 0.0606948621571064, 0.007706231437623501, 0.01794583722949028, -0.004174761474132538, -0.021076079457998276, -0.026872331276535988, -0.006492599379271269, -0.008641324937343597, 0.009231560863554478, 0.0018088421784341335, -0.012381698936223984, 0.004227816127240658, -0.008495423942804337, -0.010610990226268768, 0.0159430131316185, -0.005623824428766966, -0.021102605387568474, -0.02806606888771057, 0.026195881888270378, 0.013509116135537624, -0.004430088214576244, -0.011638929136097431, -0.006482651457190514, -0.004294135142117739, -0.014895177446305752, 0.031939078122377396, -0.014682956971228123, 0.013582066632807255, 0.025506166741251945, -0.011095115914940834, 0.001783972722478211, 0.0015029472997412086, 0.029896464198827744, -0.013091308996081352, 0.035016268491744995, -0.0007883633952587843, 0.017932573333382607, 0.008528582751750946, -0.022893210873007774, 0.02134135365486145, 0.021712739020586014, -0.004967269487679005, 0.015279825776815414, -0.012971934862434864, 0.005162909626960754, -0.011599138379096985, -0.022349396720528603, -0.022654462605714798, -0.009403989650309086, -0.012282220646739006, 0.007089467719197273, -0.004861159715801477, -0.026262199506163597, 0.016685782000422478, 0.025744915008544922, -0.021102605387568474, -0.009357566945254803, 0.005123118404299021, -0.024657288566231728, 0.004579305183142424, 0.10366937518119812, 0.025320474058389664, -0.014696220867335796, 0.0036906348541378975, -0.004108442459255457, 0.02298605628311634, -0.0190201997756958, -0.03371642157435417, 0.0303474310785532, 0.014868649654090405, -0.0029909727163612843, -0.015346144326031208, 0.01744181476533413, -0.003879643278196454, 0.009569786489009857, 0.0055840336717665195, 0.003985753282904625, 0.00023812553263269365, 0.005660300143063068, 0.0038100085221230984, 0.0013338346034288406, 0.0032048504799604416, 0.009072395972907543, 0.029869936406612396, -0.024246111512184143, -0.014576847665011883, 0.040772728621959686, -0.0004014353035017848, 0.019961925223469734, -0.01963033154606819, -0.0164470337331295, 0.036156948655843735, 0.023397233337163925, 0.011068589054048061, -0.024644024670124054, -0.0029578134417533875, -0.0026676692068576813, 0.004516302607953548, -0.020253727212548256, 0.0030572914984077215, 0.013548907823860645, 0.030692288652062416, 0.007812341209501028, -0.026567265391349792, -0.003886274993419647, 0.011380286887288094, -0.02387472800910473, -0.01056456658989191, -0.017773408442735672, -0.0037702172994613647, 0.029869936406612396, -0.008528582751750946, -0.025214364752173424, -0.020492473617196083, 0.011970522813498974, -0.001720969914458692, -0.007447588723152876, -0.030586179345846176, -0.006605341099202633, 0.03782817721366882, 0.003158427542075515, 0.007434324827045202, 0.016990847885608673, -0.012507704086601734, -0.01102879736572504, -0.034618355333805084, -0.031514640897512436, -0.017786672338843346, -0.017256122082471848, 0.02756204642355442, -0.025758178904652596, -0.01841006800532341, -0.013131099753081799, 0.009178506210446358, 0.007931714877486229, 0.006568865850567818, 0.022720782086253166, -0.009908012114465237, -0.0008468067389912903, 0.002581454813480377, -0.03485710173845291, -0.02841092459857464, 0.0001395801082253456, -0.025002144277095795, -0.02667337656021118, -0.00915197841823101, 0.01047172024846077, 0.02069143019616604, -0.02269425429403782, 0.005590665154159069, 0.0015278167556971312, 0.027535518631339073, 0.004572673700749874, -0.013283632695674896, 0.0011431684251874685, -0.0016596250934526324, -0.0003119050816167146, -0.01640724390745163, -0.006512495223432779, -0.00379342888481915, -0.00045469749602489173, -0.04430088400840759, -0.0017673929687589407, -0.02155357412993908, 0.006081423722207546, -0.004599201027303934, 0.004791525192558765, 0.007573593873530626, -0.02973729930818081, -0.026978442445397377, 0.014165671542286873, -0.03838525712490082, 0.0073083192110061646, 0.006674975622445345, 0.006287011317908764, 0.0159430131316185, 0.02716413326561451, 0.0026809328701347113, 0.019152836874127388, -0.016712309792637825, -0.007003253325819969, -0.025479638949036598, -0.004546145908534527, -0.0065589179284870625, -0.021978013217449188, -0.011141539551317692, 0.00712262699380517, -0.012620446272194386, 0.043876443058252335, 0.014444209635257721, -0.0050435359589755535, 0.0021735948976129293, 0.006830824539065361, 0.0019862446933984756, -0.03838525712490082, 0.006499231327325106, -0.012872457504272461, 0.002166963182389736, -0.012653605081140995, -0.006810929160565138, -0.002420632168650627, -0.01762750744819641, -0.018065210431814194, -0.037403739988803864, -0.01634092442691326, -0.022216759622097015, -0.017707088962197304, 0.006197481416165829, -0.0006196652539074421, -0.0012260667281225324, -0.008521951735019684, -0.028968002647161484, -0.02094344049692154, -0.0021321456879377365, -0.004254343919456005, -0.03684666380286217, 0.005865887738764286, -0.01655314490199089, 0.017348969355225563, -0.002002824330702424, 0.019603803753852844, -0.028649672865867615, 0.007275159936398268, 0.009198402054607868, 0.00259637669660151, -0.00421786867082119, -0.01268676482141018, -0.023397233337163925, -0.029286332428455353, -0.02433895878493786, 0.039154551923274994, 0.03146158531308174, 0.021036287769675255, -0.008992813527584076, 0.002490266691893339, 0.0447518490254879, -0.0070762038230896, -0.0020973284263163805, 0.0009989251848310232, -0.046343497931957245, -0.01851617731153965, 0.006996621377766132, -0.007069571875035763, -0.008714275434613228, -0.010683940723538399, 0.008336259052157402, 0.05284272879362106, 0.003010868327692151, 0.021288298070430756, -0.00575646199285984, 0.0062041133642196655, -0.027694683521986008, 0.026660112664103508, 0.0004219526599626988, 0.010073808953166008, -0.008681115694344044, 0.03156769648194313, -0.0038199564442038536, 0.007009885273873806, 0.004711942747235298, 0.016951056197285652, 0.002185200806707144, -0.011738407425582409, 9.139544272329658e-05, -0.028463980183005333, 0.008880072273314, -0.021991277113556862, -0.020492473617196083, 0.02748246304690838, -0.02437874861061573, -0.01565120927989483, -0.0035845250822603703, 0.004410192836076021, -0.033955167979002, -0.01898040808737278, -0.022389188408851624, 0.01008043996989727, -7.445309165632352e-05, -0.007062940392643213, -0.02345028705894947, -0.005613876972347498, -0.008521951735019684, 0.03559987246990204, 0.0064362287521362305, 0.024285903200507164, -0.0014714458957314491, -0.010206446051597595, -0.002002824330702424, -0.009762111119925976, -0.01238833088427782, -0.00815056636929512, 0.03140852972865105, 0.003717162413522601, -0.009039237163960934, 0.004801473114639521, -0.02952507883310318, 0.015478781424462795, -0.04265617951750755, -0.02598366141319275, 0.00189008261077106, 0.006406384985893965, -0.026752958074212074, 0.004609148949384689, 0.004897634964436293, -0.018489649519324303, 0.02294626645743847, 0.010186550207436085, 0.027694683521986008, -0.01056456658989191, 0.0019132940797135234, -0.023370705544948578, 0.023755352944135666, 0.020890386775135994, 0.03055965155363083, 0.016977583989501, -0.021540310233831406, -0.03721804544329643, -0.030214793980121613, -0.014881913550198078, -0.016035858541727066, 0.007593489717692137, 0.020240463316440582, -0.01270666066557169, 0.015558363869786263, 0.005753146018832922, 0.001526158768683672, -0.011718511581420898, 0.0014357995241880417, -0.018595760688185692, 0.027535518631339073, -0.0038597476668655872, 0.018290694802999496, -0.0018652130383998156, 0.024458331987261772, 0.012308748438954353, 0.0054281847551465034, -0.0004265120660420507, 0.00907902792096138, -0.03177991509437561, -0.0070563084445893764, 0.002223334042355418, 0.007620017044246197, 0.010657412931323051, -0.009815165773034096, -0.015240034088492393, 0.004748417995870113, -0.006439544726163149, 0.01363512221723795, 0.007069571875035763, -0.02612956240773201, -0.02745593711733818, 0.0056801955215632915, -0.01986907795071602, 0.00943714939057827, -0.009430517442524433, 0.016858210787177086, -0.014842121861875057, 0.02602345310151577, -0.024299167096614838, 0.011526187881827354, -0.01994866132736206, 0.012925512157380581, -0.030267849564552307, 0.006529074627906084, 0.004821368493139744, -0.015505309216678143, 0.034114331007003784, -0.009377462789416313, -0.008886704221367836, 0.024246111512184143, 0.023901253938674927, 0.010816577821969986, -0.0025002146139740944, 0.012302116490900517, -0.0076531763188540936, -0.00893312692642212, 0.011042061261832714, -0.008959654718637466, -0.04353158548474312, 0.02777426689863205, 0.031222837045788765, -0.005600613076239824, 0.006263799965381622, -0.028861893340945244, 0.03679360821843147, 0.012123055756092072, 0.018821243196725845, 0.006678291596472263, -0.04175424575805664, 0.01569100096821785, -0.022336134687066078, 0.01994866132736206, 0.011148171499371529, -0.015452253632247448, 0.010610990226268768, -0.02091691456735134, -0.0030556335113942623, -0.006757874041795731, -0.00201111426576972, -0.0109226880595088, 0.027190661057829857, 0.010087071917951107, 0.0014009822625666857, -0.003294380847364664, -0.005759777966886759, -0.016274604946374893, 0.015757320448756218, -0.0006366593879647553, -0.02806606888771057, -0.01522677019238472, -0.0007610069587826729, 0.02638157457113266, -0.009271352551877499, -0.022322870790958405, -0.012063369154930115, -0.01862228661775589, -0.028145650401711464, -0.004101810976862907, -0.008767330087721348, 0.012308748438954353, 0.030188266187906265, 0.013661649078130722, -0.004798157140612602, 0.030161738395690918, -0.012713292613625526, 0.0004563554539345205, -0.0026477735955268145, -0.022097386419773102, -0.00013284462329465896, -0.001036229426972568, -0.007772549986839294, 0.011068589054048061, -0.025041935965418816, 0.005444764159619808, 0.013582066632807255, -0.0028881789185106754, 0.0054978192783892155, 0.008183726109564304, -0.0002167792117688805, 0.005404972936958075, -0.018821243196725845, 0.005965366028249264, 0.011068589054048061, 0.02838439866900444, 0.0065589179284870625, -0.012209270149469376, -0.008356154896318913, 0.01041866559535265, -0.014484001323580742, -0.01579711213707924, -0.028755782172083855, -0.01149302814155817, 0.008183726109564304, 0.00915197841823101, -0.02256161719560623, -0.0022730729542672634, -0.02201780490577221, -0.02037310041487217, 0.04875749722123146, -0.011837885715067387, -0.018529441207647324, 0.008395945653319359, -0.003272827249020338, -0.015306352637708187, -0.008090879768133163, 0.01608891412615776, -0.00012165334192104638, -0.017455078661441803, 0.02266772650182247, -0.020346572622656822, 0.013900396414101124, -0.02119545266032219, 2.655337993928697e-05, -0.005302179139107466, 0.008946390822529793, -0.000593966746237129, 0.00029926307615824044, -0.017030639573931694, 0.01919262856245041, 0.04308062046766281, -0.018847770988941193, -0.009821797721087933, -0.0037005827762186527, -0.011638929136097431, -0.0024073682725429535, -0.0129785668104887, -0.01611544005572796, 0.009085659869015217, -0.009622841142117977, 0.004761681891977787, 0.0006768651073798537, -0.017786672338843346, -0.005189437419176102, 0.023569662123918533, -0.03167380392551422, -0.0119572589173913, 0.2179497331380844, -0.00402886001393199, 0.017388759180903435, 0.014430946670472622, -0.006419648882001638, 0.020890386775135994, 0.011751671321690083, 0.00497721740975976, -0.0045328824780881405, -0.010034017264842987, -0.011088484898209572, 0.03793428838253021, 0.0021769108716398478, 0.0012244087411090732, -0.008555110543966293, -0.015054342336952686, -0.04196646437048912, -0.007699599489569664, -0.010120231658220291, -0.04878402501344681, 0.013117835856974125, -0.012713292613625526, -0.010683940723538399, -0.013469325378537178, 0.009888116270303726, 0.007261896040290594, -0.02627546340227127, -0.016539881005883217, 0.027615102007985115, 0.00502364058047533, -0.027933431789278984, -0.0024803190026432276, -0.004370401613414288, 4.49723593192175e-05, -0.00907902792096138, -1.5763640476507135e-05, 0.010624253191053867, -0.0032744852360337973, 0.014178935438394547, -0.023569662123918533, -0.0036077366676181555, -0.01456358376890421, 0.0007672242936678231, -0.0025002146139740944, -0.004473195411264896, 0.02130156196653843, -0.011579242534935474, -0.020346572622656822, -0.004260975867509842, 0.011466501280665398, -0.025187836959958076, 0.0075868577696383, 0.02724371664226055, 0.016632726415991783, 0.0027887008618563414, -0.012859193608164787, 0.0030141843017190695, 0.016738835722208023, -0.004134970251470804, 0.0033905429299920797, -0.016022594645619392, 0.013177523389458656, -0.011108379811048508, 0.029551606625318527, -0.015518573112785816, 0.021328089758753777, 0.006084739696234465, -0.006903775501996279, 0.026010189205408096, -0.015279825776815414, 0.01830395683646202, -0.021832112222909927, -0.0010005831718444824, 0.000548372627235949, -0.010451825335621834, -0.00260964035987854, 0.034618355333805084, -0.014258517883718014, -0.004416824784129858, -0.02223002351820469, 0.019113045185804367, -0.004987165331840515, 0.01837027631700039, -0.010524775832891464, -0.005381761584430933, -0.03514890372753143, 0.011817989870905876, -0.0019381636520847678, -0.01604912243783474, 0.01319078728556633, -0.02817217819392681, -0.02165968343615532, -0.0004770800587721169, -0.02051900140941143, -0.0035215222742408514, -0.007765918038785458, 0.018131529912352562, 0.009218297898769379, -0.001012188964523375, 0.007825604639947414, 0.00047956701018847525, -0.017985627055168152, 0.039446353912353516, 0.007699599489569664, -0.02973729930818081, -0.003969173412770033, 0.015133924782276154, 0.005133066326379776, 0.012302116490900517, -0.009264720603823662, 0.025824496522545815, -0.008893336169421673, 0.009662632830440998, -0.009629473090171814, 0.010683940723538399, 0.033265452831983566, -0.01275971531867981, -0.029684243723750114, 0.0046025170013308525, 0.02051900140941143, 0.016566408798098564, -0.027150871232151985, -0.005875835660845041, 0.011731775477528572, -0.0056801955215632915, -0.009191770106554031, -0.01615523174405098, 0.033265452831983566, -0.0024852927308529615, -0.0050866431556642056, 0.02602345310151577, -0.027747739106416702, -0.005182805471122265, -0.00431734649464488, -0.018343748524785042, 0.017057165503501892, -0.0011829595314338803, -0.019683387130498886, 0.02226981520652771, -0.008250044658780098, -0.001144826295785606, -0.006757874041795731, 0.007918450981378555, 0.006177585572004318, -0.007699599489569664, -0.00658544572070241, 0.00958305038511753, -0.02788037620484829, -0.003010868327692151, -0.022137178108096123, -0.02398083731532097, -0.0026146143209189177, 0.005494503304362297, -0.02195148542523384, 0.0031700332183390856, -0.0066186049953103065, -0.02798648551106453, -0.027959957718849182, 0.006157690193504095, 0.04692710191011429, -0.03106367215514183, 0.004662203602492809, 0.028463980183005333, -0.019683387130498886, -0.01476253941655159, -0.010259500704705715, -0.16744142770767212, 0.02819870598614216, 0.011844517663121223, -0.0043272944167256355, 0.015107396990060806, 0.017614243552088737, 0.02899453043937683, -0.005640404298901558, 0.0026411416474729776, -0.01737549528479576, 0.031249364838004112, 0.02319827675819397, -0.04414171725511551, -0.014165671542286873, -0.012249061837792397, 0.01583690196275711, -0.0180121548473835, 1.198140307678841e-05, 0.040878839790821075, 0.022004541009664536, 0.010949214920401573, 0.002896468620747328, 0.014842121861875057, -0.006164322141557932, 0.019139572978019714, 0.004536197986453772, -0.001322228810749948, 0.007361374329775572, -0.002559901215136051, -0.025652067735791206, -0.008787225931882858, 0.014404418878257275, 0.02427263930439949, -0.026859067380428314, 0.022362660616636276, 0.00262290402315557, -0.012109791859984398, -0.006784401834011078, 0.018131529912352562, 0.027323298156261444, 0.01773361675441265, -0.015850165858864784, 0.028437452390789986, 0.0099013801664114, -0.004264291375875473, 0.020810803398489952, -0.013767759315669537, -0.007414428982883692, -0.0009748847223818302, -0.017057165503501892, 0.0061610061675310135, 0.0005168712814338505, 0.013157627545297146, 0.005066747777163982, 0.02562553994357586, 0.018542705103754997, 0.008946390822529793, -0.0038332201074808836, -0.009198402054607868, -0.012547495774924755, 0.011174698360264301, 0.010232973843812943, 0.03228393569588661, -0.03159422427415848, 0.01177819911390543, 0.00431734649464488, -0.010405401699244976, 0.00943714939057827, -0.015558363869786263, 0.014749276451766491, 0.020903650671243668, -0.0003307644510641694, 0.02766815572977066, -0.013197418302297592, -0.001777340774424374, -0.0049506900832057, -0.01729591377079487, 0.01862228661775589, -0.012666868977248669, -0.022959530353546143, -0.055177148431539536, 0.020386364310979843, -0.0003670324804261327, -0.004579305183142424, -0.0016554802423343062, 0.019418111070990562, 0.0005798740312457085, -0.024617496877908707, -0.02724371664226055, -4.916908801533282e-05, 0.009476940147578716, -0.029392441734671593, -0.019365057349205017, -0.009801901876926422, 0.02055879309773445, 0.009132083505392075, 0.023649243637919426, -0.0029213381931185722, -0.008442369289696217, -0.003173349192366004, 0.02226981520652771, -0.018224375322461128, 0.014178935438394547, 0.0293128602206707, 0.020850595086812973, -0.006250536069273949, -0.011592506431043148, 0.0008045285940170288, 0.022216759622097015, 0.010451825335621834, -0.002722382079809904, 0.018423331901431084, 0.015624682419002056, 0.008747435174882412, 0.022455507889389992, 0.03252268582582474, -0.006668344140052795, -0.015147187747061253, 0.02870272845029831, -0.02012109011411667, 0.06971420347690582, 0.004675467498600483, -0.020293518900871277, -0.009947802871465683, -0.003604420693591237, -0.028145650401711464, -0.10748932510614395, -0.006956830155104399, 0.02087712287902832, 0.008720907382667065, 0.004347189795225859, 0.0015062631573528051, -0.006625236943364143, 0.021248506382107735, 0.002201780444011092, 0.00854184664785862, -0.02309216745197773, -0.04172771796584129, 0.00319490279071033, -0.011579242534935474, 0.007003253325819969, -0.023437023162841797, -0.014444209635257721, -0.02455117739737034, 0.003952593542635441, 0.016486825421452522, 0.0011464842827990651, -0.025280684232711792, 0.02490929886698723, -0.02026699110865593, 0.026434628292918205, -0.019617067649960518, -0.032151300460100174, 0.014682956971228123, 0.02319827675819397, 0.02631525509059429, -0.018436595797538757, -0.006134478375315666, 0.01420546229928732, -0.012859193608164787, -0.0029859989881515503, -0.00997433066368103, -0.0431867279112339, 0.010650780983269215, 0.014736012555658817, -0.03342461958527565, 0.021434199064970016, -0.014112616889178753, 0.022614672780036926, -0.0228799469769001, 0.0015560021856799722, -0.01149302814155817, -0.018741661682724953, 0.0036972668021917343, 0.02562553994357586, -0.01830395683646202, -0.03260226547718048, 0.00332919810898602, -0.043876443058252335, -0.011897572316229343, 0.028649672865867615, 0.002644457621499896, 0.021434199064970016, -0.008528582751750946, -0.02606324478983879, -0.005554189905524254, -0.030931035056710243, 0.014311572536826134, -0.007208841387182474, 0.030400486662983894, 0.013575435616075993, -0.021606627851724625, -0.005305495113134384, -0.015850165858864784, 0.02180558443069458, -0.0023228120990097523, -0.020465947687625885, 0.0023659190628677607, -0.03331850841641426, 0.02216370590031147, 0.0005139698041602969, 0.02298605628311634, -0.027190661057829857, -0.008720907382667065, 0.02516130916774273, -0.002228307770565152, -0.017932573333382607, -0.024962354451417923, 0.00022879947209730744, -0.0011083510471507907, 0.0200547706335783, 0.014537055976688862, -0.0021056183613836765, -0.019564012065529823, 0.01326373778283596, -0.0007514736498706043, -0.0017541293054819107, 0.022243287414312363, -0.007242000661790371, -0.035228487104177475, 0.012991830706596375, 0.026301991194486618, 0.01082984171807766, 0.002110592322424054, -0.006830824539065361, 0.007732758764177561, -0.03154116868972778, 0.01630113273859024, -0.0596868172287941, 0.03066576085984707, 0.01229548454284668, -0.0016015962464734912, -0.007003253325819969, -0.008196990005671978, 0.018542705103754997, -0.02545311115682125, -0.021726001054048538, 0.0005790450377389789, -0.01587669365108013, 0.03692624345421791, -0.009311143308877945, -0.018078474327921867, -0.011506292037665844, 0.005736566614359617, 0.008992813527584076, -0.013522380031645298, 0.00947030819952488, 0.006857352331280708, 0.016898000612854958, -0.0034452558029443026, 0.02431243099272251, 0.00022299659030977637, -0.03278796002268791, -0.0019845867063850164, 0.009589682333171368, 0.002399078570306301, -0.005806201137602329, -0.01786625385284424, 0.006094687152653933, -0.03260226547718048, -0.003405464580282569, 0.009549890644848347, -0.004764997866004705, 0.0231319572776556, -0.012646974064409733, -0.011711880564689636, -0.002904758555814624, 0.03371642157435417, -0.01948443055152893, -0.016844946891069412, 0.007825604639947414, -0.01976296864449978, 0.013648386113345623, 0.02226981520652771, -0.00861479714512825, 0.023529870435595512, 0.011871044524013996, -0.011698616668581963, 0.002947865752503276, 0.028251761570572853, 0.0007469141855835915, -0.017600979655981064, -0.0023609453346580267, -0.017136748880147934, 0.04013606905937195, -0.01041866559535265, 0.006336750462651253, -0.02902105823159218, 0.007248632609844208, -0.005229228641837835, 0.003130241995677352, 0.004967269487679005, 0.022853419184684753, -0.020081298425793648, -0.009788637980818748, -0.011234385892748833, -0.006233956664800644, -0.016380716115236282, -0.005036904476583004, 0.0023012585006654263, -0.007998033426702023, 0.009795269928872585, 0.01937832124531269, 0.030877981334924698, 0.017574451863765717, 0.0023029164876788855, -0.02870272845029831, 0.00015636702300980687, -0.019617067649960518, -0.012938776053488255, -0.031222837045788765, 0.0015609761467203498, 0.029498552903532982, -0.003786796936765313, 0.018821243196725845, 0.020930178463459015, -0.015425726771354675, 0.026646848767995834, 0.031090199947357178, -0.011638929136097431, -0.005302179139107466, -0.008031193166971207, -0.010425297543406487, 0.017614243552088737, 0.009523363783955574, -0.012912248261272907, 0.023224804550409317, 0.033053234219551086, -0.007268527988344431, 0.0060515799559652805, 0.01197715476155281, -0.01687147468328476, -0.0031468216329813004, -0.0037536376621574163, -0.031435057520866394, -0.021168924868106842, -0.011453237384557724, 0.031010618433356285, 0.01143997348845005, -0.007208841387182474, 0.015253297984600067, 0.02256161719560623, -0.010465089231729507, 0.0008588269702158868, -0.0015808717580512166, -0.005792937241494656, -0.005418236833065748, 0.042337849736213684, 0.004818052519112825, 0.026620320975780487, 0.011612402275204659, 0.005607245024293661, 0.028941474854946136, 0.006432912778109312, 0.007673072163015604, 0.02051900140941143, -0.0062571680173277855, 0.00039459619438275695, 0.014988022856414318, -0.004758365917950869, -0.03623653203248978, 0.0034651514142751694, 0.0095100998878479, -0.032257407903671265, -0.004562725778669119, 0.010431929491460323, -0.013462693430483341, 0.036687497049570084, 0.007440956775099039, -0.016924528405070305, -0.0020475895144045353, -0.010087071917951107, 0.03159422427415848, 0.014391154982149601, 6.875382678117603e-05, 0.008382681757211685, -0.016327660530805588, 0.0014465763233602047, -0.009755479171872139, 0.011486396193504333, -0.005766409914940596, -0.004668835550546646, 0.01969664916396141, 0.002896468620747328, 0.03387558460235596, -0.03806692734360695, -0.020572056993842125, 0.03159422427415848, -0.0031285840086638927, 0.017057165503501892, -0.0053618657402694225, 0.0026842488441616297, 0.0013860606122761965, 0.024458331987261772, -0.001979612745344639, 0.0022614672780036926, -0.036687497049570084, 1.7862006643554196e-05, -0.0010959162609651685, -0.014749276451766491, -0.013820813968777657, 0.017428550869226456, -0.011042061261832714, 0.005408288910984993, -0.011148171499371529, 0.02642136439681053, 0.005116486921906471, -0.0020956704393029213, 0.017415286973118782, -0.01324384193867445, -0.02973729930818081, 0.011784831061959267, -0.006930302828550339, -0.01490844041109085, -0.010823209770023823, -0.031143255531787872], "96cc4aa4-b416-414e-acdd-9a35ee84eef1": [-0.009743829257786274, -0.015883315354585648, -0.017429955303668976, 0.006196645088493824, -0.0070943683385849, 0.033165331929922104, -0.014928434044122696, -0.004666816908866167, -0.01909763738512993, -0.012675720266997814, 0.022769223898649216, 0.00899068359285593, 0.02683083526790142, 0.006828750018030405, -0.007760095875710249, 0.01483429130166769, 0.03165904060006142, -0.011465306393802166, 0.03674277663230896, -0.016313685104250908, -0.01194947212934494, -0.005591438151896, 0.01024144422262907, 0.034510236233472824, -0.004054885357618332, 0.03620481491088867, 0.0158698670566082, -0.009071377106010914, -0.002683083526790142, -0.025526277720928192, -0.0001763085019774735, 0.015614335425198078, 0.018815206363797188, -0.009535369463264942, -0.028485067188739777, 0.006751418113708496, -0.0005509903421625495, -0.009885044768452644, 0.013206956908106804, -0.022540591657161713, 0.01406769547611475, -0.00354718416929245, -0.019729740917682648, 0.006596754305064678, -0.019420413300395012, 0.020092865452170372, 0.015116720460355282, -0.04150373861193657, -0.013906307518482208, 0.009730380028486252, 0.03997054696083069, 0.008237536996603012, -0.0310134869068861, 0.012063789181411266, -0.02630632184445858, 0.004296968225389719, 0.004354126751422882, 0.023697208613157272, -0.011196325533092022, 0.028027798980474472, 0.011525827459990978, -0.013294375501573086, 0.0012524417834356427, 0.02159915864467621, -0.04112716391682625, -0.012722792103886604, -0.019796986132860184, -0.014538411982357502, -0.002491434570401907, -0.00843927264213562, 0.04491979256272316, 0.02783951349556446, -0.00014037435175850987, 0.020765317603945732, 0.03596273437142372, -0.027678124606609344, -0.0117813590914011, -0.018842104822397232, -0.026655996218323708, 0.003570720087736845, -0.010295240208506584, -0.03736143186688423, -0.01706683076918125, -0.0029655133839696646, 0.029184415936470032, -9.508891525911167e-05, 0.018747961148619652, 0.014417370781302452, -0.027153611183166504, -0.023939291015267372, 0.004212911706417799, 0.03112107887864113, 0.006801852025091648, 0.0027570531237870455, -0.01279003731906414, 0.012292422354221344, -0.008620834909379482, 0.020079417154192924, -0.008069423958659172, -0.012964874505996704, -0.02447725273668766, -0.004377662669867277, -0.021720198914408684, -0.005399789661169052, -0.045323263853788376, 0.016891993582248688, -0.017685487866401672, -0.0204425398260355, 0.0033790713641792536, -0.022769223898649216, -0.0026982135605067015, 0.040185730904340744, -0.028162289410829544, -0.0351019948720932, -0.020563581958413124, -0.02184124104678631, 0.022379202768206596, -0.02169330045580864, -0.0257280133664608, -0.027570532634854317, 0.009367256425321102, 0.01002625934779644, -0.013449040241539478, -0.019649047404527664, 0.015748824924230576, 0.003343767486512661, 0.009246215224266052, -0.02693842723965645, 0.00148191605694592, 0.003570720087736845, 0.02255403995513916, 0.013361620716750622, 0.0037791801150888205, 0.010423005558550358, -0.017443405464291573, 0.010685262270271778, -0.034321948885917664, 0.01341541763395071, -0.013294375501573086, -0.03504819795489311, 0.008378751575946808, 0.0175509974360466, -0.0026561853010207415, -0.027476388961076736, -0.02077876590192318, 0.025270745158195496, 0.016865095123648643, 0.01315316092222929, -0.025432134047150612, 0.0016130441799759865, 0.017093729227781296, 0.0017105498118326068, 0.025902850553393364, 0.006126037798821926, 0.0015768999001011252, 0.013664224185049534, 0.014309778809547424, -0.015641232952475548, 0.002794038038700819, 0.008493068628013134, 0.016085051000118256, 0.008002178743481636, 0.02399308793246746, 0.0027301551308482885, 0.001807214692234993, 0.015990909188985825, 0.005440136417746544, -0.00010454527364345267, -0.03386468067765236, -0.011344265192747116, 0.0023771177511662245, 0.015183965675532818, -0.008156842552125454, -0.0030327585991472006, -0.009340357966721058, -0.0005799898644909263, 0.03822217136621475, 0.021289831027388573, -0.015305007807910442, 0.010086779482662678, -0.04699094593524933, -0.009965738281607628, 0.011290469206869602, 0.0163540318608284, 0.0022728878539055586, -0.011956196278333664, -0.008721702732145786, -0.010375934652984142, 0.004491979256272316, 0.006421916652470827, 0.026279423385858536, 0.01060456782579422, -0.010113677941262722, -0.026481159031391144, -0.6304910182952881, -0.03184732794761658, -0.019931476563215256, -0.015358803793787956, -0.01706683076918125, 0.008553589694201946, 0.01717442460358143, 0.016004357486963272, -0.0031016848515719175, 0.001244876766577363, -0.02948029525578022, 0.010537322610616684, -0.017255118116736412, -0.024342762306332588, -0.018882451578974724, -0.0009506790083833039, 0.015748824924230576, -0.047690294682979584, 0.014457717537879944, -0.01197636965662241, 0.001076763728633523, 0.0028327039908617735, -0.004344040062278509, -0.014350125566124916, -0.010813027620315552, -0.010154024697840214, 0.010886997915804386, 0.0009498384315520525, 0.005544366780668497, 0.041046470403671265, -0.026346668601036072, 0.019649047404527664, 0.024167925119400024, 0.01712062768638134, 0.052693337202072144, 0.009851422160863876, -0.03685037046670914, 0.02068462409079075, 0.004202825017273426, 0.010644915513694286, -0.013482662849128246, -0.018828656524419785, 0.0336763970553875, 0.008755325339734554, 0.007222134619951248, 0.004286881536245346, 0.03198181837797165, -0.017712386325001717, 0.010564221069216728, 0.0011070241453126073, 0.003927119541913271, -0.0009321865509264171, -0.02750328741967678, -0.009461399167776108, 0.008869641460478306, 0.00555445346981287, 0.02818918786942959, -0.020160110667347908, 0.013960103504359722, 0.01190240029245615, 0.004939159844070673, 0.029023028910160065, -0.0007417986053042114, 0.008076148107647896, -0.00035429815761744976, 0.018721062690019608, -0.014108043164014816, 0.018411735072731972, 0.02923821285367012, -0.007201960776001215, 0.011525827459990978, 0.02184124104678631, 0.008062699809670448, -0.01194947212934494, 0.016380930319428444, 0.010624741204082966, 0.028969231992959976, -0.02861955761909485, -0.005497294943779707, 0.03082519955933094, 0.006331135518848896, -0.01846553198993206, -0.01592366397380829, -0.023683758452534676, 0.015990909188985825, -0.010947518050670624, -0.008419099263846874, 0.023495472967624664, -0.007928209379315376, -0.0016382611356675625, 0.00856031384319067, 0.016475073993206024, 0.009098275564610958, 0.0098581463098526, 0.036715880036354065, 0.019595250487327576, 0.00417256448417902, 0.006126037798821926, 0.01156617421656847, -0.005860419012606144, -0.010275066830217838, -0.007423869799822569, 0.009360531345009804, -0.017658589407801628, 0.002972237765789032, -0.00899068359285593, -0.03881393000483513, -0.007551636081188917, 0.034698523581027985, -0.01788722351193428, 0.009555542841553688, -0.00030218312167562544, -0.02466554008424282, 0.003207596018910408, 0.031524550169706345, -0.0252438485622406, 0.009609338827431202, 0.00034337080433033407, 0.018734512850642204, -0.011310642585158348, 0.017053382471203804, -0.02352237142622471, 0.015641232952475548, -0.019272474572062492, 0.018209999427199364, 0.029157519340515137, 0.010180923156440258, -0.005571264773607254, 0.0032277696300297976, -0.011068560183048248, -0.011572899296879768, 0.0012381522683426738, 0.01327420212328434, 0.00401453860104084, 0.014888087287545204, -0.01404079794883728, 0.02722085639834404, 0.010981140658259392, 0.003165567759424448, -0.013301100581884384, -0.001982052344828844, 0.0029655133839696646, 0.007282655220478773, 0.005285472609102726, 0.01307919155806303, -0.01706683076918125, -0.01322713028639555, -0.009293286129832268, -0.053984444588422775, 0.002017355989664793, -0.023629963397979736, -0.009104999713599682, -0.002066108863800764, 0.004421371966600418, 0.0032866091933101416, -0.007208685390651226, -0.021948833018541336, -0.0035169238690286875, 0.01498223003000021, -0.03405296802520752, 0.019447311758995056, 0.014888087287545204, -0.02707291767001152, 0.01264882180839777, 0.022392651066184044, -0.02496141754090786, -0.0007384363561868668, 0.024598294869065285, 0.008163567632436752, -0.031282465904951096, 0.004613020457327366, 0.008412374183535576, -0.0006329454481601715, 0.04752890765666962, -0.013132987543940544, -0.007733197882771492, -0.0025452307891100645, -0.020119763910770416, 0.005527555476874113, 0.018344489857554436, -0.0038027160335332155, 0.01026834174990654, -0.016569217666983604, -1.2569073078338988e-05, 0.0218815878033638, -0.01751065067946911, -0.01260174997150898, -0.001973646692931652, 0.0007964353426359594, 0.038302864879369736, -0.012662271037697792, 0.007921484299004078, 0.006748055573552847, -0.011969645507633686, 0.01404079794883728, 0.009360531345009804, -0.006623652298003435, 0.03300394490361214, 0.015641232952475548, 0.008082873187959194, 0.021478116512298584, -0.010355760343372822, 0.04276794567704201, -0.0090175811201334, -0.006569855846464634, -0.025324542075395584, 0.0024863912258297205, -0.0024779855739325285, 0.034940604120492935, -0.005742739886045456, -0.005110634956508875, -0.044462524354457855, -0.0022728878539055586, -0.002118223812431097, 0.008526691235601902, 0.030072053894400597, 0.00567549467086792, 0.008641008287668228, -0.020455989986658096, -0.013240579515695572, 0.013812163844704628, -0.011942747049033642, 0.010597843676805496, -0.01956835389137268, -0.013798714615404606, -0.005426687654107809, 0.013166610151529312, 0.021505014970898628, 0.021034298464655876, 0.002069470938295126, 0.026050791144371033, -0.0030109037179499865, -0.0161119494587183, 0.005971373524516821, 0.00501312967389822, 0.006882546003907919, 0.006596754305064678, -0.013697846792638302, 0.024302415549755096, -0.037684209644794464, -0.008627559058368206, -0.006008358672261238, 0.032008714973926544, -0.030233440920710564, -0.013960103504359722, 0.006065517198294401, 0.007975280284881592, 0.00743059441447258, 0.017954468727111816, 0.01077268086373806, -0.012944701127707958, 0.00076197215821594, -0.008499792777001858, -0.019541455432772636, 0.0014751915587112308, -0.016327135264873505, -0.010080055333673954, 0.019918028265237808, 0.00848634447902441, 0.02206987515091896, 0.007686126511543989, 0.0017080280231311917, 0.019447311758995056, 0.009434501640498638, 0.05495277792215347, 0.0002003696863539517, 0.014013899490237236, 0.006758142728358507, -0.014686351642012596, -0.04150373861193657, -0.005288835149258375, -0.0005497295060195029, 0.02520349994301796, -0.004031349904835224, -0.006906081922352314, 0.006307599600404501, 0.00392039492726326, -0.009878319688141346, 0.010907171294093132, -0.006166385021060705, 0.004650005605071783, -0.0221236702054739, 0.030045155435800552, 0.005191329400986433, 0.010039708577096462, -0.014242533594369888, -0.013711296021938324, -0.00045012254850007594, -0.018788307905197144, 0.034644726663827896, -0.010342312045395374, 0.006707708816975355, 0.025929749011993408, -0.018478980287909508, 0.004858465865254402, -0.0007876093732193112, 0.021410871297121048, -0.015735376626253128, 0.03803388401865959, 0.006354671437293291, 0.009757278487086296, 0.020846011117100716, -0.0182772446423769, 0.012393290176987648, 0.023979637771844864, -0.00550738163292408, 0.002076195552945137, -0.012931251898407936, 0.009965738281607628, -0.02395273931324482, -0.008553589694201946, -0.01966249570250511, -0.002210685983300209, -0.006791765335947275, -0.001683651702478528, 0.006008358672261238, -0.023172695189714432, 0.020886359736323357, 0.0317397341132164, -0.016313685104250908, -0.0037287462037056684, -0.019554903730750084, -0.026857731863856316, 0.0008783903904259205, 0.09640271961688995, 0.03658138960599899, -0.019514556974172592, -0.0036917615216225386, 0.004515515174716711, 0.026333220303058624, -0.025620421394705772, -0.034940604120492935, 0.019595250487327576, 0.007739922497421503, 0.001780316699296236, -0.023092001676559448, 0.019756639376282692, 0.009219316765666008, 0.011969645507633686, -0.007201960776001215, -0.009589165449142456, -0.005214865319430828, 0.003241218626499176, -0.0005341790383681655, -0.010470077395439148, 0.010544047690927982, 0.011256846599280834, 0.02567421644926071, -0.03434884920716286, -0.01568157970905304, 0.022755775600671768, 0.0009439545101486146, 0.011895676143467426, -0.022446447983384132, -0.014121491461992264, 0.04120785742998123, 0.029453396797180176, 0.01449806522578001, -0.025606971234083176, 0.0015768999001011252, -0.004115406423807144, 0.013576805591583252, -0.007329726591706276, 0.0001889169798232615, 0.017497200518846512, 0.024342762306332588, -0.003832976333796978, -0.024315863847732544, 0.006892633158713579, 0.009051203727722168, -0.012547953985631466, -0.01870761439204216, -0.02477313205599785, -0.0022560765501111746, 0.038114577531814575, -0.01745685376226902, -0.021760545670986176, 0.0009498384315520525, 0.009387429803609848, 0.003947293385863304, -0.014968781732022762, -0.010570945218205452, -0.006398380734026432, 0.02539178729057312, 0.009730380028486252, 0.00022443085617851466, 0.025862503796815872, 0.008459446020424366, -0.027570532634854317, -0.022769223898649216, -0.03574754670262337, -0.013960103504359722, -0.009178970009088516, 0.03386468067765236, -0.011149253696203232, -0.0030411642510443926, -0.014753596857190132, 0.014901536516845226, 0.0019534730818122625, 0.0020728332456201315, 0.019823884591460228, -0.004091870505362749, 0.0021047748159617186, -0.005937750916928053, -0.013758367858827114, -0.015547090210020542, 0.012272248975932598, -0.020160110667347908, -0.03515579178929329, 0.00011221542808925733, 0.012278973124921322, 0.028646454215049744, -0.030072053894400597, 0.0038598745595663786, -0.006102501880377531, 0.017295464873313904, 0.012810210697352886, -0.009501746855676174, -0.0031000038143247366, -0.0037791801150888205, -0.00042175347334705293, -0.003664863295853138, -0.009051203727722168, -0.007242307998239994, 0.0004467602993827313, -0.027395693585276604, -0.008620834909379482, 0.0022913801949471235, 0.004327228758484125, -0.01708028092980385, 0.015345354564487934, 0.01615229621529579, -0.026561854407191277, -0.020119763910770416, 0.023643411695957184, -0.0317397341132164, 0.003054613247513771, -0.004007813986390829, 0.006250441074371338, -0.004626469686627388, 0.012978323735296726, 0.01498223003000021, 0.013556632213294506, 0.004491979256272316, 0.00899068359285593, -0.028296779841184616, 0.0032882902305573225, 0.006993500981479883, -0.024262068793177605, 0.0024611742701381445, 0.004918986465781927, -0.01812930591404438, 0.04368248209357262, 0.02053668349981308, -0.0012894266983494163, 0.00702039897441864, -0.0007161613903008401, -0.003722021821886301, -0.039997443556785583, 0.007975280284881592, -0.015654683113098145, 0.009629512205719948, -0.0030680622439831495, -0.00400445144623518, -0.014296329580247402, -0.03044862672686577, -0.018828656524419785, -0.040885079652071, -0.004441545344889164, -0.0283774733543396, -0.013570081442594528, -0.0008809121209196746, -0.002634330652654171, -0.00434067752212286, 0.002420827280730009, -0.021706750616431236, -0.0355861596763134, -0.0120234414935112, -0.00865445751696825, -0.030959689989686012, 0.002353582065552473, -0.014820842072367668, 0.0281353909522295, -0.006089052651077509, 0.025284195318818092, -0.035989630967378616, 0.0018206638051196933, 0.004841654561460018, 0.0015222631627693772, -0.005614974070340395, -0.0003603922377806157, -0.030529320240020752, -0.028054697439074516, -0.026091137900948524, 0.04750200733542442, 0.023159246891736984, 0.013718021102249622, -0.011424959637224674, -0.007686126511543989, 0.03144385665655136, -0.005245125386863947, -0.002567085437476635, 0.0026713155675679445, -0.05664735659956932, -0.023724107071757317, 0.007040572352707386, -0.009911942295730114, -0.003570720087736845, -0.01440392155200243, 0.00990521814674139, 0.06460918486118317, -0.0024258706253021955, 0.008748600259423256, -0.009387429803609848, 0.00846617016941309, -0.01428288035094738, 0.022446447983384132, -0.007760095875710249, 0.01693234033882618, -0.01568157970905304, 0.032869454473257065, -0.018236897885799408, 0.0036009803880006075, -0.003064699936658144, 0.012110860086977482, 0.003268116619437933, 0.005171156022697687, -0.011451857164502144, -0.018304143100976944, 1.941179834830109e-05, -0.01687854528427124, -0.014296329580247402, 0.008493068628013134, -0.015426049008965492, -0.018721062690019608, -0.006811938714236021, 0.0028831379022449255, -0.025284195318818092, -0.019783537834882736, -0.010718884877860546, 0.004945884458720684, -0.0035001125652343035, -0.000703132594935596, -0.024786580353975296, 0.0026982135605067015, -0.0035404597874730825, 0.026750139892101288, 0.014578759670257568, 0.017725834622979164, -0.0011969645274803042, -0.017618242651224136, 0.001379367196932435, -0.006166385021060705, -0.009770727716386318, -0.02438310906291008, 0.03889462351799011, 0.016421277076005936, -0.007154889404773712, 0.005729291122406721, -0.02948029525578022, 0.0026864458341151476, -0.0278933085501194, -0.02197573147714138, 0.007914760150015354, 0.010752507485449314, -0.023589616641402245, 0.003917032852768898, 0.008479619398713112, -0.029937563464045525, 0.021585708484053612, 0.001721477136015892, 0.0211553405970335, -0.01322713028639555, -0.010133851319551468, -0.037630412727594376, 0.016528870910406113, 0.011075284332036972, 0.026413913816213608, 0.01592366397380829, -0.021088095381855965, -0.044892895966768265, -0.027234306558966637, -0.021236034110188484, -0.013408692553639412, 2.306300120835658e-05, 0.011404786258935928, -0.01788722351193428, 0.023737555369734764, 0.004448269959539175, 0.002136716153472662, -0.019514556974172592, -0.0032109583262354136, -0.022728877142071724, 0.024006536230444908, -0.0098581463098526, 0.011546000838279724, 0.023589616641402245, 0.028404371812939644, 0.016434727236628532, 0.0034160560462623835, 0.00229642353951931, 0.014888087287545204, -0.044839099049568176, -0.005934388842433691, 0.012097411789000034, 0.009360531345009804, 0.00048542628064751625, -0.003654776606708765, -0.0064320033416152, -0.010739058256149292, 0.011559450067579746, 0.02298440970480442, 0.011895676143467426, -0.02977617457509041, -0.029211314395070076, 0.001765186432749033, -0.028780944645404816, 0.023401329293847084, -0.005211502779275179, 0.025082459673285484, -0.009313460439443588, 0.02880784310400486, -0.016649911180138588, 0.026750139892101288, -0.01741650700569153, 0.011088733561336994, -0.031040383502840996, 0.0096160639077425, 0.006163022480905056, -0.028000900521874428, 0.020375294610857964, -0.01110890693962574, -0.01663646288216114, 0.013260752893984318, 0.018640369176864624, 0.012561403214931488, 0.015479844994843006, 0.035182688385248184, 0.0007581896497868001, -0.011909124441444874, 0.01332127396017313, -0.01081975270062685, -0.04707163944840431, 0.02679048664867878, 0.026750139892101288, 0.0011414872715249658, 0.0013818888692185283, -0.019070738926529884, 0.022016078233718872, -0.0026124760042876005, 0.023535819724202156, 0.003020990639925003, -0.0322238989174366, 0.015842968598008156, -0.011135805398225784, 0.028269881382584572, 0.0017685487400740385, -0.02365686185657978, -0.020603928714990616, -0.007208685390651226, -0.0017433317843824625, 0.004105319269001484, 0.007948382757604122, -0.002498159185051918, 0.023199593648314476, 0.009252939373254776, -0.006633738987147808, -0.0019467485835775733, -0.008708253502845764, 0.0007191033801063895, 0.01190240029245615, -0.00028390082297846675, -0.02923821285367012, -0.00834512896835804, -0.007269205991178751, 0.030744506046175957, 0.0011936023365706205, -0.017160974442958832, -0.00263264961540699, -0.01986423134803772, -0.029991358518600464, -0.004871914628893137, -0.005598162766546011, 0.018169652670621872, 0.037872496992349625, 0.017994815483689308, -0.004902175161987543, 0.031336262822151184, -0.020832562819123268, -0.005857056938111782, -0.000864941393956542, -0.021128442138433456, -0.012326044961810112, -0.015856418758630753, 0.0007506245165131986, 0.013455764390528202, -0.023092001676559448, 0.008936886675655842, 0.02255403995513916, 0.0025620420929044485, -0.005846970248967409, 0.006744693499058485, 0.021437769755721092, 0.004697076976299286, -0.00981107447296381, -0.0068522859364748, 0.0141887366771698, 0.0182772446423769, 0.0036177916917949915, -0.012588301673531532, -0.005725928582251072, -0.008089597336947918, -0.010342312045395374, -0.019823884591460228, -0.03859874606132507, 0.003108409233391285, -0.0012003268348053098, 0.006643825676292181, -0.028108492493629456, -0.0027889946941286325, -0.026265975087881088, -0.02255403995513916, 0.029372703284025192, -0.006297512911260128, -0.015049475245177746, 0.018694166094064713, -0.005393065046519041, -0.006912806537002325, -0.0037926293443888426, 0.008129945024847984, 0.005456947721540928, -0.03475232049822807, 0.009629512205719948, -0.031820427626371384, 0.008089597336947918, -0.003209277056157589, 0.0005161068984307349, -0.009831247851252556, 0.011814981698989868, -0.011478755623102188, 0.005077012348920107, -0.01962214894592762, 0.028673352673649788, 0.03009895049035549, -0.024598294869065285, -1.489376063545933e-05, -0.011862053535878658, -0.016905443742871284, 0.0036413276102393866, -0.008123219944536686, -0.01103493757545948, -0.003409331664443016, 0.022728877142071724, -0.007504564244300127, -0.004364213440567255, -0.025163153186440468, -0.01601780578494072, 0.0026528232265263796, -0.032439082860946655, -0.004381024744361639, 0.20690003037452698, -0.022997858002781868, 0.005944475531578064, 0.014457717537879944, 0.00496605783700943, 0.017564445734024048, 0.01708028092980385, -0.008291332982480526, -0.020173558965325356, -0.01630023680627346, -0.006364758126437664, 0.02432931400835514, -0.00810304656624794, 0.004700439516454935, 0.003209277056157589, -0.005113997496664524, -0.044650811702013016, -0.00973710510879755, -0.006593391764909029, -0.05293542146682739, 0.0032630732748657465, -0.006939704529941082, -0.004626469686627388, -0.01264882180839777, 0.021437769755721092, 0.008472895249724388, -0.030529320240020752, -0.026333220303058624, 0.026951875537633896, 0.014242533594369888, -0.03179353103041649, -0.012104135937988758, -0.0031437131110578775, 0.0007489434210583568, -0.013254028744995594, 0.005816709715873003, -0.0025553174782544374, 0.0011456900974735618, 0.008540140464901924, -0.015842968598008156, 0.009878319688141346, -0.005463672336190939, -0.002794038038700819, -0.0012902672169730067, 0.009488297626376152, 0.013758367858827114, -0.0011448495788499713, -0.011962921358644962, -0.014511514455080032, 0.02972237765789032, -0.022540591657161713, -0.0005568743217736483, 0.04976144805550575, 0.027731919661164284, -0.01132409181445837, -0.021720198914408684, -0.0029823246877640486, 0.019501108676195145, -0.024557946249842644, -0.003308463841676712, -0.0276512261480093, 0.014767046086490154, 0.003247943241149187, 0.037630412727594376, -0.017389608547091484, 0.011478755623102188, 0.003957380075007677, 0.00029840058414265513, 0.025835605338215828, -0.025660768151283264, -0.0016567535931244493, -0.010066606104373932, -0.011055110953748226, -0.012729516252875328, -0.010570945218205452, -0.007968556135892868, 0.031470753252506256, -0.018048612400889397, -0.008358578197658062, -0.009454675018787384, 0.015735376626253128, -0.009104999713599682, 0.015587436966598034, -0.0007951745064929128, -0.0005728450487367809, -0.03225079923868179, 0.00518124271184206, -0.01682474836707115, -0.0180351622402668, 0.018209999427199364, -0.014390472322702408, -0.03639310225844383, -0.021383972838521004, -0.012500882148742676, -0.01531845610588789, -0.025768360123038292, 0.024181373417377472, 0.014027348719537258, -0.0007035529124550521, -0.0036917615216225386, -0.011209774762392044, 0.006818663328886032, 0.03389158099889755, 0.013361620716750622, -0.02875404804944992, -0.009985912591218948, 0.016811300069093704, 0.00639501865953207, 0.017658589407801628, 0.00012167178647359833, 0.037818700075149536, -0.012278973124921322, 0.008412374183535576, -0.020039068534970284, 0.007988729514181614, 0.0418534129858017, -0.020523235201835632, -0.0317397341132164, 0.0037119348999112844, 0.002861283253878355, 0.026292873546481133, -0.02240610122680664, -0.013475937768816948, 0.007215410005301237, -0.008472895249724388, -0.0009279837249778211, -0.01048352662473917, 0.024598294869065285, 0.005635147914290428, -0.01055749598890543, 0.019030392169952393, -0.03967466950416565, -0.0025015214923769236, 0.008647732436656952, -0.012662271037697792, 0.025095907971262932, 0.014767046086490154, -0.013428865931928158, 0.012373116798698902, -0.010685262270271778, 0.004344040062278509, -0.0029083548579365015, 0.006512697786092758, 0.013987001962959766, 0.004727337509393692, -0.004179289098829031, 0.005228314083069563, -0.02746293880045414, -0.001717274310067296, -0.019164882600307465, -0.01889590173959732, 0.0027066192124038935, 0.014269431121647358, -0.008156842552125454, -0.0017601430881768465, -0.001381048234179616, -0.014121491461992264, -0.03792629390954971, -0.0017265204805880785, 0.030475525185465813, -0.042875539511442184, 0.008412374183535576, 0.015452946536242962, -0.017591344192624092, -0.016179194673895836, -0.019016942009329796, -0.17042623460292816, 0.009535369463264942, 0.023078553378582, -0.012608475051820278, 0.022580938413739204, 0.01919177919626236, 0.015345354564487934, 0.019178330898284912, 0.01055749598890543, -0.017053382471203804, 0.02615838311612606, 0.028162289410829544, -0.0466412715613842, -0.019447311758995056, -0.00964296143501997, 0.008869641460478306, -0.00868135504424572, -0.0013776860432699323, 0.03321912884712219, 0.018600022420287132, 0.00810304656624794, -0.0003341245756018907, 0.017107179388403893, -0.01358353067189455, 0.02096705324947834, 0.006122675258666277, -0.002728473860770464, 0.017631690949201584, -0.007067470345646143, -0.03650069609284401, -0.008755325339734554, 0.010456628166139126, 0.006966602522879839, -0.019124533981084824, 0.02395273931324482, 0.0029587887693196535, -0.00024292328453157097, -0.019487658515572548, -0.003039482980966568, 0.011868777684867382, -0.0014928433811292052, -0.009535369463264942, 0.020065966993570328, 0.016286786645650864, 0.0017122308490797877, 0.024463804438710213, -0.016085051000118256, -0.008210638538002968, -0.0025385061744600534, -0.011868777684867382, 0.006341222207993269, 0.008735151030123234, -0.00015004085435066372, 0.002667953260242939, 0.03112107887864113, 0.009010856971144676, 0.009985912591218948, 0.009770727716386318, -0.009925391525030136, -0.014081144705414772, -0.0016853328561410308, -0.007464217022061348, 0.02808159589767456, -0.028969231992959976, -0.004283518996089697, 0.0016945790266618133, -0.02149156667292118, 0.008049250580370426, -0.014336676336824894, 0.017335811629891396, 0.004774409346282482, 0.007437319029122591, 0.021437769755721092, -0.01717442460358143, 0.0038464253302663565, -0.013906307518482208, -0.01721477136015892, 0.020671173930168152, -0.014780495315790176, -0.020375294610857964, -0.048013072460889816, 0.03381088748574257, -0.00923276599496603, -0.001215456984937191, 0.0010616335785016418, 0.03523648530244827, -0.007127990946173668, -0.012379840947687626, -0.015695029869675636, 0.00526529923081398, 0.0204425398260355, -0.01315316092222929, -0.007571809459477663, -0.012595025822520256, 0.022016078233718872, 0.008593936450779438, 0.02500176429748535, -0.010355760343372822, -0.009582441300153732, 0.009817799553275108, 0.0173089150339365, -0.021424321457743645, -0.004175927024334669, 0.03550546616315842, 0.0278933085501194, 0.007975280284881592, -0.01281693484634161, 0.0026814022567123175, 0.027422592043876648, -0.00233845179900527, -0.002666272222995758, 0.024490701034665108, 0.017712386325001717, 0.01281693484634161, 0.029587887227535248, 0.0365544892847538, 0.010106953792273998, -0.009629512205719948, 0.020227355882525444, -0.008257710374891758, 0.057830870151519775, -0.007726473268121481, -0.013166610151529312, -0.004481892567127943, 0.005645234603434801, -0.0235627181828022, -0.10587084293365479, 0.006065517198294401, 0.030260339379310608, -0.0033370431046932936, 0.007585258688777685, 0.017241669818758965, 0.0011381249641999602, 0.018680715933442116, -0.015762275084853172, 0.0030024980660527945, -0.022567488253116608, -0.031524550169706345, 0.016313685104250908, -0.009326908737421036, 0.014484615996479988, -0.04053540527820587, -0.005087099503725767, -0.036043427884578705, 0.019635599106550217, 0.031712837517261505, 0.012890905141830444, -0.0394325852394104, 0.015439498238265514, -0.0278933085501194, 0.01663646288216114, -0.004115406423807144, -0.022621285170316696, 0.00865445751696825, 0.030502421781420708, 0.028592659160494804, -0.010288515128195286, -0.00827115960419178, 0.01353645883500576, -0.005527555476874113, 0.0038632366340607405, -0.007719749119132757, -0.04204170033335686, -0.008022352121770382, 0.0271670613437891, -0.03327292576432228, 0.006825387943536043, -0.007625605445355177, 0.019649047404527664, -0.022110221907496452, -0.014417370781302452, -0.0016777677228674293, -0.024342762306332588, -0.004337315447628498, 0.016475073993206024, -0.009219316765666008, -0.04163822904229164, 0.006159660406410694, -0.020227355882525444, -0.009777451865375042, 0.0317397341132164, -0.011572899296879768, 0.025190051645040512, -0.004865190014243126, -0.03338051587343216, -0.0031016848515719175, -0.029345804825425148, 0.02399308793246746, 0.0034160560462623835, 0.02231195755302906, -0.002861283253878355, -0.00217033876106143, -0.01486118882894516, -0.0081770159304142, 0.024114128202199936, 0.0034799391869455576, -0.01818310283124447, 0.009340357966721058, -0.03980915993452072, 0.02091325633227825, -0.01382561307400465, 0.014430820010602474, -0.021652953699231148, 0.0064320033416152, 0.020523235201835632, 0.009024306200444698, -0.01605815440416336, -0.021558811888098717, -0.0027637777384370565, -0.010006085969507694, 0.01592366397380829, 0.015910213813185692, 0.009992636740207672, -0.01279003731906414, 0.010301964357495308, -0.011438408866524696, 0.006435365416109562, 0.02692497707903385, -0.019595250487327576, -0.016044704243540764, 0.014914984814822674, 0.028350576758384705, 0.02679048664867878, 0.013462488539516926, -0.00496605783700943, -0.003765731118619442, -0.020415643230080605, 0.010691986419260502, -0.06955843418836594, 0.025983545929193497, 0.009441225789487362, 0.0128640066832304, 0.0017618242418393493, -0.005581351462751627, 0.021854689344763756, -0.022580938413739204, 0.004650005605071783, -0.0011667042272165418, -0.02442345581948757, 0.024127578362822533, -0.018721062690019608, -0.019070738926529884, -0.0126219242811203, 0.004394473973661661, 0.007968556135892868, -0.01855967566370964, -0.001993820071220398, 0.0023350894916802645, 0.007215410005301237, 0.0004017900791950524, 0.03168593719601631, -0.014027348719537258, -0.024652089923620224, 0.012413463555276394, 0.010631466284394264, 0.016461625695228577, -0.0025099271442741156, -0.011297193355858326, 0.005635147914290428, -0.02514970488846302, 0.0018643731018528342, -0.00011988558253506199, -0.012110860086977482, 0.018573123961687088, -0.02202952653169632, -0.01168721541762352, -0.010496975854039192, 0.05067598074674606, -0.02533799037337303, -0.01260174997150898, 0.0034631278831511736, -0.03644689917564392, 0.013603704050183296, 0.029695479199290276, -0.01115597877651453, 0.009394153952598572, 0.0036177916917949915, -0.010167473927140236, 0.0012179786572232842, 0.030663810670375824, -0.005033303052186966, -0.011646868661046028, -0.00013123321696184576, -0.03475232049822807, 0.030502421781420708, -0.004855103325098753, -0.005450223572552204, -0.03685037046670914, 0.0128640066832304, -0.0017122308490797877, 0.014646004885435104, 0.007195236161351204, 0.022930612787604332, -0.00646898802369833, -0.006408467423170805, -0.02447725273668766, -0.005920939613133669, -0.015452946536242962, 0.006405105348676443, 0.0029655133839696646, 0.009777451865375042, -0.003970828838646412, 0.013401968404650688, 0.02034839801490307, 0.008452721871435642, 0.005830158945173025, -0.042203087359666824, 0.004821480717509985, -0.004824843257665634, -0.01894969679415226, -0.02899613045156002, 0.008580487221479416, 0.03227769583463669, 0.019245576113462448, -0.004858465865254402, 0.01416183914989233, -0.024759681895375252, 0.018640369176864624, 0.014255981892347336, -0.015856418758630753, -0.0018509241053834558, -0.019998721778392792, -0.0026713155675679445, 0.032197002321481705, -0.015573988668620586, 0.002703256905078888, 0.02432931400835514, 0.039836056530475616, -0.015856418758630753, 0.017039934173226357, 0.012426912784576416, -0.004044798668473959, -0.005581351462751627, -0.011149253696203232, -0.016905443742871284, -0.0109407939016819, 0.002767140045762062, 0.013906307518482208, -0.009037754498422146, 0.004895450547337532, 0.022594386711716652, 0.021478116512298584, -0.01440392155200243, -0.0030915981624275446, 0.00409859512001276, -0.008331680670380592, 0.0053493557497859, 0.023603064939379692, 0.021747097373008728, 0.030529320240020752, 0.00776682049036026, 0.012951425276696682, 0.03015274740755558, 0.006485799327492714, 0.009131898172199726, 0.030287237837910652, 0.0033387241419404745, 0.01002625934779644, 0.009004131890833378, -0.006801852025091648, -0.027180509641766548, -0.015910213813185692, 0.008358578197658062, -0.020321499556303024, -0.022204365581274033, 0.006828750018030405, -0.019070738926529884, 0.03405296802520752, 0.010900447145104408, -0.010140576399862766, -0.00560152530670166, 0.001148211769759655, 0.030717607587575912, 0.004720612894743681, 0.0017618242418393493, 0.022002629935741425, -0.020133212208747864, 0.020792216062545776, -0.004189375787973404, 0.015614335425198078, -0.027247754856944084, 0.0034244616981595755, 0.009562266990542412, 0.007692850660532713, 0.026723241433501244, -0.01773928292095661, -0.013744918629527092, 0.034268151968717575, 0.0030949602369219065, 0.008889815770089626, -0.008519967086613178, -0.006499248556792736, 5.994279126753099e-05, 0.020375294610857964, -0.010140576399862766, 0.009871595539152622, -0.022661631926894188, -0.01373146940022707, 0.01870761439204216, -0.009118448942899704, -0.004784496035426855, 0.016569217666983604, -0.0007569287554360926, -0.0024191460106521845, -0.022446447983384132, 0.03273496404290199, 0.004972782451659441, -0.019796986132860184, 0.025499379262328148, -0.013052293099462986, -0.026534955948591232, 0.007255757227540016, -0.009118448942899704, -0.012500882148742676, -0.007040572352707386, -0.02490762248635292], "276cbe98-8f2b-4a17-a108-ba152936e64b": [-0.009431570768356323, -0.021555962041020393, -0.012693769298493862, 0.000272128963842988, -0.01527271419763565, 0.027088971808552742, -0.012573194690048695, -0.014750226400792599, -0.01645166054368019, -0.01824687421321869, 0.020149264484643936, -0.002597366226837039, 0.02564208209514618, -0.002686121966689825, -0.03145643323659897, 0.0030997581779956818, 0.03952149674296379, -0.011943530291318893, 0.04731861874461174, -0.024972226470708847, 0.0009930613450706005, -0.026003805920481682, -0.0001708132476778701, 0.02198467031121254, 0.009860278107225895, 0.047157853841781616, 0.0159559678286314, -0.010637311264872551, 0.010965541005134583, -0.0194392167031765, 0.0017131563508883119, 0.011628697626292706, 0.01645166054368019, -0.005831095390021801, -0.025119595229625702, 0.0068124341778457165, 0.009116738103330135, -0.023887060582637787, 0.018112903460860252, -0.010918650776147842, 0.016733000054955482, -0.0074621946550905704, -0.02130141668021679, -0.003553585382178426, -0.035234417766332626, 0.017081324011087418, 0.010302383452653885, -0.029500452801585197, -0.016933957114815712, 0.01842103712260723, 0.03378752991557121, 0.008634442463517189, -0.03274255618453026, -0.0018956920830532908, -0.017644003033638, 0.0013070562854409218, 0.01241242978721857, 0.03697604313492775, -0.020577972754836082, 0.03185834735631943, 0.012305252254009247, -0.018662184476852417, -0.003372724400833249, 0.017014339566230774, -0.03421624004840851, -0.014415298588573933, -0.022895673289895058, -0.01059042103588581, 0.003848321968689561, -0.017027735710144043, 0.04670235142111778, 0.013812428340315819, 0.00173660134896636, 0.017697593197226524, 0.04021814838051796, -0.024195194244384766, -0.023994237184524536, -0.018488021567463875, -0.02966121770441532, -0.005100952461361885, -0.015821995213627815, -0.034350208938121796, -0.01773778349161148, -0.012378936633467674, 0.022641127929091454, -0.009438269771635532, 0.018206682056188583, 0.025266963988542557, -0.026740645989775658, -0.021636344492435455, 0.008654537610709667, 0.023136822506785393, 0.0053421007469296455, 0.007247840519994497, -0.011662190780043602, 0.007020089775323868, -0.002709567081183195, 0.006859324406832457, -0.003804781474173069, -0.021703330799937248, -0.005097603425383568, 0.003911958541721106, -0.021663138642907143, -0.0011278698220849037, -0.02002868987619877, 0.019090892747044563, -0.029500452801585197, -0.015393287874758244, 0.006671764422208071, -0.02099328301846981, -0.0036607624497264624, 0.020644959062337875, -0.02485165372490883, -0.043621014803647995, -0.0153798907995224, -0.018755964934825897, 0.025374140590429306, -0.012479415163397789, -0.031108107417821884, -0.009773197583854198, 0.01503156591206789, 0.008178940042853355, -0.006373678799718618, -0.020926296710968018, 0.0177511814981699, 0.0019509552512317896, 0.015004771761596203, -0.031295668333768845, 0.006058846600353718, 0.002031337935477495, 0.03925355523824692, 0.010865062475204468, 0.0035703317262232304, 0.0010575349442660809, -0.019680365920066833, 0.0034665041603147984, -0.02719614841043949, -0.00282344245351851, -0.019479408860206604, -0.027464091777801514, 0.01020860392600298, 0.010282287374138832, 0.002408131957054138, -0.0445588119328022, -0.007877505384385586, 0.03518082946538925, 0.018581802025437355, 0.019760748371481895, -0.030009543523192406, 0.001721529639326036, 0.018313860520720482, 0.0008498796378262341, 0.02976839430630207, -0.0069798980839550495, 0.025695672258734703, 0.00902295857667923, 0.012090899050235748, -0.007622960023581982, -0.005586598068475723, 0.006497601978480816, 0.009123437106609344, 0.0009888747008517385, 0.0159559678286314, -0.005965066608041525, 0.01793874055147171, 0.021368402987718582, 0.017175104469060898, 0.001471170922741294, -0.032179877161979675, 0.005837793927639723, 0.0246506966650486, 0.026271747425198555, -0.024677490815520287, 3.987735908594914e-05, 0.005244971718639135, 0.007314826361835003, 0.03381432592868805, 0.014937786385416985, -0.015018168836832047, 0.005566502455621958, -0.040566470474004745, -0.007663151249289513, 0.013055491261184216, 0.011166497133672237, 0.00394210172817111, -0.008681331761181355, -0.006658367346972227, 0.0006941381725482643, 0.0003757472732104361, 0.00828611757606268, 0.015219125896692276, 0.007422002963721752, -0.009967455640435219, -0.01625070348381996, -0.6263420581817627, -0.029312893748283386, -0.01399998739361763, -0.020671753212809563, -0.006581333931535482, 3.9458696846850216e-05, 0.015299508348107338, 0.014870800077915192, -0.00019938679179176688, -0.008299514651298523, -0.03389470651745796, 0.014750226400792599, -0.00653444416821003, -0.040459293872117996, -0.023833472281694412, -0.016331085935235023, 0.021770315244793892, -0.03855690360069275, -0.009116738103330135, -0.010121522471308708, -0.012419127859175205, -0.003148322692140937, -0.005027268547564745, -0.003999039530754089, -0.007777026854455471, -0.012633481994271278, 0.017175104469060898, 0.0033342076931148767, -0.0010675827506929636, 0.030813369899988174, -0.01953299716114998, 0.02424878254532814, 0.016706205904483795, 0.01483060885220766, 0.04782770946621895, 0.001840429031290114, -0.030920546501874924, 0.013537786900997162, -0.0019392328104004264, 0.0010056211613118649, -0.01389281079173088, -0.024128207936882973, 0.03694925084710121, -0.006464109290391207, 0.014951183460652828, 0.0016830129316076636, 0.02613777667284012, -0.009518652223050594, 0.004330618306994438, 0.017898548394441605, -0.003908609040081501, -0.01241242978721857, -0.026553086936473846, -0.01433491613715887, 0.0032806191593408585, 0.0032889924477785826, 0.02869662642478943, -0.026955001056194305, -0.0019425820792093873, -0.002582294400781393, 0.001315429457463324, 0.018796155229210854, -0.013758840039372444, -0.0009059800649993122, -0.01744304783642292, 0.014656446874141693, -0.020189456641674042, 0.014937786385416985, 0.02502581477165222, -0.005827746354043484, 0.004173201974481344, 0.011354057118296623, 0.003744494402781129, -0.019693762063980103, 0.023002851754426956, 0.009136834181845188, 0.028241124004125595, -0.03220666944980621, 0.0028083708602935076, 0.023498544469475746, 0.008172241970896721, -0.01765740104019642, -0.023096630349755287, -0.02532055228948593, 0.025199977681040764, -0.022132039070129395, -0.0037645900156348944, 0.024288974702358246, -0.009900470264256, -0.002041385741904378, 0.0033844467252492905, 0.01951960101723671, 0.019291849806904793, 0.00306961452588439, 0.043540630489587784, 0.01646505668759346, -0.00492679001763463, -0.00298085855320096, 0.015406684949994087, -0.011668889783322811, -0.005844492465257645, -0.014107164926826954, 7.504479435738176e-05, 1.801546022761613e-05, 0.0034665041603147984, -0.0018019123235717416, -0.033278439193964005, 0.0027665048837661743, 0.039467908442020416, -0.021033475175499916, 0.003536839038133621, -0.007770328316837549, -0.033573176711797714, 0.002992581110447645, 0.03609183430671692, -0.017590414732694626, 0.020363619551062584, -0.004256933927536011, 0.023230601102113724, -0.012010515667498112, 0.02277510054409504, -0.010737789794802666, 0.008399992249906063, -0.011193291284143925, 0.02021625079214573, 0.03293011337518692, 0.024972226470708847, -0.01832725666463375, -0.0020916250068694353, -0.0008092696079984307, -0.015594244934618473, -0.006507650017738342, 0.030599016696214676, 0.0037043029442429543, 0.01000764686614275, -0.005636837333440781, 0.015835393220186234, 0.009210518561303616, 0.013283242471516132, -0.013785634189844131, 0.002779901959002018, 0.0013891136040911078, 0.017885152250528336, 0.011990420520305634, -0.0038248770870268345, -0.023739691823720932, -0.014977977611124516, -0.008741619065403938, -0.04035211727023125, 0.000901793478988111, -0.022520555183291435, -0.001344735617749393, -0.01685357466340065, 0.005476071964949369, -0.004538273438811302, -0.012137788347899914, -0.030599016696214676, 0.012814342975616455, 0.006537793204188347, -0.02424878254532814, 0.017108120024204254, 0.018769361078739166, -0.030813369899988174, 0.01854160986840725, 0.02140859328210354, -0.029125332832336426, -0.0007682409486733377, 0.01823347620666027, -0.007864108309149742, -0.036922454833984375, 0.004246886353939772, 0.008466978557407856, 0.0004705737519543618, 0.03635977581143379, -0.016384674236178398, 0.002965786959975958, 0.010577023960649967, -0.0049937753938138485, 0.0036540639121085405, 0.010483244433999062, -0.00470908684656024, 0.01697414740920067, -0.012104296125471592, -0.01369855273514986, 0.013470801524817944, -0.00882870052009821, -0.028509065508842468, -0.0003319973184261471, 0.006055497098714113, 0.03303729370236397, -0.0003052030806429684, 0.01894352398812771, 0.003613872453570366, -0.006417219527065754, 0.010871760547161102, 0.005335402209311724, 0.009290901012718678, 0.022051654756069183, 0.014509078115224838, 0.002470093546435237, 0.004615306854248047, 0.006313391495496035, 0.03788704797625542, -0.006149277091026306, 0.00335262855514884, -0.030732987448573112, 0.004755976609885693, 0.00025370792718604207, 0.02562868595123291, -0.00682583125308156, -0.010617216117680073, -0.03153681382536888, -0.0037645900156348944, -0.013812428340315819, 0.01894352398812771, 0.024208592250943184, -0.005392340011894703, 0.015487068332731724, -0.010536832734942436, 0.001680500921793282, 0.019653571769595146, -0.007917696610093117, 0.01164209470152855, -0.010764583945274353, -0.002411481225863099, -0.007020089775323868, 0.006253104656934738, 0.0319119356572628, 0.020470796152949333, 0.0009620804921723902, 0.022051654756069183, -0.007375113200396299, -0.006109085399657488, 0.0019023907370865345, -0.004270331002771854, 0.011099511757493019, 0.016049746423959732, -0.010322479531168938, 0.02562868595123291, -0.03794063627719879, -0.011307166889309883, 0.010141617618501186, 0.021355004981160164, -0.017309075221419334, -0.008466978557407856, 0.009177025407552719, 0.017416253685951233, 0.003670810256153345, 0.018608596175909042, 0.01795213669538498, -0.007468893192708492, -0.006350233685225248, -0.006541142705827951, -0.01813969761133194, -0.0007615424110554159, -0.03577030450105667, 0.003811480011790991, 0.016304291784763336, 0.01795213669538498, 0.021810507401823997, 0.0064071714878082275, 0.002835165010765195, 0.020551178604364395, 0.008406691253185272, 0.05254349485039711, -0.00823922734707594, 0.009907168336212635, 0.004598560743033886, -0.006504300516098738, -0.031885139644145966, -0.021649742498993874, 0.002339471597224474, 0.009337791241705418, -0.009377982467412949, -0.008413390256464481, 0.010168411768972874, 0.0027028685435652733, 0.0027263134252279997, 0.0045248763635754585, 0.004970330744981766, -0.011709081009030342, -0.01675979420542717, 0.027464091777801514, 0.010510038584470749, -0.0015557402512058616, -0.014576063491404057, -0.02534734643995762, -0.0018504768377169967, -0.005780856125056744, 0.03394829481840134, -0.018019123002886772, -0.004987076856195927, 0.029795190319418907, -0.006105736363679171, -0.007870806381106377, 0.0019409074448049068, 0.027946386486291885, -0.01714831031858921, 0.03812819719314575, -0.008091858588159084, 0.018354050815105438, 0.017000941559672356, -0.010684201493859291, 0.018260270357131958, 0.013758840039372444, -0.009538747370243073, -0.010958842001855373, -0.0034665041603147984, 0.01341051422059536, -0.016893764957785606, -0.020283235237002373, -0.02866983227431774, -0.005854540504515171, -0.007321524899452925, 0.011682286858558655, 0.010389464907348156, -0.01795213669538498, 0.012198075652122498, 0.027678444981575012, -0.01138085126876831, -0.020363619551062584, -0.0017650702502578497, -0.027624856680631638, -0.009049752727150917, 0.11585827171802521, 0.025575097650289536, -0.015473670326173306, 0.005462674889713526, -0.004752627573907375, 0.016813382506370544, -0.020256441086530685, -0.02710236795246601, 0.034752123057842255, 0.012646879069507122, 0.008621045388281345, -0.017764577642083168, 0.03057222254574299, -0.003305738791823387, -0.009337791241705418, -0.0028184186667203903, -0.018555007874965668, 0.003257174277678132, -0.002332773059606552, -0.0011153100058436394, -0.013986590318381786, 0.010456450283527374, 0.025856437161564827, 0.00887559074908495, -0.027276530861854553, -0.008895685896277428, 0.03065260499715805, -0.0074621946550905704, 0.009398077614605427, -0.008312911726534367, -0.023110028356313705, 0.028455477207899094, 0.018220080062747, 0.028455477207899094, -0.021127253770828247, -0.00028531672433018684, -0.01059042103588581, 0.016344483941793442, -0.015058360062539577, -0.001192343421280384, 0.010242096148431301, 0.015085154213011265, 0.006504300516098738, -0.014629652723670006, 0.0004906694521196187, 0.007455496117472649, -0.016237307339906693, -0.00897606834769249, -0.031215284019708633, -0.007174156606197357, 0.03057222254574299, -0.005455976352095604, -0.032688967883586884, -0.011963626369833946, 0.005660281982272863, -9.550679351377767e-06, -0.010637311264872551, -0.0035669824574142694, -0.010771282948553562, 0.017590414732694626, -0.0044612400233745575, 0.011856448836624622, 0.022600937634706497, 0.006269851233810186, -0.018086109310388565, -0.026673661544919014, -0.031295668333768845, -0.03035786747932434, -0.01615692302584648, 0.01951960101723671, -0.015634436160326004, -0.00482966098934412, -0.0200152937322855, 0.02081912010908127, 0.005338751245290041, 0.012740658596158028, 0.01118659321218729, 0.0013681806158274412, 0.00866793468594551, -0.02010907419025898, -0.012546400539577007, -0.026955001056194305, 0.014844005927443504, -0.015219125896692276, -0.03116169571876526, 0.0050172205083072186, -0.0024868398904800415, 0.025079404935240746, -0.018956921994686127, 0.006507650017738342, -0.0024533472023904324, 0.009391379542648792, 0.01894352398812771, -0.019064098596572876, 0.003371049650013447, -0.006778941489756107, -0.0008046643924899399, -0.016089938580989838, -0.016518646851181984, -0.012204773724079132, 0.003911958541721106, -0.02818753570318222, -0.00374784367159009, -0.001840429031290114, 0.007288031745702028, -0.006594731006771326, 0.0065511902794241905, 0.02387366257607937, -0.024677490815520287, -0.014026782475411892, 0.0061124349012970924, -0.03124207817018032, -0.0025102850049734116, 0.014924389310181141, 0.006497601978480816, 0.011367454193532467, 0.018997112289071083, 0.017684195190668106, 0.01578180491924286, -0.011628697626292706, 0.004936837591230869, -0.029527246952056885, 0.010724392719566822, 0.006598080508410931, -0.017871754243969917, -0.006926309783011675, 0.0032822939101606607, -0.012090899050235748, 0.03330523520708084, 0.02611098252236843, 7.313465630431892e-06, -0.004431096836924553, 0.010684201493859291, -0.007087075151503086, -0.04675593972206116, 0.0003966802905779332, -0.01005453709512949, 0.001523922081105411, -0.03132246062159538, 0.013906207866966724, -0.013631567358970642, -0.022627731785178185, -0.0011127981124445796, -0.04525546357035637, -0.009974153712391853, -0.026459306478500366, -0.01815309375524521, 0.007971284911036491, 0.0017600463470444083, -0.007817218080163002, -0.011273674666881561, -0.029152126982808113, -0.026794234290719032, -0.0035837290342897177, 0.001672965008765459, -0.022413378581404686, 0.0009729656740091741, -0.01134066004306078, 0.038878433406353, 0.007154060993343592, 0.019760748371481895, -0.024999020621180534, 0.005898081231862307, 0.005412435624748468, 0.003938752692192793, -0.007562672719359398, -0.006722003687173128, -0.03855690360069275, -0.028562653809785843, -0.018688978627324104, 0.04110235720872879, 0.023806678131222725, 0.017496636137366295, 0.004367460496723652, -0.004002389032393694, 0.042147330939769745, -0.003077987814322114, 0.004374159034341574, -0.01823347620666027, -0.0461396723985672, -0.02466409280896187, -5.3562303946819156e-05, 0.001300357747823, -0.009331092238426208, -0.011501425877213478, 0.014844005927443504, 0.054472681134939194, -0.0015046637272462249, 0.005402387585490942, -0.007964586839079857, -0.005991860758513212, -0.021247828379273415, 0.03381432592868805, -0.011066019535064697, 0.02976839430630207, -0.018662184476852417, 0.0253339484333992, -0.0009696164052002132, 0.012506209313869476, 0.00045633933041244745, 0.017000941559672356, 0.009793292731046677, 0.0005116024403832853, -0.006524396128952503, -0.017644003033638, 0.0018253573216497898, -0.017108120024204254, -0.024021031334996223, 0.01000764686614275, -0.027142560109496117, -0.01871577277779579, -0.008333006873726845, 0.010784680023789406, -0.023726295679807663, -0.0059148273430764675, -0.005221526604145765, 0.018394242972135544, -0.0014410275034606457, -0.0021284669637680054, -0.017858358100056648, 0.0023645912297070026, -0.01424113567918539, 0.04257604107260704, 0.016491850838065147, 0.022842084988951683, 0.021154047921299934, -0.008185639046132565, 0.008306212723255157, -0.008734920993447304, -0.0153798907995224, -0.005509564653038979, 0.0475061796605587, -0.002056457567960024, -0.006892817094922066, 0.004672244656831026, -0.01942582055926323, -0.006886118557304144, -0.03145643323659897, -0.011628697626292706, 0.0008502983255311847, 0.00222894549369812, -0.03220666944980621, 0.011816257610917091, 0.006758845876902342, -0.027973180636763573, 0.023686103522777557, 0.0044210487976670265, 0.02611098252236843, -0.024798065423965454, -0.013510992750525475, -0.02553490549325943, 0.021529167890548706, 0.0091100400313735, 0.02789279818534851, 0.014428695663809776, -0.009130135178565979, -0.040378913283348083, -0.018193285912275314, -0.02621815912425518, -0.011916736140847206, 0.0049535841681063175, 0.012774151749908924, 0.004049278795719147, 0.026204761117696762, 0.013691853731870651, -0.015808599069714546, -0.007375113200396299, -0.0010675827506929636, -0.02966121770441532, 0.025467921048402786, -0.001251793117262423, 0.0145894605666399, 0.007944490760564804, 0.012271760031580925, 0.009083245880901814, -0.0029038251377642155, -0.006906214170157909, 0.014522475190460682, -0.03818178549408913, -0.016840176656842232, 0.007696643937379122, 0.00564688490703702, -0.0005350473802536726, -0.012606687843799591, -0.011675587855279446, -0.0019995197653770447, 0.002053108299151063, 0.017858358100056648, 0.004045929294079542, -0.03469853475689888, -0.025615287944674492, 0.003734446596354246, -0.03156360983848572, 0.016813382506370544, -0.018287066370248795, 0.015446876175701618, -0.002295931102707982, 0.021113857626914978, -0.026204761117696762, 0.03343920409679413, -0.02041720785200596, 0.023619119077920914, -0.04187938943505287, 0.003409566357731819, 0.01844783127307892, -0.02198467031121254, 0.024489931762218475, -0.011481329798698425, -0.015299508348107338, 0.016089938580989838, 0.02237318642437458, 0.00473253196105361, 0.0037612407468259335, 0.022694716230034828, -0.013624868355691433, -0.002332773059606552, 0.03282293677330017, -0.005904779769480228, -0.04879230260848999, 0.013618170283734798, 0.02958083525300026, -0.008862193673849106, 0.00852056685835123, -0.013296639546751976, 0.02907174453139305, 0.011541617102921009, 0.02305644005537033, 0.003257174277678132, -0.03930714353919029, 0.00808516051620245, -0.01444209273904562, 0.02899136207997799, 0.007877505384385586, -0.008158844895660877, -0.008788509294390678, -0.01713491417467594, -0.007113869301974773, 0.0018421036656945944, -0.00606554513797164, -0.013906207866966724, 0.028535859659314156, -0.004521527327597141, -0.00702678831294179, -0.003513394156470895, -0.0096124317497015, -9.701135240902659e-06, 0.016009556129574776, 0.0073684146627783775, -0.04099518060684204, -0.011809559538960457, -0.00980668980628252, 0.040084175765514374, -0.0063033439218997955, -0.020765531808137894, -0.0027480837889015675, -0.019184673205018044, -0.024208592250943184, -0.024516725912690163, -0.009284202009439468, 0.020283235237002373, 0.033385615795850754, 0.010630613192915916, 0.014107164926826954, 0.0325549952685833, -0.012546400539577007, -0.0003648621204774827, 0.0038215278182178736, -0.012492812238633633, -0.01734926737844944, -0.010757884941995144, 0.00034790640347637236, 0.02178371325135231, -0.032394230365753174, 0.0018772711046040058, 0.02662007324397564, 0.002850236836820841, 0.005656932946294546, 0.0057473634369671345, 0.0048497566021978855, 0.014924389310181141, -0.009525350295007229, 0.004136360250413418, 0.023980841040611267, 0.02051098644733429, -0.007549275644123554, -0.014535872265696526, -0.006068894173949957, -0.0020145915914326906, -0.013691853731870651, -0.014495681039988995, -0.03274255618453026, -0.00042849843157455325, -0.011159799061715603, -0.00016987125854939222, -0.021636344492435455, 0.0008649514056742191, -0.02799997478723526, -0.01578180491924286, 0.03437700495123863, -0.00557320099323988, 0.0027447345200926065, 0.015795201063156128, -0.0037009536754339933, -0.013464103452861309, 0.0068358792923390865, 0.01567462831735611, 0.016009556129574776, -0.025695672258734703, 0.008513867855072021, -0.042629629373550415, 0.006926309783011675, -0.006933008320629597, 0.007562672719359398, -0.0075760697945952415, 0.021033475175499916, -0.006698558572679758, 0.002533729886636138, -0.01894352398812771, 0.025374140590429306, 0.02700858935713768, -0.013370322994887829, -0.009089943952858448, -0.01039616297930479, -0.004605259280651808, -0.001237558783032, -0.019479408860206604, -0.007582768332213163, 0.009143533185124397, 0.015647834166884422, -0.012218170799314976, 0.000784150033723563, -0.013450706377625465, -0.014361710287630558, 0.007442098576575518, -0.027624856680631638, -0.00887559074908495, 0.2142467051744461, -0.009270804934203625, 0.02002868987619877, 0.010516737587749958, 0.010108125396072865, 0.00813205074518919, 0.017670797184109688, 0.0013514342717826366, -0.015460273250937462, -0.014013385400176048, -0.005295210517942905, 0.026244953274726868, -0.013343528844416142, 0.005877985153347254, -0.0035971261095255613, -0.01335022784769535, -0.04999804124236107, -0.009947359561920166, -0.002187079517170787, -0.05808990076184273, 0.0054861195385456085, -0.01030908152461052, -0.014133959077298641, -0.012787548825144768, 0.014026782475411892, 0.009873675182461739, -0.025977011770009995, -0.014576063491404057, 0.030625810846686363, -0.0028787057381123304, -0.04048608988523483, -0.008312911726534367, -0.009250709787011147, -0.0036574131809175014, -0.019064098596572876, -0.008822001516819, 0.0035234419628977776, 0.0050574117340147495, 0.010737789794802666, -0.019800940528512, 0.0055263107642531395, -0.005660281982272863, 0.0010232048807665706, -0.0037310973275452852, 0.008580854162573814, 0.025280360132455826, -0.013015300035476685, 0.0005978463450446725, -0.010570325888693333, 0.01479041762650013, -0.015326302498579025, 0.009424871765077114, 0.050212398171424866, 0.01685357466340065, -0.0005157890263944864, -0.019251657649874687, -0.0030495189130306244, 0.004280379042029381, -0.01655883714556694, 0.002086600987240672, -0.032072700560092926, 0.013028697110712528, 0.01020860392600298, 0.03587748110294342, -0.01844783127307892, 0.030331073328852654, -0.01724209077656269, 0.0022473663557320833, 0.017603812739253044, -0.026794234290719032, 0.01039616297930479, -0.024101413786411285, -0.008466978557407856, -0.003674159524962306, -0.009592336602509022, -0.0027698541525751352, 0.025762656703591347, -0.013122476637363434, 0.000670693174470216, -0.007113869301974773, 0.015406684949994087, -0.002120093908160925, 0.029821984469890594, -0.009692814201116562, -0.00010916557221207768, -0.021435387432575226, -0.006758845876902342, -0.0012501184828579426, -0.009029657579958439, 0.005191382952034473, -0.022199023514986038, -0.0307597815990448, -0.012110994197428226, -0.020725341513752937, 0.0013623193372040987, -0.029929161071777344, 0.018313860520720482, 0.009558843448758125, -0.004059326834976673, 0.0012099271407350898, -0.008533963933587074, -0.005938272457569838, 0.02553490549325943, 0.01921146735548973, -0.03220666944980621, 0.00048271488049067557, 0.015741612762212753, 0.00010660128464223817, 0.021515769883990288, -0.01138085126876831, 0.029795190319418907, -0.009089943952858448, 0.004568417090922594, -0.009759800508618355, 0.009967455640435219, 0.03566312789916992, -0.02525356598198414, -0.019653571769595146, -0.001776792691089213, 0.00976649858057499, 0.019077494740486145, -0.024771271273493767, -0.007716739550232887, 0.008333006873726845, -0.0010675827506929636, -0.01517893373966217, -0.01784496009349823, 0.03017030842602253, 0.0010039465269073844, -0.016089938580989838, 0.01192343421280384, -0.032688967883586884, 0.0023193759843707085, 0.005429181735962629, -0.010657407343387604, 0.011226784437894821, 0.009974153712391853, -0.01635788008570671, 0.013973193243145943, -0.014361710287630558, -0.007234443444758654, 0.007529180031269789, -0.0012576543958857656, 0.001721529639326036, 0.006289946846663952, 0.0004601072578225285, 0.0006937194848433137, -0.02601720206439495, -0.0024935384280979633, -0.018555007874965668, -0.023632515221834183, 0.004069374408572912, 0.020484192296862602, -0.013343528844416142, 0.0008247600635513663, 0.00040065753273665905, -0.01911768689751625, -0.019399026408791542, 0.0019760748837143183, 0.03901240602135658, -0.0319119356572628, 0.021529167890548706, 0.023310985416173935, -0.0236459132283926, -0.0035234419628977776, -0.02384686842560768, -0.16933956742286682, 0.0072411419823765755, 0.029527246952056885, -0.007167458068579435, 0.027571268379688263, 0.024369357153773308, 0.022145435214042664, 0.016022952273488045, -0.005934922955930233, -0.013289940543472767, 0.036440160125494, 0.03242102265357971, -0.054553061723709106, -0.0145894605666399, -0.011561712250113487, 0.005191382952034473, -0.016799984499812126, 0.008949274197220802, 0.03266217187047005, 0.018956921994686127, 0.012466018088161945, -0.004447842948138714, 0.01464304979890585, -0.009478460997343063, 0.02079232595860958, 0.005234923679381609, -0.006601429544389248, 0.018970318138599396, -0.000990549335256219, -0.021448785439133644, -0.011755970306694508, 0.009398077614605427, 0.015406684949994087, -0.02158275619149208, 0.024288974702358246, 0.006145927589386702, -0.00510430196300149, -0.00813205074518919, 0.00670525711029768, 0.02168993279337883, 0.015527259558439255, 6.835931344539858e-06, 0.02947365865111351, 0.021663138642907143, 0.0008322959183715284, 0.04664876312017441, -0.0050473641604185104, -0.013517691753804684, -0.0018119601299986243, -0.020631561055779457, 0.009391379542648792, 0.007113869301974773, 0.0025873184204101562, 0.007187553681433201, 0.033358823508024216, 0.00026940766838379204, -0.0035971261095255613, 0.011347358115017414, -0.02178371325135231, -0.015996158123016357, 0.007951188832521439, -0.006457410752773285, 0.02662007324397564, -0.022627731785178185, 0.005131096113473177, -0.006785640027374029, -0.009947359561920166, 0.01172917615622282, -0.005764110013842583, 0.0011688985396176577, 0.007013391237705946, 0.010757884941995144, 0.030384663492441177, -0.021529167890548706, -0.008741619065403938, -0.014964580535888672, -0.03293011337518692, 0.02395404689013958, -0.021247828379273415, -0.01499137468636036, -0.04163824021816254, 0.032287053763866425, -0.007348319049924612, -0.010818172246217728, -0.0023763137869536877, 0.01142774149775505, -0.014375107362866402, -0.01596936397254467, -0.01863539032638073, -0.014750226400792599, 0.01271386444568634, -0.01114640198647976, -0.028133947402238846, -0.006152626127004623, 0.0074086058884859085, 0.007984681986272335, 0.028348300606012344, -0.008252624422311783, -0.0017818165943026543, 0.0019727256149053574, 0.006799037102609873, -0.014482283964753151, -0.012733960524201393, 0.025119595229625702, 0.03989661484956741, 0.01844783127307892, 0.0035334897693246603, -0.009324394166469574, 0.03330523520708084, 0.014080370776355267, -0.013377021998167038, 0.022909071296453476, 0.019894719123840332, 0.0035803797654807568, 0.026780838146805763, 0.033573176711797714, -0.005013871472328901, -0.011159799061715603, 0.022748306393623352, -0.025776054710149765, 0.06462769210338593, -0.013497595675289631, -0.010362670756876469, 0.004856455139815807, -0.010623914189636707, -0.02741050161421299, -0.11028507351875305, 0.008882288821041584, 0.03630618751049042, 0.005415784660726786, 0.006467458326369524, 0.0040559773333370686, -0.009210518561303616, 0.01627749763429165, -0.01832725666463375, -0.003002628916874528, -0.02483825571835041, -0.04029852896928787, 0.007207649294286966, -0.002783251227810979, 0.001867223298177123, -0.026392322033643723, 0.0014770322013646364, -0.026754043996334076, 0.0045650675892829895, 0.02663346938788891, 0.021730124950408936, -0.034939683973789215, 0.011528220027685165, -0.02808035910129547, 0.028803803026676178, -0.0031734423246234655, -0.030411457642912865, 0.015058360062539577, 0.013812428340315819, 0.018273668363690376, -0.01290812250226736, -0.002213873667642474, 0.028241124004125595, -0.01035597175359726, 0.001657893299125135, -0.015433479100465775, -0.042254507541656494, -0.01793874055147171, 0.020189456641674042, -0.027249736711382866, 0.015460273250937462, -0.0034078918397426605, 0.026191364973783493, -0.02010907419025898, 0.007944490760564804, 0.0009051427477970719, -0.01099233515560627, 0.004873201716691256, 0.02217222936451435, -0.010664105415344238, -0.03341241180896759, 0.0050574117340147495, -0.02652629278600216, -0.017603812739253044, 0.03137604892253876, -0.007763629779219627, 0.033358823508024216, 0.006919611245393753, -0.019841130822896957, -0.0011638746364042163, -0.02829471230506897, 0.014120562002062798, -0.0024265528190881014, 0.02958083525300026, 0.009927264414727688, -0.0030830116011202335, 0.0047861202619969845, -0.014482283964753151, 0.019894719123840332, 0.004776072222739458, -0.008734920993447304, -0.0026961700059473515, -0.029420070350170135, 0.03132246062159538, -0.01793874055147171, 0.012090899050235748, -0.029125332832336426, -0.0046287039294838905, 0.020765531808137894, -0.0016553812893107533, -0.004477986600250006, -0.020953092724084854, -0.005730616860091686, -0.00931099709123373, 0.011320563964545727, 0.0137454429641366, 2.07629163924139e-05, -0.018863141536712646, 0.004210044164210558, -0.009250709787011147, -0.0048263114877045155, 0.025374140590429306, -0.003935403190553188, -0.023833472281694412, 0.004886598791927099, 0.04013776406645775, 0.03512724116444588, 0.0032052602618932724, -0.015500465407967567, -0.0014100465923547745, -0.009331092238426208, 0.01606314443051815, -0.057714782655239105, 0.02581624500453472, -0.0024901891592890024, 0.01055022981017828, -0.001263515674509108, -0.0018488022033125162, 0.02909853868186474, -0.025856437161564827, 0.0007900112541392446, 0.007401907350867987, -0.009954058565199375, 0.021060269325971603, -0.013524389825761318, -0.011441138572990894, -0.020189456641674042, -0.01331003662198782, 0.012559797614812851, -0.012218170799314976, -0.004256933927536011, 0.0019074146402999759, 0.02039041370153427, 0.00398899195715785, 0.019104288890957832, -0.0059784636832773685, -0.03148322552442551, 0.00453157490119338, -0.009880374185740948, 0.021810507401823997, 0.0027999975718557835, -0.01815309375524521, 0.010657407343387604, -0.023793280124664307, -0.012841137126088142, -0.0019392328104004264, 0.011025827378034592, 0.015192331746220589, -0.03673489764332771, -0.009257407858967781, -0.002820093184709549, 0.03786025568842888, -0.01433491613715887, -0.02603060007095337, 0.008219131268560886, -0.025789450854063034, 0.017416253685951233, 0.030197102576494217, -0.02858944796025753, 0.002227270742878318, 0.014254532754421234, -0.015701422467827797, 0.012218170799314976, 0.024007635191082954, 0.0047459290362894535, -0.03595786169171333, 0.009471761994063854, -0.029125332832336426, 0.02995595522224903, -0.012224869802594185, 0.0003677927306853235, -0.03116169571876526, 0.014348313212394714, -0.00980668980628252, 0.0016034675063565373, 0.0026258351281285286, 0.015286111272871494, -0.000191955579794012, -0.007696643937379122, -0.02473107911646366, -0.009974153712391853, -0.02403442934155464, 0.003124877577647567, 0.008768413215875626, 0.0017717687878757715, 0.005325354170054197, 0.024409547448158264, 0.03185834735631943, -0.0038315756246447563, 0.011635396629571915, -0.034162648022174835, 0.0029272702522575855, -0.024958830326795578, -0.015487068332731724, -0.04463919624686241, -0.004488034173846245, 0.01842103712260723, -0.00028531672433018684, 0.004558369051665068, 0.01385261956602335, -0.005040665622800589, 0.019867924973368645, 0.025601891800761223, -0.008560758084058762, 0.004256933927536011, -0.00623635808005929, 0.005328703671693802, 0.013356925919651985, -0.017108120024204254, -0.001367343356832862, 0.022708114236593246, 0.04595211148262024, -0.01872917078435421, 0.005449277348816395, 0.01893012784421444, -0.014321519061923027, -0.005164588801562786, -0.002727988176047802, -0.026874618604779243, -0.0036976044066250324, 0.0027363612316548824, 0.019573189318180084, 0.003026074031367898, 0.004910043440759182, 0.022145435214042664, 0.02741050161421299, -0.005804301239550114, -0.0004814589046873152, 0.01271386444568634, -0.004983727820217609, 0.0010684201261028647, 0.033573176711797714, 0.018755964934825897, 0.030116720125079155, 0.02167653664946556, 0.020189456641674042, 0.01959998346865177, 0.0161703210324049, 0.00902295857667923, 0.02643251232802868, 0.0026743996422737837, 0.010449751280248165, 0.004481335636228323, -0.01399998739361763, -0.028026770800352097, -0.013470801524817944, 0.014348313212394714, -0.04217412695288658, -0.0073282234370708466, 0.002470093546435237, -0.02968801185488701, 0.02869662642478943, 0.01365166250616312, -0.010952143929898739, -0.001024879515171051, -0.0030461696442216635, 0.019760748371481895, 0.007180855143815279, 0.003320810617879033, 0.0022942563518881798, -0.018568404018878937, 0.01000764686614275, -0.0069397068582475185, 0.015058360062539577, -0.013289940543472767, -0.007274634670466185, 0.014468886889517307, 0.00941147468984127, 0.03164399042725563, -0.02435595914721489, -0.01756362058222294, 0.030009543523192406, 0.0002953645889647305, 0.017201898619532585, -0.008272720500826836, 0.010623914189636707, -0.000443360855570063, 0.02288227714598179, -0.0038248770870268345, -0.002838514279574156, -0.0339215025305748, 0.0018002376891672611, 0.016907162964344025, -0.01765740104019642, -0.0018822950078174472, 0.015446876175701618, 0.004223441239446402, -0.004066025372594595, -0.029848778620362282, 0.02278849668800831, 0.004769373685121536, -0.0024315768387168646, 0.02483825571835041, -0.01365836150944233, -0.014803814701735973, 0.007509084418416023, -0.0010776306735351682, -0.01217128150165081, -0.005760760512202978, -0.02248036302626133], "e2204911-729c-4071-a5a9-d0929f7624b9": [-0.0076552764512598515, -0.023930221796035767, -0.004073724616318941, 0.01301596499979496, -0.027561655268073082, 0.022533515468239784, -0.019753405824303627, -0.017066411674022675, -0.02750844694674015, -0.00973703246563673, 0.01488489005714655, 0.003937379457056522, 0.020524920895695686, 0.009271464310586452, -0.00568658672273159, 0.0020701170433312654, 0.03131280839443207, -0.006757394410669804, 0.03886831924319267, -0.013501486741006374, -0.0014100074768066406, -0.011971761472523212, -0.017186129465699196, 0.03227054700255394, 0.0012453957460820675, 0.045466091483831406, 0.021442756056785583, -0.01060166023671627, 0.021868417039513588, -0.018995195627212524, 0.006777347065508366, 0.014552341774106026, 0.012044922448694706, -0.004838586784899235, -0.02854599989950657, 0.00032880777143873274, 0.011233502998948097, -0.012197894975543022, 0.014086772687733173, -0.0079678725451231, 0.014020263217389584, 0.012696717865765095, -0.013102428056299686, 8.750193956075236e-05, -0.0297697801142931, 0.016521031036973, 0.007282821461558342, -0.021043697372078896, -0.03027525544166565, 0.026244761422276497, 0.03314847871661186, 0.005004861392080784, -0.01856953278183937, -0.001126509509049356, -0.024448998272418976, -0.005613426212221384, 0.007083292119204998, 0.03748491406440735, -0.01825028471648693, 0.01201831828802824, 0.01606876403093338, -0.004895120393484831, -0.0005682429764419794, 0.010042977519333363, -0.035702452063560486, -0.013807431794703007, -0.01294945552945137, -0.0063051278702914715, -0.0037245480343699455, -0.011632561683654785, 0.03128620237112045, 0.014991305768489838, -0.0009843448642641306, 0.013900545425713062, 0.03131280839443207, -0.02281285636126995, -0.02153586968779564, -0.018662646412849426, -0.028758831322193146, 0.011566052213311195, -0.011745627969503403, -0.038655489683151245, -0.009703777730464935, 0.008593064732849598, 0.02229407988488674, -0.02256011962890625, 0.0159357450902462, 0.023305028676986694, -0.03200450912117958, -0.014698662795126438, 0.014898192137479782, 0.027561655268073082, 0.00738923717290163, 0.0011830428848043084, 0.003920752089470625, 0.00860636681318283, -0.022453704848885536, 0.014326208271086216, -0.013847338035702705, -0.019846519455313683, -0.005769724026322365, 0.0007419998291879892, -0.022719742730259895, 0.0004518508503679186, -0.028439585119485855, 0.017119619995355606, -0.017585188150405884, -0.006641002371907234, 0.022892668843269348, -0.01429960411041975, -0.012869643978774548, 0.01665404997766018, -0.027082785964012146, -0.04150210693478584, -0.01488489005714655, -0.021416151896119118, 0.009890004992485046, -0.024076541885733604, -0.024448998272418976, -0.01143968291580677, 0.0037012696266174316, 0.005666633602231741, -0.006132202222943306, -0.0053041554056108, 0.008233911357820034, -0.0021050346549600363, 0.008267166092991829, -0.04011870175600052, -0.006917017977684736, 0.003220736514776945, 0.043603815138339996, 0.014406019821763039, -0.0027584934141486883, -0.011552750132977962, -0.010269111022353172, 0.018476419150829315, -0.034159425646066666, -0.0018705877009779215, -0.018276888877153397, -0.015177533030509949, 0.0123708201572299, 0.016028858721256256, -0.0006468076608143747, -0.04099663347005844, -0.02403663657605648, 0.017252638936042786, 0.023371538147330284, 0.009284766390919685, -0.03487773239612579, 0.0003957332228310406, 0.012776530347764492, -0.00925816223025322, 0.02648419700562954, -0.017438866198062897, 0.035329997539520264, 0.0002841214882209897, 0.0064248451963067055, 0.005018163472414017, -0.0029763130005449057, 0.0003984351933468133, 0.019833218306303024, 0.01260360423475504, 0.009850099682807922, -0.002326179761439562, -0.001101568341255188, 0.03362734988331795, 0.005014837719500065, 0.0015679681673645973, -0.026204856112599373, -0.007043386343866587, 0.02712269127368927, 0.02777448669075966, -0.013541392982006073, 0.008619667962193489, -0.009637268260121346, 0.004968280903995037, 0.03250998258590698, 0.013188891112804413, -0.01231096126139164, 0.0016328152269124985, -0.038469262421131134, -0.015430270694196224, 0.010362224653363228, 0.02673693373799324, -0.01588253676891327, -0.009138444438576698, -0.020923979580402374, -0.008493299596011639, -0.0001465293753426522, 0.015988953411579132, 0.01947406493127346, 0.007675229571759701, -0.012071526609361172, -0.02256011962890625, -0.6372169852256775, -0.020485013723373413, -0.021442756056785583, -0.027561655268073082, -0.021628983318805695, -0.010721378028392792, 0.005919370800256729, 0.015350459143519402, -0.0037012696266174316, -0.007661927491426468, -0.024528808891773224, 0.00010179114906350151, -0.019886426627635956, -0.029530344530940056, -0.025752589106559753, -0.00803438201546669, 0.03548962250351906, -0.03314847871661186, -0.01475187111645937, -0.02197483368217945, -0.012291008606553078, 0.0029098030645400286, 0.004971606656908989, 0.005460453685373068, -0.007628672756254673, -0.012111431919038296, 0.0280139222741127, -0.005001536104828119, 0.0026204856112599373, 0.033520933240652084, -0.021961530670523643, 0.020551523193717003, 0.016600843518972397, 0.01908830925822258, 0.052808769047260284, -0.0035283442120999098, -0.036606986075639725, 0.021043697372078896, 0.014139981009066105, 0.003538320539519191, -0.00913179386407137, -0.031844884157180786, 0.026430988684296608, -0.009357927367091179, 0.008167401887476444, 0.002103372011333704, 0.02571268379688263, -0.007369284518063068, 0.004126932471990585, 0.016893485561013222, -0.002741866046562791, -0.009278114885091782, -0.038974735885858536, -0.026630518957972527, 0.0004988234140910208, -0.0014623838942497969, 0.03748491406440735, -0.029530344530940056, -0.0010408781236037612, -0.003907450009137392, 0.004449504893273115, 0.018476419150829315, -0.013727620244026184, -0.01715952530503273, -0.014552341774106026, 0.0064714024774730206, -0.017718207091093063, 0.025114094838500023, 0.015549988485872746, 0.004649034235626459, 0.013701016083359718, 0.0171063169836998, -0.013162286952137947, -0.019766708835959435, 0.013122380711138248, 0.01529725082218647, 0.036420758813619614, -0.025406738743185997, -0.0173590537160635, 0.020139163359999657, 0.01153944805264473, -0.005104626063257456, -0.026071837171912193, -0.02737542800605297, 0.03078072890639305, -0.015390364453196526, 0.0021599053870886564, 0.02686995454132557, 0.005596798378974199, 0.0009086899808607996, 0.0022047993261367083, 0.00897216983139515, 0.011379824951291084, 0.01613527350127697, 0.04738157242536545, 0.015337157063186169, 0.009211605414748192, 0.0012320937821641564, 0.011266757734119892, -0.012683416716754436, -0.0013725956669077277, -0.017385657876729965, 0.005975904408842325, -0.010262460447847843, -0.008799244649708271, -0.015390364453196526, -0.03314847871661186, 0.0030128932558000088, 0.047913651913404465, -0.02686995454132557, 0.009264813736081123, -0.012862992472946644, -0.023877013474702835, 0.010388828814029694, 0.03921417146921158, -0.020657939836382866, 0.02184181474149227, -0.01359460037201643, 0.02963676117360592, -0.0170265045017004, 0.024342581629753113, -0.014578945003449917, 0.004239998757839203, -0.01400696113705635, 0.021482661366462708, 0.03349432721734047, 0.014432623982429504, -0.0013958741910755634, -0.00638161413371563, -0.021043697372078896, -0.01366110984236002, -0.013341863639652729, 0.015124325640499592, 0.0064913551323115826, 0.011047275736927986, -0.005300830118358135, 0.029796384274959564, 0.011406428180634975, 0.009012076072394848, -0.010195950046181679, -0.006238617934286594, 0.002763481577858329, 0.010914255864918232, 0.008220609277486801, -0.007675229571759701, -0.032297153025865555, -0.02923770248889923, -0.005819606129080057, -0.029024871066212654, -0.0007985331467352808, -0.015310552902519703, -0.002628799295052886, -0.003538320539519191, 0.005952626001089811, 0.01143968291580677, -0.01141307968646288, -0.032350361347198486, 0.012450631707906723, 0.0006484704208560288, -0.024249467998743057, 0.01083444431424141, 0.0015056153060868382, -0.02538013458251953, 0.018290191888809204, 0.021043697372078896, -0.014964701607823372, 0.001464046654291451, 0.01811726577579975, -0.003744500922039151, -0.04485420137643814, 0.003541646059602499, -0.0018755759811028838, -0.001867262297309935, 0.04653024673461914, -0.01465875655412674, -0.007222963031381369, -0.005244296509772539, -0.007296123541891575, 0.003066101111471653, 0.013461580500006676, -0.009856750257313251, 0.026324573904275894, -0.0170265045017004, -0.022546818479895592, 0.0230655949562788, -0.013042569160461426, 0.0004481096984818578, 0.00016554701142013073, 0.007023433689028025, 0.03386678174138069, 0.005643355194479227, 0.010182647965848446, 0.010129440575838089, -0.002893175696954131, 0.005666633602231741, 0.007602068595588207, 0.006996829528361559, 0.02005935087800026, 0.0135879497975111, 0.010149393230676651, 0.017079712823033333, 0.012856341898441315, 0.03466489911079407, -0.0051578339189291, -0.00960401352494955, -0.03200450912117958, 0.010275761596858501, -0.003468485316261649, 0.03490433469414711, -0.0060158101841807365, -0.007096594199538231, -0.037963785231113434, -0.007209660951048136, -0.02242710068821907, 0.027588259428739548, 0.01826358772814274, -0.005437175277620554, 0.0053041554056108, -0.011446334421634674, 0.007229613605886698, -0.0021998111624270678, -0.006850508041679859, 0.011619259603321552, -0.0026703679468482733, -0.008938915096223354, -0.01024915836751461, 0.016693957149982452, 0.04937686398625374, 0.020777657628059387, -0.002630462171509862, 0.017904434353113174, -0.0021466033067554235, -0.0017442191019654274, 0.004998210351914167, 0.015855932608246803, -0.010575056076049805, 0.012071526609361172, -0.01477847434580326, 0.03362734988331795, -0.045599110424518585, -0.008167401887476444, 0.01632150076329708, 0.023797200992703438, -0.01523074135184288, -0.007123198360204697, -0.0003543724596966058, 0.021003790199756622, 0.016042159870266914, 0.017398960888385773, 0.02190832421183586, -0.017438866198062897, -0.005653331987559795, -0.009983118623495102, -0.012291008606553078, -0.0025240464601665735, -0.02583240158855915, 0.003515042131766677, 0.01890208199620247, 0.005866163410246372, 0.022413797676563263, 0.0035615991801023483, 0.0001814470160752535, 0.007848154753446579, 0.01864934340119362, 0.042193807661533356, -0.0062951515428721905, 0.007309425622224808, 0.012038270942866802, -0.012038270942866802, -0.02326512336730957, -0.0320311114192009, -0.006498006172478199, 0.021961530670523643, -0.012350867502391338, -0.009929911233484745, 0.005250947549939156, 0.01218459289520979, 0.002678681630641222, 0.01400696113705635, 0.010076232254505157, -0.024063240736722946, -0.01112043671309948, 0.026750236749649048, 0.0015613172436133027, -0.0024808149319142103, -0.015097721479833126, -0.018729155883193016, 0.013927149586379528, -0.015430270694196224, 0.027721278369426727, -0.0049649556167423725, 0.012084828689694405, 0.03312187269330025, -0.0035349952522665262, -0.01588253676891327, 0.009145095944404602, 0.017332449555397034, -0.01600225456058979, 0.04352400451898575, -0.01359460037201643, 0.014738569036126137, 0.027668071910738945, -0.012756576761603355, 0.007854806259274483, 0.01972680352628231, -0.002839967841282487, -0.012463933788239956, -0.019394254311919212, -0.0016935054445639253, -0.021895021200180054, -0.0033454422373324633, -0.03189809247851372, -0.007149802055209875, -0.004645708482712507, 0.013295306824147701, 0.004126932471990585, -0.013109078630805016, 0.016095368191599846, 0.01856953278183937, 0.00586283765733242, -0.01876906119287014, 0.0009585723164491355, -0.017079712823033333, -0.00661772396415472, 0.10689453035593033, 0.03240356966853142, -0.008998773992061615, 0.005071371328085661, 0.0025124072562903166, 0.0239036176353693, -0.010741330683231354, -0.031392619013786316, 0.03469150513410568, -0.002829991513863206, 0.00867952685803175, -0.021163413301110268, 0.014898192137479782, -0.002141615143045783, -2.422670877422206e-05, 0.004067073576152325, -0.026125043630599976, 0.003189144190400839, 0.007987825199961662, -0.0067008608020842075, -0.01346823200583458, 0.005866163410246372, 0.012803133577108383, 0.018436511978507042, -0.03453188017010689, -0.008453394286334515, 0.010295715183019638, -0.0037212225142866373, 0.0123708201572299, -0.01037552673369646, -0.007003480568528175, 0.0129561061039567, 0.0170265045017004, 0.02629796974360943, -0.003428579540923238, 0.004293206613510847, -0.007269519846886396, 0.016986599192023277, -0.01018929947167635, 0.007449096068739891, 0.01137317344546318, 0.007641974370926619, -0.0012586977099999785, -0.013062521815299988, 0.0006671763258054852, 0.0041335830464959145, -0.031844884157180786, 0.002989614848047495, -0.031977906823158264, -0.005786351393908262, 0.03934719040989876, -0.005683261435478926, -0.022905969992280006, -0.011100483126938343, 0.011040624231100082, 0.009231558069586754, -0.023730691522359848, -0.002216438530012965, -0.008233911357820034, 0.013687714003026485, 0.002277960302308202, 0.011991714127361774, 0.021895021200180054, 0.00883915089070797, -0.02068454399704933, -0.027428636327385902, -0.04144889861345291, -0.019181422889232635, -0.005380641669034958, 0.010854396969079971, 0.0014083447167649865, -0.017132921144366264, -0.017013203352689743, 0.0023328308016061783, 0.005240971222519875, 0.009118491783738136, 0.018662646412849426, -0.006963574793189764, 0.004037144128233194, -0.009078585542738438, -0.0026371129788458347, -0.028040526434779167, 0.01715952530503273, -0.018675947561860085, -0.021176716312766075, 0.014419321902096272, 0.009490946307778358, 0.023664182052016258, -0.021256526932120323, 0.011000718921422958, -0.0017475446220487356, 0.016760466620326042, 0.010548451915383339, -0.019966237246990204, 0.015643101185560226, -0.008719433099031448, -0.01645452156662941, -0.008273817598819733, -0.005171135999262333, -0.011346569284796715, 0.00636166101321578, -0.04017191007733345, 0.0019121563527733088, -0.004486084915697575, 0.0023444700054824352, -0.009597362019121647, 0.005709865130484104, 0.024848056957125664, -0.014951400458812714, -0.004050446208566427, 0.004615779034793377, -0.03000921569764614, -0.015177533030509949, 0.015310552902519703, 0.02068454399704933, -0.008313722908496857, 0.007914664223790169, 0.011280059814453125, 0.02435588464140892, 0.004329787101596594, 0.00048510576016269624, -0.029344117268919945, -0.004349740222096443, 0.0017226034542545676, -0.030807333067059517, -0.012231149710714817, 0.00668423343449831, -0.015031212009489536, 0.017585188150405884, 0.00967717356979847, 0.007123198360204697, 0.0037644540425390005, 0.014445926062762737, -0.003947355784475803, -0.029131285846233368, 0.008859103545546532, -0.011652514338493347, -0.007602068595588207, -0.027668071910738945, 0.006697535514831543, -0.016108671203255653, -0.009291416965425014, 0.0020967209711670876, -0.03394659608602524, -0.005204390734434128, -0.024781545624136925, -0.026045233011245728, -0.0010965800611302257, -0.0011447997530922294, 0.0013110741274431348, -0.0008459213422611356, -0.02782769501209259, -0.020671240985393524, -0.0027219129260629416, -0.0052742259576916695, -0.019460763782262802, -0.0046091279946267605, -0.020391900092363358, 0.03729868680238724, 0.004412924405187368, 0.03213752806186676, -0.028226753696799278, 0.010841094888746738, 0.011113785207271576, -0.0013817407889291644, -0.004316485021263361, -0.010641565546393394, -0.030035819858312607, -0.03014223463833332, -0.021868417039513588, 0.03604830428957939, 0.03453188017010689, 0.010994067415595055, 0.006983527448028326, -0.0044794343411922455, 0.03131280839443207, 0.0024575365241616964, -0.009045330807566643, -0.019168119877576828, -0.0379105769097805, -0.020870771259069443, 0.004382994957268238, -0.004216720350086689, 0.00011400193034205586, -0.02287936583161354, 0.007063339464366436, 0.048232898116111755, -0.0017492073820903897, 0.009244860149919987, -0.017199430614709854, -0.006554539315402508, -0.007994476705789566, 0.024409091100096703, 0.003209097310900688, 0.012191243469715118, -0.0011946820886805654, 0.01831679604947567, -0.00638161413371563, 0.015962349250912666, -0.00967717356979847, 0.006577817723155022, -0.002279622945934534, -0.003993912599980831, -0.02236059121787548, -0.022014738991856575, 0.009870052337646484, -0.02346465364098549, -0.026404384523630142, 0.021549170836806297, -0.01774481125175953, -0.01715952530503273, -0.010302365757524967, 0.005360689014196396, -0.024954471737146378, -0.020711148157715797, -0.0028250031173229218, 0.019380951300263405, 0.006850508041679859, -0.006092296447604895, -0.007881409488618374, 0.015776121988892555, -0.011526145972311497, 0.038974735885858536, 0.02076435461640358, 0.013168937526643276, 0.011406428180634975, -0.005516986828297377, 0.013687714003026485, 0.0029746501240879297, -0.016082067042589188, -0.009211605414748192, 0.04642383009195328, 0.0025855679996311665, -0.020471712574362755, 0.013727620244026184, -0.02814694121479988, -0.001653599552810192, -0.026178251951932907, -0.020351994782686234, 0.008992123417556286, 0.010215903632342815, -0.012038270942866802, -0.009085237048566341, 0.010501895099878311, -0.034611694514751434, 0.01831679604947567, -0.0016211760230362415, 0.02905147522687912, -0.019141515716910362, -0.029290910810232162, -0.03650056943297386, 0.017784716561436653, 0.018423210829496384, 0.024768244475126266, 0.020258881151676178, -0.006335057318210602, -0.029610157012939453, -0.0007873096037656069, -0.01774481125175953, -0.018848873674869537, 0.00784150417894125, 0.03423923999071121, -0.00041734889964573085, 0.018276888877153397, 0.012051573023200035, -0.001489819260314107, -0.016986599192023277, 0.005989206489175558, -0.01640131324529648, 0.02621815726161003, 0.010295715183019638, 0.02416965737938881, 0.009451040998101234, 0.0021166738588362932, 0.01697329804301262, 0.018010850995779037, 1.4458084478974342e-05, 0.005812955554574728, -0.027082785964012146, -0.00718305679038167, 0.017438866198062897, 0.013574647717177868, 0.002728563966229558, -0.0021815209183841944, -0.022280778735876083, -0.010754632763564587, -0.0030095677357167006, 0.011007369495928288, -0.006335057318210602, -0.036873023957014084, -0.030222047120332718, -0.0009785252623260021, -0.027801090851426125, 0.016920089721679688, -0.010262460447847843, 0.02718920074403286, -0.014978003688156605, 0.016946693882346153, -0.022905969992280006, 0.03224394470453262, -0.009683825075626373, 0.020937280729413033, -0.041555315256118774, 0.012164640240371227, 0.009750334545969963, -0.021070299670100212, 0.01436611358076334, -0.011260107159614563, -0.027215804904699326, 0.008699480444192886, 0.020777657628059387, 0.013182239606976509, 0.001877238741144538, 0.020365295931696892, -0.007768343202769756, -0.0014374427264556289, 0.019553877413272858, -0.00896551925688982, -0.043098341673612595, 0.013940451666712761, 0.02737542800605297, -0.002216438530012965, 0.006823904346674681, -0.008945566602051258, 0.02244040183722973, -0.00548040634021163, 0.01793103851377964, -0.0055502415634691715, -0.026949765160679817, 0.019327744841575623, -0.0006118900491856039, 0.01967359520494938, 0.020804261788725853, -0.0008546507451683283, -0.022267475724220276, -0.018795665353536606, 0.001351811457425356, 0.011080530472099781, 0.001991968136280775, -0.019713500514626503, 0.019075006246566772, 0.014126678928732872, 0.009504248388111591, -0.006032437551766634, -0.01638801209628582, 0.005021488759666681, 0.01249718852341175, -0.014432623982429504, -0.040517762303352356, -0.0016502740327268839, -0.013701016083359718, 0.03697944059967995, -0.008879056200385094, -0.01672055944800377, -0.008080938830971718, -0.012896247208118439, -0.011393126100301743, -0.025287020951509476, -0.0007212155032902956, 0.020418504253029823, 0.04788704589009285, 0.015430270694196224, 0.009085237048566341, 0.042007580399513245, -0.015909140929579735, -0.015270646661520004, 0.013913847506046295, -0.007861456833779812, -0.012271055951714516, -0.012417376972734928, -0.0037278735544532537, 0.016920089721679688, -0.02435588464140892, 0.0017674976261332631, 0.023038990795612335, 0.0010674820514395833, 0.01024915836751461, 0.00556021835654974, 0.002751842373982072, 0.005094649735838175, -0.005842884536832571, 0.004519340116530657, 0.015244043432176113, 0.016547635197639465, -0.005603449419140816, -0.020485013723373413, -0.008539856411516666, -0.011526145972311497, -0.007375935558229685, -0.020218975841999054, -0.024582017213106155, -0.007103245239704847, -0.015377062372863293, 0.008433440700173378, -0.01400696113705635, 0.002981301164254546, -0.0214693583548069, -0.02641768753528595, 0.0384160540997982, 0.007542209699749947, -0.003396987449377775, 0.02544664405286312, 0.0004046704852953553, -0.0035349952522665262, 0.004712218418717384, 0.01928783766925335, 0.007482350803911686, -0.029849592596292496, 0.013082475401461124, -0.034611694514751434, 0.0006480547599494457, -0.004027167800813913, 0.013554694131016731, -0.009497597813606262, 0.016228387132287025, -0.005194414407014847, 0.002642101375386119, -0.01276322826743126, 0.028040526434779167, 0.021642284467816353, -0.005756421945989132, -0.011047275736927986, -0.007868107408285141, -0.005546916276216507, 0.006544562987983227, -0.008885707706212997, -0.008047684095799923, 0.016693957149982452, 0.016494426876306534, -0.007635323330760002, 0.001513928989879787, -0.021096903830766678, 0.004522665403783321, 0.010049629025161266, -0.02686995454132557, -0.008213958702981472, 0.20485013723373413, -0.0170265045017004, 0.009224907495081425, 0.010728028602898121, -0.0009003762388601899, 0.021110206842422485, 0.01217794232070446, -0.005497033707797527, -0.009816844947636127, -0.014711964875459671, -0.01858283393085003, 0.03838944807648659, -0.024861358106136322, 0.0016968309646472335, 0.01594904623925686, -0.0030527992639690638, -0.04224701598286629, -0.013860639184713364, 0.000775254680775106, -0.059220314025878906, 0.0007432468701153994, -0.0003606077516451478, -0.020857468247413635, 0.0014790113782510161, 0.009730381891131401, 0.01012279000133276, -0.025672778487205505, -0.01060166023671627, 0.031977906823158264, -0.0016436231089755893, -0.04099663347005844, -0.004908422473818064, -0.019101610407233238, 0.006288500502705574, -0.01697329804301262, -0.0007062507793307304, 0.016215085983276367, 0.003644736250862479, 0.023092197254300117, -0.01613527350127697, -0.008992123417556286, -0.010814491659402847, 0.0010566742857918143, 0.01400696113705635, -0.013607902452349663, 0.022919273003935814, -0.007808248978108168, -0.0066010961309075356, -0.025167303159832954, 0.005250947549939156, -0.0159357450902462, 0.006271872669458389, 0.05507010221481323, 0.02294587716460228, -0.0009535840945318341, -0.01915481872856617, -0.0017807995900511742, 0.012131385505199432, -0.01523074135184288, 0.018995195627212524, -0.015496780164539814, 0.028891852125525475, 0.01684027723968029, 0.03971964493393898, -0.021615680307149887, 0.01504451408982277, -0.0003589449916034937, 0.007921315729618073, 0.009085237048566341, -0.025566361844539642, 0.0007374272681772709, -0.015603195875883102, -0.0012478898279368877, -0.00825386494398117, -0.013035918585956097, -0.01307582389563322, 0.025978723540902138, -0.007362633477896452, -0.00017334113363176584, 0.007103245239704847, 0.004838586784899235, -0.0032839206978678703, 0.014539039693772793, -0.005097975023090839, -0.006674257107079029, -0.014286302030086517, -0.007735088001936674, -0.018795665353536606, -0.007249566726386547, 0.011612609028816223, -0.01047529187053442, -0.02841298095881939, -0.0033986500930041075, -0.013182239606976509, -0.0060058338567614555, -0.024914566427469254, 0.019460763782262802, 0.009969817474484444, 0.002026885747909546, -0.011333267204463482, -0.008240562863647938, -0.01082779373973608, 0.018662646412849426, 0.0010791212553158402, -0.024395789951086044, -0.014765172265470028, 0.0161884818226099, -0.0005578508134931326, 0.014725266955792904, -0.005856186617165804, 0.028679020702838898, -0.012643510475754738, 0.006807276513427496, -0.01928783766925335, -0.003963983152061701, 0.013481534086167812, -0.021110206842422485, -0.015842631459236145, -0.006484704092144966, 0.004186790902167559, 0.015084419399499893, -0.013381768949329853, -0.006614398211240768, 0.0062253158539533615, -0.0028649091254919767, 0.003940704744309187, -0.016667352989315987, 0.01481838058680296, 0.012543745338916779, 0.0012911212397739291, 0.0029763130005449057, -0.042779095470905304, -0.0035749010276049376, 0.0004659841943066567, -0.02017906866967678, 0.025632871314883232, 0.0007665252778679132, -0.021190017461776733, 0.031844884157180786, -0.010747981257736683, -0.007548860739916563, -0.005078022368252277, -0.008346978574991226, -0.001877238741144538, -0.0005200234008952975, -0.0046989163383841515, 0.006498006172478199, -0.022214269265532494, 0.0019603760447353125, -0.014765172265470028, -0.03546301648020744, 0.008180703967809677, 0.003757803002372384, -0.015057816170156002, 0.007489001844078302, 0.005337410606443882, -0.005267574917525053, -0.02661721594631672, 0.01166581641882658, 0.029211098328232765, -0.037963785231113434, 0.019420858472585678, 0.021229924634099007, 0.001063325209543109, -0.009391182102262974, -0.024089844897389412, -0.16834957897663116, -0.000750313512980938, 0.022520214319229126, -0.006112249568104744, 0.02244040183722973, 0.036660194396972656, 0.023025687783956528, 0.011213550344109535, -0.012350867502391338, -0.018742457032203674, 0.03894812986254692, 0.02346465364098549, -0.04301853105425835, -0.02552645653486252, 0.0017741485498845577, 0.0006035763071849942, -0.008666224777698517, 0.026909859851002693, 0.030168838798999786, 0.02301238663494587, 0.010488593019545078, -0.008027731440961361, 0.011093832552433014, 0.009298068471252918, 0.005194414407014847, 0.012876294553279877, -0.013980356976389885, 0.027402032166719437, -0.0017641721060499549, -0.012862992472946644, -0.025420039892196655, 0.01715952530503273, 0.0085531584918499, -0.029024871066212654, 0.04317815229296684, 0.005746445618569851, -0.002813363913446665, 0.0011489565949887037, -0.01066816970705986, 0.01073467917740345, 0.002592219039797783, -0.006930319592356682, 0.024116449058055878, 0.01082779373973608, 0.006348358932882547, 0.03434565290808678, 0.006631025578826666, -0.01108718104660511, 0.014326208271086216, -0.012257753871381283, 0.009105189703404903, 0.0034219285007566214, 0.023637577891349792, 0.010774585418403149, 0.02198813483119011, 0.016294898465275764, 0.012104781344532967, 0.012344215996563435, -0.020937280729413033, -0.009750334545969963, 0.00152972515206784, -0.010947510600090027, 0.017199430614709854, -0.03322828933596611, -0.008706131018698215, -0.0056300535798072815, -0.012058224529027939, 0.014911494217813015, -0.01779801957309246, 0.013873941265046597, 0.012769878841936588, 0.020298786461353302, 0.030567897483706474, -0.020139163359999657, -0.01066816970705986, -0.018157171085476875, -0.032110925763845444, 0.01798424683511257, -0.008127495646476746, -0.019141515716910362, -0.023424746468663216, 0.036340948194265366, -0.011339918710291386, -0.011965110898017883, -0.0012927839998155832, -0.005320782773196697, -0.013561345636844635, -0.01588253676891327, -0.01980661414563656, -0.007309425622224808, 0.014978003688156605, -0.00979689136147499, -0.022467005997896194, -0.018356701359152794, 0.01558989379554987, 0.02204134315252304, 0.013009314425289631, -0.024754943326115608, 0.007043386343866587, -0.013900545425713062, 0.00019256661471445113, -0.02314540557563305, -0.015829328447580338, 0.0323769636452198, 0.03482452407479286, 0.008746037259697914, 0.0192080270498991, 0.000244215625571087, 0.03000921569764614, 0.013967054896056652, -0.020724449306726456, 0.0038475911132991314, 0.015017909929156303, 0.003508391324430704, 0.0280937347561121, 0.022892668843269348, -0.003990587312728167, -0.017132921144366264, 0.012783180922269821, -0.02377059869468212, 0.0583689883351326, -0.01317558903247118, -0.0025240464601665735, 0.009623966179788113, -0.0071564530953764915, -0.029157890006899834, -0.10950171202421188, 0.007375935558229685, 0.012191243469715118, 0.008313722908496857, -0.002982964040711522, 0.011778883635997772, -0.01665404997766018, 0.010621612891554832, -0.005137880798429251, 0.004303183406591415, -0.03652717545628548, -0.026816746219992638, 0.008918962441384792, -0.014871587976813316, 0.001514760428108275, -0.02198813483119011, -0.01388724334537983, -0.026590613648295403, 0.008340327069163322, 0.025925515219569206, 0.016986599192023277, -0.02338484115898609, 0.01601555570960045, -0.03128620237112045, 0.02905147522687912, 0.0008671213290654123, -0.036926232278347015, 0.011938506737351418, 0.015988953411579132, 0.009464343078434467, -0.008706131018698215, -0.011333267204463482, 0.023956825956702232, 0.0021399524994194508, 0.005028139799833298, -0.021442756056785583, -0.04259286820888519, -0.01882226951420307, 0.017452167347073555, -0.0285992082208395, 0.01294945552945137, -0.004446179140359163, 0.01741226203739643, -0.01959378272294998, 0.013900545425713062, 0.0006925331545062363, -0.018489720299839973, -0.0050647202879190445, 0.014113376848399639, -0.007103245239704847, -0.031392619013786316, 0.00162699562497437, -0.03195130079984665, -0.010641565546393394, 0.03205771744251251, 0.0010816154535859823, 0.020644638687372208, 0.025020981207489967, -0.019114913418889046, -0.00889900978654623, -0.023185310885310173, 0.021190017461776733, -0.0019570505246520042, 0.021708793938159943, -0.0012387448223307729, -0.002691983710974455, -0.008120845071971416, -0.017758112400770187, 0.026683727279305458, 0.001226274180226028, -0.009510899893939495, 0.015510082244873047, -0.0325365886092186, 0.020977186039090157, -0.030807333067059517, 0.0027751207817345858, -0.021562471985816956, -0.011586004868149757, 0.016813674941658974, 0.007309425622224808, -0.004253300838172436, -0.023371538147330284, -0.010821142233908176, 0.004685614258050919, 0.02455541305243969, 0.015563289634883404, 0.004496061708778143, -0.012756576761603355, -0.001339340815320611, -0.014632153324782848, 0.00480533204972744, 0.03559603914618492, -0.009078585542738438, -0.027109388262033463, 0.01864934340119362, 0.02796071395277977, 0.019700199365615845, -0.003707920666784048, -0.026630518957972527, -0.000356450880644843, -0.01959378272294998, 0.024182958528399467, -0.06672261655330658, 0.027428636327385902, -0.0002712352143134922, 0.017891133204102516, -0.007588766515254974, -0.003904124489054084, 0.027668071910738945, -0.021429453045129776, 0.0100629311054945, 0.017784716561436653, -0.01114703994244337, 0.025805797427892685, -0.0003865881299134344, -0.014139981009066105, -0.024954471737146378, -0.00944438949227333, 0.004206744022667408, -0.009763636626303196, 0.007249566726386547, 0.0013235447695478797, 0.013873941265046597, -0.001740893698297441, 0.029264306649565697, 0.0038509166333824396, -0.023930221796035767, 0.012317612767219543, 0.00512790447100997, 0.02616495080292225, -0.0029746501240879297, -0.01294945552945137, 0.009111841209232807, -0.027428636327385902, -0.010076232254505157, -0.015190835110843182, -0.004522665403783321, 0.02153586968779564, -0.024502204731106758, -0.004243324510753155, -0.017784716561436653, 0.04230022430419922, -0.010614962317049503, -0.018423210829496384, 0.015443572774529457, -0.023251822218298912, 0.01400696113705635, 0.022200966253876686, -0.033574141561985016, -0.0031475757714360952, 0.02185511589050293, -0.022001437842845917, 0.012084828689694405, 0.029610157012939453, -0.007296123541891575, -0.031977906823158264, 0.01481838058680296, -0.035835474729537964, 0.03469150513410568, -0.015576591715216637, 0.006687559187412262, -0.03948020935058594, 0.005427198484539986, -0.010907605290412903, -0.004316485021263361, -0.0017076387302950025, 0.007595417555421591, 0.006787323858588934, 0.0006617723847739398, -0.0162682943046093, -0.02081756293773651, -0.030222047120332718, -0.0017741485498845577, 0.017398960888385773, 0.002366085769608617, -0.005184438079595566, 0.012071526609361172, 0.029743175953626633, -0.00623529264703393, 0.0126634631305933, -0.04131587967276573, -0.004110304638743401, -0.012384122237563133, -0.02358436957001686, -0.03439886122941971, -0.004758775234222412, 0.02076435461640358, -0.006897064857184887, 0.009916609153151512, 0.007442445028573275, -0.010342271998524666, 0.015776121988892555, 0.012796483002603054, -0.007103245239704847, 0.0010575056076049805, -0.0042898813262581825, 0.015656404197216034, 0.02051161788403988, -0.010129440575838089, -0.002314540557563305, 0.030940352007746696, 0.03450527787208557, -0.012736624106764793, 0.0052642496302723885, 0.013255400583148003, -0.018409909680485725, -0.014499133452773094, -0.011220200918614864, -0.026204856112599373, -0.00961066409945488, 0.008892358280718327, 0.024448998272418976, 0.008174052461981773, 0.001641129027120769, 0.03232375532388687, 0.026111742481589317, -0.013361816294491291, 0.00031633718754164875, 0.013454929925501347, -0.0017192779341712594, -0.004961629863828421, 0.020019445568323135, 0.026577310636639595, 0.03785737231373787, 0.02160237915813923, 0.016826976090669632, 0.014100074768066406, 0.026178251951932907, 0.003641410730779171, 0.018024152144789696, -0.001153113436885178, 0.014286302030086517, 0.003714571474120021, -0.005290853325277567, -0.035569433122873306, -0.004043795168399811, -0.001804077997803688, -0.04107644408941269, -0.00889900978654623, 0.0071564530953764915, -0.020591430366039276, 0.04253965988755226, 0.008240562863647938, -0.01601555570960045, -0.009012076072394848, 0.007482350803911686, 0.014645455405116081, 0.013508137315511703, -0.00408037519082427, 0.0030029169283807278, -0.008872405625879765, 0.0026653797831386328, -0.012463933788239956, 0.011220200918614864, -0.02205464616417885, 0.00586283765733242, 0.018077360466122627, 0.0010184311540797353, 0.03437225893139839, -0.017638394609093666, -0.022467005997896194, 0.020591430366039276, 0.004429551772773266, 0.02428937330842018, 0.005427198484539986, -0.004562571179121733, 0.002605520887300372, 0.009657220914959908, 0.0010358899598941207, 0.007369284518063068, -0.029397325590252876, -0.004705567378550768, 0.017970943823456764, -0.02113681100308895, -0.009111841209232807, 0.019966237246990204, 0.006730790250003338, 0.002452548360452056, -0.016999902203679085, 0.028200149536132812, 0.0002695724833756685, -0.01754528097808361, 0.017651697620749474, -0.017891133204102516, 0.00014975093654356897, 0.012357518076896667, -6.921174644958228e-05, -0.016733862459659576, -0.010980765335261822, -0.02841298095881939], "4aecb527-1848-4012-913d-a9224fed74f7": [-0.007755942177027464, -0.016079392284154892, -0.018646689131855965, 0.017511673271656036, -0.020605944097042084, 0.026024293154478073, -0.01103262510150671, -0.010012461803853512, -0.02332187443971634, -0.009998949244618416, 0.03178044408559799, 0.0038678369019180536, 0.02656477689743042, 0.006958728656172752, -0.015876710414886475, 0.008870690129697323, 0.038401372730731964, -4.318196261010598e-06, 0.03496930003166199, -0.019457414746284485, -0.00278686941601336, -0.007019532844424248, 0.004104298539459705, 0.028915882110595703, -0.00029684382025152445, 0.028699688613414764, 0.02206525020301342, -0.02297055907547474, 0.02044379897415638, -0.01398501731455326, -0.0023190132342278957, 0.010005705989897251, 0.012491931207478046, -0.004242797382175922, -0.02853754349052906, -0.00308920256793499, 0.014241747558116913, -0.024429867044091225, 0.009904365055263042, 0.001229600515216589, 0.0024760912638157606, 0.006482427008450031, -0.008222109638154507, -0.004377918317914009, -0.036915041506290436, 0.022781390696763992, 0.0029456366319209337, -0.01718738302588463, -0.02725389413535595, 0.018660202622413635, 0.03867161273956299, 0.014552525244653225, -0.02529464103281498, -0.0060128821060061455, -0.02692960388958454, -0.0017202585004270077, 0.01097181998193264, 0.02714579738676548, -0.009390905499458313, 0.02043028548359871, 0.009519270621240139, -0.013518850319087505, 0.005387947428971529, 0.012863514013588428, -0.02563244290649891, -0.014525501057505608, -0.015647005289793015, -0.007884306833148003, -0.009512513875961304, -0.023592116311192513, 0.03207771107554436, 0.017849477007985115, 0.011025868356227875, 0.015619981102645397, 0.02738901413977146, -0.02587565965950489, -0.019660096615552902, -0.003925263416022062, -0.019660096615552902, -0.0007098072092048824, -0.007654601242393255, -0.04191451519727707, -0.009694927372038364, -0.00424617575481534, 0.02656477689743042, -0.009904365055263042, 0.011383939534425735, 0.021281547844409943, -0.017741380259394646, -0.02851051837205887, 0.0119514474645257, 0.02932124398648739, 0.006641194224357605, 0.011086673475801945, 0.002845984883606434, 0.016079392284154892, -0.015471347607672215, 0.017133334651589394, -0.00819508545100689, -0.0227543655782938, -0.02415962517261505, -0.002751400228589773, -0.01552539598196745, -0.003337487345561385, -0.040266040712594986, 0.027091749012470245, -0.0062493435107171535, -0.003915129229426384, 0.007830258458852768, -0.027456576004624367, -0.010167851112782955, 0.023362411186099052, -0.022943535819649696, -0.05337277054786682, -0.004948804620653391, -0.02459201216697693, 0.008391010574996471, -0.02518654428422451, -0.030294114723801613, -0.001524333143606782, -0.000989760854281485, 0.010012461803853512, -0.009140932001173496, -0.011647425591945648, 0.004621136002242565, -0.005320386961102486, 0.011451499536633492, -0.03180747106671333, -0.0019693877547979355, 0.005752773955464363, 0.04469800740480423, 0.020930234342813492, 0.007512724492698908, -0.009330101311206818, -0.012741904705762863, 0.018403472378849983, -0.036671824753284454, 0.005563604645431042, -0.015336226671934128, -0.023119192570447922, 0.015457835979759693, 0.011492036283016205, 0.0032209453638643026, -0.029375292360782623, -0.01974117010831833, 0.03272629156708717, 0.025591906160116196, 0.014660621993243694, -0.023416459560394287, 0.0045096613466739655, 0.019322294741868973, -0.004715720657259226, 0.016673924401402473, -0.0046886964701116085, 0.024308256804943085, 0.0022126054391264915, 0.01663338765501976, -0.001706746406853199, 0.0034253159537911415, 0.0028746980242431164, 0.025091959163546562, 0.0030115079134702682, 0.011052892543375492, -0.0031077817548066378, -0.003776630386710167, 0.024537963792681694, 0.013890433125197887, -0.010066510178148746, -0.04329274967312813, -0.010377287864685059, 0.008917981758713722, 0.02436230517923832, -0.027632232755422592, 0.0062493435107171535, -0.009478733874857426, 0.001797108561731875, 0.04353596642613411, 0.023308362811803818, -0.008114012889564037, 0.0031685861758887768, -0.04377918317914009, -0.009357125498354435, 0.015241642482578754, 0.019943850114941597, -0.001384145114570856, -0.006387842353433371, -0.009485489688813686, -0.013701263815164566, 0.0095260264351964, 0.005053522996604443, 0.015052473172545433, 0.014079602435231209, -0.004097542725503445, -0.034131549298763275, -0.6416622996330261, -0.02414611168205738, -0.02633507177233696, -0.018322398886084557, -0.018106205388903618, 0.004171859007328749, 0.004117810633033514, -5.4840100347064435e-05, -0.015674028545618057, 0.005533202551305294, -0.027861937880516052, 0.012518955394625664, -0.016363145783543587, -0.03569895401597023, -0.016957677900791168, -0.009019322693347931, 0.018768299371004105, -0.029429340735077858, -0.008505863137543201, -0.007532992400228977, -0.0010632328921929002, -0.0002964215527754277, 0.00698575284332037, -0.0009357125381939113, -0.013599922880530357, -0.008708545006811619, 0.01148527953773737, 0.002525072544813156, 0.00536767952144146, 0.03175342082977295, -0.02701067551970482, 0.023294851183891296, 0.016255049034953117, 0.017714355140924454, 0.04977855458855629, -0.008755836635828018, -0.025929708033800125, 0.011606888845562935, 0.012039275839924812, 0.006435134913772345, -0.01183659490197897, -0.014836279675364494, 0.028915882110595703, 0.00860720407217741, -0.00030761127709411085, 0.004847463686019182, 0.025146007537841797, -0.007377603556960821, 0.004084030631929636, 0.011519060470163822, 0.008418034762144089, -0.011471767909824848, -0.028591591864824295, -0.006607414223253727, 0.0061919172294437885, -0.0004556109197437763, 0.03683396801352501, -0.01617397740483284, -0.008586935698986053, 0.00802618358284235, 0.004698830656707287, 0.024227185174822807, -0.0037428501527756453, -0.00883015338331461, -0.009188223630189896, 0.02056540735065937, -0.022578708827495575, 0.017052263021469116, 0.0117284981533885, 0.010944795794785023, 0.0029794168658554554, 0.01629558578133583, 0.001330941217020154, -0.03380725905299187, 0.02148422971367836, 0.015403787605464458, 0.02761872112751007, -0.025929708033800125, -0.0018106206553056836, 0.02669989876449108, 0.005188643932342529, -0.018187278881669044, -0.03405047580599785, -0.018457520753145218, 0.022686805576086044, -0.0310507919639349, -0.00016003385826479644, 0.030240066349506378, -0.01044484879821539, 0.01125557441264391, 0.003337487345561385, 0.02149774134159088, 0.010181362740695477, 0.006468914914876223, 0.04007687047123909, 0.0212545245885849, -0.0058845169842243195, -0.005438617896288633, 0.01880883425474167, -0.0072424826212227345, -0.007837014272809029, -0.016484754160046577, 0.01617397740483284, -0.009140932001173496, -1.1084139259764925e-05, -0.01778191514313221, -0.03764469549059868, -0.006850631907582283, 0.04034711420536041, -0.0223084669560194, 0.0011932868510484695, -0.004026603884994984, -0.03072650171816349, -0.0036617775913327932, 0.02332187443971634, -0.02307865582406521, 0.03288843855261803, -0.0029996850062161684, 0.02288948744535446, -0.0227543655782938, 0.018389960750937462, -0.009100395254790783, 0.01732250489294529, -0.017146848142147064, 0.028483495116233826, 0.03548276051878929, 0.014295795932412148, -0.0004509661521296948, -0.0015826040180400014, -0.00820859707891941, -0.006276367697864771, -0.014741694554686546, 0.021335596218705177, 0.0076005528680980206, 0.010546189732849598, -0.022592220455408096, 0.026821507140994072, 0.0018393337959423661, 0.018687225878238678, -0.02009248360991478, -0.00528322858735919, -0.0022311846259981394, 0.01687660627067089, 0.017281968146562576, 0.0022311846259981394, -0.0276052076369524, -0.021511252969503403, -0.008627472445368767, -0.04359001666307449, 0.0023071900941431522, -0.0073167989030480385, -0.005137973930686712, -0.005921675357967615, 0.002342659281566739, 0.007107361685484648, -0.004222529474645853, -0.028024083003401756, 0.0012101769680157304, 0.01941687986254692, -0.028159204870462418, 0.016782021149992943, 0.003094269661232829, -0.0182548388838768, 0.019795218482613564, 0.026659362018108368, -0.017592746764421463, -0.002724376041442156, 0.026645850390195847, -0.004411698784679174, -0.04367108643054962, 0.020997794345021248, 0.000991449924185872, 0.011383939534425735, 0.04304953292012215, -0.016079392284154892, -0.011120453476905823, -0.01137042697519064, -0.012931074015796185, -0.0011493725469335914, 0.015755102038383484, -0.004192127380520105, 0.016673924401402473, -0.012221689336001873, -0.007924843579530716, 0.020254628732800484, 0.0011603510938584805, -0.014214723370969296, 0.0037293380592018366, 0.004722476936876774, 0.031375084072351456, 0.010688066482543945, 0.004036738071590662, 0.01460657361894846, -0.0021686910185962915, -0.0061344909481704235, -0.009289564564824104, -0.0061851609498262405, 0.018173767253756523, 0.0048001715913414955, 0.020984282717108727, 0.008235621266067028, 0.010721846483647823, 0.027753841131925583, -0.009600343182682991, -0.0035435466561466455, -0.02886183373630047, 0.00797889195382595, 0.0016670546028763056, 0.028159204870462418, -0.021740959957242012, -0.0007680780836381018, -0.039887700229883194, -1.4514945178234484e-05, -0.013113487511873245, 0.010188118554651737, 0.030780550092458725, 0.013012146577239037, 0.0007744118920527399, -0.015565932728350163, -0.0005421727546490729, 0.0059824795462191105, -0.004644782282412052, 0.0017920414684340358, -0.010282703675329685, -0.017944060266017914, -0.013876920565962791, 0.014768718741834164, 0.04367108643054962, 0.018754785880446434, -0.0010125625412911177, 0.012627052143216133, 0.00017766292148735374, -0.0018663579830899835, 0.014849791303277016, 0.008161304518580437, -0.004756256937980652, 0.0168495811522007, -0.01938985474407673, 0.04029306396842003, -0.03394237905740738, -0.002058905316516757, 0.005543336737900972, 0.0319155678153038, -0.013735043816268444, -0.012221689336001873, 0.006259477697312832, 0.011160989291965961, 0.0021078865975141525, 0.013903944753110409, 0.026078341528773308, -0.01309997495263815, 0.010309727862477303, -0.004303602036088705, -0.020389750599861145, 0.00548590999096632, -0.03710421174764633, -0.014282283373177052, 0.013633702881634235, 0.011802813969552517, 0.028051108121871948, 0.010890747420489788, 0.004293467849493027, 0.0209032092243433, 0.012545979581773281, 0.04688696563243866, 0.004273199941962957, 0.01570105366408825, 0.017173871397972107, -0.012998634949326515, -0.026375608518719673, -0.014214723370969296, -0.005114327650517225, 0.0201059952378273, -0.002077484503388405, -0.00248453626409173, 0.005847358610481024, 0.028240276500582695, 0.0022548306733369827, -0.005610897205770016, -0.0030115079134702682, -0.017254944890737534, -0.01460657361894846, 0.025335175916552544, 0.00970843993127346, 0.002766601275652647, -0.004739366937428713, -0.014795742928981781, 0.004529929719865322, -0.014417404308915138, 0.029942801222205162, -0.0204573106020689, 0.009316588751971722, 0.028240276500582695, -0.007147897966206074, -0.00849910732358694, 0.00456033181399107, 0.01096506416797638, -0.010715090669691563, 0.023592116311192513, -0.004479259252548218, 0.007039801217615604, 0.013849896378815174, -0.029375292360782623, 0.011829838156700134, 0.02022760547697544, -0.0014567726757377386, -0.010404312051832676, -0.019079076126217842, 0.002200782299041748, -0.02148422971367836, 0.0004627892340067774, -0.02726740576326847, 0.00019645318388938904, 0.0003591261338442564, 0.009742219932377338, 0.008188328705728054, -0.01710631139576435, 0.01961955986917019, 0.009870585054159164, 0.0017650172812864184, -0.006188539322465658, -0.00970843993127346, -0.019687121734023094, -0.005377813242375851, 0.1051240935921669, 0.027564672753214836, -0.02022760547697544, -0.0016805666964501143, -0.0023122571874409914, 0.015106521546840668, -0.025091959163546562, -0.03556383028626442, 0.02921314723789692, 0.004212395288050175, 0.006367574445903301, -0.013606678694486618, 0.022267930209636688, -0.006002747919410467, 0.0018275107722729445, -0.01236356608569622, -0.017173871397972107, 0.009262540377676487, -0.002761534182354808, 0.004023225978016853, -0.004138079006224871, 0.009667903184890747, 0.010701578110456467, 0.023821821436285973, -0.03591514751315117, -0.008546399883925915, 0.03334784880280495, 0.0075262365862727165, 0.011856862343847752, -0.009586830623447895, -0.0231056809425354, 0.027051212266087532, 0.03086162358522415, 0.023011095821857452, -0.015998318791389465, 0.0012600027257576585, -0.007587040774524212, 0.014052578248083591, -0.008816641755402088, -0.006847253534942865, 0.020605944097042084, 0.007228970527648926, 0.007891062647104263, -0.008174817077815533, 0.008674764074385166, 0.007891062647104263, -0.007107361685484648, -0.007120873779058456, -0.03386130928993225, -0.013241852633655071, 0.04283333942294121, -0.009174712002277374, -0.0275106243789196, 0.0023156350944191217, 0.013039170764386654, 0.01368775125592947, -0.015538908541202545, -0.013437777757644653, -0.00586424907669425, 0.037239331752061844, 0.0044454787857830524, 0.01114747766405344, 0.022389540448784828, 0.0018646690296009183, -0.02030867710709572, -0.009249028749763966, -0.0358070507645607, -0.01005299761891365, -0.015106521546840668, 0.020808624103665352, -0.002199093345552683, -0.013721531257033348, -0.02033570222556591, 0.016241537407040596, 0.008249133825302124, -0.001402724301442504, 0.020173557102680206, -0.009877340868115425, 0.0010826565558090806, -0.010363776236772537, -0.014214723370969296, -0.029132075607776642, 0.010539432987570763, -0.017065774649381638, -0.012059544213116169, -0.0006490027881227434, -0.006414866540580988, 0.017254944890737534, -0.02875373698771, 0.015322715044021606, 0.006188539322465658, 0.021659886464476585, 0.01883585937321186, -0.01789001189172268, 0.0068776560947299, -0.0091274194419384, -0.021457204595208168, -0.00802618358284235, 0.0007900352356955409, -0.01309997495263815, 0.0009340235264971852, -0.03848244249820709, -0.008701788261532784, -0.0021872702054679394, 0.0035232785157859325, -0.012140616774559021, 0.012005495838820934, 0.027348479256033897, -0.01941687986254692, -0.014714670367538929, 0.012836489826440811, -0.030537333339452744, 0.004127944819629192, -0.0027936254628002644, 0.0005176821141503751, 0.002082551596686244, 0.008005916140973568, 0.015430811792612076, 0.007661357522010803, 0.003418559907004237, 2.80534295598045e-05, -0.027226869016885757, -0.005175131838768721, -0.007532992400228977, -0.03153722733259201, -0.005256204400211573, 0.00029304352938197553, -0.020268140360713005, 0.029132075607776642, 0.008863933384418488, 0.006364196538925171, 0.0007794789271429181, 0.008654496632516384, -0.012370321899652481, -0.02611887827515602, 0.0019001382170245051, -0.014039065688848495, -0.0036854236386716366, -0.019038541242480278, 0.012937829829752445, -0.009424685500562191, -0.030537333339452744, -0.0049150241538882256, -0.029834704473614693, 0.007668113335967064, -0.023254314437508583, -0.020605944097042084, -0.006735778879374266, -0.0017835964681580663, -0.01449847687035799, -0.002317324047908187, -0.021105891093611717, -0.029132075607776642, 0.005472397897392511, -0.0035232785157859325, -0.029753630980849266, 0.0017430601874366403, -0.014755207113921642, 0.03353701904416084, 0.007985647767782211, 0.031239962205290794, -0.024173136800527573, 0.0047630132175982, 0.006715510971844196, -0.0038914831820875406, -0.009998949244618416, -0.0024254207964986563, -0.034699056297540665, -0.0418064184486866, -0.017984597012400627, 0.036563728004693985, 0.021105891093611717, 0.026767458766698837, -0.0025368956848978996, -0.0015893600648269057, 0.037590645253658295, -0.0028561188373714685, -0.0020116129890084267, -0.012275737710297108, -0.040482234209775925, -0.028051108121871948, 0.013903944753110409, 0.00109110155608505, 0.006803339347243309, -0.02284895069897175, -0.0031618301291018724, 0.04804900661110878, 0.001424681395292282, 0.016957677900791168, -0.022430075332522392, -0.0037833864334970713, -0.0045569539070129395, 0.015741590410470963, 0.018619665876030922, 0.011498792096972466, -0.01369450706988573, 0.021092379465699196, -0.002781802322715521, 0.012579759582877159, -0.004266443662345409, 0.00134360883384943, -0.011275842785835266, -0.006816851440817118, -0.005992613732814789, -0.03218580782413483, -0.004803549498319626, -0.020700527355074883, -0.02136262133717537, 0.00924227200448513, -0.013403997756540775, -0.008931494317948818, -0.013214828446507454, 0.011985227465629578, -0.022930024191737175, -0.0319155678153038, -0.00416172482073307, 0.007695137523114681, -0.0005903096171095967, 0.0018038646085187793, -0.020984282717108727, 0.00900581106543541, -0.008924738503992558, 0.03821220248937607, 0.017646795138716698, 0.010769139043986797, 0.012019007466733456, -0.008620715700089931, 0.013093219138681889, 0.0011662626639008522, -0.010059754364192486, -0.022240906953811646, 0.03675289452075958, 0.002741266041994095, -0.007174922153353691, 0.011937934905290604, -0.03288843855261803, 0.009634123183786869, -0.026632336899638176, -0.013998529873788357, 0.0013976572081446648, 0.004300224129110575, -0.006303391885012388, -0.015363250859081745, 0.004151591099798679, -0.023862358182668686, 0.010802919045090675, 0.0016831002430990338, 0.028726711869239807, -0.020362725481390953, -0.01811971887946129, -0.030186017975211143, 0.018916931003332138, 0.010384044609963894, 0.0310507919639349, 0.02033570222556591, -0.01698470301926136, -0.04202261194586754, -0.013903944753110409, -0.02342997118830681, -0.016687436029314995, 0.004594111815094948, 0.020524870604276657, -0.013876920565962791, 0.013444533571600914, 0.006327038165181875, 0.007228970527648926, -0.01583617366850376, 0.012545979581773281, -0.019470928236842155, 0.022497637197375298, 0.00689792400225997, 0.019335806369781494, 0.01107991673052311, 0.0058439807035028934, 0.015674028545618057, 0.006904680281877518, 0.00528322858735919, 0.0062256972305476665, -0.030429236590862274, -0.0006198672926984727, 0.009201736189424992, 0.017254944890737534, 0.004871109966188669, -0.012174396775662899, -0.019822241738438606, -0.018281864002346992, 0.00801942776888609, 0.015917247161269188, 0.002215983346104622, -0.02886183373630047, -0.024767668917775154, 0.01699821464717388, -0.02656477689743042, 0.012323030270636082, -0.009877340868115425, 0.02886183373630047, -0.005428483709692955, 0.03359106555581093, -0.015660516917705536, 0.022376026958227158, -0.0063135260716080666, 0.017254944890737534, -0.04029306396842003, 0.019808730110526085, 0.008586935698986053, -0.014390380121767521, 0.01987629011273384, -0.026294535025954247, -0.03267224505543709, 0.014106626622378826, 0.02068701572716236, 0.009107151068747044, 0.004019848071038723, 0.018268350511789322, 0.00618178304284811, 0.003367889439687133, 0.014430916868150234, -0.017876500263810158, -0.03507739678025246, 0.012464907020330429, 0.02356509305536747, -0.006083820480853319, 0.00028565412503667176, -0.02055189572274685, 0.018173767253756523, 0.008485594764351845, 0.011363671161234379, 0.009228760376572609, -0.026943115517497063, 0.021200476214289665, 0.0002805870899464935, 0.01849805749952793, 0.015971295535564423, -0.013829628005623817, -0.016957677900791168, -0.014282283373177052, 0.00011506392911542207, -0.0022345625329762697, 0.011309622786939144, -0.0030402212869375944, 0.01940336637198925, 0.007512724492698908, -0.009188223630189896, -0.0006650483701378107, -0.013822872191667557, 0.0076883817091584206, 0.013876920565962791, -0.016944166272878647, -0.03715825825929642, -0.004256309475749731, -0.009998949244618416, 0.03556383028626442, -0.008938250131905079, -0.005992613732814789, -0.011809570714831352, -0.019592536613345146, -0.02333538606762886, -0.009600343182682991, -0.004496149253100157, 0.010836699046194553, 0.03904995322227478, 0.0182548388838768, 0.0017515051877126098, 0.026997163891792297, -0.018781810998916626, -0.0008335273014381528, 0.0034168707206845284, -0.013532361947000027, -0.009593586437404156, -0.009634123183786869, -0.0023274582345038652, 0.020727552473545074, -0.015498371794819832, 0.012937829829752445, 0.02253817208111286, 0.008573424071073532, 0.009073371067643166, 0.0061513809487223625, 0.006462159100919962, 0.00037664963747374713, -0.0019271624041721225, -0.00274295499548316, 0.016592850908637047, 0.016822557896375656, 0.002928746398538351, -0.01824132725596428, 0.0036617775913327932, -0.010762383230030537, -0.001981210894882679, -0.022105785086750984, -0.03337487205862999, 0.0008048141025938094, -0.009296320378780365, 0.0060534183867275715, -0.02529464103281498, -0.005810200702399015, -0.025727028027176857, -0.02274085395038128, 0.03948234021663666, -0.0029422584921121597, -0.0047123427502810955, 0.021065354347229004, -0.005455507896840572, -0.014593061991035938, 0.003533412702381611, 0.0046718064695596695, 0.011532572098076344, -0.02586214803159237, 0.012255469337105751, -0.034482862800359726, 0.015376763418316841, -0.0036279973573982716, 0.0038881050422787666, -0.013302656821906567, 0.006688486784696579, -0.010302972048521042, -0.014052578248083591, -0.014147162437438965, 0.02206525020301342, 0.02888885699212551, -0.01880883425474167, -0.0008960207342170179, -0.012343297712504864, -0.008363986387848854, 0.010701578110456467, -0.01651177927851677, -0.004887999966740608, 7.278584962477908e-05, 0.012964854016900063, -0.018160253763198853, 0.0021484228782355785, -0.0174576248973608, -0.00485421996563673, 0.011579864658415318, -0.025321664288640022, 0.0032800608314573765, 0.21900402009487152, -0.02956446260213852, 0.002947325585409999, 0.022565197199583054, 0.0015657139010727406, 0.01518759410828352, 0.022578708827495575, -0.007512724492698908, -0.021322084590792656, -0.01559295691549778, -0.014079602435231209, 0.028159204870462418, -0.017619770020246506, 0.0008723745704628527, 0.01582266204059124, 0.002908478258177638, -0.04483312740921974, -0.017876500263810158, 7.043046821308963e-07, -0.06610116362571716, 0.008438303135335445, -0.006894546095281839, -0.011586620472371578, -0.015065984800457954, 0.012613539583981037, 0.005955455359071493, -0.012951342388987541, -0.017281968146562576, 0.025456786155700684, -0.0018866261234506965, -0.027659256011247635, -0.008924738503992558, -0.014079602435231209, 0.0013089841231703758, -0.01675499603152275, 0.007161410059779882, 0.011985227465629578, 0.01247841864824295, 0.03164532408118248, -0.023646164685487747, 0.006725644692778587, 0.0005919986288063228, 0.004053628072142601, 0.000434076035162434, -0.005300119053572416, 0.01883585937321186, -0.006229075603187084, -0.006148003041744232, -0.015782125294208527, 0.01328914426267147, -0.02342997118830681, -0.005222424399107695, 0.0582101009786129, 0.03129401057958603, 0.009113907814025879, -0.028564566746354103, -0.01051916554570198, 0.01883585937321186, -0.01940336637198925, 0.00790457520633936, -0.021916616708040237, 0.01882234774529934, 0.006712132599204779, 0.0381041057407856, -0.032050687819719315, 0.010032730177044868, 0.004104298539459705, 0.0026939737144857645, 0.007870795205235481, -0.023497531190514565, -0.00025102938525378704, -0.012660832144320011, -0.002582499058917165, -0.0020960636902600527, -0.012113592587411404, -0.006958728656172752, 0.02320026606321335, -0.025551369413733482, -0.0006680041551589966, -0.009309832938015461, 0.013660727068781853, -0.015768613666296005, 0.015038960613310337, -0.01722791977226734, 0.00597910163924098, -0.01941687986254692, -0.010539432987570763, -0.005418349523097277, -0.010870479978621006, 0.008654496632516384, -0.01837644726037979, -0.029051002115011215, -0.009208492003381252, -0.013545874506235123, 0.0021365999709814787, -0.024065040051937103, 0.0314021073281765, 0.01518759410828352, 0.006833741441369057, 0.004209017381072044, -0.0023882626555860043, -0.0018072426319122314, 0.021159939467906952, 0.01880883425474167, -0.025132495909929276, -0.006752668879926205, 0.01895746774971485, 0.004698830656707287, 0.008695032447576523, 0.002467646263539791, 0.03234795480966568, -0.005134595558047295, -0.0007870795088820159, -0.019957363605499268, 0.004830573685467243, 0.02367318980395794, -0.019092589616775513, -0.012687856331467628, 0.001031986204907298, 0.01883585937321186, 0.017281968146562576, -0.009485489688813686, -0.002118020784109831, 0.008080231957137585, 0.0034827422350645065, -0.0033560662996023893, -0.016660412773489952, 0.014309307560324669, 0.004171859007328749, -0.008411278948187828, 0.026956627145409584, -0.034023452550172806, -0.013066194951534271, 0.003413492813706398, -0.020160043612122536, 0.02690257877111435, -0.00011158033885294572, -0.011917667463421822, 0.029132075607776642, -0.02053838223218918, -0.005506178364157677, -0.007870795205235481, 0.001655231579206884, 0.011478523723781109, 0.0029456366319209337, 0.014322820119559765, 0.004239419475197792, -0.030753526836633682, 0.0033763344399631023, -0.014741694554686546, -0.024700108915567398, -0.014241747558116913, -0.007296530995517969, -0.017592746764421463, -0.0026129011530429125, 0.0015158880269154906, -0.012323030270636082, -0.018862882629036903, -0.0047765253111720085, 0.038158152252435684, -0.04877866059541702, 0.009276052936911583, 0.02886183373630047, -0.0047596353106200695, -0.02367318980395794, -0.01963307335972786, -0.17230622470378876, 0.0186061542481184, 0.014633597806096077, -0.006073686294257641, 0.01859264075756073, 0.041887491941452026, 0.018552105873823166, 0.011944691650569439, -0.01022189948707819, -0.017254944890737534, 0.028672663494944572, 0.021092379465699196, -0.038185179233551025, -0.03188854083418846, 0.0015868265181779861, 0.00759379705414176, -0.015444323420524597, 0.022335492074489594, 0.03775279223918915, 0.02599726989865303, 0.013714775443077087, -0.011309622786939144, 0.011579864658415318, 0.001413702848367393, 0.00820859707891941, -0.006671596318483353, -0.0047697690315544605, 0.02284895069897175, 0.010012461803853512, -0.023767773061990738, -0.021754471585154533, 0.021889591589570045, -0.0046312701888382435, -0.018660202622413635, 0.02284895069897175, 0.009998949244618416, -0.01056645717471838, -0.009330101311206818, -0.007147897966206074, 0.015174081549048424, -0.00111305876635015, -0.007147897966206074, 0.01652529090642929, 0.00883690919727087, -0.002143356017768383, 0.0321047343313694, -0.0020268140360713005, -0.004479259252548218, 0.020051946863532066, -0.01449847687035799, 0.012214933522045612, 0.0007359868614003062, 0.013221584260463715, -0.0013588099973276258, 0.029294220730662346, 0.011133965104818344, 0.015201105736196041, 0.011431231163442135, -0.022673293948173523, -0.02043028548359871, -0.004867732059210539, -0.004621136002242565, 0.028213253244757652, -0.021065354347229004, -0.012532467022538185, 0.0014018797082826495, -0.027064723894000053, 0.002185581251978874, -0.019443903118371964, 0.006701998878270388, 0.011613644659519196, 0.022200370207428932, 0.028915882110595703, -0.01166093721985817, -0.010938039980828762, -0.020281653851270676, -0.016565827652812004, 0.0190520528703928, -0.010681310668587685, -0.02136262133717537, -0.03569895401597023, 0.024754157289862633, -0.009140932001173496, -0.018525080755352974, -0.012417614459991455, 0.02007897198200226, -0.0038509469013661146, -0.01507949735969305, -0.021430181339383125, -0.0012946275528520346, 0.010485384613275528, -0.00849235150963068, -0.01675499603152275, -0.009539538063108921, 0.01085021160542965, 0.009080126881599426, 0.011694717220962048, -0.015133545733988285, -0.0023274582345038652, -0.008458570577204227, 0.0113298911601305, -0.015998318791389465, -0.007999159395694733, 0.030186017975211143, 0.024065040051937103, 0.007715405896306038, 0.004259687848389149, 0.00426982156932354, 0.03553680703043938, 0.003398291766643524, 0.0024254207964986563, 0.011978471651673317, 0.02065999247133732, -0.005458885803818703, 0.026767458766698837, 0.030294114723801613, -0.0023595495149493217, -0.019362831488251686, 0.017525186762213707, -0.016579339280724525, 0.06783071160316467, 0.0038306787610054016, -0.0034624740947037935, 0.0019643206615000963, -0.007965379394590855, -0.02324080280959606, -0.11458256095647812, -0.012316273525357246, 0.015660516917705536, 0.007945111021399498, 0.012782441452145576, 0.012464907020330429, -0.0030638673342764378, 0.017390064895153046, -0.02137613296508789, -0.002521694637835026, -0.01686309278011322, -0.028942905366420746, -0.003472608281299472, -0.003389846533536911, 0.010174606926739216, -0.026281023398041725, -0.009181467816233635, -0.021416669711470604, 0.010755626484751701, 0.02934826910495758, 0.01183659490197897, -0.022267930209636688, 0.004141456913203001, -0.03464500978589058, 0.02436230517923832, 0.0017118133837357163, -0.03188854083418846, 0.016782021149992943, 0.012518955394625664, 0.026010781526565552, -0.011816326528787613, -0.012012251652777195, 0.02241656370460987, -0.014295795932412148, 0.004627892281860113, -0.015295690856873989, -0.0492110475897789, -0.007039801217615604, 0.020133020356297493, -0.034942276775836945, 0.012079812586307526, 0.005225802306085825, 0.011566352099180222, -0.007222214248031378, -0.005533202551305294, -0.007330310996621847, -0.022916510701179504, -0.004482637159526348, 0.015984807163476944, -0.0029794168658554554, -0.019565511494874954, -0.002864563837647438, -0.030537333339452744, -0.0012051098747178912, 0.02309216931462288, -0.0030115079134702682, 0.030996743589639664, 0.00830993801355362, -0.03405047580599785, -0.0037631182931363583, -0.026267511770129204, 0.022673293948173523, 0.001189064234495163, 0.018903419375419617, 0.009276052936911583, 0.006637816317379475, -0.021632863208651543, -0.014417404308915138, 0.024740643799304962, 0.010877235792577267, -0.007735673803836107, 0.018525080755352974, -0.040374137461185455, 0.015390275046229362, -0.014430916868150234, 0.012850001454353333, -0.029375292360782623, -0.012410858646035194, 0.02264626882970333, 0.0013376972638070583, -0.0022835438139736652, -0.02215983346104622, -0.00809374451637268, -0.00849235150963068, 0.025700002908706665, 0.02007897198200226, 0.0014441050589084625, -0.014957888051867485, 0.004330626223236322, -0.011674449779093266, -0.009674658998847008, 0.020876185968518257, -0.011532572098076344, -0.010262435302138329, 0.01386340893805027, 0.033212728798389435, 0.014255259186029434, -0.0018545349594205618, -0.011316378600895405, 0.001605405705049634, -0.0223084669560194, 0.009924633428454399, -0.054805055260658264, 0.02956446260213852, 0.008553155697882175, 0.011600133031606674, -0.007965379394590855, -0.003269926877692342, 0.022821927443146706, -0.020524870604276657, 0.013154023326933384, 0.02009248360991478, -0.008708545006811619, 0.025456786155700684, -0.017417090013623238, -0.02020058035850525, -0.019038541242480278, -0.006083820480853319, -0.004479259252548218, -0.0164036825299263, 0.006951972376555204, -0.0030520441941916943, 0.008397766388952732, -0.005026498809456825, 0.03291546180844307, -0.003410114673897624, -0.018389960750937462, 0.006320281885564327, 0.005323764868080616, 0.015295690856873989, 0.003408425720408559, -0.018984492868185043, 0.015565932728350163, -0.03426666930317879, -0.009431441314518452, 0.0029574595391750336, -0.004465747158974409, 0.006668218411505222, -0.016552316024899483, 0.0006802494754083455, -0.0075262365862727165, 0.04896783083677292, -0.00790457520633936, -0.009404417127370834, -0.0010226966114714742, -0.028780760243535042, 0.012093324214220047, 0.03613134101033211, -0.027213357388973236, -0.004681940656155348, 0.01883585937321186, -0.02679448202252388, -0.005789932329207659, 0.022551685571670532, 0.005154863931238651, -0.028348373249173164, 0.001319962670095265, -0.020024923607707024, 0.030672453343868256, -0.0095260264351964, 0.016498267650604248, -0.03323975205421448, 0.004948804620653391, -0.013140511699020863, 0.016146952286362648, 0.002825716743245721, 0.013667482882738113, -0.0008656185236759484, -0.005634543020278215, -0.022686805576086044, -0.018268350511789322, -0.017835963517427444, 0.0047359890304505825, 0.012721636332571507, 0.00028290945920161903, -0.01148527953773737, 0.012160885147750378, 0.021578814834356308, 0.004482637159526348, 0.0025335175450891256, -0.03648265451192856, 0.0028797651175409555, -0.007046557031571865, -0.020970769226551056, -0.02032218873500824, -0.0013148956932127476, 0.021538278087973595, 0.00609057629480958, 0.009019322693347931, 0.009559806436300278, -0.01986277848482132, 0.01801162213087082, 0.012255469337105751, -0.014741694554686546, -0.000712340697646141, -0.0035975950304418802, 0.020632967352867126, 0.01490383967757225, -0.013322925195097923, -0.006242587696760893, 0.019808730110526085, 0.03675289452075958, -0.0020926855504512787, 0.008809885010123253, 0.014633597806096077, -0.022943535819649696, -0.009985437616705894, -0.005033255089074373, -0.016552316024899483, -0.024929814040660858, 0.0089044701308012, 0.021862568333745003, 0.015511884354054928, -0.006117600481957197, 0.03061840496957302, 0.016133440658450127, -0.010282703675329685, 0.005411593709141016, 0.004171859007328749, -0.0067898272536695, -0.003655021544545889, 0.02597024478018284, 0.02088969759643078, 0.04577897489070892, 0.017011726275086403, 0.017944060266017914, 0.02403801493346691, 0.010823187418282032, 0.009255784563720226, 0.03578002378344536, 0.0031618301291018724, 0.005810200702399015, 0.009059859439730644, 0.007255994714796543, -0.040590330958366394, -0.010782650671899319, 0.008276158012449741, -0.03726635500788689, -0.011106940917670727, 0.0038408127147704363, -0.01698470301926136, 0.025321664288640022, 0.0037225820124149323, -0.021551789715886116, -0.0057561518624424934, 0.010573213919997215, 0.016903629526495934, 0.011188013479113579, -0.0074384077452123165, 0.0019136503105983138, -0.017619770020246506, 0.016552316024899483, -0.012613539583981037, 0.011627157218754292, -0.030888646841049194, -0.00730328680947423, 0.018849371001124382, 0.005617653019726276, 0.028807785362005234, -0.01953848823904991, -0.015295690856873989, 0.030591381713747978, -0.0016653656493872404, 0.016687436029314995, 0.0038205445744097233, -0.0026787726674228907, -0.009269296191632748, 0.016552316024899483, -0.006762803066521883, 0.015890222042798996, -0.02309216931462288, -0.01397150568664074, 0.016430705785751343, -0.010438092984259129, -0.007864038459956646, 0.008823397569358349, 0.0033594444394111633, 0.002378128468990326, -0.0231056809425354, 0.002883143024519086, -0.006367574445903301, -0.01721440814435482, 0.0160523671656847, -0.021105891093611717, -0.032402001321315765, 0.010809674859046936, -0.0020690395031124353, -0.012566247954964638, -0.005347411148250103, -0.023754261434078217], "c7cee09a-69d5-4164-a802-929633e929fc": [-0.011984912678599358, -0.018449582159519196, -0.0034019327722489834, 0.004768691956996918, -0.007595322094857693, 0.03272240236401558, -0.000700006727129221, -0.019460519775748253, -0.01809043437242508, -0.0011248326627537608, 0.023650582879781723, 0.006630942225456238, 0.02607150934636593, 0.0016860018949955702, -0.01087421365082264, 0.011659018695354462, 0.03884122520685196, -0.020391644909977913, 0.031950898468494415, -0.01973985694348812, -0.01080105360597372, 0.0017841026419773698, 0.01741204410791397, 0.017797796055674553, -0.002628766233101487, 0.0364203006029129, 0.014871401712298393, -0.010993929579854012, 0.010062804445624352, -0.026749899610877037, 0.003102642484009266, 0.02020541951060295, 0.01656072773039341, -0.00810744147747755, -0.028146587312221527, -0.009198187850415707, 0.006680823862552643, -0.02048475667834282, 0.010727893561124802, -0.02772093005478382, 0.007242824882268906, -0.004180087707936764, -0.022852474823594093, 0.001481486833654344, -0.026643484830856323, 0.02068428322672844, 0.002801689552143216, -0.023969825357198715, -0.016653841361403465, 0.013953577727079391, 0.033254474401474, 0.006610989570617676, -0.01656072773039341, -0.0008392598247155547, -0.01702629216015339, -0.005543521139770746, 0.02532660774886608, 0.027960361912846565, -0.011446190066635609, 0.015988752245903015, 0.007409097161144018, -0.008453287184238434, 0.0011755457380786538, 0.015403472818434238, -0.04155479371547699, 0.0021981208119541407, -0.02279926836490631, -0.014884702861309052, -0.003681270405650139, -0.02121635526418686, 0.0245285015553236, 0.028279606252908707, -0.020857207477092743, 0.005606704391539097, 0.023623978719115257, -0.023770298808813095, -0.01682676374912262, -0.015044325031340122, -0.015177342109382153, 0.014578761532902718, -0.008074186742305756, -0.02745489403605461, -0.018901843577623367, 0.01163241546601057, 0.02041824720799923, -0.007894612848758698, 0.006494598928838968, 0.0258586797863245, -0.0311793964356184, -0.031099585816264153, 0.00369124673306942, 0.02605820633471012, -9.576249431120232e-05, 0.015243851579725742, -0.0022380261216312647, 0.018263358622789383, -0.0195403303951025, 0.01914127543568611, 0.006005758419632912, -0.01589563861489296, -0.027694327756762505, -0.0004709665081463754, -0.012244298122823238, -0.004476052243262529, -0.04296478256583214, 0.01004285179078579, -0.010255680419504642, -0.013235281221568584, 0.009524081833660603, -0.026643484830856323, -0.015070928260684013, 0.025100477039813995, -0.027614515274763107, -0.03429201617836952, -0.004545886535197496, -0.01927429437637329, 0.033547114580869675, -0.019127974286675453, -0.0319242961704731, -0.01126661617308855, -0.013474713079631329, 0.019580235704779625, -0.0016419397434219718, -0.011373030953109264, 0.010102709755301476, -0.01761157065629959, 0.01263670064508915, -0.031099585816264153, -0.0009219803032465279, 0.01077445037662983, 0.03163165599107742, 0.01822345331311226, -0.009397714398801327, -0.011379681527614594, -0.007395795080810785, 0.006617640610784292, -0.03280221298336983, 0.005952551029622555, -0.010914118960499763, -0.03588822856545448, 0.019181180745363235, 0.015469982288777828, -0.0019453867571428418, -0.02979600988328457, -0.030700530856847763, 0.02107003517448902, 0.017052894458174706, 0.022253895178437233, -0.016241485252976418, -0.0016203243285417557, 0.02620452642440796, -0.004289827309548855, 0.006208610720932484, -0.00456916494295001, 0.009178235195577145, 0.017172610387206078, 0.007056599482893944, -0.008433334529399872, 0.0102689815685153, -0.0019204459385946393, 0.017305629327893257, 0.009524081833660603, 0.011472794227302074, 0.006022385321557522, -0.004233294632285833, 0.017505155876278877, 0.02121635526418686, -0.0016685433220118284, -0.03663313016295433, -0.00628509558737278, 0.004609070252627134, 0.029822614043951035, -0.012124581262469292, 0.006996741518378258, 0.006507901009172201, -0.005044703837484121, 0.04134196415543556, 0.042060259729623795, -0.002041824860498309, 0.006857072934508324, -0.05424470081925392, -0.014818194322288036, 0.011592510156333447, 0.027614515274763107, -0.004343034233897924, -0.01143288891762495, -0.003257275791838765, -0.014698478393256664, 0.01947382092475891, 0.011392983607947826, 0.015177342109382153, 0.022160781547427177, -0.01523054949939251, -0.019114673137664795, -0.6380602717399597, -0.0228657778352499, -0.036526717245578766, -0.014751684851944447, -0.011891799978911877, 0.007715038023889065, 0.01107374019920826, 0.00987657904624939, -0.021455787122249603, 0.017172610387206078, -0.024781234562397003, 0.012457126751542091, -0.021961254999041557, -0.027827344834804535, -0.022985493764281273, -0.014725081622600555, 0.021030129864811897, -0.029503369703888893, 0.006753983907401562, -0.01601535454392433, -0.007222872227430344, 0.004692206624895334, -0.006494598928838968, -4.0113209252012894e-05, -0.008260411210358143, -0.012091327458620071, 0.020923715084791183, 0.0013010813854634762, 0.004096951335668564, 0.03139222413301468, -0.02379690296947956, 0.01668044552206993, 0.010940722189843655, 0.01449895091354847, 0.05073302611708641, -0.004742088261991739, -0.03157845139503479, 0.00732928654178977, 0.007715038023889065, 0.015084230341017246, -0.013847163878381252, -0.01257019117474556, 0.026217827573418617, 0.016520822420716286, 0.014977815560996532, -0.005327366758137941, 0.02740168757736683, -0.015004418790340424, -0.012383966706693172, 0.018263358622789383, 0.012383966706693172, -0.0027434942312538624, -0.02667008899152279, -0.0006966812652535737, 0.0022962214425206184, -0.00176581263076514, 0.04131535813212395, -0.005836160387843847, -0.0016685433220118284, 0.0036247377283871174, 0.003641365095973015, 0.020657679066061974, -0.00535397045314312, -0.0010599864181131124, -0.016108468174934387, 0.01589563861489296, -0.01523054949939251, 0.016454314813017845, 0.027348481118679047, 0.003784359199926257, 0.011692273430526257, 0.020697586238384247, -0.003711199387907982, -0.021309467032551765, 0.02533991076052189, 0.013015802018344402, 0.042326297610998154, -0.02772093005478382, 0.0017042919062078, 0.01867571286857128, 0.004210016690194607, -0.01747855171561241, -0.024169351905584335, -0.014951212331652641, 0.031205998733639717, -0.010887514799833298, -0.014472347684204578, 0.024887649342417717, 0.0007266103057190776, 0.012749765999615192, 0.00914498046040535, 0.02067098207771778, 0.013527920469641685, 0.0036047850735485554, 0.030274873599410057, 0.013155470602214336, 0.00977016519755125, 0.0011123622534796596, 0.005290787201374769, -0.01310226321220398, -0.012656653299927711, -0.021854840219020844, 0.015137436799705029, -0.01050841435790062, 0.00631502503529191, -0.013321742415428162, -0.03317466378211975, -0.008340222761034966, 0.039719145745038986, -0.017398741096258163, -0.006125474348664284, -0.019713252782821655, -0.02653707191348076, -0.008400080725550652, 0.02174842730164528, -0.022440120577812195, 0.036340489983558655, 0.000578212202526629, 0.013454760424792767, -0.02208097092807293, 0.010568272322416306, -0.0035682052839547396, 0.015775922685861588, -0.014738383702933788, 0.02233370579779148, 0.03046109899878502, 0.011785386130213737, 0.005560148041695356, -0.009896531701087952, -0.004908360540866852, -0.013887069188058376, -0.002780074020847678, 0.00764852948486805, 0.006717403884977102, 0.011698924005031586, -0.007621925789862871, 0.017771191895008087, 0.0049881711602211, 0.014898004941642284, -0.03655331954360008, -0.010694638825953007, 0.0002377694909228012, 0.019380707293748856, 0.02041824720799923, 0.004076998680830002, -0.02753470465540886, -0.016401106491684914, -0.007468955125659704, -0.038468778133392334, -1.0099747669300996e-05, -0.011186805553734303, -0.009683703072369099, 0.0027135652489960194, -0.0019520376808941364, 0.00024816152290441096, -0.01007610559463501, -0.017864303663372993, -0.012530285865068436, 0.0010292259976267815, -0.029423559084534645, 0.02048475667834282, 0.011279918253421783, -0.03437182679772377, 0.0083136186003685, 0.02248002588748932, -0.017904208973050117, -0.004326407331973314, 0.010894166305661201, 0.002686961553990841, -0.03224353864789009, 0.005064656492322683, -0.007515511475503445, -0.0019503749208524823, 0.0465562641620636, -0.02766772359609604, -0.010455206967890263, -0.01170557551085949, -0.013966879807412624, -0.0089388033375144, 0.01874222233891487, 0.008785832673311234, 0.0005233422853052616, -0.01210462860763073, 0.006205284968018532, 0.035941436886787415, -0.01292933989316225, -0.016866669058799744, 0.008007677271962166, 0.015775922685861588, 0.026350846514105797, 7.778429426252842e-05, -0.004915011581033468, 0.004629022907465696, -0.01319537591189146, -0.003611436113715172, -0.0011996552348136902, 0.0023810204584151506, 0.02354416809976101, 0.011592510156333447, 0.0266035795211792, 0.021455787122249603, 0.0008529772749170661, 0.029875820502638817, -0.015270454809069633, 0.0016311319777742028, -0.03046109899878502, -0.0005341499927453697, -0.008074186742305756, 0.03703218325972557, -0.017052894458174706, -0.003887448227033019, -0.031738072633743286, -0.009025264531373978, -0.01376735232770443, 0.003104305360466242, 0.032349955290555954, 0.012962594628334045, 0.019433915615081787, -0.023584073409438133, -0.00353162526153028, 0.01346141193062067, -0.02033843658864498, -0.0012960932217538357, -0.009650448337197304, -0.019859572872519493, -0.020444851368665695, 0.021056734025478363, 0.028173191472887993, 0.03330768272280693, -0.01044190488755703, 0.010847609490156174, -0.005124514456838369, -0.0015845757443457842, 0.021508995443582535, 0.021908048540353775, -4.7543508117087185e-05, 0.0158823374658823, -0.013793956488370895, 0.030753739178180695, -0.041927240788936615, 0.012796321883797646, 0.010521715506911278, 0.022227291017770767, -0.016241485252976418, -0.018170244991779327, -0.00029263939359225333, -0.005174396559596062, 0.007109806872904301, 0.014472347684204578, 0.02758791297674179, -0.007608623709529638, 0.0003337918024044484, -0.01126661617308855, -0.013488015159964561, 0.012310806661844254, -0.02048475667834282, -0.01767807826399803, 0.011911752633750439, 0.01934080198407173, 0.02347765862941742, -0.010116010904312134, 0.005340668838471174, 0.018662411719560623, 0.0009577288874424994, 0.035675402730703354, 0.002849908545613289, 0.017904208973050117, 0.02248002588748932, -0.021296165883541107, -0.030274873599410057, -0.01747855171561241, -0.017252421006560326, 0.01439253706485033, -0.00921148993074894, -0.002951334696263075, -0.010382046923041344, 0.0023510914761573076, 0.0034252109471708536, 0.01895505003631115, -0.0118053387850523, -0.01505762618035078, -0.02758791297674179, 0.03099317103624344, 0.003990537021309137, 0.014259519055485725, -0.010581574402749538, -0.006142101716250181, 0.0006742344703525305, -0.03336089104413986, 0.041395172476768494, -0.020976923406124115, 0.003478418104350567, 0.02632424235343933, -0.02113654464483261, -0.003315471112728119, -0.007754943799227476, 0.01767807826399803, -0.011645717546343803, 0.041182342916727066, 0.006970137823373079, 0.006055640056729317, 0.00641478830948472, -0.02068428322672844, 0.008626210503280163, 0.027428291738033295, -0.0026221154257655144, 0.001623649732209742, -0.01868901588022709, 0.0002604241017252207, -0.024368880316615105, -0.007601973135024309, -0.017651475965976715, 0.006404811982065439, -0.000892882642801851, -0.009484176523983479, 0.005932598374783993, -0.02126956172287464, 0.016467615962028503, 0.021588806062936783, -0.009963041171431541, 0.008054234087467194, -0.017239119857549667, -0.010315538384020329, 0.001724244561046362, 0.1062546968460083, 0.02095031924545765, -0.01483149640262127, -0.002524014562368393, 0.012144533917307854, 0.019926082342863083, -0.02519359067082405, -0.0225332323461771, 0.03240315988659859, -0.005440432112663984, 0.0020534638315439224, -0.01601535454392433, 0.0039007498417049646, -0.001167232054285705, 0.014445744454860687, -0.00887894444167614, -0.0172125156968832, 0.005048029124736786, -0.009277998469769955, 0.0030710508581250906, -0.012011516839265823, 0.00971030630171299, -0.006125474348664284, 0.01485809963196516, -0.027015935629606247, -0.0005994118982926011, 0.018728921189904213, 0.006724054925143719, 0.01914127543568611, -0.016640540212392807, -0.004798620939254761, 0.02979600988328457, 0.029423559084534645, 0.01060817763209343, -0.024621613323688507, -0.004885082598775625, -0.0026420680806040764, 0.011945007368922234, -0.001622818410396576, -0.00119716115295887, 0.015270454809069633, 0.026696693152189255, -0.0004318924911785871, -0.017797796055674553, 0.013607731088995934, 0.0038076373748481274, -0.01761157065629959, -0.0008795808535069227, -0.027747534215450287, 0.0004946603439748287, 0.04847172275185585, -0.021788332611322403, -0.03298844024538994, -0.001168063492514193, 0.010428603738546371, 0.00014174719399306923, -0.012018167413771152, -0.01847618632018566, -0.012237646616995335, 0.038069725036621094, -0.005892693065106869, 0.004572490230202675, 0.017598267644643784, 0.00641478830948472, -0.01383386179804802, -0.020391644909977913, -0.03450484201312065, -0.01801062375307083, -0.007621925789862871, 0.03945310786366463, -0.009929786436259747, -0.015177342109382153, -0.023118510842323303, 0.013521269895136356, 0.014685176312923431, 0.007548765745013952, 0.011446190066635609, -0.01266330387443304, -0.01449895091354847, -0.014153104275465012, -0.01479159016162157, -0.03253617882728577, 0.010162567719817162, -0.01153930276632309, -0.027641119435429573, 0.004549212288111448, -0.004964893218129873, 0.02399642951786518, -0.03250957652926445, 0.007821452803909779, 0.018516091629862785, 0.028359416872262955, 0.01253693737089634, -0.012516984716057777, 0.0014523891732096672, -0.00804093200713396, -0.01874222233891487, -0.007661831099539995, -0.00838012807071209, -0.0030693879816681147, 0.01013596449047327, -0.02374369464814663, -0.008020979352295399, -0.010382046923041344, 0.000527914788108319, -0.010488461703062057, -0.000963548431172967, 0.012709860689938068, -0.01276306714862585, -0.0182899609208107, 0.019646743312478065, -0.02886488474905491, -0.002595511730760336, -0.010568272322416306, 0.005048029124736786, -0.0032838794868439436, 0.004396241623908281, 0.02259974181652069, 0.015097531490027905, 0.00857965461909771, -0.01153265219181776, -0.027029236778616905, -0.006301722954958677, -0.014937910251319408, -0.021442485973238945, -0.004662277642637491, 0.01569611206650734, -0.016786858439445496, 0.019899478182196617, 0.006175355985760689, 0.007548765745013952, 0.006195308640599251, 0.019660046324133873, -0.015257153660058975, -0.039665937423706055, 0.01033549103885889, -0.01100058015435934, 0.002314511453732848, 0.0021149846725165844, -0.007176315877586603, -0.010401999577879906, -0.02878507412970066, -0.02406293898820877, -0.03817613795399666, -0.008686068467795849, -0.02533991076052189, -0.002251327969133854, -0.00535397045314312, 0.0023411151487380266, -0.012756416574120522, 0.006098870653659105, -0.02446199208498001, -0.023863410577178, -0.006135450676083565, -0.015257153660058975, -0.03681935369968414, -0.00466892821714282, -0.01687997207045555, 0.026510467752814293, 0.004881756845861673, 0.030088650062680244, -0.02048475667834282, 0.002768435049802065, 0.00525420717895031, -0.008765880018472672, 0.0004106927663087845, 0.004376288969069719, -0.024914253503084183, -0.04448118433356285, -0.009750212542712688, 0.03947971388697624, 0.013727447018027306, 0.017545061185956, -0.008247110061347485, -0.00669745123013854, 0.0497220903635025, 0.0084798913449049, -0.021375976502895355, -0.011964960023760796, -0.042113468050956726, -0.035994645208120346, 0.00586608937010169, -0.015310360118746758, -0.0030710508581250906, -0.01207137480378151, 0.015283756889402866, 0.04496005177497864, -0.0039007498417049646, -0.005656586028635502, -0.022772664204239845, 0.01835647039115429, -0.013035754673182964, 0.018649110570549965, 0.008147346787154675, 0.014671874232590199, -0.012656653299927711, 0.012184440158307552, -0.011027184315025806, 0.015390170738101006, 0.003021168988198042, -0.0006555288564413786, -0.01456546038389206, -0.01781109720468521, -0.00857965461909771, -0.01968664862215519, 0.015190644189715385, -0.022240592166781425, -0.016321295872330666, 0.017864303663372993, -0.017438646405935287, -0.023238226771354675, -0.006707427557557821, 0.0012420546263456345, -0.019247690215706825, -0.022174084559082985, -0.01895505003631115, 0.0001931877195602283, 0.0015637916512787342, -0.004343034233897924, -0.018196849152445793, -8.511067426297814e-05, -0.005945899989455938, 0.040996115654706955, 0.03104637749493122, 0.028146587312221527, -0.002871523844078183, -0.012962594628334045, -0.016108468174934387, -0.003953956998884678, -0.012610097415745258, -0.006943534594029188, 0.03112618811428547, 0.01483149640262127, -0.004086975008249283, 0.010747846215963364, -0.04027782008051872, -0.004170111380517483, -0.04719475284218788, -0.022825872525572777, 0.01722581870853901, 0.0025339911226183176, -0.0022280497942119837, -0.007974423468112946, 0.006763960234820843, -0.027853948995471, 0.01628139056265354, 0.007109806872904301, 0.02865205518901348, -0.02720216102898121, -0.02240021526813507, -0.04043744131922722, 0.013534571044147015, 0.007728340104222298, 0.026310941204428673, 0.029902424663305283, -0.004010489676147699, -0.04147498309612274, -0.011678971350193024, -0.00448602857068181, -0.014046690426766872, 0.002748482394963503, 0.019048163667321205, -0.013335044495761395, 0.015416774898767471, 0.012862831354141235, -0.011891799978911877, -0.02093701809644699, 0.00830696802586317, -0.01366093847900629, 0.022174084559082985, 0.0011140248971059918, 0.00042461807606741786, 0.006660871207714081, 0.016986386850476265, 0.008765880018472672, 0.014379234984517097, 0.0008363500237464905, 0.019899478182196617, -0.02567245438694954, -0.0003884538309648633, 0.009297951124608517, 0.014379234984517097, -0.007123108487576246, -0.0158823374658823, -0.004938289523124695, -0.017066197469830513, 0.006218587048351765, -0.00015328235167544335, 0.0192077849060297, -0.015390170738101006, -0.028944695368409157, -0.02061777375638485, -0.02254653349518776, 0.02793375961482525, 0.0005353970336727798, 0.01715930923819542, -0.01962014101445675, 0.03237655758857727, -0.02266624942421913, 0.021562201902270317, -0.005430455785244703, 0.010315538384020329, -0.02878507412970066, 0.02081730216741562, -0.005856113042682409, -0.01581582799553871, 0.02698933146893978, -0.014898004941642284, -0.02101682871580124, 0.011213408783078194, 0.004150158725678921, 0.01801062375307083, 0.009031915105879307, 0.021109940484166145, -0.008420033380389214, 0.008546399883925915, 0.01741204410791397, -0.008486541919410229, -0.02766772359609604, 0.018768826499581337, 0.026829710230231285, 0.003910726401954889, -0.0023311388213187456, -0.024821139872074127, 0.007568718399852514, 0.010860911570489407, 0.009810070507228374, 0.0022579787764698267, -0.03272240236401558, 0.02068428322672844, -0.003288867650553584, 0.008692719973623753, 0.003305494785308838, -0.010621479712426662, -0.002952997339889407, -0.011545953340828419, -0.004712159279733896, -0.0019038186874240637, 0.015642905607819557, -0.019846271723508835, 0.02381020411849022, 0.018516091629862785, -0.0118053387850523, -0.007588671054691076, -0.008772530592978, 0.006803865544497967, 0.0030710508581250906, -0.006704102270305157, -0.0345846526324749, -0.005786278750747442, -0.019061464816331863, 0.03437182679772377, 0.005606704391539097, -0.015336964279413223, -0.011499397456645966, -0.009597241878509521, -0.025978395715355873, -0.003631388768553734, -0.001429942436516285, 0.019234389066696167, 0.038255948573350906, 0.017784493044018745, -0.007675132714211941, 0.02241351641714573, -0.01568281091749668, 0.0005329029518179595, 0.005244230851531029, -0.007043297868221998, -0.011013882234692574, -0.018063830211758614, 0.007555416785180569, 0.02667008899152279, -0.005457059480249882, 0.02599169872701168, 0.020710887387394905, 0.006241864990442991, -0.00247579556889832, 0.010481810197234154, 0.016534125432372093, 0.007342588156461716, -0.007043297868221998, -0.006065616384148598, 0.01681346260011196, 0.012656653299927711, -0.002588860923424363, -0.005008123815059662, -0.006830469239503145, -0.005782953463494778, -0.004549212288111448, -0.027774138376116753, -0.030540909618139267, 0.006627616938203573, 0.0022779316641390324, 0.006577735301107168, -0.03349390625953674, -0.008765880018472672, -0.005480337422341108, -0.03439842909574509, 0.027641119435429573, -0.001970327692106366, -0.015416774898767471, 0.007608623709529638, 0.0002225971402367577, -0.005626657046377659, 0.0037577557377517223, 0.015789225697517395, 0.005812882445752621, -0.01715930923819542, 0.0024791210889816284, -0.0457315556704998, 0.01742534525692463, -0.005929273087531328, 0.0033819801174104214, -0.010149265639483929, 0.0005013112095184624, -0.010195822454988956, 0.005014774855226278, -0.029104316607117653, 0.022785967215895653, 0.02439548261463642, -0.011113645508885384, -0.0050713075324893, -0.013321742415428162, -0.012982547283172607, 0.0008571341168135405, -0.009697005152702332, -0.013009150512516499, 0.002100020181387663, -0.002706914208829403, -0.006388184614479542, 0.009391063824295998, -0.031205998733639717, -0.010554970242083073, -0.0029596483800560236, -0.025619247928261757, -0.009377761743962765, 0.21293506026268005, -0.02971619926393032, -0.007542115170508623, 0.02040494605898857, 0.003904075361788273, 0.00716301379725337, 0.022041065618395805, -0.00941101647913456, -0.011472794227302074, -0.004246596712619066, -0.005673213396221399, 0.01822345331311226, -0.015443378128111362, 0.004323081579059362, -0.010794403031468391, -0.0030278200283646584, -0.04895058646798134, -0.01980636455118656, -0.0034052582923322916, -0.0570380762219429, 0.018662411719560623, 0.00270026340149343, -0.005018100142478943, -0.005899344105273485, 0.01087421365082264, -0.0013052381109446287, -0.01687997207045555, -0.012643351219594479, 0.02140258066356182, -0.0005087934550829232, -0.02299879491329193, -0.00903856661170721, 0.002627103589475155, -0.005769651383161545, -0.012669955380260944, 0.008533098734915257, 0.019127974286675453, 0.006398160941898823, 0.024116145446896553, -0.006670847535133362, 0.01190510205924511, 0.014871401712298393, -0.018303263932466507, 0.009331205859780312, -0.008260411210358143, 0.023836808279156685, -0.003167488845065236, -0.01409989781677723, -0.023717092350125313, 0.02440878562629223, -0.03304164484143257, -0.00897205714136362, 0.05419149249792099, 0.03032808192074299, 0.005806231405586004, -0.02241351641714573, -0.0010092733427882195, 0.02612471580505371, -0.03344070166349411, 0.00987657904624939, -0.013900370337069035, 0.021163148805499077, 0.011545953340828419, 0.02001919411122799, -0.02214748039841652, 0.011313172057271004, 0.007229522801935673, 0.006351604592055082, 0.020365040749311447, -0.022825872525572777, 0.0018007297767326236, -0.01814364083111286, -0.011486095376312733, -0.017199214547872543, -0.016640540212392807, -0.002931382041424513, 0.02698933146893978, -0.015722716227173805, 0.013115565292537212, -0.0008064210414886475, 0.008686068467795849, -0.030700530856847763, -0.00249408558011055, -0.008393429219722748, -0.0006555288564413786, -0.030620720237493515, 0.01237066462635994, -0.006923581939190626, -0.0152970589697361, -0.003864170052111149, -0.02539311721920967, -0.016374504193663597, -0.006837120279669762, -0.006211936008185148, -0.0021382628474384546, -0.010016247630119324, 0.006201959680765867, 0.013820559717714787, 0.0106015270575881, -0.01386046502739191, -0.006767285522073507, -0.003751104697585106, 0.029476767405867577, 0.01868901588022709, -0.013321742415428162, 0.004938289523124695, 0.020112305879592896, -0.0025506182573735714, 0.004043744411319494, -0.01694647967815399, 0.027228765189647675, -0.0068171676248312, -0.008612909354269505, -0.024914253503084183, 0.004037093371152878, 0.030567513778805733, -0.027375083416700363, -0.030141856521368027, 0.013468062505126, 0.014911307021975517, 0.024488596245646477, -0.013374949805438519, -0.01090081688016653, 0.006424764636904001, -0.003307157661765814, 0.008785832673311234, -0.018170244991779327, 0.02013891004025936, 0.00016263517318293452, -0.018582601100206375, 0.02387671358883381, -0.02486104518175125, -0.013049055822193623, 0.005417154170572758, 4.845281182497274e-06, 0.028811676427721977, 0.011778735555708408, -0.015456680208444595, 0.03019506298005581, -0.017438646405935287, -0.001115687657147646, -0.004496004898101091, 0.0014033388579264283, 0.020391644909977913, -0.0001755212724674493, 0.007010043598711491, 0.025366513058543205, -0.03477087989449501, 0.008253760635852814, -0.0007432374986819923, -0.009550685063004494, -0.012842878699302673, 0.016121769323945045, -0.016254788264632225, 0.0099763423204422, 0.007535464130342007, -0.00594922574236989, -0.01980636455118656, -0.007881310768425465, 0.04128875583410263, -0.03450484201312065, 0.011060438118875027, 0.014206311665475368, -0.0036047850735485554, -0.017185913398861885, -0.02339784801006317, -0.1684538722038269, 0.01594884693622589, 0.02048475667834282, 0.004113578703254461, 0.024621613323688507, 0.03011525236070156, 0.03245636820793152, 0.014512252993881702, 0.0009244743851013482, -0.012237646616995335, 0.006554456893354654, 0.007475606165826321, -0.03830915689468384, -0.026483863592147827, -0.00036247377283871174, 0.015549792908132076, -0.007967771962285042, 0.020710887387394905, 0.02952997386455536, 0.019912779331207275, 0.006837120279669762, -0.006245190277695656, 0.012650002725422382, -0.0006788069731555879, 0.0038907735142856836, 0.009810070507228374, -0.009736910462379456, 0.02013891004025936, -0.002555606421083212, -0.02846583165228367, -0.01033549103885889, 0.02758791297674179, -0.003046110039576888, -0.00977016519755125, 0.01922108605504036, 0.008366825990378857, -0.002853234065696597, -0.013647636398673058, -0.00011493577767396346, 0.006348279304802418, 0.015164040960371494, -0.00270026340149343, 0.020125608891248703, 0.003814288415014744, 0.005919296760112047, 0.02439548261463642, 0.004532584920525551, 0.005387225188314915, 0.006334977690130472, -0.010568272322416306, 0.009863276965916157, -0.000598996237386018, 0.001996931154280901, 0.013488015159964561, 0.02667008899152279, -0.004868455231189728, 0.013940275646746159, 0.017199214547872543, -0.015270454809069633, -0.01894174888730049, -0.006072266958653927, 0.0005698985769413412, 0.016121769323945045, -0.02001919411122799, -0.006870374549180269, -0.0012935991398990154, -0.012716511264443398, -0.0014631969388574362, -0.023557471111416817, 0.011851894669234753, 0.012217693962156773, 0.0239432230591774, 0.01755836233496666, -0.00274183158762753, 0.006052314303815365, 0.0002475380024407059, -0.023783599957823753, 0.020045798271894455, 0.010501762852072716, -0.01894174888730049, -0.04567834734916687, 0.02486104518175125, -0.014951212331652641, -0.009889881126582623, 0.006494598928838968, 0.025419721379876137, 0.0036380395758897066, -0.013940275646746159, 0.0038807971868664026, -0.006807191297411919, 0.009570637717843056, -0.016374504193663597, -0.003197417827323079, -0.02008570358157158, 0.022918984293937683, 0.017066197469830513, 0.01263670064508915, -0.011220060288906097, -0.00752881309017539, 0.001644433825276792, 0.00857300404459238, -0.015350265428423882, -0.001735883648507297, 0.03777708485722542, 0.0205379631370306, 0.010654733516275883, 0.004678904544562101, 0.008526447229087353, 0.023224925622344017, 0.01459206361323595, -0.007495558820664883, 0.005626657046377659, 0.012084675952792168, -0.008759228512644768, 0.020710887387394905, 0.018662411719560623, 0.007242824882268906, -0.018329866230487823, 0.02507387474179268, -0.01569611206650734, 0.053286969661712646, -0.001745859975926578, -0.017864303663372993, 0.0018905169563367963, -0.005324041470885277, -0.020963620394468307, -0.10960675030946732, -0.00764852948486805, 0.01681346260011196, -0.009657099843025208, -0.002740168711170554, 0.007276079151779413, -8.188914216589183e-05, -0.0034850689116865396, -0.010155917145311832, 0.0002585535403341055, -0.015576396137475967, -0.03644690662622452, 0.008559701964259148, -0.006943534594029188, 0.01189845148473978, -0.0450664646923542, -0.010262330994009972, -0.018103735521435738, 0.008007677271962166, 0.03511672466993332, -0.00020420325745362788, -0.01601535454392433, 0.01237066462635994, -0.023890014737844467, 0.03349390625953674, -0.008100789971649647, -0.021043431013822556, 0.020165514200925827, 0.026563674211502075, 0.020365040749311447, -0.006863723509013653, -0.00810744147747755, 0.01842297986149788, -0.0020351738203316927, 0.007462304085493088, 0.0011140248971059918, -0.03987876698374748, -0.003884122706949711, 0.026350846514105797, -0.0344250313937664, 0.005197674501687288, 0.003335423767566681, 0.009916484355926514, -0.019859572872519493, 0.0022995469626039267, -0.009490827098488808, -0.02672329545021057, 0.01173217874020338, 0.01794411428272724, -0.026430657133460045, -0.01840967684984207, 0.0028482459019869566, -0.03801651671528816, -0.004519283305853605, 0.023690488189458847, -0.013441459275782108, 0.027508102357387543, 0.0035449271090328693, -0.017970718443393707, -0.005876065697520971, -0.0219479538500309, 0.016800161451101303, -0.005952551029622555, 0.02886488474905491, 0.00513449078425765, -0.0004738762800116092, -0.02819979563355446, -0.01280297338962555, 0.018848637118935585, 0.0001257434778381139, -0.02899790182709694, 0.007109806872904301, -0.03719180449843407, 0.015190644189715385, -0.026151319965720177, 0.008233807981014252, -0.013168771751224995, 0.00023901654640212655, 0.022493327036499977, 0.016906574368476868, -0.006507901009172201, -0.016866669058799744, 0.003864170052111149, -0.008366825990378857, 0.014179708436131477, 0.020524661988019943, 0.012510333210229874, -0.008626210503280163, 0.01552318874746561, -0.014365932904183865, -0.0003512504044920206, 0.03091336041688919, -0.005467035807669163, -0.010867562144994736, 0.008699370548129082, 0.036872562021017075, 0.008646163158118725, 0.006361580919474363, -0.0018938423600047827, 0.0022147479467093945, -0.024222560226917267, 0.008087488822638988, -0.056825246661901474, 0.02193465270102024, 0.005759675055742264, 0.007468955125659704, -0.008659465238451958, -0.02133607119321823, 0.016201579943299294, -0.018529392778873444, 0.00904521718621254, 0.008812435902655125, -0.022440120577812195, 0.02945016324520111, -0.008905548602342606, -0.02700263448059559, -0.02379690296947956, -0.0007419904577545822, 0.009863276965916157, -0.017465250566601753, -0.006607664283365011, 0.010934071615338326, 0.00478864461183548, -0.012650002725422382, 0.03410578891634941, -0.01795741729438305, -0.017385439947247505, 0.01549658551812172, 0.01449895091354847, 0.02492755465209484, 0.00904521718621254, -0.026364147663116455, 0.020777396857738495, -0.04349685460329056, -0.005576775409281254, 0.005756349768489599, 0.009464223869144917, 0.013820559717714787, -0.014738383702933788, -0.0008604595204815269, 0.007754943799227476, 0.06922251731157303, -0.020910413935780525, -0.003538276068866253, -0.01063478086143732, -0.033680133521556854, 0.021442485973238945, 0.033999375998973846, -0.016441011801362038, 0.006328326649963856, 0.00728273019194603, -0.02474132925271988, 0.00618533231317997, 0.026909520849585533, -0.004575815983116627, -0.009643797762691975, -0.008193902671337128, -0.024887649342417717, 0.02833281271159649, -0.0010275632375851274, 0.017771191895008087, -0.02186814323067665, 0.020897112786769867, -0.023916618898510933, 0.014525555074214935, -0.006936883553862572, 0.02886488474905491, 0.0005815376061946154, 0.009264696389436722, -0.023171719163656235, -0.022958889603614807, -0.014751684851944447, 0.011665670201182365, 0.004831875208765268, 0.011047136969864368, 0.01110034342855215, 0.008486541919410229, 0.017638172954320908, -0.0008637849823571742, -0.005334017798304558, -0.022386912256479263, 0.010495112277567387, -0.002191470004618168, -0.015443378128111362, -0.024648217484354973, 0.006135450676083565, 0.021974558010697365, 0.016640540212392807, 0.014552158303558826, 0.02088380977511406, -0.017784493044018745, 0.010155917145311832, 0.0089388033375144, -0.01636120118200779, -0.0030361334793269634, -0.0155896982178092, 0.007196268532425165, 0.01962014101445675, -0.007103155832737684, 4.941407314618118e-05, 0.03801651671528816, 0.04288497194647789, 0.002716890536248684, 0.014286122284829617, 0.007621925789862871, -0.020298531278967857, -0.015988752245903015, 0.016254788264632225, -0.015350265428423882, -0.017784493044018745, 0.006175355985760689, 0.026962729170918465, -0.001775788958184421, -0.0033952819649130106, 0.0377504788339138, 0.01476498693227768, -0.029157523065805435, 0.0032705776393413544, 0.014804892241954803, -0.006793889217078686, -0.008340222761034966, 0.04091630503535271, 0.01110034342855215, 0.039532918483018875, 0.022094273939728737, 0.01023572776466608, 0.01616167463362217, 0.014685176312923431, 0.00646799523383379, 0.035090122371912, 0.00626846868544817, -0.001054998254403472, 0.010987279005348682, -9.03066829778254e-05, -0.03346730396151543, -0.010741195641458035, 0.00513449078425765, -0.03626067936420441, -0.01781109720468521, 0.00877918116748333, -0.021389277651906013, 0.03160505369305611, 0.019660046324133873, -0.019912779331207275, -0.003731152042746544, 0.006245190277695656, 0.02472802810370922, -0.00239432230591774, 0.0012304155388846993, 0.017318930476903915, -0.033254474401474, 0.013454760424792767, -0.010002946481108665, 0.034478239715099335, -0.03955952450633049, -0.0022064344957470894, 0.0005757181206718087, 0.00562000647187233, 0.02274606190621853, -0.024821139872074127, -0.0216154083609581, 0.02952997386455536, 0.003764406545087695, 0.016201579943299294, -0.005493639502674341, -0.014073293656110764, -0.003518323414027691, 0.029769405722618103, -0.0026004998944699764, 0.009204838424921036, -0.029157523065805435, -0.0019121323712170124, 0.020710887387394905, -0.015443378128111362, -0.01040865108370781, 0.02068428322672844, -0.0010516727343201637, 0.012610097415745258, -0.012955943122506142, 0.014578761532902718, -0.0017392090521752834, -0.01915457844734192, 0.013208677992224693, -0.01854269579052925, -0.04014480113983154, 0.008932151831686497, -0.0012146197259426117, -0.024488596245646477, -0.003175802296027541, -0.020125608891248703], "d72026e6-8981-4646-a2aa-f11abe39ee29": [-0.019044049084186554, -0.02613176964223385, -0.011949602514505386, 0.005420022178441286, -0.006825462449342012, 0.025687946006655693, -0.006233698222786188, -0.026427652686834335, -0.010181034915149212, -0.0007783717010170221, 0.02523067407310009, 0.007666036486625671, 0.005900830961763859, 0.005151038523763418, -0.017336001619696617, -0.001269267057068646, 0.037442535161972046, -0.01560105662792921, 0.04419402778148651, -0.018667470663785934, 0.000688850530423224, -0.00516448775306344, 0.008789043873548508, 0.01638110913336277, -0.007894672453403473, 0.028592972084879875, 0.020926935598254204, -0.02024102583527565, 0.00568228168413043, -0.025714844465255737, -0.002340158447623253, 0.0007300386787392199, 0.0192995835095644, -0.004451680928468704, -0.032977405935525894, -0.00403475621715188, 0.0009876746917143464, -0.025203775614500046, 0.008479712530970573, -0.018479183316230774, 0.010745900683104992, -0.004021306987851858, -0.017685681581497192, -0.0008968926267698407, -0.008493161760270596, 0.023549526929855347, 0.010335699655115604, -0.0261183213442564, -0.011068681254982948, 0.005013184621930122, 0.020039288327097893, 0.01543966680765152, -0.012951566837728024, 0.0027066487818956375, -0.019972043111920357, -0.0022678691893815994, 0.006257234141230583, 0.031847674399614334, -0.012917944230139256, 0.02231220155954361, 0.00958254560828209, 0.002308216644451022, 2.8395646950230002e-05, 0.01634076237678528, -0.033165693283081055, -0.018344691023230553, -0.01624661684036255, -0.012830524705350399, -0.0035371361300349236, -0.017295654863119125, 0.033300187438726425, 0.02118247002363205, -0.009259765036404133, 0.013005363754928112, 0.02829708904027939, -0.03195526823401451, -0.017806723713874817, 0.00658001471310854, -0.02061760425567627, -0.006048772018402815, -0.011216621845960617, -0.026656288653612137, -0.013200377114117146, 0.007134793791919947, 0.021074876189231873, -0.01066520530730486, 0.01694597490131855, 0.0275439340621233, -0.016017980873584747, -0.024961691349744797, 0.0035573099739849567, 0.017941216006875038, 0.01656939834356308, 0.01332141924649477, -0.000886805763002485, 0.017120815813541412, -0.018089156597852707, 0.023280542343854904, -0.010302077047526836, -0.023549526929855347, -0.016354210674762726, -0.0023283904884010553, -0.02419508807361126, -0.0001655931118875742, -0.02931922674179077, 0.015843141824007034, -0.008244351483881474, -0.0023418397177010775, 0.00396751007065177, -0.03515617549419403, -0.009051302447915077, 0.0324932336807251, -0.03510237857699394, -0.04362916201353073, -0.006650622934103012, -0.0042028711177408695, 0.028028106316924095, -0.016919076442718506, -0.019837550818920135, -0.023562975227832794, -0.012722930870950222, 0.013240724802017212, -0.008089685812592506, -0.013758517801761627, 0.011848733760416508, -0.012158065102994442, 0.022244954481720924, -0.0218952763825655, -0.002414128975942731, -0.00550744216889143, 0.046345897018909454, 0.01065848022699356, -0.001577757764607668, -0.003044559620320797, -0.005295617505908012, 0.019057497382164, -0.03125591203570366, 0.010362598113715649, -0.01886921003460884, -0.034429918974637985, 0.021061426028609276, 0.011875632219016552, 0.0028108800761401653, -0.024490969255566597, -0.01868092082440853, 0.024961691349744797, 0.03682387247681618, 0.02094038389623165, -0.014014053158462048, -0.0015794389182701707, 0.030798638239502907, 0.008869738318026066, 0.009192518889904022, -0.013381941244006157, 0.00028831695090048015, 0.001840857439674437, 0.02246014215052128, -0.01475375797599554, 0.01831779256463051, 0.0011650357628241181, 0.024625461548566818, 0.01745704375207424, 0.022110464051365852, 0.0011532678036019206, 0.0015180769842118025, 0.027786020189523697, 0.030798638239502907, -0.014269587583839893, -0.03496788442134857, -0.014000603929162025, 0.0009111824329011142, 0.029615109786391258, -0.029265429824590683, 0.01334159355610609, -0.006633811630308628, -0.00337238353677094, 0.040885526686906815, 0.029642008244991302, -0.011613372713327408, 0.0016181053360924125, -0.05040755122900009, -0.019945144653320312, 0.020025840029120445, 0.03214355558156967, -0.0010103702079504728, -0.0019803927280008793, -0.0011549489572644234, -0.015076538547873497, 0.021384207531809807, 0.0097641097381711, 0.016125574707984924, 0.036501094698905945, -0.013637475669384003, -0.02532481960952282, -0.642117977142334, -0.027194255962967873, -0.024020247161388397, -0.02014688216149807, -0.014605817385017872, 0.019514769315719604, 0.014444426633417606, 0.004673592280596495, -0.007423951290547848, -0.0009624574449844658, -0.01543966680765152, 0.012527917511761189, -0.010160860605537891, -0.020980730652809143, -0.02613176964223385, -0.009279939346015453, 0.021290061995387077, -0.03421473130583763, -0.0021636378951370716, -0.01679803431034088, -0.0007636616355739534, 0.00026982431882061064, -0.017430145293474197, 0.003222761442884803, -0.01162682194262743, -0.010604684241116047, 0.024773402139544487, 0.00470721535384655, 0.0036346428096294403, 0.03149799630045891, -0.020173780620098114, 0.011418359354138374, 0.01525137759745121, 0.016165923327207565, 0.04933161661028862, 0.0008741971687413752, -0.027597730979323387, 0.012790177017450333, 0.005756251979619265, 0.002657895442098379, -0.020698297768831253, -0.01858677715063095, 0.03381125628948212, 0.016031431034207344, 0.010618133470416069, 0.007760180626064539, 0.014067849144339561, -0.018331240862607956, 0.0003173167642671615, 0.022433243691921234, -0.0002261144545627758, -0.00715496763586998, -0.03182077780365944, -0.00436762347817421, 0.0014642801834270358, -0.002225840464234352, 0.03599002584815025, 0.0038195690140128136, -0.005655383225530386, -0.006035322789102793, 0.014767207205295563, 0.03063724748790264, -0.015170683152973652, 0.002908386755734682, -0.02075209468603134, 0.00844608899205923, -0.010974536649882793, 0.01718806102871895, 0.03026067093014717, 0.00011022028775187209, 0.010537438094615936, 0.01839848794043064, 0.005514166783541441, -0.019635813310742378, 0.02451786771416664, 0.01487480103969574, 0.028592972084879875, -0.02372436597943306, 0.0017635246040299535, 0.031094519421458244, 0.008008990436792374, -0.008311597630381584, -0.039513710886240005, -0.01566830277442932, 0.031659387052059174, -0.010537438094615936, -0.00891681108623743, 0.02029482275247574, -0.006899432744830847, 0.0028663580305874348, 0.0053426893427968025, 0.017631884664297104, 0.005251907277852297, 0.0093001127243042, 0.038948845118284225, 0.005769701208919287, 0.012084094807505608, 0.009279939346015453, 0.006986852735280991, 0.0030546465422958136, -0.004313826560974121, -0.010759349912405014, 0.01916509121656418, -0.0003366499731782824, 0.0024561577010899782, -0.016071777790784836, -0.03017997555434704, 0.0037321492563933134, 0.0334346778690815, -0.019191989675164223, -0.01459236815571785, -0.014161993749439716, -0.021532148122787476, 0.0010196164948865771, 0.018223648890852928, -0.01745704375207424, 0.02410094253718853, -0.004448318388313055, 0.020738646388053894, -0.0037825838662683964, 0.02630660869181156, 0.00027801989926956594, 0.014861351810395718, -0.016085227951407433, 0.027315298095345497, 0.040320660918951035, 0.02500203810632229, -0.005251907277852297, 0.008096410892903805, -0.00943460501730442, -0.007410502061247826, -0.0006220248760655522, 0.011539402417838573, 0.0040549300611019135, 0.012319454923272133, -0.016878729686141014, 0.018089156597852707, 0.00601178640499711, 0.011599923484027386, -0.036366600543260574, -0.009918775409460068, -0.005204835440963507, 0.024221984669566154, 0.007558443117886782, 0.0006787636666558683, -0.03257393091917038, -0.017336001619696617, -0.01531862374395132, -0.0494123138487339, 0.008748696185648441, -0.020227577537298203, 0.007787079084664583, 0.00969686359167099, 0.005974801257252693, 0.009522024542093277, -0.015116886235773563, -0.00901095476001501, 0.007067547645419836, 0.008486436679959297, -0.020510010421276093, 0.00901767984032631, 0.006475783418864012, -0.022016318514943123, 0.011875632219016552, 0.025620700791478157, -0.015708649531006813, -0.022231506183743477, 0.02159939333796501, -0.0013743387535214424, -0.03453751280903816, 0.015022741630673409, -0.0012768321903422475, -0.0024107666686177254, 0.034860290586948395, -0.027409443631768227, -0.014511672779917717, -0.01877506449818611, -0.014108196832239628, 0.0015306855784729123, 0.012164789251983166, 0.0067313178442418575, 0.012810350395739079, -0.014888250268995762, -0.0014163674786686897, 0.03986338898539543, -0.01164699625223875, -0.014995843172073364, -0.00498964823782444, 0.0018526255153119564, 0.01581624336540699, 0.00891681108623743, 0.0015483376337215304, 0.0017433508764952421, -0.01162682194262743, 0.0026309972163289785, 0.006687608081847429, 0.0127094816416502, 0.03055655211210251, 0.0019770304206758738, 0.0289426501840353, 0.010241555981338024, 0.00754499388858676, 0.023522628471255302, -0.000599749677348882, -0.00022065071971155703, -0.024907894432544708, 0.008022439666092396, 0.0032244424801319838, 0.027086662128567696, -0.016744237393140793, 0.0008212409447878599, -0.04091242700815201, -0.003520324593409896, -0.0029134301003068686, 0.002434302819892764, 0.03469890356063843, 0.011687343008816242, 0.0066909706220030785, -0.010241555981338024, -0.00459962198510766, 0.02367056906223297, -0.019313031807541847, 0.011546126566827297, -0.008130033500492573, -0.014713410288095474, -0.023509178310632706, 0.011720966547727585, 0.035882432013750076, 0.024625461548566818, -0.007941745221614838, 0.00981118157505989, -0.009602718986570835, 0.00382965593598783, 0.020631052553653717, 0.017806723713874817, -0.0035068753641098738, 0.014094747602939606, -0.011667169630527496, 0.042768415063619614, -0.041208308190107346, -0.00030302698723971844, -0.007054098416119814, 0.032035961747169495, -0.0186002254486084, -0.014417528174817562, 0.0046366071328520775, 0.0053426893427968025, 0.00624714745208621, 0.018156401813030243, 0.024773402139544487, -0.004693766124546528, 0.0003875046968460083, -0.01958201639354229, -0.01811605505645275, 0.007901397533714771, -0.019326481968164444, -0.003681714879348874, 0.011902530677616596, 0.015506912022829056, 0.03208975866436958, -0.0012205137172713876, 0.00249482411891222, 0.03168628364801407, 0.011505779810249805, 0.04325258359313011, -0.001001964439637959, 0.007995541207492352, 0.012339629232883453, -0.01440407894551754, -0.029910990968346596, -0.025862786918878555, -0.01732255332171917, 0.010470191948115826, -0.004724026657640934, -0.0010414713760837913, -0.005843671504408121, 0.002024102723225951, 0.00861420389264822, 0.0038397428579628468, 0.0026309972163289785, -0.01958201639354229, -0.016488702967762947, 0.02104797773063183, 0.005504079628735781, 0.00549735501408577, -0.017336001619696617, -0.018290894106030464, -0.009925499558448792, -0.023926103487610817, 0.047986697405576706, -0.022392896935343742, 0.00816365610808134, 0.024880995973944664, -0.010154136456549168, -0.0005909236497245729, -0.020362069830298424, 0.001760162296704948, -0.016260067000985146, 0.03550585359334946, -0.0017652057576924562, -0.0006022714078426361, 0.005100604146718979, -0.010517263785004616, 0.009333735331892967, 0.034860290586948395, 0.0015769171295687556, -0.0014113240176811814, -0.0160045325756073, 0.021854927763342857, -0.018331240862607956, 0.007423951290547848, -0.023226745426654816, -0.011371287517249584, -0.002688156208023429, 0.0004072581941727549, 0.010530713014304638, -0.014699961058795452, 0.016865279525518417, 0.02334778755903244, -0.011431808583438396, -0.009219417348504066, -0.019138192757964134, -0.016488702967762947, 0.00550744216889143, 0.1078086793422699, 0.0035001509822905064, -0.02767842635512352, -0.0005627644131891429, 0.0015533810947090387, 0.014982393942773342, -0.036501094698905945, -0.02381850965321064, 0.02931922674179077, -0.00852006021887064, 0.0030596901196986437, -0.005470456555485725, 0.02178768254816532, -0.00765931187197566, 0.0031941819470375776, -0.011478881351649761, -0.00402466906234622, 0.01609867624938488, -0.008553682826459408, 0.007080996874719858, -0.004001133143901825, 0.008372118696570396, 0.002540215151384473, 0.011586474254727364, -0.0320090651512146, -0.021357309073209763, 0.020039288327097893, 0.004387797322124243, 0.01816985197365284, -0.018425386399030685, -0.010369323194026947, 0.03413403779268265, 0.028458479791879654, 0.01037604734301567, -0.024544766172766685, -0.002590649528428912, -0.0007871977286413312, 0.02837778441607952, -0.01316002942621708, -0.005685643758624792, 0.020456213504076004, 0.024181637912988663, 0.008822666481137276, 0.0013751793885603547, 0.00019564364629331976, 0.005231733899563551, -0.022944312542676926, 0.001451671589165926, -0.03615141287446022, -0.013126406818628311, 0.03572104126214981, -0.021585945039987564, -0.02137075737118721, 0.006183263845741749, 0.0005207356880418956, 0.007686210330575705, -0.013691272586584091, -0.016502153128385544, -0.020604154095053673, 0.03940611705183983, -0.00771983340382576, 0.005561238620430231, 0.014780656434595585, 0.012003399431705475, -0.01958201639354229, -0.015453116036951542, -0.02090003713965416, -0.00997929647564888, -0.01045001856982708, 0.028270190581679344, -0.012850698083639145, 0.0010162541875615716, -0.02114212140440941, 0.010335699655115604, 0.023697467520833015, 0.01689217798411846, 0.008130033500492573, -0.015506912022829056, -0.0016870324034243822, -0.009905326180160046, -0.01745704375207424, -0.03375745937228203, 0.01717461086809635, -0.008594030514359474, -0.02131696045398712, 0.004350812174379826, 0.009448053315281868, 0.02198942005634308, -0.026575593277812004, 0.007033924572169781, -5.731665078201331e-05, 0.02453131601214409, 0.013119681738317013, -0.020698297768831253, 0.0027133733965456486, 0.0004761852615047246, -0.012453947216272354, -0.013879560865461826, -0.010860218666493893, -0.023186398670077324, -0.00872852187603712, -0.03219735249876976, 0.002197260968387127, -0.0033538909628987312, -0.0010851812548935413, -0.008627653121948242, 0.0001967994321603328, 0.02137075737118721, -0.01459236815571785, -0.020550357177853584, 0.023172948509454727, -0.027422891929745674, -0.004828257951885462, -0.0031151678413152695, 0.002488099504262209, 0.002198942005634308, 0.02141110599040985, 0.011135926470160484, 0.01873471774160862, -0.0030832260381430387, -0.0025519831106066704, -0.028216393664479256, -0.001625670469366014, -0.009266490116715431, -0.031175214797258377, 0.007249111775308847, 0.00020488996233325452, -0.015695201233029366, 0.03252013400197029, 0.0006325320573523641, 0.004280203953385353, 0.0005119096604175866, 0.01572209969162941, -0.013193652033805847, -0.037012163549661636, 0.011431808583438396, -0.0037657723296433687, -0.0022964486852288246, -0.012568265199661255, -0.001914827967993915, -0.01803535968065262, -0.0310676209628582, -0.019850999116897583, -0.038760557770729065, -0.0016727426555007696, -0.01924578659236431, -0.007215488702058792, -0.006243784911930561, 0.013173478655517101, -0.00686244759708643, 0.002493143081665039, -0.011196448467671871, -0.03252013400197029, -0.004303739871829748, -0.0028041554614901543, -0.033111896365880966, -0.006912881974130869, -0.004966112319380045, 0.026293160393834114, -0.0028596334159374237, 0.03211665898561478, -0.022608082741498947, 0.010806421749293804, 0.00878231879323721, -0.022419795393943787, -0.006795201450586319, -0.007914846763014793, -0.02527102269232273, -0.02475995384156704, -0.011384736746549606, 0.03370366245508194, 0.01503619085997343, 0.024343028664588928, -0.0003933887055609375, -0.006704419851303101, 0.04777151346206665, 0.003406006610020995, -0.005409935489296913, -0.012433772906661034, -0.025069285184144974, -0.017672231420874596, 0.0031017186120152473, -0.016408007591962814, 0.01230600569397211, -0.011566300876438618, 0.004505477380007505, 0.055841024965047836, 0.008540233597159386, -0.008990781381726265, -0.020644502714276314, 0.017255306243896484, -0.0053359647281467915, 0.00709444610401988, 0.01760498620569706, 0.02246014215052128, -0.02071174792945385, 0.020980730652809143, 0.004663505591452122, 0.00595462741330266, 0.00804933812469244, 0.004038118291646242, -0.004058292135596275, -0.010624857619404793, -0.006391725968569517, -0.027974309399724007, 0.002466244623064995, -0.024114392697811127, -0.013933357782661915, 0.020886586979031563, -0.02018722891807556, -0.020792443305253983, -0.012850698083639145, 0.0006371552008204162, -0.02800120785832405, -0.025593802332878113, -0.0010414713760837913, 0.002071174792945385, 0.007067547645419836, -0.00844608899205923, -0.01981065236032009, 0.0060252356342971325, -0.015587607398629189, 0.03986338898539543, 0.014363731257617474, 0.01643490605056286, 0.0024090856313705444, -0.012198412790894508, 0.0013608896406367421, -0.0010708915069699287, -0.004075103439390659, -0.012057196348905563, 0.029050244018435478, -0.002984038321301341, -0.011478881351649761, 0.008277974091470242, -0.02724805288016796, 0.0009960804600268602, -0.0334346778690815, -0.0357748381793499, 0.015977634117007256, -0.0014306572265923023, -0.015506912022829056, 0.00470721535384655, -0.0073903282172977924, -0.02734219655394554, 0.004256667569279671, 0.005803324282169342, 0.01355678029358387, -0.032923609018325806, -0.02640075422823429, -0.032358743250370026, 0.0033236301969736814, 0.005120777990669012, 0.016367660835385323, 0.02781291864812374, -0.01651560142636299, -0.03784601017832756, -0.007020475342869759, -0.0015500187873840332, -0.012554815970361233, 0.001862712437286973, 0.00430710194632411, 0.002086305059492588, 0.002999168587848544, 0.019407177343964577, -0.005103966221213341, -0.009192518889904022, 0.008715072646737099, -0.012770002707839012, 0.024585112929344177, 0.005567963235080242, -0.007666036486625671, 0.014256138354539871, 0.005241820588707924, 0.018102604895830154, 0.004468492232263088, -0.005352776497602463, 0.02178768254816532, -0.01892300508916378, -0.0030260670464485884, 0.010739175602793694, 0.005493992939591408, 0.012783451937139034, -0.012931393459439278, -0.00583694688975811, -0.007128069177269936, 0.011041782796382904, 0.0093001127243042, 0.0002729764673858881, -0.02781291864812374, -0.0348333939909935, -0.0032748770900070667, -0.017712578177452087, 0.015883490443229675, -0.011714241467416286, 0.01845228485763073, -0.00934718456119299, 0.027920512482523918, -0.028350885957479477, 0.02570139616727829, -0.011734415777027607, 0.011660445481538773, -0.03520997241139412, 0.012810350395739079, 0.0057259914465248585, -0.01595073565840721, 0.016179371625185013, -0.013173478655517101, -0.018102604895830154, 0.026279710233211517, 0.010954362340271473, 0.0020661314483731985, 0.016085227951407433, 0.012184963561594486, 0.0022006232757121325, 0.0014491499168798327, 0.02306535467505455, -0.0043777101673185825, -0.029857194051146507, 0.01877506449818611, 0.02391265332698822, -0.006482508033514023, 0.0001949081342900172, -0.02387230657041073, 0.015237928368151188, 0.018707819283008575, 0.004048205446451902, 0.0024981864262372255, -0.03865296393632889, 0.019420625641942024, -0.008183830417692661, 0.017120815813541412, 0.01901715062558651, -0.007551718503236771, -0.014175442978739738, -0.030798638239502907, -0.007168416399508715, 0.0009885152103379369, 0.005490630399435759, -0.017578087747097015, 0.023616772145032883, 0.01615247316658497, -0.0039305249229073524, -0.013812314718961716, 0.000969182001426816, 0.010786247439682484, 0.00852006021887064, -0.006132829003036022, -0.05059584230184555, -0.008546958677470684, -0.009488401003181934, 0.038007400929927826, 0.01021465752273798, -0.007948469370603561, -0.007995541207492352, -0.01821019873023033, -0.023616772145032883, -0.02009308524429798, 0.002968908054754138, 0.017309103161096573, 0.0343761220574379, 0.01508998777717352, 0.00011726009688572958, 0.012857422232627869, -0.026333507150411606, 0.010362598113715649, -0.0025721569545567036, -0.0006922128377482295, -0.015116886235773563, -0.011525953188538551, -0.0006464015459641814, 0.024020247161388397, -0.01254136674106121, 0.015076538547873497, 0.0188288614153862, 0.00017242277681361884, -0.0018173214048147202, 0.0014684831257909536, 0.00901767984032631, 0.016744237393140793, -0.01868092082440853, -0.009542197920382023, 0.023468831554055214, 0.01515723392367363, -0.009750660508871078, -0.00793502014130354, -0.008224178105592728, -0.005541064776480198, 0.005221646744757891, -0.01560105662792921, -0.026656288653612137, 0.012158065102994442, -0.01292466837912798, -0.0026175479870289564, -0.013092783279716969, -0.007995541207492352, -0.017995012924075127, -0.035183072090148926, 0.03087933361530304, -0.0074037774465978146, -0.0009658197523094714, 0.01896335370838642, 0.000675821618642658, -0.011290592141449451, -0.006337929517030716, 0.0068321870639920235, 0.007175141014158726, -0.032789118587970734, 0.0031437473371624947, -0.03601692244410515, 0.009037853218615055, -9.151751146418974e-05, -0.009118548594415188, -0.03082553669810295, 0.01094091311097145, -0.006926331203430891, -0.011317490600049496, -0.020442763343453407, 0.023710915818810463, 0.01916509121656418, -0.003809482092037797, 0.003980959299951792, -0.017726028338074684, -0.00431718910112977, 0.006600188557058573, -0.019084395840764046, -0.01821019873023033, -0.0035606722813099623, -0.004468492232263088, 0.015748998150229454, -6.220248906174675e-05, -0.022043216973543167, -0.01292466837912798, -0.008210728876292706, -0.03364986553788185, -0.0014827728737145662, 0.2113136202096939, -0.03238564357161522, 0.0024242158979177475, 0.023226745426654816, 0.001827408210374415, 0.004676954820752144, 0.007551718503236771, -0.014605817385017872, -0.02112867310643196, -0.006660709623247385, -0.019097846001386642, 0.023751264438033104, -0.020967282354831696, 0.0009254721808247268, 0.0021703625097870827, 0.010759349912405014, -0.050757233053445816, -0.019286133348941803, 0.0012020210269838572, -0.07235662639141083, 0.009004230611026287, 0.0013650924665853381, -0.012985190376639366, -0.012037022039294243, 0.00943460501730442, 0.0018727992428466678, -0.019501321017742157, -0.005826860200613737, 0.01755118928849697, -0.0011339345946907997, -0.027315298095345497, -0.01666354201734066, 0.0046366071328520775, -0.009515299461781979, -0.00946150254458189, 0.005830222740769386, 0.010557611472904682, 0.005931091494858265, 0.01016758568584919, -0.01277672778815031, 0.016932526603341103, 0.007033924572169781, -0.012272383086383343, -0.0015718736685812473, 0.003326992504298687, 0.023213297128677368, -0.006620362401008606, -0.01515723392367363, -0.02278292179107666, 0.014000603929162025, -0.03243944048881531, -0.00106500752735883, 0.030045483261346817, 0.04774461314082146, 0.008876463398337364, -0.012084094807505608, -0.005376312416046858, 0.026199016720056534, -0.02773222327232361, 0.025540005415678024, -0.02067139931023121, 0.01755118928849697, 0.012171514332294464, 0.024961691349744797, -0.02161284349858761, 0.013946807011961937, 0.003785946173593402, 0.012245484627783298, 0.013852662406861782, -0.02067139931023121, 0.010799696668982506, -0.004545825067907572, 0.00218213046900928, -0.00971703790128231, -0.017120815813541412, 0.000740966119337827, 0.014659613370895386, -0.022984661161899567, -7.785818161210045e-05, 0.0009632980218157172, 0.009031129069626331, -0.027759121730923653, 0.009098375216126442, -0.011808386072516441, 0.009226142428815365, -0.02457166463136673, 0.0012684264220297337, -0.02057725563645363, -0.01788741908967495, 0.008405742235481739, -0.02046966180205345, -0.025297921150922775, -0.0025049110408872366, -0.013045711442828178, -0.004112089052796364, -0.024840647354722023, 0.01320710126310587, 0.00993222463876009, 0.008795768022537231, -0.003748960793018341, -0.006395088508725166, -0.007007026579231024, 0.02240634523332119, 0.018008461222052574, -0.03432232514023781, 0.0017870607553049922, 0.018721267580986023, 0.007477747742086649, 0.0015634680166840553, -0.0005631846725009382, 0.019030598923563957, -0.007800528313964605, -0.006371552124619484, -0.018438834697008133, -0.002746996469795704, 0.02221805602312088, -0.020496560260653496, -0.014995843172073364, 0.013866111636161804, 0.002203985583037138, 0.03082553669810295, -0.0030109367799013853, -0.003580845892429352, 0.022567735984921455, -0.005077068228274584, -0.001481932238675654, -0.013987154699862003, 0.023146050050854683, 0.0008006468997336924, -0.005369587801396847, 0.021720437332987785, -0.028781259432435036, 0.0006989374523982406, 0.017483942210674286, -0.008506610989570618, 0.00997929647564888, 0.010954362340271473, -0.020510010421276093, 0.030664145946502686, -0.017093917354941368, -0.004394521936774254, -0.0005703296046704054, 0.017147712409496307, 0.0012818756513297558, 0.01016758568584919, -0.014256138354539871, 0.023899205029010773, -0.023522628471255302, 0.006939780432730913, 0.001254136674106121, -0.02726150117814541, -0.011815110221505165, 0.005416660103946924, -0.02169353887438774, 0.00572935352101922, -0.0003828815242741257, -0.0127094816416502, -0.019662711769342422, -0.011781487613916397, 0.02584933675825596, -0.028539175167679787, 0.011418359354138374, 0.02029482275247574, -0.010934188961982727, -0.02010653354227543, -0.020698297768831253, -0.17096605896949768, 0.014430977404117584, 0.014807554893195629, -0.005386399570852518, 0.020832790061831474, 0.017618434503674507, 0.015116886235773563, 0.007585341576486826, 0.00408519059419632, -0.0123598026111722, 0.014135095290839672, 0.010396221652626991, -0.040885526686906815, -0.036501094698905945, -0.006596826016902924, 0.006388363894075155, -0.007995541207492352, 0.013415563851594925, 0.04118141159415245, 0.023993348702788353, -0.003950698766857386, -0.015641404315829277, 0.007276010233908892, -0.0032563842833042145, -0.0034043253399431705, 0.005500717554241419, -0.001945088617503643, 0.022527387365698814, -0.008923535235226154, -0.027463238686323166, -0.014525122009217739, 0.02762462943792343, -0.0047610122710466385, -0.024773402139544487, 0.03087933361530304, 0.006028598174452782, 0.006791839376091957, -0.017201509326696396, -0.0069734035059809685, 0.004848431795835495, 0.01981065236032009, 0.0003675410698633641, 0.019286133348941803, -0.003014299087226391, 0.00459962198510766, 0.04058964550495148, -0.007571892347186804, -0.009266490116715431, 0.008210728876292706, -0.019662711769342422, 0.02274257503449917, 0.004787910729646683, 0.02197597175836563, 0.009158896282315254, 0.02641420252621174, -0.006852360907942057, 0.005715904291719198, 0.020913485437631607, -0.015305174514651299, -0.03534446284174919, -0.006260596681386232, -0.010927463881671429, 0.018519530072808266, -0.010288627818226814, -0.0031420662999153137, 0.00019900593906641006, -0.003118530148640275, 0.0051779369823634624, -0.028727462515234947, 0.016972873359918594, 0.006899432744830847, 0.007423951290547848, 0.022110464051365852, -0.015237928368151188, -0.008089685812592506, -0.0036716279573738575, -0.023522628471255302, 0.0254189632833004, -0.0060084243305027485, -0.012655684724450111, -0.04607691243290901, 0.03031446784734726, -0.01718806102871895, -0.012548090890049934, -0.007578616961836815, 0.01896335370838642, -0.0019265960436314344, -0.006825462449342012, -0.010308802127838135, 0.0005833584582433105, 0.005359501112252474, -0.017726028338074684, -0.014511672779917717, -0.008950433693826199, 0.02094038389623165, 0.012601887807250023, 0.018223648890852928, -0.008103135041892529, 0.005504079628735781, -0.0036245558876544237, 0.004327275790274143, -0.020926935598254204, -7.473229743482079e-06, 0.029722703620791435, 0.03383815288543701, 0.018479183316230774, 0.003316905815154314, 0.01651560142636299, 0.025378616526722908, 0.0057495273649692535, -0.014726859517395496, 0.008661276660859585, 0.025876235216856003, -0.0125951636582613, 0.02202976867556572, 0.034107137471437454, -0.005127502605319023, -0.01915164291858673, 0.02913093939423561, -0.00816365610808134, 0.05473819002509117, 0.0007733282400295138, -0.018815413117408752, 0.008022439666092396, -0.012070645578205585, -0.01747049391269684, -0.11803006380796432, -0.009770833887159824, 0.021101774647831917, 0.0076727611012756824, 0.01405439991503954, 0.012084094807505608, -0.004444956313818693, 0.00046862009912729263, -0.009703588671982288, -0.0008300670306198299, -0.01656939834356308, -0.018506081774830818, 0.015937287360429764, -0.001892973086796701, 0.00442478246986866, -0.04301049932837486, -0.0022359273862093687, 0.005530978087335825, -0.010577785782516003, 0.02414129115641117, 0.004592897370457649, -0.02272912673652172, 0.012736380100250244, -0.02532481960952282, 0.026790780946612358, 0.007504646200686693, -0.02447752095758915, 0.014027501456439495, 0.023562975227832794, 0.0221239123493433, -0.016529051586985588, -0.00538976164534688, 0.004898866172879934, 0.0018845673184841871, 0.002820966998115182, 0.001666858559474349, -0.0470721535384655, -0.0005526775494217873, 0.019918246194720268, -0.03308499976992607, 0.011149375699460506, 0.013718171045184135, 0.009091650135815144, -0.011606648564338684, -0.01019448321312666, -0.00261250464245677, -0.034053340554237366, -0.0030630521941930056, 0.017591536045074463, -0.022796371951699257, -0.02057725563645363, 0.00669433269649744, -0.03652799129486084, -0.012608612887561321, 0.02076554484665394, -0.017537739127874374, 0.02969580516219139, 0.01367109827697277, -0.020039288327097893, -0.012796901166439056, -0.027651527896523476, 0.015829693526029587, 0.012184963561594486, 0.02739599347114563, -0.004206233192235231, 0.00936735887080431, -0.01162682194262743, -0.01811605505645275, 0.035747937858104706, -0.008015715517103672, -0.02150524966418743, -0.003503513289615512, -0.03303120285272598, 0.022648431360721588, -0.01704012043774128, 0.005947902798652649, -0.02613176964223385, 0.0024040420539677143, 0.0042129578068852425, 0.01656939834356308, -0.005813410971313715, -0.0254189632833004, -0.0016029749531298876, -0.002420853590592742, 0.018277445808053017, 0.027570832520723343, 0.003873365931212902, -0.011620097793638706, 0.0011557894758880138, -0.016179371625185013, -0.007652587257325649, 0.03620520979166031, -0.0065295803360641, -0.016690440475940704, 0.01032897550612688, 0.04543135315179825, 0.01775292679667473, 0.006385001353919506, -0.002210710197687149, -0.004922402556985617, -0.024343028664588928, 0.011270418763160706, -0.052559420466423035, 0.01717461086809635, -0.004687041509896517, 0.0034934263676404953, -0.006933055818080902, -0.01496894471347332, 0.012561540119349957, -0.015130335465073586, -0.009454778395593166, 0.02348227985203266, -0.017295654863119125, 0.026279710233211517, -0.014363731257617474, -0.02137075737118721, -0.026790780946612358, -0.012373251840472221, 0.006274045445024967, -0.02357642538845539, -0.0026091423351317644, 0.00663717370480299, 0.009959123097360134, 0.0015029466012492776, 0.023146050050854683, 0.006758216302841902, -0.016771135851740837, 0.006092481780797243, 0.003651454346254468, 0.01447132509201765, 0.007639138028025627, -0.023885756731033325, 0.022957762703299522, -0.03929852321743965, -0.0040952772833406925, -0.005396486259996891, -0.0014340195339173079, 0.015063089318573475, -0.01699977181851864, 0.008661276660859585, -0.0014155269600450993, 0.05863845348358154, -0.007625688798725605, -0.01038277242332697, 0.002748677507042885, -0.03615141287446022, -0.0016290327766910195, 0.03289671242237091, -0.009374083019793034, 0.00385991670191288, 0.019945144653320312, -0.015466565266251564, 0.00019091540889348835, 0.02829708904027939, 0.00880249310284853, -0.03136350214481354, 0.00020825225510634482, -0.025499658659100533, 0.03997098281979561, -0.006055496167391539, 0.01390645932406187, -0.02861987054347992, 0.013879560865461826, -0.015520361252129078, 0.011075405403971672, -0.00936735887080431, 0.017537739127874374, 0.0015743954572826624, -0.0007745891343802214, -0.016730789095163345, -0.015116886235773563, -0.011525953188538551, 0.012037022039294243, -0.0010313845705240965, 0.0015794389182701707, -0.006136191543191671, 0.0155338104814291, 0.008109860122203827, -0.010059991851449013, 0.008775594644248486, -0.0188288614153862, 0.01004654262214899, -0.001960218884050846, -0.013186927884817123, -0.02950751595199108, 0.002970589092001319, 0.026225915178656578, 0.006758216302841902, 0.019286133348941803, 0.005830222740769386, -0.014484774321317673, 0.015076538547873497, 0.003271514782682061, -0.018048807978630066, 2.006214117500349e-06, -0.010840044356882572, 0.014484774321317673, 0.0218818262219429, -0.018707819283008575, 0.0028798070270568132, 0.030206874012947083, 0.03682387247681618, 0.0033891950733959675, 0.015170683152973652, 0.02005273848772049, -0.016085227951407433, -0.008795768022537231, -0.0008359510102309287, -0.023562975227832794, -0.005567963235080242, 0.00901095476001501, 0.0155338104814291, -0.0025250848848372698, 0.00018912919040303677, 0.04639969393610954, 0.020738646388053894, -0.021639741957187653, 0.005127502605319023, 0.013112957589328289, -0.020819341763854027, -0.006136191543191671, 0.04123520851135254, 0.004885416943579912, 0.03722734749317169, 0.01916509121656418, 0.012897769920527935, 0.01447132509201765, 0.020308272913098335, 0.013254174031317234, 0.03157868981361389, 0.006959954276680946, 0.0008401538943871856, 0.007074272260069847, -0.00201233453117311, -0.03986338898539543, -0.018519530072808266, 0.006206799764186144, -0.0324663370847702, -0.02155904658138752, 0.008789043873548508, -0.014699961058795452, 0.02202976867556572, 0.002338477410376072, -0.023267094045877457, -0.0002134007663698867, 0.016017980873584747, 0.01816985197365284, 0.011882356368005276, -0.008190554566681385, 0.017214959487318993, -0.012030297890305519, 0.02291741408407688, -0.01487480103969574, 0.028485378250479698, -0.026467999443411827, -0.014363731257617474, 0.022648431360721588, -0.0032109932508319616, 0.01560105662792921, -0.018721267580986023, -0.01566830277442932, 0.03472580015659332, 0.011546126566827297, 0.01596418395638466, -0.0007569370209239423, -0.01788741908967495, -0.0033538909628987312, 0.013933357782661915, 0.006559840869158506, 0.010759349912405014, -0.04448990896344185, 0.0007191112381406128, 0.02381850965321064, -0.008889912627637386, -0.009844805113971233, 0.006489232648164034, 0.008822666481137276, 0.007780354470014572, -0.010591235011816025, 0.0040952772833406925, -0.003580845892429352, -0.01839848794043064, 0.015332072973251343, -0.018707819283008575, -0.015399319119751453, 0.024396825581789017, -0.009051302447915077, -0.018532980233430862, -0.007961918599903584, -0.02396645024418831], "88e6f3ff-27c3-4483-9ac0-09d2d26b375b": [-0.010780935175716877, -0.016141213476657867, -0.00604792358353734, 0.00676240399479866, -0.010894984006881714, 0.023735500872135162, -0.012733177281916142, -0.020340880379080772, -0.014812884852290154, -0.013954166322946548, 0.01746954396367073, 0.020971503108739853, 0.011009031906723976, 0.000969412038102746, -0.007949849590659142, 0.010962070897221565, 0.03265811502933502, -0.014115176163613796, 0.03982304409146309, -0.02412460744380951, 0.004699468147009611, -0.012860642746090889, 0.0017895547207444906, 0.023990431800484657, -0.007426568306982517, 0.03719322010874748, 0.019200395792722702, -0.020327463746070862, 0.013652273453772068, -0.023748917505145073, -0.00986183900386095, 0.0020159746054559946, 0.008419460617005825, -0.01351809874176979, -0.03528793901205063, -0.001272982219234109, 0.003877648152410984, -0.02184363827109337, 0.004313715733587742, -0.010633342899382114, 0.004679341800510883, 0.0006503278855234385, -0.01740245521068573, -0.0007035784656181931, -0.02521142177283764, 0.02145453169941902, 0.013618730008602142, -0.023467151448130608, -0.022863365709781647, 0.015591097995638847, 0.016060708090662956, 0.02196439541876316, -0.027827829122543335, 0.009217800572514534, -0.018086746335029602, -0.0049443370662629604, -0.0020059114322066307, 0.02019328996539116, 0.00033354986226186156, 0.006517535075545311, 0.0021166056394577026, -0.0057326131500303745, 0.014772632159292698, 0.017737893387675285, -0.025707868859171867, -0.01635589264333248, -0.008164528757333755, -0.0071917627938091755, -0.008748188614845276, -0.02629823610186577, 0.05154991149902344, 0.020488472655415535, -0.006333044730126858, 0.018985716626048088, 0.03429504856467247, -0.024889402091503143, -0.01851610653102398, -0.00603786064311862, -0.019522415474057198, -0.004575356375426054, -0.01792573742568493, -0.022380337119102478, 0.001308203092776239, 0.01153902243822813, 0.008889072574675083, -0.020139619708061218, 0.009029955603182316, 0.019951773807406425, -0.019401658326387405, -0.01913330890238285, 0.00617874413728714, 0.024553965777158737, 0.005990899167954922, 0.00818465556949377, -0.022729190066456795, 0.005316671449691057, -0.02354765683412552, 0.0178854838013649, -0.005950646940618753, -0.02706303261220455, -0.02303779311478138, -0.00784921832382679, -0.03383885324001312, -0.007654665503650904, -0.01623513549566269, 0.021065425127744675, -0.008520091883838177, -0.001742593594826758, 0.010868148878216743, -0.026741012930870056, 0.0061820982955396175, 0.024044102057814598, -0.023990431800484657, -0.040789101272821426, -0.0021618895698338747, -0.011720158159732819, 0.031289536505937576, -0.025520022958517075, -0.02419169433414936, -0.024916237220168114, -0.010881566442549229, 0.01678525283932686, -0.014343272894620895, -0.006691962014883757, 0.012900895439088345, -0.001300655771046877, 0.011270673014223576, -0.029330585151910782, -0.0012117651058360934, -0.011357886716723442, 0.04427764564752579, 0.017523212358355522, 0.008312121033668518, 0.00658462243154645, -0.009492858313024044, 0.021052006632089615, -0.03778358921408653, 0.010277780704200268, -0.0031329786870628595, -0.017160940915346146, 0.01492022443562746, 0.017697639763355255, 0.0025560276117175817, -0.02801567316055298, -0.016597406938672066, 0.020917832851409912, 0.03311431035399437, 0.013618730008602142, -0.028820721432566643, -0.001547201769426465, 0.033946193754673004, -0.002992095425724983, 0.005813118070363998, -0.020958084613084793, 0.01344430260360241, -0.00897628627717495, 0.013008235022425652, -0.012739885598421097, 0.015108068473637104, -0.010606508702039719, 0.014276186004281044, 0.025036994367837906, 0.021226434037089348, -0.01679866947233677, -0.004407638218253851, 0.03241660073399544, 0.01796598918735981, -0.013846826739609241, -0.027747323736548424, -0.023869674652814865, 0.014879971742630005, 0.02585546113550663, -0.023306142538785934, 0.00813098531216383, 0.0006918382132425904, -0.0007593448390252888, 0.04846389219164848, 0.023493986576795578, -0.02475522831082344, -0.00015335746866185218, -0.03598564863204956, -0.011505478993058205, 0.013685816898941994, 0.011693323031067848, 0.0030927262268960476, 0.004132580012083054, -0.00016687976312823594, -0.01375290472060442, 0.019871270284056664, 0.008647558279335499, 0.01632905751466751, 0.012800264172255993, -0.00490743899717927, -0.025587111711502075, -0.6302989721298218, -0.018730785697698593, -0.022554762661457062, -0.012230021879076958, -0.03147738054394722, 0.002998803975060582, 0.022917035967111588, 0.005246229935437441, -0.012250147759914398, 0.0009274824406020343, -0.02123985067009926, 0.002762321149930358, -0.01321620587259531, -0.030403982847929, -0.030055128037929535, -0.013819991610944271, 0.00927817914634943, -0.03204091265797615, 0.0051757884211838245, -0.010083227418363094, -0.009627033025026321, -0.014262768439948559, 0.0026549813337624073, 0.004877249710261822, -0.006004316732287407, -0.015564262866973877, 0.02419169433414936, -0.00477661844342947, 0.01321620587259531, 0.03161155432462692, -0.03815927729010582, 0.019441910088062286, 0.01347113773226738, 0.015081234276294708, 0.04205034300684929, -0.010854731313884258, -0.03920584172010422, 0.020501891151070595, 0.004142643418163061, 0.013142409734427929, -0.006406840868294239, -0.006333044730126858, 0.039581529796123505, 0.010190567001700401, -0.008835402317345142, 0.006587976589798927, 0.012753303162753582, -0.017308533191680908, -0.003538857214152813, 0.029598934575915337, 0.00616197194904089, -0.014155428856611252, -0.019763929769396782, -0.0020428095012903214, 0.0008302057976834476, 0.0004039915802422911, 0.01627538911998272, -0.009331848472356796, -0.0071582188829779625, -0.001393739483319223, 0.00846642255783081, 0.01682550460100174, -0.007990102283656597, 0.005836598575115204, -0.01435669045895338, 0.01125725544989109, -0.011176750995218754, 0.012545332312583923, 0.03244343772530556, -0.0034298403188586235, 0.02024695836007595, 0.022192491218447685, 0.0037535366136580706, -0.011384721845388412, 0.0314505435526371, 0.013531516306102276, 0.027935167774558067, -0.032926466315984726, 0.0021317002829164267, 0.03416087478399277, 0.01318937074393034, -0.018086746335029602, -0.03998405486345291, -0.02352082170546055, 0.021763132885098457, -0.019468745216727257, -0.02024695836007595, 0.021696045994758606, -0.007507073227316141, -0.0010884921066462994, 0.007681500166654587, 0.013994419015944004, 0.0049107931554317474, 0.021065425127744675, 0.04231869429349899, 0.023896509781479836, -0.006581267807632685, 0.017080437391996384, 0.013565059751272202, -0.0028998502530157566, -0.01153902243822813, -0.0230646263808012, 0.023748917505145073, -0.012478245422244072, 0.0008821985102258623, -0.00045745179522782564, -0.03727372735738754, -0.005239521153271198, 0.05350886285305023, -0.021052006632089615, -0.016409562900662422, -0.008640849031507969, -0.03139687329530716, -0.0010079873027279973, 0.0308601763099432, -0.014450612477958202, 0.01791231893002987, 0.011713449843227863, 0.026566585525870323, -0.00787605345249176, 0.01964317262172699, -0.016087543219327927, 0.02874021604657173, -0.010083227418363094, 0.01583261229097843, 0.030189301818609238, 0.020649483427405357, -0.009492858313024044, -0.00015010792412795126, -0.0060110255144536495, -0.010203984566032887, 0.006477282382547855, 0.009714246727526188, -0.004015177022665739, 0.013913914561271667, -0.0029417797923088074, 0.01846243627369404, 0.013102157041430473, 0.021038589999079704, -0.0224742591381073, -0.006135137286037207, -0.00872135441750288, 0.007708335295319557, 0.015993621200323105, 0.004696113523095846, -0.020958084613084793, -0.02239375375211239, -0.00955323688685894, -0.0537235401570797, 0.007815674878656864, -0.014410360716283321, -0.0019371468806639314, 0.006380005739629269, -0.00784921832382679, 0.008614013902842999, -0.012243439443409443, -0.01573869027197361, 0.006061341147869825, 0.024272199720144272, -0.03923267498612404, 0.01512148603796959, 0.013544933870434761, -0.0391790047287941, 0.0131692448630929, 0.021655792370438576, -0.01918697915971279, -0.01967000775039196, 0.019844435155391693, -0.002343025291338563, -0.04642443731427193, 0.018086746335029602, 0.00301893032155931, -0.005212686490267515, 0.03861547261476517, -0.03365100920200348, 0.003790434682741761, -0.01034486759454012, -0.014947059564292431, -0.010042974725365639, 0.00490743899717927, 0.008070606738328934, 0.022662103176116943, -0.02973310835659504, -0.016100961714982986, 0.015416670590639114, -0.011686614714562893, -0.004538458306342363, -0.01856977492570877, 0.01349797286093235, 0.02193756029009819, 0.0058433073572814465, 0.0009400613489560783, 0.02412460744380951, -0.0029250080697238445, -0.000896454555913806, -0.004877249710261822, 0.009190965443849564, 0.022903617471456528, 0.008842111565172672, 0.016463233157992363, 0.010277780704200268, 0.009117169305682182, 0.02242058888077736, -0.004816871136426926, 0.0025526732206344604, -0.018234338611364365, 0.006624874658882618, 0.0013652273919433355, 0.03088701143860817, -0.02690202370285988, 0.0043841577135026455, -0.03083334118127823, -0.01044549886137247, -0.011062702164053917, 0.02412460744380951, 0.046370767056941986, 0.00674563180655241, -0.010526003316044807, -0.005239521153271198, -0.008902490139007568, 0.013001526705920696, -0.01916014403104782, 0.017643969506025314, -0.028391361236572266, -0.0064940545707941055, -0.014853136613965034, 0.01580577716231346, 0.03418770805001259, 0.010666887275874615, -0.0010255976812914014, 0.008399334736168385, -0.005833243951201439, -0.006111656781286001, 0.02026037685573101, 0.01261242013424635, -0.00421979371458292, 0.00316987675614655, -0.004488143138587475, 0.03810560703277588, -0.04116479307413101, -0.005303254351019859, -0.011331051588058472, 0.031182195991277695, -0.026566585525870323, -0.015014146454632282, 0.005417302716523409, -0.004977880511432886, 7.222371641546488e-05, 0.01902597025036812, 0.01634247601032257, -0.013263166882097721, -0.008620723150670528, -0.013296710327267647, -0.005450846161693335, 0.015309331007301807, -0.023883093148469925, -0.005370341707020998, 0.00841275230050087, 0.004820225294679403, 0.03391936048865318, 0.01627538911998272, 0.007708335295319557, 0.027827829122543335, 0.00503155030310154, 0.05047651380300522, -0.0015186896780505776, 0.016691330820322037, 0.018288008868694305, -0.018878377974033356, -0.031128525733947754, -0.01123042032122612, 0.006232413928955793, 0.010848022997379303, -0.00899641215801239, -0.004125871229916811, 0.0012109264498576522, 0.0028126367833465338, -0.0038742937613278627, -0.0010457239113748074, 0.0015505561605095863, -0.016543738543987274, -0.021561870351433754, 0.02071657031774521, -0.0007044170633889735, 0.009325140155851841, -0.011156624183058739, -0.012625837698578835, -0.003954798448830843, -0.009311722591519356, 0.03990354761481285, -0.02582862600684166, -0.001491854665800929, 0.03365100920200348, -0.013551642186939716, -0.00012578876339830458, -0.010801061987876892, 0.01745612546801567, -0.015040981583297253, 0.0448143407702446, 0.0002849115408025682, 0.011391430161893368, 0.00323528703302145, -0.011673197150230408, 0.013182662427425385, 0.03324848413467407, -0.004313715733587742, -0.011069411411881447, -0.011666487902402878, 0.016463233157992363, -0.017858650535345078, 0.00588691420853138, -0.018207503482699394, -0.00922450888901949, -0.004920856561511755, 0.011391430161893368, 0.005024841520935297, -0.020582396537065506, 0.009123878553509712, 0.02356107346713543, -0.005356924142688513, -0.022259579971432686, -0.02239375375211239, -0.010157023556530476, 0.004461308009922504, 0.11088195443153381, 0.01686575636267662, -0.017308533191680908, -0.0027841245755553246, 0.00338120199739933, 0.006577913649380207, -0.025976218283176422, -0.022044898942112923, 0.02981361374258995, 0.002842826070263982, -0.001067527336999774, -0.02636532485485077, 0.03161155432462692, -0.0053133172914385796, -0.006983791943639517, -0.014678710140287876, -0.0071917627938091755, 0.017523212358355522, 0.006225705146789551, 0.020958084613084793, -0.010438789613544941, 0.009539819322526455, 0.0003815592499449849, 0.02694227546453476, -0.025050412863492966, -0.024460043758153915, -0.0016386082861572504, 0.0037434734404087067, 0.024580800905823708, -0.012753303162753582, -0.014410360716283321, 0.01694626174867153, 0.02028721198439598, 0.013618730008602142, -0.02019328996539116, -0.00923121813684702, -0.00013302161823958158, 0.020917832851409912, -0.00588691420853138, -0.012947856448590755, 0.018395347520709038, 0.010546130128204823, 0.01407492347061634, -0.013175953179597855, 0.007681500166654587, 0.004058783873915672, -0.0137931564822793, -0.0014759214827790856, -0.03147738054394722, -0.010458916425704956, 0.034643903374671936, -0.009573363699018955, -0.018100164830684662, -0.0031430418603122234, 0.009365392848849297, 0.018247757107019424, -0.006530952639877796, -0.015389835461974144, -0.007312519941478968, 0.038534969091415405, -0.00810415018349886, 0.014933641999959946, 0.029598934575915337, 0.010257653892040253, -0.016986513510346413, -0.019254066050052643, -0.029518429189920425, -0.011612818576395512, -0.007507073227316141, 0.02478206343948841, -0.008795150555670261, -0.0004901568754576147, -0.01736220344901085, 0.0067389230243861675, 0.01796598918735981, -0.0025828625075519085, 0.01176711916923523, -0.01428960356861353, 0.0034751242492347956, -0.02703619748353958, -0.011679905466735363, -0.03493908792734146, 0.014745797030627728, -0.015899699181318283, -0.028364526107907295, -0.0023044501431286335, 0.018167251721024513, 0.02415144257247448, -0.023413481190800667, 0.0092714698985219, -0.008895780891180038, 0.026553168892860413, 0.025063829496502876, -0.01848927140235901, 0.004313715733587742, -0.003166522365063429, -0.005195914302021265, -0.01850268803536892, 0.004934273660182953, -0.014437195844948292, -0.002458750968798995, -0.03247027099132538, -0.005829889792948961, -0.010150314308702946, 0.004142643418163061, -0.010304614901542664, 0.01403467170894146, 0.02468814142048359, -0.026647090911865234, -0.01859661005437374, 0.013477846048772335, -0.04057442396879196, 0.001496886252425611, -0.010183857753872871, 0.00818465556949377, -0.0038407500833272934, 0.011693323031067848, 0.010881566442549229, -0.0011597723932936788, -0.008587179705500603, 0.0003574497241061181, -0.03209458291530609, -0.0017308533424511552, -0.003877648152410984, -0.027344798669219017, 0.0023447026032954454, 0.006983791943639517, -0.028954895213246346, 0.02480889856815338, -0.0017224674811586738, 0.009284887462854385, 0.0013945780228823423, 0.0017593654338270426, -0.003897774498909712, -0.028337692841887474, 0.0031598135828971863, -0.007795548997819424, 0.013001526705920696, -0.012967982329428196, 0.009546528570353985, -0.021776549518108368, -0.02138744294643402, -0.0072991023771464825, -0.041245296597480774, -0.000929159636143595, -0.019831016659736633, -0.018878377974033356, -0.002280969638377428, -8.64797766553238e-05, -0.006359879858791828, 0.0016335766995325685, -0.024017266929149628, -0.032765455543994904, -0.005803054664283991, -0.0038742937613278627, -0.030726000666618347, 0.007346063852310181, -0.0008281093323603272, 0.028364526107907295, -0.00978133361786604, 0.024513714015483856, -0.013558351434767246, 0.013417467474937439, 0.002700265496969223, -0.022648686543107033, 0.009573363699018955, -0.008151112124323845, -0.02863287553191185, -0.026593420654535294, -0.031235864385962486, 0.03555629029870033, 0.020354298874735832, 0.010988906025886536, -0.011746993288397789, -0.00218033860437572, 0.046961136162281036, -0.0056688799522817135, -0.0035355028230696917, -0.0022843237966299057, -0.024057520553469658, -0.015081234276294708, -0.0034918959718197584, -0.012129390612244606, -0.0045250412076711655, -0.0117939542979002, 0.002644918393343687, 0.05689006298780441, 0.007896180264651775, 0.012417866848409176, -0.014396943151950836, 0.024500295519828796, -0.01209584716707468, 0.017147524282336235, 0.019280901178717613, 0.01965659111738205, -0.017523212358355522, 0.02407093718647957, 0.005578312091529369, 0.009378810413181782, -0.004015177022665739, 0.006728860083967447, -0.0018650280544534326, -8.055721991695464e-05, -0.012089138850569725, -0.02244742400944233, 0.004826934076845646, -0.01903938688337803, -0.02423194609582424, 0.01799282431602478, -0.013343671336770058, -0.015953369438648224, 0.0007295748218894005, 0.002448687795549631, -0.02200464718043804, -0.024379538372159004, -0.005018133204430342, 0.02133377455174923, 0.000888907234184444, -0.017053602263331413, -0.02303779311478138, 0.005152307450771332, -0.018234338611364365, 0.034536562860012054, 0.017228027805685997, 0.0179525725543499, 0.01125725544989109, -0.010834605433046818, 0.016020456328988075, 6.624875095440075e-05, -0.01626197062432766, -0.0156581848859787, 0.0264726635068655, 0.0058433073572814465, -0.010801061987876892, 0.015389835461974144, -0.021105676889419556, -0.012451410293579102, -0.0406280942261219, -0.030538156628608704, 0.013290002010762691, -0.0008172076777555048, -0.007916306145489216, -0.0054240114986896515, -0.010559546761214733, -0.023923344910144806, -0.0007765359478071332, -0.0016771834343671799, 0.02703619748353958, -0.02254134602844715, -0.022326666861772537, -0.04781985655426979, 0.0008947773603722453, 0.003226900938898325, 0.03091384656727314, 0.0292232446372509, -0.013679108582437038, -0.029008565470576286, -0.012156225740909576, -0.012283692136406898, -0.014276186004281044, -0.0011723513016477227, 0.014209098182618618, -0.0021216371096670628, 0.0036361338570713997, 0.023775752633810043, -0.010002722032368183, -0.010103353299200535, 0.000976959359832108, -0.019468745216727257, 0.02690202370285988, 0.005041613709181547, 0.011156624183058739, 0.015872864052653313, 0.02871338091790676, 0.027237460017204285, 0.019871270284056664, -0.005055030807852745, 0.01850268803536892, -0.020448220893740654, -0.001476760022342205, 0.009653868153691292, 0.0018197441240772605, 0.010599799454212189, -0.017295116558670998, -0.01011006161570549, -0.00811085943132639, -0.005417302716523409, 0.007238723803311586, -0.004447890445590019, -0.03582463786005974, -0.03161155432462692, -0.0083859171718359, -0.019817600026726723, 0.022890200838446617, -0.005014778580516577, 0.021159347146749496, -0.011391430161893368, 0.03646867722272873, -0.035126931965351105, 0.025117499753832817, -0.026714177802205086, 0.008204781450331211, -0.029384255409240723, 0.010633342899382114, 0.01235077902674675, -0.02582862600684166, 0.019911522045731544, -0.005132181569933891, -0.022849947214126587, 0.030135633423924446, 0.013900496996939182, 0.0042734635062515736, 0.004578710999339819, 0.008003519847989082, 0.005829889792948961, 0.003312437329441309, 0.016449814662337303, -0.013672399334609509, -0.03469757363200188, 0.019938357174396515, 0.023856258019804955, 0.007372898515313864, 0.01686575636267662, -0.011290798895061016, 0.011881168000400066, 0.02027379348874092, 0.01268621627241373, 0.004065492656081915, -0.03375834971666336, 0.00743327708914876, -0.00871464516967535, 0.026016470044851303, 0.007406442426145077, 0.004873895086348057, -0.0010515940375626087, -0.02584204263985157, -0.008097441866993904, -0.0035791094414889812, 0.015470340847969055, -0.006249185651540756, 0.023413481190800667, 0.010559546761214733, -0.002493971725925803, 0.006977083161473274, -0.009996013715863228, -0.0010255976812914014, 0.00983500387519598, -0.007621121592819691, -0.04256020858883858, 0.005947292782366276, -0.01349797286093235, 0.044062964618206024, -0.0064001320861279964, -0.016999932006001472, -0.01572527177631855, -0.013155827298760414, -0.029947787523269653, -0.009211091324687004, 0.003984987735748291, 0.02518458664417267, 0.03748840466141701, 0.012726468034088612, 0.005970773287117481, 0.033382661640644073, -0.025694450363516808, 0.010358285158872604, 0.016476649791002274, -0.010505877435207367, 0.0011916388757526875, -0.001532107125967741, -0.0055615403689444065, -0.006611457094550133, -0.005263001658022404, 0.01375290472060442, -0.002762321149930358, -0.0041493517346680164, 0.011612818576395512, 0.002604665933176875, 0.01291431300342083, 0.00378708029165864, -0.017120689153671265, 0.004434473346918821, 0.011881168000400066, 0.014732379466295242, -0.017241446301341057, -0.015899699181318283, -0.009700829163193703, -0.0055648949928581715, 0.005799700506031513, -0.02368183061480522, -0.018703950569033623, 0.013357088901102543, -0.01568502001464367, 0.010177149437367916, -0.008090733550488949, -0.004189604427665472, -0.021132512018084526, -0.02239375375211239, 0.042345527559518814, -0.011223712004721165, 0.002296064281836152, 0.027988838031888008, 0.0027639984618872404, -0.01148535218089819, -0.005803054664283991, 0.0045854197815060616, 0.0050349049270153046, -0.019924940541386604, -0.0003803013532888144, -0.03147738054394722, 0.019441910088062286, -0.008003519847989082, -0.003686449257656932, -0.03139687329530716, 0.0106467604637146, 0.0027489038184285164, -0.007929723709821701, -0.01624855399131775, 0.03217508643865585, 0.025627363473176956, -0.002973646391183138, 0.001517012482509017, -0.01435669045895338, -0.01686575636267662, 0.006309564225375652, -0.005927166435867548, -0.02138744294643402, 0.010163731873035431, -0.00020964792929589748, 0.008245034143328667, 0.0034751242492347956, -0.015872864052653313, -0.005655462853610516, 0.020488472655415535, -0.04443865269422531, 0.0035321484319865704, 0.21564553678035736, -0.033999864012002945, -0.009385518729686737, 0.029089070856571198, -0.014410360716283321, 0.013940748758614063, 0.012129390612244606, -0.0010432081762701273, -0.01803307607769966, -0.015349582768976688, -0.018126999959349632, 0.030672332271933556, -0.01623513549566269, 0.0029350710101425648, 0.01316253561526537, -0.0042432742193341255, -0.03477807715535164, -0.0017073728376999497, -0.0054206568747758865, -0.06021759659051895, 0.002509066602215171, -0.0003425647155381739, -0.021078841760754585, -0.01095536258071661, 0.014786049723625183, -0.007232015021145344, -0.00550116179510951, -0.012840516865253448, 0.02635190635919571, -0.005085220094770193, -0.030779670923948288, -0.014879971742630005, -0.012464827857911587, -0.00619887001812458, -0.007835800759494305, 0.005246229935437441, 0.009372101165354252, 0.00030965000041760504, 0.018408766016364098, 0.0010406923247501254, 0.0016008716775104403, 0.005541414022445679, -0.0031765855383127928, 0.0023245762567967176, -0.012773429043591022, 0.023279307410120964, -0.015617932192981243, -0.014799467287957668, -0.01852952316403389, 0.008070606738328934, -0.03311431035399437, -0.008003519847989082, 0.042989566922187805, 0.03314114734530449, 0.0016436397563666105, -0.018797872588038445, -0.004357322584837675, 0.021789968013763428, -0.03434871882200241, 0.005960709881037474, -0.023467151448130608, 0.0275863129645586, 0.0028344399761408567, 0.023225637152791023, -0.026821518316864967, 0.024312451481819153, -0.003619361901655793, 0.01571185514330864, 0.016033874824643135, -0.029357420280575752, -0.013699234463274479, -0.017160940915346146, -0.003448289120569825, -0.007755296304821968, -0.009338557720184326, -0.002715360140427947, 0.019267484545707703, -0.025533441454172134, 0.007647956721484661, -0.0011111340718343854, 0.019938357174396515, -0.015604515559971333, -0.004565293435007334, -0.007071005646139383, -0.001953918719664216, -0.021561870351433754, -0.008446295745670795, -0.007379607297480106, -0.02519800513982773, 0.006819427944719791, -0.03026980720460415, -0.022715773433446884, 0.0020075885113328695, -0.012015342712402344, -0.0005530512426048517, -0.022031482309103012, 0.016704747453331947, 0.011646362021565437, 0.009573363699018955, 0.0005354408058337867, -0.012471536174416542, -0.0012713050236925483, 0.032309263944625854, 0.008479840122163296, -0.013638855889439583, 0.000502316455822438, 0.018234338611364365, -0.0025962800718843937, 0.0069435397163033485, -0.006416903808712959, 0.024486878886818886, -0.014718961901962757, -0.002500680508092046, -0.019361406564712524, 0.009486149996519089, 0.0258822962641716, -0.009211091324687004, 0.005222749430686235, 0.0031313016079366207, 0.0033308863639831543, 0.017831815406680107, -0.016731582581996918, -0.0001984317641472444, 0.01746954396367073, -0.008835402317345142, -0.00331076025031507, -0.01862344518303871, 0.026727596297860146, 0.01626197062432766, -0.010271071456372738, 0.027693653479218483, -0.021722881123423576, 0.007252141367644072, 0.020542142912745476, -0.010666887275874615, 0.00604792358353734, 0.00978133361786604, -0.016664495691657066, 0.031101690605282784, -0.014692127704620361, -0.005759448278695345, -6.713975017191842e-05, -0.00091154919937253, 0.014759214594960213, 0.005994253791868687, -0.009922217577695847, 0.0219509769231081, -0.024003850296139717, 0.0020394551102072, -0.011042576283216476, -0.02299753949046135, -0.00785592757165432, 0.001980753615498543, -0.010002722032368183, -0.006970374379307032, -0.005061739590018988, -0.017308533191680908, -0.01349797286093235, 0.008573762141168118, 0.03088701143860817, -0.017026767134666443, 0.010150314308702946, 0.010405246168375015, -0.013363798148930073, -0.02145453169941902, -0.012344070710241795, -0.17002615332603455, 0.01151218730956316, 0.013685816898941994, -0.007003918290138245, 0.01461162231862545, 0.030994350090622902, 0.024956490844488144, 0.006138491444289684, -0.003968216013163328, -0.020072532817721367, 0.02310488000512123, 0.01627538911998272, -0.05061068758368492, -0.03378518298268318, -0.009801460430026054, -0.00308937206864357, -0.01577894203364849, 0.024553965777158737, 0.030994350090622902, 0.029062235727906227, 0.012552041560411453, -0.020085949450731277, 0.0029971268959343433, -0.009546528570353985, 0.0003670935402624309, 0.002337993821129203, -0.00041992482147179544, 0.031718894839286804, 0.0066315834410488605, -0.013511390425264835, -0.008097441866993904, 0.0224071703851223, 0.001683053676970303, -0.04360676929354668, 0.028391361236572266, 0.0046927593648433685, -0.003981633577495813, -0.018408766016364098, -0.01347113773226738, 0.00316484528593719, 0.009090334177017212, -0.006702025420963764, 0.017201194539666176, 0.0014373462181538343, 0.0015723594697192311, 0.03636133670806885, -0.0024855858646333218, -0.0022239452227950096, 0.016583990305662155, -0.02640557661652565, 0.025761539116501808, -0.011525604873895645, 0.023789171129465103, 0.00894945114850998, 0.025640781968832016, 0.0038407500833272934, 0.01291431300342083, 0.009539819322526455, -0.017576882615685463, -0.027344798669219017, -0.005239521153271198, -0.010908401571214199, 0.012592293322086334, -0.0129411481320858, 0.006410195492208004, -0.0032034204341471195, -0.005880205426365137, 0.020662900060415268, -0.02919640950858593, 0.014222515746951103, 0.0032788936514407396, 0.011424973607063293, 0.02753264456987381, -0.031101690605282784, -0.007185054011642933, -0.006527598015964031, -0.02645924687385559, 0.019763929769396782, -0.0029904181137681007, -0.013887079432606697, -0.03638817369937897, 0.03244343772530556, -0.009566654451191425, -0.011921419762074947, -0.00951298512518406, 0.018086746335029602, -0.008634140715003014, -0.018288008868694305, -0.02809617854654789, 0.0011245515197515488, -0.004642443731427193, -0.01851610653102398, -0.008506674319505692, -0.007185054011642933, 0.027720488607883453, 0.018381930887699127, 0.023936763405799866, -0.013310127891600132, 0.011042576283216476, -0.008781732991337776, 0.010633342899382114, -0.009774625301361084, -0.003817269578576088, 0.01694626174867153, 0.03534160926938057, 0.016449814662337303, 0.002240717178210616, 0.0031178840436041355, 0.020501891151070595, 0.004008468706160784, -0.018180668354034424, 0.009949052706360817, 0.019347988069057465, -0.005913748871535063, 0.024339286610484123, 0.03330215439200401, -0.007117966655641794, -0.01901255175471306, 0.011391430161893368, -0.007097840309143066, 0.07642589509487152, -0.014799467287957668, -0.021615540608763695, 0.0002643660409376025, -0.002302772831171751, -0.033999864012002945, -0.11517554521560669, -0.01065346971154213, 0.019549250602722168, 0.013887079432606697, 0.008982994593679905, 0.019227230921387672, -0.0131692448630929, 0.010465624742209911, -0.00644373893737793, 0.018891794607043266, -0.024339286610484123, -0.023426899686455727, -0.0009828294860199094, -0.004404283594340086, 0.020045697689056396, -0.030457651242613792, -0.0014423778047785163, -0.016664495691657066, 0.0058734966441988945, 0.02930375002324581, 0.00588691420853138, -0.018958881497383118, 0.0018901857547461987, -0.030081963166594505, 0.02466130629181862, 0.006856326013803482, -0.031128525733947754, 0.01846243627369404, 0.02298412285745144, 0.025493189692497253, -0.010572964325547218, 0.0014096726663410664, 0.014235933311283588, -0.012880769558250904, -0.0013191048055887222, -0.00012012826482532546, -0.0495372898876667, -0.0036025901790708303, 0.015416670590639114, -0.026821518316864967, 0.00550116179510951, 0.00280257361009717, 0.011881168000400066, -0.023292724043130875, 0.005813118070363998, 0.0023816004395484924, -0.015269078314304352, 0.004166123922914267, 0.01037170272320509, -0.015872864052653313, -0.03359733894467354, 0.0007429922698065639, -0.031799398362636566, -0.013155827298760414, 0.014021254144608974, -0.02133377455174923, 0.03536844626069069, 0.008915907703340054, -0.029008565470576286, -0.001085137715563178, -0.009144004434347153, 0.024379538372159004, 0.005964064504951239, 0.027613148093223572, -0.007325937505811453, 0.008493256755173206, -0.012840516865253448, -0.021816803142428398, 0.020609229803085327, 0.01044549886137247, -0.0117939542979002, 0.0026331781409680843, -0.04033290967345238, 0.013652273453772068, -0.025010159239172935, 0.008479840122163296, -0.02526509203016758, -0.007077714428305626, 0.020676318556070328, 0.002861275104805827, -0.012209895998239517, -0.03190673887729645, -0.013672399334609509, -0.0030709230341017246, 0.014235933311283588, 0.016087543219327927, 0.010432081297039986, -0.018288008868694305, 0.010505877435207367, -0.022917035967111588, 0.003079308895394206, 0.026553168892860413, -0.011981798335909843, -0.027398468926548958, 0.018247757107019424, 0.03719322010874748, 0.011861041188240051, 0.01681208796799183, -0.022849947214126587, 0.006000962574034929, -0.022111987695097923, 0.012156225740909576, -0.05903685837984085, 0.039635200053453445, -0.008070606738328934, 0.0025778310373425484, -0.010894984006881714, -0.014960476197302341, 0.022675519809126854, -0.02199123054742813, -0.01128409057855606, 0.02530534379184246, -0.013954166322946548, 0.02015303634107113, -0.007654665503650904, -0.015537427738308907, -0.024889402091503143, -0.014772632159292698, -0.003887711325660348, -0.019898105412721634, 0.0007090293220244348, 0.006581267807632685, 0.0115658575668931, 0.0047699096612632275, 0.02874021604657173, 0.005477681290358305, -0.02747897431254387, -0.000589110713917762, 0.0023799233604222536, -0.0016134504694491625, -0.0017207902856171131, -0.03206774964928627, 0.008882363326847553, -0.03308747708797455, -0.013846826739609241, 0.006473928224295378, 0.002995449583977461, 0.006574559025466442, -0.02590912953019142, -0.00011132305371575058, -4.866452582064085e-05, 0.044733837246894836, -0.006930122151970863, -0.010888274759054184, 0.001300655771046877, -0.016597406938672066, 0.0014105113223195076, 0.025962799787521362, -0.009479440748691559, 0.002453719498589635, 0.012773429043591022, -0.02578837238252163, 0.0074735297821462154, 0.03094068169593811, 0.0013643887359648943, -0.02360132522881031, -0.010452207177877426, -0.023842839524149895, 0.0335436686873436, -0.00054508465109393, 0.01969684287905693, -0.028203517198562622, 0.00405207509174943, -0.009338557720184326, 0.025171170011162758, -0.006410195492208004, 0.00843958742916584, -0.000919096521101892, -0.012136099860072136, -0.014209098182618618, -0.00785592757165432, -0.011753701604902744, 0.004461308009922504, 0.00520933186635375, 0.006722151301801205, -0.006829491350799799, 0.007681500166654587, 0.011009031906723976, -0.0021685983520001173, 0.01630222424864769, -0.021709462627768517, 0.0201798714697361, -0.009875256568193436, -0.0077150440774858, -0.023909928277134895, 0.006141846068203449, 0.03595881536602974, -0.003998405300080776, 0.018824707716703415, 0.012692924588918686, -0.008070606738328934, 0.012880769558250904, 0.013806574046611786, -0.008526801131665707, -0.00619887001812458, -0.0062592485919594765, 0.022152239456772804, 0.01965659111738205, -0.008620723150670528, 0.007064296863973141, 0.036844365298748016, 0.03467073664069176, -0.007694917730987072, 0.01098219770938158, 0.02361474372446537, -0.018422182649374008, -0.00575609365478158, 0.0010457239113748074, -0.011928129009902477, -0.00743327708914876, 0.005293190944939852, 0.016583990305662155, 0.00902324728667736, 0.0008603951428085566, 0.04044024646282196, 0.019522415474057198, -0.020944667980074883, 0.004266754724085331, 0.011995215900242329, -0.010995615273714066, -0.003770308569073677, 0.024822315201163292, 0.006195515859872103, 0.035046424716711044, 0.008419460617005825, 0.003984987735748291, 0.02753264456987381, 0.02537243254482746, 0.007064296863973141, 0.030457651242613792, 0.004025240428745747, 0.002888110000640154, 0.014544535428285599, 0.009673994034528732, -0.0292232446372509, -0.0012352456105872989, -0.0015379772521555424, -0.019992027431726456, -0.009640450589358807, 0.009828295558691025, -0.018690532073378563, 0.032228756695985794, 0.004739720374345779, -0.01965659111738205, 0.005222749430686235, 0.00784921832382679, 0.01679866947233677, 0.018435601145029068, 7.599737728014588e-05, 0.0009107106016017497, -0.005789637565612793, 0.011954964138567448, 3.4696731745498255e-05, 0.020005444064736366, -0.016168048605322838, -0.008580470457673073, 0.022621851414442062, 0.00331076025031507, 0.02863287553191185, -0.027747323736548424, -0.032872796058654785, 0.034617066383361816, 0.0034147456753998995, 0.02804250828921795, 0.0021182827185839415, -0.0036327794659882784, -0.0011170041980221868, 0.016570573672652245, 0.005363632924854755, 0.00546426372602582, -0.040708597749471664, 0.006229059305042028, 0.014692127704620361, -0.017764726653695107, -0.014061505906283855, 0.016516903415322304, 0.015872864052653313, 0.010432081297039986, -0.01909305714070797, 0.028310857713222504, -0.012216604314744473, -0.019374823197722435, 0.022098569199442863, -0.014571369625627995, -0.017013348639011383, 0.029115905985236168, -0.01901255175471306, -0.010633342899382114, -0.009613615460693836, -0.027962002903223038], "f63a4a3e-d832-4c72-9c51-acb38581be96": [-0.0009805606678128242, -0.02623775601387024, -0.01253507100045681, 0.009649588726460934, 0.003667246550321579, 0.026975901797413826, -0.013065194711089134, -0.014950823970139027, -0.0019242139533162117, -0.03121688961982727, 0.0175276268273592, 0.012246523052453995, 0.0035632348153740168, 0.0038081654347479343, -0.007441859692335129, 0.01491056103259325, 0.025338558480143547, 0.005475705489516258, 0.029069554060697556, -0.02274833619594574, -0.0033166268840432167, -0.00597898755222559, 0.00163985975086689, 0.029633229598402977, -0.007878037169575691, 0.02796904556453228, 0.021996768191456795, -0.016400275751948357, 0.0030448546167463064, -0.022372551262378693, -0.006774172652512789, -0.007649882696568966, 0.005472350399941206, -0.013602028600871563, -0.02635854296386242, 0.007998825050890446, 0.013957681134343147, -0.026828274130821228, 0.020131271332502365, -0.013219534419476986, 0.015568182803690434, -0.0023268393706530333, -0.006569504737854004, 0.004230922088027, -0.0320221409201622, 0.015366869978606701, 0.017473943531513214, -0.008206848055124283, -0.01810472272336483, 0.024788305163383484, 0.0219296645373106, 0.013306769542396069, -0.03964518383145332, 0.007757249753922224, -0.013152429834008217, -0.0015928867505863309, -0.0003531360416673124, 0.022117555141448975, -0.011172855272889137, 0.006777527742087841, 0.003455868223682046, 0.001974542159587145, 0.010058924555778503, 0.004224211443215609, -0.02054731734097004, -0.02484198845922947, -0.011387588456273079, -0.008898021653294563, -0.012910855002701283, -0.009756956249475479, 0.044610895216464996, 0.029552705585956573, 0.00045169537770561874, 0.0064285858534276485, 0.03559208661317825, -0.026962481439113617, -0.01995679922401905, -0.024680938571691513, -0.021070729941129684, 0.0037712580524384975, -0.009361040778458118, -0.020520474761724472, 0.0007679240661673248, -0.004999265540391207, 0.015058190561830997, -0.013259796425700188, 0.011454693041741848, 0.02751273661851883, -0.021969927474856377, -0.027593260630965233, 0.015433973632752895, 0.0116090327501297, 0.010226685553789139, 0.006190365646034479, -0.015299765393137932, 0.01960785686969757, -0.015366869978606701, 0.022318867966532707, -0.007851195521652699, -0.036263126879930496, -0.0160110704600811, 0.0012020046124234796, -0.023499902337789536, -0.005405246280133724, -0.03086794726550579, 0.022936226800084114, -0.008300794288516045, -0.006750686094164848, 0.019513912498950958, -0.02089625969529152, -0.006918446626514196, 0.015004507265985012, -0.02274833619594574, -0.05360286310315132, -0.002702623140066862, -0.024090420454740524, 0.02123177982866764, -0.03365948423743248, -0.024063577875494957, -0.01473608985543251, 0.008334346115589142, 0.012320337817072868, -0.015809757634997368, 0.0016230837209150195, 0.004277895204722881, 0.001221297075971961, 0.005210643634200096, -0.021782035008072853, -0.0022446366492658854, -0.013742947019636631, 0.031968459486961365, 0.011253380216658115, 0.009636168368160725, -0.0031388006173074245, -0.018614714965224266, 0.013850314542651176, -0.018037619069218636, 0.019446806982159615, -0.008602762594819069, -0.01634659245610237, 0.013454399071633816, 0.014051626436412334, -0.007005682215094566, -0.03454526141285896, -0.026653802022337914, 0.03317633271217346, 0.02183571830391884, 0.009535511955618858, -0.033364225178956985, -0.004925450775772333, 0.02426489070057869, -0.00869670882821083, 0.023540165275335312, -0.009287226013839245, 0.017138421535491943, -0.014413990080356598, 0.002021515043452382, -0.009736824780702591, -0.006844631861895323, -0.008455133996903896, 0.013971101492643356, 0.015568182803690434, 0.023526744917035103, -0.011038647033274174, -0.00017897957877721637, 0.019929958507418633, 0.014816614799201488, -0.006059512495994568, -0.03677311912178993, -0.010595758445560932, 0.013548345305025578, 0.021204939112067223, -0.019473649561405182, -0.005616624373942614, -0.01599765010178089, 0.0025164089165627956, 0.042409878224134445, 0.018024196848273277, -0.031646355986595154, -0.0027680497150868177, -0.018654977902770042, -0.01754104718565941, 0.02206387184560299, 0.016333170235157013, -0.013903997838497162, -0.001731289317831397, -0.018762344494462013, -0.01253507100045681, 0.005271037574857473, 0.0035263276658952236, 0.015004507265985012, 0.0050663696601986885, -0.009320777840912342, -0.01962127909064293, -0.6433417201042175, -0.026761168614029884, -0.009381172247231007, -0.011749951168894768, -0.024318573996424675, -0.009012098424136639, 0.022949649021029472, -0.004646968096494675, -0.0025499609764665365, 0.005784384906291962, -0.024976195767521858, 0.00934090930968523, -0.006569504737854004, -0.02717721462249756, -0.016910267993807793, -0.012528360821306705, -0.005318010691553354, -0.035565245896577835, 0.0017967158928513527, -0.01590370386838913, -0.021151255816221237, -0.010119318962097168, 0.01050852332264185, 0.010495102033019066, -0.009683141484856606, -0.012702831998467445, 0.018359718844294548, 0.0076364618726074696, 0.002826765878126025, 0.033122651278972626, -0.03341791033744812, 0.02276175655424595, 0.020493634045124054, 0.01774236001074314, 0.038813088089227676, 0.00018013293447438627, -0.03390105813741684, 0.007904878817498684, 0.012347179464995861, 0.0078109330497682095, -0.014387148432433605, -0.02077547088265419, 0.0185878723859787, 0.0064185201190412045, 0.011105750687420368, 0.017809463664889336, 0.019003920257091522, -0.015970807522535324, 0.01206534169614315, 0.01762157306075096, 0.007643172517418861, 0.006475558504462242, -0.012749805115163326, 0.0042711845599114895, 0.0014922304544597864, 0.0030666636303067207, 0.012561912648379803, -0.017460521310567856, -0.016735795885324478, 0.013085326179862022, 0.0006576214800588787, 0.04122884199023247, -0.003653825493529439, -0.0018671753350645304, -0.020453371107578278, 0.012038500048220158, -0.02019837498664856, 0.01003208290785551, 0.018507348373532295, -0.024466203525662422, 0.005012686364352703, 0.019326020032167435, -0.004069871734827757, -0.015930544584989548, 0.025244614109396935, 0.0009587517706677318, 0.027351686730980873, -0.019446806982159615, 0.002613710006698966, 0.020466791465878487, 0.009381172247231007, -0.01983601227402687, -0.030894789844751358, -0.02807641215622425, 0.012561912648379803, -0.023499902337789536, -0.009931426495313644, 0.02156730182468891, -0.005730701610445976, 0.0011961329728364944, 0.002650617389008403, 0.028398511931300163, 0.00835447758436203, 0.017836306244134903, 0.039859917014837265, 0.02378174103796482, 0.0040564509108662605, 0.010085766203701496, 0.013273217715322971, -0.00789816863834858, 0.0005418666987679899, -0.019433386623859406, 0.009938137605786324, -0.008361187763512135, -0.0011936165392398834, 0.0039457292295992374, -0.036612071096897125, -0.016682112589478493, 0.058085426688194275, -0.012743094004690647, 0.00047434307634830475, 0.00067439756821841, -0.029311129823327065, 0.005921948701143265, 0.03379369154572487, -0.019567595794796944, 0.012810198590159416, 0.007911588996648788, 0.02831798791885376, -0.006707068532705307, 0.017675256356596947, -0.016856584697961807, 0.018292615190148354, -0.025606976822018623, 0.024170946329832077, 0.034411050379276276, 0.009441565722227097, -0.00597563199698925, -0.009716693311929703, -0.011515086516737938, -0.0013202758273109794, 0.01171639934182167, 0.020453371107578278, 0.004133620765060186, 0.0020517120137810707, -0.0066164773888885975, 0.02845219522714615, -0.007388176396489143, 0.015742653980851173, -0.021097570657730103, -0.008401450701057911, -0.010474971495568752, 0.010756809264421463, 0.017849726602435112, -0.0002935810189228505, -0.027485894039273262, -0.03065321408212185, -0.00800553523004055, -0.05188499391078949, 0.014239518903195858, -0.004989199806004763, -0.004076582379639149, -0.0048751225695014, -0.01409188937395811, 0.017326314002275467, -0.0022496695164591074, -0.0289085041731596, -0.008663157001137733, 0.02344621904194355, -0.03532366827130318, 0.00789816863834858, 0.02066810429096222, -0.020923100411891937, 0.01728605106472969, 0.02264096960425377, -0.01892339438199997, -0.00881078653037548, 0.020574158057570457, 0.005559585988521576, -0.03446473553776741, 0.015407131984829903, -0.0013253086945042014, -0.0014251262182369828, 0.043698277324438095, -0.03548472002148628, -0.003952439408749342, 0.00017604377353563905, -0.015326607041060925, 0.0007041750941425562, 0.010864175856113434, -0.0019594435580074787, 0.023593848571181297, -0.014360306784510612, -0.007857905700802803, 0.0172994714230299, -0.012910855002701283, -0.008153164759278297, -0.008320924825966358, 0.022077294066548347, 0.021983347833156586, 0.002657327800989151, 0.008166585117578506, 0.007676724344491959, -0.006354771088808775, 0.015850020572543144, 0.004626837093383074, -0.0028502524364739656, 0.020587580278515816, 0.003959150053560734, 0.0036102079320698977, 0.025325138121843338, 0.004861701745539904, 0.02598275989294052, -0.009998531080782413, 0.012139156460762024, -0.026855114847421646, -0.0007264033192768693, -0.0027193990536034107, 0.04087990149855614, -0.03618260473012924, 0.006807724479585886, -0.0219296645373106, -0.004992554895579815, -0.004838215187191963, 0.020721787586808205, 0.03462578356266022, 0.006019250024110079, -0.0087638134136796, -0.015729233622550964, 0.009770376607775688, 0.01247467752546072, -0.013783209957182407, 0.013273217715322971, -0.013024931773543358, -0.028827980160713196, -0.007052655331790447, 0.021285463124513626, 0.04675823077559471, 0.006140037439763546, 0.0011550316121429205, 0.013394005596637726, -0.0009352652705274522, -0.012072051875293255, 0.01766183413565159, 0.0026338412426412106, 0.006264180410653353, 0.003502841107547283, -0.00556965172290802, 0.02065468393266201, -0.03610207885503769, 0.008401450701057911, 0.0075089638121426105, 0.020399687811732292, -0.028693770989775658, 0.008710130117833614, 0.0010241783456876874, 0.006190365646034479, -0.007804222404956818, 0.014024784788489342, 0.018869711086153984, -0.007864616811275482, -0.008455133996903896, -0.002580157946795225, -0.004677165299654007, 0.0011223183246329427, -0.033122651278972626, 0.007059365510940552, 0.004955647978931665, 0.0028838044963777065, 0.03100215643644333, 0.031404782086610794, -0.002781470539048314, 0.0040564509108662605, 0.014507935382425785, 0.04839557409286499, 0.003955794498324394, 0.018507348373532295, 0.01866839826107025, -0.02042652852833271, -0.033713169395923615, 0.0016952207079157233, -0.005203933455049992, 0.023365695029497147, 0.00037368672201409936, 0.013756368309259415, -0.004764400888234377, 0.014320043846964836, -0.0028519299812614918, 0.0013236310333013535, 0.014145572669804096, -0.018359718844294548, -0.024882249534130096, 0.019473649561405182, 0.004066516645252705, -0.001476293196901679, 0.0024224629160016775, -0.022788599133491516, -0.002898902865126729, -0.020225215703248978, 0.0315658338367939, -0.017379997298121452, 0.005774319637566805, 0.026331702247262, -0.005398535635322332, -0.0012330403551459312, 0.008689998649060726, 0.030680056661367416, -0.017433680593967438, 0.025620397180318832, 0.01856103166937828, -0.007851195521652699, 0.018051039427518845, -0.01236059982329607, 0.011407719925045967, 0.017487363889813423, -0.010427998378872871, -0.022533603012561798, -0.002226182958111167, 0.007985403761267662, -0.01014616061002016, 0.0027898584958165884, -0.0232180655002594, -0.016172120347619057, -0.004298026207834482, 0.010669573210179806, 0.006965419743210077, -0.01637343317270279, 0.012441124767065048, 0.029525863006711006, -0.0032126151490956545, -0.01833287626504898, -0.034196317195892334, -0.03100215643644333, -0.004730848595499992, 0.09153017401695251, 0.017822884023189545, -0.026090126484632492, 0.013031642884016037, -0.002227860502898693, 0.01982259191572666, -0.013487950898706913, -0.020399687811732292, 0.030116381123661995, 0.00929393619298935, -0.00917314924299717, -0.020131271332502365, 0.020131271332502365, -0.004945582244545221, 0.00210371776483953, -0.012206260114908218, -0.02121835947036743, 0.0006140037439763546, -0.010126029141247272, 0.015474236570298672, 0.010139449499547482, 0.00893828459084034, 0.0045530223287642, 0.014172414317727089, -0.028049569576978683, -0.022788599133491516, 0.025580134242773056, 0.01068299449980259, 0.00991129595786333, -0.01705789566040039, -0.024801725521683693, 0.0175276268273592, 0.029767438769340515, 0.022681230679154396, -0.01682974211871624, 0.001808459172025323, -0.004559732973575592, 0.029499022290110588, 0.013796630315482616, -0.0014561619609594345, 0.0035431035794317722, 0.016735795885324478, 0.006978840567171574, -0.016319749876856804, 0.015756074339151382, -0.0011843896936625242, -0.013555055484175682, -0.009199990890920162, -0.017366576939821243, 0.0012531715910881758, 0.04155094176530838, 0.0027210768312215805, -0.015232661738991737, -0.021620985120534897, 0.007911588996648788, 0.011380878277122974, 0.005032817833125591, 0.004687231034040451, -0.006774172652512789, 0.013347032479941845, -0.0031723526772111654, 0.010421287268400192, 0.02400989457964897, 0.0043114470317959785, -0.018507348373532295, -0.024466203525662422, -0.027217477560043335, -0.0066735162399709225, -0.014038206078112125, 0.01740683801472187, -0.021191516891121864, -0.018869711086153984, -0.018816027790308, 0.0019611213356256485, 0.011676137335598469, -0.003747771494090557, 0.025472767651081085, -0.015568182803690434, -0.006502400618046522, -0.012186129577457905, -0.028264304623007774, -0.02276175655424595, 0.013232954777777195, -0.020614420995116234, -0.024533309042453766, -0.006609767209738493, 0.021782035008072853, 0.022708073258399963, -0.00388533528894186, 0.009367750957608223, -0.004435590002685785, 0.022547023370862007, 0.03422316163778305, -0.0073814657516777515, 0.011280221864581108, 0.00100824108812958, -0.020144691690802574, -0.01775578036904335, -0.0015886927722021937, -0.017728939652442932, -0.0030918277334421873, -0.02435883693397045, -0.017608150839805603, -0.016078174114227295, 0.017232367768883705, -0.01275651529431343, 0.002954263938590884, 0.014856877736747265, -0.022198081016540527, -0.005754188168793917, -0.0038987561129033566, -0.025351980701088905, 0.001683477545157075, 0.0150984525680542, -0.007012392394244671, -0.0036336942575871944, 0.01948706991970539, -0.006233983673155308, 0.012689410708844662, 0.002360391430556774, 0.006123261526226997, -0.029874805361032486, 0.0011567092733457685, -0.008213558234274387, -0.03261265903711319, 0.006613122299313545, 0.008159874938428402, -0.01567554846405983, 0.020252058282494545, 0.015071610920131207, -0.0025096985045820475, 0.01995679922401905, 0.010354183614253998, -0.003932308405637741, -0.033122651278972626, 0.005707215052098036, -0.005942080169916153, 0.005646821577101946, -0.016735795885324478, 0.008622894063591957, -0.01764841377735138, -0.020802313461899757, -0.014762931503355503, -0.026747748255729675, -0.0064185201190412045, -0.022936226800084114, -0.020802313461899757, -0.007925010286271572, -0.0023838779889047146, -0.010246817022562027, -0.0006358126411214471, -0.03051900677382946, -0.030948473140597343, 0.0021741772070527077, -0.007394886575639248, -0.03344475105404854, -0.009944847784936428, -0.011052067391574383, 0.03983307257294655, -0.006985550746321678, 0.02925744652748108, -0.023285169154405594, -0.0035263276658952236, -0.0002822571841534227, -0.009032229892909527, 0.0032142929267138243, -0.01611843705177307, -0.025016458705067635, -0.0394572913646698, -0.025459347292780876, 0.03599471226334572, 0.015420553274452686, 0.012280074879527092, -0.017031054943799973, 0.004693941213190556, 0.0543275885283947, -0.00904565118253231, -0.0026405516546219587, -0.02147335559129715, -0.03760521486401558, -0.022023610770702362, 0.003959150053560734, -0.015621866099536419, 0.0016138568753376603, -0.024452783167362213, -0.00277140480466187, 0.02775431238114834, 0.004157107323408127, 0.017836306244134903, -0.012172708287835121, 0.020346004515886307, -0.008421581238508224, 0.013669132255017757, 0.0049791340716183186, 0.007784091401845217, -0.012051920406520367, 0.023298591375350952, -0.014360306784510612, 0.001895694644190371, -0.0024576925206929445, 0.015017927624285221, -0.0002700945478864014, 0.0016331493388861418, -0.018748924136161804, -0.018614714965224266, 0.008220268413424492, -0.015138715505599976, -0.009542222134768963, 0.00951538048684597, -0.03234424069523811, -0.007072786334902048, -0.0009000355494208634, 0.015125294215977192, -0.01892339438199997, -0.026063285768032074, -0.01264914870262146, 0.014923982322216034, 0.015809757634997368, -0.02333885245025158, -0.01846708543598652, 0.01456161867827177, -0.014360306784510612, 0.037202589213848114, 0.01068299449980259, 0.033364225178956985, -0.0044859182089567184, 0.009931426495313644, 0.008220268413424492, 0.006153458263725042, -0.011213117279112339, -0.015688970685005188, 0.03180740773677826, 0.026170652359724045, -0.00591523852199316, 0.020587580278515816, -0.017675256356596947, -0.0006181977805681527, -0.03237108141183853, -0.028291145339608192, 0.021620985120534897, -0.0016734118107706308, -0.011642584577202797, -0.001389896497130394, -0.004599995445460081, -0.026439068838953972, 0.016870005056262016, 0.0060058292001485825, 0.02668064460158348, -0.0003218906349502504, -0.009891164489090443, -0.02458699233829975, -0.011152723804116249, 0.012280074879527092, 0.0464361310005188, 0.023580428212881088, -0.023580428212881088, -0.020131271332502365, -0.01072996761649847, -0.024331996217370033, -0.010723256506025791, -0.005982342641800642, 0.014843456447124481, -0.010750098153948784, 0.004341644234955311, 0.020721787586808205, -0.004563088063150644, -0.005210643634200096, -0.00409671338275075, -0.018883131444454193, 0.02960638888180256, 0.007005682215094566, 0.02947217971086502, 0.015152135863900185, 0.02366095408797264, 0.02540566399693489, 0.021674668416380882, -0.006160168908536434, -0.0005695471772924066, -0.016453959047794342, 0.007857905700802803, -0.006364836823195219, 0.0032277137506753206, 0.003492775373160839, -0.01072996761649847, -0.027432210743427277, -0.009535511955618858, 0.0004200305847916752, 0.013615448959171772, -0.002093652030453086, -0.050542909651994705, -0.03575313836336136, 0.008226979523897171, -0.029176920652389526, 0.011796924285590649, 0.0011424495605751872, 0.024519886821508408, -0.012145866639912128, 0.03628997132182121, -0.03374001011252403, 0.01317927148193121, -0.0311095230281353, 0.013266507536172867, -0.02818377874791622, 0.006985550746321678, 0.0023234840482473373, -0.013695974834263325, 0.018037619069218636, -0.01962127909064293, -0.024399099871516228, 0.021379409357905388, 0.011219828389585018, 0.005730701610445976, 0.003875269554555416, 0.014333464205265045, 0.0023754900321364403, 0.00713989045470953, 0.018748924136161804, -0.02021179534494877, -0.042517244815826416, 0.01762157306075096, 0.016735795885324478, -0.0020231925882399082, 0.01810472272336483, -0.030787423253059387, 0.02655985578894615, 0.013434267602860928, 0.018735501915216446, 0.013380584307014942, -0.03253213316202164, 0.007274099159985781, -0.0009839158738031983, 0.016655271872878075, 0.005962211173027754, -0.007878037169575691, -0.006069578230381012, -0.011622453108429909, -0.005834713112562895, -0.002531507285311818, 0.011629164218902588, -0.01658816635608673, 0.01067628338932991, 0.009508670307695866, -0.009052361361682415, -0.0020416462793946266, -0.006143392529338598, -0.00507308030501008, 0.003999412525445223, -0.015125294215977192, -0.03736363723874092, -0.010481681674718857, -0.020721787586808205, 0.027365107089281082, -0.018077880144119263, -0.005885041318833828, -0.014346885494887829, -0.02148677594959736, -0.017702097073197365, -0.00783106405287981, 0.016963951289653778, 0.016225803643465042, 0.038115207105875015, 0.013286639004945755, 0.020453371107578278, 0.029660072177648544, -0.02089625969529152, -0.0032595882657915354, 0.004170528147369623, -0.008622894063591957, -0.01684316247701645, -0.016802901402115822, 0.001389057724736631, -0.00021704025857616216, -0.01346110925078392, 0.013286639004945755, 0.009213411249220371, 0.0028854820411652327, 0.009267094545066357, 0.004093358293175697, -0.0004709878412541002, 0.0025952563155442476, -0.004767755977809429, 0.008864469826221466, 0.009951557964086533, 0.015232661738991737, 0.0027512735687196255, -0.022426234558224678, -0.017822884023189545, -0.005593137815594673, -0.013199402950704098, -0.021070729941129684, -0.00957577396184206, 0.013206113129854202, -0.017366576939821243, 0.015071610920131207, -0.01937970332801342, -0.014360306784510612, -0.023580428212881088, -0.02658669836819172, 0.06254114955663681, -0.014400568790733814, 0.012582044117152691, 0.02168808877468109, 0.01613185741007328, -0.020252058282494545, -0.01102522574365139, 0.006344705354422331, 0.0034994857851415873, -0.027351686730980873, 0.004660388920456171, -0.02531171776354313, 0.011166145093739033, 0.0005099921836517751, 0.011629164218902588, -0.02461383305490017, 0.006160168908536434, -0.0020080942194908857, 0.005700504872947931, -0.01003879401832819, 0.021782035008072853, 0.01903076097369194, -0.01822550967335701, -8.639669977128506e-05, -0.0025516385212540627, -0.009226832538843155, 0.01623922400176525, -0.008817496709525585, -0.017111580818891525, 0.008535658940672874, 0.010495102033019066, 0.0066835819743573666, 0.00806592870503664, -0.013172561302781105, -0.014507935382425785, 0.021446513012051582, -0.042651452124118805, 0.0034827098716050386, 0.19218653440475464, -0.03191477432847023, 0.0013420847244560719, 0.03376685082912445, -0.006056157406419516, -0.0005309622501954436, 0.006720489356666803, 0.007589489221572876, -0.021272042766213417, -0.01857445202767849, -0.016172120347619057, 0.01822550967335701, -0.004871767479926348, 0.0021339147351682186, 0.008804075419902802, -0.006395033560693264, -0.026613539084792137, -0.012387441471219063, 0.008173296228051186, -0.04361775144934654, -0.0018772409530356526, -0.009904584847390652, -0.017017634585499763, -0.008958415128290653, 0.016870005056262016, -0.004251053091138601, -0.018037619069218636, 0.007072786334902048, 0.029552705585956573, 0.0014779707416892052, -0.0350552536547184, 0.005012686364352703, 0.0014142217114567757, -0.010642731562256813, -0.014360306784510612, 0.017017634585499763, 0.009528801776468754, 0.005093211308121681, -0.0003237779310438782, -0.011508376337587833, 0.0021355922799557447, 0.0023352273274213076, 0.00537169398739934, 0.004844925832003355, -0.006931867450475693, 0.016883425414562225, -0.01346110925078392, -0.013407425954937935, -0.016453959047794342, 0.023191222921013832, -0.026157230138778687, 0.002778115449473262, 0.04316144436597824, 0.02551303058862686, -0.007703565992414951, -0.010911148972809315, 0.0021221714559942484, 0.007408307399600744, -0.011763372458517551, 0.006374902557581663, -0.015809757634997368, 0.019634699448943138, -0.009408013895154, 0.034652628004550934, -0.019997062161564827, 0.011078909039497375, -0.008226979523897171, -0.0054790605790913105, 0.00580451637506485, -0.02728458121418953, -0.012508229352533817, -0.017031054943799973, -0.007327782455831766, -0.0017514205537736416, -0.010474971495568752, -0.002865350805222988, 0.03398158401250839, -0.029391655698418617, -0.0012028433848172426, -0.01681632176041603, 0.01038102526217699, -0.016453959047794342, 0.009374462068080902, -0.013997943140566349, 0.009589195251464844, -0.02227860689163208, -0.00046931023825891316, -0.01033405214548111, -0.012132445350289345, 0.01751420460641384, -0.01982259191572666, -0.02123177982866764, -0.0015324929263442755, -0.0073814657516777515, 0.0005037011578679085, -0.016870005056262016, 0.024680938571691513, 0.02133914642035961, 0.0062910220585763454, -0.005552875343710184, -0.009709983132779598, 0.007354624103754759, 0.03787362948060036, 0.01833287626504898, -0.027700629085302353, -0.008582632057368755, 0.010776939801871777, 0.012038500048220158, 0.004187304060906172, -0.00893157348036766, 0.020453371107578278, -0.017916830256581306, 0.0030230458360165358, -0.02030574157834053, 0.008159874938428402, 0.018306035548448563, -0.012850460596382618, -0.0003241973463445902, 0.0051972228102386, -0.0015316541539505124, 0.006093064788728952, -0.016963951289653778, 0.011038647033274174, -0.00012236037582624704, -0.011005094274878502, -0.0032142929267138243, -0.032424766570329666, 0.03135109692811966, 0.015205820091068745, -0.009401303716003895, 0.027016164734959602, -0.03365948423743248, 0.0019191810861229897, 0.004006122704595327, -0.013736236840486526, -0.0022077292669564486, -0.013863734900951385, -0.02668064460158348, 0.027995886281132698, -0.010072345845401287, 0.00015601734048686922, -0.005593137815594673, 0.00556965172290802, 7.994840416358784e-05, 0.012716252356767654, -0.004589929711073637, 0.014897140674293041, -0.005781029816716909, 0.004700651858001947, -0.01948706991970539, -0.014481093734502792, 0.004153752233833075, -0.0049959104508161545, -0.01352821383625269, 0.0014150606002658606, -0.009408013895154, -0.017232367768883705, -0.020225215703248978, -0.003358566900715232, 0.027888519689440727, -0.027110110968351364, 0.012763225473463535, 0.02888166345655918, -0.030680056661367416, -0.013555055484175682, -0.015125294215977192, -0.17060580849647522, 0.0035162619315087795, 0.00327971950173378, -0.0028502524364739656, 0.022694652900099754, 0.04165830835700035, 0.03261265903711319, 0.013347032479941845, -0.005599848460406065, -0.017782622948288918, 0.03062637336552143, 0.016078174114227295, -0.047187697142362595, -0.011273511685431004, -0.016735795885324478, 0.0038987561129033566, -0.01276993565261364, 0.029767438769340515, 0.028613245114684105, 0.022198081016540527, 0.019755486398935318, -0.006804369390010834, -0.004757690243422985, -0.007394886575639248, 0.011770082637667656, 0.00013682972348760813, -0.0016616686480119824, 0.02717721462249756, 0.013534924015402794, -0.011380878277122974, -0.018359718844294548, 0.02380858175456524, 0.010830623097717762, -0.026439068838953972, 0.013930839486420155, 0.007354624103754759, -0.006519176531583071, -0.004925450775772333, -0.01904418133199215, 0.016534483060240746, 0.01658816635608673, -0.016198962926864624, 0.012897433713078499, 0.0033451460767537355, 0.0004200305847916752, 0.031136365607380867, 0.002692557405680418, -0.014185835607349873, 0.00922012235969305, -0.03473315387964249, 0.005723991431295872, 0.0033334027975797653, 0.00964287854731083, 0.000314970500767231, 0.024976195767521858, 0.007609620224684477, 0.010327341966331005, -0.002353681018576026, -0.011931133456528187, -0.017098158597946167, -0.013481240719556808, -0.011575480923056602, 0.011340615339577198, -0.018641555681824684, -0.005549520254135132, -0.0024677582550793886, -0.016507642343640327, 0.03234424069523811, -0.015836600214242935, 0.013689263723790646, -0.00010359215957578272, 0.006599701475352049, 0.033605802804231644, -0.016292909160256386, -0.009797218255698681, -0.013850314542651176, -0.015943966805934906, 0.017608150839805603, -0.01682974211871624, -0.007656593341380358, -0.02947217971086502, 0.033954743295907974, -0.007535805460065603, -0.016963951289653778, -0.007435149047523737, 0.018520768731832504, -0.025929076597094536, -0.020923100411891937, -0.016923688352108, -0.0116090327501297, 0.0005787740228697658, -0.03309581056237221, -0.017943672835826874, -0.00014217710122466087, 0.02029232122004032, 0.013971101492643356, 0.008273952640593052, -0.028291145339608192, 0.003975925967097282, -0.013903997838497162, 0.008341056294739246, -0.02205045148730278, -0.02123177982866764, 0.029176920652389526, 0.026318281888961792, 0.0041134897619485855, -0.011998237110674381, 0.013098746538162231, 0.02195650525391102, 0.002737852744758129, -0.019997062161564827, 0.022345710545778275, 0.03148530796170235, 0.0009277160279452801, 0.035672612488269806, 0.03749784827232361, 0.00699226139113307, -0.017460521310567856, 0.015178978443145752, 0.00018915005784947425, 0.06978840380907059, -0.0037544819060713053, -0.011099040508270264, -0.005529388785362244, -0.010421287268400192, -0.043832484632730484, -0.11552665382623672, 0.004965713247656822, 0.009938137605786324, 0.008421581238508224, -0.00783106405287981, 0.02690879814326763, -0.012971248477697372, 0.025123825296759605, 0.0010451484704390168, 0.007334493100643158, -0.02333885245025158, -0.02925744652748108, -0.0004458237672224641, -0.0013169206213206053, 0.0071264696307480335, -0.020399687811732292, -0.0019913180731236935, -0.027646945789456367, 0.01822550967335701, 0.033713169395923615, -0.0028670283500105143, -0.02168808877468109, 0.011682847514748573, -0.033364225178956985, 0.023352274671196938, -0.004549667239189148, -0.03577997907996178, 0.01625264622271061, 0.03357895836234093, 0.012038500048220158, -0.006525886710733175, -0.019701803103089333, 0.012233101762831211, -0.0103206317871809, 0.009025519713759422, -0.01962127909064293, -0.03653154522180557, -0.009012098424136639, 0.018762344494462013, -0.03658523038029671, 0.004069871734827757, -0.007535805460065603, 0.02678801119327545, -0.034894201904535294, 0.0008740326738916337, -0.0014259649906307459, -0.014521356672048569, -0.007059365510940552, 0.00504959374666214, -0.02925744652748108, -0.020010482519865036, 0.0007469539996236563, -0.032102666795253754, -0.012951117008924484, 0.01038102526217699, 0.0068010143004357815, 0.026143809780478477, 0.0028905149083584547, -0.021916242316365242, -0.008086060173809528, -0.0226141270250082, 0.03076058067381382, 0.0054186671040952206, 0.03588734567165375, 0.012877303175628185, 0.005277748219668865, -0.00824039988219738, -0.024989617988467216, 0.02551303058862686, 0.006619832944124937, -0.010589048266410828, 0.01670895516872406, -0.039403606206178665, 0.010347473435103893, -0.021661246195435524, 0.0050663696601986885, -0.030465323477983475, -0.0024224629160016775, 0.023513324558734894, 0.006502400618046522, -0.0035095515195280313, -0.022828860208392143, -0.005462284665554762, 0.010287079028785229, 0.014293202199041843, 0.018292615190148354, 0.0027831480838358402, -0.011447982862591743, -0.004573153797537088, -0.012206260114908218, 0.007354624103754759, 0.023057015612721443, -0.0065862806513905525, -0.04665086418390274, 0.013783209957182407, 0.04364459589123726, 0.025029879063367844, -0.0029643296729773283, -0.02218466065824032, -0.0005569651257246733, -0.015568182803690434, 0.026412226259708405, -0.06345376372337341, 0.033847376704216, -0.0030045921448618174, 0.007180153392255306, 0.001981252571567893, -0.00603938102722168, 0.006566149182617664, -0.017326314002275467, -0.009253674186766148, 0.019567595794796944, -0.015756074339151382, 0.03376685082912445, -0.009354330599308014, -0.019124707207083702, -0.021527038887143135, -0.00664667459204793, -0.003405540017411113, -0.027915362268686295, 0.006358126178383827, 0.007388176396489143, 0.002316773636266589, 0.0007503092056140304, 0.03532366827130318, -0.005784384906291962, -0.024748042225837708, 0.00026485201669856906, 0.01068299449980259, 0.012098893523216248, -0.007045944686979055, -0.017782622948288918, 0.011052067391574383, -0.019929958507418633, -0.0197286456823349, 0.00863631535321474, -0.000717176531907171, 0.003955794498324394, -0.022681230679154396, -0.00176987424492836, 0.005468995310366154, 0.04063832387328148, -0.01195797510445118, -0.004573153797537088, -0.01195797510445118, -0.014481093734502792, 0.010944700799882412, 0.02551303058862686, -0.0032612658105790615, -0.0014645499177277088, 0.006750686094164848, -0.015635287389159203, 0.026720905676484108, 0.0289085041731596, 0.015232661738991737, -0.033364225178956985, -5.263488492346369e-05, 0.003029756247997284, 0.03773942217230797, -0.00818000640720129, 0.02158072218298912, -0.012441124767065048, -0.0033820534590631723, 0.0008740326738916337, 0.013474530540406704, 0.004170528147369623, 0.017836306244134903, -0.009367750957608223, -0.0037679027300328016, -0.007113048806786537, -0.0029727176297456026, -0.0232180655002594, 0.013729526661336422, 0.00464025791734457, 0.0043584201484918594, -0.0069587090983986855, 0.005757543258368969, 0.01602449081838131, 0.01578291691839695, 0.01143456157296896, -0.02818377874791622, 0.0035162619315087795, -0.013031642884016037, 0.0009948202641680837, -0.04412774369120598, 0.01480319444090128, 0.03204898163676262, -0.007146601099520922, 0.015044769272208214, 0.021553879603743553, -0.010112607851624489, 0.01508503220975399, 0.007368044927716255, -0.007233836688101292, -0.0011894225608557463, -0.0055059026926755905, -0.0017832950688898563, 0.023124119266867638, -0.01080378144979477, 0.009548932313919067, 0.029069554060697556, 0.0324784480035305, -0.01831945590674877, 0.014199255965650082, 0.01705789566040039, -0.019581016153097153, -0.008273952640593052, -0.013045063242316246, -0.01854761131107807, -0.012004947289824486, 0.004704006947577, 0.018373139202594757, 0.01027365867048502, 0.007200284395366907, 0.03516262024641037, 0.018185248598456383, -0.01357518695294857, 0.02043995074927807, 0.006978840567171574, -0.003794744610786438, -0.003041499527171254, 0.0285327211022377, 0.012179418466985226, 0.0380883626639843, 0.002769727259874344, 0.01264243759214878, 0.029445338994264603, 0.013971101492643356, 0.018064459785819054, 0.022573864087462425, -0.0007775702979415655, 0.02622433565557003, 0.004522825591266155, 0.002905613277107477, -0.040557797998189926, 0.0034390920773148537, -0.006529242265969515, -0.03355211764574051, -0.006066222675144672, 0.0197286456823349, -0.03143162280321121, 0.04372511804103851, 0.014293202199041843, -0.003111958969384432, 0.012286785058677197, -0.005764253903180361, 0.032183192670345306, 0.028640087693929672, 0.007703565992414951, 0.0003529263485688716, -0.004610061179846525, 0.007354624103754759, -0.013997943140566349, 0.015313186682760715, -0.031404782086610794, -0.006666805595159531, 0.013729526661336422, 0.006448716856539249, 0.03400842472910881, -0.02575460635125637, -0.02344621904194355, 0.02276175655424595, -0.006240693852305412, 0.03178056702017784, 0.01079036109149456, 0.003546458901837468, -0.001052697654813528, 0.014776352792978287, 0.006690292153507471, 0.008233689703047276, -0.03908150643110275, 0.00013777338608633727, 0.0059487903490662575, -0.010750098153948784, -0.013548345305025578, 0.031270574778318405, 0.01293098647147417, 0.006757396273314953, -0.03132425621151924, 0.04039674997329712, -0.014467673376202583, -0.00807263981550932, 0.001852076849900186, -0.023848844692111015, -0.023902527987957, 0.017460521310567856, -0.008716840296983719, -0.016682112589478493, 0.01201836857944727, -0.012897433713078499], "9c95fe58-257d-492e-91dd-12dfde2c9b30": [0.010175864212214947, -0.024829378351569176, -0.001879736315459013, 0.008685561828315258, -0.013116007670760155, 0.021646469831466675, -0.011302019469439983, -0.02624550089240074, 0.0009676848421804607, -0.02821458876132965, 0.0227254219353199, 0.0224691703915596, 0.024370823055505753, 0.0011421715607866645, -0.020122449845075607, 0.016008947044610977, 0.036576464772224426, -0.0076605575159192085, 0.031100785359740257, -0.0106681352481246, -0.003177850041538477, 0.003536938689649105, -0.004764246288686991, 0.022145485505461693, -0.007026673294603825, 0.02632642351090908, 0.007910065352916718, -0.016143815591931343, 0.009757770225405693, -0.017640860751271248, -0.023561609908938408, -0.0032149390317499638, 0.01714184693992138, -0.0004522325180005282, -0.026016224175691605, 0.003435787046328187, 0.012407945469021797, -0.019326724112033844, 0.01256304420530796, -0.006419762969017029, -0.007997729815542698, -0.001930312137119472, -0.012097747065126896, 0.004069671034812927, -0.019070472568273544, 0.020378701388835907, 0.008962043561041355, -0.013554331846535206, -0.01791059970855713, 0.027364913374185562, 0.027310967445373535, 0.0019775163382291794, -0.017870139330625534, 0.007431280333548784, -0.013116007670760155, 0.0005428476142697036, 0.019326724112033844, 0.012010081671178341, 0.0002868073061108589, 0.009616157971322536, 0.005067701451480389, 0.009252011775970459, 0.007734735496342182, 7.24920755601488e-05, -0.034499481320381165, -0.01629217155277729, -0.011679653078317642, -0.015928026288747787, -0.009798230603337288, -0.017640860751271248, 0.05068375915288925, 0.03633370250463486, -0.02160600945353508, -0.010263528674840927, 0.02450569160282612, -0.03975937142968178, -0.03371724113821983, -0.020257320255041122, -0.008490001782774925, 0.004373126197606325, -0.007714505307376385, -0.02039218880236149, -0.005165481474250555, -0.0006735019269399345, 0.019407644867897034, -0.010782774537801743, -0.0014523701975122094, 0.028052745386958122, -0.004494508262723684, -0.019272776320576668, 0.013149724341928959, 0.005563345272094011, -0.006308495998382568, 0.020189885050058365, -0.00283899181522429, 0.02915867231786251, -0.01990666054189205, 0.04097319394350052, -0.009447571821510792, -0.01521322038024664, -0.013985912315547466, -0.009852178394794464, -0.018719812855124474, -0.007100851275026798, -0.02813366800546646, 0.016507962718605995, -0.01885468140244484, -0.014174728654325008, 0.024707995355129242, -0.007613353431224823, -0.019582973793148994, 0.017128359526395798, -0.01526716724038124, -0.05459496006369591, -0.0028491069097071886, -0.016170790418982506, 0.017870139330625534, -0.02888893336057663, -0.032206710427999496, -0.021282324567437172, -0.009676848538219929, 0.003580771153792739, -0.024977734312415123, -0.025153063237667084, 0.017101384699344635, 0.005391387268900871, 0.007498714607208967, -0.0329350009560585, 0.003712268313392997, -0.014498414471745491, 0.03611791133880615, 0.0007687531178817153, 0.0008850776357576251, -0.012556301429867744, -0.0014144383603706956, 0.011774061247706413, -0.036306727677583694, -0.005020497366786003, -0.0015788099262863398, -0.013021599501371384, 0.02170041762292385, 0.001857820083387196, -0.0014397262129932642, -0.02307608164846897, -0.01747901923954487, 0.028430379927158356, 0.0008758053882047534, 0.010856952518224716, -0.026285963132977486, 0.002577683189883828, 0.01938067190349102, -0.02536885254085064, 0.025598131120204926, -0.03002183325588703, 0.03927384316921234, -0.010958103463053703, -0.0044709062203764915, 0.015078350901603699, 0.005219429265707731, 0.002643431769683957, 0.01859843172132969, 0.01058721449226141, 0.015995459631085396, 0.0017381238285452127, 0.006069103721529245, 0.02640734426677227, 0.018058955669403076, -0.018274744972586632, -0.02288726530969143, -0.012192155234515667, 0.02442477084696293, 0.013824069872498512, -0.041458722203969955, 0.008085395209491253, -0.01619776338338852, 0.015617826953530312, 0.03781725838780403, 0.029050776734948158, -0.0222129188477993, -0.009164346382021904, -0.03603699058294296, -0.0025675680954009295, 0.019677381962537766, 0.011639191769063473, -0.02307608164846897, 0.006800767965614796, -0.011072742752730846, -0.016251711174845695, 0.009083425626158714, 0.005694842431694269, 0.01971784420311451, 0.007195259444415569, -0.013392488472163677, -0.013089033775031567, -0.6499605178833008, -0.016480987891554832, -0.01397242583334446, -0.00788983516395092, -0.014323084615170956, 0.00886763446033001, 0.02956327795982361, 0.002100584330037236, -0.008935069665312767, 0.005762276705354452, -0.029104724526405334, 0.004754131194204092, -0.016818160191178322, -0.013837556354701519, -0.01316321175545454, -0.014943482354283333, -0.011403171345591545, -0.019083959981799126, 0.008968786336481571, -0.030210649594664574, -0.018571456894278526, -0.004116875119507313, 0.012853013351559639, 0.008820430375635624, -0.008200033567845821, -0.0007733892416581511, 0.01698000356554985, 0.0007232348434627056, 0.014093807898461819, 0.031154733151197433, -0.029428409412503242, 0.030318545177578926, 0.016480987891554832, 0.019003037363290787, 0.04431794211268425, -0.018638892099261284, -0.01758691295981407, 0.02281983010470867, 0.021929694339632988, 0.018719812855124474, -0.026771491393446922, -0.011517809703946114, 0.0277020875364542, 0.0048788851127028465, 0.022698447108268738, 0.017964547500014305, 0.0277020875364542, -0.022941211238503456, 0.018288232386112213, 0.024546151980757713, 0.007397563196718693, -0.004039325751364231, -0.0215925220400095, 0.0011860040249302983, -0.0006026957416906953, 0.001491145114414394, 0.0229816734790802, -0.0024950760416686535, 0.010789517313241959, 0.013648740015923977, 0.0018713070312514901, 0.029617225751280785, 0.003147504525259137, 0.009636388160288334, -0.017721783369779587, 0.005718444474041462, -0.008948556147515774, 0.015536905266344547, 0.010142146609723568, -0.015186246484518051, 0.025355366989970207, 0.019003037363290787, 0.0026754632126539946, -0.03530869632959366, 0.022334301844239235, 0.0013807211071252823, 0.03868041932582855, -0.015469470992684364, 0.013999398797750473, 0.014606309123337269, -0.0023467200808227062, -0.02450569160282612, -0.03215276449918747, -0.018733300268650055, 0.010614188387989998, -0.020972125232219696, -0.015442497096955776, 0.013662226498126984, -0.0034273576457053423, -0.00029818687471561134, -3.529773675836623e-05, 0.013399232178926468, 0.010088198818266392, 0.009548722766339779, 0.030588282272219658, 0.021026073023676872, -0.011430145241320133, 0.00810562539845705, 0.010634418576955795, -0.025409314781427383, 0.00450462382286787, -0.023885294795036316, 0.0019910032860934734, -0.016400067135691643, 0.015375062823295593, -0.011376197449862957, -0.040163978934288025, -0.017775731161236763, 0.048903487622737885, -0.03379816561937332, -0.005027241073548794, 0.011511066928505898, -0.01689908280968666, -0.004835052415728569, 0.02701425552368164, -0.02125534974038601, 0.010560240596532822, 0.000211681064683944, 0.016845135018229485, -0.007734735496342182, 0.023035619407892227, -0.012273075990378857, 0.016400067135691643, -0.012097747065126896, 0.023709965869784355, 0.027068203315138817, 0.0060994490049779415, 0.0014397262129932642, -0.00886763446033001, -0.005522884428501129, -5.642369796987623e-05, 0.005384643562138081, 0.00933967623859644, 0.011086229234933853, 0.0013781923335045576, -0.018477048724889755, 0.013824069872498512, 0.0019910032860934734, 0.002946886932477355, -0.02667708322405815, -0.01962343603372574, 0.00456531485542655, 0.004481021780520678, 0.016103355213999748, -0.013183441944420338, -0.029725121334195137, -0.02074284851551056, 0.008948556147515774, -0.026110632345080376, 0.003567284205928445, -0.01358804851770401, -0.019353697076439857, -0.012718143872916698, -0.009332932531833649, 0.012279819697141647, 0.004912602249532938, -0.014026372693479061, -0.005404874216765165, 0.0033548655919730663, -0.026043199002742767, -0.0012230930151417851, 0.02323792316019535, -0.021147454157471657, 0.004518110305070877, 0.028349457308650017, -0.009103655815124512, -0.00989938247948885, 0.024074111133813858, -0.0033396929502487183, -0.037008047103881836, 0.001923568663187325, -0.0022641129326075315, 0.012522583827376366, 0.04887651652097702, -0.02725701965391636, 0.0022995159961283207, -0.009751026518642902, -0.04151266813278198, -0.025395827367901802, 0.011295276693999767, 0.008833917789161205, 0.011281789280474186, -0.02160600945353508, -0.009622900746762753, 0.025948790833353996, 0.0017296945443376899, 0.0006549574318341911, -0.0035841430071741343, 0.02683892473578453, 0.011558271013200283, 0.019825737923383713, 0.008773226290941238, 0.01370943058282137, -0.01114692073315382, 0.004130362067371607, -0.02315700240433216, 0.005094675347208977, 0.018638892099261284, 0.012239359319210052, 0.022860290482640266, 0.02527444437146187, -0.005222801119089127, 0.02186226099729538, 0.0012079202570021152, 0.005344183184206486, -0.019569488242268562, -0.0012981138424947858, -0.010283758863806725, 0.0454508438706398, -0.02304910682141781, 0.007950525730848312, -0.022657986730337143, -0.01946159265935421, -0.019272776320576668, 0.022307327017188072, 0.032530397176742554, 0.012738374061882496, 0.0011902187252417207, -0.01584710367023945, -0.01272488757967949, 0.00012738796067424119, -0.018207311630249023, 0.010128660127520561, -3.632506195572205e-05, -0.01672375202178955, -0.003715640166774392, 0.008476514369249344, 0.023696478456258774, 0.030669204890727997, -0.009326189756393433, 0.014525388367474079, -0.0037898181471973658, -0.01613032817840576, 0.019326724112033844, 0.009960073977708817, 0.009258754551410675, 0.011295276693999767, -0.014390518888831139, 0.037169888615608215, -0.02743234857916832, -0.008152829483151436, 0.012300049886107445, 0.019353697076439857, -0.008564179763197899, 0.0013478468172252178, 0.008955299854278564, 0.01920534111559391, -0.0025675680954009295, 0.0019336838740855455, 0.022873777896165848, -0.014242162927985191, -0.0004994366317987442, -0.002945201238617301, -0.011308763176202774, -0.004400100093334913, -0.03404092788696289, -0.001022475422360003, 0.009528492577373981, 0.010196094401180744, 0.029536304995417595, 0.017640860751271248, -0.0021848774049431086, -0.0034442164469510317, 0.01024329848587513, 0.045477818697690964, 0.013439692556858063, 0.017371123656630516, 0.02075633406639099, -0.03196394443511963, -0.02460009977221489, -0.009501518681645393, -0.023642530664801598, 0.011032281443476677, -0.003314404981210828, 0.0177487563341856, -0.0030716408509761095, 0.009582440368831158, -0.004275346174836159, 0.014080320484936237, 0.011821265332400799, -0.024883324280381203, -0.024195494130253792, 0.0153885493054986, -0.0017836421029642224, -0.00129642803221941, -0.017425071448087692, -0.03606396168470383, -0.015833618119359016, -0.014228676445782185, 0.04078437760472298, -0.01773526892066002, 0.004902487155050039, 0.0156987477093935, -0.011726857163012028, -0.009697078727185726, -0.007491971366107464, 0.01971784420311451, -0.027580704540014267, 0.02136324532330036, 0.009764513932168484, -0.014889534562826157, 0.01204379927366972, -0.02058100514113903, 0.018706325441598892, 0.008152829483151436, -0.0009196377941407263, 0.0015939826844260097, -0.01859843172132969, 0.005802737548947334, -0.004811450373381376, -0.017708295956254005, -0.028322484344244003, -0.005613920744508505, -0.002788415877148509, -0.0025591386947780848, -0.005249774549156427, -0.004636120982468128, 0.003752729156985879, 0.024020163342356682, 0.003218310885131359, -0.000211470338399522, -0.0044574192725121975, -0.020688900724053383, -0.021147454157471657, 0.09850829839706421, 0.018800735473632812, -0.014687230810523033, 0.02743234857916832, 0.020769821479916573, -0.0014726006193086505, -0.030156701803207397, -0.02794485166668892, 0.02932051382958889, 0.009730796329677105, 0.008941812440752983, -0.004039325751364231, 0.01947508007287979, -0.0031137873884290457, 0.013648740015923977, -0.008152829483151436, -0.006217459682375193, -0.0065849777311086655, -0.00865184422582388, -1.3111529369780328e-05, -0.0010275329696014524, -0.02048659697175026, 0.01517275907099247, 0.02443825826048851, -0.029455382376909256, -0.02290075086057186, 0.03627975285053253, 0.013257619924843311, 0.0166158564388752, -0.013554331846535206, -0.003563912585377693, 0.027971824631094933, 0.025948790833353996, 0.014107294380664825, -0.008692305535078049, -0.010661392472684383, 0.011962877586483955, 0.03865344822406769, 0.007802169770002365, -0.0011447003344073892, 0.015617826953530312, 0.025314906612038612, 0.0056746117770671844, -0.016764212399721146, 0.009184576570987701, -6.917303107911721e-05, -0.00512502109631896, -0.006645668763667345, -0.027364913374185562, 0.0032469704747200012, 0.048390988260507584, 0.004592288285493851, -0.025598131120204926, -0.025072142481803894, 0.028781037777662277, 0.011322250589728355, -0.0003453910176176578, 0.007309898268431425, -0.013527357950806618, 0.017681322991847992, -0.01272488757967949, -0.00146248540841043, 0.005539742764085531, 5.753004370490089e-05, -0.02048659697175026, -0.01584710367023945, -0.012488867156207561, -0.015186246484518051, -0.014012886211276054, 0.015928026288747787, -0.008739509619772434, -0.02392575517296791, -0.028915908187627792, 0.0009010932990349829, 0.008510231971740723, 0.005165481474250555, 0.014660256914794445, -0.02442477084696293, 0.0006305124261416495, -0.006810883060097694, -0.017344148829579353, -0.027310967445373535, 0.017883624881505966, -0.019003037363290787, -0.010850208811461926, -0.005020497366786003, 0.010593957267701626, 0.018409615382552147, -0.02228035405278206, 0.008739509619772434, -0.0043090637773275375, 0.032638292759656906, 0.012536071240901947, -0.004214655142277479, 0.0008918210514821112, 0.002982290228828788, -0.006291637662798166, -0.01281255204230547, -0.008004473522305489, -0.015253680758178234, 0.008483258076012135, -0.03676528111100197, -0.004116875119507313, -0.020176397636532784, 0.003924686927348375, -0.008260724134743214, -0.0032014523167163134, 0.023305358365178108, -0.023345818743109703, -0.015563879162073135, 0.00017395989561919123, -0.02948235720396042, 0.004838424269109964, 0.005317209288477898, 0.0022000500466674566, 0.0031441329047083855, 0.0069996993988752365, 0.010297246277332306, -0.008092137984931469, -0.0018679352942854166, -0.001288841594941914, -0.024977734312415123, 0.004130362067371607, -0.005155366379767656, -0.005394758656620979, -0.00629838090389967, 0.010256784968078136, -0.025085628032684326, 0.025058655068278313, -0.00016426619549747556, 0.012751861475408077, 0.022010616958141327, 0.014633283019065857, -0.02349417470395565, -0.02650175243616104, 0.00878671370446682, -0.009933100081980228, 0.0018915373366326094, -0.004895743448287249, 0.0006735019269399345, -0.0121314637362957, -0.018031980842351913, -0.015186246484518051, -0.031235653907060623, 0.0007797112339176238, -0.018504023551940918, -0.01182800903916359, 0.0027580703608691692, -0.009447571821510792, -0.011045768857002258, -0.01723625510931015, -0.038194891065359116, -0.02296818606555462, 0.014174728654325008, -0.005637522786855698, -0.03404092788696289, -0.022509630769491196, -0.012677683494985104, 0.043940309435129166, 0.0011725170770660043, 0.026299448683857918, -0.016845135018229485, 0.008361876010894775, 0.009265498258173466, 0.002017976948991418, 0.0011910615721717477, -8.047357368923258e-06, -0.009380136616528034, -0.04666466265916824, -0.017344148829579353, 0.019151393324136734, 0.020634952932596207, 0.007438023574650288, -0.015793155878782272, 0.0044574192725121975, 0.03574027866125107, -0.014808612875640392, -0.009885895997285843, -0.01627868413925171, -0.03471527248620987, -0.01259676180779934, 0.014417492784559727, -0.022995159029960632, -0.002044950844720006, -0.013459923677146435, -0.007040160242468119, 0.038869235664606094, 0.003299232106655836, 0.010513036511838436, -0.024802403524518013, 0.010985077358782291, -0.014444466680288315, 0.009717308916151524, -0.0025759972631931305, 0.016157303005456924, -0.009488032199442387, 0.02503168024122715, -0.004663094878196716, -0.0008374520111829042, 0.0016555165639147162, 0.01645401492714882, -0.007336872164160013, -0.009096912108361721, -0.022172458469867706, -0.0287270899862051, 0.012428175657987595, -0.016103355213999748, -0.010081456042826176, 0.026258988305926323, -0.013999398797750473, -0.016413554549217224, -0.005428476259112358, -0.010513036511838436, -0.01929974928498268, -0.029886964708566666, -0.010823234915733337, -0.0009912869427353144, 0.017816191539168358, -0.01653493568301201, -0.020688900724053383, 0.01637309230864048, -0.009960073977708817, 0.04973967745900154, 0.013736404478549957, 0.04847190901637077, 0.005027241073548794, -0.00809888169169426, -0.0010570355225354433, 0.007397563196718693, -0.013338541612029076, -0.00989938247948885, 0.013223902322351933, 0.02315700240433216, -0.006787281017750502, 0.004754131194204092, -0.01997409388422966, -0.008860891684889793, -0.0510883666574955, -0.03466132655739784, 0.02160600945353508, -0.006224202923476696, -0.009198063984513283, -0.012643965892493725, -0.001116040744818747, -0.026285963132977486, 0.013001368381083012, 0.0031576198525726795, 0.021376732736825943, -0.021552061662077904, -0.003083441872149706, -0.02228035405278206, -0.0007240778068080544, 0.00381679181009531, 0.030588282272219658, 0.025314906612038612, -0.025611618533730507, -0.016238223761320114, 0.002269170479848981, -0.016507962718605995, -0.007498714607208967, -0.00998704694211483, 0.006632181815803051, -0.010776030831038952, -0.0023787515237927437, -0.003563912585377693, -0.01101879496127367, 0.0051958272233605385, 0.0033531798981130123, -0.017883624881505966, 0.025018194690346718, 0.022010616958141327, 0.01358804851770401, 0.011039025150239468, 0.0060960776172578335, 0.016588883474469185, 0.014673744328320026, 0.0011961192358285189, -0.001649616053327918, -0.007950525730848312, 0.0019910032860934734, 0.004106760025024414, 0.019421132281422615, -0.007080621086061001, -0.03247644752264023, -0.022873777896165848, -0.00636581564322114, -0.01990666054189205, 0.004922717344015837, -0.009676848538219929, -0.044965315610170364, -0.019825737923383713, -0.003739242209121585, -0.01947508007287979, 0.020769821479916573, -0.0009086796781048179, 0.0277020875364542, -0.012057285755872726, 0.035713303834199905, -0.035119879990816116, 0.010573727078735828, -0.01414775475859642, 0.0033750960137695074, -0.02554418332874775, -0.006224202923476696, 0.011962877586483955, -0.021160941570997238, 0.009582440368831158, -0.025517208501696587, -0.03881528973579407, 0.007289668079465628, 0.018746787682175636, 0.014511900953948498, -0.003145818831399083, 0.0057015856727957726, -0.012225871905684471, 0.00968359224498272, 0.013601535931229591, -0.0180050078779459, -0.024208979681134224, 0.010904156602919102, 0.013493640348315239, -0.006662527099251747, 0.00998704694211483, -0.03352842479944229, 0.017452044412493706, 0.006979469209909439, 0.01835566759109497, -0.000282592634903267, -0.024991219863295555, 0.017505992203950882, -0.010027508251369, 0.021066533401608467, 0.003917943686246872, -0.007869604043662548, 0.005597062408924103, -0.01867935247719288, -0.019245801493525505, -0.0004952219896949828, 0.005883658770471811, -0.011335737071931362, 0.008044933900237083, 0.02760767750442028, -0.0015906109474599361, 0.002066866960376501, -0.010937873274087906, 0.0060185277834534645, 0.007525688502937555, -0.013426206074655056, -0.03309684619307518, -0.007532432209700346, -0.029967885464429855, 0.033312637358903885, 0.008975530043244362, -0.01550993137061596, -0.0077414787374436855, -0.0354975126683712, -0.016777699813246727, -0.002643431769683957, 0.02101258561015129, 0.023642530664801598, 0.03752054646611214, 0.00557346036657691, 0.01179429143667221, 0.025503722950816154, -0.02228035405278206, -0.004062927793711424, -0.007148055359721184, 0.0007902478682808578, 0.0066018360666930676, 0.00580610940232873, 0.0130283422768116, -0.00439335685223341, -0.024047138169407845, 0.018112903460860252, 0.011382941156625748, 0.0032368553802371025, -0.005377900321036577, 0.008132599294185638, -0.008166315965354443, 0.013399232178926468, -0.002629944821819663, 0.0076605575159192085, 0.021376732736825943, 0.012853013351559639, 0.0075661493465304375, -0.021295810118317604, -0.011591987684369087, -0.008921582251787186, -0.0069187781773507595, -0.033636320382356644, -0.01080974843353033, 0.0018241028301417828, -0.006719846278429031, 0.013277850113809109, -0.011315506882965565, -0.011801035143435001, 0.009508262388408184, -0.04323899373412132, 0.04388636350631714, 0.005492538679391146, 0.007438023574650288, 0.024640560150146484, -0.0014456268399953842, -0.028349457308650017, -0.002311317017301917, 0.017870139330625534, 0.004369754809886217, -0.024775430560112, 0.008233750239014626, -0.009939842857420444, 0.009885895997285843, -0.005391387268900871, 0.009852178394794464, -0.010573727078735828, 0.003992121666669846, -0.0016454014694318175, -0.0033514939714223146, -0.018031980842351913, 0.023548122495412827, 0.012853013351559639, -0.011551527306437492, 0.00016121056978590786, 0.00433266581967473, -0.003536938689649105, 0.004872141405940056, -0.010836721397936344, -0.028349457308650017, 0.014026372693479061, -0.0005559130222536623, -0.002629944821819663, 0.01637309230864048, 0.001007302664220333, -0.005964580457657576, 0.027162611484527588, -0.03061525709927082, 0.010014020837843418, 0.20467714965343475, -0.011942647397518158, -0.004892372060567141, 0.03997516259551048, -0.017964547500014305, 0.0007266065804287791, 0.028700117021799088, -0.000428630446549505, -0.00089266401482746, 0.005081188399344683, -0.026083659380674362, 0.015226706862449646, -0.012549557723104954, 0.0028271907940506935, 0.004700183868408203, 0.003486362984403968, -0.025935303419828415, -0.0029064263217151165, -0.0008817058987915516, -0.039219897240400314, 0.006288265809416771, -0.00314076105132699, -0.006042129825800657, -0.006912034936249256, 0.01436354499310255, -0.002168018603697419, 0.0018409613985568285, 0.008355132304131985, 0.030831046402454376, -0.001864563557319343, -0.027971824631094933, 0.002505191136151552, -0.01204379927366972, -0.0012913703685626388, -0.018746787682175636, 0.016818160191178322, 0.02219943329691887, -0.003796561621129513, 0.016346119344234467, -0.021417193114757538, -0.004919345490634441, -0.007512201555073261, -0.0009120514150708914, -0.0014565848978236318, -0.005539742764085531, 0.038113970309495926, -0.006102820858359337, -0.025840895250439644, -0.001728008734062314, -0.0015501502202823758, -0.03320474177598953, 0.010749056935310364, 0.037412650883197784, 0.01799152046442032, 0.006767050828784704, 0.0025608246214687824, 0.015536905266344547, 0.018234284594655037, -0.011834751814603806, 0.01012191642075777, -0.0027614422142505646, 0.023548122495412827, -0.02350766211748123, 0.010877182707190514, -0.007748222444206476, 0.013749891892075539, -0.014538874849677086, -0.009481288492679596, 0.009420597925782204, -0.02391226775944233, -0.002505191136151552, -0.022078050300478935, -0.007667301222681999, 0.013810582458972931, -0.007289668079465628, -0.005661125294864178, 0.02255009114742279, -0.009488032199442387, 0.007411050144582987, 0.001938741421326995, 0.009373393841087818, -0.028592221438884735, 0.008793456479907036, -0.004649607930332422, -0.006318611092865467, -0.017600400373339653, 0.011652679182589054, -0.011025538668036461, -0.02170041762292385, 0.018746787682175636, -0.021053045988082886, -0.012664196081459522, 0.001585553283803165, -0.009737540036439896, 0.0005761433858424425, -0.017532967031002045, 0.02143067866563797, 0.012522583827376366, 0.0028120181523263454, -0.002665348118171096, 0.00015509931836277246, -0.01782967709004879, 0.04116201028227806, 0.004858654458075762, -0.01552341878414154, 0.00534081133082509, 0.004632749129086733, 0.000684460042975843, 0.00675356388092041, -0.015240193344652653, 0.02708168886601925, -0.004572058096528053, -0.008584409952163696, -0.01722276769578457, 0.00015573151176795363, 0.022320814430713654, -0.01587407849729061, -0.020621465519070625, -0.007815657183527946, 0.004261859692633152, 0.0012475380208343267, -0.013662226498126984, 0.016265198588371277, -0.009285728447139263, -0.003708896692842245, -0.01867935247719288, -0.027041228488087654, 0.029185645282268524, -0.0014852444874122739, -0.01550993137061596, 0.022496145218610764, -0.03212578967213631, 0.0039786347188055515, 0.010310732759535313, -0.010283758863806725, 0.020108964294195175, 0.014754665084183216, -0.02967117354273796, 0.045990318059921265, -0.016669804230332375, -0.013675713911652565, 0.0034964780788868666, -0.009481288492679596, 0.012866499833762646, -0.0005913161439821124, 0.001576281152665615, 0.008179803378880024, -0.014336572028696537, -0.001254281378351152, -0.003073326777666807, -0.024761943146586418, -0.01122784148901701, -0.006537773180752993, -0.0031239024829119444, 0.021875746548175812, -0.010135402902960777, -0.0197987649589777, -0.010782774537801743, 0.007957269437611103, 0.020473109558224678, -0.026892872527241707, 0.016319146379828453, 0.033393558114767075, -0.014390518888831139, -0.012590018101036549, 0.007033417001366615, -0.17209281027317047, 0.0026956936344504356, 0.012826039455831051, -0.008031447418034077, 0.02306259423494339, 0.03234158083796501, 0.024559639394283295, 0.00259285606443882, -0.011881955899298191, -0.016400067135691643, 0.01393196452409029, 0.00690191937610507, -0.04733900725841522, -0.01281929574906826, -0.009791486896574497, 0.012879986315965652, -0.00256251054815948, 0.018315205350518227, 0.022563578560948372, 0.01656191051006317, 0.005270005203783512, -0.002737840171903372, 0.011632448993623257, -0.007276181131601334, 0.010715339332818985, 0.011848239228129387, -0.011780804954469204, 0.018058955669403076, 0.013426206074655056, -0.009373393841087818, -0.0030227508395910263, 0.03517382591962814, -0.00043916708091273904, -0.022671474143862724, 0.021821798756718636, 0.0005023869452998042, -0.011302019469439983, -0.0034762476570904255, -0.013749891892075539, 0.02331884577870369, 0.017802704125642776, -0.01234725397080183, 0.01362850982695818, 0.004258487839251757, -0.008854147978127003, 0.030318545177578926, 0.000562235014513135, -0.0005120806163176894, 0.017047438770532608, -0.00675356388092041, 0.002173076383769512, -0.003921315539628267, 0.0033953264355659485, 0.0018493907991796732, 0.016993490979075432, 0.007701018359512091, 0.023183975368738174, 0.0006562218186445534, -0.0002855428901966661, -0.01842310093343258, -0.008618127554655075, -0.00662543810904026, 0.004305691923946142, -0.026461292058229446, 0.002940143458545208, 0.0005896302754990757, -0.009157602675259113, 0.02213199809193611, -0.027283992618322372, 0.006025271490216255, 0.019083959981799126, 0.010688366368412971, 0.037169888615608215, -0.013223902322351933, -0.0024310131557285786, -0.007916809059679508, -0.03207184001803398, 0.029347488656640053, -0.01707441173493862, -0.016184275969862938, -0.03250342234969139, 0.04485742002725601, -0.015806643292307854, -0.016170790418982506, -0.006362443789839745, 0.020338241010904312, -0.004524854011833668, -0.02290075086057186, -0.019677381962537766, -0.009258754551410675, 0.003073326777666807, -0.029266566038131714, -0.02075633406639099, 0.0005373685853555799, 0.02853827364742756, 0.012832782231271267, 0.012360741384327412, -0.017182307317852974, 0.009177833795547485, -0.008361876010894775, 0.007856117561459541, -0.01406683400273323, -0.00788983516395092, 0.040083058178424835, 0.014727691188454628, -0.00031757427495904267, 0.004963178187608719, 0.013102520257234573, 0.03290802985429764, 0.010432114824652672, -0.01393196452409029, 0.00658160587772727, 0.020055016502738, 0.00044759639422409236, 0.0001598407980054617, 0.022307327017188072, -0.0004471749416552484, -0.007100851275026798, 0.01405334658920765, -0.012488867156207561, 0.06365815550088882, -0.010991821065545082, -0.0070131863467395306, -0.01246863603591919, -0.011531297117471695, -0.04655676707625389, -0.12451103329658508, -0.012886730022728443, 0.005270005203783512, 0.029050776734948158, 0.0017482390394434333, 0.015118811279535294, -0.011032281443476677, 0.01192241720855236, 0.010445602238178253, 0.010128660127520561, -0.028619196265935898, -0.01586059108376503, 0.013055316172540188, -0.006220831070095301, 0.008328159339725971, -0.02512608841061592, -0.010094942525029182, -0.01426913682371378, 0.011281789280474186, 0.03172118216753006, -0.004403471946716309, -0.01611684262752533, 0.00662543810904026, -0.016858620569109917, 0.013999398797750473, 0.0005892087938264012, -0.03547053784132004, 0.010054482147097588, 0.02967117354273796, 0.01698000356554985, -0.02050008438527584, -0.020338241010904312, 0.0041539641097188, 0.001455741934478283, -0.0045349691063165665, 0.0012298363726586103, -0.05014428496360779, -0.000652007176540792, 0.011457119137048721, -0.04013700410723686, 0.020945150405168533, -0.0004258909320924431, 0.03174815699458122, -0.01773526892066002, 0.0025962276849895716, 0.000871590746100992, -0.032206710427999496, 0.003550425637513399, 0.004588916897773743, -0.030453413724899292, -0.023440226912498474, 0.003536938689649105, -0.03830278664827347, -0.006524286698549986, 0.027917876839637756, -0.00912388600409031, 0.026798464357852936, 0.02074284851551056, -0.01045234501361847, -0.005384643562138081, -0.014039860107004642, 0.014727691188454628, 0.013075546361505985, 0.028781037777662277, 0.010216324590146542, -0.007748222444206476, -0.017937572672963142, -0.016872107982635498, 0.017600400373339653, 0.004561943002045155, -0.019529027864336967, 0.007222233340144157, -0.032638292759656906, 0.013615022413432598, -0.017964547500014305, 0.0004492822627071291, -0.009393624030053616, -0.00878671370446682, 0.008806943893432617, 0.00381679181009531, -0.005151994526386261, -0.023966215550899506, -0.0029553163331001997, 0.0031289600301533937, 0.02580043487250805, 0.011767317540943623, 0.011065999045968056, -0.01303508598357439, -0.004794592037796974, -0.008220263756811619, 0.008058421313762665, 0.015887564048171043, 0.0059241196140646935, -0.042133066803216934, 0.011396427638828754, 0.03155934065580368, 0.016912568360567093, 0.009198063984513283, -0.016777699813246727, 0.011396427638828754, -0.010998564772307873, 0.014876047149300575, -0.06225551664829254, 0.02983301691710949, 0.012117977254092693, 0.011369454674422741, 0.007910065352916718, -0.004194424953311682, 0.013014855794608593, -0.012515840120613575, -0.01885468140244484, 0.019353697076439857, -0.010398397222161293, 0.02365601807832718, -0.008490001782774925, -0.003456017468124628, -0.025759972631931305, 1.872887514764443e-05, -0.01741158403456211, -0.02435733564198017, 0.008375363424420357, -0.010492806322872639, 0.00613316660746932, 0.01157850120216608, 0.026731029152870178, -0.005802737548947334, -0.025827407836914062, 0.004261859692633152, 0.026434319093823433, -0.0012576531153172255, -0.0060185277834534645, -0.025867868214845657, 0.020001068711280823, -0.03406790271401405, -0.00018565556092653424, 0.02160600945353508, -0.0019707728642970324, 0.00259285606443882, -0.01613032817840576, 0.018031980842351913, 0.008496745489537716, 0.04652979597449303, -0.0072492072358727455, -0.00256251054815948, 0.00784937385469675, -0.009272241964936256, -0.0028710232581943274, 0.01851750910282135, 0.0016116842161864042, -0.0018831080524250865, 0.002414154587313533, -0.018665865063667297, 0.02160600945353508, 0.03746660053730011, -0.0068412283435463905, -0.016831647604703903, 0.011092972941696644, -0.014579336158931255, 0.023022133857011795, -0.003024436766281724, 0.007363845594227314, -0.01782967709004879, 0.0130283422768116, -0.0013377316063269973, 0.013048573397099972, -0.010499549098312855, 0.024411283433437347, -0.0030952428933233023, -0.007343615405261517, -0.022253381088376045, -0.01706092432141304, -0.02014942467212677, 0.003638090565800667, -0.0036852946504950523, 0.0015442497096955776, -0.001122784218750894, 0.013075546361505985, 0.01799152046442032, 0.011693139560520649, 0.006180370692163706, -0.026083659380674362, 0.005563345272094011, -0.011092972941696644, -0.015145785175263882, -0.03495803847908974, 0.017033951357007027, 0.029455382376909256, -0.008429310284554958, 0.005890402477234602, 0.024842863902449608, -0.012657453306019306, 0.01010842900723219, 0.021794825792312622, -0.01723625510931015, 0.021632982417941093, -0.015348088927567005, 0.010405140928924084, 0.020554030314087868, -0.01037142425775528, -0.0028929393738508224, 0.029428409412503242, 0.015739208087325096, -0.004369754809886217, 0.003739242209121585, 0.008631614036858082, -0.01405334658920765, -0.01818033680319786, 0.0026046570856124163, -0.020621465519070625, -0.026771491393446922, -0.006702987942844629, 0.02708168886601925, 0.0007320856093429029, -0.0018257886404171586, 0.03285408020019531, 0.014633283019065857, -0.01792408712208271, -0.0030143214389681816, -0.0026130862534046173, -0.002739525865763426, -0.008112368173897266, 0.038545552641153336, 0.004420330747961998, 0.04836401343345642, 0.013331797905266285, 0.0002320167695870623, 0.006979469209909439, 0.016265198588371277, 0.014134268276393414, 0.013304824009537697, 0.007876347750425339, 0.010499549098312855, 0.012839525938034058, -0.01878724806010723, -0.03506593406200409, 0.007829143665730953, -0.010776030831038952, -0.03668436035513878, 0.005350926425307989, 0.02589484304189682, -0.00909016840159893, 0.04715019091963768, 0.014255650341510773, -0.016939543187618256, -0.0019050241680815816, -0.0035335670690983534, 0.032098814845085144, 0.024761943146586418, 0.008409080095589161, 0.0028861958999186754, -0.018557971343398094, 0.0044540478847920895, -0.016143815591931343, 0.029266566038131714, -0.0197987649589777, -0.013641996309161186, 0.009717308916151524, -0.004683325067162514, 0.03414882346987724, -0.0180050078779459, -0.024842863902449608, 0.039921216666698456, -0.011720113456249237, 0.03711594268679619, 0.0003097771550528705, 0.008800200186669827, -0.0008741195197217166, 0.008719279430806637, -0.006247804965823889, 0.005027241073548794, -0.038545552641153336, -0.0032014523167163134, 0.006807511206716299, 0.00259285606443882, -0.009481288492679596, 0.03069617785513401, -0.0017052495386451483, 0.00516885332763195, -0.01987968571484089, 0.02056751772761345, -0.007721248548477888, -0.022563578560948372, 0.01731717586517334, -0.021471140906214714, -0.011376197449862957, 0.011241328902542591, -0.01611684262752533, -0.012590018101036549, -0.0027614422142505646, -0.018881656229496002], "b049e56c-c3b5-451f-b328-61a3d402a490": [-0.007468874566257, -0.027613844722509384, -0.008843472227454185, 0.025582417845726013, 0.001894304296001792, 0.025284476578235626, -0.027952415868639946, -0.019975684583187103, -0.00613490492105484, -0.028385786339640617, 0.01564197614789009, 0.03066098317503929, 0.01706397347152233, -0.010935841128230095, -0.013217808678746223, -0.005691376980394125, 0.033830005675554276, 0.0004232136416248977, 0.037486571818590164, -0.01768694445490837, -0.01814740151166916, -0.006324504967778921, 0.005606734659522772, 0.006896689534187317, -0.0023801536299288273, 0.039084628224372864, 0.010996783152222633, -0.01552009116858244, 0.0157367754727602, -0.013881407678127289, -0.028114929795265198, -0.0020517397206276655, 0.005098877940326929, -0.019786084070801735, -0.03377583622932434, 0.0008946736343204975, 0.012899552471935749, -0.014951291494071484, 0.0062330905348062515, -0.010719154961407185, 0.007658474147319794, -0.013894950971007347, -0.012147924862802029, 0.012635466642677784, -0.03263823688030243, 0.02008402720093727, -0.015493005514144897, -0.0008299219771288335, -0.032773666083812714, 0.0284399576485157, 0.014545006677508354, 0.00033941734000109136, -0.005241077858954668, 0.008308530785143375, -0.013678264804184437, 0.004753535613417625, 0.008152787573635578, 0.025758475065231323, -0.001054648426361382, 0.01904122903943062, 0.001989104086533189, 0.012513580732047558, 0.0009158343309536576, 0.0010690377093851566, -0.04496221989393234, 0.0020161897409707308, -0.006395604461431503, -0.025934532284736633, -0.020571568980813026, -0.027708644047379494, 0.04336416348814964, 0.033748749643564224, -0.01663060300052166, 0.007509503047913313, 0.027275273576378822, -0.032773666083812714, -0.03280074894428253, -0.02666584588587284, -0.01794425956904888, 0.006686775479465723, -0.0016014404827728868, -0.03997845575213432, 0.0011502946726977825, 0.006043490953743458, 0.02615121752023697, -0.018743285909295082, 0.015533633530139923, 0.028737898916006088, -0.009568014182150364, -0.03150063753128052, 0.007922559976577759, 0.017903629690408707, 0.007969959639012814, 0.0016378368018195033, 0.00014442166138906032, 0.026083502918481827, -0.03954508155584335, 0.023754136636853218, -0.009175271727144718, -0.0227655079215765, -0.01981317065656185, -0.0062060048803687096, -0.013400636613368988, -0.008335616439580917, -0.02026008442044258, 0.011369211599230766, -0.016386833041906357, -0.009466443210840225, 0.023063451051712036, -0.00395450834184885, -0.009730528108775616, 0.014937749132514, -0.016237860545516014, -0.03537388890981674, -0.0069474754855036736, -0.017321288585662842, 0.02846704237163067, -0.008471044711768627, -0.023320764303207397, -0.02063928358256817, -0.009364871308207512, 0.0016903153154999018, -0.020747626200318336, -0.022467566654086113, 0.008437187410891056, 0.01858077198266983, 0.006788346916437149, -0.02195293828845024, -0.007367303129285574, -0.01213438156992197, 0.03193400800228119, 0.008166330866515636, 0.0035042089875787497, -0.0006022330489940941, 0.0011926160659641027, 0.014287692494690418, -0.04257867857813835, -0.010306098498404026, -0.020056940615177155, -0.0274784155189991, 0.019081857055425644, 0.005640591494739056, -0.0004558011132758111, -0.027586758136749268, -0.019176656380295753, 0.029496299102902412, 0.010516013018786907, 0.00555933453142643, -0.019339170306921005, 0.01982671394944191, 0.007820988073945045, -0.019975684583187103, 0.037486571818590164, -0.035861432552337646, 0.03892211243510246, -0.007170931901782751, 0.006879760883748531, 0.004293079487979412, 0.006294033490121365, 0.011308268643915653, 0.022291509434580803, 0.02107265405356884, -0.0007626310107298195, -0.002948952605947852, -0.0019552470184862614, 0.026625217869877815, 0.008857015520334244, -0.01159944012761116, -0.012967266142368317, -0.01445020642131567, 0.038380399346351624, 0.025920988991856575, -0.032231952995061874, 0.018526600673794746, -0.010834269225597382, 0.003158866660669446, 0.03545514494180679, 0.003852937137708068, -0.009879499673843384, -0.0041610365733504295, -0.034805089235305786, -0.0037344372831285, 0.0148971201851964, 0.011741639114916325, -0.0098253283649683, -0.009317471645772457, -0.019975684583187103, 0.009412271901965141, 0.010725926607847214, 0.004743378609418869, 0.007367303129285574, -0.000823150563519448, -0.006094276439398527, -0.017727572470903397, -0.6426888704299927, -0.022088367491960526, -0.00731313182041049, -0.010698840953409672, -0.00791578833013773, 0.013949122279882431, 0.01619723252952099, -0.01097646914422512, 0.010339955799281597, -0.006967789493501186, -0.035861432552337646, 0.017321288585662842, 0.0022904323413968086, -0.03185275197029114, -0.023334307596087456, -0.012181781232357025, -0.005491620395332575, -0.026381446048617363, -0.014775235205888748, -0.028114929795265198, -0.016224319115281105, -0.005586420185863972, 0.01724003069102764, 0.0069474754855036736, -0.0036497944965958595, 0.009913356974720955, 0.012235953472554684, 0.006517490372061729, 0.0015142584452405572, 0.026787731796503067, -0.011795810423791409, 0.03580725938081741, 0.022210251539945602, 0.02169562503695488, 0.05021683871746063, -0.02925252728164196, -0.026178304105997086, 0.02693670243024826, 0.005620277486741543, 0.01707751676440239, -0.027329444885253906, -0.016346203163266182, 0.02124871127307415, -0.0020703612826764584, 0.010631127282977104, 0.005522091872990131, 0.009696670807898045, -0.010333184152841568, 0.01346835121512413, 0.022007109597325325, -0.002579910447821021, -0.0005395974148996174, -0.02063928358256817, -0.008389787748456001, -0.006304190494120121, -0.010590498335659504, 0.024769848212599754, -0.005176749546080828, 0.02295510843396187, 0.006107819266617298, -0.0014888655859977007, 0.022535281255841255, -0.005166592076420784, -0.007414703257381916, -0.009019529446959496, 0.01071238424628973, 7.395658758468926e-05, 0.022210251539945602, 0.007685559801757336, -0.013515750877559185, 0.028412871062755585, 0.010475384071469307, -0.002821988658979535, -0.03556348755955696, 0.013590237125754356, 0.00977792777121067, 0.027952415868639946, -0.01377983670681715, -0.0028101387433707714, 0.02143830992281437, 0.0098253283649683, -0.017389003187417984, -0.02881915681064129, -0.012459409423172474, 0.019948597997426987, 0.0003605780366342515, -0.005738777108490467, 0.017917172983288765, -0.005887748207896948, -0.0029066314455121756, 0.008911186829209328, 0.019758999347686768, 0.006121362093836069, 0.00903307180851698, 0.030742239207029343, 0.01592637598514557, -0.018824543803930283, 0.0009996306616812944, 0.007292817812412977, -0.014951291494071484, 0.005528863053768873, -0.005924990866333246, 0.009703442454338074, -0.011172840371727943, 0.019488142803311348, -0.005555948708206415, -0.032854922115802765, -0.011761954054236412, 0.0533587783575058, -0.04496221989393234, 0.001428769319318235, -0.004607950337231159, -0.009168500080704689, 0.0033992519602179527, 0.025108419358730316, -0.015980547294020653, -0.00933778565376997, -0.0037310514599084854, 0.028494128957390785, -0.022982193157076836, 0.026787731796503067, -0.01476169191300869, 0.016237860545516014, -0.013705350458621979, 0.016251403838396072, 0.029469212517142296, 0.01199895329773426, 0.000933609320782125, -0.006707089953124523, -0.009148186072707176, 0.008166330866515636, -0.014125178568065166, 0.003346773562952876, -4.554836777970195e-05, 0.015885747969150543, -0.03342372179031372, 0.00673756143078208, 0.022196710109710693, 0.02036842703819275, -0.01111866906285286, -0.022074824199080467, 0.014463749714195728, 0.00964927114546299, 0.011369211599230766, -0.005562720354646444, -0.02081534080207348, 0.0026323888450860977, -0.004442050587385893, -0.02043614163994789, 0.007719417102634907, -0.01653580367565155, -0.0024207821115851402, -0.0069610183127224445, 0.0036328660789877176, 0.008112159557640553, -0.013231351971626282, -0.01155881118029356, 0.002884624293074012, 0.01417934987694025, -0.03006509691476822, 0.00491266418248415, 0.019149571657180786, -0.024512534961104393, 0.009100786410272121, 0.030200526118278503, -0.01990796998143196, -0.009215900674462318, 0.02666584588587284, 0.0035075948107987642, -0.04293079301714897, 0.00804444495588541, -0.010949383489787579, -0.001926468568854034, 0.03965342789888382, -0.03068806789815426, -0.014721063897013664, -0.012906323187053204, -0.006791732739657164, -0.014016835950314999, 0.004370950628072023, -0.006896689534187317, 0.006209390703588724, -0.015614890493452549, -0.013508979231119156, 0.015167977660894394, 0.005044706631451845, -0.010001384653151035, 0.007631388492882252, 0.020598655566573143, 0.03280074894428253, 0.00029963525594212115, 0.0019044614164158702, 0.011145754717290401, -0.0015989011153578758, 0.007956416346132755, -0.01524923462420702, 0.012676095589995384, 0.03128395229578018, 0.0002835531486198306, 0.01679311692714691, 0.024945905432105064, 0.0030928454361855984, 0.0219664815813303, -0.013481893576681614, 0.000624240143224597, -0.01894642785191536, -0.003267209278419614, -0.017267117276787758, 0.044230904430150986, -0.02348327822983265, 0.005156435072422028, -0.015967004001140594, -0.011707782745361328, -0.021912310272455215, 0.034290462732315063, 0.028792070224881172, 0.012858923524618149, -0.004682435654103756, -0.0016640761168673635, -0.013265208341181278, 0.008518444374203682, -0.006933932658284903, -0.007380845956504345, -0.003842779900878668, -0.01875682920217514, -0.004374336451292038, 0.0051970635540783405, 0.021465396508574486, 0.019406884908676147, -0.007963187992572784, 0.019054770469665527, 0.008945044130086899, -0.003961279988288879, 0.017470259219408035, 0.017632773146033287, -0.007495960220694542, 0.012615152634680271, -0.025555333122611046, 0.05094815045595169, -0.03521137684583664, -0.005142892245203257, 0.017145231366157532, 0.031013095751404762, -0.023280136287212372, -0.005911448039114475, 0.01316363736987114, 0.018079686909914017, 0.009310699999332428, 0.00950707122683525, 0.015967004001140594, -0.00968990009278059, -0.002742424374446273, 0.0022159465588629246, -0.01040089875459671, 0.004963449668139219, -0.02960464172065258, 0.0047873929142951965, 0.021478939801454544, 0.023429106920957565, 0.03288200870156288, 0.012831837870180607, -0.01431477814912796, 0.013353236950933933, -0.004252450540661812, 0.051354438066482544, 0.00903307180851698, 0.02489173412322998, 0.016860831528902054, -0.018892256543040276, -0.013508979231119156, -0.014653349295258522, -0.01592637598514557, 0.006713861133903265, 0.0023073607590049505, -0.00022536126198247075, 0.005589806009083986, 0.013102694414556026, -0.010516013018786907, 0.01830991543829441, 0.009628957137465477, -0.030444297939538956, -0.029712984338402748, 0.02008402720093727, -0.0058640483766794205, 0.006889918353408575, -0.027072131633758545, -0.024837562814354897, -0.0021346895955502987, -0.018824543803930283, 0.024864647537469864, -0.013556379824876785, 0.0033298449125140905, 0.02472922019660473, -0.01159944012761116, -0.007827759720385075, 0.012858923524618149, 0.04244324937462807, -0.030200526118278503, 0.030606811866164207, -0.005004078149795532, -0.0018248972482979298, 0.012384924106299877, -0.024390649050474167, 0.009588328190147877, 0.010929069481790066, -0.008396558463573456, -0.0022904323413968086, -0.020219454541802406, 0.015628432855010033, -0.014558549970388412, -0.02062574028968811, -0.017998430877923965, -0.008403330110013485, -0.0013331229565665126, 0.012500038370490074, -0.018174486234784126, -0.0187703724950552, 0.01128795463591814, 0.021722709760069847, -0.004133950918912888, -0.00408993661403656, -0.0008980593411251903, -0.028954584151506424, 0.006053647957742214, 0.11180966347455978, 0.02648978866636753, -0.006683390121906996, 0.011172840371727943, 0.008701272308826447, -0.004574093036353588, -0.02134351059794426, -0.036755260080099106, 0.0329090915620327, 0.007719417102634907, 0.011958325281739235, 0.0011951553169637918, 0.019149571657180786, -0.02257590927183628, 0.010434756055474281, -0.004780621267855167, -0.0027728958521038294, 0.005308791995048523, -0.013089152052998543, -0.018959971144795418, 0.010157127864658833, -0.008613244630396366, 0.015276320278644562, 0.002177010988816619, -0.02418750710785389, -0.017849458381533623, 0.021654995158314705, 0.007116760592907667, 0.016129517927765846, -0.0017521044937893748, 0.0010648055467754602, 0.012974037788808346, 0.021641453728079796, 0.02054448425769806, -0.00981855671852827, 0.003961279988288879, 0.007712645456194878, 0.030335955321788788, -0.009358100593090057, -0.00906692910939455, 0.020558025687932968, 0.007597531657665968, 0.005495006218552589, -0.00981855671852827, 0.0026594744995236397, 0.0006276258500292897, -0.008870557881891727, -0.0017605688190087676, -0.03540097549557686, 0.0023530679754912853, 0.04967512562870979, 0.0036497944965958595, -0.03171732276678085, -0.023334307596087456, 0.02168208174407482, 0.017551517114043236, -0.00015785869618412107, -0.001912925741635263, -0.005627048667520285, 0.022277966141700745, -0.013041751459240913, -0.00805121660232544, 0.013211037032306194, -0.019000599160790443, -0.019501684233546257, -0.018445342779159546, -0.026706473901867867, -0.02126225456595421, -0.020530940964818, 0.02001631259918213, -0.008416873402893543, -0.021831052377820015, -0.010136812925338745, 0.018093230202794075, -0.0196506567299366, 0.006236476358026266, 0.013563151471316814, -0.020300712436437607, 0.004631650168448687, -0.0023750748950988054, -0.008694501593708992, -0.037649087607860565, 0.01128795463591814, -0.014368949458003044, -0.01200572494417429, -0.00702196080237627, 0.005010849796235561, 0.01564197614789009, -0.033640407025814056, 0.002109296852722764, 0.006107819266617298, 0.03185275197029114, 0.004834792576730251, -0.014991920441389084, 0.0041881222277879715, 0.007638160139322281, -0.018811000511050224, -0.02294156514108181, -0.01040089875459671, -0.019799627363681793, 0.004164422396570444, -0.033640407025814056, -0.0020111112389713526, -0.017091060057282448, 0.00043591007124632597, -0.006300804670900106, 0.008518444374203682, 0.029144184663891792, -0.029767155647277832, -0.017551517114043236, -0.00022853536938782781, -0.01654934696853161, -0.0004883885267190635, 0.00460117869079113, 0.013007895089685917, 0.013007895089685917, 0.010346727445721626, 0.0036362516693770885, -0.002620538929477334, -0.0012307052966207266, -0.006517490372061729, -0.02933378517627716, 0.016332661733031273, 0.014125178568065166, -0.014870034530758858, -0.013651179149746895, 0.0035719231236726046, -0.011775496415793896, 0.029496299102902412, 0.013861093670129776, -0.0019738683477044106, 0.013989750295877457, 0.0027898242697119713, -0.016847288236021996, -0.01226980984210968, -0.005258006509393454, -0.00981855671852827, 0.0022261037956923246, -0.014748149551451206, -0.006663075648248196, -0.01653580367565155, -0.020571568980813026, 0.0018926113843917847, -0.019799627363681793, 0.004015451297163963, -0.020314255729317665, -0.016576431691646576, 0.025135505944490433, -0.012323981150984764, -0.014030379243195057, -0.02657104656100273, -0.02684190310537815, -0.023970821872353554, -0.0023462965618819, 0.00876221526414156, -0.028331615030765533, -0.01883808523416519, -0.010685298591852188, 0.034452978521585464, -0.012073438614606857, 0.033125780522823334, -0.022616537287831306, 0.013278751634061337, 0.013922036625444889, 0.007556902710348368, 0.0026120746042579412, 0.014815863221883774, -0.021803967654705048, -0.051083579659461975, -0.01342772226780653, 0.04184736683964729, 0.03120269626379013, 0.013055294752120972, -0.019975684583187103, -0.005376506131142378, 0.037026114761829376, -0.0274784155189991, -0.007570445537567139, -0.019542314112186432, -0.04100770875811577, -0.01258806698024273, 0.007462102919816971, -0.017307745292782784, -0.00274411728605628, -0.011375983245670795, -0.00453685037791729, 0.04959386959671974, 0.0004998153308406472, 0.008003816939890385, -0.017307745292782784, 0.009263300336897373, -0.020964311435818672, -0.0023750748950988054, -0.0037310514599084854, 0.01520860567688942, -0.00424567935988307, 0.021980024874210358, 0.015005462802946568, 0.010184213519096375, -0.014192893169820309, 0.003747980110347271, 0.00274411728605628, -0.015547176823019981, -0.012811523862183094, -0.030444297939538956, 0.004482679069042206, -0.00760430283844471, -0.01231043878942728, 0.029415041208267212, -0.014964834786951542, -0.015574262477457523, -0.017470259219408035, -0.008335616439580917, -0.03523845970630646, -0.02455316297709942, 0.000887902220711112, 0.00999461393803358, 0.011044183745980263, -0.009364871308207512, -0.01645454578101635, 0.005904676858335733, -0.003323073498904705, 0.042984962463378906, 0.015858661383390427, 0.02846704237163067, -0.0012366302544251084, -0.009419042617082596, -0.00047019036719575524, 0.03158189356327057, 0.006124747917056084, -0.006910232361406088, 0.010563412681221962, 0.012520352378487587, 0.009987842291593552, -0.003751365700736642, -0.0195693988353014, -0.01760568842291832, -0.045043475925922394, -0.03531971946358681, 0.011274411343038082, -0.006165376398712397, -0.009601871483027935, -0.009222671389579773, -0.011138983070850372, -0.03775743022561073, 0.015113805420696735, 0.00933778565376997, 0.025121962651610374, -0.01098324079066515, 0.002527431817725301, -0.030471382662653923, 0.0063211191445589066, 0.015790946781635284, 0.027424244210124016, 0.02185813896358013, -0.01734837330877781, -0.02268425188958645, 0.006571661680936813, -0.012093753553926945, -0.005772634409368038, 0.0003527485823724419, 0.0158180333673954, -0.012913094833493233, 0.0015963618643581867, 0.00760430283844471, 0.011660382151603699, -0.003395866369828582, -0.0016759260324761271, -0.02043614163994789, 0.023185336962342262, 0.007990273647010326, 0.010549870319664478, 0.009100786410272121, 0.01244586706161499, 0.00964249949902296, 0.0125812953338027, 0.004526693373918533, 0.0010859662434086204, -0.010502469725906849, -0.010177441872656345, -0.0024394034408032894, -0.0011604517931118608, -0.009303929284214973, -0.015682604163885117, -0.025731390342116356, -0.002117761177942157, 0.007692331448197365, -0.001748718786984682, -0.007990273647010326, -0.04279536381363869, -0.020666368305683136, -0.008531986735761166, -0.015790946781635284, 0.028683727607131004, 0.004272765014320612, 0.022521737962961197, 0.005769248586148024, 0.030877668410539627, -0.03388417884707451, 0.011958325281739235, -0.0019027686212211847, -0.0004938903148286045, -0.025311561301350594, 0.011491096578538418, 0.017361916601657867, -0.012290124781429768, 0.012344296090304852, -0.029929669573903084, -0.025541789829730988, 0.013170409016311169, 0.017050432041287422, 0.010312870144844055, -0.0014668585499748588, 0.017212945967912674, -0.013183951377868652, 0.004909278359264135, 0.022088367491960526, -0.004567321855574846, 0.0007440096233040094, 0.011145754717290401, 0.010861354880034924, 0.007258960511535406, 0.00910755805671215, -0.03144646808505058, 0.009026301093399525, -0.0009623878286220133, 0.020585112273693085, -0.002295510843396187, -0.030904753133654594, 0.0031893381383270025, -0.004083165433257818, 0.007529817055910826, 0.010069099254906178, -0.014477292075753212, -0.00448606489226222, -0.030823497101664543, -0.01929854229092598, 0.009662814438343048, 0.00599947664886713, -0.022548822686076164, 0.007956416346132755, 0.007265732157975435, -0.005874205380678177, -0.010529555380344391, -0.016915002837777138, -0.00386986555531621, 0.00866741593927145, -0.012594838626682758, -0.04371627792716026, -0.009419042617082596, -0.0181338582187891, 0.03664691746234894, -0.00020430638687685132, -0.005173363722860813, -0.012337524443864822, -0.017659859731793404, -0.029550470411777496, -0.001140984008088708, 0.0050819492898881435, 0.019758999347686768, 0.02481047622859478, 0.01776820234954357, 0.008376244455575943, 0.023347850888967514, -0.011667153798043728, -0.004523307550698519, -0.002999738324433565, -0.002821988658979535, 0.0019975684117525816, 0.008105387911200523, 0.013461579568684101, 0.0069881039671599865, -0.030092183500528336, 0.007150617893785238, 0.004387879278510809, 0.008200187236070633, 0.005400205962359905, 0.012357838451862335, -0.014436664059758186, 0.014842948876321316, 0.010732698254287243, 0.001081734080798924, 0.005139506421983242, 0.015262776985764503, 0.02597516030073166, -0.01990796998143196, -0.012791208922863007, -0.024918818846344948, -0.0031097738537937403, -0.026205388829112053, -0.01346835121512413, 0.010380584746599197, 0.009175271727144718, 0.019610026851296425, -0.0008862093673087656, -0.006466704420745373, -0.020151741802692413, -0.03225903585553169, 0.04544975981116295, -0.004458979237824678, 0.011315040290355682, 0.03559057414531708, -0.0069745611399412155, -0.01617014780640602, -0.0007275042589753866, 0.021018482744693756, 0.0029066314455121756, -0.04322873428463936, 0.004526693373918533, -0.029929669573903084, 0.017267117276787758, -0.01752443052828312, 0.005701534450054169, -0.010150356218218803, 0.02124871127307415, 0.0078683877363801, 0.005092106759548187, -0.015262776985764503, 0.022115452215075493, 0.01814740151166916, 0.0035312946420162916, -0.010042013600468636, -0.0007812523981556296, -0.009452899917960167, -0.007170931901782751, -0.0204496830701828, -0.008294987492263317, 0.013752751052379608, -0.008389787748456001, -0.0007630542386323214, 0.008701272308826447, -0.014382492750883102, -0.016346203163266182, 0.009947213344275951, -0.02541990391910076, 0.008464273065328598, 0.1969670206308365, -0.015276320278644562, 0.0015413440996780992, 0.03599686175584793, -0.027871157974004745, 0.005572877358645201, 0.020151741802692413, 0.010048785246908665, -0.0021888609044253826, -0.0054543777368962765, -0.02551470510661602, 0.021397681906819344, -0.005667677149176598, 0.004093322437256575, 0.009466443210840225, -0.009060157462954521, -0.032313209027051926, -0.0070151896215975285, -0.01128795463591814, -0.04455593228340149, 0.012818294577300549, -0.008443959057331085, -0.013238122686743736, -0.012933408841490746, 0.008911186829209328, 0.010035241954028606, 0.008775758557021618, -0.0011849981965497136, 0.02819618582725525, -0.02639498934149742, -0.02739715948700905, -0.0041881222277879715, -0.015628432855010033, -0.007143846247345209, -0.007976731285452843, 0.012432323768734932, 0.025650132447481155, 0.007123532239347696, 0.01600763387978077, -0.023442650213837624, -0.0050819492898881435, -0.01240523811429739, -0.0033857091329991817, 0.007306360639631748, -0.010380584746599197, 0.03431754931807518, -0.012994351796805859, -0.024783391505479813, -0.009899813681840897, -0.0027238030452281237, -0.014775235205888748, 0.0069745611399412155, 0.04981055483222008, 0.012540667317807674, 0.003282445017248392, -0.00030471381614916027, 0.002793210092931986, 0.0033349236473441124, -0.007353760302066803, 0.009310699999332428, -0.015547176823019981, 0.015669062733650208, -0.007665245793759823, 0.012777666561305523, -0.01226980984210968, 0.020056940615177155, -0.010624355636537075, -0.0130214374512434, 0.0064768618904054165, -0.02648978866636753, -0.011612982489168644, -0.006473476067185402, -0.010021699592471123, 0.007841302081942558, 0.002244725124910474, -0.00236830348148942, 0.027410700917243958, -0.010238384827971458, -0.003788608592003584, -0.0018519829027354717, 0.021397681906819344, -0.020043399184942245, 0.012730266898870468, 0.0015938226133584976, -0.012263039126992226, -0.0190141424536705, 0.007895473390817642, -0.01373243611305952, -0.029848411679267883, 0.005169977899640799, -0.017754659056663513, -0.015167977660894394, 0.011369211599230766, -0.01679311692714691, -0.001989104086533189, -0.005542405880987644, 0.027410700917243958, 0.01966419816017151, 0.01159944012761116, 0.00015743548283353448, -0.0009708520956337452, -0.01698271743953228, 0.031094353646039963, 0.01462626364082098, -0.03518429026007652, -0.009303929284214973, 0.014585635624825954, 0.00040205297409556806, 0.0181338582187891, -0.011728096753358841, 0.021194539964199066, -0.004103479441255331, -0.012811523862183094, -0.015303405933082104, 0.009080472402274609, 0.006564890034496784, -0.03342372179031372, -0.02764092944562435, -0.007414703257381916, -0.01734837330877781, 0.0035719231236726046, -0.01054309867322445, 0.0037276658695191145, -0.004919435363262892, 0.0024495606776326895, -0.010725926607847214, -0.014734606258571148, 0.020666368305683136, 0.0014617799315601587, -0.016657689586281776, 0.014680434949696064, -0.04052016884088516, -0.0035042089875787497, -0.00805121660232544, -0.01564197614789009, 0.009134643711149693, -0.00047907786210998893, -0.021803967654705048, 0.023090537637472153, -0.011084811761975288, -0.006713861133903265, -0.0037005802150815725, -0.005630434490740299, 0.010631127282977104, 0.004238907713443041, 0.013265208341181278, 0.020774710923433304, -0.009764385409653187, 0.002146539743989706, -0.016955630853772163, -0.023090537637472153, -0.014572092331945896, 0.0018418257823213935, -0.0038766369689255953, 0.02418750710785389, -0.009459671564400196, -0.02356453612446785, -0.010556641034781933, -0.00848458707332611, 0.03217777982354164, -0.03155481070280075, 0.022020652890205383, 0.04780621454119682, -0.002835531486198306, -0.022968651726841927, -0.007550131529569626, -0.17280659079551697, 0.022250881418585777, 0.01832345873117447, -0.00451653590425849, 0.03954508155584335, 0.02827744372189045, 0.022643623873591423, -0.024498991668224335, 0.0013610550668090582, -0.023076994344592094, 0.016413917765021324, 0.000473576074000448, -0.03458840399980545, -0.02008402720093727, 0.0018164330394938588, 0.014396035112440586, -0.008843472227454185, 0.02543344721198082, 0.027979500591754913, 0.011958325281739235, 0.011985410936176777, 0.007854845374822617, 0.02161436714231968, -0.009168500080704689, 0.003930808510631323, 0.00924298632889986, -0.01333292294293642, 0.0036091660149395466, 0.012953723780810833, -0.013082380406558514, -0.006625832989811897, 0.017036888748407364, 0.0031741023994982243, -0.010434756055474281, 0.03041721135377884, -0.00555933453142643, -0.015371119603514671, 0.0019823326729238033, -0.008877329528331757, 0.023754136636853218, 0.003629480255767703, 0.004651964642107487, 0.0037039658054709435, 0.02222379483282566, -0.018689114600419998, 0.03317994996905327, 0.0016310653882101178, 0.009182043373584747, 0.006642761640250683, -0.016386833041906357, 0.014247064478695393, -0.005491620395332575, -0.004269379191100597, 0.007299588993191719, 0.03185275197029114, -0.00042659934842959046, 0.0024275535251945257, -0.0021482324227690697, -0.003991751000285149, -0.022210251539945602, -0.013766293413937092, 0.0033721663057804108, 0.012825066223740578, -0.015885747969150543, -0.013922036625444889, -0.0026560889091342688, -0.007340217474848032, 0.014206435531377792, -0.02382184937596321, 0.006324504967778921, 0.016468089073896408, 0.01435540709644556, 0.04176610708236694, -0.02142476849257946, -0.008647100999951363, -0.005163206718862057, -0.021357053890824318, 0.029496299102902412, -0.011545268818736076, 0.006385447457432747, -0.02933378517627716, 0.030552640557289124, -0.0021025254391133785, -0.009500299580395222, 0.006564890034496784, 0.004299850668758154, -0.005102263763546944, -0.03358623385429382, -0.02054448425769806, -0.018540143966674805, 0.008064758963882923, -0.03380291908979416, -0.028304528445005417, -0.02399790659546852, 0.01848597265779972, 0.016847288236021996, 0.022345680743455887, -0.025203218683600426, -0.004435278940945864, -0.017321288585662842, -0.0021008325275033712, -0.022521737962961197, -0.0008417719509452581, 0.03431754931807518, 0.026909615844488144, 0.015560719184577465, -0.0009556164150126278, 0.0051970635540783405, 0.03588851913809776, 0.01125409733504057, -0.024824019521474838, 0.004282922018319368, 0.016833746805787086, 0.019772540777921677, 8.501304546371102e-05, 0.0332341231405735, -0.004458979237824678, -0.020070483908057213, 0.003968051169067621, -0.0012180089252069592, 0.0722104087471962, -0.01867557130753994, -0.013420951552689075, -0.009588328190147877, -0.008958586491644382, -0.043689191341400146, -0.11495159566402435, 0.001552347675897181, 0.005613505840301514, 0.022697795182466507, 0.0013669801410287619, 0.01618368923664093, -0.002647624583914876, 0.012804752215743065, 0.00027339602820575237, -0.00042130917427130044, -0.024783391505479813, -0.019230827689170837, 0.020219454541802406, -0.009926899336278439, 0.0014372335281223059, -0.009981070645153522, -0.01875682920217514, -0.01963711343705654, 0.0058505055494606495, 0.03420920670032501, 0.0021194538567215204, -0.024607334285974503, 0.005044706631451845, -0.004553779028356075, 0.019799627363681793, 0.006585204508155584, -0.03699903190135956, 0.01159944012761116, 0.019000599160790443, 0.020300712436437607, -0.023171793669462204, -0.018296372145414352, 0.024498991668224335, -0.004655349999666214, -0.011545268818736076, 0.005359577480703592, -0.04320164769887924, -0.0038867942057549953, 0.016698317602276802, -0.014328321442008018, 0.020151741802692413, 0.0015574261778965592, 0.027600301429629326, -0.017537973821163177, 0.005386663135141134, 0.011978639289736748, -0.02471567690372467, 0.008586158975958824, 0.008857015520334244, -0.021817510947585106, -0.013312608934938908, -0.001186691108159721, -0.034534234553575516, -0.00504809245467186, 0.03981593996286392, -0.0038834083825349808, 0.03244863823056221, 0.015195063315331936, -0.016495175659656525, -0.0020331183914095163, -0.01476169191300869, 0.0040865507908165455, -0.003778451355174184, 0.019352713599801064, 0.011978639289736748, -0.009412271901965141, -0.012046352960169315, -0.019000599160790443, 0.018350543454289436, 0.011030640453100204, -0.02552824653685093, 0.013082380406558514, -0.029740069061517715, 0.01302820909768343, -0.010759783908724785, 0.0007186167640611529, -0.015357577241957188, 0.0003694655024446547, 0.012533895671367645, -0.0022650393657386303, 0.0013407408259809017, -0.02401144988834858, -0.006395604461431503, -0.02001631259918213, 0.022833222523331642, 0.01830991543829441, 0.0079090166836977, -0.021180996671319008, 0.009872728027403355, -0.01875682920217514, 0.012919866479933262, 0.01768694445490837, -0.0018435186939314008, -0.04108896851539612, 0.003995136823505163, 0.024052077904343605, 0.017578601837158203, 0.0019383184844627976, -0.0042896936647593975, 0.006294033490121365, -0.007685559801757336, 0.01893288642168045, -0.06332630664110184, 0.03637605905532837, -0.004035765305161476, 0.006869603879749775, 0.007820988073945045, -0.008071530610322952, 0.016684774309396744, -0.014003293588757515, -0.007062589284032583, 0.024431277066469193, -0.006405761931091547, 0.02525738999247551, -0.007380845956504345, 0.008091844618320465, -0.021912310272455215, 0.005745548289269209, -0.011755182407796383, -0.007170931901782751, 0.0022379537113010883, -0.013001123443245888, 0.0062601761892437935, 0.002866002731025219, 0.013495436869561672, -0.009527385234832764, -0.018093230202794075, 0.004594407510012388, 0.023808307945728302, 0.007638160139322281, 0.0035279090516269207, -0.014368949458003044, 0.01921728625893593, -0.029387956485152245, -0.013278751634061337, 0.017483802512288094, -0.00733344629406929, 0.010008156299591064, -0.006392219103872776, 0.018296372145414352, 0.007550131529569626, 0.04135982319712639, -0.006663075648248196, -0.007617845665663481, 0.018269287422299385, -0.005281706340610981, 0.008694501593708992, 0.03014635480940342, -0.020341340452432632, -0.011511411517858505, 0.025446990504860878, -0.014301235787570477, 0.019718369469046593, 0.0346696637570858, -0.004255836363881826, -0.02134351059794426, -0.00591483386233449, -0.02233213745057583, 0.02453961968421936, -0.008565844036638737, 0.006500561721622944, -0.021316425874829292, 0.024417735636234283, -0.03150063753128052, -0.0005730312550440431, -0.009154957719147205, 0.004547007381916046, -0.0020568182226270437, -0.009635728783905506, -0.014301235787570477, -0.004398036282509565, -0.021993566304445267, -0.011206697672605515, 0.006683390121906996, 0.0030200525652617216, -0.0007820987957529724, 0.024322934448719025, 0.042984962463378906, 0.012120839208364487, 0.007455331739038229, -0.02551470510661602, -0.006053647957742214, 0.002287046518176794, -0.013597007840871811, -0.03621354699134827, -0.010956155136227608, 0.02000276930630207, -0.00422536488622427, 0.003373859217390418, 0.008091844618320465, 0.003856322728097439, 0.009628957137465477, 0.020964311435818672, -0.0059520769864320755, 0.01476169191300869, -0.01824220083653927, 0.02435002103447914, 0.018607858568429947, -0.010475384071469307, -0.011057726107537746, 0.020381968468427658, 0.022616537287831306, 0.0037412086967378855, 0.008193416520953178, 0.019501684233546257, -0.02453961968421936, -0.009716985747218132, -8.395500481128693e-05, -0.016481632366776466, -0.028656642884016037, 0.009175271727144718, 0.038542915135622025, 0.008504901081323624, 0.009737299755215645, 0.029631726443767548, 0.02597516030073166, -0.011680697090923786, -0.014775235205888748, 0.007401160430163145, -0.026340818032622337, -0.008714815601706505, 0.052519120275974274, 0.0021143753547221422, 0.05075855180621147, 0.02738361619412899, 0.0009149879333563149, 0.009987842291593552, 0.019054770469665527, 0.0126219242811203, 0.01156558282673359, -0.002515581902116537, 0.002310746582224965, 0.017185859382152557, -0.009574785828590393, -0.028846241533756256, 0.007258960511535406, -0.0007812523981556296, -0.03206943720579147, -0.0037412086967378855, 0.014233521185815334, -0.011450468562543392, 0.051625292748212814, 0.01600763387978077, -0.026002246886491776, -0.023429106920957565, 0.00520383520051837, 0.02746487222611904, 0.014517921023070812, 0.011206697672605515, -0.013529294170439243, -0.019853798672556877, 0.003199495142325759, -0.022359224036335945, 0.01592637598514557, -0.00451653590425849, -0.01156558282673359, 0.015939919278025627, -0.011944781988859177, 0.03789285570383072, -0.028927499428391457, -0.02819618582725525, 0.02382184937596321, -0.0009192200377583504, 0.024404192343354225, 0.010048785246908665, 0.007421474438160658, 0.012676095589995384, 0.015587804839015007, -0.001262023113667965, 0.009175271727144718, -0.024918818846344948, 0.007665245793759823, 0.0007105757249519229, -0.011883839033544064, 1.4323137293104082e-05, 0.015059634111821651, -0.009933670982718468, -0.00897212978452444, -0.021546652540564537, 0.01921728625893593, 0.009141414426267147, -0.02498653344810009, 0.016061805188655853, -0.02062574028968811, -0.017050432041287422, 0.03193400800228119, 0.021627910435199738, -0.014233521185815334, -0.003561766119673848, -0.01524923462420702], "9f9d7ac2-3a52-4209-a612-a3794d2d58f1": [0.005057623144239187, -0.027957789599895477, -0.017587648704648018, 0.017802296206355095, -0.009451181627810001, 0.019962182268500328, -0.011698268353939056, -0.012120855040848255, -0.012731257826089859, -0.020203661173582077, 0.01701078563928604, 0.0158704724162817, -0.0048731607384979725, -0.008377945981919765, -0.009846936911344528, 0.0035584468860179186, 0.03112383373081684, -0.0014983376022428274, 0.033297136425971985, -0.01544117834419012, -0.006821753922849894, -0.004162142053246498, -0.004876514431089163, 0.010155492462217808, 0.0064092292450368404, 0.03710712119936943, 0.01324775256216526, -0.014139879494905472, 0.0022085176315158606, -0.023275798186659813, -0.018821870908141136, 0.015803394839167595, 0.005339347291737795, -0.0018429468618705869, -0.03219706937670708, -0.0022973951417952776, 0.017198601737618446, -0.016568075865507126, 0.02412097156047821, -0.0018613931024447083, 0.01749374158680439, -0.004970422480255365, -0.019948767498135567, 0.012898950837552547, -0.0369461365044117, 0.02862856164574623, 0.009464597329497337, -0.02873588539659977, -0.024027062579989433, 0.019331656396389008, 0.018768208101391792, 0.010900049470365047, -0.022967243567109108, 0.000981842982582748, -0.012161101214587688, -0.013462400063872337, 0.004913406912237406, 0.021062249317765236, -0.003585277823731303, 0.011631191708147526, 0.011517159640789032, 0.0033270304556936026, 0.0078748669475317, -0.00399444904178381, -0.035282623022794724, -0.010155492462217808, -0.016326596960425377, -0.002584150293841958, -0.014461850747466087, -0.024590512737631798, 0.0329483337700367, 0.027327261865139008, 0.008210252970457077, 0.019680459052324295, 0.03085552528500557, -0.026669906452298164, -0.02075369469821453, -0.021048834547400475, -0.03010426089167595, 0.006114089395850897, -0.016943708062171936, -0.02771631069481373, 0.008203544653952122, 0.022081824019551277, 0.012194640003144741, -0.010913465172052383, 0.018338914960622787, 0.0298627819865942, -0.01938531920313835, -0.023557523265480995, 0.004158788360655308, 0.012348917312920094, 0.007512649521231651, 0.004698759876191616, -0.006197935901582241, 0.007277879398316145, -0.014314280822873116, 0.008760285563766956, -0.017668141052126884, -0.024040479212999344, -0.013254459947347641, -0.007841328158974648, -0.012536734342575073, -0.005436609499156475, -0.03136531263589859, 0.023450199514627457, -0.025167375802993774, -0.009632290340960026, 0.01187937706708908, -0.021572036668658257, -0.004584728740155697, 0.020445140078663826, -0.03375326097011566, -0.02750166319310665, -0.016809552907943726, -0.006130858790129423, 0.01935848779976368, -0.021773267537355423, -0.011014080606400967, -0.018177928403019905, -0.0013038136530667543, 0.017802296206355095, -0.0009172810823656619, -0.009665828198194504, 0.010276230983436108, 0.02463075891137123, -0.008317576721310616, -0.0277431420981884, 0.002894382458180189, -0.002304102759808302, 0.033672768622636795, 0.018043775111436844, 0.01536068506538868, 0.01726567931473255, -0.0017440079245716333, 0.015776563435792923, -0.0347728356719017, 0.012094024568796158, -0.008270622231066227, -0.02173302136361599, 0.014904560521245003, 0.014649666845798492, -0.004987191874533892, -0.01911701075732708, -0.025663748383522034, 0.021089080721139908, 0.03184826672077179, 0.004977130331099033, -0.021209819242358208, 0.008813947439193726, 0.02672356739640236, -0.008377945981919765, 0.025301530957221985, -0.019707290455698967, 0.026696735993027687, -0.012805042788386345, 0.017144938930869102, 0.009156041778624058, 0.002651227405294776, -0.0012333824997767806, 0.031177496537566185, 0.0076333885081112385, 0.019197503104805946, -0.007257756311446428, -0.000790672842413187, 0.019049933180212975, 0.015011883340775967, -0.007277879398316145, -0.025516178458929062, -0.006687599699944258, 0.01572290249168873, 0.02849440649151802, -0.01849989965558052, -0.008981640450656414, -0.008216960355639458, -0.0022068407852202654, 0.04620279371738434, 0.006607106886804104, -0.02173302136361599, -0.006915662437677383, -0.030131090432405472, -0.017091277986764908, 0.026025963947176933, 0.004497528076171875, 0.006724492181092501, -0.01061832532286644, -0.012717842124402523, -0.004356666002422571, 0.01087992638349533, 0.00931031908839941, 0.02273918129503727, 0.009471304714679718, -0.017453495413064957, -0.022323301061987877, -0.6478050351142883, -0.028333421796560287, -0.013033105060458183, -0.016085119917988777, -0.00824379175901413, 0.011128111742436886, 0.011456790380179882, 0.015333854593336582, -0.003893833141773939, -0.012181224301457405, -0.031016509979963303, 0.013160551898181438, 0.006439413875341415, -0.022591611370444298, -0.030775032937526703, -0.010591493919491768, 0.009638997726142406, -0.037160784006118774, -0.017802296206355095, -0.01725226268172264, -0.00284072058275342, -0.003984387498348951, 0.006201289594173431, 0.01455575879663229, -0.019519472494721413, -0.008827363140881062, 0.008203544653952122, 0.012489779852330685, 0.003950848709791899, 0.02972862683236599, -0.015910718590021133, 0.0179901123046875, 0.014904560521245003, 0.018674300983548164, 0.04842975735664368, -0.013408738188445568, -0.03235805407166481, 0.015347269363701344, 0.002315841382369399, 0.013348367996513844, -0.006446121726185083, -0.023906324058771133, 0.014394773170351982, -0.00856576208025217, -0.0027149508241564035, -0.003591985674574971, 0.022658687084913254, -0.01874137669801712, 0.01922433450818062, 0.019184086471796036, -0.002109578810632229, 0.0025606732815504074, -0.014180125668644905, -0.006586983799934387, -0.0023208721540868282, -0.005439963191747665, 0.02059270814061165, -0.00831086840480566, 0.00552380969747901, -0.001557030132971704, 0.003809986636042595, 0.028333421796560287, -0.010866510681807995, -0.013395322486758232, -0.018030358478426933, 0.02138422057032585, -0.023825831711292267, 0.0001784883061191067, 0.01961338147521019, -6.765367288608104e-05, 0.013287998735904694, 0.01412646472454071, 0.0014983376022428274, -0.021934254094958305, 0.022591611370444298, 0.012637349776923656, 0.025060052052140236, -0.03348495066165924, -0.0037093707360327244, 0.008720039390027523, -0.0010547894053161144, -0.005362824536859989, -0.01898285560309887, -0.030560385435819626, 0.024577096104621887, -0.009209703654050827, -0.0015989533858373761, 0.02362459897994995, -0.008867609314620495, 0.0048966375179588795, -0.00047624832950532436, 0.02822609804570675, -0.004202388226985931, 0.009182872250676155, 0.03600705787539482, 0.01662173680961132, -0.004286234732717276, 0.008525515906512737, 0.009035302326083183, -0.003578570205718279, -0.0018597161397337914, -0.012067193165421486, 0.008867609314620495, -0.004705467727035284, -0.003568508429452777, -0.005144823342561722, -0.03571191802620888, -0.010256107896566391, 0.05312516540288925, -0.02787729538977146, -0.010598202235996723, -0.004806083627045155, -0.02747483178973198, -0.0051414696499705315, 0.04437829554080963, -0.020284153521060944, 0.00988047569990158, 0.000903027190361172, 0.020190246403217316, -0.02436244860291481, 0.02575765550136566, -0.020176829770207405, 0.010061584413051605, -0.0066272299736738205, 0.017064446583390236, 0.03635585680603981, 0.02110249549150467, -0.015146038495004177, -0.009263365529477596, -0.014448435045778751, -0.0004066556866746396, -0.008726747706532478, 0.002569057745859027, 0.013033105060458183, 0.0013935294700786471, -0.02997010573744774, 0.028762714937329292, 0.02412097156047821, 0.008384653367102146, -0.029513981193304062, -0.014569173566997051, 0.004316419828683138, 0.004007864277809858, 0.004390204790979624, 0.011483621783554554, -0.01788278855383396, -0.012194640003144741, -0.016796138137578964, -0.038287680596113205, 0.01004816871136427, -0.020015845075249672, 0.0003240668447688222, -0.0018228236585855484, 0.007029693573713303, 0.0066339378245174885, -0.020646370947360992, -0.03858282044529915, 0.003224737709388137, 0.01899627037346363, -0.03133847936987877, 0.009806690737605095, 0.02025732211768627, -0.02849440649151802, 0.01588388718664646, 0.01887553185224533, -0.00956521276384592, -0.015038714744150639, 0.04048781469464302, -0.009598751552402973, -0.03284101188182831, 0.013200798071920872, 0.0055674100294709206, -0.004554543644189835, 0.055647268891334534, -0.02263185754418373, -0.00010244998702546582, -0.008585885167121887, -0.005205193068832159, 0.0022890104446560144, 0.003221383783966303, -0.01360996998846531, 0.026535751298069954, -0.00850539281964302, -0.018566977232694626, 0.014113049022853374, -0.0027233355212956667, -0.005507040303200483, 0.004256050102412701, 0.012147686444222927, 0.025033220648765564, -0.0004116864874958992, 0.01373741589486599, 0.006248243618756533, -0.0005026599974371493, 0.000384017126634717, 0.0005668025696650147, 0.0068284617736935616, 0.03208974748849869, -0.00019745859026443213, 0.006181166507303715, 0.00961216725409031, 0.012751380912959576, 0.024442942813038826, -0.016568075865507126, 0.0055741178803145885, -0.03243854641914368, 0.0012191286077722907, -0.00599335040897131, 0.03471917286515236, -0.01761448010802269, 0.0023359644692391157, -0.03327030688524246, -0.010745772160589695, -0.010759187862277031, 0.02911151759326458, 0.027448002249002457, 0.00386029458604753, 0.003649001242592931, -0.005946396384388208, -0.009001764468848705, 0.009867059998214245, -0.014770405367016792, 0.003960910253226757, -0.01024269312620163, -0.00924994982779026, 0.015937549993395805, 0.012979444116353989, 0.03412889316678047, 0.010068291798233986, -0.005319224204868078, 0.01863405480980873, -0.007841328158974648, -0.010511001572012901, 0.006077196914702654, 0.019036516547203064, 0.006509845145046711, 0.002849105279892683, -0.017909619957208633, 0.03976337984204292, -0.02897736243903637, -0.003357215318828821, 0.004051464609801769, 0.03571191802620888, -0.02873588539659977, -0.008847486227750778, 0.00668089184910059, 0.002688119886443019, 0.0018513314425945282, 0.0138715710490942, -0.0009323734557256103, -0.008123052306473255, -0.004289588890969753, 0.0007495880126953125, -0.012966028414666653, 0.0015192992286756635, -0.02138422057032585, 0.001806054380722344, 0.011745222844183445, 0.009706075303256512, 0.03799254074692726, 0.009900598786771297, -0.011731807142496109, 0.016340013593435287, 0.017064446583390236, 0.051059186458587646, -0.0016802846221253276, 0.01621927320957184, 0.01648758351802826, -0.027957789599895477, -0.030453061684966087, -0.00888102501630783, -0.007224217522889376, 0.013234336860477924, -0.008787116967141628, -0.005205193068832159, 0.005671379622071981, 0.016179027035832405, -0.007338248658925295, 0.018405990675091743, 0.013428861275315285, -0.021706191822886467, -0.024013647809624672, 0.021424466744065285, 0.009296903386712074, 0.009135918691754341, 0.0012048747157678008, -0.018446236848831177, 0.01242270227521658, -0.015964379534125328, 0.03136531263589859, -0.024268541485071182, 0.012704427354037762, 0.04113175719976425, -0.017842542380094528, -0.006429352331906557, 0.0056277792900800705, 0.027448002249002457, -0.02421487867832184, 0.032653193920850754, -0.009920721873641014, -0.002352733863517642, 0.012919073924422264, -0.018513314425945282, 0.01536068506538868, 0.022081824019551277, -0.00017293347627855837, -0.01950605772435665, -0.010323185473680496, 0.015468008816242218, -0.023705093190073967, -0.00045109435450285673, -0.019197503104805946, -0.017144938930869102, -0.007834619842469692, 0.0064092292450368404, -0.003652355168014765, -0.015052130445837975, 0.008894440717995167, 0.02335629053413868, -0.004276173189282417, -0.025046637281775475, -0.012415994890034199, -0.020767109468579292, -0.005416485946625471, 0.09605459123849869, 0.012100731953978539, -0.011014080606400967, 0.00046367134200409055, -0.0021397636737674475, 0.0038200481794774532, -0.019210917875170708, -0.018298668786883354, 0.00924994982779026, 0.00824379175901413, -0.0015159453032538295, -0.014971637167036533, 0.027823634445667267, -0.006553445011377335, 0.006476306356489658, -0.006593691650778055, -0.008907855488359928, 0.013200798071920872, -0.008183421567082405, -0.0028625207487493753, 0.00239130319096148, 0.006888831499963999, 0.013884985819458961, -0.0008267268422059715, -0.035309452563524246, -0.019157256931066513, 0.028145605698227882, 0.006130858790129423, 0.0110543267801404, -0.009826813824474812, -0.0017892851028591394, 0.021035417914390564, 0.031982421875, 0.018647469580173492, -0.01187937706708908, -0.007331541273742914, -0.010591493919491768, 0.03748275339603424, -0.0009659120696596801, -0.005456732586026192, 0.0110543267801404, 0.0045914361253380775, 0.0016207535518333316, -0.013965479098260403, -0.00017167578334920108, 0.0038670022040605545, -0.014810651540756226, -0.00918958056718111, -0.03595339506864548, -0.008659670129418373, 0.043788015842437744, -0.004812791012227535, -0.019989013671875, 0.0022018100135028362, 0.0037060168106108904, 0.019667042419314384, -0.003085552481934428, -0.00805597472935915, -0.012670888565480709, 0.01130922045558691, -0.006295197643339634, 0.002728366293013096, 0.018929194658994675, -0.0034880158491432667, -0.013019690290093422, -0.03995119780302048, -0.02298065833747387, -0.015830226242542267, -0.006050365976989269, 0.022833088412880898, -0.018795039504766464, -0.0041353111155331135, -0.0024768265429884195, -9.647591650718823e-05, 0.005946396384388208, 0.007613265421241522, 0.022390378639101982, -0.014582589268684387, 0.002976552117615938, -0.010497585870325565, -0.014180125668644905, -0.03047989308834076, 0.010403677821159363, -0.014099633321166039, -0.010128661058843136, 0.0053359935991466045, 0.027957789599895477, 0.02122323587536812, -0.017775464802980423, 0.014153295196592808, -0.0005634487024508417, 0.016930293291807175, 0.018325498327612877, -0.01886211708188057, 0.0027937665581703186, -0.0071034785360097885, -0.01800352893769741, -0.026897968724370003, -0.022551363334059715, -0.013697169721126556, -0.002845751354470849, -0.04435146227478981, 0.004376789089292288, -0.01324104517698288, -0.0008015728672035038, -0.013831324875354767, 0.014810651540756226, 0.024711251258850098, -0.026817476376891136, -0.013334953226149082, 0.00861942395567894, -0.023208720609545708, 0.00662387628108263, 0.008532223291695118, 0.004044756758958101, 0.012281840667128563, 0.019828028976917267, 0.008787116967141628, 0.01922433450818062, -0.007606557570397854, -0.0009399196715094149, -0.04083661735057831, 0.006221413146704435, 0.012483072467148304, -0.015950964763760567, 0.002649550558999181, 0.006915662437677383, -0.010115246288478374, 0.02736750990152359, 0.013019690290093422, 0.008907855488359928, 0.0039005407597869635, 0.0028306590393185616, -0.00867979321628809, -0.015280192717909813, -0.0005328447441570461, -0.02111591212451458, 0.007284586783498526, -0.006080550607293844, 0.0044103278778493404, -0.023678261786699295, -0.020525632426142693, -0.009162749163806438, -0.021840345114469528, 0.00307549093849957, -0.02074027806520462, -0.020310984924435616, -0.0024181341286748648, -0.018513314425945282, -0.0009541735635139048, 0.0004728944622911513, -0.021665943786501884, -0.03310931846499443, -0.00992743019014597, -0.004517651163041592, -0.026951629668474197, -0.0078748669475317, -0.013952063396573067, 0.0298627819865942, -0.004487466532737017, 0.024040479212999344, -0.025811318308115005, 0.01161106862127781, -0.0045679593458771706, -0.009343857876956463, 0.004769191145896912, -0.004789314232766628, -0.030936017632484436, -0.04182935878634453, -0.012208055704832077, 0.03724127635359764, 0.021531790494918823, 0.01910359412431717, -0.019425565376877785, -0.012496487237513065, 0.042312316596508026, -0.010289646685123444, 0.0010212508495897055, -0.012583687901496887, -0.04550519213080406, -0.018687715753912926, 0.009021887555718422, -0.004510943777859211, 0.0037227862048894167, -0.02086101844906807, 0.0028356898110359907, 0.054413046687841415, 0.000426988466642797, 0.006761384662240744, -0.02123665064573288, 0.006228120531886816, -0.009135918691754341, 0.006717784330248833, -0.006667476613074541, 0.012228178791701794, -0.014461850747466087, 0.024644173681735992, -0.00992743019014597, 0.015374100767076015, -0.006436060182750225, 0.019076764583587646, 0.006036950740963221, -0.012127562426030636, -0.008082806132733822, -0.028038281947374344, 0.0011277359444648027, -0.011778761632740498, -0.02787729538977146, 0.02425512485206127, -0.02621378004550934, -0.011711684055626392, -0.01684979908168316, 0.01923774927854538, -0.030667709186673164, -0.027689479291439056, -0.0029799058102071285, 0.026428427547216415, 0.008102929219603539, -0.00014379680214915425, -0.017533987760543823, 0.018446236848831177, -0.012483072467148304, 0.038314513862133026, 0.01849989965558052, 0.031204326078295708, 0.0035282622557133436, -0.0009441119618713856, 0.0008761963108554482, 0.009021887555718422, 0.0009441119618713856, -0.005030792206525803, 0.028789546340703964, -0.0022856565192341805, 0.01250319555401802, 0.010698817670345306, -0.028816377744078636, -0.005852488335222006, -0.04537103697657585, -0.03584606945514679, 0.005986642558127642, 0.016192443668842316, -0.013214213773608208, -0.0018513314425945282, -0.0037395553663372993, -0.029674965888261795, 0.015387516468763351, 0.018204759806394577, 0.01863405480980873, -0.01324775256216526, -0.004578020889312029, -0.03310931846499443, 0.0161119494587183, 0.01336178369820118, 0.027045538648962975, 0.018459653481841087, -0.011886084452271461, -0.02421487867832184, 0.008713332004845142, -0.019667042419314384, -0.020163414999842644, -0.00028549745911732316, 0.011094573885202408, -0.006868707947432995, 0.0201097521930933, 0.019425565376877785, 0.002188394544646144, -0.012020239606499672, -0.0037462632171809673, -0.018821870908141136, 0.02475149743258953, 0.002030763076618314, 0.012369041331112385, 0.0061040278524160385, 0.019157256931066513, 0.017547402530908585, 0.016272936016321182, -3.7180696381255984e-05, 0.01761448010802269, -0.02421487867832184, 0.001846300670877099, 0.004048110917210579, 0.02260502614080906, -1.1646808161458466e-05, -0.023906324058771133, -0.014850898645818233, -0.0013541214866563678, -0.0026663197204470634, 0.0179901123046875, -0.00399444904178381, -0.03775106370449066, -0.01961338147521019, -0.005480209365487099, -0.03088235668838024, 0.009431058540940285, -0.013844739645719528, 0.03023841418325901, -0.012758089229464531, 0.03010426089167595, -0.03332396596670151, 0.018016943708062172, -0.003877063747495413, 0.013019690290093422, -0.029272502288222313, 0.01462283544242382, 0.0017356232274323702, -0.015696071088314056, 0.027904126793146133, -0.018835285678505898, -0.026669906452298164, 0.018701130524277687, 0.0034410618245601654, 0.018513314425945282, -0.005476855672895908, 0.02809194289147854, -0.004195680841803551, -0.0012845288729295135, 0.016715645790100098, -0.002191748470067978, -0.022672103717923164, -0.006281782407313585, 0.025395438075065613, -0.007197386585175991, 0.011020788922905922, -0.026508919894695282, 0.028306590393185616, 0.005178362131118774, 0.022806257009506226, 0.010752479545772076, -0.03662416711449623, 0.0031073526479303837, -0.006727845873683691, 0.011416544206440449, 0.000378776720026508, -0.001463960506953299, -0.014542343094944954, -0.03450452536344528, -0.014475265517830849, 0.003105675568804145, 0.011664729565382004, -0.015146038495004177, 0.021451298147439957, 0.013428861275315285, -0.009692659601569176, 0.00124847493134439, -0.010792725719511509, -0.004343250300735235, 0.025462515652179718, 0.0022085176315158606, -0.034316711127758026, 0.0014488680753856897, -0.012462949380278587, 0.04223182424902916, 0.002500303788110614, -0.023061150684952736, -0.0063589210622012615, -0.02488565258681774, -0.026173533871769905, -0.0006204643868841231, -0.006228120531886816, 0.02035123109817505, 0.028655391186475754, 0.03187509998679161, 0.0048597450368106365, 0.02285991981625557, -0.016407089307904243, 0.004702113568782806, 0.008277329616248608, -0.005560702178627253, -0.006888831499963999, -0.0035651547368615866, -0.0006795761873945594, 0.007479110732674599, -0.016179027035832405, 0.0006414260133169591, 0.005768641829490662, 0.006613814737647772, 0.006204643752425909, 0.0002496530651114881, 0.0019335011020302773, 0.016822969540953636, -0.003145921975374222, -0.008485269732773304, 0.0009139272151514888, 0.024577096104621887, 0.0010178969241678715, -0.020914679393172264, -0.016407089307904243, -0.011369590647518635, -0.008337699808180332, -0.012758089229464531, -0.018164513632655144, 0.0069022467359900475, -0.011275681667029858, 0.026428427547216415, -0.008445022627711296, -0.02484540455043316, -0.02599913440644741, -0.040917109698057175, 0.05248122289776802, -0.006801630835980177, 0.006288490258157253, 0.02436244860291481, -0.009270072914659977, -0.004242634866386652, -0.00044648279435932636, 0.020820772275328636, 0.012791627086699009, -0.021558621898293495, 0.0009021887090057135, -0.017587648704648018, 0.01362338475883007, 0.0003202937659807503, 0.007760835345834494, -0.007861451245844364, 0.024442942813038826, -0.004846329800784588, 0.01518628466874361, -0.011658022180199623, 0.019170671701431274, 0.021048834547400475, -0.002736750990152359, -0.009853645227849483, -0.011517159640789032, 0.0022504411172121763, 0.006955908611416817, -0.01922433450818062, -0.003373984480276704, 0.006161043420433998, 0.015521670691668987, 0.007767543196678162, 0.006804984994232655, -0.011389713734388351, 0.002963136648759246, 0.01923774927854538, -0.033431291580200195, -0.006352213677018881, 0.2031635046005249, -0.025650331750512123, 0.002535519190132618, 0.023530691862106323, -0.01621927320957184, 0.004957007244229317, 0.016702229157090187, 0.003234799252822995, -0.024402694776654243, -0.003732847748324275, -0.020445140078663826, 0.022041577845811844, -0.017453495413064957, -0.00027396855875849724, 0.0037831556983292103, 0.0038636482786387205, -0.04805412515997887, -0.0031241218093782663, -0.004232573322951794, -0.05132749676704407, 0.011745222844183445, -0.008512100204825401, -0.009042010642588139, -0.019143840298056602, 0.0026780583430081606, -0.0009776506340131164, -0.007754127494990826, -0.00831086840480566, 0.03750958666205406, -0.010524417273700237, -0.02750166319310665, -0.009236534126102924, -0.014596004970371723, -0.011222020722925663, -0.018956024199724197, 0.01859380677342415, 0.01913042552769184, 0.012281840667128563, 0.03047989308834076, -0.010410386137664318, 0.006650707218796015, -0.00578205706551671, -0.0008330153068527579, -0.006114089395850897, -0.006036950740963221, 0.012234886176884174, -0.005081099923700094, -0.019801197573542595, -0.017024200409650803, 0.016152195632457733, -0.026777230203151703, -0.0008216960704885423, 0.0505225695669651, 0.01573631726205349, 0.003385723102837801, -0.0030654293950647116, 0.0045914361253380775, 0.007559603545814753, -0.011087865568697453, 0.014703328721225262, -0.017466910183429718, 0.019210917875170708, -0.0006829300546087325, 0.040675632655620575, -0.02648209035396576, 0.010128661058843136, 0.00024692804436199367, 0.002580796368420124, 0.027434585615992546, -0.02721993997693062, -0.003122444963082671, -0.0007860612822696567, 0.002569057745859027, -0.005932980682700872, -0.0007038916810415685, -0.007948651909828186, 0.018781624734401703, -0.022014746442437172, 0.011061035096645355, -0.0024131033569574356, 0.02811877429485321, -0.01785595901310444, 0.011289097368717194, -0.01561557874083519, 0.004299650434404612, -0.007901697419583797, -0.0004081230144947767, -0.020284153521060944, -0.010645155794918537, 0.013630093075335026, -0.026951629668474197, -0.02260502614080906, 0.0019335011020302773, -0.024711251258850098, -0.008102929219603539, -0.012637349776923656, 0.023664847016334534, 0.011979992501437664, 0.00012304479605518281, 0.005855842027813196, -0.005775349214673042, -0.01273796521127224, 0.0005009830347262323, 0.01887553185224533, -0.03788521885871887, -0.003464538836851716, 0.018553560599684715, 0.009229826740920544, 0.013173967599868774, 0.002922890242189169, 0.032170239835977554, -0.011671437881886959, -0.00014211988309398293, -0.012550149112939835, 0.01412646472454071, 0.02400023303925991, -0.01949264295399189, -0.006489722058176994, 0.008827363140881062, -0.008491977117955685, 0.013978894799947739, -0.011463498696684837, -0.00937068834900856, 0.011429959908127785, -0.003501431317999959, -0.009598751552402973, -0.011181773617863655, 0.02299407310783863, 0.004279527347534895, -0.011604360304772854, 0.010591493919491768, -0.04526371508836746, 0.0037764478474855423, 0.01636684313416481, -0.023544106632471085, 0.0030486600007861853, -0.00810963660478592, -0.01862063817679882, 0.035309452563524246, -0.007982189767062664, -0.01261051930487156, 0.00034439965384081006, 0.0004720559809356928, 0.011463498696684837, 0.006727845873683691, 0.0008372076554223895, 0.00668089184910059, -0.014166710898280144, -0.0037395553663372993, 0.0029363057110458612, -0.0159912109375, 0.005862549878656864, -0.0011822361266240478, 0.0007483303197659552, 0.014206957072019577, 0.0009181195637211204, -0.01142325159162283, -0.02310139685869217, -0.007908404804766178, 0.04424414038658142, -0.025784486904740334, 0.01162448339164257, 0.02597230300307274, -0.010430509224534035, -0.021317142993211746, -0.015950964763760567, -0.17064446210861206, 0.015709487721323967, 0.00887431763112545, -0.006298551801592112, 0.023812416940927505, 0.04110492393374443, 0.02561008557677269, -0.002574088517576456, -0.0017473618499934673, -0.011993408203125, 0.030077429488301277, 0.010517708957195282, -0.03997802734375, -0.024912482127547264, 0.003041952382773161, 0.006107381545007229, -0.01859380677342415, 0.020646370947360992, 0.03826085105538368, 0.02862856164574623, 0.009075549431145191, -0.004071587696671486, 0.01588388718664646, -0.0028725822921842337, 0.017694972455501556, 0.005490270908921957, -0.011356174945831299, 0.02159886807203293, 0.014408188872039318, -0.012603810988366604, -0.01648758351802826, 0.019063347950577736, 0.003303553443402052, -0.03195559233427048, 0.03214340656995773, 0.005986642558127642, 0.005453378427773714, 0.00530580896884203, -0.023959985002875328, 0.01860722340643406, 0.009236534126102924, 0.005346055142581463, 0.022578194737434387, 0.012167809531092644, -0.020042676478624344, 0.023074567317962646, -0.003568508429452777, -0.015253361314535141, -0.0027032122015953064, -0.02387949265539646, 0.010779310949146748, 0.002501980634406209, 0.009518258273601532, -0.006955908611416817, 0.02500639110803604, 0.006560152862221003, 0.022806257009506226, -3.5163142456440255e-05, -0.020150000229477882, -0.02171960659325123, 0.0008870963356457651, -0.006197935901582241, 0.013858155347406864, -0.019438980147242546, -0.011604360304772854, 0.012006823904812336, -0.008284037932753563, 0.009484720416367054, -0.017963280901312828, 0.007673634681850672, 0.018540145829319954, 0.007277879398316145, 0.04357336834073067, -0.019425565376877785, -0.011664729565382004, -0.012791627086699009, -0.01455575879663229, 0.027139445766806602, -0.012174516916275024, -0.021665943786501884, -0.03587290272116661, 0.033672768622636795, -0.014515512622892857, -0.013287998735904694, -0.006472952663898468, 0.014689913019537926, -0.007499234285205603, -0.02511371485888958, -0.02822609804570675, -0.0051280539482831955, 0.01467649731785059, -0.03386058658361435, -0.02299407310783863, -0.004101772326976061, 0.016205858439207077, 0.011671437881886959, 0.01726567931473255, -0.022028161212801933, 0.008981640450656414, -0.016782723367214203, 0.00020982595742680132, -0.02660282887518406, -0.0006418452248908579, 0.021800098940730095, 0.031284820288419724, 0.017815710976719856, -0.00031693989876657724, 0.01330141443759203, 0.02625402621924877, 0.008176714181900024, -0.01762789487838745, 0.013898401521146297, 0.013375199399888515, 0.01900968700647354, 0.01663515344262123, 0.03112383373081684, -0.005215254612267017, -0.019184086471796036, 0.01244282629340887, -0.024389280006289482, 0.057042475789785385, -0.01330812182277441, -0.008800532668828964, -0.008377945981919765, -0.0016710615018382668, -0.031928759068250656, -0.10861144959926605, 0.0022202562540769577, 0.023517277091741562, 0.02087443321943283, 0.01061832532286644, 0.014703328721225262, -0.009169457480311394, 0.009531673975288868, -0.008116344921290874, 0.002200133167207241, -0.022403793409466743, -0.02636134997010231, 0.020150000229477882, -0.014971637167036533, -0.0016509382985532284, -0.0277431420981884, 0.002081071026623249, -0.018915778025984764, 0.004886575974524021, 0.022135484963655472, 0.001094197272323072, -0.028521237894892693, 0.018674300983548164, -0.013435568660497665, 0.003303553443402052, 0.009793275035917759, -0.02822609804570675, 0.028306590393185616, 0.022403793409466743, 0.01761448010802269, -0.004960360936820507, -0.012208055704832077, 0.01623268984258175, -0.02248428761959076, 0.0037932172417640686, -0.023396536707878113, -0.04601497948169708, -0.0071101863868534565, 0.02424171008169651, -0.03514846786856651, 0.019170671701431274, -0.007921820506453514, 0.009753028862178326, -0.03225073218345642, 0.007754127494990826, 0.009813398122787476, -0.010068291798233986, 0.000997773720882833, 0.009337150491774082, -0.02587839402258396, -0.02049880102276802, 0.00924324244260788, -0.04295625537633896, -0.008914563804864883, 0.039280425757169724, 0.012590395286679268, 0.03061404637992382, 0.0012333824997767806, -0.016796138137578964, -0.012261717580258846, -0.015065545216202736, 0.013267875649034977, 0.0003324515128042549, 0.020793940871953964, 0.009746321476995945, -0.008773701265454292, -0.008820655755698681, -0.007022985722869635, 0.024308787658810616, 0.025180790573358536, -0.02000243030488491, 0.011349466629326344, -0.02911151759326458, 0.019559720531105995, -0.01342215295881033, 0.005007314961403608, -0.01773521862924099, -0.006389106158167124, 0.0161119494587183, 0.005278978031128645, -0.007505941670387983, -0.027206523343920708, -0.011892792768776417, -0.0021816869266331196, 0.016192443668842316, 0.022833088412880898, 0.0006045335321687162, -0.020700031891465187, 0.0048362682573497295, -0.01699736900627613, -0.0003387400065548718, 0.03219706937670708, -0.006050365976989269, -0.024778328835964203, 0.0014756990130990744, 0.03061404637992382, 0.0257442407310009, 0.008834070526063442, -0.0261064562946558, 0.0058960882015526295, -0.010148785077035427, 0.022309886291623116, -0.059027962386608124, 0.031070172786712646, 0.0024181341286748648, -0.0013214213540777564, -0.005386301316320896, -0.006020181346684694, 0.02023049257695675, -0.029138347133994102, -0.005087807774543762, 0.01318738330155611, -0.012087316252291203, 0.014998468570411205, 0.00022261255071498454, -0.0005756064783781767, -0.02526128478348255, -0.018687715753912926, -0.004977130331099033, -0.005121346563100815, 0.00672113848850131, 0.002416457049548626, 0.009632290340960026, -0.01255685742944479, 0.03471917286515236, -0.010537832975387573, -0.03595339506864548, 0.009491427801549435, -0.009914014488458633, 0.01430086512118578, -0.0025506115052849054, -0.018432822078466415, 0.008592592552304268, -0.026549166068434715, -0.013294707052409649, 0.010786018334329128, 0.0023711801040917635, 0.016179027035832405, -0.016943708062171936, 0.011953162029385567, -0.00034565734677016735, 0.045183222740888596, -0.02125006541609764, -0.007505941670387983, 0.007398618385195732, -0.01860722340643406, 0.012429410591721535, 0.030292076990008354, -0.027085784822702408, -0.008887732401490211, 0.014086217619478703, -0.010537832975387573, -0.001229190151207149, 0.03785838931798935, 0.011590944603085518, -0.025891810655593872, -0.00012304479605518281, -0.017560819163918495, 0.03249220922589302, -0.015776563435792923, -0.009846936911344528, -0.02735409326851368, 0.011295805685222149, -0.023074567317962646, -0.003568508429452777, 0.008887732401490211, 0.00810963660478592, -0.0027501664590090513, -0.018191345036029816, -0.025811318308115005, -0.006389106158167124, -0.023772168904542923, 0.005346055142581463, 0.011906208470463753, 0.0008573308004997671, -0.000885419431142509, 0.014756990596652031, 0.02884320728480816, -0.004594790283590555, 0.013663630932569504, -0.03276051953434944, 0.0024131033569574356, -0.00010056344035547227, -0.014086217619478703, -0.026817476376891136, -0.012999567203223705, 0.021397635340690613, -0.0001302765595028177, 0.024791743606328964, 0.007277879398316145, -0.02311481349170208, 0.007344956509768963, 0.013066643849015236, -0.01261722669005394, 0.0012208055704832077, 0.003077167784795165, 0.011523867957293987, 0.01648758351802826, -0.00793523620814085, -0.0018613931024447083, 0.02137080579996109, 0.02335629053413868, -0.00805597472935915, 0.012087316252291203, 0.02209523878991604, -0.015387516468763351, 0.0035618008114397526, -0.00942435022443533, -0.015924133360385895, -0.02787729538977146, -0.001232544076628983, 0.021424466744065285, 0.003504785243421793, 0.00047540984814986587, 0.03434354066848755, 0.01725226268172264, -0.014958221465349197, 0.001597276539541781, 0.02049880102276802, -0.009719490073621273, -0.013710585422813892, 0.03533628210425377, 0.015347269363701344, 0.047302860766649246, 0.014783821068704128, 0.00824379175901413, 0.02412097156047821, 0.012536734342575073, 0.011778761632740498, 0.026401596143841743, -0.012288548052310944, 0.010148785077035427, 0.0033672768622636795, 0.006174458656460047, -0.025180790573358536, -0.006033596582710743, 0.009437765926122665, -0.03074820153415203, -0.0048429761081933975, 0.0064092292450368404, -0.04271477833390236, 0.04164154455065727, 0.007438864558935165, -0.012845288962125778, -0.009491427801549435, 0.003464538836851716, 0.028816377744078636, 0.0178693737834692, 0.004792667925357819, -0.006275074556469917, -0.007666927296668291, -0.0011084511643275619, -0.018030358478426933, 0.012120855040848255, -0.022926997393369675, -0.014206957072019577, 0.0006020181463100016, 0.00025174921029247344, 0.02921884134411812, -0.015253361314535141, -0.028306590393185616, 0.03375326097011566, -0.0032918150536715984, 0.02536860853433609, -0.00874016247689724, -0.007432156708091497, 0.008035851642489433, 0.014260618947446346, -0.0026780583430081606, 0.012006823904812336, -0.03584606945514679, -0.0034578312188386917, 0.0010648509487509727, -0.026441844180226326, -0.002852459205314517, 0.020646370947360992, 0.011329343542456627, -0.012644057162106037, -0.027179693803191185, 0.015414346940815449, -0.020391477271914482, -0.015548501163721085, 0.01674247533082962, -0.01800352893769741, -0.02086101844906807, 0.012067193165421486, -0.0006493914406746626, -0.02887003868818283, 0.005607656203210354, -0.0259857177734375], "365f6410-d20c-4335-b1cf-2d7930998c5b": [0.00027951481752097607, -0.03724153712391853, -0.01582900807261467, 0.004224908538162708, -0.012224114499986172, 0.023797720670700073, -0.013477696105837822, -0.015530859120190144, -0.011383875273168087, -0.024665063247084618, 0.030167270451784134, 0.016371097415685654, 0.011051845736801624, -0.0012307121651247144, -0.002383498940616846, 0.00019184879784006625, 0.02892046421766281, -0.005522534716874361, 0.034151628613471985, -0.0136335464194417, -0.00699972826987505, -0.0067252954468131065, -0.0065016839653253555, 0.014663515612483025, 0.0041063264943659306, 0.039220161736011505, 0.008897040970623493, -0.019461005926132202, 0.003349095582962036, -0.02894756942987442, -0.025776347145438194, 0.00013827512157149613, -0.0010850256076082587, -0.000837273895740509, -0.03705180436372757, 0.00897835474461317, 0.010902771726250648, -0.02496321313083172, 0.02207658812403679, -0.007467280142009258, 0.001218853984028101, -0.0012120777973905206, -0.008592115715146065, -0.002298797480762005, -0.030438315123319626, 0.014243396930396557, 0.005698713939636946, -0.025600168853998184, -0.021968169137835503, 0.02641330286860466, 0.03127855435013771, 0.002901871921494603, -0.016615036875009537, -0.00029772560810670257, -0.007236892357468605, -0.016465963795781136, 0.007853519171476364, 0.028866255655884743, -0.01237996481359005, 0.014704172499477863, 0.013741964474320412, 0.00558690819889307, 0.007399518974125385, 0.0012476524570956826, -0.035832103341817856, -0.01730620115995407, -0.016926739364862442, 0.0009986301884055138, -0.01242739800363779, -0.020206378772854805, 0.03293192759156227, 0.016791217029094696, 0.01096375659108162, 0.020504528656601906, 0.025830555707216263, -0.02340470626950264, -0.027104465290904045, -0.01685897819697857, -0.022279871627688408, 0.012996591627597809, -0.0023208200000226498, -0.034124523401260376, -0.0027799017261713743, 0.009513667784631252, 0.026074497029185295, -0.019474558532238007, 0.02714512310922146, 0.02149384096264839, -0.015842560678720474, -0.022821960970759392, 0.003936923574656248, 0.02490900456905365, 0.02738906256854534, 0.018607215955853462, -0.013362501747906208, 0.016167813912034035, -0.01647951453924179, 0.008510801941156387, -0.016940291970968246, -0.029896225780248642, -0.01688608154654503, -0.006627041846513748, -0.011817547492682934, -0.0056038484908640385, -0.039572522044181824, 0.03263377770781517, -0.011898860335350037, -0.013857157900929451, 0.0022462825290858746, -0.02042321488261223, -0.012034382671117783, 0.015666380524635315, -0.029869120568037033, -0.03339270129799843, -0.011051845736801624, -0.02278130315244198, 0.016994500532746315, -0.021385423839092255, -0.02184619940817356, -0.01348447147756815, 0.0005285370862111449, 0.023336945101618767, 0.0037505803629755974, -0.011546502821147442, 0.019271275028586388, 0.0023716408759355545, -0.004645027685910463, -0.027511032298207283, 0.007379190996289253, -0.010387786664068699, 0.03740416467189789, 0.019298380240797997, 0.010740144178271294, -0.0004717871197499335, -0.008097459562122822, 0.02929992787539959, -0.029381241649389267, 0.01049620471894741, -0.01202760636806488, -0.020883990451693535, 0.015083635225892067, 0.007751877419650555, -0.006555892527103424, -0.026101600378751755, -0.010726592503488064, 0.028541002422571182, 0.02169712446630001, 0.02016572281718254, -0.026006735861301422, -0.004655192140489817, 0.02443467639386654, -0.01550375483930111, 0.017929604277014732, -0.008395608514547348, 0.02553240768611431, -0.00640342989936471, 0.010868891142308712, -0.008537907153367996, -0.0016584545373916626, -0.013186322525143623, 0.017902499064803123, 0.005878280848264694, 0.01498876977711916, -0.022306974977254868, 0.006884534377604723, 0.02573569118976593, 0.024800585582852364, -0.01028614491224289, -0.02859521098434925, -0.016872530803084373, 0.014175635762512684, 0.02345891483128071, -0.018254857510328293, 0.0010824846103787422, -0.010814681649208069, -0.003332155290991068, 0.045942068099975586, 0.021832646802067757, -0.021155035123229027, 0.0023055735509842634, -0.037133120000362396, -0.01813288778066635, 0.014189187437295914, 0.020531632006168365, 0.0011976786190643907, -0.008192325010895729, -0.017970260232686996, -0.0006424605380743742, 0.013789396733045578, 0.003403304610401392, 0.021005960181355476, 0.019596528261899948, -0.008849607780575752, -0.01662858948111534, -0.6422674059867859, -0.03274219483137131, -0.016723455861210823, -0.009425577707588673, -0.01108572632074356, -0.00597653491422534, 0.023689303547143936, 0.011661696247756481, -0.0016999582294374704, -0.005854564718902111, -0.020463870838284492, 0.007006504572927952, 0.004550162237137556, -0.030763568356633186, -0.0225509162992239, -0.009601756930351257, 0.009466234594583511, -0.02428560145199299, -0.018376827239990234, -0.016750559210777283, 0.0002424579142825678, 0.006088340654969215, -0.004699236713349819, 0.006335668731480837, -0.024895451962947845, -0.0032423718366771936, 0.013931695371866226, 0.00587489316239953, 0.004296057857573032, 0.03694338724017143, -0.024773482233285904, 0.016994500532746315, 0.03157670423388481, 0.018349723890423775, 0.043936338275671005, -0.00533619150519371, -0.021304110065102577, 0.005315863527357578, 0.0012722158571705222, 0.0077451011165976524, -0.028188643977046013, -0.021588707342743874, 0.019284827634692192, 0.005685161799192429, 0.003899655072018504, 0.0013713166117668152, 0.031874850392341614, -0.015869664028286934, 0.010231935419142246, 0.023364050313830376, 0.015246261842548847, 0.0005107497563585639, -0.025654377415776253, -0.004238460678607225, 0.001042674877680838, 0.007358862552791834, 0.027158675715327263, -0.009073220193386078, -0.00017956708325073123, -0.0012129248352721334, 0.00046797553659416735, 0.03613025322556496, -0.011343219317495823, -0.004682296421378851, -0.010137069970369339, 0.009201966226100922, -0.015720590949058533, 0.022266319021582603, 0.017102917656302452, -0.010591070167720318, 0.020206378772854805, 0.009649190120398998, -0.014013009145855904, -0.02202237769961357, 0.024665063247084618, 0.008612443692982197, 0.03973514586687088, -0.028676524758338928, 0.005217609461396933, 0.023093005642294884, 0.005935878027230501, -0.01263068150728941, -0.03393479064106941, -0.027199331670999527, 0.01432470977306366, -0.023472467437386513, 0.003936923574656248, 0.018851155415177345, -0.005017714109271765, -0.004645027685910463, -0.006284847855567932, 0.009994772262871265, 0.005380236543715, 0.0014653351390734315, 0.04816463589668274, 0.02042321488261223, -0.008449817076325417, 0.002881543477997184, 0.015381784178316593, 0.0020565513987094164, -0.007934832014143467, -0.006149325519800186, 0.014677068218588829, -0.006559280678629875, -0.002298797480762005, -0.010984084568917751, -0.037512581795454025, -0.023160766810178757, 0.05106481537222862, -0.019935334101319313, -0.00016273267101496458, -0.01395879965275526, -0.022984586656093597, 0.004993997979909182, 0.02729419805109501, -0.02358088456094265, 0.03336559608578682, -0.002319125924259424, 0.03130565956234932, -0.020775573328137398, 0.023011691868305206, -0.01730620115995407, 0.010557189583778381, -0.016994500532746315, 0.01833617128431797, 0.04938433691859245, 0.010746920481324196, -0.015164948999881744, -0.009784712456166744, -0.010089637711644173, -0.00011064127465942875, -0.001408585230819881, 0.005200669169425964, 0.01310500968247652, 0.004224908538162708, -0.01263068150728941, 0.03130565956234932, 0.016438858583569527, 0.01170235313475132, -0.01600518636405468, -0.007589250337332487, -0.007196235470473766, 0.004336714744567871, 0.012759427540004253, 0.00611544493585825, -0.02435336261987686, -0.017617903649806976, -0.012861069291830063, -0.027483928948640823, 0.007331757806241512, -0.0032948865555226803, 0.009466234594583511, -0.007399518974125385, -0.005969758611172438, -0.0018888424383476377, -0.008795399218797684, -0.03770231083035469, 0.00013573408068623394, 0.0139994565397501, -0.02089754305779934, 0.006755788344889879, 0.008836056105792522, -0.019379694014787674, 0.008131340146064758, 0.017739873379468918, -0.011519397608935833, -0.007419847417622805, 0.02287616953253746, -0.0020345288794487715, -0.03499186411499977, 0.014893904328346252, 0.004302834160625935, -0.006481355521827936, 0.03363664075732231, -0.012515487149357796, -0.003066192613914609, -0.008273637853562832, -0.007243668660521507, 0.0004243543080519885, 0.005105803720653057, -0.005763086955994368, 0.012535815127193928, 0.004780550021678209, -0.007230116054415703, 0.010638502426445484, 0.006061236374080181, -0.021263454109430313, -0.001683864975348115, 0.007982265204191208, 0.029869120568037033, 0.003970804158598185, 0.019122200086712837, 0.0044959532096982, 0.005292146932333708, 0.007948384620249271, 0.004387535620480776, 0.0052718184888362885, 0.022361183539032936, 0.004905908368527889, 0.0058850571513175964, 0.017550142481923103, 0.027307748794555664, 0.03458529710769653, -0.00840238481760025, 0.002361476654186845, -0.02591186948120594, 0.010516532696783543, -0.009927011094987392, 0.03829861059784889, -0.013464143499732018, 0.0010985778644680977, -0.020653603598475456, -0.010706263594329357, -0.009994772262871265, 0.014514441601932049, 0.03426004573702812, 0.0049906098283827305, -0.0010274286614730954, -0.012718770653009415, 0.006247579585760832, 0.013714860193431377, -0.02131766267120838, 0.014338262379169464, -0.017143575474619865, -0.006837101653218269, -0.0013763986062258482, 0.009418802335858345, 0.048679620027542114, 0.012183457612991333, -0.008192325010895729, 0.009561100043356419, -0.014094321988523006, -0.0011951375054195523, 0.0032559239771217108, 0.0030983793549239635, 0.011614263989031315, 0.0068506537936627865, -0.011817547492682934, 0.03973514586687088, -0.0279989130795002, -0.0002939140540547669, -0.004695848561823368, 0.0339076854288578, -0.019975991919636726, -0.013667427003383636, 0.005969758611172438, 0.01998954452574253, -0.011905636638402939, 0.006213699001818895, 0.016276231035590172, -0.008632772602140903, -0.001792282797396183, -0.003997908905148506, -0.01498876977711916, -0.001873596222139895, -0.035533953458070755, -0.002803618088364601, 0.010028652846813202, 0.007155579049140215, 0.027077361941337585, 0.011051845736801624, 0.004340102430433035, 0.013260859996080399, 0.015178500674664974, 0.05260976776480675, 0.0031813867390155792, 0.0013010143302381039, 0.016113605350255966, -0.0035472968593239784, -0.02894756942987442, -0.028080226853489876, -0.009134205058217049, 0.023147214204072952, -0.00014822755474597216, -0.004475624766200781, 0.008097459562122822, 0.026806317269802094, -0.014853247441351414, -0.0006822702125646174, -0.0015466485638171434, -0.02325563132762909, -0.020152170211076736, 0.02149384096264839, 0.010313249193131924, -0.00017713192210067064, -0.015530859120190144, -0.02199527435004711, -0.008632772602140903, -0.01933903619647026, 0.04374660924077034, -0.024515990167856216, 0.010394562967121601, 0.042608220130205154, -0.013145665638148785, -0.003269476117566228, 0.014189187437295914, 0.01813288778066635, -0.017875395715236664, 0.02340470626950264, 0.0007585015264339745, -0.0011519398540258408, 0.01531402301043272, -0.010475875809788704, 0.017794081941246986, 0.014948112890124321, -0.004194416105747223, -0.005285370629280806, -0.010543636977672577, 0.010807905346155167, -0.021859752014279366, -0.0032830284908413887, -0.0252071525901556, -0.013132113963365555, 0.00925617478787899, 0.00014653352263849229, -0.009317160584032536, -0.014677068218588829, 0.0003036547277588397, 0.023824825882911682, -0.00207518576644361, -0.012515487149357796, -0.013010143302381039, -0.022496705874800682, -0.014609307050704956, 0.10126228630542755, 0.01688608154654503, -0.012298651039600372, 0.011560054495930672, -0.0038081775419414043, 0.010624950751662254, -0.003467677626758814, -0.015937425196170807, 0.016343992203474045, 0.013294740580022335, 0.003034006105735898, -0.007528265472501516, 0.02644040621817112, -0.002212401945143938, -7.040808850433677e-05, -0.003720087930560112, -0.006108669098466635, 0.006234026979655027, -0.015937425196170807, -0.0022378123831003904, 5.9555710322456434e-05, 0.022442497313022614, 0.008714085444808006, 0.008924145251512527, -0.03634708747267723, -0.022862616926431656, 0.034151628613471985, 0.009317160584032536, 0.007006504572927952, -0.01431115809828043, -0.005763086955994368, 0.02862231619656086, 0.026169361546635628, 0.022157900035381317, -0.0020429990254342556, 0.001489898655563593, 0.004119878634810448, 0.04041275754570961, -0.0018854544032365084, -0.005447997711598873, 0.0017194395186379552, -0.006562668830156326, 0.002356394426897168, -0.013247307389974594, 0.007216563913971186, 0.003088215133175254, -0.004336714744567871, -0.009262951090931892, -0.02564082480967045, -0.01357256155461073, 0.039247266948223114, -0.01269166637212038, -0.038840699940919876, -0.02104661799967289, 0.008951249532401562, 0.014677068218588829, -0.005251490045338869, -0.005637729074805975, -0.005983310751616955, 0.024312706664204597, -0.0027392450720071793, 0.001119753229431808, 0.012888173572719097, 0.0026901182718575, -0.020084409043192863, -0.027700765058398247, -0.016818320378661156, -0.02217145264148712, -0.01143808476626873, 0.024421123787760735, -0.019081544131040573, -0.009676294401288033, -0.0006306023569777608, 0.00977115985006094, -0.011302562430500984, 0.007711220532655716, 0.023919690400362015, -0.013586113229393959, 0.006054460071027279, -0.015246261842548847, -0.01715712621808052, -0.012095367535948753, 7.448434189427644e-05, -0.01984046958386898, -0.0018668200355023146, -0.004211356397718191, 0.019406797364354134, 0.012298651039600372, -0.01653372496366501, 0.024326257407665253, -0.015368232503533363, 0.031224343925714493, 0.008659876883029938, -0.014893904328346252, -0.005105803720653057, -0.009899905882775784, -0.014731276780366898, -0.013342173770070076, -0.01320665143430233, -0.005630952771753073, 0.01065883133560419, -0.03810887783765793, -0.005868116859346628, -0.01830906607210636, 0.003581177443265915, -0.017943156883120537, 0.018173543736338615, 0.02443467639386654, -0.01721133664250374, -0.00993378646671772, 0.008022922091186047, -0.030709359794855118, 0.008144891820847988, 0.006992952432483435, 0.010706263594329357, 0.007040385156869888, 0.024976765736937523, 0.016872530803084373, 0.016140708699822426, -0.007528265472501516, 0.005190505180507898, -0.03466661274433136, 0.004245236981660128, 0.013830053620040417, -0.015029426664113998, -0.0032847225666046143, 0.0030594165436923504, -0.012461278587579727, 0.03407031297683716, 0.012291875667870045, -0.00501093827188015, 8.430441994278226e-06, 0.02139897644519806, -0.00757569819688797, -0.030573837459087372, 0.006959071848541498, -0.010130293667316437, 0.0033186031505465508, -0.0016372791724279523, 0.008686981163918972, -0.025505302473902702, -0.020328348502516747, -0.014704172499477863, -0.02352667599916458, -0.001987096155062318, -0.022821960970759392, -0.02059939317405224, -0.00047517515486106277, 0.004956729244440794, -0.01087566651403904, -0.015110739506781101, -0.038515444844961166, -0.036807864904403687, 0.0025529018603265285, -0.007785758003592491, -0.03103461302816868, -0.014771933667361736, -0.014975217171013355, 0.03222721070051193, 0.0037268640007823706, 0.03629288077354431, -0.017929604277014732, 0.004248625133186579, 0.009161309339106083, -0.009554324671626091, -0.014609307050704956, -0.001087566721253097, -0.028188643977046013, -0.03900332748889923, -0.021453185006976128, 0.02688763104379177, 0.026359092444181442, 0.006230639293789864, -0.025369780138134956, 0.004407863598316908, 0.0339076854288578, -0.014744829386472702, 0.007697668392211199, -0.016072947531938553, -0.04512893408536911, -0.01721133664250374, 0.01966428942978382, -0.011912412941455841, 0.0064406986348330975, -0.018905365839600563, -0.009005459025502205, 0.06315340846776962, 0.0027239988557994366, 0.009201966226100922, -0.013430262915790081, 0.008470145985484123, -0.013904591090977192, 0.014134978875517845, 0.0019040887709707022, 0.02149384096264839, -0.005217609461396933, 0.024095870554447174, -0.008897040970623493, 0.011051845736801624, -0.009364592842757702, 0.01597808301448822, 0.002519021276384592, -0.010042204521596432, -0.010103189386427402, -0.016276231035590172, 0.007169131189584732, -0.0169538427144289, -0.02824285440146923, 0.008808951824903488, -0.017590798437595367, -0.006389877758920193, -0.007094593718647957, 0.01603229157626629, -0.019149305298924446, -0.029462553560733795, 0.0004891509306617081, 0.014256948605179787, -0.0023004915565252304, -0.00868020486086607, -0.030573837459087372, 0.02343181148171425, -0.011912412941455841, 0.037566788494586945, 0.01665569469332695, 0.030411209911108017, 0.017428170889616013, -0.008775071240961552, 0.010577517561614513, 0.0014339956687763333, 0.0008338858606293797, -0.012827188707888126, 0.028215749189257622, 0.01653372496366501, -0.011919189244508743, 0.01660148613154888, -0.028161540627479553, 0.0026613196823745966, -0.040548279881477356, -0.024095870554447174, 0.014853247441351414, -0.002581700449809432, -0.01170235313475132, -0.003015371738001704, 0.005793579388409853, -0.03512738645076752, 0.01347091980278492, 0.0014822754310443997, 0.019257722422480583, -0.010333577170968056, -0.016940291970968246, -0.030465420335531235, 0.016100052744150162, 0.014961665496230125, 0.02995043434202671, 0.024637959897518158, -0.019962439313530922, -0.028703629970550537, -0.007318205665796995, -0.01984046958386898, -0.010902771726250648, -0.0052718184888362885, 0.014378919266164303, -0.011031517758965492, 0.015381784178316593, 0.012271546758711338, 0.0027815958019346, -0.004529833793640137, -0.0017821185756474733, -0.022388288751244545, 0.027511032298207283, 0.005376848392188549, 0.014256948605179787, -0.0013552232412621379, 0.015571516007184982, 0.009845697320997715, 0.005017714109271765, -0.008422712795436382, 0.0021378647070378065, -0.03035700134932995, 0.00011191179510205984, 0.007216563913971186, 0.025776347145438194, 0.00488557992503047, -0.015273366123437881, -0.019975991919636726, -0.01615426130592823, 0.0011993725784122944, 0.00876829493790865, -0.0018515738192945719, -0.04680941253900528, -0.023919690400362015, 0.005444609560072422, -0.030411209911108017, 0.007528265472501516, -0.012332531623542309, 0.026453958824276924, -0.016276231035590172, 0.03634708747267723, -0.030085956677794456, 0.02570858597755432, -0.004109714645892382, 0.014256948605179787, -0.03927437216043472, 0.012556144036352634, 0.0003709923767019063, -0.021886855363845825, 0.02054518461227417, -0.0125290397554636, -0.02794470451772213, 0.01633044146001339, 0.007995817810297012, 0.01295593474060297, -0.0030221480410546064, 0.021331215277314186, 0.0005230315146036446, 0.004346878733485937, 0.01733330637216568, -0.00918163824826479, -0.03745837137103081, 0.01562572456896305, 0.021954616531729698, 0.0003841211146209389, 0.009398473426699638, -0.025071630254387856, 0.024217840284109116, -0.0032474538311362267, 0.013084680773317814, 0.005654669366776943, -0.03642840310931206, 0.009296831674873829, -0.007562146056443453, 0.006864205934107304, 0.010563965886831284, -0.0005581825971603394, -0.012752651236951351, -0.020409662276506424, -0.016872530803084373, -0.002031140960752964, 0.01898667775094509, -0.010272592306137085, 0.006677862722426653, 0.017780529335141182, -0.011986950412392616, -0.013802949339151382, -0.0008067813469097018, 0.0058172959834337234, 0.01416208315640688, 0.0002803618262987584, -0.028513897210359573, -0.0046518039889633656, -0.006383101921528578, 0.04347556456923485, 0.005241326056420803, -0.007169131189584732, -0.009120652452111244, -0.03133276104927063, -0.02541043609380722, -0.015056530945003033, -0.0046789082698524, 0.031522493809461594, 0.029706494882702827, 0.020030200481414795, 0.0060917288064956665, 0.02435336261987686, -0.014880351722240448, -0.006007027346640825, 0.0012781450059264898, -0.0016415142454206944, -0.005207445472478867, 0.019962439313530922, 0.008653100579977036, 0.01738751493394375, -0.025166496634483337, 0.008144891820847988, 0.0162084698677063, -0.0029272823594510555, -0.00248344661667943, 0.005071923136711121, 0.001905782730318606, 0.0030187598895281553, -0.00800259318202734, -0.00840238481760025, 0.009412026032805443, 0.019298380240797997, 0.005539475008845329, -0.013247307389974594, -0.011404204182326794, -0.01432470977306366, 0.005918937735259533, -0.00893092155456543, -0.011519397608935833, 0.014446680434048176, -0.006799832917749882, 0.015666380524635315, -0.014744829386472702, -0.01660148613154888, -0.024543093517422676, -0.0327150896191597, 0.06288236379623413, -0.003291498636826873, 0.0047094011679291725, 0.027714315801858902, 0.005925714038312435, -0.014921008609235287, 0.0014136673416942358, 0.012352860532701015, 0.012251218780875206, -0.02352667599916458, 0.005512370727956295, -0.02646751143038273, 0.02924571931362152, -0.008815727196633816, 0.01588321663439274, -0.013172770850360394, 0.00856501143425703, -0.013315068557858467, 0.012928830459713936, -0.008429489098489285, 0.025356227532029152, 0.023865481838583946, -0.010502980090677738, 0.002459730254486203, -0.016764111816883087, -0.014392470940947533, 0.010157398879528046, -0.01801091805100441, -0.010313249193131924, 0.006576220970600843, 0.015029426664113998, 0.009838921017944813, 0.0013433650601655245, -0.00749438488855958, 0.009540772065520287, 0.012190233916044235, -0.029055986553430557, 0.004672132432460785, 0.2152094542980194, -0.01750948466360569, 0.003272864269092679, 0.014338262379169464, -0.00558690819889307, 0.016547275707125664, 0.009310384280979633, -0.010428443551063538, -0.016425305977463722, -0.005014326423406601, -0.013755516149103642, 0.022686438634991646, -0.0162084698677063, 0.0012671337462961674, 0.007880623452365398, 0.001430607633665204, -0.036536820232868195, -0.0008525201701559126, -0.006823549512773752, -0.04737860709428787, -0.003066192613914609, -0.012136024422943592, -0.014433127827942371, -0.01416208315640688, 0.0004127078573219478, 0.007521489169448614, -0.019054438918828964, -0.008463369682431221, 0.03336559608578682, -0.00798904150724411, -0.037187326699495316, -0.0012061487650498748, -0.01029969658702612, -0.002486834768205881, -0.01786184310913086, 0.009391697123646736, 0.015192053280770779, -0.0024580361787229776, 0.021385423839092255, -0.016642142087221146, 0.0001450512500014156, -0.003896266920492053, -0.003720087930560112, 0.008673429489135742, -0.006051071919500828, 0.020463870838284492, -0.00841593649238348, -0.023038795217871666, -0.007873847149312496, 0.0111263832077384, -0.016140708699822426, -0.0010774024995043874, 0.05952140688896179, 0.02443467639386654, 0.013348949141800404, -0.008009369485080242, -0.004882191773504019, 0.006095116958022118, -0.005380236543715, 0.004153759218752384, -0.02190040796995163, 0.024678615853190422, -0.013931695371866226, 0.033853478729724884, -0.024272048845887184, 0.01201405469328165, -0.005918937735259533, 0.0005708878161385655, 0.020883990451693535, -0.03060094267129898, -0.01170235313475132, -0.006315340753644705, 0.004553550388664007, -0.006254355423152447, -0.0165066197514534, -0.003196632955223322, 0.01780763454735279, -0.017170678824186325, 0.0047094011679291725, -0.005705490242689848, 0.01700805313885212, -0.0139994565397501, 0.012318979948759079, -0.0069285789504647255, -0.013037248514592648, -0.02473282441496849, -0.0016237269155681133, -0.020626498386263847, -0.014229844324290752, 0.01562572456896305, -0.01883760467171669, -0.02272709459066391, 0.001544107566587627, -0.019623633474111557, 0.0033711178693920374, -0.020097961649298668, 0.021114379167556763, 0.004756833892315626, 0.013301516883075237, 0.004733117297291756, -0.0010528390994295478, -0.021561602130532265, 0.019176410511136055, 0.013647099025547504, -0.03233562782406807, -0.004658580292016268, 0.011709129437804222, 0.0022852453403174877, 0.013755516149103642, -0.0040961625054478645, 0.026331989094614983, -0.007291101384907961, 0.004773774184286594, -0.019379694014787674, -0.002434319816529751, 0.02646751143038273, -0.02455664612352848, -0.004563714377582073, 0.005519147031009197, 0.005061759147793055, 0.009398473426699638, -0.003372811945155263, -0.01338282972574234, 0.0013848687522113323, -0.005370072089135647, -0.011417755857110023, -0.015449545346200466, 0.013044023886322975, 0.003625222248956561, -0.010387786664068699, 0.021209243685007095, -0.03491055220365524, 0.007751877419650555, 0.01133644301444292, -0.026982495561242104, 0.011234801262617111, -0.006952295545488596, -0.02287616953253746, 0.02824285440146923, -0.006613489706069231, -0.013376054354012012, 0.0031525881495326757, -0.00546154985204339, 0.00840238481760025, 0.00033774704206734896, -0.0034592074807733297, 0.0068506537936627865, -0.020111514255404472, -0.018146440386772156, -0.0009681376395747066, -0.02694183960556984, 0.0030628046952188015, -0.002754491288214922, -0.0034829238429665565, 0.006271295715123415, -0.004550162237137556, -0.015544410794973373, -0.006007027346640825, -0.0026528495363891125, 0.038515444844961166, -0.035859208554029465, 0.017875395715236664, 0.026928286999464035, -0.008232981897890568, -0.02242894470691681, -0.021331215277314186, -0.17314332723617554, 0.011736233718693256, 0.009107100777328014, -0.006786280777305365, 0.028541002422571182, 0.04065669700503349, 0.029218614101409912, 0.002429237822070718, 0.000430071639129892, -0.01588321663439274, 0.027714315801858902, 0.019528767094016075, -0.04114457964897156, -0.016737008467316628, 0.0021785213612020016, 0.0011443166295066476, -0.02646751143038273, 0.02794470451772213, 0.03195616602897644, 0.024312706664204597, 0.018078679218888283, 0.001992178149521351, -0.0009511973476037383, 0.002054857322946191, 0.010387786664068699, 0.0038928790017962456, -7.681363058509305e-05, 0.02345891483128071, 0.007331757806241512, -0.015137843787670135, -0.029191508889198303, 0.00850402656942606, 0.010387786664068699, -0.025193601846694946, 0.012983039021492004, 0.01211569644510746, -0.004746669437736273, -0.0042418488301336765, -0.007643459364771843, 0.013769068755209446, 0.013423486612737179, -0.004689072724431753, 0.02272709459066391, 0.013416710309684277, -0.010828234255313873, 0.024041661992669106, 0.0014568649930879474, -0.007623130921274424, 0.0010714734671637416, -0.021290557458996773, 0.0036184461787343025, -0.0007292795344255865, 0.006271295715123415, -0.0038928790017962456, 0.03263377770781517, -0.0008343093213625252, 0.012698442675173283, -0.0014297605957835913, -0.018254857510328293, -0.014568650163710117, -0.0031322599388659, -0.006525400094687939, 0.011797218583524227, -0.012969487346708775, 0.0008288037497550249, -0.010191279463469982, -0.008307518437504768, 0.02513939142227173, -0.013660650700330734, 0.009513667784631252, 0.011682025156915188, 0.0122308898717165, 0.033474016934633255, -0.01180399488657713, -0.007684116251766682, -0.015639277175068855, -0.019108649343252182, 0.009845697320997715, -0.020179275423288345, -0.021060170605778694, -0.03840702772140503, 0.02794470451772213, -0.002922200132161379, -0.0019244170980527997, -0.011072174645960331, 0.012400292791426182, -0.002234424464404583, -0.020125066861510277, -0.02832416631281376, -0.017414620146155357, -0.008226205594837666, -0.020084409043192863, -0.016140708699822426, -0.005512370727956295, 0.00987280160188675, 0.013518352061510086, 0.0034287150483578444, -0.01736040972173214, 0.009662741795182228, -0.004807654768228531, 0.005830848123878241, -0.01600518636405468, -0.014053666032850742, 0.02352667599916458, 0.025545958429574966, 0.002491916762664914, -0.003196632955223322, 0.0043096099980175495, 0.030519628897309303, 0.0025478198658674955, -0.016642142087221146, 0.019732050597667694, 0.010895995423197746, 0.01483969483524561, 0.02417718432843685, 0.027836287394165993, -0.004370595328509808, -0.020531632006168365, 0.012488382868468761, -0.030899090692400932, 0.06922480463981628, -0.005654669366776943, -0.014229844324290752, -0.004292669706046581, -0.0013027084060013294, -0.03694338724017143, -0.1173081248998642, 0.011641368269920349, 0.016967395320534706, 0.012840740382671356, -0.002522409427911043, 0.016737008467316628, -0.004895744379609823, 0.020585842430591583, 0.0010223465505987406, 0.002383498940616846, -0.01195306982845068, -0.03461240231990814, 0.007731548976153135, -0.003228819463402033, 0.012989815324544907, -0.029083091765642166, -0.005485266447067261, -0.022713541984558105, 0.00031932449201121926, 0.03176643326878548, 0.0065118479542434216, -0.016411753371357918, 0.022144349291920662, -0.024001004174351692, 0.00708104157820344, 0.002266610972583294, -0.03702469915151596, 0.02021993137896061, 0.02175133302807808, 0.019298380240797997, -0.018498798832297325, -0.017319753766059875, 0.019854022189974785, -0.008050026372075081, 0.0028883195482194424, -0.00697939982637763, -0.04350266605615616, -0.01585611328482628, 0.02455664612352848, -0.04084642976522446, 0.00924262311309576, 0.0008283802308142185, 0.014717725105583668, -0.011817547492682934, 0.003628610400483012, 0.00404534162953496, -0.015395336784422398, 0.0065796091221272945, 0.0034100806806236506, -0.025464646518230438, -0.020612945780158043, 0.005641116760671139, -0.03306744992733002, -0.011546502821147442, 0.03444977477192879, 0.0065118479542434216, 0.032769300043582916, 0.025545958429574966, -0.015544410794973373, 0.007629907224327326, -0.013775845058262348, 0.010909547097980976, -0.010076085105538368, 0.022293422371149063, 0.008382055908441544, -0.017848290503025055, -0.008822503499686718, -0.014026560820639133, 0.014907456003129482, 0.007318205665796995, -0.018254857510328293, 0.009662741795182228, -0.024678615853190422, 0.02204948291182518, -0.027633003890514374, -0.0019108648411929607, -0.02116858772933483, -0.0015915404073894024, 0.014175635762512684, 0.0013145665870979428, -0.002573230303823948, -0.022117244079709053, -0.008185548707842827, -0.0029476105701178312, 0.023038795217871666, 0.012976262718439102, -0.006921803113073111, -0.005109191872179508, 0.006061236374080181, -0.02087043784558773, -0.008497250266373158, 0.040250133723020554, -0.004272341262549162, -0.03648260980844498, 0.008036473765969276, 0.03463950753211975, 0.03908463940024376, 0.009019010700285435, -0.02087043784558773, 0.0023885811679065228, -0.020680706948041916, 0.018566560000181198, -0.06196080893278122, 0.02900177799165249, 0.004746669437736273, 0.0025037750601768494, 0.005752922967076302, -8.861890091793612e-05, 0.014595754444599152, -0.016845425590872765, 0.0033253792207688093, 0.03103461302816868, -0.001373010571114719, 0.016384650021791458, -0.0052040573209524155, -0.005580131895840168, -0.017468828707933426, -0.01092309970408678, -0.00815166812390089, -0.0011189061915501952, 0.008043250069022179, -0.0025003869086503983, 0.014595754444599152, -0.002591864438727498, 0.02892046421766281, 0.0011807383270934224, -0.025247810408473015, -0.008409160189330578, -0.006081564351916313, 0.011167040094733238, 0.0008474380592815578, -0.023011691868305206, 0.017970260232686996, -0.02031479775905609, -0.003791237249970436, 0.011167040094733238, 0.014568650163710117, 0.008510801941156387, -0.021236348897218704, -0.001805835054256022, 0.0031034613493829966, 0.043909233063459396, -0.020653603598475456, -0.011844651773571968, 0.0070539372973144054, -0.023065900430083275, 0.020030200481414795, 0.03160380572080612, -0.01394524797797203, 0.0022547526750713587, 0.010475875809788704, -0.007623130921274424, 0.013294740580022335, 0.030438315123319626, 0.0016770887887105346, -0.023133661597967148, -0.0025495137088000774, -0.023919690400362015, 0.03463950753211975, -0.02832416631281376, -0.010489428415894508, -0.03675365447998047, 0.008165220730006695, -0.011817547492682934, -0.003359259804710746, 0.0018973125843331218, 0.012285099364817142, -0.014731276780366898, -0.012210561893880367, -0.027551690116524696, -0.015557963401079178, -0.02593897469341755, 0.011844651773571968, 0.010679159313440323, -0.013172770850360394, 0.010333577170968056, 0.019948886707425117, 0.022442497313022614, -0.004685684572905302, 0.014866799116134644, -0.03135986626148224, -8.104870357783511e-05, -0.005783415399491787, -0.010990860871970654, -0.03328428417444229, -0.006867594085633755, 0.021941065788269043, -0.0032660881988704205, 0.015612171962857246, 0.015205604955554008, -0.010340353474020958, 0.011817547492682934, 0.022306974977254868, -0.0157747995108366, -0.005244714207947254, 0.002657931763678789, 0.009662741795182228, 0.019203513860702515, -0.004160535521805286, -0.006789668928831816, 0.030058853328227997, 0.019854022189974785, -0.00327625242061913, 0.012169905006885529, 0.005166788585484028, -0.02508518286049366, -0.007867070846259594, -0.012122472748160362, -0.013972352258861065, -0.030113061890006065, -0.0008110164199024439, 0.02832416631281376, 0.002347924280911684, 0.0029645508620887995, 0.025071630254387856, 0.019948886707425117, -0.018295515328645706, 0.004970281384885311, 0.002754491288214922, -0.013972352258861065, -0.006376325618475676, 0.03667234256863594, 0.010455547831952572, 0.04304189234972, 0.005569967906922102, 0.005597072187811136, 0.022334080189466476, 0.013084680773317814, 0.01447378471493721, 0.033148761838674545, 0.0013069434789940715, 0.013050800189375877, 0.01483969483524561, -0.0005721583147533238, -0.03463950753211975, -0.005312475375831127, 0.012772979214787483, -0.04735150188207626, -0.01134999468922615, 0.004902520217001438, -0.03561526909470558, 0.04011461138725281, 0.01077402476221323, -0.01688608154654503, -0.0029543868731707335, -0.006887922529131174, 0.02523425780236721, 0.01550375483930111, -0.003936923574656248, -0.00298826745711267, -0.02428560145199299, -0.0012993203708902001, -0.01868852972984314, 0.004004684742540121, -0.022916825488209724, -0.008022922091186047, 0.010889219120144844, 0.0046484158374369144, 0.04374660924077034, -0.011993725784122944, -0.02207658812403679, 0.03805467113852501, 0.0013899508630856872, 0.02661658637225628, 0.004584042821079493, 0.003061110619455576, -0.008395608514547348, 0.02900177799165249, 0.0037370282225310802, 0.008348175324499607, -0.0324169397354126, -0.006007027346640825, 0.004292669706046581, -0.014189187437295914, -0.010685935616493225, 0.018553007394075394, -0.0029476105701178312, -0.0019582975655794144, -0.028676524758338928, 0.013450590893626213, -0.001824469305574894, -0.01290850155055523, 0.018227754160761833, -0.020436767488718033, -0.023648645728826523, 0.019596528261899948, -0.006901474669575691, -0.01956942491233349, 0.0021734393667429686, -0.02962518110871315], "d926438b-e71f-4f0e-95d1-7001ae36c6a8": [-0.020927123725414276, -0.0189089085906744, -0.02023632451891899, 0.02001960389316082, -0.010876686312258244, 0.03294159471988678, -0.006836871150881052, -0.010240068659186363, -0.01613217033445835, -0.03044930286705494, 0.03361884877085686, 0.022051364183425903, 0.010267158038914204, 0.009637312963604927, 0.000106138271803502, -0.006379724945873022, 0.03592151030898094, -0.00385357066988945, 0.03193926066160202, -0.01708032563328743, -0.007700368762016296, -0.007463330402970314, -0.0053435275331139565, 0.02656186930835247, -0.005658450536429882, 0.036246590316295624, 0.014845389872789383, -0.011574257165193558, 0.007734231650829315, -0.017662763595581055, -0.013707604259252548, 0.0156851839274168, 0.009488317184150219, -7.55560613470152e-05, -0.027076583355665207, -0.01105954498052597, 0.004557914100587368, -0.017175141721963882, 0.007138248533010483, -0.002560017164796591, 0.0006941845058463514, -0.001771017094142735, -0.0191798098385334, -0.0025718689430505037, -0.02744229882955551, -1.4550361811416224e-05, 0.004371669143438339, -0.02134701982140541, -0.02057495154440403, 0.014046231284737587, 0.019003724679350853, 0.003155999816954136, -0.025925252586603165, 0.0035623516887426376, -0.006762373261153698, -0.0004311139928176999, 0.012292145751416683, 0.03353757783770561, -0.011804522946476936, 0.015725819393992424, -0.004480029921978712, -0.003894205903634429, -0.001340961316600442, 0.01070060022175312, -0.020507225766777992, -0.005516227334737778, -0.007131475955247879, -0.00956281553953886, -0.014330677688121796, -0.008912651799619198, 0.026196153834462166, 0.02606070227921009, 0.005942896939814091, 0.014276497066020966, 0.036084048449993134, -0.017229320481419563, -0.02428629994392395, -0.011018909513950348, -0.022877613082528114, 0.002749647945165634, -0.0032017144840210676, -0.03399810940027237, -0.0025820278096944094, 0.005468819756060839, 0.029474059119820595, -0.014371313154697418, 0.020371776074171066, 0.019829973578453064, -0.025884617120027542, -0.031207827851176262, -0.002013135002925992, 0.021306386217474937, 0.016728153452277184, 0.016064446419477463, -0.004060132894665003, 0.011967063881456852, -0.019057905301451683, 0.0038467980921268463, -0.00017989537445828319, -0.030638935044407845, -0.02684631571173668, -0.02211908996105194, -0.0074497852474451065, -0.007036660797894001, -0.04003920778632164, 0.024814557284116745, -0.009075192734599113, -0.0024482703302055597, 0.004110926762223244, -0.03131618723273277, 0.006447450257837772, 0.028959346935153008, -0.033239588141441345, -0.04635120928287506, -0.006078347563743591, -0.014493218623101711, 0.021861733868718147, -0.005980145651847124, -0.023527776822447777, -0.011858703568577766, 0.0070976135320961475, 0.0048186564818024635, 0.0003951349062845111, -0.00621041189879179, 0.00684702955186367, 0.005255484953522682, -0.007883227430284023, -0.02141474559903145, 0.013199664652347565, 0.006237501744180918, 0.03153290972113609, 0.02207845449447632, 0.009305458515882492, -0.0202498696744442, -0.011594574898481369, 0.02677859179675579, -0.027902832254767418, -0.0003329122846480459, -0.02163146622478962, -0.018421286717057228, 0.02134701982140541, 0.01378210261464119, -0.0033151544630527496, -0.03632786124944687, -0.010118162259459496, 0.020588496699929237, 0.032968685030937195, 0.01741895265877247, -0.027713200077414513, 0.01230569090694189, 0.016403071582317352, -0.01563100330531597, 0.023134969174861908, -0.0022298560943454504, 0.01973515748977661, -0.008282806724309921, 0.009224188514053822, -0.003948386292904615, 0.0011123883305117488, -0.0038332531694322824, 0.02923024818301201, 0.01630825735628605, 0.015305922366678715, -0.0034099698532372713, -0.007531055714935064, 0.019667433574795723, 0.024692650884389877, 0.003890819614753127, -0.029853321611881256, -0.014235862530767918, 0.016958419233560562, 0.024692650884389877, -0.012569819577038288, 0.004310716409236193, -0.007930634543299675, 0.008811064064502716, 0.044346537441015244, 0.020615587010979652, -0.02057495154440403, -0.0025650963652879, -0.03570478782057762, -0.00933932140469551, 0.02557308040559292, 0.02118447981774807, 0.004733999725431204, 0.0024668946862220764, -0.0030408669263124466, -0.000401695811888203, -0.00017883717373479158, 0.010829278267920017, 0.018231656402349472, 0.01885472796857357, -0.01663333922624588, -0.018990179523825645, -0.635859489440918, -0.028200823813676834, -0.019545527175068855, -0.005468819756060839, -0.016782334074378014, -0.009136145934462547, 0.015116291120648384, -0.0045172786340117455, 0.003731665201485157, 0.004087223205715418, -0.020940668880939484, 0.004249763675034046, -0.00275980681180954, -0.02034468576312065, -0.024814557284116745, -0.00509971659630537, 0.006237501744180918, -0.026629595085978508, -0.0036808711010962725, -0.023920582607388496, 0.011499758809804916, 0.0058921026065945625, 0.0005125959869474173, 0.0065185618586838245, -0.012800085358321667, -0.008614660240709782, 0.007903545163571835, 0.009833716787397861, 0.007991587743163109, 0.028742626309394836, -0.025911707431077957, 0.01267140731215477, 0.03500044345855713, 0.021915912628173828, 0.04784116521477699, -0.01797430031001568, -0.017066780477762222, 0.016064446419477463, 0.002791976323351264, 0.008675613440573215, -0.0151433814316988, -0.008546935394406319, 0.029853321611881256, 0.003081501927226782, 0.004209128674119711, -0.0034438325092196465, 0.030476393178105354, -0.020669767633080482, 0.013280934654176235, 0.020696857944130898, 0.007165338844060898, 0.006758986972272396, -0.017120961099863052, -0.00032931435271166265, -0.010036892257630825, -0.007063750643283129, 0.0257220771163702, -0.004056746605783701, -0.0020588496699929237, -0.00255832402035594, 0.010897004045546055, 0.027130762115120888, -0.005932738073170185, 0.003961930982768536, -0.010246841236948967, 0.008946514688432217, -0.029853321611881256, 0.01991124451160431, 0.03272487595677376, -0.008099948056042194, 0.015928994864225388, 0.009474772028625011, -0.008323442190885544, -0.018705733120441437, 0.03145163878798485, 0.008831381797790527, 0.035081714391708374, -0.022999517619609833, 0.0027614999562501907, 0.03445864096283913, 0.0037519827019423246, -0.026087792590260506, -0.03838670998811722, -0.02145538106560707, 0.01679587922990322, -0.022891158238053322, 0.0029697553254663944, 0.026196153834462166, -0.0050489227287471294, 0.003379493486136198, -0.0017244559712707996, 0.020818762481212616, 0.008973604999482632, 0.008370849303901196, 0.046486660838127136, 0.017784668132662773, 0.0005989457713440061, -0.008479209616780281, 0.02173982746899128, -0.0015288990689441562, -0.00041629906627349555, -0.010294248349964619, -0.001569534302689135, -0.0025363131426274776, 0.007124703377485275, -0.011154360137879848, -0.03963285684585571, -0.009407047182321548, 0.0593273788690567, -0.01647079735994339, -0.0025464720092713833, -0.004486802499741316, -0.023148514330387115, 0.005726175848394632, 0.04155625402927399, -0.02029050514101982, 0.028471725061535835, -0.013964961282908916, 0.038169991225004196, -0.012779767625033855, 0.016714608296751976, -0.020155055448412895, 0.013118394650518894, -0.020547861233353615, 0.027645476162433624, 0.035406798124313354, 0.01697196438908577, -0.0193558968603611, -0.009847261011600494, -0.008458892814815044, -0.010389063507318497, -0.0011674151755869389, 0.004764476325362921, 0.01670106314122677, 0.0073752873577177525, -0.005529772490262985, 0.015901904553174973, 0.003860343247652054, 0.02218681387603283, -0.02806537225842476, -0.011520076543092728, -0.002290808828547597, 0.02484164759516716, 0.02578980103135109, -0.0071450211107730865, -0.023636136204004288, -0.012705270200967789, -0.004547755233943462, -0.035731878131628036, 0.005390935577452183, -0.007978042587637901, -0.0038264805916696787, 0.00013830780517309904, -0.0011674151755869389, 0.006328931078314781, -0.004527437500655651, -0.03527134656906128, -0.006562583614140749, 0.0021926071494817734, -0.01546846330165863, 0.00043979129986837506, 0.010240068659186363, -0.00385357066988945, 0.00994884967803955, 0.015522642992436886, -0.01697196438908577, -0.012583364732563496, 0.03156000003218651, -0.0019437166629359126, -0.037519827485084534, 0.02274216152727604, 0.0085130725055933, 0.005868399050086737, 0.043723467737436295, -0.02041241154074669, -0.00992853194475174, -0.02412375807762146, -0.003079808782786131, -0.009982711635529995, 0.012739132158458233, -0.0017557789105921984, 0.014845389872789383, 0.00409060949459672, -0.003616532078012824, 0.016281167045235634, 0.0023805450182408094, -0.015996720641851425, -0.00018963089678436518, -0.0006827558972872794, 0.024530110880732536, 0.010416153818368912, 0.00807285774499178, -0.00363346328958869, 0.009298685938119888, 0.019166264683008194, -0.006664171349257231, 0.008418257348239422, 0.01763567328453064, 0.01472348440438509, 0.024421749636530876, 0.020209236070513725, 0.016321802511811256, 0.03326667845249176, -0.0033270062413066626, 0.006684489082545042, -0.01991124451160431, 0.004432622343301773, -0.006772532127797604, 0.04163752496242523, -0.007903545163571835, -0.00098032399546355, -0.02156374230980873, -0.0005832843016833067, 0.0005646598292514682, 0.02394767291843891, 0.03147872909903526, 0.0013282628497108817, 0.007619098294526339, -0.0061697764322161674, 0.01248177606612444, 0.008411484770476818, -0.01768985390663147, 0.00582099100574851, -0.023825766518712044, -0.01796075515449047, -0.0044393944554030895, 0.010138479992747307, 0.04459035024046898, 0.017053235322237015, 0.0011953519424423575, 0.016118625178933144, -0.00137990340590477, -0.010849596001207829, 0.0060918922536075115, -0.0043445792980492115, 0.02507191337645054, 0.00856725312769413, -0.013633106835186481, 0.0387117937207222, -0.04085191339254379, 0.006064802408218384, 0.0009473079117015004, 0.050441816449165344, -0.019220445305109024, -0.012082196772098541, -0.0001494189928052947, 0.020751038566231728, -0.0023771587293595076, 0.01901726983487606, 0.016064446419477463, -0.0059225792065262794, -0.0039924075827002525, -7.15877758921124e-05, -0.014019140973687172, 0.01297617144882679, -0.023771587759256363, -0.0010599012020975351, -0.001202970976009965, 0.014019140973687172, 0.028932256624102592, 0.015725819393992424, -0.0046967510133981705, 0.02328396402299404, 0.012224419973790646, 0.04862678050994873, -0.004446167033165693, 0.004595162812620401, 0.02029050514101982, -0.008607887662947178, -0.030747294425964355, -0.028796805068850517, -0.006803008262068033, 0.01813684031367302, 0.002995152259245515, 0.009901441633701324, 0.015184016898274422, 0.022254539653658867, 0.004578231368213892, 0.0016321801813319325, 0.007463330402970314, -0.030042951926589012, -0.02444883994758129, 0.019274625927209854, 0.0069757080636918545, 0.001714297104626894, -0.0231214240193367, -0.009149691089987755, -0.0067488281056284904, -0.018367106094956398, 0.03738437592983246, -0.01740540750324726, 0.016958419233560562, 0.021374110132455826, -0.01050419732928276, -0.006193480454385281, 0.010152025148272514, 0.024692650884389877, -0.020832307636737823, 0.03334794566035271, -0.00262604933232069, 0.006352635100483894, 0.008248943835496902, -0.01969452202320099, -0.0007822274346835911, 0.015536188147962093, -0.0024296457413583994, 0.012258282862603664, -0.019816428422927856, 0.016836514696478844, -0.019477801397442818, -0.024313390254974365, -0.025871071964502335, -0.0017608583439141512, 0.00900746788829565, 0.013768557459115982, 0.009698266163468361, -0.00740237720310688, 0.01466930378228426, 0.026751501485705376, -0.013043896295130253, -0.020832307636737823, -0.013599243946373463, -0.015766454860568047, -0.01923399046063423, 0.09942077100276947, 0.035081714391708374, -0.01978933811187744, 0.005719403270632029, 0.0011496372753754258, 0.027469389140605927, -0.021143844351172447, -0.02385285682976246, 0.0337001197040081, -0.00017471016326453537, -0.005164055619388819, 0.0006222263909876347, 0.014601578935980797, -0.00726692657917738, 0.011872248724102974, -0.012082196772098541, 0.004767862614244223, -0.0053977081552147865, -0.007463330402970314, 0.01086991373449564, 0.005136965308338404, 0.015590368770062923, 0.00643051927909255, 0.01217024028301239, -0.039118144661188126, -0.012962626293301582, 0.03665294125676155, -0.011242402717471123, 0.024706196039915085, -0.016822969540953636, -0.011384625919163227, 0.025871071964502335, 0.03199344128370285, 0.011066317558288574, -0.01690424047410488, -0.004581617657095194, 0.004029656294733286, 0.025220908224582672, -0.011547166854143143, -0.00558733893558383, 0.005458660889416933, 0.008309897035360336, -0.0029731416143476963, -0.015292377211153507, -0.0007589468732476234, -0.006389883812516928, -0.01968097686767578, -0.016443707048892975, -0.03605695813894272, -0.01078864373266697, 0.041447896510362625, -0.01697196438908577, -0.01980288326740265, -0.0030357874929904938, -0.0003718543448485434, 0.011330446228384972, -0.010510969907045364, -0.01564454846084118, 0.002883405424654484, 0.030638935044407845, -0.012400506064295769, 0.006234115455299616, 0.020886488258838654, -0.0031847830396145582, -0.019396532326936722, -0.017012599855661392, -0.025261543691158295, -0.013822738081216812, -0.017987845465540886, 0.017148051410913467, -0.02295888401567936, -0.013795647770166397, -0.009488317184150219, 0.0025244613643735647, -0.004046587739139795, 0.004520664922893047, 0.027022402733564377, -0.012258282862603664, 0.0016677359817549586, -0.013335115276277065, -0.0059970770962536335, -0.027482934296131134, 0.011790977790951729, -0.024028943851590157, -0.004280240274965763, -0.005069239996373653, 0.009081965312361717, 0.014750574715435505, -0.021211570128798485, 0.020114419981837273, -0.006840257439762354, 0.019545527175068855, 0.01690424047410488, -0.026467055082321167, -0.011587802320718765, -0.01031456608325243, -0.01591544970870018, -0.008601115085184574, -0.006745441816747189, -0.005167441908270121, 0.01156071200966835, -0.049439482390880585, -0.0009015933028422296, -0.011553939431905746, 0.0031272165942937136, -0.025600170716643333, 0.00964408554136753, 0.011134042404592037, -0.031207827851176262, -0.005472205579280853, 0.01563100330531597, -0.023189149796962738, 0.0038738881703466177, 0.0005054001812823117, 0.009325776249170303, 0.011818068102002144, 0.014290042221546173, 0.02179400809109211, 0.009684721007943153, 0.00789677258580923, -0.0029731416143476963, -0.028580084443092346, 0.0018370492616668344, 0.006254433188587427, -0.021943002939224243, -0.003105205949395895, 0.00732110720127821, -0.020209236070513725, 0.033239588141441345, 0.00010878379544010386, -0.0012156694428995252, -0.0002907955786213279, 0.01641661673784256, -0.00789677258580923, -0.030530573800206184, 0.002915574936196208, -0.010822505690157413, 0.007558145560324192, -0.008811064064502716, 0.015305922366678715, -0.015089200809597969, -0.01858382672071457, 0.00019174731278326362, -0.017148051410913467, 0.0022484806831926107, -0.01980288326740265, -0.017825303599238396, 0.003890819614753127, 0.004798338748514652, -0.023270418867468834, -0.019721612334251404, -0.04518633335828781, -0.037628188729286194, -0.0067962356843054295, -0.007009570486843586, -0.037059295922517776, -0.0024296457413583994, -0.016443707048892975, 0.030097132548689842, 0.00839793961495161, 0.03239979222416878, -0.02939278818666935, 0.014398402534425259, -0.00017100642435252666, -0.00809317547827959, -0.0014628669014200568, 7.095285400282592e-05, -0.029799140989780426, -0.04304621368646622, -0.018394196406006813, 0.030909836292266846, 0.018719278275966644, 0.021252205595374107, -0.012732359580695629, 0.007354969624429941, 0.028255002573132515, 0.001064980635419488, -0.0023466823622584343, -0.021943002939224243, -0.044671621173620224, -0.027293303981423378, 0.0044190771877765656, 0.0033676414750516415, -0.0046662744134664536, -0.02329750917851925, -0.004588390234857798, 0.05168796330690384, 0.0059225792065262794, 0.010944411158561707, -0.016105080023407936, 0.01408686675131321, -0.008499527350068092, -0.006921527441591024, -0.005709244403988123, 0.016281167045235634, -0.007463330402970314, 0.020547861233353615, -0.002871553646400571, 0.004767862614244223, -0.007429467514157295, -0.005194531753659248, -0.003176317550241947, 0.002443190896883607, -0.009386729449033737, -0.016606248915195465, 0.0008122805738821626, -0.010917321778833866, -0.020385321229696274, 0.02090003341436386, -0.017757577821612358, -0.020100874826312065, -0.004422463476657867, 0.010930866934359074, -0.02444883994758129, -0.025085458531975746, 0.003745210124179721, 0.01480475440621376, 0.001887843245640397, -0.004371669143438339, -0.019870609045028687, 0.023541320115327835, -0.005390935577452183, 0.03819708153605461, 0.007944179698824883, 0.03131618723273277, 0.020195690914988518, -0.007158566266298294, 0.002280650194734335, -0.005743107292801142, 0.0009320697281509638, -0.014439038001000881, 0.02744229882955551, 0.009271596558392048, -0.010802187956869602, 0.014967295341193676, -0.030124222859740257, 0.005211463198065758, -0.034973353147506714, -0.03072020411491394, 0.01919335499405861, -0.0031289097387343645, -0.017391862347722054, -0.010470334440469742, -0.012319235131144524, -0.03437737375497818, 0.005780356004834175, 7.952433952596039e-05, 0.03451282158493996, -0.012414051219820976, -0.01625407673418522, -0.030530573800206184, 0.004168493207544088, 0.01164198201149702, 0.03356466814875603, 0.02801119163632393, -0.02516672946512699, -0.03632786124944687, -0.004121085628867149, -0.025193817913532257, -0.018990179523825645, -0.003978862427175045, 0.017757577821612358, -0.01731059141457081, 0.007632643450051546, 0.013680514879524708, 0.0009786308510228992, -0.013937870971858501, -0.013897235505282879, -0.024773921817541122, 0.024218574166297913, 0.026751501485705376, 0.010632875375449657, 0.006261205766350031, 0.022254539653658867, 0.013436703011393547, 0.004838974215090275, -0.00887201726436615, -0.0005489983595907688, -0.021590832620859146, -0.0003894205729011446, -6.0582413425436243e-05, 0.017703399062156677, 0.012427596375346184, -0.0037993905134499073, -0.021997183561325073, -0.0057701971381902695, 0.018340015783905983, 0.027374574914574623, 0.0007669892511330545, -0.038115810602903366, -0.0322643406689167, 0.013294479809701443, -0.03348339721560478, 0.01613217033445835, -0.003663939656689763, 0.03453991189599037, -0.007300789467990398, 0.027875741943717003, -0.032806143164634705, 0.02557308040559292, -0.022809887304902077, 0.01924753561615944, -0.03342921659350395, 0.012874582782387733, 0.007273699156939983, -0.029880410060286522, 0.009332548826932907, -0.0193558968603611, -0.02811955288052559, 0.01164198201149702, 0.00950863491743803, 0.0035555793438106775, 0.0001265616883756593, 0.008533390238881111, 0.006762373261153698, 0.0054180254228413105, 0.019531982019543648, -0.006840257439762354, -0.036517493426799774, 0.019220445305109024, 0.02683277055621147, 0.009860806167125702, 0.006146072875708342, -0.017215775325894356, 0.02722557820379734, 0.019504891708493233, 0.009989484213292599, 0.001848901272751391, -0.03760109841823578, 0.02340587042272091, -0.010673509910702705, 0.004331034142524004, 0.012224419973790646, -0.006074961274862289, -0.02623678930103779, -0.01634889282286167, -0.015238196589052677, 0.006552424747496843, 0.00693168630823493, -0.014262951910495758, 0.018326470628380775, 0.004446167033165693, -0.012881355360150337, -0.013145484030246735, -0.005238553509116173, -0.005993690807372332, 0.009400274604558945, -0.009021012112498283, -0.03229143097996712, -0.011770660057663918, -0.004933789372444153, 0.02722557820379734, 0.009102283045649529, -0.007890000008046627, 0.0030019248370081186, -0.02412375807762146, -0.023080788552761078, 0.0008122805738821626, -0.0011479441309347749, 0.020561406388878822, 0.03578605875372887, 0.018976634368300438, 0.0024499634746462107, 0.024164393544197083, -0.02163146622478962, -0.009366411715745926, 0.004805111326277256, -0.016430161893367767, -0.008553707972168922, 0.002531233709305525, -0.0025769483763724566, 0.009176780469715595, -0.020886488258838654, 0.006179935298860073, 0.009115828201174736, -0.014330677688121796, 0.004652729257941246, 0.001433237106539309, 0.0013722842559218407, 0.018069114536046982, 0.000944768195040524, -0.01549555268138647, 0.016606248915195465, 0.01736477203667164, -0.0024533497635275126, -0.005428184289485216, -0.010978274047374725, -0.0015051951631903648, -0.007619098294526339, -0.03345630690455437, -0.029961680993437767, 0.007354969624429941, -0.013951416127383709, 0.004730613436549902, -0.02129284106194973, -0.01411395613104105, -0.03475663438439369, -0.029880410060286522, 0.03359175845980644, 0.0007136555504985154, 0.007930634543299675, 0.027929922565817833, 0.00597337307408452, -0.013883690349757671, -0.006667557638138533, 0.009041329845786095, 0.007490420248359442, -0.029799140989780426, 0.0008956673555076122, -0.03456700220704079, 0.035460978746414185, -0.015048566274344921, 0.017012599855661392, -0.020561406388878822, 0.008865244686603546, -0.020615587010979652, 0.009298685938119888, -0.01042969897389412, 0.02091357856988907, 0.02933860756456852, -0.001558528863824904, 0.006589673459529877, -0.0025092230644077063, -0.006105437409132719, 0.022769251838326454, -0.015454918146133423, -0.007944179698824883, -0.005136965308338404, 0.012928763404488564, -0.007768094073981047, 0.004700137302279472, -0.016064446419477463, -0.0006222263909876347, 0.006491472013294697, -0.019437165930867195, 0.0007521743536926806, 0.2202969193458557, -0.023798678070306778, 0.009325776249170303, 0.011134042404592037, -0.012962626293301582, 0.021089663729071617, 0.01472348440438509, -0.009745673276484013, -0.013064214028418064, -0.0018658326007425785, -0.016538523137569427, 0.022200359031558037, -0.02912188693881035, 0.0017295352881774306, 0.021550197154283524, 0.00440891832113266, -0.0326165147125721, -0.007368514779955149, -0.012874582782387733, -0.05634746700525284, 0.0036740985233336687, -0.007409149780869484, -0.009224188514053822, -0.006139300297945738, 0.000271112920017913, 0.009969167411327362, -0.011276265606284142, -0.003582669422030449, 0.02860717475414276, -0.009576359763741493, -0.043994367122650146, -0.0059970770962536335, -0.0074497852474451065, -0.010057209990918636, -0.013016805984079838, 0.01424940675497055, 0.004524051211774349, -0.008370849303901196, 0.00839793961495161, -0.00876365602016449, 0.00967794843018055, -0.00026518694357946515, -0.0022975814063102007, 0.017012599855661392, -0.004859291482716799, 0.018732823431491852, -0.0005295273149386048, -0.02085939794778824, -0.021780462935566902, 0.008364076726138592, -0.029880410060286522, 0.010036892257630825, 0.04407563805580139, 0.02401539869606495, 0.009251278825104237, -0.01880054920911789, -0.006095278542488813, -0.0007373593980446458, -0.004920244216918945, 0.0101249348372221, -0.02928442880511284, 0.02030405029654503, -0.0017642445163801312, 0.03575896844267845, -0.021699192002415657, 0.015021475963294506, -0.011445579119026661, -0.0007005337974987924, 0.005059081129729748, -0.025600170716643333, -0.003538647899404168, -0.012522411532700062, -0.005238553509116173, 0.002680229488760233, -0.011134042404592037, -0.004053360316902399, 0.025315724313259125, -0.022864067927002907, 0.004266695119440556, -0.014696394093334675, 0.011330446228384972, -0.001295246765948832, 0.009420592337846756, -0.014696394093334675, 0.0004055053577758372, -0.02306724339723587, -0.000288890820229426, -0.00856725312769413, -0.022444169968366623, 0.016985509544610977, -0.023663226515054703, -0.025099003687500954, 0.0020977917592972517, -0.013490883633494377, 0.001412072917446494, -0.02272861637175083, 0.0205207709223032, 0.022931793704628944, 0.004060132894665003, -0.004673046991229057, 0.0019318647682666779, -0.019315261393785477, 0.013402841053903103, 0.008519845083355904, -0.031912170350551605, -0.012529184110462666, 0.013436703011393547, 0.02095421403646469, 0.005089557729661465, 0.003178010694682598, 0.026412874460220337, -0.016958419233560562, -0.00481188390403986, -0.02213263511657715, -0.008336986415088177, 0.025911707431077957, -0.03131618723273277, -0.01596963033080101, -0.003985635004937649, 0.005936124362051487, 0.01607799157500267, -0.0015102745965123177, -0.005231780931353569, 0.009407047182321548, -0.004043201450258493, -0.0015771533362567425, -0.012982944026589394, 0.022538986057043076, -0.004026270005851984, 0.0018742982065305114, 0.018556738272309303, -0.048220425844192505, -0.009129373356699944, -0.00026434040046297014, -0.02301306277513504, 0.006014008540660143, -0.009914986789226532, -0.017039690166711807, 0.015901904553174973, -0.015441372990608215, 0.001220748876221478, -0.002793669467791915, -0.0035996006336063147, 0.00856725312769413, 0.010172342881560326, 0.00251599564217031, 0.010978274047374725, -0.02340587042272091, -0.013341887854039669, -0.005241939797997475, -0.019531982019543648, 0.0023077402729541063, 0.003025628626346588, -0.00046264857519418, 0.00415833480656147, -0.009190325625240803, -0.008499527350068092, -0.016389526426792145, -0.005756651982665062, 0.03527134656906128, -0.030964015051722527, 0.006755600683391094, 0.015847723931074142, -0.020615587010979652, -0.021861733868718147, -0.026087792590260506, -0.17218485474586487, 0.01095118373632431, 0.015536188147962093, -0.009352866560220718, 0.0337001197040081, 0.027875741943717003, 0.03088274598121643, 0.0029460513032972813, 0.0007606400176882744, -0.01657915860414505, 0.02428629994392395, 0.013992050662636757, -0.03229143097996712, -0.03714056685566902, -0.0038671158254146576, 0.0030764227267354727, -0.015251741744577885, 0.016660427674651146, 0.033022865653038025, 0.01885472796857357, 0.007287244312465191, -0.008167673833668232, 0.004425849765539169, 0.012982944026589394, 0.004656115546822548, -0.010849596001207829, -0.008350531570613384, 0.01625407673418522, 0.002871553646400571, -0.027848651632666588, -0.031912170350551605, 0.009596677497029305, -0.004913472104817629, -0.026263879612088203, 0.022159723564982414, 0.003462456865236163, -0.002920654369518161, -0.006857188418507576, -0.007246609311550856, 0.01056514959782362, 0.007937407121062279, -0.001852287445217371, 0.003267746651545167, 0.0022874227724969387, -0.005299506243318319, 0.03267069533467293, -0.01261722669005394, 0.00020254103583283722, 0.009488317184150219, -0.012644317001104355, 0.013910780660808086, -0.005052309017628431, 0.0035521930549293756, 0.0005989457713440061, 0.02328396402299404, -0.007165338844060898, 0.018556738272309303, 0.00967794843018055, -0.014520308002829552, -0.013829509727656841, 0.006115596275776625, -0.004937175661325455, 0.027740290388464928, -0.017703399062156677, -0.012359870597720146, 0.0008292119018733501, -0.02240353636443615, 0.018475467339158058, -0.01048387959599495, 0.012427596375346184, 0.011912883259356022, 0.013335115276277065, 0.02201072871685028, -0.016958419233560562, -0.007917089387774467, -0.010741235688328743, -0.01068028248846531, 0.00738883251324296, -0.013856600038707256, -0.010714145377278328, -0.0331583172082901, 0.02928442880511284, -0.010775098577141762, -0.010524515062570572, -0.00496426597237587, 0.01056514959782362, -0.014560943469405174, -0.012989716604351997, -0.010253612883388996, -0.007158566266298294, 0.006284909788519144, -0.017554402351379395, -0.01480475440621376, -0.0056923129595816135, 0.013213209807872772, 0.01575290970504284, 0.004930403083562851, -0.020764583721756935, 0.010626102797687054, -0.0027225578669458628, -0.0017998003168031573, -0.012779767625033855, -0.016430161893367767, 0.015563278459012508, 0.02684631571173668, 0.005804060027003288, -0.009637312963604927, 0.011106952093541622, 0.03139745816588402, 0.008546935394406319, -0.020534316077828407, 0.01569872908294201, 0.012048333883285522, 0.013348660431802273, 0.037628188729286194, 0.029365697875618935, 0.006457609124481678, -0.021658556535840034, 0.011377853341400623, -0.02727975882589817, 0.07308916747570038, -0.006616763770580292, -0.002673456910997629, -0.007178883999586105, -0.020872943103313446, -0.030015861615538597, -0.12017180770635605, -0.003034094348549843, 0.03724892437458038, 0.008729794062674046, 0.0019606479909271, 0.009359639137983322, -0.010727690532803535, 0.01674169860780239, -0.0019098540069535375, 0.006694647949188948, -0.01533301267772913, -0.03586732968688011, -0.010246841236948967, -0.010944411158561707, 0.011702935211360455, -0.02211908996105194, -0.007409149780869484, -0.024137303233146667, 0.00024783232947811484, 0.02912188693881035, -0.0070705232210457325, -0.015292377211153507, 0.022200359031558037, -0.02406957931816578, 0.028363363817334175, -0.002719171578064561, -0.027361029759049416, 0.028580084443092346, 0.019938334822654724, 0.026995312422513962, -0.01680942438542843, -0.01424940675497055, 0.02539699524641037, -0.0008567252662032843, 0.016985509544610977, -0.011763888411223888, -0.04031011089682579, -0.025085458531975746, 0.015766454860568047, -0.03516298532485962, 0.010768325999379158, -0.006664171349257231, 0.023920582607388496, -0.010206205770373344, -0.00440891832113266, -0.0034370599314570427, -0.007178883999586105, -0.0024652015417814255, 0.009908214211463928, -0.01840774156153202, -0.017716944217681885, 0.0007750316290184855, -0.03510880470275879, -0.01740540750324726, 0.02639932930469513, 0.0053435275331139565, 0.02866135537624359, 0.00881783664226532, -0.023879947140812874, 0.00801190547645092, -0.013077759183943272, 0.007686823606491089, -0.011851930990815163, 0.027022402733564377, 0.0030222423374652863, -0.008364076726138592, -0.02118447981774807, -0.023703861981630325, 0.013680514879524708, 0.014845389872789383, -0.009440909139811993, 0.013409613631665707, -0.013511201366782188, 0.024475930258631706, -0.019491346552968025, 0.00925805140286684, -0.033916838467121124, 0.00224678753875196, 0.01629471220076084, 0.0011860396480187774, -0.004273467697203159, -0.024381114169955254, -0.00740237720310688, -0.007273699156939983, 0.03375430032610893, 0.008438575081527233, -0.0005718556931242347, -0.013084531761705875, 0.009772763587534428, -0.020927123725414276, 0.004161721095442772, 0.02855299413204193, -0.006020780652761459, -0.023690316826105118, 0.004574845544993877, 0.03754691779613495, 0.019084995612502098, 0.011994154192507267, -0.013680514879524708, 0.004537596367299557, -0.0172970462590456, 0.027157852426171303, -0.05705180764198303, 0.01690424047410488, 0.0059699867852032185, 0.013037123717367649, 0.003415049286559224, -0.012082196772098541, 0.019762247800827026, -0.02484164759516716, 0.00565506424754858, 0.022051364183425903, -0.01042969897389412, 0.028471725061535835, -0.014059776440262794, -0.005912420339882374, -0.02062913216650486, -0.02091357856988907, 0.008242171257734299, -0.015346556901931763, -0.012630771845579147, 0.003345630830153823, 0.005004900973290205, -0.004662888124585152, 0.021807553246617317, -0.009854033589363098, -0.02912188693881035, 0.003034094348549843, 0.013849827460944653, 0.02383931167423725, -0.001512814313173294, -0.02245771512389183, 0.012908445671200752, -0.02333814464509487, -0.011262720450758934, 0.004351351875811815, 0.004016111604869366, 0.008750110864639282, -0.014046231284737587, -0.0017777896719053388, -0.005509454756975174, 0.03984957933425903, -0.020493682473897934, -0.007219519000500441, 0.003670712234452367, -0.01790657453238964, 0.010985046625137329, 0.025545990094542503, -0.015928994864225388, 0.0018759913509711623, 0.01808265969157219, -0.023636136204004288, 0.01835356093943119, 0.03177671879529953, 0.008174446411430836, -0.03283323347568512, 0.002441497752442956, -0.025816891342401505, 0.031857989728450775, -0.020507225766777992, 0.020723948255181313, -0.030015861615538597, 0.008492754772305489, -0.004635798279196024, 3.780448605539277e-05, 0.005590725224465132, 0.0209677591919899, -0.005787128582596779, -0.008729794062674046, -0.011208540759980679, -0.01466930378228426, -0.013511201366782188, 0.01424940675497055, -0.0019098540069535375, 0.0018675256287679076, -0.0086485231295228, 0.0085130725055933, 0.026981767266988754, 0.004632411990314722, 0.004053360316902399, -0.021496016532182693, 0.003264360362663865, -0.00479495245963335, -0.006819939706474543, -0.026385784149169922, -0.0030848882161080837, 0.025220908224582672, 0.0021468927152454853, 0.025383450090885162, 0.01857028342783451, -0.00011195841943845153, 0.0035894419997930527, 0.017757577821612358, -0.012454685755074024, -0.0007373593980446458, -0.00407367805019021, 0.014615124091506004, 0.019030814990401268, -0.007768094073981047, 0.002598959021270275, 0.026196153834462166, 0.04881640896201134, -0.00933932140469551, 0.016335347667336464, 0.015400737524032593, -0.023311054334044456, -0.0015915449475869536, 0.008932969532907009, -0.011858703568577766, -0.02578980103135109, -0.006532107014209032, 0.03188508003950119, 0.0018607531674206257, -0.008276034146547318, 0.032074712216854095, 0.022593166679143906, -0.014601578935980797, 0.00732110720127821, 0.014411947689950466, -0.01369405910372734, 0.0029274269472807646, 0.03708638623356819, 0.006593059748411179, 0.03632786124944687, 0.016999054700136185, 0.012271828018128872, 0.006525334436446428, 0.0047170682810246944, 0.010301020927727222, 0.03554224595427513, -0.006772532127797604, 0.01569872908294201, 0.005634746514260769, 0.006203639321029186, -0.042179327458143234, -0.006786076817661524, 0.009603450074791908, -0.04765153303742409, -0.0209677591919899, -0.002592186676338315, -0.039118144661188126, 0.021875279024243355, 0.009711810387670994, -0.026358693838119507, 0.001160642714239657, -0.016213441267609596, 0.03453991189599037, 0.005187759641557932, 0.0032084870617836714, 0.0035894419997930527, -0.01978933811187744, 0.008187990635633469, -0.01200092677026987, 0.0033354719635099173, -0.025383450090885162, -0.02136056497693062, 0.016768788918852806, -0.004351351875811815, 0.03505462408065796, -0.017540857195854187, -0.016267621889710426, 0.038738884031772614, 0.004056746605783701, 0.009671175852417946, -0.000579474784899503, -0.0014374698512256145, -0.0021943002939224243, 0.016050901263952255, 0.005106489174067974, 0.004385214298963547, -0.035027533769607544, -0.0012055106926709414, 0.008960059843957424, -0.014520308002829552, -0.011228857561945915, 0.011350763961672783, 0.011601347476243973, 0.010138479992747307, -0.017676308751106262, 0.01464221440255642, -0.01042969897389412, -0.014452583156526089, 0.021265750750899315, -0.023879947140812874, -0.025979433208703995, 0.027428753674030304, -0.004615480545908213, -0.028905166313052177, 0.001964034279808402, -0.012028017081320286], "a0cb8359-3051-4858-b90b-781dbb3e58f9": [-0.012270689941942692, -0.015608744695782661, -0.011342710815370083, 0.013298810459673405, -0.010708480142056942, 0.030790219083428383, -0.011449528858065605, -0.013265429995954037, -0.017638282850384712, -0.027932843193411827, 0.009960755705833435, 0.004035708494484425, 0.008351813070476055, -0.02494194731116295, -0.0003861712175421417, 0.010414731688797474, 0.037786781787872314, 0.006091950461268425, 0.04032370448112488, -0.013358895666897297, -0.001979466527700424, 0.004109145607799292, 0.006969858892261982, 0.028119774535298347, -0.0007894500158727169, 0.03500952199101448, 0.006799617782235146, -0.013859604485332966, 0.0018242470687255263, -0.011449528858065605, -0.007130085490643978, 0.007437186315655708, 0.005557861644774675, 0.0009947404032573104, -0.03770666942000389, -0.012203929014503956, 0.005210703704506159, -0.013519122265279293, 0.020549066364765167, 0.002303257817402482, 0.012944976799190044, -0.005204027518630028, -0.01511471252888441, 0.011883475817739964, -0.028119774535298347, 0.017771804705262184, 0.0038053826428949833, -0.023206157609820366, -0.03573054075241089, 0.00962695013731718, 0.01873316429555416, 0.010968848131597042, -0.024114109575748444, 0.005594579968601465, -0.005060491152107716, 0.00039034380461089313, 0.02308598719537258, 0.018279189243912697, -0.0014679096639156342, 0.03618451580405235, 0.012531057931482792, -0.0058582862839102745, -0.0057748351246118546, -0.00020476880308706313, -0.025155581533908844, -0.019187139347195625, -0.016263004392385483, -0.0011290970724076033, -0.008238319307565689, -0.020615827292203903, 0.02985556423664093, 0.03359418362379074, -0.0022415039129555225, 0.0035950851161032915, 0.0300424937158823, -0.0253558661788702, -0.019320661202073097, -0.02090957574546337, -0.016263004392385483, 0.0014537229435518384, 0.0049403212033212185, -0.023873768746852875, -0.007343720644712448, 0.0227521825581789, 0.019761284813284874, -0.014981190674006939, 0.016156185418367386, 0.022511841729283333, -0.028226593509316444, -0.02299252152442932, 0.006272205151617527, -0.002690472174435854, 0.012097110971808434, 0.01159640308469534, -0.0014729166869074106, 0.004656586796045303, -0.037412919104099274, 0.017584873363375664, -0.003935566637665033, -0.011509613133966923, -0.023833712562918663, -0.017731748521327972, -0.028787385672330856, -0.0009271447779610753, -0.029882267117500305, 0.018466120585799217, -0.01594255119562149, 0.004289400763809681, 0.011489585041999817, -0.015007895417511463, -0.006462474353611469, 0.008799112401902676, -0.017144249752163887, -0.050658322870731354, 0.0038688057102262974, -0.00343152042478323, 0.016476638615131378, -0.016409877687692642, -0.009186327457427979, -0.009927375242114067, -0.0013602573890239, 0.00915294699370861, -0.0019026913214474916, -0.014206761494278908, 0.0039155385456979275, 0.0018476133700460196, 9.342642442788929e-06, -0.02195104956626892, 0.0067261806689202785, -0.006989886984229088, 0.04366175830364227, 0.022832294926047325, -0.0034515487495809793, -0.00962695013731718, -0.0017458026995882392, 0.017518112435936928, -0.021256733685731888, -0.004439612850546837, -0.023459849879145622, -0.018239133059978485, 0.013686025515198708, 0.028093069791793823, 0.004442951176315546, -0.027331992983818054, -0.01547522284090519, 0.01988145522773266, 0.032098736613988876, 0.01403318252414465, -0.030736809596419334, 0.019053617492318153, 0.013686025515198708, -0.005070505663752556, 0.0203087255358696, -0.012804779224097729, 0.019747933372855186, -0.009600246325135231, 0.006989886984229088, 0.004276048392057419, -0.0024434563238173723, -0.017865270376205444, 0.028360115364193916, 0.01964111439883709, 0.02607688494026661, -0.004967025946825743, 0.005574551876634359, 0.03065669722855091, 0.0037820162251591682, -0.00735707301646471, -0.0280663650482893, -0.012424240820109844, 0.032392486929893494, 0.021216677501797676, -0.0057915253564715385, 0.0035683808382600546, -0.0075707086361944675, 0.017678339034318924, 0.044596415013074875, 0.024354448541998863, -0.006492516957223415, -0.01590249314904213, -0.024287687614560127, -0.015435165725648403, 0.024928594008088112, 0.011195836588740349, -0.00454309256747365, 0.015688858926296234, -0.0126779330894351, -0.01104896143078804, 0.008411898277699947, 0.0028557060286402702, 0.016009312123060226, 0.021510425955057144, -0.01988145522773266, -0.012517706491053104, -0.6387702226638794, -0.02730529010295868, -0.03378111496567726, -0.01102225761860609, -0.003461563028395176, 0.005985132418572903, 0.016690274700522423, -0.00431944290176034, 0.003217885037884116, -0.003792030503973365, -0.03046976588666439, 0.011756629683077335, 0.007624117657542229, -0.023593371734023094, -0.0362379252910614, -0.004179244861006737, 0.012477649375796318, -0.04339471459388733, -0.022364968433976173, -0.03095044568181038, 0.0034281823318451643, -0.0030075875110924244, 0.0024100756272673607, 0.011322682723402977, -0.02256525121629238, -0.023580020293593407, 0.01850617676973343, 0.010922116227447987, 0.004526402335613966, 0.03241918981075287, -0.01897350512444973, 0.0217641182243824, 0.015421814285218716, 0.02691807597875595, 0.05212706699967384, -0.014233466237783432, -0.02795954793691635, 0.024781720712780952, 0.011289302259683609, 0.010521548800170422, -0.008158206008374691, -0.01685050129890442, 0.018572937697172165, -0.0038220728747546673, 0.014380340464413166, 0.0027655784506350756, 0.02985556423664093, -0.007610765285789967, 0.0011132413055747747, 0.01258446741849184, 0.006305585615336895, 0.01940077543258667, -0.011269273236393929, -0.0036985648330301046, -0.0037786781322211027, -0.002084615407511592, 0.021697357296943665, -0.008832493796944618, 0.00267378194257617, -0.01055492926388979, 0.01275136973708868, 0.016863852739334106, -0.015822380781173706, -0.006028527393937111, -0.023833712562918663, 0.011816714890301228, -0.030389651656150818, 0.008024684153497219, 0.024474618956446648, -0.015555336140096188, -0.00010952993034152314, 0.0024434563238173723, -0.020989689975976944, -0.021643947809934616, 0.02427433617413044, 0.013939717784523964, 0.031217489391565323, -0.023740246891975403, -0.01064839493483305, 0.005888328887522221, -0.005828244145959616, -0.02380700781941414, -0.0311373770236969, -0.026610974222421646, 0.029962381348013878, -0.01670362614095211, 0.0019093673909083009, 0.012931624427437782, -0.003219553967937827, 0.009193003177642822, 0.010521548800170422, 0.005150618962943554, 0.009440019726753235, 0.002578647341579199, 0.03890836983919144, 0.0007635800866410136, 0.014567271806299686, 0.00017670828674454242, 0.00901274848729372, -0.0012868201592937112, -0.007270283531397581, -0.012424240820109844, 0.005935061722993851, -0.003968947101384401, -0.009293144568800926, -0.010321266017854214, -0.03597088158130646, -0.012457621283829212, 0.05276797339320183, -0.013352219946682453, -0.013672673143446445, -0.016783740371465683, -0.021416960284113884, 0.011469556950032711, 0.03292657434940338, -0.020989689975976944, 0.0202553179115057, -0.013939717784523964, 0.02763909474015236, -0.011936884373426437, 0.015969254076480865, -0.011336034163832664, 0.01845276728272438, -0.01888003945350647, 0.030923740938305855, 0.022979170083999634, 0.015982607379555702, -0.004876898135989904, -0.02081611007452011, -0.02224479801952839, -0.005921709351241589, 0.004232653882354498, -0.003438196610659361, 0.02191099338233471, 0.012250661849975586, -0.01949424110352993, 0.015929197892546654, 0.009440019726753235, 0.018426062539219856, -0.026050180196762085, -0.0038020445499569178, -0.002069594105705619, 0.015234882943332195, 0.002324955305084586, -0.005417663138359785, -0.02819988876581192, -0.01097552478313446, -0.0019444170175120234, -0.024875184521079063, 0.011883475817739964, -0.014981190674006939, 0.003177828388288617, 0.0021079815924167633, -0.008184910751879215, 0.005978456232696772, -0.014073239639401436, -0.03492940589785576, 0.0024818438105285168, 0.017584873363375664, -0.024154165759682655, -0.006312261801213026, 0.015368404798209667, -0.0126779330894351, 0.01584908552467823, 0.02564961463212967, -0.014607327990233898, -0.011836742982268333, 0.038587916642427444, -0.0075239758007228374, -0.04344812408089638, 0.009446695446968079, 0.0026220420841127634, -0.0035717186983674765, 0.0405106358230114, -0.02814647927880287, -0.001275971531867981, -0.020468952134251595, 0.001810894813388586, -0.006018512882292271, 0.012150519527494907, -0.0037085791118443012, 0.020055033266544342, 0.003251265501603484, -0.010448112152516842, 0.026557564735412598, -0.005060491152107716, 0.007690878584980965, -0.0012934963451698422, 0.011843418702483177, 0.024808423593640327, 0.020095091313123703, 0.02057577110826969, -0.006452460307627916, -0.011456204578280449, 0.007503947708755732, 0.0017508098389953375, 0.009914022870361805, 0.025516092777252197, 0.007857780903577805, 0.016049368306994438, 0.012991709634661674, 0.014634032733738422, 0.032445892691612244, -0.0039489190094172955, 0.0057514687068760395, -0.029989086091518402, -0.0025168934371322393, -0.019520945847034454, 0.044543005526065826, -0.006809632293879986, -0.0007886154926382005, -0.028787385672330856, -0.004967025946825743, -0.01977463811635971, 0.016583457589149475, 0.01137609127908945, 0.009947403334081173, 0.0009071164531633258, 0.012110463343560696, -0.007951246574521065, 0.020882871001958847, -0.005277464631944895, -0.005587903782725334, -0.007510623428970575, -0.0049803778529167175, 0.0008495349902659655, 0.025476034730672836, 0.04635890573263168, 0.017544817179441452, 0.00468329107388854, 0.022458434104919434, 0.005130590405315161, -0.009166298434138298, -0.0015396778471767902, 0.018199075013399124, -0.0007005743100307882, 0.017998792231082916, -0.00530083104968071, 0.0414452888071537, -0.03022942505776882, -0.010367998853325844, 0.0009805536828935146, 0.023072635754942894, -0.026130294427275658, -0.006499193143099546, 0.010828650556504726, 0.014300227165222168, 0.009353229776024818, 0.020415544509887695, 0.02990897186100483, -0.018292540684342384, 0.0012751369504258037, -0.01369937788695097, -0.007223550695925951, 0.014927782118320465, -0.028520341962575912, 0.004145864397287369, 0.0186396986246109, 0.014780906960368156, 0.03412827476859093, 0.013178640976548195, -0.012738017365336418, 0.015088008716702461, 0.015341700054705143, 0.04854867234826088, -0.006666095927357674, -0.00557121355086565, 0.02706494927406311, -0.02555614896118641, -0.035890765488147736, -0.02868056856095791, -0.013191993348300457, 0.006465812213718891, -0.008191586472094059, 0.016583457589149475, -0.0026620987337082624, 0.014994543045759201, 0.007183494046330452, 0.011729924939572811, 0.02271212637424469, -0.030977150425314903, -0.02494194731116295, 0.02494194731116295, 0.002077939221635461, 0.002570302225649357, -0.006569291930645704, -0.021403608843684196, -0.006889745593070984, -0.023953882977366447, 0.04059074819087982, -0.013372248038649559, 0.028733976185321808, 0.020055033266544342, -0.009920699521899223, -0.010568281635642052, 0.002276553539559245, 0.026864666491746902, -0.03052317351102829, 0.029454996809363365, -0.000901274848729372, 0.0066694337874650955, 0.005838258191943169, -0.02394052967429161, 0.02167065255343914, 0.01305847056210041, -0.01893344707787037, -0.012324098497629166, -0.015141417272388935, 0.009827233850955963, -0.017291124910116196, -0.0014061556430533528, -0.039068594574928284, -0.008131502196192741, 0.011129074729979038, 0.008418574929237366, 0.0074572148732841015, 0.003019270719960332, 0.004089117515832186, 0.020375486463308334, 0.006385698914527893, -0.019654467701911926, -0.014967838302254677, -0.023272918537259102, -0.008712323382496834, 0.0993405133485794, 0.0119502367451787, -0.011369415558874607, 0.004069088958203793, 0.006392375100404024, 0.015088008716702461, -0.018345950171351433, -0.021697357296943665, 0.01755816861987114, -0.029134543612599373, 0.008598829619586468, -0.01253773458302021, 0.01954765059053898, -0.01209043525159359, 0.006185415666550398, -0.004269372206181288, -0.009553513489663601, -0.0090861851349473, -8.801512194622774e-06, 0.0040624127723276615, 0.015541983768343925, 0.011135751381516457, 0.012250661849975586, -0.004820151254534721, -0.03199191763997078, -0.017771804705262184, 0.03127089887857437, -0.013098527677357197, 0.01839935965836048, -0.022979170083999634, -0.010120982304215431, 0.007657498121261597, 0.028119774535298347, 0.016530048102140427, -0.015955902636051178, -0.007911190390586853, -0.005437691695988178, 0.008305080235004425, 0.0014962831046432257, -0.011916856281459332, 0.021350199356675148, 0.0106216911226511, -0.003106060205027461, 0.00821161549538374, -0.0030793556943535805, 0.0015204839874058962, -0.017918678000569344, -0.011416147463023663, -0.04462311789393425, -0.0012334112543612719, 0.03869473189115524, -0.0049970680847764015, -0.015395109541714191, 0.007817724719643593, -0.004713333677500486, 0.029561813920736313, -0.01693061552941799, -0.0012016998371109366, -0.013091851025819778, 0.02479507215321064, -0.0031527928076684475, 0.011075666174292564, 0.020362135022878647, -0.0106216911226511, -0.02422092668712139, -0.028226593509316444, -0.031003855168819427, -0.014820964075624943, -0.014460453763604164, 0.005941737908869982, -0.03378111496567726, -0.004456303548067808, -0.030149312689900398, -0.004362837877124548, 0.0048902505077421665, -0.0050771813839674, 0.030389651656150818, -0.010875383391976357, 0.013899660669267178, -0.011402796022593975, -0.02029537409543991, -0.028360115364193916, 0.015528631396591663, -0.021870935335755348, -0.011676516383886337, 0.015181473456323147, 0.006065245717763901, 0.01883998140692711, -0.029775450006127357, 0.0126779330894351, 0.01064839493483305, 0.010781917721033096, 0.027558982372283936, -0.01123589277267456, 0.0031361025758087635, -0.006983210798352957, -0.012764722108840942, -0.0026687749195843935, -0.008445278741419315, -0.009974108077585697, -0.0033864567521959543, -0.03869473189115524, -0.0015363397542387247, -0.013111880049109459, 0.007844429463148117, -0.022872352972626686, 0.015622097067534924, 0.02474166266620159, -0.031778283417224884, -0.021563835442066193, 0.006883069407194853, -0.02196440100669861, 0.009914022870361805, 0.01391301304101944, 0.00258532352745533, 0.01703743264079094, 0.008465307764708996, 0.015421814285218716, 0.01083532627671957, 0.01071515679359436, -0.004549768753349781, -0.02693142741918564, -0.00436617573723197, -0.007083352655172348, -0.02682461030781269, -0.013098527677357197, 0.014794259332120419, -0.012057054787874222, 0.028119774535298347, -0.003558366559445858, 0.003751973854377866, 0.008839169517159462, 0.015541983768343925, -0.019747933372855186, -0.026984836906194687, -0.0017891974421218038, -0.015395109541714191, 0.01608942449092865, -0.014687441289424896, 0.008645562455058098, -0.014273523353040218, -0.008044712245464325, -0.017811860889196396, -0.020695941522717476, 0.008445278741419315, -0.025115525349974632, -0.007070000283420086, 0.008151530288159847, 0.007056648377329111, -0.010808621533215046, -0.010821973904967308, -0.035410087555646896, -0.030122607946395874, -0.009146270342171192, -0.009353229776024818, -0.026651030406355858, -0.007290312089025974, -0.0010523218661546707, 0.04149869829416275, 0.005320859607309103, 0.021457016468048096, -0.018185723572969437, 0.014994543045759201, 0.008184910751879215, -0.0018993532285094261, 0.0033948018681257963, -0.010935467667877674, -0.019721228629350662, -0.04804128780961037, -0.006182077806442976, 0.03767996281385422, 0.021363550797104836, 0.007110056933015585, -0.014580624178051949, 0.004316105041652918, 0.03383452445268631, -0.01412664819508791, -0.010508197359740734, -0.027505572885274887, -0.026797905564308167, -0.01783856563270092, -0.000768587167840451, 0.005908357445150614, 0.0035316620487719774, -0.034662362188100815, 0.011482909321784973, 0.06296906620264053, 0.010087601840496063, 0.02332632802426815, -0.01298503391444683, 0.007163465954363346, -0.002760571427643299, -0.004346147645264864, 0.0031744902953505516, 0.01646328717470169, -0.002326624235138297, 0.023953882977366447, 0.0012776405783370137, 0.02564961463212967, -0.010428084060549736, 0.0116898687556386, -0.007944570854306221, -0.010508197359740734, -0.01906696893274784, -0.02285899966955185, 0.01111572328954935, -0.01897350512444973, -0.0171843059360981, 0.029588518664240837, -0.02006838656961918, -0.019267253577709198, -0.009620274417102337, 0.013525798916816711, -0.026557564735412598, -0.0073837777599692345, 0.0011065652361139655, 0.013872955925762653, -0.0011883475817739964, -0.007997979409992695, -0.016503343358635902, 0.019814694300293922, -0.007897838018834591, 0.0374930314719677, -0.0006609348929487169, 0.02332632802426815, 0.010020840913057327, 0.000861218199133873, 0.0033931329380720854, 0.0008378517813980579, -0.009440019726753235, 0.0005670521059073508, 0.02498200349509716, 0.0019661143887788057, 0.005410986952483654, 0.009466723538935184, -0.021643947809934616, 0.012771397829055786, -0.03394134342670441, -0.03514304384589195, 0.01854623295366764, 0.007837752811610699, -0.01731782965362072, -0.009213031269609928, 0.0024985340423882008, -0.052020248025655746, -6.076303179725073e-05, -0.00910621415823698, 0.03949586674571037, -0.010735184885561466, -0.02276553399860859, -0.039869729429483414, -0.0012133829295635223, 0.01912037841975689, 0.02771920897066593, 0.024928594008088112, -0.02086951956152916, -0.026757847517728806, 0.003975623287260532, -0.019787989556789398, -0.016783740371465683, -0.009620274417102337, 0.008792436681687832, -0.026677735149860382, 0.0068329982459545135, 0.015635449439287186, -0.0075707086361944675, 0.0012534395791590214, -0.016676923260092735, -0.008438603021204472, 0.027278585359454155, 0.03463565930724144, 0.00731034018099308, -0.0022915746085345745, 0.012871540151536465, 0.0076708500273525715, 0.007243579253554344, -0.00745053868740797, -0.0025986756663769484, -0.005337549839168787, -0.00034861810854636133, 0.0025269074831157923, 0.026477452367544174, 0.0017858593491837382, -0.01199696958065033, -0.024995354935526848, -0.00950678065419197, 0.005330873653292656, 0.011362738907337189, -0.003535000141710043, -0.03997654467821121, -0.032098736613988876, -0.0003237913188058883, -0.029214655980467796, 0.01727777160704136, 0.0023549976758658886, 0.02347320318222046, 7.865291991038248e-05, 0.02753227762877941, -0.04064415767788887, 0.020856168121099472, -0.014767555519938469, 0.01118915993720293, -0.01603601686656475, 0.012143843807280064, 0.0026704438496381044, -0.01698402315378189, 0.012077082879841328, -0.018612993881106377, -0.031297601759433746, 0.006656081415712833, 0.006081935949623585, 0.023339679464697838, 0.013378923758864403, 0.007377101574093103, 0.007210198789834976, -0.0013135246699675918, 0.021376904100179672, -0.006479164585471153, -0.023927178233861923, 0.00828505214303732, 0.016476638615131378, 0.008291728794574738, 0.018038848415017128, -0.016449933871626854, 0.026383986696600914, -0.003012594534084201, 0.021016394719481468, -0.0011599741410464048, -0.027372051030397415, -0.003291322151198983, -0.0040957932360470295, 0.007577384822070599, 0.021697357296943665, -0.0004485511453822255, -0.013565855100750923, -0.01859964244067669, -0.014286874793469906, 0.0004760900919791311, 0.015248235315084457, -0.01173660159111023, 0.012404211796820164, 0.008605505339801311, -0.0005232401308603585, -0.0019994948524981737, -0.008652238175272942, -0.0034415347035974264, 0.020041681826114655, -0.011369415558874607, -0.032953277230262756, -0.008391870185732841, -0.017531463876366615, 0.03808053210377693, 0.005257436539977789, -0.004326119087636471, -0.0022815605625510216, -0.04518391191959381, -0.0090861851349473, -0.008398545905947685, -0.009446695446968079, 0.007690878584980965, 0.04555777460336685, 0.018426062539219856, 0.010561605915427208, 0.03578395023941994, -0.019507592543959618, -0.01675703562796116, -0.005811553448438644, -0.004259358160197735, -0.012237309478223324, -0.001996156759560108, -0.00901274848729372, 0.009586893953382969, -0.021777469664812088, -0.0006288061267696321, 0.012023674324154854, -0.0037553117144852877, -0.002223144518211484, 0.0024534703698009253, 0.004910278599709272, 0.011936884373426437, 0.007750963792204857, -0.01798544079065323, 0.008485335856676102, 0.028733976185321808, -0.0017858593491837382, -0.0320720337331295, -0.01841271109879017, 0.0017675000708550215, -0.009907347150146961, -0.03813393786549568, -0.018813278526067734, 0.0019394098781049252, -0.02356666699051857, 0.013792842626571655, -0.028466932475566864, -0.008311756886541843, -0.01906696893274784, -0.030977150425314903, 0.043181080371141434, -0.012170548550784588, 0.014994543045759201, 0.024915242567658424, -0.012898243963718414, -0.014887725003063679, -0.0028874175623059273, 0.02771920897066593, 0.02418087050318718, -0.021016394719481468, 0.0008090610499493778, -0.021657301113009453, 0.026651030406355858, -0.010254505090415478, 0.013298810459673405, -0.018960151821374893, 0.0181189626455307, -0.01190350390970707, 0.005173985380679369, -0.023726895451545715, 0.02105645090341568, 0.014874372631311417, 0.0013953070156276226, -0.01459397654980421, 0.016970671713352203, 0.005461058113723993, 0.012965005822479725, -0.011876799166202545, -0.023219510912895203, 0.0009271447779610753, 0.014353636652231216, 0.0038120588287711143, 0.0012384183937683702, -0.017664987593889236, 0.0016581787494942546, 0.00807141698896885, -0.024728311225771904, 0.004205949138849974, 0.20391510426998138, -0.02819988876581192, 0.006492516957223415, 0.0222848542034626, -0.021189972758293152, 0.009172975085675716, 0.006692800205200911, -0.010367998853325844, -0.007517299614846706, -0.0076441457495093346, 0.005554523319005966, 0.01944083161652088, -0.014447101391851902, 0.0057180882431566715, 0.032632824033498764, -0.004279386252164841, -0.040724270045757294, -0.0009605252998881042, 0.0025803165044635534, -0.059070222079753876, 0.011089018546044827, -0.005981794558465481, -0.014834316447377205, -0.004202611278742552, 0.011910179629921913, 0.00821161549538374, -0.013385600410401821, 0.010848678648471832, 0.028920907527208328, -0.02414081245660782, -0.037546440958976746, -0.013425656594336033, -0.0035617046523839235, -0.013899660669267178, -0.026317225769162178, 0.015101360157132149, -0.004015679936856031, -0.001621460192836821, 0.014460453763604164, -0.019721228629350662, 0.002204785356298089, 0.008224966935813427, 0.0036585081834346056, 0.003842101199552417, -0.013472389429807663, 0.012664580717682838, -0.004449627362191677, -0.022912409156560898, -0.019374070689082146, 0.021497074514627457, -0.028947612270712852, 0.010501520708203316, 0.04756060615181923, 0.030736809596419334, 0.010261180810630322, -0.022551899775862694, -0.012724664993584156, -0.0009329863823950291, -0.008785760961472988, 0.01670362614095211, -0.006098626181483269, 0.027799321338534355, 0.013872955925762653, 0.03621121868491173, -0.020001625642180443, 0.0058582862839102745, -0.004496360197663307, -0.0038688057102262974, 0.022298207506537437, -0.02578313648700714, -0.0007456380408257246, -0.020509010180830956, -0.003975623287260532, -0.013872955925762653, -0.012824807316064835, -0.003454886842519045, 0.029989086091518402, -0.025903306901454926, 0.007230226881802082, -0.005200689658522606, 0.01670362614095211, -0.01793203130364418, 0.013659320771694183, 0.002792282961308956, -0.007317016366869211, -0.013806194998323917, 0.0101543627679348, 0.004099131561815739, -0.019427480176091194, 0.004689967259764671, -0.02380700781941414, -0.023980585858225822, 0.0022248136810958385, -0.011442852206528187, -0.005778172984719276, -0.015328348614275455, 0.01211713906377554, 0.015288291499018669, -0.009687035344541073, -0.0024367801379412413, -0.01003419328480959, -0.012951653450727463, -3.632742664194666e-05, -0.011629783548414707, -0.027932843193411827, -0.01798544079065323, 0.017424646764993668, 0.0037619879003614187, 0.0005507790483534336, 0.009039453230798244, 0.032766345888376236, -0.016196243464946747, -0.013519122265279293, -0.017865270376205444, 0.007891162298619747, 0.013171965256333351, -0.037973713129758835, -0.013993126340210438, 0.0011023926781490445, -0.006796279922127724, 0.00950678065419197, -0.0019694524817168713, -0.0028723962604999542, -0.00024701605434529483, 0.0024818438105285168, -0.006916449870914221, -0.0212967898696661, 0.02351325936615467, 0.016102777794003487, -0.0006246335105970502, 0.01892009563744068, -0.047961171716451645, 0.01083532627671957, 0.0054410295560956, -0.03848109766840935, 0.01355917938053608, -0.007804372347891331, -0.017584873363375664, 0.02394052967429161, -0.012557762674987316, -0.009713740088045597, -0.005474410019814968, -0.007877809926867485, 0.009947403334081173, 0.020842814818024635, -0.01346571370959282, 0.0129383010789752, -0.01802549697458744, -0.0010898748878389597, -0.010314589366316795, -0.03682542219758034, 0.0017065806314349174, -0.0007539831567555666, -0.00276224035769701, 0.010301237925887108, 0.006075259763747454, -0.006111978553235531, -0.026050180196762085, 0.0065392497926950455, 0.0331135056912899, -0.026717791333794594, 0.006369008682668209, 0.025903306901454926, -0.007343720644712448, -0.01674368418753147, -0.017825214192271233, -0.16930614411830902, 0.01298503391444683, 0.017251068726181984, -0.009473400190472603, 0.03354077786207199, 0.03474247455596924, 0.03089703619480133, -0.008418574929237366, -0.009313173592090607, -0.012758046388626099, 0.015528631396591663, 0.012738017365336418, -0.040296997874975204, -0.02966863289475441, -0.004673277027904987, -0.003201194806024432, -0.0021530454978346825, 0.01878657378256321, 0.031030558049678802, 0.009807205758988857, -0.0005820733495056629, -0.005554523319005966, 0.011429499834775925, 0.013091851025819778, 0.018853334710001945, 0.006088612135499716, -0.004292738623917103, 0.02739875577390194, 0.013545827008783817, -0.020081738010048866, -0.022258149459958076, 0.015541983768343925, -0.01556868851184845, -0.020028330385684967, 0.025142230093479156, 0.015822380781173706, -0.00238337111659348, 0.007684202399104834, -0.013345543295145035, 0.00994072761386633, 0.01746470294892788, 0.013966421596705914, 0.014420397579669952, 0.008325109258294106, -0.010161039419472218, 0.02498200349509716, 0.007410482037812471, -0.013806194998323917, 0.012050378136336803, -0.015368404798209667, 0.006272205151617527, -0.009820557199418545, 0.021163268014788628, -0.009066157042980194, 0.02265871688723564, 0.008745703846216202, 0.00624550087377429, 0.0036518319975584745, -0.01199696958065033, -0.013545827008783817, -0.001956100109964609, -0.01769169047474861, 0.026557564735412598, -0.009847261942923069, -0.007957923226058483, 0.005567875690758228, -0.009914022870361805, 0.025102173909544945, -0.015328348614275455, 0.00910621415823698, -0.008545421063899994, 0.03022942505776882, 0.026343930512666702, -0.01173660159111023, -0.009887319058179855, -0.017424646764993668, -0.0027305290568619967, 0.012197252362966537, -0.011776657775044441, -0.018292540684342384, -0.021590540185570717, 0.03989643231034279, -0.022725477814674377, -0.01263120025396347, -0.004903602879494429, 0.01570221036672592, -0.017090842127799988, -0.03028283454477787, -0.023406440392136574, -0.00046565866796299815, 0.01783856563270092, -0.02814647927880287, -0.006989886984229088, -0.007577384822070599, 0.02163059636950493, 0.01973458006978035, 0.011316006071865559, -0.023526610806584358, 0.0032395822927355766, -0.015421814285218716, -0.0061053023673594, -0.015875788405537605, -0.006472488399595022, 0.025102173909544945, 0.03265953063964844, 0.012097110971808434, 0.008552096784114838, 0.011309330351650715, 0.041658926755189896, 0.00126929534599185, -0.02139025554060936, -0.0017491407925263047, 0.0005082188872620463, 0.007884485647082329, 0.011509613133966923, 0.02418087050318718, 0.0022665392607450485, -0.020335430279374123, -0.0010848678648471832, -0.03132430836558342, 0.06553269177675247, -0.017811860889196396, -0.0005303334910422564, 0.006185415666550398, -0.0032979983370751143, -0.03685212507843971, -0.10585639625787735, 0.0006292233592830598, 0.01873316429555416, 0.015368404798209667, 0.00249686511233449, 0.0035450144205242395, -0.0066794478334486485, 0.015314996242523193, -0.007330368738621473, 0.005554523319005966, -0.018092257902026176, -0.021603891626000404, 0.007483919151127338, -0.009860614314675331, 0.013452361337840557, -0.007944570854306221, -0.01789197511970997, -0.007717582862824202, 0.011356063187122345, 0.03479588404297829, 0.004469655454158783, -0.029348179697990417, 0.012571115046739578, -0.027291936799883842, 0.0258766021579504, 0.005320859607309103, -0.01778515614569187, 0.025235695764422417, 0.026864666491746902, 0.011956912465393543, -0.0023282933980226517, -0.01102225761860609, 0.017491407692432404, -0.010641719214618206, -0.0034649011213332415, -0.00758406100794673, -0.023339679464697838, -0.004159216303378344, 0.01878657378256321, -0.02611694112420082, 0.009540161117911339, -0.011910179629921913, 0.01839935965836048, -0.012337450869381428, 0.004486345686018467, -0.010367998853325844, 1.2224322745169047e-05, -0.005194013472646475, 0.00432945741340518, -0.02924136072397232, -0.01845276728272438, 0.015555336140096188, -0.036878831684589386, -0.007036619819700718, 0.03639815002679825, -0.006592658348381519, 0.02678455226123333, 0.0067528849467635155, -0.026156999170780182, -0.003212877782061696, -0.02029537409543991, 0.0012167210225015879, 0.000785277399700135, 0.030790219083428383, 0.009893994778394699, -0.010635043494403362, -0.01502124685794115, -0.013398952782154083, 0.021924344822764397, 0.013639292679727077, -0.0065225595608353615, 0.02431439235806465, -0.029134543612599373, 0.014660737477242947, -0.020215259864926338, 0.011896828189492226, -0.017771804705262184, 0.006312261801213026, 0.023406440392136574, 0.01069512777030468, -0.011816714890301228, -0.023353032767772675, -0.012284042313694954, 0.010922116227447987, 0.026864666491746902, 0.006409065332263708, -0.0008098955731838942, -0.00877908430993557, 0.0015513610560446978, -0.024528028443455696, 0.008291728794574738, 0.03022942505776882, -0.0017775142332538962, -0.022418377920985222, 0.009099537506699562, 0.034288499504327774, 0.027745911851525307, 0.002807304263114929, -0.017518112435936928, -0.003775340039283037, -0.01369937788695097, 0.012684608809649944, -0.058269087225198746, 0.029081134125590324, -0.01284483540803194, 0.009687035344541073, -0.009072833694517612, -0.011002229526638985, 0.02205786667764187, -0.022311558946967125, -0.0026120280381292105, 0.00915294699370861, 0.006345642264932394, 0.025823192670941353, -0.018559586256742477, 0.0028557060286402702, -0.019040266051888466, -0.012203929014503956, 0.0037152550648897886, -0.005337549839168787, 0.0024117447901517153, -0.005985132418572903, 0.0009588562534190714, -0.01746470294892788, 0.01888003945350647, -0.005591242108494043, -0.016476638615131378, -0.003865467617288232, 0.0015872451476752758, 0.022485138848423958, -0.0067195044830441475, -0.021256733685731888, 0.015969254076480865, -0.031778283417224884, -0.022418377920985222, 0.0003705240960698575, 0.0001663811708567664, 0.02285899966955185, -0.021363550797104836, 0.006996563170105219, -0.004019018262624741, 0.04537084326148033, -0.001267626415938139, 0.002141362288966775, 0.01462068036198616, -0.022298207506537437, 0.01906696893274784, 0.02484848164021969, -0.0227521825581789, -0.0075707086361944675, 0.015221530571579933, -0.022204741835594177, 0.010862031020224094, 0.026891371235251427, -0.0018809939501807094, -0.042887330055236816, -0.012637875974178314, -0.030122607946395874, 0.025008708238601685, -0.0057581448927521706, 0.011129074729979038, -0.017865270376205444, 0.006028527393937111, -0.00605856953188777, 0.0022031161934137344, 0.0008945987210609019, 0.007377101574093103, -0.0005595414550043643, 0.00020289115491323173, -0.01204370241612196, -0.025195639580488205, -0.03514304384589195, 0.0019577692728489637, 0.010274533182382584, 0.013258754275739193, 0.007190170232206583, 0.002448463346809149, 0.037172578275203705, 0.0023883783724159002, 0.01305847056210041, -0.02868056856095791, 0.005364254117012024, -0.0004224725707899779, -0.017584873363375664, -0.030870331451296806, -0.005574551876634359, 0.02844022773206234, -0.005908357445150614, 0.007624117657542229, -0.0017124222358688712, -0.016783740371465683, 0.004382865969091654, 0.004526402335613966, -0.010808621533215046, -0.0027155077550560236, 0.0007151782629080117, 0.006836336571723223, 0.018532881513237953, -0.010688452050089836, -0.0023967234883457422, 0.011649811640381813, 0.02649080380797386, -0.013739434070885181, 0.02090957574546337, 0.01132935844361782, -0.012804779224097729, 0.0018259159987792373, -0.0009947404032573104, -0.00655260169878602, -0.0140064787119627, 0.006041879300028086, 0.029535111039876938, 0.00735707301646471, 0.01116245612502098, 0.027692504227161407, 0.023099340498447418, -0.018052201718091965, 0.02049565687775612, 0.022364968433976173, -0.010014165192842484, -0.0035450144205242395, 0.04304755479097366, 0.01256443839520216, 0.039575979113578796, 0.03351407125592232, 0.009159622713923454, 0.005591242108494043, 0.022818943485617638, 0.01826583594083786, 0.02583654597401619, -0.024047348648309708, 0.023393088951706886, -0.0007155955536291003, 0.0018809939501807094, -0.048708897083997726, 0.00865891482681036, 0.0038688057102262974, -0.05161968246102333, 0.0048101372085511684, 0.0031611379235982895, -0.02929477021098137, 0.038721438497304916, 0.01024782843887806, -0.006632714997977018, -0.008138177916407585, -0.003895510220900178, 0.026103589683771133, 0.006559277884662151, 0.008572124876081944, 0.004489684011787176, -0.013519122265279293, 0.005093871615827084, -0.016062719747424126, 0.005958428140729666, -0.02673114463686943, -0.017518112435936928, 0.027799321338534355, -0.011816714890301228, 0.0263973381370306, -0.01703743264079094, -0.03487599641084671, 0.03249930217862129, -0.00019099932978861034, 0.019787989556789398, -0.002857374958693981, -0.009640302509069443, 0.022965818643569946, 0.006836336571723223, 0.0024785057175904512, 0.0007189335883595049, -0.034181684255599976, -0.004987054038792849, 0.004803461022675037, -0.022084571421146393, -0.003668522462248802, 0.017905326560139656, 0.008665590547025204, -0.0029324812348932028, -0.010801945813000202, 0.02531580813229084, -0.02219138853251934, -0.015728915110230446, 0.015341700054705143, -0.01580902747809887, -0.013545827008783817, 0.02516893483698368, 0.0021547144278883934, -0.02626381628215313, -0.00028707273304462433, -0.03022942505776882], "9dd03b9a-253b-42c9-b15a-423846fbd0be": [-0.01421758159995079, -0.00817681010812521, -0.01986379735171795, 0.0140135008841753, -0.016231171786785126, 0.02685694210231304, -0.011054339818656445, -0.02078896015882492, -0.021319570019841194, -0.015673352405428886, 0.019605295732617378, 0.013720986433327198, 0.02487056329846382, -0.00064795435173437, -0.0012006713077425957, 0.003656435292214155, 0.023714108392596245, -0.0018061089795082808, 0.042829614132642746, -0.01895223930478096, -0.0033350090961903334, -0.007340081501752138, 0.007149606477469206, 0.03020385652780533, -0.011265221983194351, 0.028407951816916466, 0.029523590579628944, -0.005765263456851244, 0.015333219431340694, -0.009108776226639748, -0.010850259102880955, 0.005772065836936235, -3.17546546284575e-05, -0.003098616376519203, -0.02511546015739441, -0.005666624289005995, -0.0014183567836880684, -0.01906108297407627, 0.017088308930397034, -0.004612210672348738, 0.011571342125535011, -0.004867310635745525, -0.021972626447677612, 0.0051564243622124195, -0.027591630816459656, 0.01819034107029438, 0.005374109838157892, -0.031210651621222496, -0.05425810068845749, 0.014938664622604847, 0.01910189911723137, 0.016476068645715714, -0.03453035652637482, -0.000449401413789019, -0.013013508170843124, -0.007435319013893604, 0.014462477527558804, 0.011047536507248878, 0.0012457390548661351, 0.019850192591547966, -0.002535695442929864, 0.004622414708137512, 0.0018129117088392377, 0.002488076686859131, -0.0226120762526989, -0.012748204171657562, -0.011700592935085297, -0.00970741081982851, -0.011721001006662846, -0.0094216987490654, 0.03948269784450531, 0.02409505844116211, -0.004625815898180008, 0.004887718707323074, 0.03077528066933155, -0.022081468254327774, -0.01731959916651249, -0.0076393987983465195, -0.009312856011092663, 0.000564196496270597, 0.0007674262742511928, -0.03602694347500801, -0.008652997203171253, 0.0273603405803442, 0.03561878204345703, -0.025333145633339882, 0.001420057495124638, 0.03733305633068085, -0.028516795486211777, -0.032680027186870575, 0.01280942838639021, 0.007482937537133694, 0.0008562861476093531, 0.018612107262015343, 0.001818013726733625, 0.00848293025046587, -0.036353472620248795, 0.0188433974981308, -0.00993870198726654, -0.021972626447677612, -0.022993026301264763, -0.005425129551440477, -0.025945385918021202, -0.0020646105986088514, -0.014163159765303135, 0.014965875074267387, -0.009319658391177654, 0.0004181516414973885, 0.00797272939234972, -0.006350292824208736, -0.007088382728397846, 0.01551008876413107, 0.004299287684261799, -0.045115310698747635, -0.010959101840853691, -0.016435252502560616, 0.021183514967560768, -0.01304071955382824, 0.0004498265916481614, -0.012006713077425957, -0.00010916159953922033, 0.010135979391634464, -0.0018673330778256059, 0.0009430202189832926, 0.012183582410216331, 0.008544154465198517, -0.004414933267980814, -0.03371403366327286, 0.008285652846097946, -0.004061194136738777, 0.02838074043393135, 0.014353634789586067, 0.0030765077099204063, -0.011408078484237194, -0.0013605341082438827, 0.020244747400283813, -0.037469107657670975, -0.016217567026615143, -0.014067922718822956, -0.021795757114887238, 0.022911394014954567, 0.013244799338281155, 0.0020714132115244865, -0.03463919833302498, -0.02047603763639927, 0.019401216879487038, 0.017510073259472847, 0.006112199276685715, -0.029931750148534775, 0.01859850063920021, 0.01844884268939495, -0.01072100829333067, 0.010231216438114643, -0.019074687734246254, 0.015673352405428886, -0.0035577965900301933, 0.006176824681460857, 0.0031870510429143906, -0.0010569649748504162, -0.014816216193139553, 0.02164609730243683, 0.018788976594805717, 0.015088323503732681, -0.011925081722438335, 0.0009328161831945181, 0.023265132680535316, 0.0031360310968011618, -0.016380829736590385, -0.03433987870812416, -0.014462477527558804, 0.027999792248010635, 0.03126507252454758, -0.013061127625405788, 0.016340013593435287, -0.003294193185865879, 0.014802610501646996, 0.03853032737970352, 0.02379574067890644, -0.017401231452822685, -0.0072380416095256805, -0.022081468254327774, -0.017741365358233452, 0.03586367890238762, 0.013972684741020203, -0.005758460611104965, -0.002695558127015829, -0.00968020036816597, -2.6665937184588984e-05, 0.00030123075703158975, -0.0023843359667807817, 0.0004791631072293967, 0.024775326251983643, -0.010680193081498146, -0.010074755176901817, -0.6408659815788269, -0.034312669187784195, -0.0349385142326355, -0.016802595928311348, 0.0009209114941768348, -0.003544191364198923, 0.007421713322401047, 0.0030288889538496733, 0.0017533883219584823, 0.00022236228687688708, -0.024176690727472305, 0.00916999951004982, 0.006948927883058786, -0.018734553828835487, -0.03077528066933155, -0.00034714877256192267, 0.008340073749423027, -0.022938605397939682, -0.015836616978049278, -0.016476068645715714, -0.014748189598321915, -0.006778860930353403, -0.001532301539555192, 0.006193831562995911, -0.024489613249897957, -0.012768612243235111, 0.026979390531778336, 0.0011360460193827748, 0.009414896368980408, 0.03082970343530178, -0.021414807066321373, 0.022326365113258362, 0.02206786349415779, 0.02470729872584343, 0.05583631992340088, -0.0164488572627306, -0.014462477527558804, 0.03213581442832947, 0.009074762463569641, -0.0023945400025695562, -0.015986274927854538, -0.03082970343530178, 0.01541485171765089, -0.00527547113597393, -0.0025544026866555214, 0.000898802827578038, 0.01585022173821926, -0.00815640203654766, -0.0064863464795053005, 0.01854407973587513, 0.003595211310312152, 0.0023027039133012295, -0.020258352160453796, -0.005438735242933035, -0.005418327171355486, 0.006105396896600723, 0.025659672915935516, -0.006772058550268412, 0.004197247792035341, -0.002241479931399226, 0.011244813911616802, 0.021741334348917007, -0.0037108566612005234, -0.01278902031481266, -0.008319665677845478, 0.007993137463927269, -0.01421758159995079, 0.025047432631254196, 0.02236718125641346, -0.0006075635319575667, 0.0010433596326038241, 0.013850237242877483, -0.015931854024529457, -0.014462477527558804, 0.017414836212992668, 0.012115555815398693, 0.03295213729143143, -0.00782307144254446, -0.01090468093752861, 0.021795757114887238, 0.006387707777321339, -0.02930590510368347, -0.03420382738113403, -0.021918203681707382, 0.037224214524030685, -0.02364608272910118, -0.01421758159995079, 0.029333114624023438, 0.0007006750674918294, 0.010605363175272942, 6.24995373073034e-05, 0.01926516368985176, 0.0013953978195786476, 0.007965927012264729, 0.038748010993003845, 0.005248260218650103, 0.01304071955382824, 0.006428523454815149, 0.01986379735171795, 0.008353679440915585, -0.014544109813869, 0.00014902099792379886, 0.012673375196754932, -0.003588408697396517, -0.012768612243235111, 0.0024251521099358797, -0.031509969383478165, -0.018176736310124397, 0.0512649230659008, -0.023469213396310806, -0.008721023797988892, -0.024326350539922714, -0.015346824191510677, 0.005687032360583544, 0.02099304087460041, -0.02170051820576191, 0.025047432631254196, -0.015918249264359474, 0.03287050500512123, -0.018788976594805717, 0.02303384244441986, -0.016067907214164734, 0.017197150737047195, -0.013714184053242207, 0.030693648383021355, 0.02572770044207573, 0.020203931257128716, 0.006319680716842413, -0.017659733071923256, -0.015224376693367958, -0.005125812254846096, -0.0010255025699734688, 0.010408085770905018, -0.0025663075502961874, 0.009816253557801247, -0.02195901982486248, 0.015605325810611248, 0.017904628068208694, 0.026149464771151543, -0.02578212134540081, -0.00671423552557826, 0.011061142198741436, 0.025754909962415695, 0.0036938500124961138, -0.018571291118860245, -0.04413572698831558, -0.012612150982022285, -0.002710864180698991, -0.023714108392596245, 0.024924984201788902, -0.0060577779076993465, -0.00787068996578455, 0.006289069075137377, -0.0001635829685255885, 0.017686942592263222, -0.01551008876413107, -0.028299110010266304, 0.011700592935085297, 0.00681287469342351, -0.014707373455166817, 0.004510170314460993, 0.016067907214164734, -0.01123120915144682, 0.017047492787241936, 0.020666513592004776, -0.020625697448849678, -0.011020326055586338, 0.030448753386735916, 0.0015135941794142127, -0.03795890137553215, 0.015142744407057762, -0.013190378434956074, -0.015918249264359474, 0.035482730716466904, -0.03189091756939888, -0.004132622387260199, -0.0094216987490654, 0.0005565434694290161, -0.010945497080683708, 0.011251617223024368, -0.009850266389548779, 0.018993055447936058, -0.002382635371759534, -0.008190414868295193, 0.01469376776367426, -0.008217626251280308, -0.0029064409900456667, -0.0034098385367542505, 0.00129590870346874, 0.02938753552734852, -0.002785693621262908, 0.013217588886618614, 0.0062720621936023235, 0.002598620019853115, 0.0195100586861372, -0.016829807311296463, 0.018625712022185326, 0.019727744162082672, 0.007292462978512049, 0.028353530913591385, 0.00023044046247377992, 0.009789043106138706, 0.022734524682164192, -0.0006594338919967413, 0.011530526913702488, -0.01982298120856285, -0.0046156118623912334, -0.011625763960182667, 0.03491130471229553, -0.019591690972447395, 0.0030560996383428574, -0.015224376693367958, 0.00970741081982851, -0.028190266340970993, 0.023510029539465904, 0.03983643651008606, 0.011176787316799164, 0.008659799583256245, -0.0012270316947251558, 0.0013290717033669353, 0.018530474975705147, -0.012612150982022285, -0.0005284824874252081, -0.013863842003047466, -0.0152107710018754, -0.013578129932284355, 0.017496468499302864, 0.04087044298648834, 0.028244687244296074, 0.00046555776498280466, 0.030339909717440605, 0.0031785478349775076, -0.014503293670713902, 0.0027958976570516825, 0.006683623883873224, -0.01159175019711256, 0.01997264102101326, -0.011299235746264458, 0.050611868500709534, -0.02938753552734852, -0.009074762463569641, 0.004867310635745525, 0.01885700225830078, -0.016108723357319832, -0.008496535010635853, 0.004680237267166376, 0.013720986433327198, 0.009897885844111443, 0.007952321320772171, 0.03031270019710064, -0.012292425148189068, -0.005680229980498552, -0.010755022056400776, -0.004653026815503836, 0.02628551796078682, -0.04361872375011444, 0.004513571970164776, 0.026095043867826462, 0.019374005496501923, 0.027428368106484413, -0.004482959862798452, 0.00916999951004982, 0.0028265095315873623, 0.005727848503738642, 0.05861181020736694, 0.00378908752463758, 0.001155603677034378, 0.03333308547735214, -0.035945311188697815, -0.02466648258268833, -0.029877329245209694, 0.012163175269961357, 0.003867318155243993, -0.007340081501752138, 0.012823034077882767, 0.0044013275764882565, 0.0097550293430686, -0.0037720808759331703, 0.017156334593892097, 0.016571305692195892, -0.024122269824147224, -0.02791815996170044, 0.015918249264359474, -0.004224458243697882, -0.009204013273119926, -0.002869026269763708, -0.03616299480199814, 0.0017993063665926456, -0.011013523675501347, 0.03306097909808159, -0.017006676644086838, 0.0195100586861372, 0.029088219627738, -0.017401231452822685, 0.004687040112912655, 0.004377518314868212, 0.03072085976600647, -0.02487056329846382, 0.04111533984541893, -0.004836698528379202, 0.012503308244049549, 0.008081572130322456, -0.032816082239151, 0.018680132925510406, 0.015374035574495792, -0.02089780382812023, -0.013496498577296734, -0.028952166438102722, 0.0020646105986088514, -0.02399982139468193, -0.01553729921579361, -0.04152350127696991, -0.0036530341021716595, 0.005850296467542648, 0.0014506694860756397, 0.015863828361034393, -0.0051734307780861855, 0.005785671062767506, 0.021237937733530998, -0.004479558672755957, -0.026911364868283272, -0.009687002748250961, -0.013999896124005318, -0.01332643162459135, 0.09904687851667404, 0.02480253577232361, -0.020965829491615295, -0.002612225478515029, -0.007394502870738506, 0.012326438911259174, -0.0059659420512616634, -0.034829672425985336, 0.023632477968931198, -0.004758467897772789, 0.014761795289814472, -0.020462432876229286, 0.0170747023075819, 0.0008061164407990873, 0.005452340468764305, -0.014938664622604847, -0.019224347546696663, -0.022040652111172676, 0.0013622348196804523, -0.0009022041922435164, 0.000752120278775692, 0.015169954858720303, 0.0024336553178727627, 0.016544094309210777, -0.026557626202702522, -0.016897832974791527, 0.01941482163965702, -0.010489718057215214, 0.0076189907267689705, -0.026788916438817978, -0.0025969194248318672, 0.007530556060373783, 0.025550831109285355, 0.02782292291522026, -0.017537284642457962, -0.01340126059949398, -0.0022873978596180677, 0.012680177576839924, 0.004605407826602459, -0.0003800992271862924, 0.011721001006662846, 0.01222439855337143, 0.012108753435313702, -0.0012831537751480937, 0.011802633292973042, 0.011686988174915314, -0.010782232508063316, -0.01332643162459135, -0.03270724043250084, 0.011462499387562275, 0.03825821727514267, -0.001755089033395052, -0.007550964131951332, -0.0025782121811062098, 0.009197210893034935, 0.016993070021271706, -0.008612181060016155, -0.008938709273934364, -0.010210808366537094, 0.0383126400411129, -0.014190370216965675, 0.011925081722438335, 0.018993055447936058, -0.011938686482608318, -0.02221752144396305, -0.04772753641009331, -0.02399982139468193, -0.014095133170485497, -0.014231186360120773, 0.002459165407344699, -0.014326424337923527, -0.00814959965646267, -0.02073453925549984, -0.002459165407344699, 0.019782165065407753, -0.007013553287833929, 0.02272091992199421, -0.001706619979813695, 0.013435274362564087, -0.020856987684965134, -0.00031185991247184575, -0.03102017752826214, 0.019278768450021744, -0.019850192591547966, -0.00699314521625638, 0.005221049766987562, 0.008448916487395763, 0.019754955545067787, -0.016067907214164734, 0.005384313873946667, 0.009598568081855774, 0.0082244286313653, -0.0008269496029242873, -0.01655769906938076, 0.010204005986452103, -0.0043843211606144905, -0.0053298925049602985, -0.01187065988779068, 0.005091798957437277, -0.0014234588015824556, 0.00398636469617486, -0.03657115623354912, -0.005241457372903824, -0.007204027846455574, 0.006843486335128546, -0.013693775981664658, 0.018476052209734917, 0.02470729872584343, -0.02342839725315571, -0.016163144260644913, 0.009945504367351532, -0.01748286373913288, 0.009135986678302288, -0.005897915456444025, 0.001065468299202621, 0.004778875969350338, 0.02160528115928173, 0.02268010377883911, -0.003721060696989298, -0.00038201245479285717, -0.0027975982520729303, -0.03374124690890312, 0.004850304219871759, -0.004619013052433729, -0.031564392149448395, -0.01746925711631775, 0.022856973111629486, -0.02884332276880741, 0.012707388028502464, -0.0020288964733481407, -0.008673405274748802, 0.009496527723968029, 0.025333145633339882, -0.005999955348670483, -0.0314827598631382, 0.0006985492072999477, -0.016748175024986267, 0.0013630851171910763, -0.016435252502560616, 0.00527547113597393, -0.013510103337466717, 0.004207451827824116, -0.0015663148369640112, -0.013367247767746449, -0.015360429883003235, -0.0219045989215374, -0.017305994406342506, 0.007625793572515249, 0.008687010034918785, -0.009639384225010872, -0.009469317272305489, -0.0396459624171257, -0.02542838267982006, -0.003217663150280714, -0.0005348599515855312, -0.031509969383478165, 0.013714184053242207, -0.00820402055978775, 0.025305934250354767, 0.00812919158488512, 0.03153717890381813, -0.01518356055021286, 0.016135934740304947, 0.005840092431753874, -0.00729926535859704, -0.00023745572252664715, -0.001986379735171795, -0.03170044347643852, -0.0560540035367012, -0.010428493842482567, 0.024734510108828545, 0.03447593376040459, 0.01541485171765089, -0.004646223969757557, 0.003755073994398117, 0.03300655633211136, -0.009666594676673412, 0.001921754446811974, -0.02225833758711815, -0.03621741756796837, -0.017754970118403435, -0.0018146123038604856, -0.0003195129393134266, 0.00196257047355175, -0.034013353288173676, 0.0090475520119071, 0.051999613642692566, -0.0026275315321981907, 0.009972714819014072, -0.027129050344228745, 0.011428486555814743, -0.002960862359032035, -0.011067944578826427, 0.0034999740310013294, 0.0014260098105296493, 0.0035203818697482347, 0.024829747155308723, 0.0018231157446280122, 0.02925148233771324, -0.012578138150274754, 0.005411524325609207, -0.0007304367609322071, -0.00034438518923707306, -0.0219045989215374, -0.014652952551841736, 0.016775384545326233, -0.02292499877512455, -0.008727826178073883, 0.02171412482857704, -0.012632559053599834, -0.01921074092388153, -0.007877492345869541, 0.011945489794015884, -0.027836527675390244, -0.011428486555814743, 0.006595189217478037, -0.0022448813542723656, 0.018870607018470764, -0.006880901288241148, -0.007442121393978596, 0.018938634544610977, -0.019428426399827003, 0.047455430030822754, 0.004486361052840948, 0.025156276300549507, 0.009884280152618885, -0.007455726619809866, 0.004479558672755957, 0.0060815876349806786, -0.011571342125535011, -0.017047492787241936, 0.020108694210648537, 0.017918234691023827, -0.001991481753066182, -0.0018707343842834234, -0.018734553828835487, 0.010863864794373512, -0.0341494046151638, -0.02063930220901966, 0.01833999902009964, 0.006438727490603924, -0.013537313789129257, -0.017387624830007553, -0.008319665677845478, -0.042475875467061996, 0.0007708275807090104, -0.007687017787247896, 0.025197090581059456, -0.007033961359411478, -0.01696586050093174, -0.0396459624171257, 0.0018911423394456506, 0.01340126059949398, 0.032788872718811035, 0.021360386162996292, -0.012727796100080013, -0.027387551963329315, -0.008081572130322456, -0.02185017801821232, -0.017401231452822685, -0.008857076987624168, 0.018775369971990585, -0.020367195829749107, 0.0039591542445123196, 0.00916999951004982, 0.005414925515651703, -0.003489769995212555, -0.010986313223838806, -0.015754984691739082, 0.02322431653738022, 0.021074673160910606, 0.01004074141383171, -0.003843508893623948, 0.012115555815398693, 0.02629912458360195, 0.015482878312468529, -0.006136008538305759, 0.0008686159853823483, -0.012367255054414272, 0.00993870198726654, 0.0027703875675797462, 0.015251587145030499, -0.007353686727583408, -0.008115585893392563, -0.021768545731902122, -0.02032637968659401, 0.010741416364908218, 0.00019557678024284542, -0.011428486555814743, -0.04209492355585098, -0.017945444211363792, 6.244638643693179e-05, -0.024027032777667046, 0.015727773308753967, 0.0014651251258328557, 0.02266649715602398, -0.009319658391177654, 0.017387624830007553, -0.031509969383478165, 0.026122255250811577, -0.012646164745092392, 0.012462492100894451, -0.013891053386032581, 0.0014175064861774445, 0.013550919480621815, -0.018217552453279495, 0.001177712343633175, -0.02827189862728119, -0.013850237242877483, 0.003244873834773898, 0.0045577893033623695, 0.008047559298574924, 0.0011743110371753573, 0.00792511086910963, 0.016571305692195892, -0.007693820167332888, 0.020544065162539482, -0.01154413167387247, -0.02405424229800701, 0.0037788834888488054, 0.01624477654695511, 0.007197225466370583, 0.003965957090258598, -0.010938693769276142, 0.019632507115602493, 0.011013523675501347, 0.023523634299635887, -0.004925133194774389, -0.03447593376040459, 0.002738074865192175, -0.00022342520242091268, 0.008183612488210201, 0.011775422841310501, -0.008693812415003777, -0.019550874829292297, -0.02405424229800701, -0.017156334593892097, 0.010918285697698593, 0.003316301852464676, -0.010353664867579937, 0.0071019879542291164, 0.016340013593435287, 5.8938763686455786e-05, -0.0017516876105219126, -0.006207436788827181, -0.0012891060905531049, 0.010142781771719456, -0.02134677954018116, -0.04503367841243744, -0.009380882605910301, -0.016652937978506088, 0.04051670432090759, 0.005496557801961899, 0.010891075246036053, 0.00010368757648393512, -0.030448753386735916, -0.029632432386279106, -0.00696593476459384, -0.004489762708544731, 0.01594545878469944, 0.047509849071502686, 0.012945481576025486, 0.00397275947034359, 0.026353545486927032, -0.011251617223024368, -0.0026071234606206417, -0.006258456967771053, -0.009088368155062199, -0.004010174423456192, 0.007850281894207, -0.008802655152976513, 0.018013471737504005, -0.007108790799975395, -0.004663230385631323, 0.011598553508520126, -0.00845571979880333, -0.002494879299774766, 0.005098601337522268, 0.00309011316858232, 0.01431281864643097, 0.005649617873132229, -0.00013647857122123241, 0.0064625367522239685, 0.01391146145761013, -0.006112199276685715, -0.02297942154109478, -0.00606117956340313, 0.0011972700012847781, -0.01342847105115652, -0.04321056231856346, -0.022707313299179077, 0.006792466621845961, -0.0204896442592144, 0.009652988985180855, -0.01726517826318741, -0.008061164058744907, -0.020925015211105347, -0.0304215420037508, 0.04008133336901665, 0.005129213444888592, 0.00625505531206727, 0.033850088715553284, -0.010618968866765499, -0.013999896124005318, -0.0014030507300049067, 0.023673294112086296, 0.007646201644092798, -0.02266649715602398, 0.005625808611512184, -0.031863708049058914, 0.035999733954668045, -0.012414873577654362, 0.012095147743821144, -0.017033886164426804, 0.012591742910444736, -0.01130603812634945, 0.0076598068699240685, -0.020856987684965134, 0.03368682414293289, 0.011646172031760216, 0.016367224976420403, -0.005033975932747126, 0.018680132925510406, -0.016190355643630028, 0.00909517053514719, -0.015020295977592468, -0.02506103739142418, 0.0007831574184820056, 0.008999933488667011, -0.0023758327588438988, 0.014190370216965675, -0.011761817149817944, -0.0038537129294127226, 0.011013523675501347, -0.032680027186870575, 0.0076189907267689705, 0.20908688008785248, -0.026095043867826462, -0.010564547032117844, 0.02047603763639927, -0.016067907214164734, 0.004319695755839348, 0.019237952306866646, -0.013884250074625015, -0.009197210893034935, -0.006598590407520533, -0.0059047178365290165, 0.02868005819618702, -0.019727744162082672, 0.00452377600595355, 0.020802566781640053, -0.007115593180060387, -0.03540109843015671, 0.007850281894207, -0.004567993339151144, -0.06410836428403854, 0.0024897772818803787, -0.013101943768560886, -0.020339984446763992, -0.005972744897007942, 0.010802640579640865, 0.0004906426183879375, -0.0037346661556512117, -0.0002920896513387561, 0.024271927773952484, -0.004972752183675766, -0.032271869480609894, -0.017904628068208694, -0.009074762463569641, 0.0006679372163489461, -0.013163167051970959, 0.01118359062820673, 0.01752367988228798, -0.0021054265089333057, 0.00486390944570303, -0.004153030458837748, -0.010836654342710972, 0.005812881980091333, -0.005050982814282179, 0.013700578361749649, -0.025142669677734375, 0.017006676644086838, 0.006295871455222368, -0.00797272939234972, -0.011836647056043148, 0.009108776226639748, -0.029741276055574417, 0.006768656894564629, 0.04696563631296158, 0.013795815408229828, 0.008727826178073883, -0.010911483317613602, -0.002430254127830267, 0.009870674461126328, -0.007986335083842278, 0.012163175269961357, -0.009993122890591621, 0.03550994023680687, 0.0015033901436254382, 0.025890963152050972, -0.022326365113258362, 0.01085706241428852, -0.006268661003559828, 0.01123801153153181, 0.013285615481436253, -0.03025827743113041, 0.006931921001523733, -0.00592172471806407, -0.010163189843297005, -0.0004838399472646415, -0.016380829736590385, -0.006479543633759022, 0.02180936187505722, -0.014843426644802094, -0.003386029275134206, -0.014979480765759945, 0.018925029784440994, -0.015863828361034393, 0.008782248012721539, -0.010850259102880955, -0.008693812415003777, -0.020190326496958733, 0.007360489573329687, -0.006204035598784685, -0.019550874829292297, 0.015714168548583984, -0.009333264082670212, -0.02659844234585762, 0.0008554357918910682, -0.01001353096216917, 0.0032023570965975523, -0.017605310305953026, 0.017618916928768158, 0.009360474534332752, 0.004129221197217703, -0.0074081080965697765, -0.020040666684508324, -0.01253051869571209, 0.014435267075896263, -0.005707440432161093, -0.025700489059090614, -0.024190295487642288, 0.013816223479807377, 0.0063094766810536385, 0.018761765211820602, -0.002891134936362505, 0.02808142453432083, -0.010115571320056915, -0.004516973160207272, -0.02648959867656231, 0.011095155961811543, 0.009224421344697475, -0.02058488130569458, -0.0026020214427262545, -0.00947611965239048, -0.007333278656005859, 0.016584910452365875, -0.009530541487038136, 0.013850237242877483, -0.002249983372166753, -0.0022312758956104517, -0.001079923938959837, -0.013877447694540024, 0.00457139452919364, 0.0021343377884477377, -0.010020333342254162, 0.022897789254784584, -0.038231007754802704, -0.00797272939234972, 0.0023078059311956167, -0.02878890186548233, 0.016843412071466446, 0.0002521239803172648, -0.01676177978515625, 0.020625697448849678, -0.011557737365365028, -0.007503345608711243, 0.0026734494604170322, -0.0021700519137084484, 0.01843523606657982, 0.007734636310487986, -0.007333278656005859, 0.013945474289357662, -0.021999835968017578, -0.0017465855926275253, -0.014231186360120773, -0.0423942431807518, 0.010115571320056915, -0.0063094766810536385, -0.008870682679116726, 0.008428508415818214, -0.0030492970254272223, -0.006986342370510101, -0.027727684006094933, 0.01691143959760666, 0.030285488814115524, -0.025999806821346283, 0.0097550293430686, 0.020013457164168358, -0.018584895879030228, -0.01340126059949398, -0.014353634789586067, -0.17393067479133606, 0.028353530913591385, 0.023510029539465904, -0.021469227969646454, 0.034367091953754425, 0.029278693720698357, 0.035428307950496674, -0.007707425858825445, -0.005632610991597176, -0.013795815408229828, 0.0015374035574495792, 0.022734524682164192, -0.03469362109899521, -0.02012229897081852, -0.002710864180698991, 0.0015135941794142127, -0.0038265022449195385, 0.03216302767395973, 0.04631258174777031, 0.01100672036409378, 0.010652981698513031, -0.01121080107986927, 0.013251601718366146, 0.0032295677810907364, 0.017999866977334023, 0.013877447694540024, 0.0065237609669566154, 0.02444879710674286, 0.01344887912273407, -0.019686928018927574, -0.028054213151335716, 0.005020370706915855, -0.012033924460411072, -0.03088412433862686, 0.020612090826034546, 0.013734592124819756, 0.003447253257036209, 0.015455666929483414, -0.006336687598377466, 0.008550956845283508, 0.010714205913245678, 0.007204027846455574, 0.01210195105522871, 0.004227859899401665, -0.007278857287019491, 0.036707211285829544, 0.0009498228901065886, -0.0007049267296679318, 0.006204035598784685, -0.01767333783209324, 0.011278827674686909, -0.0051224110648036, 0.027537209913134575, -0.004704046528786421, 0.03738747537136078, 0.01057135034352541, 0.010809442959725857, 0.008088375441730022, -0.012863850221037865, -0.0219045989215374, 0.005877507384866476, -0.023809347301721573, 0.017455652356147766, -0.016925044357776642, -0.005268668290227652, -0.0034455526620149612, -0.01457132026553154, 0.010047544725239277, -0.019047478213906288, 0.003300995798781514, 0.0019421624019742012, 0.026571230962872505, 0.024217506870627403, -0.004622414708137512, -0.001170909614302218, 0.00970741081982851, -0.010217610746622086, 0.0060781859792768955, -0.0074285161681473255, -0.021224331110715866, -0.0266936793923378, 0.038339849561452866, -0.010618968866765499, -0.016285592690110207, -0.005527169909328222, 0.014544109813869, -0.011945489794015884, -0.028407951816916466, -0.03164602443575859, 0.0016530489083379507, 0.019346794113516808, -0.03001338243484497, -0.01118359062820673, -0.01372778881341219, 0.027999792248010635, 0.02282976172864437, 0.014285608194768429, -0.020040666684508324, 0.013013508170843124, -0.0031853504478931427, 0.004074799828231335, 0.0014753291616216302, -0.01036726962774992, 0.03417661786079407, 0.024217506870627403, 0.021822966635227203, -0.0021411406341940165, 0.0006249953294172883, 0.043591514229774475, 0.0178229957818985, -0.011836647056043148, -0.005146220326423645, 0.00853054877370596, 0.010707403533160686, 0.0051734307780861855, 0.030802492052316666, -0.006391108967363834, -0.015591721050441265, 0.004591802600771189, -0.02516988106071949, 0.06933281570672989, -0.013816223479807377, -0.004673434421420097, 0.011659776791930199, -0.013054324313998222, -0.05736011639237404, -0.117767833173275, 0.004187043756246567, 0.006510155741125345, 0.006751650478690863, -0.0017287286464124918, 0.0034591578878462315, -0.013612143695354462, -0.003615619381889701, 0.0020510051399469376, 0.0133468396961689, -0.03025827743113041, -0.032788872718811035, -0.003952351398766041, -0.019374005496501923, 0.028353530913591385, -0.005986350122839212, 0.004588401410728693, -0.01309514045715332, 0.020367195829749107, 0.03107459843158722, -0.004656428005546331, -0.02409505844116211, 0.009496527723968029, -0.026911364868283272, 0.019904613494873047, -0.006064580753445625, -0.030122224241495132, 0.01681620068848133, 0.022598471492528915, 0.01276180986315012, -0.0034523552749305964, -0.00823123101145029, 0.023822952061891556, 0.0013877447927370667, 0.002314608544111252, -0.007367291953414679, -0.03178207576274872, -0.01059856079518795, 0.0180951040238142, -0.02654401957988739, 0.006527162156999111, -0.002161548472940922, 0.008652997203171253, -0.01804068125784397, -0.002765285549685359, -0.002416648669168353, -0.0057516577653586864, 0.002617327496409416, 0.005054384004324675, -0.018911423161625862, -0.012312833219766617, 0.0045781973749399185, -0.03327866271138191, -0.011782225221395493, 0.037469107657670975, -0.01961890235543251, 0.01579580083489418, 0.012333241291344166, -0.016340013593435287, -0.0005705739604309201, -0.01906108297407627, 0.0136801702901721, -0.004452347755432129, 0.019931824877858162, 0.010707403533160686, -0.010408085770905018, -0.022530443966388702, -0.017237966880202293, 0.03853032737970352, 0.009877477772533894, -0.014557714574038982, 0.022884182631969452, -0.02129235863685608, 0.0046156118623912334, -0.01553729921579361, -0.001581620890647173, -0.020952224731445312, -0.008095177821815014, 0.017700549215078354, 0.0005182784516364336, 0.001531451242044568, -0.020720934495329857, 0.0035407899413257837, 0.0006258456851355731, 0.026612047106027603, 0.01393186952918768, 0.008959117345511913, -0.010081557556986809, -0.0018486257176846266, -0.033305875957012177, 0.0021700519137084484, 0.015387640334665775, 0.0019982843659818172, -0.02353723905980587, 0.010809442959725857, 0.04538741707801819, 0.019401216879487038, -0.0015408048639073968, -0.012115555815398693, -0.004438742529600859, -0.02838074043393135, 0.0015144444769248366, -0.053468991070985794, 0.03254397585988045, 0.000515302293933928, 0.010306045413017273, -0.002993175061419606, -0.019836587831377983, 0.01971413940191269, -0.02012229897081852, -0.005098601337522268, 0.01551008876413107, -0.0006313728517852724, 0.022326365113258362, -0.01342166867107153, -0.009775437414646149, -0.017156334593892097, -0.01991821825504303, -0.006785663776099682, -0.0109522994607687, 0.003741468768566847, -0.006574781145900488, 0.0025510014966130257, -0.005261865444481373, 0.019850192591547966, -0.0017108715837821364, -0.016013486310839653, 0.0030595010612159967, 0.006755051668733358, 0.01685701683163643, -0.0010221012635156512, -0.022584866732358932, 0.00942850112915039, -0.03583646938204765, -0.00729926535859704, -0.017197150737047195, -0.00043792190263047814, 0.021727729588747025, -0.02440798096358776, 0.00334351253695786, 0.003741468768566847, 0.04881596192717552, -0.01156453974545002, -0.003965957090258598, 0.0011828143615275621, -0.03398614004254341, 0.011680184863507748, 0.030612017959356308, -0.018829792737960815, -0.007258449215441942, 0.01967332325875759, -0.025455592200160027, 0.006149614229798317, 0.023972610011696815, 0.004996561445295811, -0.02038080058991909, -0.00728566013276577, -0.028952166438102722, 0.024067848920822144, 0.003183649852871895, 0.003170044394209981, -0.026584835723042488, 0.007108790799975395, -0.0019608698785305023, 0.009850266389548779, -0.003474463941529393, 0.010374072007834911, -0.01363255176693201, -0.011925081722438335, -0.009299250319600105, -0.026625651866197586, -0.021387595683336258, -0.0044251373037695885, 0.010122373700141907, 0.011299235746264458, 0.005289076361805201, 0.011326446197926998, 0.04021738842129707, -0.006955730728805065, 0.001176862046122551, -0.031918130815029144, 0.007687017787247896, -0.010537336580455303, -0.015428456477820873, -0.039809226989746094, 0.0007410658872686327, 0.02659844234585762, -0.006782262586057186, 0.0002555253158789128, 0.010748219676315784, -0.00652035977691412, 0.014911453239619732, 0.008625785820186138, -0.006306075491011143, -0.0066972291097044945, -0.004261873196810484, 0.019496453925967216, 0.01344887912273407, -0.007564569357782602, 0.008360481821000576, 0.014081527478992939, 0.030856912955641747, -0.021278753876686096, 0.014884242787957191, 0.0072380416095256805, -0.027373945340514183, -0.005976146087050438, 0.001908149104565382, 0.0010646178852766752, -0.02756442129611969, 0.011863857507705688, 0.020707329735159874, 0.009231223724782467, 0.004697244148701429, 0.021768545731902122, 0.026054227724671364, -0.010462507605552673, 0.012639361433684826, 0.008108783513307571, -0.01072100829333067, -0.010081557556986809, 0.037577953189611435, 0.018067892640829086, 0.03580925613641739, 0.01685701683163643, 0.002207466633990407, 0.015265192836523056, 0.023360369727015495, 0.019591690972447395, 0.03129228577017784, -0.004567993339151144, 0.019224347546696663, 0.002634334145113826, 0.01370738074183464, -0.038176584988832474, 0.014122343622148037, 0.0026530413888394833, -0.048435013741254807, -0.005013568326830864, 0.002409846056252718, -0.01843523606657982, 0.03795890137553215, 0.019741348922252655, -0.01243528164923191, -0.0017993063665926456, -0.010789035819470882, 0.024435192346572876, -0.0002244881325168535, 0.010231216438114643, -0.005129213444888592, -0.01459853071719408, 0.016938649117946625, -0.014285608194768429, 0.01273459941148758, -0.020720934495329857, -0.006724439561367035, 0.027850132435560226, 0.0037720808759331703, 0.017564496025443077, -0.01670735888183117, -0.024067848920822144, 0.022544050589203835, 4.089574213139713e-05, 0.021414807066321373, -0.0028503190260380507, -0.0031666432041674852, 0.02318350039422512, 0.0028520196210592985, 0.012469295412302017, -0.007319673430174589, -0.033251453191041946, 6.606031092815101e-05, 0.013918263837695122, -0.014843426644802094, -0.013666564598679543, 0.025156276300549507, 0.007884294725954533, -0.011652974411845207, -0.0036326260305941105, 0.008945511654019356, -0.003768679453060031, -0.015768589451909065, 0.017959050834178925, -0.024775326251983643, -0.010795838199555874, 0.016544094309210777, 0.005588393658399582, -0.017564496025443077, -0.011761817149817944, -0.031809285283088684], "981a4157-1137-47cf-9800-5dd6a7c228b0": [-0.005555866286158562, -0.015733063220977783, -0.005309395492076874, 0.033410508185625076, -0.0017304315697401762, 0.0281524620950222, -0.017102345824241638, -0.01951228454709053, -0.02145666629076004, -0.01990937627851963, 0.029494358226656914, 0.02003261260688305, 0.008174620568752289, -0.006233661435544491, 0.003810030408203602, 0.00680191395804286, 0.026125922799110413, 0.007202429231256247, 0.03779221326112747, -0.026235464960336685, -0.014500708319246769, 0.005747565999627113, 0.008482709527015686, 0.022113922983407974, -0.012809643521904945, 0.029056187719106674, 0.02768690511584282, -0.008551172912120819, 0.008660716004669666, -0.023346276953816414, -0.024962032213807106, 0.023866605013608932, -0.001584089477546513, 0.0036628323141485453, -0.03680633008480072, -0.010714640840888023, -0.0023397626355290413, -0.020908953621983528, 0.015062114223837852, -0.006675255484879017, 0.010166927240788937, -0.014706101268529892, -0.01756790280342102, 0.008407398127019405, -0.03239724040031433, 0.015103192999958992, -0.0034916719887405634, -0.004378282930701971, -0.02586575783789158, 0.010940572246909142, 0.0024150731042027473, -0.0003996595332864672, -0.030233772471547127, 0.008195159956812859, -0.005518211051821709, -0.023688597604632378, 0.031356584280729294, 0.022237157449126244, 0.0018108770018443465, 0.014788257889449596, 0.0014189196517691016, -3.214606113033369e-05, 0.002214815467596054, 0.004700064193457365, -0.033574823290109634, -0.013316278345882893, -0.018389472737908363, -0.019703984260559082, -0.027810141444206238, -0.012453630566596985, 0.04795229434967041, 0.022552093490958214, -0.007900764234364033, 0.02177160233259201, 0.029494358226656914, -0.026249157264828682, -0.012741180136799812, -0.006271316669881344, -0.021210195496678352, -0.004330358002334833, -0.005381282884627581, -0.03732666000723839, 0.0010577712673693895, 0.022702714428305626, 0.02503049559891224, -0.01037232019007206, 0.007353050634264946, 0.04096895083785057, -0.015678292140364647, -0.025249581784009933, 0.020292775705456734, 0.010618790984153748, 0.009406975470483303, 0.014801951125264168, 0.005436053965240717, 0.019881991669535637, -0.005525057669728994, 0.025509744882583618, -0.009851992130279541, -0.016992803663015366, -0.029056187719106674, -0.01342582143843174, -0.0030586363282054663, -0.005555866286158562, -0.03228769823908806, 0.002221661852672696, -0.021566210314631462, 0.0009670561994425952, 0.023455820977687836, -0.013487438671290874, -0.018334701657295227, 0.011269200593233109, -0.01725296676158905, -0.0400652252137661, -0.014185773208737373, -0.015322278253734112, 0.00922212190926075, -0.01662309654057026, -0.011385589838027954, -0.02070356160402298, -0.0004908024566248059, 0.002341474173590541, 0.00312881194986403, -0.024496475234627724, 0.0017501150723546743, 0.008318395353853703, -0.004778798203915358, -0.023305200040340424, 0.0030278274789452553, 0.003168178955093026, 0.025988994166254997, 0.01364490669220686, 0.0101121561601758, -0.01144036091864109, -0.008599097840487957, -0.0011014171177521348, -0.022497322410345078, -0.013781835325062275, -0.009406975470483303, -0.029494358226656914, 0.027851218357682228, 0.013692831620573997, -0.0064013986848294735, -0.03513580560684204, -0.022620556876063347, 0.029494358226656914, 0.02323673479259014, 0.003642293158918619, -0.02264794334769249, 0.03061717189848423, 0.016595711931586266, -0.012659022584557533, 0.021511437371373177, -0.017499439418315887, 0.006209698971360922, -0.001975191058591008, -0.0005455737700685859, 0.004682948347181082, 0.011529363691806793, -0.01366544608026743, 0.033574823290109634, 0.02042970433831215, 0.021155424416065216, 0.0011193889658898115, 0.01387768518179655, 0.0220043808221817, 0.006199429277330637, -0.015048421919345856, -0.02411307580769062, -0.012330395169556141, 0.018567480146884918, 0.02938481606543064, -0.014719793573021889, 0.008037691935896873, -0.008612791076302528, 0.005918726325035095, 0.03831254318356514, 0.017102345824241638, -0.028727561235427856, 0.007168197073042393, -0.03176736831665039, -0.010036845691502094, 0.03373913839459419, 0.019101500511169434, -0.01610277034342289, 0.006206275895237923, -0.02423631213605404, -0.009283740073442459, -0.0036628323141485453, -0.0014873838517814875, 0.013959841802716255, 0.008633330464363098, -0.005360743496567011, -0.024715561419725418, -0.6449871063232422, -0.04540542885661125, -0.017581595107913017, -0.01593845523893833, -0.010119002312421799, 0.0055900984443724155, 0.006647869478911161, -0.008325241506099701, -0.011303432285785675, 0.010002613067626953, -0.026564093306660652, 0.016924340277910233, -0.007510518189519644, -0.0024938068818300962, -0.038613785058259964, -0.019608134403824806, 0.009235815145075321, -0.026043765246868134, -0.014350087381899357, -0.01593845523893833, -0.00736674340441823, -0.011597828008234501, -0.003032962093129754, 0.014445937238633633, -0.007284586317837238, -0.012241391465067863, 0.017636366188526154, 0.011282892897725105, 0.0005507085588760674, 0.02712549827992916, -0.02509896084666252, 0.020046304911375046, 0.017554210498929024, 0.024181541055440903, 0.04841785132884979, -0.018581172451376915, -0.011508825235068798, 0.01848532259464264, 0.014678715728223324, 0.003260605502873659, -1.569861706229858e-05, -0.030452856793999672, 0.027700597420334816, -0.011994920670986176, 0.0072640469297766685, -0.008852415718138218, 0.032972339540719986, -0.024003533646464348, 0.020443396642804146, 0.016746332868933678, 0.005398398730903864, -0.001724440953694284, -0.001894745510071516, -0.012926032766699791, -0.010824183002114296, -0.008263623341917992, 0.024592325091362, -0.007558443117886782, 0.00926320068538189, 0.003878494491800666, 0.003144216490909457, 0.03368436545133591, -0.014528093859553337, -0.00274712429381907, -0.019703984260559082, 0.02394876256585121, -0.03439639136195183, 0.012152387760579586, 0.03749097138643265, -0.018430551514029503, 0.004251623991876841, 0.012926032766699791, 0.003315376816317439, -0.016089076176285744, 0.01610277034342289, 0.02003261260688305, 0.01733512431383133, -0.024660790339112282, 0.006486978847533464, -0.0013110885629430413, -0.00583999278023839, -0.02507157437503338, -0.028371546417474747, -0.030918413773179054, 0.03308188170194626, -0.01606169156730175, -0.008955111727118492, 0.024729253724217415, 0.014267930760979652, 0.01451440155506134, 0.003871648106724024, 0.017198195680975914, 0.01380237378180027, 0.000650837377179414, 0.03217815235257149, 0.01971767656505108, 0.009187890216708183, 0.0002494662767276168, 0.018060844391584396, -0.012802797369658947, 0.001990595366805792, 0.005371013190597296, 0.011590981855988503, -0.007106579374521971, -0.009728756733238697, -0.0072503541596233845, -0.03784698620438576, -0.01975875534117222, 0.03743620216846466, -0.02204545959830284, -0.0065999445505440235, -0.014103616587817669, -0.015842605382204056, -0.004251623991876841, 0.0313291996717453, -0.020607711747288704, 0.003957228269428015, -0.0015070672379806638, 0.027892297133803368, -0.013857145793735981, 0.027700597420334816, -0.0180471520870924, 0.0018433973891660571, -0.0039058802649378777, 0.020114770159125328, 0.029302658513188362, 0.019881991669535637, 0.001905015204101801, -0.006853261962532997, -0.02823461778461933, 0.0009602098143659532, -0.0031733138021081686, 0.024660790339112282, 0.010974804870784283, 0.010742026381194592, -0.019101500511169434, 0.0108104906976223, 0.01978614181280136, 0.0392710417509079, -0.024167846888303757, -0.014856722205877304, -0.0035259041469544172, 0.0112007362768054, -0.015322278253734112, -0.004433054011315107, -0.047733210027217865, -0.001465132925659418, -0.006641023326665163, -0.029603902250528336, 0.019101500511169434, -0.017348816618323326, -0.020210620015859604, -0.0024955186527222395, -0.00516562070697546, 0.003243489423766732, -0.012905493378639221, -0.02252470701932907, 0.010105310007929802, -0.003717603860422969, -0.022743793204426765, -0.0015601270133629441, 0.024263696745038033, -0.023072421550750732, 0.0048027606680989265, 0.018622251227498055, -0.020635096356272697, -0.008948265574872494, 0.028782332316040993, -0.005182736553251743, -0.0511564202606678, 0.004525480791926384, -0.011727910488843918, -0.01729404553771019, 0.04220130667090416, -0.027591055259108543, -0.01163890678435564, -0.010050537995994091, 0.012083923444151878, -0.0029867489356547594, 0.005699641071259975, -0.005744142923504114, 0.018457936123013496, -0.003274298273026943, -0.01473348680883646, 0.018594864755868912, -0.002815588377416134, -0.0019306892063468695, 0.0015276065096259117, 0.003697064472362399, 0.03557397797703743, 0.014267930760979652, 0.00594953540712595, -0.003772375173866749, 0.004778798203915358, 0.0021377932280302048, -0.01934797130525112, 0.017157118767499924, 0.026714714244008064, 0.011365050449967384, 0.014391166158020496, 0.0072366613894701, 0.009550750255584717, 0.027864912524819374, -0.004443323705345392, 0.015952149406075478, -0.02859063260257244, -0.009119425900280476, -0.017033882439136505, 0.04989667981863022, -0.029001416638493538, -0.008400551974773407, -0.0281524620950222, -0.008996190503239632, -0.02720765583217144, 0.028535861521959305, 0.025728831067681313, -0.0023603017907589674, -7.434779399773106e-05, 0.0064253611490130424, -0.0016671022167429328, 0.01366544608026743, -0.010858415625989437, -0.004029115661978722, -0.01455548033118248, -0.014665022492408752, -0.0014736909652128816, 0.01513057854026556, 0.024564940482378006, 0.009249507449567318, 0.0023534554056823254, 0.026509322226047516, 0.003005576552823186, -0.0147745655849576, 0.008660716004669666, 0.008106156252324581, -0.007763835601508617, 0.025920530781149864, -0.006541750393807888, 0.03546443209052086, -0.03790175914764404, 0.003039808478206396, 0.0042995489202439785, 0.01848532259464264, -0.026167001575231552, 0.006795067805796862, 0.0155687490478158, 0.02153882384300232, 0.008215699344873428, 0.022661635652184486, 0.008653869852423668, -0.010933726094663143, -0.01610277034342289, -0.003503653220832348, 0.003322223201394081, 0.015541363507509232, -0.03365698084235191, -0.0042618936859071255, 0.011111732572317123, 0.02070356160402298, 0.03338312357664108, 0.005627753678709269, 0.002266163704916835, 0.011940148659050465, 0.01429531630128622, 0.05981028825044632, -0.004546020179986954, 0.0026290237437933683, 0.01689695380628109, -0.03891502693295479, -0.02514003776013851, -0.020525554195046425, -0.006798490881919861, 0.011330817826092243, 0.0012083923211321235, 0.010057385079562664, 0.008872955106198788, 0.018649635836482048, -0.004795914050191641, 0.026440856978297234, 0.00394695857539773, -0.027221348136663437, -0.027098113670945168, 0.009920456446707249, 0.0011698813177645206, -0.002105272840708494, -0.00525462394580245, -0.018868722021579742, -0.007079193834215403, -0.018307315185666084, 0.03691587224602699, -0.019060421735048294, 0.026947492733597755, 0.020443396642804146, -0.018074536696076393, -0.0025006532669067383, 0.002943958854302764, 0.035793062299489975, -0.009495978243649006, 0.030151614919304848, 0.004771951586008072, -0.0056380233727395535, -0.006699217949062586, -0.01863594353199005, 0.012563172727823257, 0.007647446356713772, 0.00041249653440900147, -0.000841681263409555, -0.028426317498087883, 0.010338087566196918, -0.00583999278023839, -0.011755296029150486, -0.029713444411754608, 0.001145063084550202, -0.0003202838997822255, 0.011276046745479107, 0.0040770405903458595, -0.004080463666468859, 0.005066347774118185, 0.023209350183606148, -0.017636366188526154, -0.020772024989128113, -0.007010729517787695, -0.02831677533686161, -0.009468592703342438, 0.10001244395971298, 0.02248363010585308, -0.011810067109763622, 0.006267893593758345, -0.0008968804613687098, 0.006199429277330637, 0.00047668168554082513, -0.023223042488098145, 0.02724873460829258, -0.006983343977481127, 0.010139541700482368, -0.014418551698327065, 0.02208653651177883, -0.011988073587417603, -0.001210103975608945, -0.021716831251978874, -0.01428162306547165, -0.007400975562632084, 0.004860955290496349, -0.006870378274470568, 0.008674408309161663, -0.00022657356748823076, 0.021360816434025764, 0.017786988988518715, -0.037929143756628036, -0.013747602701187134, 0.024263696745038033, -0.005802337545901537, 0.015157964080572128, -0.007839146070182323, -0.009468592703342438, 0.007969227619469166, 0.02700226381421089, 0.030288543552160263, -0.021086961030960083, -0.013179350644350052, -0.003721026936545968, 0.021648366004228592, -0.0013444648357108235, -0.011721063405275345, 0.015815220773220062, 0.00924266129732132, 0.012227698229253292, -0.009995766915380955, 0.0009328241576440632, 0.003765528555959463, -0.0029935953207314014, -0.015965841710567474, -0.04042124003171921, 0.002974767703562975, 0.049239423125982285, -0.010119002312421799, -0.012063384987413883, -0.008571712300181389, 0.015596135519444942, 0.005822876468300819, -0.010495555587112904, -0.005083463620394468, -0.01534966379404068, 0.02963128685951233, -0.00947543978691101, 0.004460440017282963, 0.03195906803011894, -0.005172467324882746, -0.008578559383749962, -0.03184952586889267, -0.025715136900544167, -0.007181890308856964, -0.006935419049113989, 0.0030483666341751814, -0.008249931037425995, -0.002957651624456048, -0.02570144459605217, -0.0035087880678474903, 0.00483699282631278, -0.0040017301216721535, 0.013021882623434067, -0.005833146162331104, -0.001465132925659418, -0.00492941914126277, -0.0034608631394803524, -0.020854182541370392, 0.015267507173120975, -0.012392012402415276, -0.02252470701932907, 0.004248200915753841, 0.002259317087009549, 0.022237157449126244, -0.015240121632814407, 0.021073266863822937, 0.009352203458547592, 0.008927726186811924, 0.011385589838027954, -0.018868722021579742, 0.0010286739561706781, 0.0009080058662220836, -0.012823336757719517, 0.0013350510271266103, 0.001659400062635541, -0.009194736368954182, 0.00581945339217782, -0.027810141444206238, 0.008297855965793133, -0.014747179113328457, 0.0050252689979970455, -0.02681056410074234, 0.01777329482138157, 0.03124704211950302, -0.0325341671705246, -0.022360393777489662, 1.422436525899684e-06, -0.016636790707707405, 0.026988571509718895, -0.007058654446154833, -0.0014813932357355952, 0.012159233912825584, 0.023811833932995796, 0.009845145978033543, 0.011289739981293678, 0.011967535130679607, -0.004059924744069576, -0.025249581784009933, 0.017362510785460472, -0.00231066532433033, -0.03576567769050598, -0.012214005924761295, 0.011152811348438263, -0.01721188984811306, 0.016157541424036026, 0.007661139126867056, 0.0032503358088433743, 0.012706947512924671, 0.012309855781495571, -0.009276892989873886, -0.01733512431383133, -0.008414245210587978, -0.007962381467223167, -0.003922996111214161, -0.014596558175981045, 0.01880025677382946, -0.011762142181396484, -0.007092886604368687, 0.0073872827924788, -0.02530435286462307, -0.0025126344989985228, -0.02216869406402111, -0.022771179676055908, 0.020457090809941292, 0.00018506716878619045, -0.009352203458547592, -0.01570567861199379, -0.040749866515398026, -0.03121965564787388, -0.004210545681416988, -0.012939726002514362, -0.03486194834113121, 0.005394975654780865, -0.003981190733611584, 0.029302658513188362, 0.004179736599326134, 0.03505364805459976, -0.014418551698327065, 0.018184080719947815, 0.0003029539075214416, -0.003717603860422969, 0.004289279691874981, -0.012474169954657555, -0.021785294637084007, -0.0428311787545681, -0.00540524534881115, 0.026317622512578964, 0.01429531630128622, 0.013282046653330326, 0.0056380233727395535, -0.0013401858741417527, 0.053046029061079025, -0.014801951125264168, -0.007161350920796394, -0.02375706285238266, -0.035793062299489975, -0.014158387668430805, -0.002486960496753454, 0.004874648060649633, -0.003950382117182016, -0.022059151902794838, -0.0011236679274588823, 0.050033606588840485, 0.007517364341765642, 0.0070518082939088345, -0.017184503376483917, 0.002863513305783272, -0.003786067944020033, -0.000797607412096113, -0.0065246340818703175, -0.003854532027617097, -0.0010757431155070662, 0.008051385171711445, 0.005090310238301754, 0.017362510785460472, -0.012090770527720451, -0.004973920993506908, -0.014815643429756165, -0.012398858554661274, -0.02133343182504177, -0.03653247281908989, 0.00922212190926075, -0.02438693307340145, -0.013727063313126564, 0.015048421919345856, -0.026167001575231552, -0.021675752475857735, -0.018184080719947815, 0.0012469034409150481, -0.039654441177845, -0.0020727524533867836, 0.008421091362833977, 0.007709064055234194, 0.006035115569829941, -0.006877224426716566, -0.007756988983601332, 0.012624790892004967, -0.022771179676055908, 0.05690740793943405, -0.002327781403437257, 0.019662905484437943, 0.0003795481752604246, 0.0008669273811392486, -0.008749719709157944, 0.016390319913625717, -0.00263758166693151, -0.015760449692606926, 0.02582468092441559, 0.008914032950997353, 0.003036385402083397, 0.005973497871309519, -0.03201384097337723, 0.014254237525165081, -0.03562874719500542, -0.03316403925418854, 0.004724026657640934, 0.0063774362206459045, -0.012378320097923279, -0.011310278438031673, -0.009386436082422733, -0.0380660705268383, -0.0034916719887405634, 0.011262353509664536, 0.019443821161985397, -0.013336817733943462, -0.005422361195087433, -0.035957373678684235, 0.01340528205037117, 0.013555902987718582, 0.03565613180398941, 0.029686057940125465, -0.027659520506858826, -0.03929842635989189, -0.01124181505292654, -0.020813103765249252, -0.0054908255115151405, -0.003714180551469326, 0.01610277034342289, -0.03352005034685135, -0.0049020336009562016, 0.0180471520870924, 0.00372787332162261, -0.01098849717527628, -0.009975227527320385, -0.010653022676706314, 0.0220180731266737, 0.02831677533686161, 0.0180471520870924, -0.0005134812090545893, 0.01915627159178257, 0.011673138476908207, 0.020238004624843597, -0.0011570443166419864, 0.006100156344473362, -0.01102272979915142, 0.011269200593233109, 0.004450170323252678, 0.028070304542779922, 0.009448053315281868, -0.01641770452260971, -0.030233772471547127, -0.005121118854731321, 0.013658598996698856, 0.00601799925789237, -0.002029962372034788, -0.04819876700639725, -0.015691984444856644, 0.0010278181871399283, -0.020552940666675568, 0.007483132183551788, 0.002658120822161436, 0.02344212681055069, -0.003912726417183876, 0.027673212811350822, -0.029165731742978096, 0.026084844022989273, -0.009776681661605835, 0.018567480146884918, -0.014747179113328457, 0.00418316014111042, 0.01100903656333685, -0.019169963896274567, 0.006418514531105757, -0.01346690021455288, -0.020196925848722458, -0.0021104076877236366, 0.01606169156730175, 0.02283964306116104, 0.004775375127792358, 0.0006910600932314992, 0.017636366188526154, 0.005562712904065847, 0.02149774506688118, -0.00831154827028513, -0.031822141259908676, -0.0035087880678474903, 0.0009465169860050082, 0.002947381930425763, 0.004083887208253145, -0.02427739091217518, 0.020333854481577873, -0.004011999815702438, 0.01495257206261158, 0.004607637878507376, -0.025194810703396797, 0.0010004325304180384, 0.004426207859069109, -0.0025674058124423027, 0.005045808386057615, -0.02110065333545208, -0.0220043808221817, -0.02712549827992916, -0.015075807459652424, 0.002012846292927861, 0.006048808339983225, -0.018553785979747772, 0.019936762750148773, 0.01274802628904581, -0.003580675460398197, -0.0011305144289508462, -0.002519480884075165, 0.0006392840878106654, 0.01366544608026743, -0.010666715912520885, -0.05203276127576828, -0.016486169770359993, -0.0048883408308029175, 0.04200960695743561, 0.007448900490999222, -0.0038956105709075928, -0.014979957602918148, -0.02664625085890293, -0.023072421550750732, -0.0039640748873353004, 0.002995306858792901, 0.013754448853433132, 0.03677894547581673, 0.02435954660177231, -0.0015327413566410542, 0.016677869483828545, -0.007359896786510944, -0.00734620401635766, -0.00418316014111042, -0.01606169156730175, -0.002404803643003106, -0.00318358326330781, -0.01499365083873272, 0.015226428396999836, -0.018143001943826675, -0.010940572246909142, 0.02323673479259014, -0.0018588019302114844, 0.0005228950176388025, 0.004597368184477091, -0.00034745558514259756, 0.019964149221777916, 0.007976074703037739, 0.00025139181525446475, 0.01649986207485199, 0.009824606589972973, -0.0013607251457870007, -0.02070356160402298, -0.006089886650443077, -0.004121542442589998, -0.02003261260688305, -0.027810141444206238, -0.023510592058300972, 0.012083923444151878, -0.025632981210947037, 0.014226851984858513, -0.0180471520870924, -0.02014215476810932, -0.026167001575231552, -0.037983912974596024, 0.04754151031374931, -0.004953381605446339, 0.006089886650443077, 0.02990514412522316, -0.016718946397304535, -0.00813354179263115, -0.0017364221857860684, 0.025591902434825897, 0.012700101360678673, -0.017896531149744987, -0.004648716188967228, -0.023825526237487793, 0.029521744698286057, 0.004457016475498676, -0.0013975246110931039, -0.004809607286006212, 0.012398858554661274, 0.00023919665545690805, 0.002259317087009549, -0.019334277138113976, 0.029412202537059784, 0.009927302598953247, 0.004768528509885073, -0.013535363599658012, 0.02800184115767479, -0.00285495538264513, 0.009728756733238697, -0.022935492917895317, -0.019484899938106537, -0.00012002622679574415, 0.012022306211292744, -0.001591791631653905, 0.015253813937306404, -0.031164884567260742, -0.01346690021455288, 0.006089886650443077, -0.01048870850354433, 0.01300819031894207, 0.2082405835390091, -0.02407199703156948, -0.0024458819534629583, 0.015924762934446335, -0.022908106446266174, 0.0027727982960641384, 0.013309432193636894, -0.001703901682049036, 0.007989767007529736, -0.004207122605293989, -0.010680408217012882, 0.012344087474048138, -0.01597953401505947, 0.00758582865819335, 0.016883261501789093, -0.006979920901358128, -0.03954489901661873, -0.0014180638827383518, -0.0010825895005837083, -0.06178205460309982, 0.010858415625989437, -0.005833146162331104, -0.0010671850759536028, -0.006798490881919861, 0.011412975378334522, 0.00789391715079546, -0.000954219198320061, 0.0021001379936933517, 0.028097691014409065, -0.015486592426896095, -0.031356584280729294, -0.013528517447412014, 0.0022233736235648394, -0.011454053223133087, -0.02105957455933094, 0.014000920578837395, 0.021757910028100014, 0.00940012838691473, 0.012693255208432674, -0.013282046653330326, 0.005757835693657398, -0.002709469059482217, 0.015267507173120975, -0.0017270083772018552, -0.014131002128124237, 0.02693380042910576, -0.004583675414323807, -0.014884107746183872, -0.014500708319246769, 0.009571289643645287, -0.04061293974518776, 0.01570567861199379, 0.040202151983976364, 0.00838685967028141, -0.00471033388748765, -0.010516094975173473, -0.008551172912120819, 0.009749296121299267, -0.010297009721398354, 0.014418551698327065, -0.012248237617313862, 0.015363357029855251, -0.000930256734136492, 0.027399355545639992, -0.02189483679831028, 0.01821146532893181, 0.003878494491800666, -0.005316241644322872, 0.014459630474448204, -0.028700174763798714, 0.00039816187927499413, -0.012234545312821865, 0.0076406002044677734, -0.001939247245900333, -0.0011493420461192727, -0.003587521845474839, 0.022387780249118805, -0.027303505688905716, 0.0066239070147275925, -0.010974804870784283, 0.011433513835072517, -0.008694947697222233, 0.005394975654780865, -0.01852640137076378, -0.00345572829246521, -0.009831452742218971, 0.005312818568199873, -0.01540443580597639, -0.015075807459652424, 0.025276966392993927, -0.020087383687496185, -0.015527671203017235, 0.008119849488139153, -0.010762565769255161, 0.010009460151195526, -0.013213582336902618, 0.027180271223187447, 0.002411650028079748, 0.0015909358626231551, -0.0155687490478158, -0.009776681661605835, -0.020689869299530983, 0.0018468206981197, -0.013015036471188068, -0.019128885120153427, -0.005631176754832268, 0.005699641071259975, 0.01165944617241621, 0.005983767565339804, -0.006000883411616087, 0.029247887432575226, -0.013398435898125172, -0.008729180321097374, -0.02264794334769249, -0.00181943504139781, 0.014897800981998444, -0.01253578718751669, -0.008818183094263077, 0.001056915381923318, -0.011433513835072517, 0.0027265851385891438, -0.013179350644350052, 0.015007343143224716, 0.006641023326665163, 0.011262353509664536, -0.006541750393807888, -0.01717081107199192, 0.01812930963933468, -0.0011099751573055983, -0.00906465481966734, 0.025646673515439034, -0.04299549013376236, -0.007106579374521971, 0.010221698321402073, -0.02566036581993103, 0.014158387668430805, -0.005648293066769838, -0.010009460151195526, 0.030398085713386536, -0.0028669366147369146, 0.0025776755064725876, -0.00046127726091071963, 0.0002903308195527643, 0.007544750347733498, 0.020361240953207016, -0.009482285939157009, 0.016157541424036026, -0.023866605013608932, -0.0026940645184367895, -0.014829336665570736, -0.02645455114543438, 0.01817038655281067, -0.003690218087285757, -0.002630735281854868, 0.014103616587817669, -0.018348393961787224, -0.015527671203017235, -0.02129235304892063, 0.006767681799829006, 0.030589785426855087, -0.02356536313891411, 0.011474592611193657, 0.022634251043200493, -0.010776258073747158, -0.017458360642194748, -0.015089500695466995, -0.17548732459545135, 0.026659943163394928, 0.017074961215257645, -0.005918726325035095, 0.027659520506858826, 0.027974454686045647, 0.021798986941576004, -0.006041961722075939, 0.0023517438676208258, -0.00318358326330781, 0.012015460059046745, 0.0026358701288700104, -0.02403092011809349, -0.024044612422585487, 0.0016089077107608318, -0.00010761709563666955, -0.014172080904245377, 0.039161499589681625, 0.02768690511584282, 0.02570144459605217, 0.011645752936601639, 0.003104849485680461, 0.0038648017216473818, -0.0004835280997212976, 0.01654094085097313, -0.0028840526938438416, -0.012200312688946724, 0.015650905668735504, 0.006613637786358595, -0.01170052494853735, -0.033574823290109634, 0.004313241690397263, -0.006606791168451309, -0.02129235304892063, 0.015445513650774956, 0.006130965426564217, -0.008475862443447113, 0.00361833069473505, -0.024729253724217415, 0.011830606497824192, 0.005134811624884605, 0.013952995650470257, 0.010653022676706314, 0.009406975470483303, -0.009352203458547592, 0.03121965564787388, 0.0007573847542516887, -0.0010620502289384604, 0.019854605197906494, -0.03009684383869171, 0.00558325182646513, 0.003519057761877775, 0.021073266863822937, 0.011433513835072517, 0.03267109766602516, 0.000971335219219327, 0.0035840985365211964, 0.00032734425622038543, -0.016828490421175957, -0.01697911135852337, -0.003943535499274731, -0.01314511802047491, 0.014500708319246769, -0.020196925848722458, -0.014226851984858513, 0.017321432009339333, -0.009228968061506748, 0.009523364715278149, -0.017239274457097054, 0.012782257981598377, 0.0009388147736899555, 0.017458360642194748, 0.03414992243051529, -0.00636716652661562, -0.001243480248376727, -0.0036936413962394, -0.0035464433021843433, 0.018252544105052948, 8.402905223192647e-05, -0.008715487085282803, -0.030918413773179054, 0.041544049978256226, -0.009824606589972973, -0.019142579287290573, -0.006610214244574308, 0.017280353233218193, -0.02435954660177231, -0.021881144493818283, -0.020443396642804146, 0.007394128944724798, 0.00834578089416027, -0.029494358226656914, -0.011508825235068798, 0.006213122513145208, 0.020991111174225807, 0.013596981763839722, 0.014843028970062733, -0.025208503007888794, 0.007414668332785368, -0.009413821622729301, 0.013487438671290874, -0.022743793204426765, 0.0009182755020447075, 0.03625861927866936, 0.012001766823232174, 0.015897376462817192, 0.004669255577027798, 0.005535326898097992, 0.043926604092121124, 0.014528093859553337, -0.01387768518179655, -0.0017663752660155296, 0.02145666629076004, 0.004419361241161823, 0.010180620476603508, 0.034122537821531296, 0.0010243949946016073, -0.006219968665391207, 0.0029319776222109795, -0.016253391280770302, 0.06539696455001831, -0.0056893713772296906, -0.0005357320187613368, 0.004631600342690945, -0.016718946397304535, -0.042338233441114426, -0.11282893270254135, -0.001431756652891636, 0.016171233728528023, 0.025359123945236206, 0.00285495538264513, 0.01880025677382946, -0.003573829075321555, 0.004087310284376144, 0.010002613067626953, 0.008441630750894547, -0.022935492917895317, -0.03973659873008728, 0.0032092572655528784, -0.004573405720293522, 0.007825452834367752, -0.022743793204426765, 0.0038887641858309507, -0.03795652836561203, 0.020402319729328156, 0.03223292529582977, 0.0025297505781054497, -0.02392137609422207, 0.00747628603130579, -0.02998730167746544, 0.020799411460757256, -0.004364590160548687, -0.030863642692565918, 0.016280775889754295, 0.022223465144634247, 0.025249581784009933, -0.014801951125264168, -0.002273010089993477, 9.7989322966896e-05, -0.006716333795338869, -0.0016884972574189305, -0.02396245487034321, -0.028426317498087883, -0.019252121448516846, 0.012700101360678673, -0.026509322226047516, 0.008551172912120819, -0.000763375370297581, 0.017116039991378784, -0.027974454686045647, 0.011228121817111969, -0.00030552130192518234, -0.023811833932995796, -0.001798895769752562, 0.002380841178819537, -0.012186620384454727, -0.012837029062211514, 0.007318818476051092, -0.03310926631093025, -0.012481016106903553, 0.03417730703949928, 0.001669669640250504, 0.026262851431965828, 0.0056756786070764065, -0.018348393961787224, 0.001922131166793406, -0.015897376462817192, 0.022113922983407974, -0.012412551790475845, 0.017102345824241638, 0.015089500695466995, -0.0035224808380007744, -0.015500285662710667, -0.01947120577096939, 0.026345007121562958, 0.016486169770359993, -0.004330358002334833, 0.027467820793390274, -0.02693380042910576, 0.022346701472997665, -0.0048267231322824955, -0.0016097634797915816, -0.02823461778461933, -0.002136081689968705, 0.020018920302391052, -0.009057807736098766, 0.006548596546053886, -0.020963724702596664, 0.008797644637525082, -0.017061268910765648, 0.022908106446266174, 0.021470360457897186, 0.0020094229839742184, -0.007955535314977169, -3.9821534301154315e-05, -0.023606441915035248, 0.0022918377071619034, 0.013021882623434067, -0.0072503541596233845, -0.026125922799110413, 0.010940572246909142, 0.04754151031374931, 0.013768142089247704, -0.0050252689979970455, -0.013747602701187134, -8.62220476847142e-05, -0.014500708319246769, 0.024455396458506584, -0.05718126520514488, 0.024222619831562042, -0.0010603386908769608, 0.00252803904004395, -0.003104849485680461, -0.007962381467223167, 0.022237157449126244, -0.02149774506688118, -0.0002674381248652935, 0.015842605382204056, 0.003878494491800666, 0.029001416638493538, -0.001018404378555715, 0.00427216337993741, -0.022908106446266174, -0.004857531748712063, -0.0026153307408094406, -0.0019033035496249795, 0.009112579748034477, -0.00440224539488554, 0.009605521336197853, -0.006757412571460009, 0.026796871796250343, -0.011378742754459381, -0.016842182725667953, 0.0158699918538332, 0.0066239070147275925, 0.024619711562991142, -0.002579387044534087, -0.014897800981998444, 0.01907411403954029, -0.02403092011809349, -0.021511437371373177, -0.00041420815978199244, 0.005134811624884605, 0.012125002220273018, -0.014213158749043941, 0.013966687954962254, -0.0021822950802743435, 0.03795652836561203, -0.006196006201207638, -0.0024065151810646057, 5.276553929434158e-05, -0.02105957455933094, 0.008975651115179062, 0.027741676196455956, -0.01074887253344059, -0.0015002208529040217, 0.018348393961787224, -0.010235391557216644, 0.0018793410854414105, 0.022593172267079353, 0.006863531656563282, -0.03697064518928528, -0.01007792353630066, -0.015335971489548683, 0.043406274169683456, 0.0041146958246827126, 0.0072366613894701, -0.01495257206261158, -0.004470709711313248, -0.002613619202747941, -0.019881991669535637, -0.008140387944877148, 0.018567480146884918, -0.02574252337217331, -0.023852912709116936, -0.012350933626294136, -0.024414317682385445, -0.011029575951397419, 0.0013573019532486796, 0.0056037912145257, -0.0019820374436676502, -0.002389399101957679, 0.009838299825787544, 0.029521744698286057, 0.005696217995136976, -0.011248661205172539, -0.03584783151745796, 0.011803220957517624, -0.004563136026263237, -0.0056756786070764065, -0.03343789279460907, -0.00811300240457058, 0.021785294637084007, -0.005521634127944708, 0.0056517161428928375, 0.018964571878314018, -0.010920032858848572, 0.008866108022630215, 0.009571289643645287, -0.012083923444151878, -0.004747989121824503, -0.008119849488139153, 0.02974083088338375, 0.03814822807908058, -0.011433513835072517, 0.007291432935744524, 0.012926032766699791, 0.030644556507468224, -0.009482285939157009, 0.013104040175676346, 0.011337664909660816, -0.005518211051821709, 0.010468170046806335, 0.001346176490187645, -0.0009003036539070308, -0.030151614919304848, 0.003339339280501008, 0.021155424416065216, -0.0010603386908769608, 0.0070518082939088345, 0.025523437187075615, 0.01792391575872898, -0.01967659965157509, -0.00231066532433033, 0.005768105387687683, -0.020333854481577873, -0.01037232019007206, 0.05186844617128372, 0.012556326575577259, 0.021073266863822937, 0.0227985642850399, 0.000872062228154391, 0.012248237617313862, 0.0022849913220852613, 0.012686408124864101, 0.015815220773220062, -0.0029217079281806946, 0.02007369138300419, 0.00734620401635766, 0.016349241137504578, -0.04157143458724022, 0.007736449595540762, 0.003683371702209115, -0.03935319930315018, -0.0036559859290719032, 0.000277707731584087, -0.014884107746183872, 0.039681825786828995, 0.017047574743628502, -0.006510941311717033, 0.0009062942699529231, 0.006955958437174559, 0.015719370916485786, -0.010865261778235435, 0.004190006293356419, -0.007031268905848265, -0.021086961030960083, 0.011871685273945332, -0.015555056743323803, 0.010700947605073452, -0.014363780617713928, -0.013398435898125172, 0.01382291316986084, -0.008154081180691719, 0.028535861521959305, -0.013905070722103119, -0.020854182541370392, 0.019662905484437943, -0.006969651207327843, 0.018868722021579742, -0.0015994939021766186, -0.0009062942699529231, 0.012344087474048138, 0.005877648014575243, 0.00745574664324522, 0.002760817063972354, -0.03141135722398758, 0.0077843745239079, 0.010016306303441525, -0.009824606589972973, -0.0029063033871352673, 0.029768215492367744, 0.008044538088142872, -0.011330817826092243, -0.01203599851578474, 0.023181963711977005, -0.00658282870426774, -0.0034026685170829296, 0.029603902250528336, -0.02859063260257244, -0.01231670193374157, 0.014103616587817669, 0.00811300240457058, -0.019402742385864258, -0.00918104313313961, -0.02438693307340145], "9abd9405-55a9-4d13-8ba2-40320a078460": [0.003687123768031597, -0.020539719611406326, -0.0028956125024706125, 0.01592257060110569, 0.005933037493377924, 0.037702325731515884, -0.01416805386543274, -0.018772011622786522, -0.03118554875254631, -0.018943505361676216, 0.01787496544420719, 0.014603384770452976, 0.019141383469104767, -0.00534270191565156, -0.0036409522872418165, 0.007202753331512213, 0.030262118205428123, 0.005774735007435083, 0.04020877927541733, -0.02970805950462818, -0.010144537314772606, -0.0014923287089914083, -0.002666404005140066, 0.013679955154657364, -0.007671064231544733, 0.01568511687219143, 0.021964440122246742, -0.022215085104107857, 0.007545741740614176, -0.02815142087638378, -0.015170634724199772, 0.006724548526108265, 0.004610553849488497, -0.0021354316268116236, -0.022821910679340363, 0.008455979637801647, 0.0016217738157138228, -0.027966735884547234, 0.02799311839044094, -0.01747920922935009, 0.009768569841980934, -0.010665616020560265, -0.006302409339696169, 0.001179846585728228, -0.021753370761871338, 0.011846287176012993, -0.004577574320137501, -0.015302552841603756, -0.03313794359564781, 0.014656152576208115, 0.011147118173539639, 0.004125752951949835, -0.020236307755112648, 0.018481791019439697, -0.015566390007734299, -0.013785489834845066, 0.006249641999602318, 0.02799311839044094, -0.004775451961904764, 0.01271035335958004, -0.002635073382407427, 0.006678377278149128, 0.004007026087492704, -0.00028527388349175453, -0.021661028265953064, -0.020526528358459473, -0.02320447564125061, -0.00736765144392848, -0.02129165641963482, -0.014154861681163311, 0.045485518872737885, 0.02767651341855526, -0.0029335389845073223, 0.02386406809091568, 0.018297104164958, -0.023600229993462563, -0.020460568368434906, -0.014788070693612099, -0.007215945515781641, 0.004171924665570259, -0.008634069934487343, -0.026291368529200554, -0.006820189766585827, 0.021080587059259415, 0.018943505361676216, -0.015368512831628323, 0.013851448893547058, 0.030842559412121773, -0.015447663143277168, -0.030578723177313805, 0.0034628622233867645, 0.018283912912011147, 0.02382449246942997, 0.010197305120527744, 0.004547892604023218, 0.01305993739515543, -0.016331518068909645, 0.021067393943667412, -0.002193146152421832, -0.009979639202356339, -0.02406194619834423, -0.006892744917422533, 0.007103814743459225, -0.005352595821022987, -0.03714826703071594, 0.007037855219095945, -0.022663608193397522, -0.013422713615000248, 0.02090909145772457, -0.019180959090590477, -0.01883796975016594, 0.02133123204112053, -0.017822198569774628, -0.034509897232055664, -0.011107542552053928, -0.01853455789387226, 0.0258956141769886, -0.022624032571911812, -0.02320447564125061, -0.024866648018360138, -0.010428162291646004, 0.010289647616446018, -0.009353025816380978, -0.02152911014854908, 0.0017874964978545904, 0.010659019462764263, 0.00286593078635633, -0.030578723177313805, -0.006012188270688057, -0.002607040572911501, 0.04092113673686981, 0.027122456580400467, 0.00220963591709733, 0.0017627617344260216, -0.005520791746675968, 0.01736048236489296, -0.03677889332175255, 0.0035156295634806156, -0.017822198569774628, -0.03279495611786842, 0.01759793609380722, 0.017294524237513542, 0.006998279597610235, -0.022333811968564987, -0.04329567030072212, 0.019141383469104767, 0.014405506663024426, 0.0063188993372023106, -0.025209637358784676, 0.006309005431830883, 0.025684544816613197, -0.01072497945278883, 0.021555492654442787, -0.029048467054963112, 0.014471466653048992, -0.0159621462225914, 0.014339547604322433, -0.0029714656993746758, 0.009135360829532146, 0.008700028993189335, 0.027201607823371887, 0.02191167324781418, 0.029496990144252777, -0.006259535904973745, 0.007525953929871321, 0.02677946723997593, 0.00647390354424715, 0.0010817322181537747, -0.025447091087698936, -0.025130486115813255, 0.023441927507519722, 0.0227691438049078, -0.03176598995923996, 0.0005157191189937294, -0.021555492654442787, 0.007704044226557016, 0.03635675460100174, 0.01728133112192154, -0.004432463552802801, 0.00015417981194332242, -0.03482649847865105, -0.01387783233076334, 0.02129165641963482, 0.019880127161741257, -0.00205298257060349, -0.013402925804257393, -0.020684830844402313, -0.01728133112192154, 0.005072268657386303, 0.0029203472658991814, 0.030763408169150352, 0.01344909705221653, -0.006635503843426704, -0.028125036507844925, -0.6492503881454468, -0.008363637141883373, -0.01600172184407711, -0.017531976103782654, -0.009689418599009514, -0.0008714870200492442, 0.021344423294067383, -0.009471752680838108, -0.015698308125138283, 0.006635503843426704, -0.02923315390944481, 0.0025245915167033672, -0.021621452644467354, -0.01685919240117073, -0.025051334872841835, -0.016186406835913658, -0.0037992545403540134, -0.037702325731515884, -0.007031259126961231, -0.018125610426068306, -0.014577001333236694, -0.0038223403971642256, 0.001113062840886414, 0.0029285920318216085, -0.013798682019114494, -0.007888729684054852, 0.02144995890557766, 0.0033441355917602777, 0.01666131429374218, 0.027940351516008377, -0.03063149005174637, 0.02526240423321724, 0.006447519641369581, 0.026871811598539352, 0.04986521601676941, -0.013627187348902225, -0.02164783515036106, 0.014550616964697838, 0.011714368127286434, 0.013719530776143074, -0.01220246683806181, -0.018151994794607162, 0.023032980039715767, 0.008785775862634182, 0.003937769215553999, 0.01251907180994749, 0.027544595301151276, -0.013495269231498241, 0.0018320190720260143, 0.013851448893547058, 0.0016935045132413507, 0.004765558056533337, -0.016476627439260483, -0.009748782031238079, -0.011655004695057869, 0.0003227882261853665, 0.03321709483861923, -0.003594780806452036, 0.005164611618965864, 0.0029121022671461105, 0.007341268006712198, 0.03440435975790024, -0.009181532077491283, -0.009834528900682926, -0.007492974400520325, 0.01957671530544758, -0.01251247525215149, 0.012116719968616962, 0.012650989927351475, 0.0004674864176195115, 0.016476627439260483, 0.020803557708859444, -0.007763407193124294, -0.02546028234064579, 0.02402237057685852, 0.010804129764437675, 0.02569773606956005, -0.026172643527388573, 0.0006496988935396075, 0.01805965043604374, 0.005253656767308712, -0.018772011622786522, -0.026660742238163948, -0.022861486300826073, 0.022835103794932365, -0.01228161808103323, -0.012585030868649483, 0.028758246451616287, -0.0011683037737384439, 0.018112419173121452, -0.001914468128234148, 0.012334385886788368, -0.0014280184404924512, 0.00581101281568408, 0.03234643116593361, 0.0043038432486355305, 0.008620877750217915, 0.011100946925580502, 0.0022854891140013933, -0.005418554879724979, -0.0006022906745783985, -0.01588299497961998, 0.02759736403822899, -0.01989331841468811, 0.002372885122895241, -0.017188988626003265, -0.027491828426718712, -0.011081159114837646, 0.044403787702322006, -0.031053628772497177, -0.010553484782576561, -0.017993692308664322, -0.027702897787094116, -0.002570762997493148, 0.01708345301449299, -0.015328937210142612, 0.002646616194397211, -0.004181818570941687, 0.025684544816613197, -0.012486091814935207, 0.023019788786768913, -0.006064956076443195, 0.012650989927351475, -0.015605965629220009, 0.03197706118226051, 0.033929452300071716, 0.017505593597888947, -0.001914468128234148, -0.01119329035282135, -0.012136507779359818, 0.005227272864431143, -0.003934470936655998, 0.007387439254671335, 0.0018501578597351909, 0.010678807273507118, -0.008587898686528206, 0.023138515651226044, 0.011470318771898746, 0.0218061376363039, -0.027623746544122696, 0.0010034055449068546, -0.00012655937462113798, 0.010540293529629707, 0.010949240997433662, -0.012228850275278091, -0.029787210747599602, -0.014603384770452976, -0.005550473462790251, -0.04176541790366173, 0.008884714916348457, -0.019207343459129333, 0.004330226685851812, -0.0012870305217802525, -0.019167767837643623, 0.019484370946884155, -0.014999140053987503, -0.014933180995285511, 0.018165186047554016, 0.011483510956168175, -0.029101233929395676, -0.0017413250170648098, 0.013323774561285973, -0.021397190168499947, 0.012110124342143536, 0.04012962803244591, -0.009010037407279015, -0.00848895963281393, 0.017426442354917526, -0.0011089404579252005, -0.03783424198627472, 0.018640093505382538, -0.006684972904622555, -0.018270721659064293, 0.039258964359760284, -0.019866935908794403, -0.0017924434505403042, -0.02148953452706337, -0.0007329725194722414, 0.00014964511501602829, 0.013323774561285973, -0.0019738315604627132, 0.002428950509056449, -0.02608029916882515, -0.009794953279197216, 0.024932608008384705, -0.006747634615749121, 0.012017780914902687, 0.011206481605768204, 0.020420992746949196, 0.03791339322924614, 0.003776168916374445, -0.0014873817563056946, -0.011312016285955906, 0.0005400415975600481, 0.011905650608241558, 0.005187697242945433, 0.010091769509017467, 0.03329624608159065, 0.0016572269378229976, 0.005332808010280132, 0.004831517115235329, 0.00747318658977747, 0.02498537488281727, -0.002986306557431817, -0.0021750072482973337, -0.03276856988668442, 0.011839690618216991, 0.004841411020606756, 0.046145111322402954, -0.034589048475027084, -0.004617149475961924, -0.0247215386480093, -0.011061371304094791, -0.005843992345035076, 0.040973905473947525, 0.02009119652211666, 0.01584341935813427, -0.010236880742013454, -0.0022821910679340363, 0.001639088150113821, 0.009471752680838108, -0.009451964870095253, 0.0011534629156813025, -0.00978835765272379, -0.016186406835913658, -0.004122455138713121, -0.0032649843487888575, 0.03305879235267639, 0.01732090674340725, -0.010480930097401142, 0.02129165641963482, 0.002031545853242278, -0.007849154062569141, 0.025526242330670357, 0.014273588545620441, -0.012664182111620903, 0.025565817952156067, -0.00829108152538538, 0.03561801090836525, -0.03870490565896034, 0.004409377928823233, 0.009280471131205559, 0.013079725205898285, -0.020025238394737244, -0.00484800711274147, 0.013798682019114494, 0.009247491136193275, 0.01825752854347229, 0.020196732133626938, 0.02129165641963482, -0.007413823157548904, -0.007651276420801878, -0.021186120808124542, -0.004557786509394646, 0.012222254648804665, -0.030235733836889267, 0.0013670061016455293, 0.014682536013424397, 0.009438772685825825, 0.03495841845870018, 0.018785202875733376, -0.01705707050859928, 0.006872957106679678, 0.007328076288104057, 0.05115801841020584, -0.003218812867999077, 0.0204341858625412, 0.01923372596502304, -0.029760828241705894, -0.016832808032631874, -0.009016633965075016, -0.016186406835913658, 0.024747923016548157, -0.012268425896763802, 0.01209033653140068, 0.0014255449641495943, 0.014128478243947029, 0.0008888012962415814, 0.012492687441408634, 0.00600559264421463, -0.016331518068909645, -0.03144938498735428, 0.02358703874051571, 0.0019128191052004695, -0.004904072731733322, -0.00813277903944254, -0.014524233527481556, 0.012690565548837185, -0.020420992746949196, 0.0389423593878746, -0.011002007871866226, 0.015434471890330315, 0.02889016456902027, -0.007849154062569141, -0.005547175649553537, -2.3884473193902522e-05, 0.02047376148402691, -0.014102093875408173, 0.05181761085987091, 0.006945512257516384, -0.007743619382381439, 0.01630513370037079, -0.027307141572237015, 0.010771150700747967, 0.01708345301449299, -0.002918698126450181, -0.012657585553824902, -0.01802007481455803, 0.011496702209115028, -0.020645255222916603, -0.001991970231756568, -0.025552624836564064, 0.0015253083547577262, -0.005791225004941225, 0.009260683320462704, 0.0008356216130778193, -0.0034100948832929134, 0.01919415034353733, 0.00817235466092825, 0.0030489678028970957, -0.006516776978969574, -0.00712360255420208, -0.013462289236485958, 0.009313450194895267, 0.0961422473192215, 0.020922284573316574, -0.016846001148223877, 0.009946659207344055, -0.001157585415057838, 0.013970175758004189, -0.018481791019439697, -0.02585603855550289, 0.026726700365543365, -0.011351591907441616, 0.009326642379164696, -0.021713795140385628, 0.018745627254247665, -0.01969544216990471, 0.006012188270688057, -0.007572125643491745, -0.02156868577003479, 0.012960998341441154, -0.008231718093156815, 0.002292084973305464, 0.020236307755112648, 0.0011377976043149829, 0.013376542367041111, 0.01619959995150566, -0.039575569331645966, -0.02429939992725849, 0.02378491684794426, 0.003194078104570508, 0.016674505546689034, -0.029444223269820213, -0.0025476771406829357, 0.013323774561285973, 0.019049040973186493, 0.009128764271736145, -0.010151132941246033, 0.00047284559695981443, -0.0013711286010220647, 0.028995700180530548, 0.0036079727578908205, -0.0041092634201049805, 0.012103527784347534, 0.01630513370037079, -0.0013595856726169586, -0.007215945515781641, -0.0007218418759293854, 0.0022689993493258953, -0.011226269416511059, -0.003914683125913143, -0.022294236347079277, -0.012110124342143536, 0.05078864470124245, -0.006866361014544964, -0.01809922605752945, -0.01477487850934267, 0.018204761669039726, 0.011569257825613022, -0.00736765144392848, -0.0011254302226006985, -0.01592257060110569, 0.028599943965673447, -0.005233868956565857, 0.01259162649512291, 0.01584341935813427, -0.000829025695566088, -0.02086951583623886, -0.0266739334911108, -0.024114713072776794, -0.006859765388071537, -0.010414970107376575, 0.021634643897414207, -0.01825752854347229, -0.0031314168591052294, -0.019959278404712677, -0.005105248186737299, 0.012888443656265736, 0.011041583493351936, 0.02751821279525757, -0.01798049919307232, -0.005507600028067827, -0.006048466078937054, -0.012492687441408634, -0.023178091272711754, 0.018521366640925407, -0.01915457472205162, -0.01035560667514801, 0.002668052911758423, 0.005125035997480154, 0.022624032571911812, -0.025328364223241806, 0.007156582083553076, -0.005745053291320801, 0.03429882600903511, 0.010071982629597187, -0.004280757158994675, 0.012730141170322895, 0.005784628912806511, -0.01600172184407711, -0.009161744266748428, -0.009194723330438137, -0.010751362890005112, 0.00010280372225679457, -0.03028850257396698, 0.0021766561549156904, -0.009920275770127773, 0.0021073990501463413, -0.006206768099218607, 0.011951821856200695, 0.01787496544420719, -0.020895900204777718, -0.014603384770452976, 0.0014041082467883825, -0.02133123204112053, 0.000993511639535427, -0.010731575079262257, 0.003492543939501047, -0.0018600517651066184, 0.014603384770452976, 0.0010734873358160257, 0.0048875827342271805, -0.010480930097401142, 0.007235733326524496, -0.033692002296447754, 0.012209062464535236, -0.017070261761546135, -0.023455120623111725, -0.009940063580870628, 0.009874104522168636, -0.02366618998348713, 0.019405219703912735, 0.0020925581920892, -0.00833065714687109, 0.0007939848583191633, 0.004439059644937515, -0.018772011622786522, -0.012057356536388397, -0.0074204192496836185, -0.006358474493026733, 0.0019738315604627132, -0.005484514404088259, 0.008772584609687328, -0.02639690414071083, -0.0071433898992836475, -0.005454832687973976, -0.022901061922311783, 0.00616059685125947, -0.027043305337429047, -0.021278463304042816, 0.008363637141883373, 0.0010471035493537784, -0.00852193869650364, -0.0032864210661500692, -0.0258824210613966, -0.0350375697016716, 0.0018930314108729362, -0.013851448893547058, -0.03804531320929527, -0.006952108349651098, 0.009102380834519863, 0.015051907859742641, -0.00484800711274147, 0.03242558240890503, -0.03226727992296219, 0.012143103405833244, -0.004719386342912912, -0.009854316711425781, -0.009709206409752369, -0.014880414120852947, -0.018903929740190506, -0.03701634705066681, -0.02487984113395214, 0.032953254878520966, 0.028995700180530548, 0.015038715675473213, -0.0125586474314332, -0.0027389591559767723, 0.039575569331645966, -0.019299685955047607, -0.0077765993773937225, -0.018046459183096886, -0.04954861104488373, -0.013719530776143074, 0.0011790221324190497, -0.011048179119825363, -0.0053723836317658424, -0.03406137228012085, 4.55273620900698e-05, 0.048334959894418716, 0.0043829940259456635, 0.005415257066488266, -0.0099268713966012, 0.010414970107376575, 0.0004427516832947731, 0.006741038523614407, -0.00019076660100836307, 0.005039289128035307, 0.00879896804690361, 0.012578435242176056, -0.0074006314389407635, 0.000768013356719166, -0.007987668737769127, 0.0017858474748209119, -0.012650989927351475, -0.0022211787290871143, -0.02557900920510292, -0.030235733836889267, 0.012545455247163773, -0.022215085104107857, -0.022637225687503815, 0.02615945041179657, -0.009794953279197216, -0.014906797558069229, -0.007268712855875492, -0.0001943737588590011, -0.028626328334212303, -0.020882708951830864, -0.00422469200566411, 0.005745053291320801, 0.004742472432553768, -0.002181603107601404, -0.021238887682557106, 0.004290651064366102, -0.011615429073572159, 0.044166333973407745, 0.01568511687219143, 0.01853455789387226, -0.008027244359254837, -0.009794953279197216, 0.0017116433009505272, -0.004894178826361895, -0.0022887871600687504, -0.012176083400845528, 0.020539719611406326, 0.007506166119128466, -0.010111557319760323, 0.016608547419309616, -0.023956410586833954, -0.007413823157548904, -0.04873071610927582, -0.028837397694587708, 0.009781761094927788, 0.0005177803686819971, -0.004102667327970266, -0.0012029324425384402, -0.007605105172842741, -0.03482649847865105, 0.00891769491136074, 0.009986234828829765, 0.022043591365218163, -0.012644394300878048, -0.011641813442111015, -0.04656725376844406, 0.007341268006712198, 0.009300258941948414, 0.03617206960916519, 0.04289991781115532, -0.02398279495537281, -0.02503814361989498, -0.00024157586449291557, -0.013172068633139133, -0.010309435427188873, 0.007651276420801878, 0.015381704084575176, -0.011199885979294777, 0.009504732675850391, 0.008469171822071075, -0.006681675091385841, -0.013145684264600277, -0.006846573203802109, -0.023230858147144318, 0.026423288509249687, 0.027887584641575813, 0.013277603313326836, 0.00856811087578535, 0.013706338591873646, 0.015117866918444633, 0.015817034989595413, 0.009808145463466644, -0.006767422426491976, -0.022056782618165016, 0.004709492437541485, 0.0038751077372580767, 0.014537425711750984, 0.00895067397505045, -0.015935761854052544, -0.019365644082427025, -0.0009341483237221837, -0.004627043381333351, 0.0028115143068134785, 0.008548323065042496, -0.043928880244493484, -0.045564670115709305, 0.004894178826361895, -0.02429939992725849, 0.018297104164958, 0.005900057498365641, 0.023072555661201477, -0.006038572173565626, 0.02989274635910988, -0.030921710655093193, 0.0282305721193552, -0.02047376148402691, 0.005415257066488266, -0.01989331841468811, 0.010784342885017395, 0.004158732481300831, -0.012367364950478077, 0.017848581075668335, -0.0070774308405816555, -0.028547177091240883, 0.004867794923484325, 0.007413823157548904, 0.014511041343212128, -0.0002974351227749139, 0.011951821856200695, 0.004590766038745642, 0.010032407008111477, 0.015394896268844604, -0.011786923743784428, -0.025724120438098907, 0.011081159114837646, 0.021001435816287994, -0.0040268138982355595, 0.014313164167106152, -0.019101807847619057, 0.020196732133626938, -0.003944364842027426, 0.025130486115813255, -0.0005952825304120779, -0.03495841845870018, 0.013310583308339119, -0.0056856898590922356, 0.006760826334357262, 0.016925152391195297, -0.009372813627123833, -0.005613134708255529, -0.02370576560497284, -0.009623459540307522, 0.0009300258825533092, 0.01622598245739937, -0.016094064339995384, 0.018745627254247665, 0.013653570786118507, -0.002824706258252263, 0.005718669854104519, -0.011199885979294777, 0.006806997582316399, 0.007994265295565128, -0.008884714916348457, -0.03261026740074158, -0.012096932157874107, -0.009557499550282955, 0.04234585911035538, 0.008469171822071075, -0.0020414397586137056, -0.011747348122298717, -0.022558074444532394, -0.012334385886788368, -0.006780614145100117, 0.007710639853030443, 0.02799311839044094, 0.0451689139008522, 0.0179013479501009, 0.01724175550043583, 0.04382334649562836, -0.017848581075668335, -0.010738170705735683, -0.006147405132651329, 0.0003790597547776997, -0.0017594638047739863, -0.0005000538076274097, -0.004580872133374214, 0.0005165436305105686, -0.026053916662931442, -0.0032484945841133595, -0.003261686535552144, 0.00910897646099329, -0.0013175366912037134, 0.004785345867276192, 0.014181245118379593, 0.018283912912011147, -0.007288500666618347, -0.0034826500341296196, 0.024550044909119606, 0.021106969565153122, 0.003960854839533567, -0.014933180995285511, -0.021581877022981644, -0.012044164352118969, -0.009445369243621826, -0.021858906373381615, -0.020856324583292007, 0.009201319888234138, -0.0179145410656929, 0.010408374480903149, -0.0063188993372023106, -0.006127617321908474, -0.025407515466213226, -0.04026154428720474, 0.041554346680641174, -0.00465342728421092, -0.0012491039233282208, 0.03263665363192558, -0.008383424952626228, -0.025315171107649803, 0.003124820999801159, 0.019062232226133347, 0.015408088453114033, -0.03020935133099556, 0.0129478070884943, -0.03340177983045578, 0.016450244933366776, 0.014840838499367237, 0.002549326280131936, -0.01771666295826435, 0.004762260243296623, -0.003355678403750062, -0.0010190708562731743, -0.012380557134747505, 0.017703471705317497, 0.013561228290200233, -0.0006913357065059245, -0.004135646857321262, 0.01325781550258398, -0.006061657797545195, 0.0003320637624710798, -0.018560942262411118, -0.028204187750816345, 0.003736593294888735, 0.01290163490921259, 0.011443935334682465, 0.017993692308664322, -0.00934643018990755, -0.011714368127286434, 0.005451534409075975, -0.02833610773086548, 0.004633639473468065, 0.20990881323814392, -0.027650130912661552, -0.019550330936908722, 0.029523374512791634, -0.020803557708859444, 0.0018831375055015087, 0.006035274360328913, -0.00012346752919256687, 0.0009539360762573779, -0.019655866548419, -0.0035815888550132513, 0.030552338808774948, -0.020763982087373734, -0.0008591196383349597, 0.021357614547014236, 0.0033606253564357758, -0.03416690602898598, -0.00786234624683857, -0.010969028808176517, -0.052688274532556534, 0.007743619382381439, -0.006404646206647158, -0.010579868219792843, -0.012030973099172115, 0.014550616964697838, -0.0053723836317658424, -0.006523373071104288, -0.0029335389845073223, 0.03709549829363823, -0.0033424864523112774, -0.027782049030065536, -0.005187697242945433, -0.009603671729564667, -0.007255520671606064, -0.0058868657797575, 0.022122742608189583, 0.008607686497271061, 0.007255520671606064, 0.0179145410656929, -0.013482077047228813, 0.006556352600455284, 0.012565243057906628, 0.0014675939455628395, -0.0012499283766373992, 0.0006793806096538901, 0.03461543098092079, -0.003898193594068289, -0.022835103794932365, -0.023349585011601448, 0.008673645555973053, -0.02947060577571392, 0.0078095789067447186, 0.053427018225193024, 0.022056782618165016, -0.012585030868649483, -0.007196157705038786, -0.014273588545620441, 0.01086349319666624, -0.015262977220118046, 0.01911499910056591, 0.004072985611855984, 0.014022943563759327, 0.0004009087570011616, 0.02970805950462818, -0.027623746544122696, 0.021357614547014236, 0.005435044877231121, 0.01420762948691845, 0.028468025848269463, -0.03469458222389221, -0.003974046558141708, -0.009320046752691269, 0.0006505234050564468, -0.0033128049690276384, -0.008416404016315937, 0.0078095789067447186, 0.012624606490135193, -0.023191282525658607, 0.006134212948381901, -0.0013529896968975663, 0.02160825952887535, -0.017347291111946106, 0.025948381051421165, 0.00294343288987875, -0.011021795682609081, -0.014497850090265274, -0.0007131847087293863, -0.014761687256395817, -0.016212791204452515, 0.012697161175310612, -0.020328650251030922, -0.017386866733431816, 0.012532263062894344, -0.005543877370655537, -0.024378549307584763, -0.01642386056482792, 0.014286779798567295, 0.0186928603798151, 0.006018784362822771, -0.0022574563045054674, -0.002583954716101289, -0.022874679416418076, 0.012275022454559803, 0.01420762948691845, -0.017822198569774628, -0.006055062171071768, 0.013587611727416515, 0.01755836047232151, -0.0016885575605556369, -0.010223688557744026, 0.03403498977422714, -0.0163447093218565, -0.000957234064117074, -0.02526240423321724, -0.005748351104557514, 0.013851448893547058, -0.02623860165476799, -0.00514812208712101, -0.0019886724185198545, 0.006711356807500124, 0.02751821279525757, -0.01481445413082838, -0.0007065887912176549, 0.005560367368161678, -0.00406638951972127, -0.009062805213034153, -0.0129412105306983, 0.009353025816380978, 0.0032254087273031473, -0.015236593782901764, 0.018560942262411118, -0.04902093857526779, -0.0022838402073830366, 0.002663105959072709, -0.01724175550043583, 0.021845713257789612, -0.0014016347704455256, -0.013172068633139133, 0.02681904286146164, -0.010461142286658287, 0.004505018703639507, -0.006061657797545195, 0.002926943125203252, 0.01957671530544758, 0.010830514132976532, -0.011978205293416977, 0.013679955154657364, -0.02300659753382206, -0.004689705092459917, -0.012565243057906628, -0.027623746544122696, -0.0018072843085974455, -0.0011979854898527265, 0.00028238818049430847, 0.01817837730050087, 0.006569544319063425, -0.011417551897466183, -0.017386866733431816, 0.007130198180675507, 0.026172643527388573, -0.030235733836889267, 0.017452824860811234, 0.027122456580400467, -0.007770003285259008, -0.015632349997758865, -0.021199312061071396, -0.16685059666633606, 0.0031594496686011553, 0.009300258941948414, -0.0031924291979521513, 0.03284772112965584, 0.025328364223241806, 0.01626555807888508, 0.0029764126520603895, -0.010170920751988888, -0.013745914213359356, 0.026542015373706818, 0.01701749488711357, -0.03611930087208748, -0.019167767837643623, -0.0025196445640176535, 0.009372813627123833, -0.023534271866083145, 0.026581590995192528, 0.018969889730215073, 0.02422024868428707, 0.0015154144493862987, -0.010078578256070614, 0.01095583662390709, 0.0033210497349500656, 0.0011509894393384457, 0.01025666855275631, 0.0024025668390095234, 0.03118554875254631, 0.01072497945278883, -0.01927330158650875, -0.019827360287308693, 0.020698022097349167, -0.00013583489635493606, -0.017413249239325523, 0.022980213165283203, 0.0046798111870884895, -0.011417551897466183, -0.009254086762666702, -0.02324405126273632, -0.005741755478084087, 0.016067679971456528, 0.002470175037160516, 0.018033267930150032, 0.0054581305012106895, -0.008106395602226257, 0.03234643116593361, -0.0035453112795948982, -0.0036409522872418165, 0.009847721084952354, -0.016489820554852486, 0.009122168645262718, 0.002392672933638096, 0.017215372994542122, 0.009880700148642063, 0.020579295232892036, 0.004468741361051798, 0.008686837740242481, -0.0009019931894727051, -0.017452824860811234, -0.01193203404545784, -0.010744767263531685, -0.001216124277561903, 0.01473530288785696, -0.011529682204127312, -0.0032402495853602886, 0.003901491407305002, -0.007710639853030443, 0.008086607791483402, -0.03366561606526375, 0.01809922605752945, 0.012881847098469734, 0.0037629769649356604, 0.022412963211536407, -0.014141669496893883, -0.0037959567271173, -0.009432177059352398, -0.028125036507844925, 0.015777459368109703, 0.0008269645040854812, -0.00817235466092825, -0.04020877927541733, 0.028388874605298042, -0.013508460484445095, -0.00809979997575283, -0.020737597718834877, 0.02420705556869507, -0.008739604614675045, -0.026950962841510773, -0.022571265697479248, -0.002387725980952382, 0.016793232411146164, -0.03071064129471779, -0.014418698847293854, -0.009122168645262718, 0.026067107915878296, 0.008686837740242481, 0.013785489834845066, -0.023573847487568855, 0.0005721967900171876, -0.016951534897089005, 0.014220820739865303, -0.034589048475027084, 0.010560080409049988, 0.029444223269820213, 0.024035561829805374, 0.019220534712076187, 0.004871092736721039, 0.011641813442111015, 0.02791396714746952, 0.015711501240730286, -0.028204187750816345, -0.002303627785295248, 0.021238887682557106, 0.003419988788664341, 0.014128478243947029, 0.0266739334911108, -0.014418698847293854, -0.0102170929312706, 0.010889877565205097, -0.01853455789387226, 0.056777749210596085, -0.0019128191052004695, -0.002720820251852274, -0.006309005431830883, -0.00240421574562788, -0.027307141572237015, -0.11693261563777924, 0.0017116433009505272, 0.007202753331512213, 0.021041011437773705, 0.014972756616771221, 0.02670031599700451, -0.009043017402291298, 0.0037959567271173, 0.0010471035493537784, -0.007816174998879433, -0.03078979253768921, -0.02553943358361721, -0.0022640523966401815, -0.007829366251826286, 0.003396902931854129, -0.032056208699941635, -0.004247777629643679, -0.021080587059259415, 0.009174935519695282, 0.027623746544122696, 0.004976627882570028, -0.025011759251356125, 0.004587467759847641, -0.02542070671916008, 0.017769429832696915, -0.0024058648850768805, -0.03187152370810509, 0.016291942447423935, 0.02947060577571392, 0.022439347580075264, -0.025684544816613197, -0.01166160125285387, 0.0212125051766634, -0.003236951772123575, -0.005636220332235098, -0.01841583102941513, -0.0424250103533268, -0.0060088904574513435, 0.016028104349970818, -0.027465444058179855, 0.005939633119851351, -0.008594494313001633, 0.008482363075017929, -0.021463150158524513, 0.018943505361676216, -0.01286865584552288, -0.026185834780335426, 0.0040136221796274185, 0.003654144238680601, -0.02670031599700451, -0.021581877022981644, -0.0004087414126843214, -0.043585892766714096, -0.009379410184919834, 0.028388874605298042, -0.009748782031238079, 0.02507771924138069, 0.010949240997433662, -0.014656152576208115, 0.0005977560067549348, -0.0186928603798151, 0.01572469249367714, 0.008779180236160755, 0.028626328334212303, 0.002991253277286887, -0.01043475791811943, -0.015869803726673126, -0.026370519772171974, 0.019761400297284126, 0.01704387739300728, -0.013785489834845066, 0.01407571043819189, -0.01743963360786438, 0.01662173867225647, -0.02141038328409195, 0.005402064882218838, -0.02051333710551262, -0.0017792516155168414, 0.019444795325398445, 0.0014346144162118435, 0.0010875036241486669, -0.02292744629085064, -0.009663034230470657, 0.006374964490532875, 0.020328650251030922, 0.009326642379164696, 0.0012260181829333305, -0.015117866918444633, -0.0012367365416139364, -0.023692574352025986, 0.01271035335958004, 0.028468025848269463, -0.002961571794003248, -0.02647605538368225, 0.01638428494334221, 0.026185834780335426, 0.018666476011276245, -0.00046707416186109185, -0.014893605373799801, -0.006533266976475716, -0.018323488533496857, 0.02414109744131565, -0.0587829127907753, 0.028599943965673447, -0.008805563673377037, 0.009722397662699223, 0.0043236310593783855, -0.003736593294888735, 0.006727846805006266, -0.01705707050859928, -0.010560080409049988, 0.027544595301151276, -0.010243476368486881, 0.03604014962911606, -0.01510467566549778, 0.00027290653088130057, -0.012426728382706642, 0.01086349319666624, -0.010850301943719387, -0.002128835767507553, 0.008746200241148472, -0.0014337898464873433, 0.01387783233076334, -0.005388873163610697, 0.03371838480234146, -0.012248638086020947, -0.023969601839780807, 0.016067679971456528, 0.002882420551031828, 0.0070906225591897964, 0.007222541142255068, -0.020223114639520645, 0.02962890826165676, -0.021397190168499947, -0.02460281178355217, 0.0020298969466239214, 0.005468024406582117, 0.014827646315097809, -0.030605105683207512, 0.00651018088683486, -0.01212331559509039, 0.037464872002601624, -0.013066533952951431, 0.0040136221796274185, 0.008304273709654808, -0.013508460484445095, 0.0007754337857477367, 0.035248640924692154, -0.006780614145100117, -0.020961860194802284, 0.012538859620690346, 0.0006731969187967479, 0.011608833447098732, 0.025473473593592644, 0.0003603025688789785, -0.03514310345053673, 0.001455226680263877, -0.027782049030065536, 0.029998280107975006, -0.005128334276378155, 0.014154861681163311, -0.027122456580400467, 0.009372813627123833, -0.007314884103834629, 0.008653857745230198, 0.0031990250572562218, 0.024972183629870415, -0.0098279332742095, -0.0052635506726801395, -0.018270721659064293, -0.019141383469104767, -0.016846001148223877, 0.013165472075343132, 0.006556352600455284, -0.004630341660231352, -0.00013892674178350717, 0.01008517388254404, 0.025288788601756096, 0.012736736796796322, -0.0010479281190782785, -0.027201607823371887, 0.00693891616538167, -0.0012738385703414679, -0.01107456348836422, -0.04060453176498413, -0.009682822041213512, 0.015394896268844604, 0.001274663140065968, 0.02530197985470295, -0.004537998698651791, -0.010843705385923386, 0.01685919240117073, 0.0102170929312706, -0.016450244933366776, 0.0005631273379549384, -0.009893892332911491, 0.013013766147196293, 0.02460281178355217, -0.014088902622461319, 0.0005635396228171885, 0.019550330936908722, 0.038256384432315826, -0.011054775677621365, 0.0083702327683568, 0.01134499628096819, -0.0037299974355846643, -0.002841196022927761, 0.0008607686031609774, -0.01740005798637867, -0.02873186208307743, 0.002824706258252263, 0.023375969380140305, 0.0037003157194703817, -0.008027244359254837, 0.028784630820155144, 0.017294524237513542, -0.026014341041445732, -0.00639475230127573, 0.013851448893547058, -0.01604129746556282, -0.012486091814935207, 0.03849383816123009, 0.009801548905670643, 0.047121308743953705, 0.011806711554527283, 0.007506166119128466, 0.013891024515032768, 0.021832522004842758, 0.01313908863812685, 0.018165186047554016, -0.0015203614020720124, 0.01887754537165165, 0.010421566665172577, 0.0029005594551563263, -0.034430745989084244, 0.0075919134542346, 0.004168626386672258, -0.03326985985040665, 0.006249641999602318, 0.009992831386625767, -0.017334099858999252, 0.037280187010765076, 0.002048035617917776, -0.020605679601430893, 0.0074995700269937515, 0.013745914213359356, 0.018204761669039726, 0.007835962809622288, -0.0019804274197667837, 0.0026746487710624933, -0.005804416723549366, 0.0014824348036199808, -0.021634643897414207, 0.013719530776143074, -0.008165759034454823, 0.0012886794283986092, 0.030499571934342384, -0.005738457664847374, 0.018587324768304825, -0.013251219876110554, -0.018151994794607162, 0.020856324583292007, -0.006833381485193968, 0.02117292955517769, 0.010381991043686867, -0.017294524237513542, 0.010546889156103134, 0.008495555259287357, 0.012044164352118969, 0.00973558984696865, -0.04912647232413292, -0.006991683971136808, 0.01395698357373476, -0.010573272593319416, -0.00476885586977005, 0.019180959090590477, 0.00817235466092825, -0.0035815888550132513, -0.01076455507427454, 0.024352166801691055, -0.003881703596562147, -0.012261830270290375, 0.00879896804690361, -0.028863782063126564, -0.01879839412868023, 0.019708633422851562, 0.0009547605877742171, -0.011358188465237617, -0.0007107112323865294, -0.01506510004401207], "9af733fa-f391-4c75-b19d-473c39a24b31": [0.005251693073660135, -0.016252608969807625, -0.0058114128187298775, 0.013951537199318409, -0.007262538652867079, 0.04115669056773186, -0.015962382778525352, -0.0166533961892128, -0.0238399226218462, -0.020771827548742294, 0.022319694980978966, 0.019085759297013283, 0.023190371692180634, 0.002418542979285121, -0.007255628705024719, 0.0003448583011049777, 0.040299832820892334, -0.004011326003819704, 0.03173128142952919, -0.024061046540737152, -0.007690966594964266, -0.0030059032142162323, 0.005051299463957548, 0.025291047990322113, -0.0012610973790287971, 0.016031485050916672, 0.01760699227452278, -0.01854676939547062, 0.00785680953413248, -0.025816217064857483, -0.012500411830842495, 0.01407591998577118, 0.0007683192379772663, 0.004298096057027578, -0.030100494623184204, 0.006820290815085173, 0.0033686847891658545, -0.029188357293605804, 0.019417444244027138, -0.006934307981282473, 0.005583378951996565, -0.0007864583167247474, -0.008160854689776897, -0.006585346534848213, -0.02244407869875431, 0.008872597478330135, -0.0013258797116577625, -0.017330586910247803, -0.03303038701415062, 0.0021835986990481615, 0.01763463206589222, 0.00955669954419136, -0.027460826560854912, 0.004577956162393093, -0.007151976693421602, -0.012044343166053295, 0.01308086235076189, 0.02556745335459709, -0.0014580358983948827, 0.022001830860972404, 0.0057906825095415115, -0.0026966752484440804, 0.000877153652254492, 0.008167765103280544, -0.01998407393693924, -0.010109509341418743, -0.018380925059318542, -0.012382939457893372, -0.01809070073068142, -0.017897216603159904, 0.04685062915086746, 0.025691835209727287, -0.008036472834646702, 0.018145982176065445, 0.02169778384268284, -0.020329579710960388, -0.019127219915390015, -0.007649505510926247, -0.003738376311957836, 0.011056195944547653, -0.005313884001225233, -0.02949240244925022, -0.01276299636811018, 0.01148462388664484, 0.008375068195164204, -0.01770373433828354, 0.015658337622880936, 0.03549038991332054, -0.007545853964984417, -0.02205711044371128, -0.0027709591668099165, 0.014732381328940392, 0.020066995173692703, 0.011740298010408878, -0.0010831616818904877, 0.017800476402044296, -0.028829030692577362, 0.015243730507791042, 0.005217142403125763, -0.014538898132741451, -0.026673072949051857, -0.005113490857183933, -0.010655408725142479, -0.0075734942220151424, -0.032698698341846466, 0.011325690895318985, -0.00913518201559782, -0.01456653792411089, 0.018892275169491768, -0.0017646725755184889, -0.015685977414250374, 0.02723970264196396, -0.009370125830173492, -0.04599377512931824, -0.00532079441472888, -0.017441149801015854, 0.030321618542075157, -0.011263499967753887, -0.0333067923784256, -0.025940600782632828, -0.00815394427627325, 0.011049285531044006, 0.004647057503461838, -0.006758099887520075, 0.010461925528943539, 0.004992563743144274, -0.00903153046965599, -0.028248580172657967, 0.0027225883677601814, -0.006246750708669424, 0.035987917333841324, 0.016459912061691284, 0.005358799826353788, 0.0034187831915915012, -0.003266760380938649, 0.02910543605685234, -0.025553632527589798, 0.007048325147479773, -0.01963856816291809, -0.022029470652341843, 0.0314825177192688, 0.01008186861872673, 0.000274461432127282, -0.0360432006418705, -0.027723411098122597, 0.020854750648140907, 0.010040408000349998, 0.013467828743159771, -0.027060039341449738, 0.014925864525139332, 0.025360150262713432, -0.006571526639163494, 0.02858026698231697, -0.02290014550089836, 0.012604063376784325, -0.015312831848859787, 0.013246704824268818, 0.005210232455283403, 0.015464854426681995, -0.003306493628770113, 0.029077796265482903, 0.016390809789299965, 0.015644516795873642, -0.006174194626510143, 0.0046021416783332825, 0.025899138301610947, 0.004412113223224878, -0.005040934309363365, -0.019901152700185776, -0.010683049447834492, 0.019610928371548653, 0.019583286717534065, -0.026521049439907074, 0.005040934309363365, -0.01651519350707531, 0.013177603483200073, 0.03264341875910759, 0.025028463453054428, -0.0116919269785285, -0.0015375022776424885, -0.02664543315768242, -0.016390809789299965, 0.026631612330675125, 0.020136097446084023, 0.0031147378031164408, -0.012693895027041435, -0.018256543204188347, -0.015520134940743446, 0.008858776651322842, 0.0031786563340574503, 0.012555692344903946, 0.011546814814209938, -0.014345414005219936, -0.016598114743828773, -0.6470085978507996, -0.024420373141765594, -0.007497482933104038, -0.02075800858438015, -0.012030523270368576, -0.011470803059637547, 0.012548782862722874, 0.00885186716914177, -0.007214168086647987, 0.0058114128187298775, -0.02801363728940487, 0.008264506235718727, -0.013523110188543797, -0.019058117642998695, -0.02671453356742859, -0.006443689111620188, 0.011325690895318985, -0.023895204067230225, 0.00013571912131737918, -0.02518048696219921, -0.02556745335459709, -0.006657903082668781, 0.000742406293284148, 0.006198379676789045, -0.003907674457877874, -0.001089208060875535, 0.01232765894383192, 0.0013155145570635796, 0.022098571062088013, 0.03341735154390335, -0.029050154611468315, 0.022761942818760872, 0.015368112362921238, 0.028276221826672554, 0.043119166046381, -0.012756085954606533, -0.018740251660346985, 0.005490092560648918, 0.012334568426012993, 0.023784641176462173, -0.008679114282131195, -0.012458951212465763, 0.028939593583345413, 0.0020125731825828552, -0.004812900442630053, 0.0005243055638857186, 0.029602965340018272, -0.012638614512979984, -0.0016066035022959113, 0.013668222352862358, 0.0050651198253035545, 0.0029540774412453175, -0.018602048978209496, -0.0042670005932450294, 0.002688037697225809, -0.0018933735555037856, 0.041046127676963806, -0.017717553302645683, 0.011304960586130619, 0.002157685812562704, 0.00743529200553894, 0.031261395663022995, -0.021200256422162056, -0.004087337292730808, -0.008499450981616974, 0.009535969235002995, -0.0038973090704530478, 0.02162868343293667, 0.012769906781613827, -0.020716547966003418, 0.006823746021836996, 0.00937703624367714, -0.0072072576731443405, -0.028207119554281235, 0.014096650294959545, 0.008147034794092178, 0.031123191118240356, -0.01422103215008974, -0.0008745623636059463, 0.029271278530359268, 0.004063152242451906, -0.02769577130675316, -0.030984990298748016, -0.009577429853379726, 0.014842943288385868, -0.023660259321331978, -0.006568071432411671, 0.022761942818760872, 0.0009078173316083848, 0.015603057108819485, 0.005756131839007139, 0.011401701718568802, 0.005973801016807556, 0.008305966854095459, 0.021449020132422447, 0.013820244930684566, 0.005825233180075884, -0.004726523999124765, 0.0110631063580513, -0.003565623192116618, -0.001774173928424716, -0.008775855414569378, 0.010531026870012283, -0.018422387540340424, 0.018187442794442177, -0.005244783125817776, -0.025373969227075577, -0.006067087408155203, 0.042483434081077576, -0.026590151712298393, -0.008568552322685719, -0.013336536474525928, -0.017911037430167198, -0.0020540340337902308, 0.019472725689411163, -0.01626642793416977, 0.01724766567349434, -0.01267316471785307, 0.03908365219831467, -0.01592092216014862, 0.016252608969807625, -0.008133213967084885, 0.027377905324101448, -0.018602048978209496, 0.03029397688806057, 0.0385584831237793, 0.011560634709894657, -0.0004174145869910717, -0.012286197394132614, -0.013543840497732162, -0.0015876006800681353, -0.007096695713698864, 0.00133019860368222, 0.00014543648285325617, 0.01623878814280033, -0.01074524037539959, 0.0049476479180157185, -0.0006482558674179018, 0.021905088797211647, -0.025194305926561356, -0.002358079422265291, -0.015119347721338272, 0.021200256422162056, 0.012610973790287971, -0.010427375324070454, -0.029437121003866196, -0.019472725689411163, -0.012058163993060589, -0.0376463457942009, -0.007614954840391874, -0.00978473387658596, -0.0036070840433239937, -0.008596192114055157, 1.5736724890302867e-05, 0.010157880373299122, -0.02237497642636299, -0.024904081597924232, 0.005396805703639984, -0.0021939638536423445, -0.017302947118878365, 0.003634724533185363, 0.0157412588596344, -0.019375983625650406, 0.020785648375749588, 0.024738239124417305, -0.010883443057537079, -0.0047403438948094845, 0.024779699742794037, -0.003026633756235242, -0.04751400277018547, 0.01879553310573101, 0.0006720094243064523, -0.006167284213006496, 0.0394706204533577, -0.024005765095353127, -0.0018242723308503628, -0.0244065523147583, 0.0010589762823656201, 0.006516245659440756, 0.009757093153893948, -0.009722542017698288, -0.0017862666863948107, -0.010772881098091602, -0.009266474284231663, 0.023052169010043144, -0.006208745297044516, -0.009632710367441177, 0.009936756454408169, 0.0030905522871762514, 0.0442524254322052, 0.0009916025446727872, -0.0059150648303329945, -0.010130239650607109, 0.0074422019533813, 0.00542444596067071, -0.012458951212465763, 0.018284184858202934, 0.025926779955625534, 0.01008186861872673, 0.01393771730363369, 0.017026541754603386, -0.0023753545247018337, 0.01623878814280033, 0.0029074340127408504, 0.005476272199302912, -0.0253186896443367, 0.006360767874866724, -0.004757619462907314, 0.03980230540037155, -0.022844865918159485, -0.0010857529705390334, -0.027474647387862206, -0.004291186109185219, -0.0061361887492239475, 0.015934742987155914, 0.027820153161883354, 0.01435923483222723, 0.012915018945932388, -0.022001830860972404, 0.008644563145935535, 0.01806306093931198, -0.005783772561699152, -0.0030888246838003397, -0.02794453501701355, -0.017372047528624535, -0.009985127486288548, -0.010496475733816624, 0.045883212238550186, 0.010807431302964687, -0.007158887106925249, 0.023964304476976395, -0.001147080329246819, -0.001793176750652492, 0.017192384228110313, 0.008616922423243523, 0.0008145307074300945, 0.019237780943512917, -0.0010624313727021217, 0.04345085099339485, -0.04452883079648018, 0.0035345277283340693, -0.002593023469671607, 0.017510250210762024, -0.016667215153574944, -0.009508328512310982, 0.005991076119244099, 0.013626761734485626, 0.005244783125817776, 0.02924363873898983, 0.02374318055808544, -0.010461925528943539, -0.0032805807422846556, -0.020771827548742294, -0.00818849541246891, 0.010579397901892662, -0.034909937530756, -0.00923883356153965, 0.024517115205526352, 0.005272423382848501, 0.03524162620306015, 0.012300018221139908, -0.004284276161342859, 0.02520812675356865, 0.009722542017698288, 0.056718286126852036, 0.004343011882156134, 0.017551710829138756, 0.013509289361536503, -0.01760699227452278, -0.01708182319998741, -0.015907101333141327, -0.021379919722676277, 0.019472725689411163, -0.006188014522194862, 0.0056628454476594925, 0.009349395520985126, 0.019541826099157333, -0.0053380695171654224, 0.012790637090802193, 0.008388889022171497, -0.02913307584822178, -0.016708675771951675, 0.02135227806866169, 0.00023084128042683005, 0.00029735121643170714, -0.021587222814559937, -0.01669485680758953, -0.005369164980947971, -0.021863628178834915, 0.04911715164780617, -0.015091707929968834, 0.011740298010408878, 0.0253186896443367, -0.012604063376784325, -0.009549789130687714, 0.0074145616963505745, 0.016611933708190918, -0.00862383283674717, 0.0351310633122921, 0.004166803788393736, 0.0009967851219698787, 0.011415522545576096, -0.025429250672459602, 0.012507321313023567, 0.022347336634993553, -0.005445176735520363, -0.015146988444030285, -0.019555646926164627, 0.021835986524820328, -0.02629992552101612, -0.009819284081459045, -0.023273292928934097, -0.0030490916687995195, -0.0039940509013831615, 0.008547822013497353, 0.007075965404510498, -0.03057038225233555, 0.009667261503636837, 0.010531026870012283, -0.002525649731978774, -0.004805990029126406, -0.016142046079039574, -0.01286664791405201, 0.011304960586130619, 0.09768149256706238, 0.02678363397717476, -0.02433745190501213, 0.010337543673813343, 0.0009795099031180143, 0.008824226446449757, -0.016280248761177063, -0.027198242023587227, 0.027903074398636818, -0.002136955503374338, 0.01724766567349434, -0.0221262127161026, 0.022388797253370285, -0.007366190664470196, 0.0095221484079957, -0.013357266783714294, -0.016211148351430893, 0.0012991030234843493, -0.01781429536640644, -0.0046021416783332825, 0.007566584274172783, 0.010344453155994415, 0.015326651744544506, 0.011429342441260815, -0.04430770501494408, -0.0073316399939358234, 0.014089739881455898, 0.0024755513295531273, 0.017648452892899513, -0.01594856195151806, -0.005358799826353788, 0.018076879903674126, 0.019375983625650406, 0.016915980726480484, -0.00914900191128254, -0.005586834158748388, 0.00776697788387537, 0.023729361593723297, 0.0020713091362267733, 0.0019901152700185776, 0.020246658474206924, 0.023010708391666412, 0.012479681521654129, -0.011968332342803478, 0.001879553310573101, -0.010759061202406883, -0.01728912629187107, -0.012493501417338848, -0.022596100345253944, -0.005476272199302912, 0.040023431181907654, -0.0030197235755622387, -0.01710946299135685, -0.012348389253020287, 0.0253186896443367, 0.015229909680783749, -0.008457990363240242, -0.012320748530328274, -0.012355298735201359, 0.014455975964665413, 0.002149048028513789, 0.00923883356153965, 0.024005765095353127, 0.0004223812429700047, -0.017054181545972824, -0.01868497207760811, -0.030376898124814034, -0.0010969819268211722, -0.009611980058252811, 0.024586215615272522, -0.0231489110738039, -0.0002390470472164452, -0.018118340522050858, 0.0010840254835784435, -0.0025411974638700485, 0.0019400168675929308, 0.02791689522564411, -0.01774519495666027, 0.012452040798962116, -0.016169685870409012, -0.009231924079358578, -0.025028463453054428, 0.013039400801062584, -0.021683964878320694, -0.02135227806866169, -0.0019141039811074734, -0.001598829636350274, 0.019873512908816338, -0.036900054663419724, 0.008250686340034008, -0.006319307256489992, 0.01756553165614605, 0.01018552016466856, -0.008506360463798046, 0.004253180231899023, -0.0007208121824078262, -0.023328574374318123, 0.001263688667677343, 0.00927338469773531, -0.005293153692036867, 0.006243295501917601, -0.032311733812093735, -0.0024634585715830326, -0.00979855377227068, 0.013875526376068592, -0.00217841612175107, 0.019016657024621964, 0.018947556614875793, -0.007031049579381943, -0.004460484255105257, -0.006530065555125475, -0.011809399351477623, 0.004754164256155491, -0.009584340266883373, 0.016598114743828773, -0.006053267512470484, 0.012721535749733448, 0.001563415164127946, 0.00711051607504487, -0.003683095332235098, -0.0029160717967897654, -0.03405308350920677, 0.0119199613109231, 0.0004811172839254141, -0.02169778384268284, -0.01437305472791195, 0.006150009110569954, -0.01781429536640644, 0.015285191126167774, 0.009985127486288548, -0.0027623213827610016, 0.004536495544016361, 0.017841937020421028, -0.014469796791672707, -0.02356351725757122, -0.014594178646802902, -0.011443163268268108, 0.0025291049387305975, -0.009508328512310982, -0.0009129999089054763, -0.015381933189928532, -0.02573329582810402, -0.010966364294290543, -0.017551710829138756, 0.004847451113164425, -0.02089621126651764, -0.017468789592385292, 0.01115293800830841, -0.02030193991959095, -0.008361248299479485, -0.004771439824253321, -0.029796447604894638, -0.03734230250120163, -0.010489566251635551, -0.013502378948032856, -0.04162657633423805, -0.004208264406770468, -0.007165797054767609, 0.027502287179231644, 0.0019417444709688425, 0.03551803156733513, -0.021683964878320694, 0.011304960586130619, 0.0006862615700811148, -0.0011341238860040903, -0.007732427213340998, -0.005590288899838924, -0.030321618542075157, -0.030984990298748016, -0.01872643269598484, 0.041985902935266495, 0.017123283818364143, 0.014967325143516064, -0.0021766885183751583, 6.888528150739148e-05, 0.0189337357878685, -0.010669229552149773, -0.00027618894819170237, -0.01187159027904272, -0.05030569061636925, -0.01822890341281891, 0.008333607576787472, -0.009922935627400875, -0.0006892847013659775, -0.020495424047112465, 0.0008158263517543674, 0.04571736976504326, 0.010109509341418743, 0.0028780659195035696, -0.01914103887975216, 0.006550796329975128, -0.01802160032093525, 0.002496281871572137, -0.0004444072546903044, 0.014925864525139332, 0.003569078166037798, 0.016473732888698578, 0.005248237866908312, 0.01692979969084263, -0.00894169881939888, -0.001184222288429737, -0.007469842676073313, -0.010268442332744598, -0.029796447604894638, -0.017980139702558517, 0.009632710367441177, -0.027612850069999695, -0.01840856671333313, 0.02395048551261425, -0.016017664223909378, -0.008990069851279259, -0.01469092071056366, -0.015437213703989983, -0.022817224264144897, -0.030183415859937668, 0.008105574175715446, 0.007760067470371723, 0.010772881098091602, 0.0013561114901676774, -0.023259472101926804, 0.009833103977143764, -0.009225013665854931, 0.05442412570118904, 0.008789676241576672, 0.019790591672062874, 0.015133168548345566, -0.018394745886325836, 0.010862712748348713, 0.0024755513295531273, -0.0014640821609646082, -0.029685886576771736, 0.022775763645768166, 0.012106535024940968, -0.009307934902608395, 0.007055235095322132, -0.015838000923395157, 0.00023256881104316562, -0.05453468859195709, -0.01578271947801113, 0.022775763645768166, -0.008347428403794765, -0.006353857461363077, -0.007428381592035294, -0.009653441607952118, -0.027585208415985107, 0.0036692749708890915, 0.0045088548213243484, 0.030376898124814034, -0.008312877267599106, -0.018491487950086594, -0.03723173961043358, 0.015188449062407017, 0.010683049447834492, 0.030376898124814034, 0.03941533714532852, -0.03510342165827751, -0.03394252061843872, -0.01767609268426895, -0.017164744436740875, 0.0007022412028163671, -0.005697396118193865, 0.016750136390328407, -0.01760699227452278, 0.010800521820783615, 0.012984120287001133, -0.0025843859184533358, -0.008886417374014854, -0.005828688386827707, -0.007704786490648985, 0.02556745335459709, 0.01487058401107788, 0.009218103252351284, 0.00037379443529061973, 0.012528052553534508, 0.007628775201737881, 0.02075800858438015, 0.01265934482216835, 0.00146580976434052, -0.016915980726480484, 0.00044743044418282807, 8.076205995166674e-05, 0.01788339763879776, 0.008209225721657276, -0.006108548492193222, -0.022112391889095306, -0.0022492448333650827, 0.0033030386548489332, -0.0032062968239188194, 0.018671151250600815, -0.04309152439236641, -0.049393557012081146, -0.001262824865989387, -0.01704036258161068, 0.02573329582810402, 0.002206056611612439, 0.032422296702861786, 0.0017430783482268453, 0.037259381264448166, -0.02089621126651764, 0.012645523995161057, -0.018325645476579666, 0.01202361285686493, -0.02938184142112732, 0.012963389977812767, 0.009826194494962692, -0.024586215615272522, 0.015561595559120178, -0.006253660656511784, -0.03289218246936798, 0.0010157880606129766, 0.019610928371548653, 0.0005437402869574726, 0.0009760548127815127, 0.012141085229814053, -0.004239360336214304, 0.0009199100313708186, 0.012161815539002419, -0.00790518056601286, -0.03618140146136284, 0.014276312664151192, 0.022941606119275093, 0.007027594372630119, 0.012949569150805473, -0.02005317620933056, 0.009922935627400875, 0.003064639400690794, 0.013253615237772465, 0.0013526565162464976, -0.0376463457942009, 0.01640463061630726, -0.008672203868627548, 0.017841937020421028, 0.013550749979913235, -0.002263065194711089, -0.007746247574687004, -0.017413508147001266, -0.021407559514045715, 0.006188014522194862, 0.01469092071056366, -0.010717599652707577, 0.022388797253370285, 0.00999203696846962, -0.005289698950946331, -0.003873123787343502, -0.010344453155994415, 0.01107692625373602, 0.0022336971014738083, -0.006498970091342926, -0.03678949177265167, -0.004011326003819704, -0.003047364065423608, 0.03731466084718704, -0.0032408474944531918, -0.012472771108150482, -0.010164789855480194, -0.028138019144535065, -0.02426834963262081, -0.025194305926561356, -0.017399689182639122, 0.023480596020817757, 0.058929525315761566, 0.017938677221536636, 0.013246704824268818, 0.03916657343506813, -0.0244065523147583, -0.003942225128412247, -0.0027156781870871782, -0.0029039790388196707, -0.005921974778175354, 0.004180624149739742, -0.006854841485619545, 0.005078940186649561, -0.03772927075624466, -0.007518213242292404, -0.002679399913176894, 0.00033665253431536257, -0.0029748077504336834, 0.013253615237772465, 0.011657376773655415, 0.01167810708284378, 0.0007307454361580312, -0.0038973090704530478, 0.02587149851024151, 0.018463848158717155, -0.0025843859184533358, -0.02303834818303585, -0.02075800858438015, -0.011249679140746593, -0.008084842935204506, -0.02107587456703186, -0.023895204067230225, 0.006143098697066307, -0.014455975964665413, 0.009826194494962692, -0.010717599652707577, -0.012244736775755882, -0.022872505709528923, -0.02605116181075573, 0.04057623818516731, -0.0013751144288107753, -1.2079218549843063e-06, 0.02952004410326481, 0.005780317354947329, -0.016349349170923233, -0.007780797779560089, 0.00903153046965599, 0.011788669042289257, -0.03303038701415062, 0.0072279879823327065, -0.03380431979894638, 0.022761942818760872, -0.004187534097582102, 0.008665293455123901, -0.02219531312584877, 0.014925864525139332, -0.011567545123398304, -0.0011876772623509169, -0.023466775193810463, 0.017275305464863777, 0.011222039349377155, 0.006167284213006496, 0.006222565192729235, 0.009535969235002995, -0.016529012471437454, 0.004712703637778759, -0.011733387596905231, -0.0206474456936121, -0.0002863382105715573, 0.005597199313342571, 0.011491533368825912, 0.004201354458928108, -0.013136142864823341, 0.00045736372703686357, -0.002612026408314705, -0.021117335185408592, 0.002582658315077424, 0.2055346816778183, -0.011070015840232372, -0.00790518056601286, 0.022292055189609528, -0.02005317620933056, 0.015630697831511497, 0.01868497207760811, 0.0006936035351827741, -0.006201834883540869, -0.00572503637522459, -0.0002621527819428593, 0.029658246785402298, -0.02475205808877945, 0.0023770821280777454, 0.015603057108819485, -0.004754164256155491, -0.03189712390303612, 0.002003935631364584, -0.010199340991675854, -0.06484459340572357, 0.0005040070391260087, 6.0031688917661086e-05, -0.003401507856324315, -0.002712222980335355, 0.027778692543506622, 0.006329672411084175, -0.015146988444030285, 0.00489927688613534, 0.032698698341846466, -0.011560634709894657, -0.038171518594026566, -0.009791643358767033, -0.0035155247896909714, -0.017399689182639122, -0.015464854426681995, 0.013315806165337563, -0.0015435486566275358, 0.011961421929299831, 0.010994005016982555, -0.022236773744225502, 0.005645569879561663, -0.005034024361521006, -0.00296789756976068, 0.0027312259189784527, 0.006094728130847216, 0.02552599273622036, -0.013633672147989273, -0.020246658474206924, -0.022734303027391434, -0.004533040337264538, -0.024973182007670403, 0.011429342441260815, 0.04461175203323364, 0.023079808801412582, -0.00914900191128254, -0.01127040944993496, -0.005756131839007139, 0.005963435862213373, -0.01200979296118021, 0.017137104645371437, -0.00583905354142189, 0.027018578723073006, 0.008084842935204506, 0.02518048696219921, -0.016211148351430893, 0.030846787616610527, -0.0043706526048481464, 0.000935457821469754, 0.019652388989925385, -0.030321618542075157, 0.00734546035528183, -0.007338549941778183, -0.007849899120628834, 0.002515284577384591, -0.0036519996356219053, -0.002872883342206478, 0.024904081597924232, -0.025014642626047134, 0.00468160817399621, -0.005040934309363365, 0.008900238201022148, -0.024074867367744446, 0.023618798702955246, 0.011595185846090317, -0.01244513038545847, -0.02299688756465912, -0.012894288636744022, -0.02283104509115219, -0.027751052752137184, 0.009757093153893948, -0.007932820357382298, -0.02580239810049534, 0.007044869940727949, -0.0027778693474829197, -0.0074422019533813, -0.018878454342484474, 0.018007779493927956, 0.01623878814280033, -0.006291666533797979, -0.008658383972942829, -0.008948608301579952, -0.0021179525647312403, 0.01540957298129797, 0.012949569150805473, -0.012362209148705006, 0.0019106488907709718, 0.01502260658890009, 0.015768900513648987, 0.005072029773145914, -0.011650466360151768, 0.037673987448215485, -0.009736362844705582, 0.0015841455897316337, -0.017993958666920662, -0.006118913646787405, 0.014538898132741451, -0.019085759297013283, -0.019652388989925385, -0.007124336436390877, 0.009542879648506641, 0.011042376048862934, -0.016390809789299965, -0.006070542614907026, 0.006077452562749386, 0.006353857461363077, -0.020426321774721146, -0.017593171447515488, 0.012465860694646835, 0.014276312664151192, -0.01966620795428753, 0.024171609431505203, -0.043119166046381, -0.004958013072609901, -0.0012973755365237594, -0.01970766857266426, 0.02846970409154892, 0.003232209710404277, -0.029824089258909225, 0.02682509645819664, -0.015105527825653553, 0.0028884313069283962, -0.007836079224944115, -0.0008153944509103894, 0.008920968510210514, 0.011519174091517925, -0.017316767945885658, 0.008416528813540936, -0.018560588359832764, -0.008831136859953403, -0.013785694725811481, -0.02974116802215576, -0.016155866906046867, -0.002586113288998604, -0.016598114743828773, 0.008996979333460331, -0.0014977690298110247, -0.004305006470531225, -0.009314845316112041, 0.012196366675198078, 0.01872643269598484, -0.0415160171687603, 0.012389849871397018, 0.025747116655111313, -0.0051895021460950375, -0.005738856736570597, -0.017164744436740875, -0.17800475656986237, 0.015685977414250374, 0.005134221166372299, -0.01407591998577118, 0.032035328447818756, 0.025429250672459602, 0.020744187757372856, 0.0041322531178593636, -0.0034205105621367693, -0.01469092071056366, 0.03438476845622063, 0.01167810708284378, -0.047182317823171616, -0.035462748259305954, -0.009411586448550224, 0.001214454066939652, -0.018643511459231377, 0.021435199305415154, 0.020923851057887077, 0.02632756717503071, 0.002551562851294875, -0.008195404894649982, 0.009017709642648697, 0.006550796329975128, -0.005707761272788048, 0.0021542306058108807, 0.0035017046611756086, 0.024904081597924232, 0.013004850596189499, -0.030100494623184204, -0.02107587456703186, 0.02169778384268284, -0.0011349875712767243, 0.0010727965272963047, 0.013778784312307835, -0.002079946920275688, -0.012286197394132614, -0.008810406550765038, -0.018532948568463326, -0.0010632950579747558, 0.007041414733976126, 0.0040044160559773445, 0.023798462003469467, 0.008126304484903812, 0.006046357098966837, 0.03416364639997482, -0.0038178428076207638, -0.010558667592704296, 0.006668268237262964, -0.021504301577806473, 0.010254621505737305, -0.006727004423737526, -0.003066366771236062, 0.015838000923395157, 0.038973089307546616, -0.006115458440035582, 0.011864680796861649, 0.011837040074169636, -0.007642595563083887, -0.011698837392032146, -0.007490572985261679, -0.006568071432411671, 0.01220327615737915, -0.024254530668258667, -0.0061258235946297646, 0.003451606258749962, -0.01633553020656109, 0.012265467084944248, -0.022499358281493187, 0.014925864525139332, 0.003575988346710801, 0.013523110188543797, 0.024061046540737152, 0.0038212977815419436, -0.004080427344888449, -0.002691492671146989, -0.025719476863741875, 0.0022440622560679913, -0.0032926732674241066, -0.008333607576787472, -0.028386782854795456, 0.02924363873898983, -0.016017664223909378, -0.008741305209696293, -0.004170258995145559, 0.018187442794442177, -0.015658337622880936, -0.03363847732543945, -0.016363169997930527, -0.008990069851279259, 0.006315852049738169, -0.01854676939547062, -0.02103441208600998, -0.015561595559120178, 0.022568460553884506, 0.018242724239826202, 0.00988838542252779, -0.016943620517849922, -0.0036105390172451735, -0.016363169997930527, 0.012783726677298546, -0.022319694980978966, -0.0012498684227466583, 0.031399596482515335, 0.02500082366168499, 0.014842943288385868, 0.002263065194711089, 0.015976203605532646, 0.03438476845622063, 0.01032372284680605, -0.019265420734882355, 0.014607998542487621, 0.011733387596905231, 0.0073109096847474575, 0.016750136390328407, 0.029464762657880783, -0.020329579710960388, -0.023922843858599663, 0.012507321313023567, -0.01413120049983263, 0.05716053396463394, -0.004792170133441687, -0.007131246384233236, 0.007787708193063736, -0.015174629166722298, -0.02860790677368641, -0.11830129474401474, 0.007352370303124189, 0.014428336173295975, 0.0041322531178593636, 0.0078706294298172, 0.01998407393693924, -0.005486637353897095, 0.02278958447277546, -0.0016325163887813687, 0.015616877004504204, -0.030487461015582085, -0.026064982637763023, -0.006246750708669424, -0.0021922364830970764, 0.00946686789393425, -0.0362643226981163, -0.01539575308561325, -0.021587222814559937, -0.000934594077989459, 0.03477173671126366, 0.00595998065546155, -0.023549698293209076, 0.008312877267599106, -0.017302947118878365, 0.02244407869875431, -0.003634724533185363, -0.03333443030714989, 0.022292055189609528, 0.025581274181604385, 0.023204190656542778, -0.018671151250600815, -0.0043395571410655975, 0.020426321774721146, -0.002681127516552806, -0.008983159437775612, -0.01384788565337658, -0.025691835209727287, -0.007842988707125187, 0.028552625328302383, -0.0282900407910347, 0.007297089323401451, -0.010461925528943539, 0.007919000461697578, -0.0010667501483112574, 0.016017664223909378, 0.0034844293259084225, -0.02990701049566269, 0.00659916689619422, -0.001953837228938937, -0.01822890341281891, -0.016169685870409012, 0.0034947944805026054, -0.03681713342666626, -0.009598160162568092, 0.027447005733847618, -0.006150009110569954, 0.02846970409154892, -0.000519986730068922, -0.018284184858202934, -0.0038903988897800446, -0.0166533961892128, 0.014469796791672707, 0.006581891793757677, 0.0287461094558239, 0.010337543673813343, -0.015727438032627106, -0.033749040216207504, -0.028386782854795456, 0.02096531167626381, 0.013371086679399014, -0.0035258899442851543, 0.019030477851629257, -0.0287461094558239, 0.009515238925814629, -0.01897519640624523, -0.014801482670009136, -0.02584385871887207, -0.003531072521582246, 0.01050338614732027, 0.008948608301579952, -0.0021801437251269817, -0.02317655086517334, -0.005230962764471769, -0.012458951212465763, 0.019970254972577095, 0.00857546180486679, 0.0075527639128267765, -0.019859692081809044, -0.004605596885085106, -0.031233754009008408, -0.0075527639128267765, 0.024171609431505203, 0.0021335002966225147, -0.031233754009008408, 0.0067857401445508, 0.03499285876750946, 0.02475205808877945, 0.009840014390647411, -0.02044014260172844, -0.005835598334670067, -0.01262479368597269, 0.012127265334129333, -0.0613618865609169, 0.024323631078004837, -0.0070897857658565044, 0.01735822856426239, -0.001233456889167428, 0.004000960849225521, 0.012887378223240376, -0.012790637090802193, -0.0036174491979181767, 0.026493409648537636, -0.01050338614732027, 0.03772927075624466, -0.01977677084505558, -0.009093721397221088, -0.018560588359832764, 0.002596478443592787, -0.00904535036534071, -0.0097501827403903, 0.014981145970523357, 0.006454054266214371, 0.016142046079039574, -0.0038247527554631233, 0.02618936449289322, -0.011083836667239666, -0.02247171849012375, 0.0023563518188893795, 0.011539904400706291, 0.023687899112701416, 0.008451079949736595, -0.007684056181460619, 0.021974189206957817, -0.03004521317780018, -0.009971306659281254, 0.00038610308547504246, 0.0020661265589296818, -0.0033306791447103024, -0.014773841947317123, 0.0036209041718393564, 0.003017995972186327, 0.04649130254983902, -0.0066095320507884026, -0.008057203143835068, 0.0036554548423737288, -0.014801482670009136, 0.010054227896034718, 0.037397582083940506, -0.023162730038166046, -0.005009838845580816, 0.020854750648140907, -0.01069686934351921, 0.004121887963265181, 0.01943126507103443, -0.0029005238320678473, -0.020136097446084023, -0.005687030963599682, -0.03811623528599739, 0.028829030692577362, -0.005704306066036224, 0.03211824968457222, -0.02678363397717476, 0.013543840497732162, -0.01690215989947319, 0.00702068442478776, -0.01172647811472416, 0.023439135402441025, -0.023190371692180634, -0.0060083516873419285, -0.021504301577806473, -0.011629736050963402, -0.013336536474525928, -0.002624118933454156, -0.005165316630154848, -0.006274391431361437, 0.002677672542631626, 0.015934742987155914, 0.023121269419789314, 0.003375594737008214, 0.00015504586917813867, -0.030625663697719574, -0.005631749983876944, -0.0027415910735726357, -0.014594178646802902, -0.015865640714764595, -0.008762035518884659, 0.02233351580798626, -0.0005264649516902864, 0.01717856526374817, 0.001600557123310864, -0.007545853964984417, 0.016998901963233948, 0.013986088335514069, -0.01102855522185564, -0.0034308757167309523, -0.01921014115214348, 0.018947556614875793, 0.009770913049578667, -0.017026541754603386, 0.0017577623948454857, 0.0206474456936121, 0.03325150907039642, 0.002325256122276187, 0.004985653329640627, 0.0038316629361361265, -0.011007824912667274, -0.0015271371230483055, -0.0016221512341871858, -0.0063987732864916325, -0.02135227806866169, 0.0031078276224434376, 0.029326559975743294, 0.008112483657896519, -0.006070542614907026, 0.0274884682148695, 0.016888339072465897, -0.01253496203571558, 0.003327223937958479, 0.011242769658565521, -0.01770373433828354, -0.0038178428076207638, 0.0415160171687603, 0.01234147883951664, 0.035987917333841324, 0.015381933189928532, 0.007172707002609968, 0.029934650287032127, 0.027709592133760452, 0.006536975968629122, 0.029547683894634247, -0.0009242288651876152, 0.006823746021836996, 0.009190462529659271, 0.010337543673813343, -0.035048142075538635, 0.002765776589512825, 0.00777388783171773, -0.03742522373795509, -0.012244736775755882, 0.005251693073660135, -0.02717060223221779, 0.04049331694841385, 0.010482655838131905, -0.0023667169734835625, 0.005116945598274469, 0.01774519495666027, 0.018809353932738304, 0.0034567888360470533, -0.005711216479539871, 0.005196412093937397, -0.013723502866923809, 0.011443163268268108, -0.018076879903674126, 0.02057834528386593, -0.015727438032627106, -0.017164744436740875, 0.032339371740818024, -0.009003889746963978, 0.04295331984758377, -0.016072945669293404, -0.02580239810049534, 0.03449533134698868, -0.002069581765681505, 0.014525077305734158, 0.002805509837344289, -0.01581036113202572, 0.008133213967084885, 0.01882317289710045, -0.0014217577408999205, 0.005566103849560022, -0.041958265006542206, 0.002938529709354043, 0.021379919722676277, 0.008091753348708153, -0.010434284806251526, 0.013530019670724869, -4.5752567530144006e-05, 0.002147320657968521, -0.009307934902608395, 0.012645523995161057, -0.0011583092855289578, -0.014580358751118183, 0.024033406749367714, -0.01487058401107788, -0.01585182175040245, 0.021366098895668983, -0.014525077305734158, -0.012362209148705006, -0.0010952544398605824, -0.0008015742059797049], "986d02bb-c253-43cd-9327-ef021633ec9c": [-0.018640967085957527, -0.014577840454876423, -0.01708984188735485, 0.00821547769010067, -0.014660201035439968, 0.03519546240568161, -0.007638953160494566, -0.012978670187294483, -0.015030824579298496, -0.009739150293171406, 0.03324626013636589, 0.014866102486848831, 0.01984892413020134, 0.007158515974879265, 0.006684941705316305, 0.00440629618242383, 0.0364583283662796, -0.0055833677761256695, 0.03036363795399666, -0.01876450888812542, -0.017611458897590637, -0.011894254945218563, 0.006317750550806522, 0.024323854595422745, 0.0077419038861989975, 0.026176968589425087, -0.0006159892654977739, -0.012724725529551506, 0.015387720428407192, -0.009251849725842476, -0.000548213254660368, 0.013349293731153011, 0.009066537953913212, 0.0029529735911637545, -0.02712411805987358, 0.005535324104130268, 0.011146144941449165, -0.019121404737234116, 0.020096005871891975, -0.005332854110747576, 0.01833897829055786, -0.0012765905121341348, -0.01648586243391037, -0.001986951334401965, -0.026877034455537796, 0.013273796066641808, -0.0003751271578948945, -0.020905885845422745, -0.02201775461435318, 0.012649227865040302, 0.02912822738289833, 0.01920376531779766, -0.0290733203291893, -0.0014567545149475336, -0.01687021180987358, -0.011015741154551506, 6.632823351537809e-05, 0.014879829250276089, -0.006104985252022743, 0.013198299333453178, 0.005051454994827509, -0.01523672603070736, 0.005669160280376673, 0.02398068457841873, -0.022374652326107025, 0.005350012332201004, -0.009732287377119064, -0.021125514060258865, -0.014715108089148998, -0.025174913927912712, 0.043953150510787964, 0.011242233216762543, 0.009361663833260536, 0.007391870953142643, 0.027426106855273247, -0.02370614930987358, -0.02398068457841873, -0.007879171520471573, -0.01724083535373211, 0.01529163308441639, -0.009052811190485954, -0.024378761649131775, -0.016691764816641808, 0.003555235918611288, 0.0282497126609087, -0.007707586977630854, 0.021921668201684952, 0.019272400066256523, -0.0069560459814965725, -0.016609404236078262, -0.008428242988884449, 0.014742561616003513, 0.013514014892280102, 0.01347283460199833, -0.005696613807231188, 0.019821470603346825, -0.012971807271242142, 0.006348635535687208, 0.006211367901414633, -0.02918313443660736, -0.01984892413020134, -0.003193192183971405, -0.014220943674445152, -0.011811894364655018, -0.026712313294410706, -2.6970978069584817e-05, -0.013122801668941975, -0.0058579035103321075, 0.0225530993193388, -0.011681489646434784, 0.0036067115142941475, 0.02495528571307659, -0.02352770045399666, -0.05457767844200134, -0.017501644790172577, -0.028826238587498665, 0.0265201386064291, -0.002052153693512082, -0.035222917795181274, -0.007062428165227175, -0.002203148091211915, 0.01696630008518696, 0.010020549409091473, -0.007590909488499165, 0.007192832883447409, 0.013081621378660202, 0.012271741405129433, -0.027618281543254852, 0.010102909989655018, 0.009066537953913212, 0.03374042361974716, 0.016527043655514717, 0.024365033954381943, -0.0007107898127287626, -0.015319086611270905, 0.0190939512103796, -0.008668461814522743, -0.0028277167584747076, -0.018256617709994316, -0.028881145641207695, 0.01924494467675686, 0.011153008788824081, -0.0024433669168502092, -0.03774864599108696, -0.015662256628274918, 0.024721931666135788, 0.021949121728539467, 0.0002316394093213603, -0.014275851659476757, 0.004649946931749582, 0.013479698449373245, -0.025449451059103012, 0.02174321934580803, -0.018668420612812042, 0.023513974621891975, -0.0025823505129665136, 0.007961532101035118, -0.002856886014342308, -0.019395940005779266, -0.003136569168418646, 0.01931357942521572, 0.013253206387162209, 0.010892200283706188, 0.002904929919168353, 0.01979401707649231, 0.027412379160523415, 0.010624527931213379, -0.00838019885122776, -0.03428949788212776, -0.009052811190485954, 0.020947067067027092, 0.01633486896753311, -0.029869472607970238, 0.009052811190485954, -0.015264179557561874, 0.01768009178340435, 0.03986256942152977, 0.020645076408982277, -0.02017836645245552, 0.005717203952372074, -0.037227027118206024, -0.00986955501139164, 0.023472793400287628, 0.023829689249396324, -0.012024659663438797, -0.007343827281147242, -0.006046646740287542, -0.0018908639904111624, 0.003665050258859992, 0.0002072958304779604, 0.010446080006659031, 0.007151652593165636, -0.024694478139281273, -0.005614253226667643, -0.6382403373718262, -0.032285384833812714, -0.006063804961740971, -0.014344485476613045, -0.02587497979402542, 0.006180482916533947, 0.0021568203810602427, 0.012704134918749332, -0.0005490711773745716, -0.0006005465984344482, -0.031049976125359535, 0.006129007320851088, -0.005978012923151255, -0.019299853593111038, -0.014248397201299667, -0.0012002353323623538, 0.010425489395856857, -0.02299235574901104, 0.0008948144968599081, -0.01919003762304783, -0.013870911672711372, -0.0006052652024663985, -0.00044783620978705585, 0.008078210055828094, 0.006207936443388462, -0.015497534535825253, 0.01946457475423813, 0.0053362855687737465, -0.003067935351282358, 0.024818018078804016, -0.01817425712943077, 0.016513315960764885, 0.017556551843881607, 0.021441230550408363, 0.051338158547878265, -0.006424133200198412, -0.028936052694916725, 0.011667762883007526, 0.0006164181977510452, 0.017158474773168564, -0.010981423780322075, -0.027137843891978264, 0.03401496261358261, 0.003802318125963211, 0.0077419038861989975, 0.0023781645577400923, 0.011104964651167393, -0.008798865601420403, -0.0038229082711040974, -0.001758743659593165, 0.008242931216955185, -0.012566867284476757, -0.03352079540491104, 0.006472176872193813, -0.006355499383062124, -0.0004030096752103418, 0.027645735070109367, -0.010857882909476757, 0.014852375723421574, -0.02229228988289833, 0.015058278106153011, 0.02462584339082241, -0.002512000733986497, -0.0023387002293020487, 0.0009256997145712376, 0.01584070362150669, -0.010995150543749332, 0.013809140771627426, 0.025257274508476257, -0.020150912925601006, 0.013685599900782108, 0.00843510590493679, 0.0027247657999396324, -0.02218247577548027, 0.027783002704381943, 0.0035037605557590723, 0.03824280947446823, -0.024310126900672913, -0.004245006944984198, 0.024433668702840805, 0.002549749333411455, -0.016115238890051842, -0.04299227520823479, -0.02743983268737793, 0.019341032952070236, -0.005734362173825502, 0.005655433516949415, 0.02455720864236355, 0.000542636786121875, -0.0036341650411486626, 0.005174995865672827, 0.019876377657055855, 0.010727478191256523, -0.0016403502086177468, 0.03330116719007492, 0.004955367650836706, -0.009450888261198997, -0.0032618260011076927, 0.030555812641978264, -0.0071996962651610374, -0.01196288876235485, -0.013630692847073078, 0.0034316950477659702, -0.016142692416906357, 0.01610151305794716, -0.01138636376708746, -0.03168140724301338, -0.009485204704105854, 0.0559503547847271, -0.02087843231856823, -0.011949161998927593, -0.025998521596193314, -0.018311524763703346, 0.0036238699685782194, 0.039395857602357864, -0.019176311790943146, 0.014330758713185787, -0.0073163737542927265, 0.024104226380586624, -0.014440572820603848, 0.023610061034560204, -0.023362979292869568, 0.01714474894106388, -0.010871609672904015, 0.01870960183441639, 0.026053428649902344, 0.039121322333812714, -0.005833881441503763, -0.016527043655514717, -0.006787892896682024, 0.0029358151368796825, -0.015854431316256523, 0.005442668218165636, 0.011523631401360035, 0.013074757531285286, -0.010768658481538296, 0.018833141773939133, 0.009581292048096657, 0.015881884843111038, -0.030034193769097328, -0.014220943674445152, -0.0008115958771668375, 0.020864706486463547, 0.012189380824565887, -0.0002042930864263326, -0.021770672872662544, -0.019437121227383614, -0.009917598217725754, -0.041345059871673584, 0.006973204202950001, -0.005905947182327509, -0.0025548969861119986, -0.007659543305635452, 0.010967697016894817, 0.014811195433139801, -0.016801578924059868, -0.022141296416521072, 0.008304702118039131, 0.0007065001991577446, -0.02109806053340435, 0.020027372986078262, 0.02490037865936756, -0.020480355247855186, 0.013829730451107025, 0.024447394534945488, -0.028826238587498665, -0.008846909739077091, 0.033108994364738464, -0.008352745324373245, -0.03157159313559532, 0.010569620877504349, 0.0025823505129665136, -0.002067596185952425, 0.04562781751155853, -0.01942339353263378, 0.008030165918171406, -0.014522933401167393, -0.0026115200016647577, -0.00429648207500577, 0.009965642355382442, -0.004869575146585703, 0.01806444302201271, -0.007385007571429014, -0.0010586779098957777, 0.020041098818182945, -0.007460504770278931, -0.013067894615232944, 0.007789947558194399, 0.0013049020199105144, 0.029265495017170906, -0.002541170222684741, 0.011139282025396824, -0.007460504770278931, -0.0015391152119264007, 0.009107718244194984, 0.008428242988884449, 0.01185307465493679, 0.03058326616883278, 0.012477642856538296, 0.025394542142748833, 0.019011590629816055, 0.013342429883778095, 0.031269606202840805, -0.007927215658128262, 0.004262165166437626, -0.031544141471385956, 0.015923064202070236, -0.0024965580087155104, 0.035881802439689636, -0.028167352080345154, -0.006259411573410034, -0.01626623421907425, -0.004814668092876673, -0.009965642355382442, 0.027371199801564217, 0.03816044703125954, 0.015195545740425587, 0.015072004869580269, -0.004845553543418646, -0.006352067459374666, 0.007371280808001757, -0.009972505271434784, -0.004519542213529348, -0.02483174577355385, -0.012381555512547493, -0.01361696608364582, 0.01821543648838997, 0.03887424245476723, 0.015044551342725754, -0.013966999016702175, 0.03324626013636589, 0.00013394335110206157, -0.010555894114077091, 0.011557948775589466, 0.012951216660439968, 0.015072004869580269, 0.006835936568677425, -0.01805071532726288, 0.04538073390722275, -0.0410979799926281, -0.00633147731423378, 0.003527782391756773, 0.0330815389752388, -0.005809859838336706, -0.015552441589534283, 0.002185989636927843, 0.005027433391660452, 0.008229204453527927, 0.00975974090397358, 0.018517427146434784, -0.020672529935836792, -0.00021490990184247494, -0.004807804711163044, -0.01947830058634281, 0.010796112939715385, -0.019272400066256523, -0.009972505271434784, 0.007364417426288128, 0.020164640620350838, 0.01828407123684883, 0.0121207470074296, -0.0021533886902034283, 0.020590169355273247, 0.014138583093881607, 0.03953312709927559, -0.01149617787450552, 0.021029427647590637, 0.014344485476613045, -0.007446778006851673, -0.01799580827355385, -0.013266933150589466, -0.0004572733596432954, 0.01714474894106388, -0.0019337601261213422, 0.02387087047100067, 0.007982122711837292, -0.0016901098424568772, -0.010150954127311707, 0.01615642011165619, -0.011427544057369232, -0.02381596341729164, -0.029594937339425087, 0.023623788729310036, -0.0006194209563545883, 0.0017158475238829851, -0.02429640106856823, -0.021715765818953514, 0.016581950709223747, -0.012237424030900002, 0.03596416488289833, -0.015826977789402008, 0.004323935601860285, 0.019162584096193314, -0.01632114127278328, -0.012409009039402008, -6.750787724740803e-05, 0.008730231784284115, -0.022759001702070236, 0.029100773856043816, -0.01393954548984766, 0.009842101484537125, 0.01412485633045435, -0.021784400567412376, 0.0005284810322336853, 0.02157849818468094, 0.001805071602575481, -0.008057619445025921, -0.010947107337415218, 0.020466629415750504, -0.020645076408982277, -0.020960792899131775, -0.032230477780103683, -0.01534654013812542, -0.00821547769010067, 0.000559795240405947, 0.010391172021627426, -0.014385665766894817, -0.005075477063655853, 0.020301908254623413, -0.00922439619898796, -0.011949161998927593, -0.013273796066641808, -0.005820154678076506, -0.006986930966377258, 0.10284103453159332, 0.024529755115509033, -0.02727511152625084, -0.0019749405328184366, -0.0017527382588014007, 0.019450847059488297, -0.022306017577648163, -0.03261483088135719, 0.02716529741883278, -0.0005087488098070025, 0.01187366433441639, -0.005274515133351088, 0.008641008287668228, -0.005933400709182024, 0.021180421113967896, -0.003011312335729599, -0.006420701276510954, 0.00805075652897358, -0.008750822395086288, 0.006214799825102091, -8.089952643786091e-06, 0.009725423529744148, 0.009485204704105854, 0.009910735301673412, -0.0336306095123291, -0.006482471711933613, 0.029430216178297997, 0.00031378562562167645, 0.007632089778780937, -0.004588176030665636, -0.010439216159284115, 0.03741920366883278, 0.027096664533019066, 0.020205819979310036, -0.02023327350616455, -0.00553189218044281, 0.00992446206510067, 0.0036856404040008783, -0.027851637452840805, -0.0028774761594831944, 0.02038426883518696, 0.015868157148361206, 0.0017278584418818355, -0.023994412273168564, -0.00017941329861059785, -0.0019080224446952343, -0.0205078087747097, -0.017213381826877594, -0.02706921100616455, -0.020370541140437126, 0.03643087297677994, -0.016348594799637794, -0.024268947541713715, -0.006468744948506355, 0.00596428569406271, 0.00819488801062107, -0.011715807020664215, -0.005298537202179432, -0.004752897657454014, 0.039725299924612045, -0.0012319785309955478, 0.009938188828527927, 0.01784481480717659, -0.015126911923289299, -0.013225752860307693, -0.025106281042099, -0.023280618712306023, -0.012738452292978764, -0.008242931216955185, 0.028661517426371574, -0.006561400834470987, -0.007515412289649248, -0.0047048539854586124, 0.01176385022699833, 0.008544920943677425, -0.0049141873605549335, 0.026561319828033447, -0.012724725529551506, 0.007735040504485369, -0.015524988062679768, -0.012566867284476757, -0.03450912609696388, 7.463936344720423e-05, -0.015607348643243313, -0.016362322494387627, -0.010583347640931606, 0.018407611176371574, 0.0078379912301898, -0.021496137604117393, 0.00789289828389883, 0.00039078426198102534, 0.022690366953611374, 0.013122801668941975, -0.010727478191256523, 0.0048833019100129604, -0.008970450609922409, -0.01250509638339281, 0.002484547207131982, 0.0008544920710846782, 0.0035209190100431442, 0.003510623937472701, -0.044282592833042145, -0.005820154678076506, -0.0024416509550064802, 0.012045249342918396, -0.018586060032248497, 0.010205861181020737, 0.03412477672100067, -0.010507849976420403, -0.01746046356856823, 0.0009668800630606711, -0.031104883179068565, 0.005741225555539131, 0.00029298095614649355, -0.0003588265972211957, 0.00493477750569582, 0.011317729949951172, 0.0031914764549583197, 0.020219547674059868, -0.0020984814036637545, 0.004845553543418646, -0.049334049224853516, 0.002283792942762375, 0.0037405474577099085, -0.022388378158211708, -0.00681877788156271, 0.007124198600649834, -0.014879829250276089, 0.026643680408596992, 0.00509606720879674, 0.014413119293749332, 0.014111129567027092, 0.015442627482116222, -0.014742561616003513, -0.035552360117435455, -0.0018016399117186666, -0.012560003437101841, 0.005102930590510368, -0.013431654311716557, 0.017762454226613045, -0.013026714324951172, -0.028277166187763214, -0.005634843371808529, -0.027481013908982277, 0.014550386928021908, -0.020164640620350838, -0.020809799432754517, 0.012079566717147827, 0.0030971048399806023, -0.014330758713185787, -0.00851746741682291, -0.04441985860466957, -0.03475620597600937, -0.014303305186331272, -0.014468026347458363, -0.04057636111974716, -0.01019213441759348, -0.009286167100071907, 0.027192750945687294, 0.009217532351613045, 0.035771988332271576, -0.02819480560719967, 0.0012362680863589048, 0.00676387082785368, -0.0063760895282030106, 0.0038606568705290556, 0.002187705598771572, -0.014811195433139801, -0.037721190601587296, -0.02153731696307659, 0.035113103687763214, 0.004536700900644064, 0.04381588101387024, -0.004581312648952007, 0.008496876806020737, 0.02701430395245552, 0.008229204453527927, -0.0056108213029801846, -0.005816723220050335, -0.0259710680693388, -0.027810456231236458, 0.01331497635692358, -0.008846909739077091, -0.01206583995372057, -0.03368551656603813, -0.008462559431791306, 0.038050632923841476, 0.007982122711837292, 0.002740208525210619, -0.022045208141207695, 0.006757007446140051, -0.025243548676371574, 0.0067089637741446495, 0.007391870953142643, 0.021001974120736122, -0.00975974090397358, 0.028716424480080605, 0.008496876806020737, 0.01806444302201271, 0.0007519701612181962, 0.0038057498168200254, 0.0021362302359193563, -0.01406994927674532, -0.011708943173289299, -0.013218889012932777, 0.0041489191353321075, -0.003375072032213211, -0.0190939512103796, 0.02054898999631405, -0.02598479390144348, -0.019656749442219734, -0.010617664083838463, 0.004227848257869482, -0.03324626013636589, -0.02348652109503746, -0.0017132736975327134, 0.013266933150589466, 0.004011651501059532, -0.014989643357694149, -0.020960792899131775, 0.003074798732995987, -0.011921708472073078, 0.04236084222793579, 0.013445381075143814, 0.013850321061909199, 0.020041098818182945, -0.001591448555700481, 0.0051544057205319405, 0.001111011253669858, -0.007487958297133446, -0.004172941204160452, 0.02461211569607258, 0.018352704122662544, -0.01393954548984766, 0.015497534535825253, -0.03876442834734917, 0.012429599650204182, -0.03074798732995987, -0.023349253460764885, 0.0225530993193388, -0.0020023940596729517, -0.011056921444833279, 0.004262165166437626, -0.016938846558332443, -0.020274454727768898, 0.01459156721830368, -0.0021808422170579433, 0.01903904415667057, -0.0026509843301028013, -0.03428949788212776, -0.03179122135043144, 0.013143392279744148, 0.008963587693870068, 0.029100773856043816, 0.017213381826877594, -0.013665009289979935, -0.03865461423993111, -0.012258014641702175, -0.011777576990425587, -0.01833897829055786, -0.008606690913438797, 0.00805075652897358, -0.008387062698602676, 0.00509606720879674, 0.009890144690871239, -0.0037714329082518816, -0.015360266901552677, -0.009512658230960369, -0.029842019081115723, 0.021729493513703346, 0.004179804585874081, 0.016458408907055855, 0.012354101985692978, 0.018846869468688965, 0.012292331084609032, 0.009739150293171406, 0.002939246827736497, 0.00455729104578495, -0.02625933103263378, -0.004965662490576506, -0.004807804711163044, 0.007144789211452007, 0.005504438653588295, -0.0009179784101434052, -0.014605293981730938, -0.013328703120350838, 0.008441969752311707, 0.022594280540943146, 0.0006910575903020799, -0.039395857602357864, -0.028496794402599335, 0.005652001593261957, -0.026973122730851173, 0.017858540639281273, -0.009780330583453178, 0.03396005555987358, -0.013404200784862041, 0.02271782048046589, -0.015085731633007526, 0.026643680408596992, -0.019821470603346825, 0.010171543806791306, -0.030336184427142143, 0.02293744869530201, 0.006142734084278345, -0.022813908755779266, 0.016019152477383614, -0.022374652326107025, -0.03036363795399666, 0.01271786168217659, 0.009780330583453178, 0.0029461102094501257, 0.008091936819255352, 0.025408269837498665, 0.01304044108837843, -0.004454340320080519, 0.0051578376442193985, -0.0012268309947103262, -0.044062964618206024, 0.009196942672133446, 0.013623828999698162, 0.012841402553021908, 0.005384329240769148, -0.024145405739545822, 0.004488657228648663, 0.01019899733364582, 0.015607348643243313, 0.01133145671337843, -0.04087835177779198, 0.03168140724301338, -0.013074757531285286, 0.017817361280322075, 0.019231218844652176, -0.014797468669712543, -0.005188722629100084, -0.02039799466729164, -0.009389117360115051, 0.008043892681598663, 0.007789947558194399, 0.007234013173729181, 0.01903904415667057, -0.002904929919168353, -0.005603957921266556, -0.012601183727383614, -0.01719965599477291, -0.00451267883181572, 0.019217491149902344, -0.019711656495928764, -0.02776927687227726, -0.008057619445025921, 0.00028504515648819506, 0.02690448798239231, 0.005174995865672827, 0.0043685478158295155, -0.010185270570218563, -0.026108335703611374, -0.026341691613197327, -0.008290975354611874, -0.005394624546170235, 0.020301908254623413, 0.03277955204248428, 0.0041214656084775925, 0.005624548066407442, 0.027137843891978264, -0.01437193900346756, 0.009883281774818897, 0.012299194931983948, -0.016458408907055855, -0.005802996456623077, -0.005888788495212793, -0.003562099300324917, 0.008284111507236958, -0.02060389705002308, -0.014193490147590637, -0.004687695298343897, -0.0022632027976214886, 0.009100855328142643, 0.006588854361325502, 0.0037233890034258366, 0.0108235664665699, -0.004087148699909449, 0.0015253884484991431, 0.01951948180794716, 0.006369226146489382, -0.008970450609922409, -0.017007481306791306, -0.006122143939137459, -0.010027413256466389, -0.006430996581912041, -0.015277906320989132, -0.027261385694146156, 0.004344525747001171, -0.009595018811523914, 0.003284132108092308, -0.03102252259850502, -0.00922439619898796, -0.035607267171144485, -0.01887432299554348, 0.03681522235274315, -0.002050437731668353, 0.003562099300324917, 0.022360924631357193, -0.0034454218111932278, -0.018682148307561874, -0.01052157673984766, 0.01374736987054348, 0.0031451485119760036, -0.030308730900287628, 0.009039084427058697, -0.01757027767598629, 0.014385665766894817, -0.01741928420960903, 0.008057619445025921, -0.0213725958019495, 0.012024659663438797, -0.013843457214534283, -0.00035153425415046513, -0.018187982961535454, 0.03374042361974716, 0.009210669435560703, -0.004399432800710201, -0.006630034651607275, -0.01266295462846756, -0.006660920102149248, 0.015744617208838463, -0.016142692416906357, -0.008977314457297325, 0.0019080224446952343, 0.016787851229310036, 0.00569318188354373, 0.005641706753522158, -0.01288258284330368, -0.007851717993617058, 0.015607348643243313, -0.02598479390144348, -0.007844855077564716, 0.21040408313274384, -0.011605992913246155, 0.0038606568705290556, 0.03151668608188629, -0.010322538204491138, 0.02728883922100067, 0.02381596341729164, -0.0025463176425546408, -0.010363718494772911, -0.0038332033436745405, -0.004564154427498579, 0.02370614930987358, -0.0021190717816352844, -0.001636060536839068, 0.01347283460199833, -0.012532549910247326, -0.031708862632513046, -0.0017604595050215721, -0.00515097426250577, -0.059519317001104355, -0.0035071922466158867, -0.020164640620350838, -0.012072702869772911, -0.007968395948410034, 0.009039084427058697, 0.010494123212993145, -0.002765946090221405, -0.0043033454567193985, 0.022690366953611374, -0.0012096725404262543, -0.02705548331141472, 0.00424157502129674, -0.009876417927443981, -0.0016832463443279266, -0.004272460471838713, 0.010130363516509533, 0.011647173203527927, -0.0001704051101114601, 0.014330758713185787, -0.02157849818468094, 0.0037233890034258366, -0.002122503472492099, 0.006880548316985369, 0.005185291171073914, 0.005514733958989382, 0.029485123232007027, -0.011454997584223747, -0.017117295414209366, -0.01936848647892475, 0.017872268334031105, -0.029430216178297997, 0.004509247373789549, 0.04474930465221405, 0.00595399085432291, 0.01136577408760786, -0.010185270570218563, -0.005024001467972994, 0.0014636178966611624, -0.0018994432175531983, 0.022813908755779266, -0.02728883922100067, 0.02039799466729164, 0.019395940005779266, 0.030198916792869568, -0.026012247428297997, 0.024323854595422745, -0.007323237136006355, -0.003510623937472701, 0.025888707488775253, -0.01810562238097191, 0.006880548316985369, -0.01696630008518696, -0.018187982961535454, 0.006262843497097492, -0.008620417676866055, -0.011029467917978764, 0.031104883179068565, -0.015277906320989132, 0.007017816416919231, 0.0005971149075776339, 0.021839307621121407, -0.01035685557872057, 0.040658723562955856, -0.012669817544519901, 0.0034334107767790556, -0.030198916792869568, 0.0007034974987618625, -0.0039052688516676426, -0.029594937339425087, 0.01951948180794716, -0.026822127401828766, -0.02608088217675686, -0.007460504770278931, -0.01459156721830368, 0.0011968036415055394, -0.017666365951299667, 0.03313644602894783, 0.01593679189682007, -0.001587158883921802, -0.003555235918611288, -0.0026527002919465303, -0.008956723846495152, 0.021303962916135788, 0.008524330332875252, -0.02560044452548027, -0.014879829250276089, 0.011015741154551506, 0.006932023912668228, 0.01249823346734047, 0.0018102191388607025, 0.027426106855273247, -0.016952574253082275, 0.002216875087469816, -0.019107677042484283, 0.004924482200294733, 0.02262173406779766, -0.0036684819497168064, -0.01844879239797592, -0.004622493404895067, 0.0070418380200862885, 0.014975916594266891, -0.025449451059103012, -0.0011367489350959659, 0.008057619445025921, 0.008455696515738964, -0.015964245423674583, -0.016952574253082275, 0.015319086611270905, 0.0025377385318279266, -0.018695874139666557, -0.0008278964087367058, -0.022580552846193314, 0.0009917598217725754, -0.0033716403413563967, -0.009588155895471573, 0.013932681642472744, -0.0016763829626142979, -0.014605293981730938, 0.01805071532726288, -0.0099793691188097, -0.005398056469857693, -0.005048023536801338, 0.004358252510428429, 0.022745274007320404, 0.011139282025396824, 0.004008219577372074, 0.01713102124631405, -0.03091270849108696, -0.003227509092539549, -0.013342429883778095, -0.024914106354117393, -0.0053362855687737465, -0.005785837769508362, -0.006853094790130854, -0.0022975197061896324, -0.016307415440678596, -0.017707545310258865, -0.02141377702355385, -0.009588155895471573, 0.026327963918447495, -0.042607925832271576, 0.011756987310945988, 0.006914865225553513, -0.021070607006549835, -0.02256682701408863, -0.015222999267280102, -0.17526352405548096, 0.01881941594183445, 0.01615642011165619, -0.006698668468743563, 0.022223656997084618, 0.015648528933525085, 0.026863308623433113, 0.00413519237190485, -0.0010818418813869357, -0.004420022945851088, 0.02549063041806221, 0.00832529179751873, -0.04351389408111572, -0.019725382328033447, 0.002512000733986497, 0.006715827155858278, -0.0030095966067165136, 0.008606690913438797, 0.02787909097969532, 0.02039799466729164, 0.0007948663551360369, -0.011660899966955185, 0.008016439154744148, 0.010480396449565887, 0.004845553543418646, -0.017391830682754517, -0.006664351560175419, 0.03091270849108696, 0.016032878309488297, -0.01681530475616455, -0.02488665282726288, 0.002232317579910159, 0.01179816760122776, -0.025243548676371574, 0.03519546240568161, 0.0026458369102329016, -0.011249096132814884, -0.003184613073244691, 0.002613235730677843, 0.017487917095422745, 0.007920351810753345, 0.002168831182643771, 0.02170203998684883, 0.004636220168322325, -0.015868157148361206, 0.026780948042869568, -0.006286865100264549, -0.004413159564137459, -0.002712754998356104, -0.019560661166906357, 0.026273056864738464, -0.013445381075143814, 0.013266933150589466, 0.006139302160590887, 0.04367861524224281, 0.0013126233825460076, 0.015387720428407192, -0.001328923855908215, -0.01702120713889599, -0.009897008538246155, 0.007748767267912626, 0.007632089778780937, 0.02170203998684883, -0.01309534814208746, -0.0159916989505291, -0.010322538204491138, -0.018833141773939133, 0.0016154703916981816, -0.024419941008090973, 0.01735064946115017, 0.00986955501139164, 0.012402146123349667, 0.04365115985274315, -0.021166695281863213, -0.005775542464107275, 0.008496876806020737, -0.01600542478263378, 0.023335525766015053, 0.0003215069300495088, -0.002268350450322032, -0.04225102812051773, 0.03437185660004616, -0.00014992216893006116, -0.015593621879816055, 0.004711717367172241, 0.008503740653395653, -0.0027264817617833614, -0.02049408294260502, -0.008613554760813713, -0.02646523155272007, 0.005137247499078512, -0.01887432299554348, -0.010926516726613045, -0.0156759824603796, 0.010610801167786121, 0.01293748989701271, 0.019615568220615387, -0.0125531405210495, 0.013218889012932777, -0.011427544057369232, -5.370066355681047e-05, -0.011043194681406021, -0.015017096884548664, 0.024914106354117393, 0.017378102988004684, 0.01100887730717659, -0.005288241896778345, 0.012058976106345654, 0.013184572570025921, -0.0002824713883455843, 0.0006944892811588943, 0.020741164684295654, 0.0018428202020004392, 0.009526384994387627, 0.022264836356043816, 0.033493343740701675, -0.009402844123542309, -0.021715765818953514, 0.015964245423674583, -0.007735040504485369, 0.07000657916069031, -0.00724087655544281, -0.011914844624698162, 0.003956744447350502, -0.010404899716377258, -0.02455720864236355, -0.13364392518997192, -0.0004246722673997283, 0.029485123232007027, 0.01136577408760786, -0.006499630399048328, 0.005741225555539131, -0.009526384994387627, 0.027192750945687294, -0.013417927548289299, -0.006249116733670235, -0.018311524763703346, -0.031763769686222076, 0.003960175905376673, -0.016293687745928764, 0.018627241253852844, -0.025476904585957527, -0.00424157502129674, -0.03277955204248428, -0.010603937320411205, 0.03409732133150101, -0.001588874845765531, -0.012312921695411205, 0.025572990998625755, -0.020096005871891975, 0.023555153980851173, -0.01551126129925251, -0.017062388360500336, 0.013719916343688965, 0.014824922196567059, 0.024584662169218063, 8.568513294449076e-05, -0.00029340991750359535, 0.01942339353263378, -0.010219587944447994, -0.006094690412282944, -0.009087128564715385, -0.023198258131742477, -0.011091237887740135, 0.030720533803105354, -0.025174913927912712, 0.008963587693870068, 0.0009771751938387752, 0.029155680909752846, -0.016115238890051842, 0.005161269102245569, 0.002675006166100502, -0.012889446690678596, -0.0022803612519055605, 0.004811236169189215, -0.013767960481345654, -0.025902433320879936, 0.0050926352851092815, -0.0359916165471077, -0.009265576489269733, 0.029842019081115723, -0.015799524262547493, 0.03665050119161606, 0.0023713011760264635, -0.015017096884548664, 0.006317750550806522, -0.018078168854117393, 0.006976636126637459, -0.004608766175806522, 0.02679467387497425, 0.01176385022699833, -0.0026973122730851173, -0.026012247428297997, -0.02358260750770569, 0.022909995168447495, 0.020370541140437126, -0.017556551843881607, 0.015470081008970737, -0.029704751446843147, 0.021894214674830437, -0.02646523155272007, 0.004536700900644064, -0.013335566967725754, -0.007714450359344482, 0.01470138132572174, 0.008599827997386456, -0.018297797068953514, -0.023568881675601006, -0.0014953610952943563, -0.017638912424445152, 0.010940243490040302, 0.02190794050693512, 0.00853805709630251, -0.030665626749396324, 0.016801578924059868, -0.020356815308332443, 0.009039084427058697, 0.021715765818953514, -0.013177708722651005, -0.026396598666906357, 0.011056921444833279, 0.04754956439137459, 0.026149515062570572, 0.0003200055507477373, -0.015689710155129433, -0.013198299333453178, -0.02945766970515251, 0.021070607006549835, -0.0654492899775505, 0.03637596592307091, 0.000975459290202707, -0.0003854222595691681, -0.0033338917419314384, -0.018242890015244484, 0.017872268334031105, -0.014344485476613045, -0.0002090116759063676, 0.008284111507236958, -0.012731588445603848, 0.02229228988289833, -0.011187326163053513, -0.010857882909476757, -0.021276509389281273, -0.022374652326107025, 0.007336963899433613, -0.02532590925693512, 0.0003676203195936978, -0.009162625297904015, 0.010219587944447994, 0.009746014140546322, 0.011221642605960369, -0.015072004869580269, -0.031653955578804016, 0.005216176621615887, 0.017213381826877594, 0.016787851229310036, 0.006094690412282944, -0.01920376531779766, 0.007391870953142643, -0.0319010354578495, -0.006475608330219984, -0.0019131699809804559, -0.010926516726613045, 0.019917557016015053, -0.010768658481538296, -0.010267631150782108, -0.00905967503786087, 0.051008716225624084, -0.0026286784559488297, -0.0028809078503400087, 0.009471477940678596, -0.03195594251155853, 0.017721273005008698, 0.03231284022331238, -0.021715765818953514, 0.006671214941889048, 0.006585422903299332, -0.026547592133283615, 0.0015777217922732234, 0.033712971955537796, -0.003932722378522158, -0.014852375723421574, 0.0051818592473864555, -0.03497583419084549, 0.029485123232007027, -0.012079566717147827, 0.006767302751541138, -0.04326681047677994, 0.0049107554368674755, -0.02115296758711338, 0.0021070607472211123, 0.015017096884548664, 0.024584662169218063, -0.011317729949951172, -0.019107677042484283, -0.011413817293941975, -0.006540810689330101, -0.008997904136776924, 0.0028345801401883364, -0.0017544541042298079, -0.004656810313463211, -0.0129855340346694, -0.002757366979494691, 0.03209321200847626, 0.002839727560058236, 0.012875719927251339, -0.03286191076040268, 0.00043260803795419633, -0.018997862935066223, -0.02923804149031639, -0.023898323997855186, -0.0016918256878852844, 0.02060389705002308, -0.004200394731014967, 0.0231021698564291, 0.009341074153780937, -0.005116657353937626, 0.009835237637162209, 0.017323195934295654, -0.0034780229907482862, -0.0026115200016647577, -0.011715807020664215, 0.008112527430057526, 0.015126911923289299, -0.004509247373789549, 0.005809859838336706, 0.018366431817412376, 0.028332073241472244, -0.0009111150284297764, 0.01632114127278328, 0.01412485633045435, -0.017213381826877594, -0.007055564783513546, -0.00048687172238714993, -0.015222999267280102, -0.02488665282726288, 0.00230609904974699, 0.039066415280103683, -0.0016712354263290763, 0.014358212240040302, 0.033218808472156525, 0.020754890516400337, -0.01676039770245552, 0.01778990775346756, 0.0071379258297383785, -0.010432353243231773, -0.005535324104130268, 0.03640342131257057, 0.02835952676832676, 0.02457093633711338, 0.017762454226613045, 0.011715807020664215, 0.028990959748625755, 0.020947067067027092, 0.006606013048440218, 0.025092553347349167, 0.005456394981592894, 0.007474231533706188, 0.014893556013703346, 0.003093673149123788, -0.0416470505297184, 0.00015785796858835965, 0.005658864974975586, -0.04299227520823479, -0.012292331084609032, 0.014907282777130604, -0.0050926352851092815, 0.03439931198954582, 0.007309510372579098, -0.030555812641978264, -0.013987588696181774, -0.0035243507008999586, 0.010329402051866055, 0.005322558805346489, 0.011708943173289299, 0.012532549910247326, -0.015250452794134617, 0.020617622882127762, -0.010981423780322075, 0.012601183727383614, -0.02071371115744114, -0.011036330834031105, 0.015099458396434784, -0.0005936832167208195, 0.04560036212205887, -0.029045866802334785, -0.015813250094652176, 0.03368551656603813, 0.0036410284228622913, 0.0156759824603796, -0.0019337601261213422, -0.009402844123542309, 0.004090580623596907, 0.015881884843111038, -0.007371280808001757, 0.004742602352052927, -0.03357570245862007, -0.008867500349879265, 0.011098101735115051, -0.01584070362150669, -0.015923064202070236, 0.006678078323602676, 0.00905967503786087, 0.007439914625138044, -0.015428900718688965, 0.013493425212800503, 0.014083676040172577, -0.01839388534426689, 0.021276509389281273, -0.021276509389281273, -0.0341796837747097, 0.009677380323410034, -0.003665050258859992, -0.019862649962306023, -0.002712754998356104, -0.017542824149131775], "eca36859-775c-49bf-a08a-4857f3a2db0b": [-0.0007332976092584431, -0.01024046540260315, -0.0003015681286342442, 0.0009699923102743924, -0.01731063239276409, 0.039237432181835175, -0.008469607681035995, -0.006473247893154621, -0.011248595081269741, -0.020759493112564087, 0.032100941985845566, 0.017894284799695015, 0.027723541483283043, -0.010419541038572788, 0.0007722630980424583, 0.01967177540063858, 0.03424984961748123, 0.0064235045574605465, 0.0371415875852108, -0.025123629719018936, -0.005843167193233967, 0.004718970973044634, 0.003425647970288992, 0.02790924906730652, 0.003551664063706994, 0.03661099076271057, 0.0038036962505429983, -0.023823674768209457, 0.021820681169629097, -0.01827896572649479, -0.008741537109017372, -0.0017642253078520298, 0.0010744530009105802, 0.0004816799482796341, -0.026503175497055054, 0.012157237157225609, 0.008516035042703152, -0.022669631987810135, 0.01222356129437685, 0.0071563879027962685, 0.013251587748527527, -0.000815373903606087, -0.019313624128699303, -0.0029282160103321075, -0.03093363530933857, 0.020878877490758896, 0.005912807770073414, -0.014750516042113304, -0.03289683163166046, 0.017841225489974022, 0.024062441661953926, 0.002490476006641984, -0.02542872168123722, 0.012263355776667595, 0.0007316395058296621, -0.014206656254827976, 0.005186557304114103, 0.023531848564743996, -0.010784325189888477, 0.022842075675725937, -0.0017559347907081246, -0.007017106749117374, 0.0023429044522345066, 0.010479233227670193, -0.021091114729642868, -0.009325191378593445, -0.00944457482546568, -0.0168596263974905, -0.015334169380366802, -0.012601609341800213, 0.04918607324361801, 0.028917377814650536, -0.004284547176212072, 0.011440934613347054, 0.02126355841755867, -0.03117240220308304, -0.01861058734357357, -0.006098515819758177, -0.022921664640307426, 0.017363691702485085, 0.0010752821108326316, -0.03268459439277649, -0.008555829524993896, 0.017695313319563866, 0.02751130424439907, -0.032790713012218475, 0.01418012659996748, 0.019764630123972893, -0.004208274185657501, -0.013596473261713982, -0.005282727535814047, 0.008555829524993896, 0.012900068424642086, 0.01057208701968193, 0.0005662433686666191, 0.009159380570054054, -0.0233063455671072, 0.013377603143453598, -0.010691470466554165, -0.01713818870484829, -0.03313560038805008, -0.01701880618929863, -0.017270836979150772, -0.010936870239675045, -0.025534840300679207, 0.009305293671786785, -0.009305293671786785, -0.004258017521351576, 0.023173697292804718, -0.015864763408899307, -0.0006678024074062705, 0.015254580415785313, -0.02338593453168869, -0.04762081801891327, -0.01672697812318802, -0.02346552349627018, 0.02342572808265686, -0.01558620110154152, -0.012648036703467369, -0.010306790471076965, -0.014896429143846035, 0.018875883892178535, -0.003972823265939951, -0.011646539904177189, 0.012966392561793327, 0.0033410845790058374, 0.004533263389021158, -0.03759258985519409, 0.006018926855176687, -0.0016622517723590136, 0.028068426996469498, 0.02301451936364174, 0.015320904552936554, -0.01892894320189953, -0.006456666626036167, 0.018305495381355286, -0.026715412735939026, -0.004211590625345707, -0.00803850032389164, -0.02399611845612526, 0.010691470466554165, 0.013821976259350777, -0.002432442270219326, -0.025189954787492752, -0.018053464591503143, 0.024142030626535416, 0.028148015961050987, 0.014976018108427525, -0.02036154828965664, 0.011673069559037685, 0.020520726218819618, -0.02521648444235325, 0.01943300850689411, -0.017085129395127296, 0.02428794465959072, -0.01501581259071827, -0.003278076648712158, -0.001949933241121471, -0.014684190973639488, -0.008237472735345364, 0.020547255873680115, 0.025243014097213745, 0.008071662858128548, 0.0057237837463617325, 0.030058154836297035, 0.017761636525392532, 0.017456544563174248, -0.01126185990869999, -0.034223318099975586, -0.016209648922085762, 0.018902413547039032, 0.022139038890600204, -0.015944352373480797, 0.004874833393841982, -0.026516439393162727, 0.010910340584814548, 0.05186557024717331, 0.03406414017081261, -0.016673918813467026, -0.004108787979930639, -0.02668888308107853, -0.019844219088554382, 0.027856189757585526, 0.017854491248726845, 0.00013192309415899217, -0.004781979136168957, -0.009000202640891075, -0.002372750313952565, 0.005034011323004961, -0.00606203731149435, 0.005043960176408291, 0.007806365378201008, -0.023027783259749413, -0.0035881425719708204, -0.6345905065536499, -0.03292336314916611, -0.013914830051362514, -0.009411412291228771, -0.02032175287604332, 0.010519027709960938, 0.010950135067105293, -0.0021057953126728535, -0.008111457340419292, 0.0029232418164610863, -0.02668888308107853, 0.016421886160969734, -0.013967889361083508, -0.019897278398275375, -0.013065879233181477, 0.0024457070976495743, 0.0115669509395957, -0.033851902931928635, -0.013596473261713982, -0.030005095526576042, 0.00297464313916862, -0.010605249553918839, -0.004795243963599205, 0.008224207907915115, -0.004301128443330526, -0.015785174444317818, 0.023651231080293655, 0.008383386768400669, -0.006668904330581427, 0.032100941985845566, -0.030827516689896584, 0.04563109204173088, 0.02668888308107853, 0.025574635714292526, 0.05194516107439995, -0.013623002916574478, -0.026635823771357536, 0.013729121536016464, 0.005743680987507105, 0.02375734969973564, -0.011547054164111614, -0.03159687668085098, 0.027723541483283043, -0.0004932867013849318, -0.003138795727863908, -0.002201965544372797, 0.017270836979150772, -0.007235976867377758, 0.005113600287586451, 0.0022832127287983894, 0.01281384751200676, 0.006290856283158064, -0.02232474647462368, -0.004045779816806316, -0.0046526468358933926, 0.0013264851877465844, 0.02534913271665573, -0.01050576288253069, 0.0033991183154284954, 0.0013820318272337317, 0.015214785002171993, 0.00684466352686286, -0.010737897828221321, -0.0096700768917799, -0.01293986290693283, 0.016753507778048515, -0.006672220770269632, 0.008781332522630692, 0.016952481120824814, -0.016130059957504272, 0.011129210703074932, 0.004772030748426914, -0.0076339226216077805, -0.020587051287293434, 0.04239446669816971, -0.001572714070789516, 0.045763738453388214, -0.018822824582457542, -0.0040159341879189014, 0.014193391427397728, -0.0056242975406348705, -0.021038055419921875, -0.024539977312088013, -0.019234035164117813, 0.019114652648568153, -0.003740688320249319, -0.0058464836329221725, 0.023160431534051895, 0.006910988129675388, 0.004145266488194466, 0.005766894668340683, 0.028068426996469498, 0.007488009054213762, -0.012608242221176624, 0.03220706060528755, 0.022722691297531128, 0.0011183927999809384, -0.0002619808365125209, 0.013835241086781025, -0.009862417355179787, -0.0006885287584736943, -0.01619638502597809, 0.01701880618929863, -0.017363691702485085, 0.005697254091501236, -0.018623853102326393, -0.02167476899921894, -0.02354511246085167, 0.05099009349942207, -0.027643952518701553, -0.012707727961242199, -0.01628923788666725, -0.013755652122199535, 0.01444542407989502, 0.03562939167022705, -0.020958466455340385, 0.006937517784535885, 0.0077864681370556355, 0.028519432991743088, -0.013191895559430122, 0.02150232531130314, -0.021847210824489594, 0.02151559107005596, -0.009006834588944912, 0.025282807648181915, 0.03504573926329613, 0.0271000936627388, -0.007720143999904394, -0.018026934936642647, -0.015718849375844002, 0.004874833393841982, -0.00942467711865902, 0.006645691115409136, 0.015824967995285988, 0.029156144708395004, -0.012064383365213871, 0.02995203621685505, 0.007242609281092882, 0.020679904147982597, -0.027564363554120064, -0.014074007980525494, -0.002793909516185522, -0.0008928903844207525, 0.009789461269974709, -0.012429166585206985, -0.016952481120824814, -0.022789016366004944, 0.0010172483744099736, -0.029129615053534508, 0.018305495381355286, -0.011759291402995586, 0.013019452802836895, -0.0017327213427051902, -0.0020013346802443266, 0.01091697346419096, -0.019658511504530907, -0.02265636809170246, 0.008655316196382046, 0.004778663162142038, -0.026264406740665436, 0.004921260289847851, 0.010412909090518951, -0.02334613911807537, 0.021568650379776955, 0.019738100469112396, -0.014379099942743778, -0.019035063683986664, 0.03310907259583473, 0.0017559347907081246, -0.0325784757733345, 0.007965543307363987, -0.011414404958486557, -0.0007822117768228054, 0.06802216172218323, -0.02016257494688034, 0.008171148598194122, -0.02020237036049366, -0.005717151332646608, 0.00525619788095355, 0.010645044036209583, -0.0028768149204552174, 0.007056901231408119, -0.015480082482099533, -0.013636267744004726, 0.023107372224330902, 0.0004655134107451886, -0.011925102211534977, 0.00837012194097042, 0.009888947010040283, 0.03125199303030968, 0.003538399236276746, 0.0032913414761424065, -0.009411412291228771, -0.0009675051551312208, 0.0063538639806210995, -0.004553160630166531, 0.026052169501781464, 0.027166416868567467, 0.00594928627833724, 0.021396206691861153, 0.007614024914801121, 0.021860476583242416, 0.028148015961050987, 0.001299955532886088, 0.00722271203994751, -0.023319609463214874, 0.009888947010040283, 0.0022848707158118486, 0.03578856959939003, -0.03387843072414398, -0.0005558801931329072, -0.018836090341210365, -0.00570388650521636, -0.0185707937926054, 0.026290936395525932, 0.03533756732940674, 0.023319609463214874, 0.006811501458287239, 0.00525619788095355, -0.004357503727078438, 0.016103530302643776, 0.001832207664847374, -0.00017907550500240177, -0.02395632304251194, -0.008588992059230804, -0.005097019486129284, 0.00862878654152155, 0.03804359585046768, 0.021290088072419167, -0.01583823375403881, 0.022497190162539482, -0.005136813968420029, -0.015095401555299759, 0.014538277871906757, 0.025601165369153023, 0.010034861043095589, 0.009358352981507778, -0.02399611845612526, 0.04913301393389702, -0.03586816042661667, 0.00039442209526896477, 0.0007100841030478477, 0.04003332555294037, -0.020507462322711945, -0.008151251822710037, 0.007375258021056652, 0.011719496920704842, 0.011023092083632946, -0.0010379747254773974, 0.019048327580094337, -0.022868605330586433, 0.009703239426016808, -0.0021091115195304155, -0.0075477007776498795, 0.013543413951992989, -0.023067578673362732, -0.006111780647188425, 0.004898046609014273, 0.015135196037590504, 0.026993975043296814, 0.010492498055100441, 0.001390322344377637, 0.013662797398865223, 0.020600315183401108, 0.04326994717121124, 0.0016440126346424222, 0.007401787675917149, 0.018186112865805626, -0.021727828308939934, -0.014392364770174026, -0.013928094878792763, -0.015440287999808788, 0.011447567492723465, 0.005912807770073414, 0.02183394692838192, 0.005504913628101349, 0.0025601163506507874, -0.012681198306381702, 0.02652970515191555, 0.0056242975406348705, -0.02857249230146408, -0.028917377814650536, 0.03135811164975166, 0.009305293671786785, -0.0025733814109116793, -0.018623853102326393, -0.02591952122747898, 0.008542564697563648, -0.013941359706223011, 0.03690281882882118, -0.017164718359708786, 0.030880575999617577, 0.025455251336097717, -0.012601609341800213, -0.00991547666490078, 0.003860071999952197, 0.028466371819376945, -0.04414542764425278, 0.02220536209642887, -0.00837012194097042, -0.0043774014338850975, 0.002558458363637328, -0.026290936395525932, 0.005362316500395536, 0.017655517905950546, -0.004695757757872343, -0.010943503119051456, -0.023929793387651443, 0.02698070928454399, -0.016315767541527748, -0.01884935423731804, -0.03881295770406723, -0.000948436907492578, -0.0021721194498240948, 0.010645044036209583, -0.0017476442735642195, -0.01632903330028057, 0.010041492991149426, 0.01032668724656105, -0.009922109544277191, -0.007640555035322905, -0.012866906821727753, -0.014007683843374252, -0.007753306068480015, 0.09847826510667801, 0.020374812185764313, -0.02759089320898056, 0.01026699598878622, 0.005156711209565401, 0.014074007980525494, -0.010704735293984413, -0.028837788850069046, 0.015121931210160255, 0.005160027649253607, 0.014922958798706532, -0.021449266001582146, 0.021979859098792076, -0.005886278115212917, 0.02163497358560562, -0.010877178981900215, -0.013821976259350777, -0.001963198184967041, -0.0013414081186056137, 0.005713834892958403, -0.000371001340681687, 0.014312775805592537, 0.0195125974714756, 0.011991426348686218, -0.04191693291068077, -0.006264326628297567, 0.021329881623387337, -0.00500084925442934, 0.0032979738898575306, -0.01898200251162052, -0.006486512720584869, 0.01906159333884716, 0.035125330090522766, 0.02073296345770359, -0.01344392728060484, -0.006536256056278944, 0.017456544563174248, 0.009517531841993332, 0.006217899266630411, -0.008595624007284641, 0.010048125870525837, -0.0008112285868264735, -0.0016780038131400943, -0.011003195308148861, 0.000545931572560221, -0.0018720022635534406, -0.009902211837470531, 0.0015868078917264938, -0.03732729330658913, -0.01428624615073204, 0.03419679030776024, -0.007056901231408119, -0.018252436071634293, -0.008051765151321888, 0.012880171649158001, 0.008482872508466244, -0.026954179629683495, 0.006022242829203606, -0.0097562987357378, 0.03406414017081261, 0.00944457482546568, -0.00031732014031149447, 0.017483074218034744, -0.01680656708776951, -0.00836348906159401, -0.012415901757776737, -0.023850204423069954, -0.0108970757573843, -0.015294374898076057, 0.015029077418148518, -0.01778816618025303, -0.0036843125708401203, -0.011659804731607437, 0.0024573139380663633, -0.008104824461042881, 0.0020411291625350714, 0.029474500566720963, -0.019459538161754608, 0.007136490661650896, -0.022218627855181694, -0.007647187449038029, -0.024234885349869728, -0.001721114618703723, -0.023637967184185982, -0.01057208701968193, 0.00415189890190959, 0.015161725692451, 0.012283253483474255, -0.00911958608776331, 0.016872892156243324, 0.0018139685271307826, 0.0005028208252042532, 0.007103328127413988, -0.009537428617477417, 0.00021244489471428096, -0.01861058734357357, -0.0034057507291436195, 0.006957415025681257, -0.002016257494688034, -0.013278117403388023, 0.013510252349078655, -0.03732729330658913, 0.001828891457989812, -0.015042342245578766, 0.0009558984311297536, -0.02485833317041397, 0.0147770456969738, 0.029686739668250084, -0.019273830577731133, -0.026171553879976273, -0.0019996764604002237, -0.030880575999617577, 0.005392162594944239, 0.0005272778798826039, -0.012309783138334751, 0.00017265033966396004, 0.013417397625744343, 0.021807417273521423, 0.014193391427397728, -0.000856411992572248, -0.0037075262516736984, -0.04045780003070831, -0.007932381704449654, -0.004380717407912016, -0.0267286766320467, -0.00628422386944294, 0.0021489060018211603, -0.013981154188513756, 0.027697011828422546, -0.013490354642271996, 0.008602256886661053, 0.02207271382212639, 0.018584057688713074, -0.01207764819264412, -0.02812148630619049, -0.004453673958778381, -0.008098192512989044, 0.015135196037590504, -0.0031238726805895567, 0.013470456935465336, -0.01979115977883339, -0.010213935747742653, -0.015174990519881248, -0.012435798533260822, 0.0010553847532719374, -0.019088122993707657, -0.011626643128693104, 0.024221619591116905, 0.008416548371315002, -0.014339305460453033, -0.013543413951992989, -0.03151728957891464, -0.030456099659204483, -0.0017509604804217815, -0.024911392480134964, -0.035974279046058655, 0.00014477342483587563, -0.0037207910791039467, 0.04003332555294037, 0.008151251822710037, 0.02897043712437153, -0.02566748857498169, 0.013662797398865223, -0.003856755793094635, -0.007249241694808006, -0.005236300174146891, -0.008476240560412407, -0.009311926551163197, -0.04019250348210335, -0.015068871900439262, 0.03759258985519409, 0.008005338720977306, 0.024884862825274467, -0.02269616164267063, 0.009696606546640396, 0.037486471235752106, -0.002787277102470398, -0.006058721337467432, -0.012415901757776737, -0.032419297844171524, -0.02240433543920517, 0.004523314535617828, -0.0026795000303536654, -0.01157358381897211, -0.028917377814650536, -0.005687305238097906, 0.04268629476428032, 0.019923808053135872, 0.004277914762496948, -0.00862878654152155, 0.01075779553502798, -0.0105123957619071, 0.007733408827334642, 0.01815958321094513, 0.014962753280997276, -0.0022865289356559515, 0.027856189757585526, 0.0026761838234961033, 0.015135196037590504, -0.0037207910791039467, -0.007726776413619518, -0.006247745361179113, -0.008960407227277756, -0.029447970911860466, -0.014246451668441296, -0.0025136894546449184, -0.009132850915193558, -0.022019654512405396, 0.02599911019206047, -0.02493792213499546, -0.027047034353017807, -0.0080583980306983, 0.009338456206023693, -0.03814971446990967, -0.01595761626958847, -0.005518178455531597, 0.014339305460453033, 0.004592955112457275, -0.02252371981739998, -0.031278520822525024, 0.014047478325664997, -0.014949488453567028, 0.03523144870996475, 0.002838678425177932, 0.024845067411661148, 0.020640110597014427, -0.0021737776696681976, 0.003737372113391757, 0.002374408533796668, -0.010645044036209583, -0.006768391001969576, 0.023293079808354378, 0.01566579006612301, -0.004357503727078438, 0.014339305460453033, -0.026423584669828415, -0.001359647372737527, -0.042633235454559326, -0.03133158013224602, 0.02264310233294964, 0.002089214278385043, -0.01311893854290247, -0.008575727231800556, -0.011474097147583961, -0.04502090811729431, 0.01173276174813509, -0.014113802462816238, 0.01567905582487583, 0.002183726290240884, -0.023001253604888916, -0.02737865410745144, 0.014352570287883282, 0.009656812064349651, 0.013821976259350777, 0.03305601328611374, -0.0371415875852108, -0.0333743691444397, -0.002447365317493677, -0.021847210824489594, -0.011865410022437572, -0.01263477187603712, 0.010578719899058342, -0.019074857234954834, 0.009411412291228771, 0.008237472735345364, 0.002619808306917548, -0.01713818870484829, -0.010014963336288929, -0.02138294093310833, 0.024380797520279884, 0.0147770456969738, 0.00837012194097042, 0.014896429143846035, 0.024738948792219162, -0.000916103832423687, 0.011991426348686218, 0.0003942148177884519, -0.007116592954844236, -0.008462975732982159, 0.00357156153768301, 0.002192016923800111, 0.03122546151280403, 0.015042342245578766, -0.010611881501972675, -0.02873167023062706, -0.005461802706122398, 0.006781655829399824, 0.010280260816216469, -0.0005538075929507613, -0.04114757105708122, -0.03677016869187355, -0.005587819032371044, -0.026993975043296814, 0.02881125919520855, -0.0013911513378843665, 0.02354511246085167, -0.012004691176116467, 0.01743001490831375, -0.038096655160188675, 0.020998261868953705, -0.015692319720983505, 0.016421886160969734, -0.0140209486708045, 0.015188255347311497, 0.005508230067789555, -0.018637116998434067, 0.008980304934084415, -0.012979657389223576, -0.04411889985203743, 0.004201641771942377, 0.008031868375837803, 0.008960407227277756, 0.008078294806182384, 0.007163020316511393, 0.008681845851242542, 0.010008331388235092, 0.00037721922853961587, -0.017071865499019623, -0.031066283583641052, 0.0063936589285731316, 0.016183119267225266, 0.007507906295359135, 0.022590043023228645, -0.016501476988196373, 0.005478383973240852, 0.012051118537783623, 0.021369677037000656, -0.008973672054708004, -0.0348600298166275, 0.020560521632432938, 0.004009301774203777, 0.012515388429164886, 0.010844016447663307, -0.008383386768400669, -0.01467092614620924, -0.036876287311315536, -0.01459133718162775, 0.009305293671786785, 0.02024216391146183, 0.0002883032721001655, 0.010684838518500328, 0.005408743396401405, -0.023571642115712166, -0.013317911885678768, -0.004609535913914442, -0.006818133872002363, 0.010286892764270306, -0.023213490843772888, -0.033241719007492065, -0.0025816718116402626, -0.0018023618031293154, 0.03602733835577965, -0.0039529260247945786, -0.0018487888155505061, -0.003432280384004116, -0.023889997974038124, -0.030960164964199066, -0.0017376956529915333, -0.008814494125545025, 0.019658511504530907, 0.042500585317611694, 0.014976018108427525, 0.0007548530120402575, 0.03966190665960312, -0.010718000121414661, 0.007494641467928886, 0.011042989790439606, -0.0063074370846152306, -0.007096695713698864, 0.014034213498234749, -0.011500626802444458, -4.3603020458249375e-05, -0.007043636403977871, 0.00025783557794056833, 0.00021866279712412506, -0.005412059836089611, 0.001973146805539727, 0.012163869105279446, 0.011182270012795925, 0.0108970757573843, -0.0005989909986965358, -0.006330650765448809, 0.013470456935465336, 0.009378250688314438, 0.009192542172968388, -0.022377805784344673, -0.012953127734363079, -0.0012842034921050072, -0.0005927730817347765, -0.01607700064778328, -0.02641032077372074, 0.0067319124937057495, -0.010074655525386333, 0.009106321260333061, -0.031411170959472656, -0.018716705963015556, -0.03716811537742615, -0.03207441419363022, 0.04648004099726677, -0.004884781781584024, -0.010293525643646717, 0.02232474647462368, -0.010744530707597733, -0.02379714511334896, -0.018663646653294563, 0.014962753280997276, 0.010830751620233059, -0.02207271382212639, 0.006692118011415005, -0.025309337303042412, 0.020998261868953705, -0.012422533705830574, 0.018013669177889824, -0.017323896288871765, -0.0017890969756990671, -0.009152747690677643, 0.0059094917960464954, -0.023399198427796364, 0.02910308539867401, 0.006639058701694012, 0.010777692310512066, -0.01330464705824852, 0.012190398760139942, -0.007216079626232386, 0.02305431291460991, -0.010359849780797958, -0.013536782003939152, 0.010936870239675045, 0.0044603063724935055, 0.007673717103898525, 0.007720143999904394, -0.02044113725423813, 0.01057208701968193, 0.017284102737903595, -0.021157439798116684, 0.002208597958087921, 0.20512767136096954, -0.0181993767619133, -0.0025070570409297943, 0.021436000242829323, -0.03154381737112999, 0.013676062226295471, 0.008496138267219067, -0.005070489831268787, -0.012256723828613758, -0.0013115622568875551, -0.008462975732982159, 0.03470085188746452, -0.006712015252560377, 0.001727747032418847, 0.02582666650414467, -0.014299510978162289, -0.03515185788273811, 0.012017956003546715, -0.006576050538569689, -0.06780992448329926, -0.0030078052077442408, -0.004025882575660944, -0.006025559268891811, -0.0051766084507107735, 0.028466371819376945, 0.002031180541962385, -0.01313883624970913, -0.00779310055077076, 0.012051118537783623, -0.004108787979930639, -0.023279815912246704, -0.012747523374855518, -0.004592955112457275, -0.0008663606713525951, -0.009086423553526402, 0.017284102737903595, 0.0005795082543045282, -0.0007888441905379295, 0.003324503544718027, -0.017496339976787567, -0.0019913858268409967, 0.011215432547032833, 0.016501476988196373, 0.003367614233866334, -0.012097544968128204, 0.02611849457025528, -0.0009285396663472056, -0.02460630051791668, -0.020268693566322327, 0.01758919470012188, -0.029209204018115997, 0.00837012194097042, 0.04629433527588844, 0.01955239288508892, 0.004118736367672682, -0.01774837262928486, -0.0026297569274902344, 0.0016216281801462173, -0.0064931451342999935, 0.015572936274111271, -0.0010736240074038506, 0.012462328188121319, 0.007560965605080128, 0.03440902754664421, -0.018796294927597046, 0.014312775805592537, -0.001040461822412908, -0.0011714522261172533, 0.0439862497150898, -0.021727828308939934, 0.009922109544277191, -0.012528653256595135, -0.002414203016087413, 0.0028718404937535524, -0.010870546102523804, -0.005073805805295706, 0.02448691800236702, -0.012555182911455631, 0.008489505387842655, -0.008297164924442768, 0.0233063455671072, -0.014060743153095245, 0.022948194295167923, -0.010850649327039719, -0.01338423602283001, -0.031278520822525024, -0.012442431412637234, -0.0057072024792432785, -0.01995033770799637, 0.01735042594373226, -0.02995203621685505, -0.008535932749509811, 0.007594127673655748, -0.01008128747344017, 0.002022889908403158, -0.014684190973639488, 0.019804423674941063, 0.0017360375495627522, 0.0008385873516090214, -0.006741860881447792, 0.007096695713698864, -0.026516439393162727, 0.014352570287883282, -0.001716140192002058, -0.01898200251162052, -0.007693614345043898, 0.009358352981507778, 0.006665588356554508, 0.005053908564150333, 0.00044768876978196204, 0.03194176405668259, -0.015466817654669285, -0.0020527357701212168, -0.006416872143745422, 0.0019433008274063468, 0.016780037432909012, -0.021979859098792076, -0.02371755614876747, -0.0096700768917799, 0.00787268951535225, 0.009636915288865566, -0.013569943606853485, -0.003976139239966869, -0.001843814505264163, -0.00194827513769269, -0.015108666382730007, -0.03146423026919365, 0.02375734969973564, -0.00236114370636642, -0.01735042594373226, 0.01534743420779705, -0.03462126478552818, -0.0036312532611191273, 0.013623002916574478, -0.01681983284652233, 0.024792008101940155, -0.017496339976787567, -0.018252436071634293, 0.014153596945106983, 0.002435758477076888, 0.002414203016087413, -0.00951089896261692, 0.002727585146203637, 0.01831876114010811, 0.019685041159391403, 0.007129858247935772, 0.017496339976787567, -0.02902349643409252, -0.014458688907325268, -0.031729526817798615, -0.030190803110599518, -0.0011557003017514944, -0.016554536297917366, -0.005322522018104792, 0.007328830659389496, -0.018424879759550095, -0.019884012639522552, -0.02942144125699997, -0.004314393270760775, 0.027246005833148956, -0.02897043712437153, 0.012256723828613758, 0.007116592954844236, -0.004944473505020142, -0.020348282530903816, -0.01914118230342865, -0.16703101992607117, 0.012601609341800213, 0.020215634256601334, -0.012886803597211838, 0.02963368035852909, 0.020998261868953705, 0.02751130424439907, -0.00496768718585372, -0.0055015976540744305, -0.0031752740032970905, 0.01930036023259163, 0.007235976867377758, -0.04093533381819725, -0.019698305055499077, 0.007899219170212746, 0.020640110597014427, -0.01205775048583746, 0.022218627855181694, 0.029288792982697487, 0.019446272403001785, 0.0017658834112808108, -0.0006027217023074627, 0.012767420150339603, 0.006688801571726799, 0.001888583297841251, -0.023598171770572662, -0.010114450007677078, 0.04167816415429115, 0.01918097585439682, -0.011235329322516918, -0.016660654917359352, 0.00474550062790513, -0.0012394345831125975, -0.01717798411846161, 0.03631916642189026, 0.0009078133152797818, -0.016581065952777863, -0.006526307202875614, -0.006595947779715061, 0.019247300922870636, 0.00603882409632206, -0.00213232496753335, 0.0068711936473846436, 0.0067319124937057495, -0.0011697941226884723, 0.03944966942071915, -0.0014176811091601849, 0.0020494195632636547, 0.01305924728512764, -0.022006390616297722, 0.01786775514483452, -0.007488009054213762, 0.017483074218034744, 0.0032399401534348726, 0.041041452437639236, 0.010989929549396038, 0.02008298598229885, -0.011281756684184074, -0.030880575999617577, -0.013165365904569626, 0.001480689155869186, 0.005173292476683855, 0.014047478325664997, -0.01436583511531353, -0.010280260816216469, -0.001775832031853497, -0.01059198472648859, 0.016355562955141068, -0.029607150703668594, 0.01336433831602335, 0.007899219170212746, 0.018544264137744904, 0.04045780003070831, -0.017284102737903595, -0.0069176205433905125, -0.0012585028307512403, -0.004337606485933065, 0.002303109969943762, 0.013191895559430122, -0.00501079810783267, -0.025070570409297943, 0.034753911197185516, -0.00733546307310462, -0.022139038890600204, -0.007885954342782497, 0.012528653256595135, -0.016793303191661835, -0.023598171770572662, -0.011394508183002472, -0.012555182911455631, 0.008390018716454506, -0.030456099659204483, -0.019353419542312622, -0.01562599651515484, 0.01444542407989502, 0.011739393696188927, 0.011129210703074932, -0.0170585997402668, 0.020600315183401108, -0.0064931451342999935, 0.006612528581172228, -0.007229344453662634, -0.012336312793195248, 0.017191248014569283, 0.03348048776388168, -0.004974319599568844, -0.003959558438509703, 0.0051467628218233585, 0.021780887618660927, 0.00047836374142207205, -0.01583823375403881, 0.009212439879775047, 0.0028071743436157703, -0.005116916727274656, 0.013808711431920528, 0.02873167023062706, -0.002963036298751831, -0.034541673958301544, -0.004049096256494522, -0.02191353589296341, 0.0666956752538681, -0.011301654390990734, -0.016143325716257095, 0.014074007980525494, -0.005057225003838539, -0.02979285828769207, -0.1265997439622879, 0.006380394101142883, 0.02534913271665573, 0.025163425132632256, -0.005611032247543335, 0.010870546102523804, -0.01395462453365326, 0.02501751109957695, 0.0011780846398323774, 0.0020610264036804438, -0.020560521632432938, -0.028413312509655952, 0.009869050234556198, -0.006708698812872171, 0.027697011828422546, -0.009411412291228771, -0.00036685605300590396, -0.02782966010272503, -0.004984267987310886, 0.02118396945297718, 0.004022566601634026, -0.013768916949629784, 0.014989282935857773, -0.022139038890600204, 0.018783031031489372, 0.002376066753640771, -0.02627767249941826, 0.026251142844557762, 0.028837788850069046, 0.016501476988196373, -0.0056707244366407394, -0.002898370148614049, 0.022616572678089142, -0.008801229298114777, 0.00689772330224514, -0.00909968838095665, -0.029819387942552567, -0.005806689150631428, 0.019048327580094337, -0.023929793387651443, 0.01171286404132843, -0.009815990924835205, 0.026715412735939026, -0.014617866836488247, 7.233490032376722e-05, 0.0061615239828825, -0.005322522018104792, -0.01067157369107008, 0.002250050660222769, -0.031411170959472656, -0.02326655015349388, 0.003621304640546441, -0.032790713012218475, -0.00558118661865592, 0.03637222573161125, -0.01189857255667448, 0.026091964915394783, 0.010618514381349087, -0.026370525360107422, 0.0015984147321432829, -0.02399611845612526, 0.005926072597503662, -0.009723136201500893, 0.023027783259749413, 0.008860921487212181, -0.005179924890398979, -0.012754155322909355, -0.02468588948249817, 0.010744530707597733, 0.02061358094215393, -0.009026732295751572, 0.012130707502365112, -0.03207441419363022, 0.015161725692451, -0.02256351336836815, 0.008416548371315002, -0.01717798411846161, -0.005365632474422455, 0.026675617322325706, 0.011513891629874706, -0.019088122993707657, -0.022948194295167923, -0.0076339226216077805, 0.005352367646992207, 0.00136462168302387, 0.004553160630166531, 0.0075012738816440105, -0.007706879172474146, 0.010737897828221321, -0.015931086614727974, 0.006937517784535885, 0.026662353426218033, -0.0013206818839535117, -0.03138463944196701, 0.0017542766872793436, 0.034753911197185516, 0.02525627799332142, 0.0020527357701212168, -0.025521576404571533, -0.011580215767025948, -0.018743235617876053, 0.020759493112564087, -0.05953265726566315, 0.04080268368124962, 0.006605896167457104, 0.0005069660837762058, -0.003548347856849432, -0.0072094472125172615, 0.020348282530903816, -0.023372668772935867, -0.0012203664518892765, 0.01595761626958847, -0.0008696768782101572, 0.025070570409297943, -0.012296518310904503, -0.002739191986620426, -0.024831803515553474, -0.010870546102523804, 0.0010247097816318274, -0.0067750234156847, -0.0013298013946041465, -0.0010669915936887264, 0.008025235496461391, 0.004798560403287411, 0.015387228690087795, -0.0029547458980232477, -0.02849290333688259, 0.0014442107640206814, 0.014843369834125042, 0.018783031031489372, 0.0005546366446651518, -0.02203292027115822, 0.012329679913818836, -0.02004319243133068, -0.014578072354197502, 0.0085292998701334, 0.004602903500199318, 0.021210499107837677, -0.018955472856760025, 0.0012701095547527075, -0.006058721337467432, 0.04982278496026993, 0.00509038707241416, 0.005548024550080299, 0.012800582684576511, -0.03608039766550064, 0.014233185909688473, 0.024964451789855957, -0.008390018716454506, 0.004987584426999092, 0.009471104480326176, -0.014830105006694794, 0.0050605409778654575, 0.02767048217356205, 0.004493468441069126, -0.02281554602086544, -0.00016643243725411594, -0.024911392480134964, 0.03342742845416069, -0.009059893898665905, 0.00676507456228137, -0.035443685948848724, 0.008655316196382046, -0.006181421224027872, 0.006818133872002363, 0.012919966131448746, 0.020719699561595917, -0.018053464591503143, -0.012555182911455631, -0.011692967265844345, -0.009709871374070644, -0.020945200696587563, 0.0076869819313287735, 0.002656286582350731, -0.004327658098191023, 0.0016829781234264374, 0.004231487866491079, 0.030137743800878525, 0.01106288656592369, 0.022192098200321198, -0.032711125910282135, -0.0050605409778654575, -0.008894083090126514, -0.017032070085406303, -0.027988838031888008, -0.01428624615073204, 0.01792081445455551, -0.010286892764270306, 0.008157883770763874, -0.006791604217141867, 0.0009036680567078292, -0.0016481578350067139, 0.01010118518024683, -0.0035317668225616217, -0.013424030505120754, -0.009563958272337914, 0.00977619644254446, 0.01338423602283001, -0.013463824987411499, -0.0006338112289085984, 0.026914384216070175, 0.021449266001582146, -0.02163497358560562, 0.011334815993905067, 0.009723136201500893, -0.019353419542312622, 0.0027507988270372152, 0.009888947010040283, -0.00812472216784954, -0.021767621859908104, -0.009311926551163197, 0.03247235715389252, 0.0011814008466899395, 0.013901565223932266, 0.020746229216456413, 0.016872892156243324, -0.0019101387588307261, 0.01122206449508667, 0.012289885431528091, -0.002780644688755274, -0.012435798533260822, 0.045445382595062256, 0.016952481120824814, 0.020016662776470184, 0.016010677441954613, 0.009252234362065792, 0.023783879354596138, 0.023253286257386208, 0.0021704614628106356, 0.03382537141442299, 0.0027043716982007027, 0.008907347917556763, 0.010200670920312405, 0.0010893759317696095, -0.045445382595062256, 0.009000202640891075, -0.0007042807410471141, -0.049928903579711914, -0.007017106749117374, 0.0075012738816440105, -0.013742387294769287, 0.02828066423535347, 0.012130707502365112, -0.01534743420779705, -0.0001745157060213387, 0.00021493206440936774, 0.015864763408899307, -0.0035151857882738113, 0.009298661723732948, 0.008376753889024258, -0.021688032895326614, -0.0017990455962717533, -0.009683341719210148, 0.01713818870484829, -0.030349981039762497, -0.014312775805592537, 0.017721842974424362, 0.008071662858128548, 0.024420592933893204, -0.020454401150345802, -0.016886156052350998, 0.03151728957891464, -0.007176285143941641, 0.027935778722167015, 0.0006259352085180581, -0.007673717103898525, 0.004370768554508686, 0.0257868729531765, 0.004470255225896835, 0.00603882409632206, -0.03918437287211418, -0.013271484524011612, 0.007945646531879902, -0.02688785456120968, -0.011586848646402359, 0.020308488979935646, 0.0032979738898575306, -0.009411412291228771, -0.01353014912456274, 0.02122376300394535, -0.004665911663323641, -0.02151559107005596, 0.028705140575766563, -0.024473652243614197, -0.006280907429754734, 0.021329881623387337, -0.02203292027115822, -0.02089214138686657, -0.01097666472196579, -0.012999555096030235], "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71": [-0.006659981328994036, -0.010264801792800426, -0.011256211437284946, 0.015633253380656242, -0.011155047453939915, 0.03334374353289604, -0.01726537011563778, -0.015323015861213207, -0.025007808580994606, -0.02245846949517727, 0.025439443066716194, 0.023942211642861366, 0.013380661606788635, -0.0016135701444000006, 0.0003435370163060725, 0.02096123807132244, 0.03256140649318695, 0.004886234644800425, 0.03984523564577103, -0.014783472754061222, -0.0061440435238182545, -0.0028848678339272738, 0.003400805639103055, 0.03439585492014885, 0.002638701582327485, 0.0385233573615551, 0.01911330409348011, -0.009920842945575714, 0.01520161796361208, -0.01729234680533409, -0.009151994250714779, 0.006160904187709093, 0.014621609821915627, -0.0050379810854792595, -0.026167824864387512, 0.0005108795594424009, 0.006201370153576136, -0.016536986455321312, 0.020084479823708534, 0.000297170045087114, 0.011478773318231106, -0.001999680418521166, -0.01268600020557642, 0.003026497783139348, -0.02753017097711563, 0.015161152929067612, 0.003110801335424185, -0.019841685891151428, -0.03242652118206024, 0.013171588070690632, 0.0094892093911767, 0.001463509863242507, -0.02642410807311535, 0.005550546571612358, -0.007283827755600214, -0.008969899266958237, 0.008221283555030823, 0.024238960817456245, -0.008990132249891758, 0.013663921505212784, 0.003567726816982031, 0.00393529050052166, -0.001856364426203072, 0.007486156187951565, -0.028218088671565056, -0.01619977317750454, -0.015511855483055115, -0.0019288654439151287, -0.020367739722132683, -0.010669458657503128, 0.03741729259490967, 0.0256822369992733, -0.004248899407684803, 0.007041033357381821, 0.0218379944562912, -0.024738037958741188, -0.01818259246647358, -0.009502697736024857, -0.0074456906877458096, 0.0029320779722183943, -0.009253159165382385, -0.02263382077217102, -0.010150148533284664, 0.013805551454424858, 0.028056224808096886, -0.021972879767417908, 0.019625868648290634, 0.024185005575418472, -0.01116853579878807, -0.02794831618666649, 0.004275876563042402, 0.012632045894861221, 0.016901178285479546, 0.006589166354387999, 0.001680169953033328, 0.009111529216170311, -0.026383642107248306, 0.020516114309430122, 0.0030534749384969473, -0.020246343687176704, -0.028325997292995453, -0.007944767363369465, -0.026505040004849434, -0.002353755524381995, -0.023631975054740906, 0.013171588070690632, -0.006953357718884945, -0.0036216811276972294, 0.013974158093333244, -0.02294405736029148, -0.009111529216170311, 0.014176486991345882, -0.023901745676994324, -0.04694022238254547, -0.003087196499109268, -0.003989244345575571, 0.024657106027007103, -0.016010932624340057, -0.013475080952048302, -0.005938342772424221, -0.004397273994982243, 0.005715781357139349, -0.0034766788594424725, -0.019666334614157677, 0.010986439883708954, 0.00269265566021204, 0.004903095308691263, -0.03396422043442726, 0.008578730747103691, 0.0006988765089772642, 0.043810874223709106, 0.021042168140411377, -0.007506389170885086, -0.0050447252579033375, -0.0038779638707637787, 0.02233707159757614, -0.04386482760310173, 0.005344845820218325, -0.017467698082327843, -0.019666334614157677, 0.022107766941189766, 0.018384920433163643, 0.00036693125730380416, -0.023955700919032097, -0.019018882885575294, 0.026518529281020164, 0.024050120264291763, 0.01911330409348011, -0.03380235657095909, 0.012814141809940338, 0.023578019812703133, -0.0023132897913455963, 0.018155615776777267, -0.013002981431782246, 0.025749679654836655, -0.01269274391233921, 0.010750390589237213, -0.006629632320255041, -0.0014651959063485265, -0.008922688663005829, 0.0321027971804142, 0.027894362807273865, 0.022229162976145744, 1.6827781337269698e-06, 0.005644966382533312, 0.028460882604122162, 0.008592219091951847, -0.00042741905781440437, -0.02738179638981819, -0.022188697010278702, 0.015471389517188072, 0.03180604800581932, -0.01908632554113865, 0.005860783625394106, -0.018088173121213913, 0.010588527657091618, 0.04372994229197502, 0.03342467546463013, -0.00856524147093296, 0.0033957473933696747, -0.03407212719321251, -0.004178084433078766, 0.03749822452664375, 0.0009180657798424363, -0.002100844867527485, 0.0040870364755392075, -0.010898764245212078, -0.018722135573625565, 0.014716030098497868, 0.002348697278648615, 0.010109683498740196, 0.012207156047224998, -0.017049552872776985, -0.011512494646012783, -0.6448615789413452, -0.02075890824198723, -0.01131691038608551, -0.016604429110884666, -0.010945974849164486, 0.004390529356896877, 0.02249893546104431, -0.005843922961503267, -0.015538832172751427, 0.00466030091047287, -0.03525912016630173, 0.006292417645454407, -0.014109044335782528, -0.014999289996922016, -0.02840692736208439, -0.010413176380097866, 0.007944767363369465, -0.0324534997344017, -0.017616072669625282, -0.022593354806303978, 0.0010192301124334335, -0.008430356159806252, -0.0003315237700007856, 0.0036250532139092684, -0.008895711973309517, -0.01038619875907898, 0.020286809653043747, 0.0012274598702788353, 0.00680161127820611, 0.037039611488580704, -0.028379950672388077, 0.03118557296693325, 0.02155473455786705, 0.016429077833890915, 0.04739883542060852, -0.012321808375418186, -0.025304557755589485, 0.022809172049164772, 0.008814780041575432, 0.01375159714370966, -0.013360428623855114, -0.022809172049164772, 0.020583556964993477, -0.003131034318357706, 0.0027128886431455612, 0.0005070859333500266, 0.022647308185696602, -0.009340834803879261, 0.00485251285135746, 0.012483671307563782, -0.0004615620127879083, 0.009313857182860374, -0.011600170284509659, -0.017009086906909943, -0.0035002839285880327, 0.0022812543902546167, 0.029324151575565338, -0.015673717483878136, 0.00538531132042408, -0.005945087410509586, 0.01772398129105568, 0.020597046241164207, -0.012335296720266342, 0.0023655579425394535, -0.013987647369503975, 0.011613658629357815, -0.011384353041648865, 0.010392943397164345, 0.021015191450715065, -0.00803244300186634, 0.004768209531903267, 0.022579865530133247, -0.005570779554545879, -0.026532016694545746, 0.029755786061286926, 0.013670665211975574, 0.03496237471699715, -0.02050262689590454, -0.0021514268592000008, 0.02477850206196308, 0.005914737936109304, -0.02185148373246193, -0.030780917033553123, -0.017670026049017906, 0.024643616750836372, -0.024225471541285515, -0.01587604731321335, 0.025304557755589485, -0.005324612837284803, 0.010999929159879684, 0.0035036560148000717, 0.00855849776417017, 0.005968692246824503, 0.0007229030597954988, 0.03825358301401138, 0.010743645951151848, -0.004629951436072588, 0.003969011828303337, 0.004215178079903126, -0.010419920086860657, -0.0018867136677727103, -0.014864403754472733, 0.011296677403151989, -0.009192460216581821, 0.0017754329601302743, -0.010804344899952412, -0.03774102032184601, -0.007135453633964062, 0.04068152606487274, -0.031131619587540627, -0.013043447397649288, -0.01617279462516308, -0.015498367138206959, 0.011195513419806957, 0.03674286603927612, -0.014473235234618187, 0.001166761270724237, 0.005729270167648792, 0.01773746870458126, -0.008693383075296879, 0.02494036592543125, -0.012416228652000427, 0.00691289221867919, -0.019828198477625847, 0.0390898771584034, 0.03590657189488411, 0.022998012602329254, -0.010811088606715202, -0.015403946861624718, -0.011869941838085651, -0.0009079493465833366, -0.008848502300679684, 0.006289045792073011, 0.019909128546714783, 0.02856879122555256, -0.010264801792800426, 0.017359789460897446, 0.01390671543776989, 0.02217520959675312, -0.009421765804290771, 0.002842716174200177, 0.005553918890655041, 0.010069217532873154, -0.006575678009539843, -0.005779852159321308, -0.02552037499845028, -0.012193666771054268, -0.0014694110723212361, -0.034773532301187515, 0.005368450656533241, -0.006852193735539913, -0.0011178652057424188, 0.006744285114109516, -0.008356168866157532, 0.01068969164043665, -0.01291530579328537, -0.03129348158836365, 0.006275556981563568, 0.008706871420145035, -0.018587250262498856, 0.0008556811371818185, 0.00676451763138175, -0.021635666489601135, 0.013778573833405972, 0.022701263427734375, -0.02431989088654518, -0.018398409709334373, 0.026397131383419037, -0.004434367176145315, -0.03587959706783295, 0.006575678009539843, -0.010197359137237072, -0.0056415945291519165, 0.05268635228276253, -0.013933693058788776, -0.0018765972927212715, -0.019167257472872734, -0.0060293907299637794, 0.0017400254728272557, 0.011310165748000145, -0.0005618832656182349, 0.004849140997976065, -0.00638009374961257, -0.014216952957212925, 0.023942211642861366, -0.00665660947561264, -0.001733281183987856, 0.0001529055880382657, 0.015983955934643745, 0.028865540400147438, 0.007054522167891264, 0.0073310378938913345, -0.0005458655650727451, -0.004424251150339842, 0.013535779900848866, -0.004495066124945879, 0.017184438183903694, 0.023874768987298012, -0.00111702224239707, 0.018587250262498856, 0.016847223043441772, 0.013852761127054691, 0.021811017766594887, 0.005142517387866974, 0.0031580114737153053, -0.021123100072145462, 0.0033856311347335577, -0.007985233329236507, 0.03374840319156647, -0.01668536104261875, -0.0050514694303274155, -0.03302001953125, -0.00474460469558835, -0.021581711247563362, 0.024185005575418472, 0.023645462468266487, 0.007627786137163639, 0.005348218139261007, 0.003463190281763673, -0.001565517159178853, 0.017697004601359367, -0.007661507930606604, 0.0039521511644124985, -0.009725258685648441, -0.005891133099794388, -0.0015570868272334337, 0.006595910526812077, 0.03868521749973297, 0.01789933256804943, -0.00971851497888565, 0.028784608468413353, 0.009226181544363499, -0.017224904149770737, 0.008423611521720886, 0.02079937420785427, -0.014446258544921875, 0.015457901172339916, -0.00010026854579336941, 0.04664347320795059, -0.04062757268548012, -0.012274598702788353, 0.0010841437615454197, 0.036284253001213074, -0.02873065322637558, -0.011748543940484524, 0.005516825243830681, 0.013164844363927841, 0.01405509002506733, 0.008666406385600567, 0.03161720931529999, -0.019666334614157677, -0.007054522167891264, -0.017912819981575012, -0.012355529703199863, 0.00527740316465497, -0.029405081644654274, 0.005132400896400213, 0.006444164086133242, 0.008727104403078556, 0.03159023076295853, 0.013340195640921593, -0.012827630154788494, 0.012982748448848724, 0.013515546917915344, 0.051283542066812515, 0.0060766008682549, -0.002616782672703266, 0.03315490484237671, -0.026356665417551994, -0.030295327305793762, -0.023618485778570175, -0.005678687710314989, 0.013286241330206394, -0.008511287160217762, 0.018546784296631813, 0.008592219091951847, 0.00855849776417017, 0.00488960649818182, 0.013549268245697021, 0.015417435206472874, -0.028460882604122162, -0.01652349904179573, 0.01818259246647358, 0.0018681669607758522, -0.00196764525026083, -0.014756495133042336, -0.027759477496147156, 0.003979128319770098, -0.021905437111854553, 0.04087036848068237, -0.012045293115079403, 0.020839840173721313, 0.025574328377842903, -0.014527189545333385, -0.007985233329236507, 0.007162430789321661, 0.0188030656427145, -0.01618628390133381, 0.04146386310458183, -0.0018850276246666908, 0.00215985719114542, 0.013286241330206394, -0.029998579993844032, 0.013198565691709518, 0.017616072669625282, 0.004673789255321026, -0.014297883957624435, -0.017076529562473297, 0.014796961098909378, -0.024697571992874146, -0.001488800859078765, -0.04054664075374603, -0.003486795350909233, 0.000521417532581836, -0.0018681669607758522, 0.01299623679369688, -0.01245669461786747, 0.011755288578569889, 0.020988214761018753, -0.0013690898194909096, -0.018695157021284103, -0.007958256639540195, -0.009259902872145176, -0.0009686479461379349, 0.10780064761638641, 0.020138435065746307, -0.01634814590215683, 0.00382400956004858, -0.0016658384120091796, 0.024036630988121033, -0.01276018749922514, -0.025452932342886925, 0.02306545525789261, -0.01070992462337017, 0.008234771899878979, -0.023631975054740906, 0.016456054523587227, -0.012544370256364346, 0.009785957634449005, -0.010271546430885792, -0.01862771436572075, 0.002689283574000001, -0.0010478933108970523, 0.004619835410267115, 0.001178563805297017, 0.004522043280303478, 0.014850915409624577, 0.0018850276246666908, -0.04173363372683525, -0.01131691038608551, 0.025641771033406258, 0.0010639108950272202, 0.012557858601212502, -0.01941005140542984, -0.0074591790325939655, 0.01618628390133381, 0.02078588679432869, 0.019329121336340904, -0.005682060029357672, -0.004100525286048651, 0.004100525286048651, 0.014014624059200287, 0.005789968650788069, -0.0020907283760607243, 0.013576245866715908, 0.006235091481357813, -0.007519877515733242, -0.01329972967505455, 0.0019946221727877855, 0.008457333780825138, -0.008281981572508812, 0.0011810929281637073, -0.033559560775756836, -0.009205948561429977, 0.031886979937553406, -0.004144363105297089, -0.02125798538327217, -0.004650184419006109, 0.01802072860300541, 0.008720360696315765, -0.012126224115490913, -0.00022930568957235664, -0.008147096261382103, 0.025250602513551712, -0.008915944956243038, 0.007047777995467186, 0.022593354806303978, -0.004498437978327274, -0.020866816863417625, -0.017049552872776985, -0.03517819195985794, -0.016415590420365334, -0.013360428623855114, 0.01521510723978281, -0.029755786061286926, -0.0052807750180363655, -0.028191111981868744, -0.007762671913951635, 0.007944767363369465, 0.002834285842254758, 0.027462728321552277, -0.01606488600373268, 0.005806829314678907, -0.01744072139263153, -0.00923967082053423, -0.029917648062109947, 0.006299162283539772, -0.02003052644431591, -0.015983955934643745, 0.010089450515806675, 0.012315064668655396, 0.009334090165793896, -0.02371290512382984, 0.013394149951636791, -0.001974389422684908, 0.010838066227734089, 0.01927516609430313, -0.011552959680557251, -0.0016784839099273086, -0.021811017766594887, -0.01084480993449688, -0.0024582918267697096, -0.004552392289042473, -0.014769984409213066, 0.002960741054266691, -0.04060059413313866, 0.00193055160343647, -0.017224904149770737, 0.007263594772666693, -0.02047564834356308, 0.020907282829284668, 0.006835332605987787, -0.020988214761018753, -0.015997443348169327, -0.0016734256641939282, -0.02244498021900654, 0.008754082024097443, -0.00803244300186634, -0.009050830267369747, -0.0015672032022848725, 0.01849282905459404, 0.014958824031054974, 0.017939798533916473, -0.001488800859078765, -0.0013201937545090914, -0.036311231553554535, 0.004801930859684944, -0.011944128200411797, -0.034935396164655685, -0.01804770715534687, 0.018115149810910225, -0.01603790931403637, 0.015188129618763924, 0.0038880803622305393, 0.013029958121478558, 0.010278290137648582, 0.017993751913309097, -0.009651071391999722, -0.014540678821504116, -0.0035609824117273092, -0.007971744984388351, 0.007364759221673012, -0.01649652048945427, 0.012982748448848724, -0.02583061158657074, -0.006430675741285086, -0.012240877375006676, -0.021514268592000008, 0.0012586521916091442, -0.01896492950618267, -0.01649652048945427, 0.012820885516703129, 0.006184509489685297, -0.005415660794824362, -0.010244568809866905, -0.03560982272028923, -0.033991195261478424, -0.010116427205502987, -0.011195513419806957, -0.043649014085531235, -0.005678687710314989, 0.0010419919854030013, 0.016091864556074142, 0.008592219091951847, 0.032912109047174454, -0.03547493740916252, 0.01544441282749176, 0.0003549179818946868, 0.004161223769187927, -0.004036454483866692, -0.01818259246647358, -0.029701830819249153, -0.040573619306087494, -0.02494036592543125, 0.030753938481211662, 0.021217521280050278, 0.0021918925922363997, -0.01382578443735838, 0.004218550398945808, 0.037201475352048874, -0.00549659226089716, -0.002100844867527485, -0.020273320376873016, -0.03650007024407387, -0.01168110128492117, -0.00020633297390304506, 0.0002910580369643867, -0.004387157503515482, -0.028514835983514786, -0.0023284642957150936, 0.0559505894780159, 0.0028781236615031958, 0.007580576464533806, -0.01679326966404915, 0.007411969359964132, -0.01337391696870327, -0.00492670014500618, -0.0025881193578243256, 0.017831889912486076, -0.006417186930775642, 0.0275166817009449, 0.004818791523575783, 0.011283189058303833, -0.014041601680219173, 0.0009163797367364168, -0.0016978736966848373, 0.003945406526327133, -0.023443134501576424, -0.013515546917915344, 0.0010942602530121803, -0.03194093331694603, -0.018857020884752274, 0.017966775223612785, -0.025790145620703697, -0.02475152537226677, -0.002841030014678836, 0.005658455193042755, -0.04143688827753067, -0.01698211021721363, 0.010898764245212078, 0.005142517387866974, 0.0006491374224424362, -0.015323015861213207, -0.02781343087553978, 0.017184438183903694, -0.014311372302472591, 0.035690754652023315, -0.0007317549316212535, 0.022552888840436935, 0.009037341922521591, -0.01168110128492117, 0.00691289221867919, -0.006123810540884733, -0.007411969359964132, -0.00954990740865469, 0.019747266545891762, -0.0031175457406789064, -0.0029691713862121105, 0.008551753126084805, -0.019180746749043465, 0.0005669414531439543, -0.038307540118694305, -0.030673008412122726, 0.02781343087553978, 0.013151356019079685, -0.01099318452179432, -0.0048929788172245026, -0.003100685076788068, -0.040141984820365906, 0.011364120058715343, -0.004006105475127697, 0.03315490484237671, -0.00524030951783061, -0.021527757868170738, -0.03258838504552841, 0.006713935639709234, 0.013083912432193756, 0.029243219643831253, 0.02383430302143097, -0.030187418684363365, -0.03763310983777046, -0.006568933371454477, -0.017467698082327843, -0.012571346946060658, -0.006396954413503408, 0.01506673265248537, -0.024104073643684387, -0.007047777995467186, 0.011782266199588776, 0.0007608396699652076, -0.018924463540315628, -0.004444483667612076, -0.028379950672388077, 0.026397131383419037, 0.01986866258084774, 0.015660230070352554, 0.0035643544979393482, 0.023105919361114502, 0.005564034916460514, 0.008882223628461361, 0.005263914354145527, -0.005982180591672659, -0.018533295020461082, 0.0015267374692484736, 0.005499964579939842, 0.020677978172898293, 0.012112735770642757, -0.006450908724218607, -0.023726394400000572, -0.007938023656606674, 0.007863836362957954, 0.009981541894376278, 0.010271546430885792, -0.04068152606487274, -0.04100525379180908, 0.003797032404690981, -0.02980973944067955, 0.02032727561891079, -0.005715781357139349, 0.015849068760871887, -0.003350223647430539, 0.03283118084073067, -0.0354209840297699, 0.021473802626132965, -0.017616072669625282, 0.01683373562991619, -0.022755216807127, 0.01652349904179573, 0.01603790931403637, -0.018142126500606537, 0.01084480993449688, -0.01002200786024332, -0.026693880558013916, 0.0028545185923576355, 0.01771049201488495, 0.01619977317750454, -0.00026113027706742287, 0.011128069832921028, 0.006906147580593824, 0.0011431563179939985, 0.014891381375491619, -0.010500852018594742, -0.03010648861527443, 0.01253088191151619, 0.03482748568058014, -0.008491055108606815, 0.004178084433078766, -0.010291778482496738, 0.017656538635492325, 0.003705984679982066, 0.023267783224582672, -0.0028106807731091976, -0.040438733994960785, 0.011829475872218609, -0.0030551610980182886, 0.019922617822885513, 0.020839840173721313, -0.002815739018842578, -0.01352229155600071, -0.029539968818426132, -0.0116945905610919, 0.000614151475019753, 0.013319962657988071, -0.008700127713382244, 0.024670593440532684, 0.003394061466678977, -0.007715461775660515, -0.002927019726485014, -0.01617279462516308, -0.010467130690813065, 0.010183869861066341, -0.005182982888072729, -0.041490841656923294, -0.00359470397233963, -0.013454848900437355, 0.03833451494574547, 0.0010099567007273436, -0.013562756590545177, -0.004232038743793964, -0.03180604800581932, -0.0238477922976017, -0.01588953472673893, -0.005405544303357601, 0.021365894004702568, 0.04874769225716591, 0.014122532680630684, 0.009860144928097725, 0.03024137392640114, -0.016294192522764206, -0.012395995669066906, 0.006181137170642614, 0.005331357475370169, -0.020880306139588356, -0.0014778414042666554, -0.014958824031054974, 0.0032254543621093035, -0.020583556964993477, -0.010150148533284664, 0.00946897640824318, -0.0014651959063485265, -0.003466562367975712, 0.003844242310151458, 0.012470182962715626, 0.006400326266884804, 0.002438059076666832, -0.021136589348316193, 0.019477494060993195, 0.019315632060170174, 0.00714219780638814, -0.018924463540315628, -0.016240237280726433, -0.005375195294618607, -0.002930391812697053, -0.023173363879323006, -0.035528894513845444, 0.0071219648234546185, -0.015282549895346165, 0.010446897707879543, -0.02293056808412075, 0.005584267899394035, -0.02504827454686165, -0.02905437909066677, 0.03347862884402275, -0.0038543588016182184, 0.004832280334085226, 0.02827204205095768, -0.00016565650003030896, -0.014311372302472591, -0.0009332404588349164, 0.019841685891151428, 0.01955842599272728, -0.02461664006114006, 0.004144363105297089, -0.025007808580994606, 0.024643616750836372, -0.006491374224424362, 0.010285034775733948, -0.023186851292848587, 0.002345325192436576, -0.011438307352364063, 0.007243362255394459, -0.02781343087553978, 0.028379950672388077, -0.0016338030109182, -0.0006259539513848722, -0.010925741866230965, 0.006531840190291405, -0.015835581347346306, 0.0018917719135060906, -0.017197927460074425, -0.019302142783999443, 0.008875478990375996, 0.007728950586169958, 0.00549659226089716, 0.00515600573271513, -0.014243929646909237, -0.0013311532093212008, 0.007998721674084663, -0.027449239045381546, 0.0018681669607758522, 0.2031918168067932, -0.021311940625309944, -0.003844242310151458, 0.023753371089696884, -0.007890813052654266, 0.01329972967505455, 0.017049552872776985, -0.006171020679175854, -0.0019052604911848903, -0.01061550434678793, -0.010224335826933384, 0.019221212714910507, -0.020124945789575577, 0.00611369451507926, 0.02340266853570938, -0.008093141950666904, -0.041949450969696045, -0.003749822499230504, -0.006336255930364132, -0.05988924950361252, 0.008153840899467468, -0.006899403408169746, -0.006224974989891052, 0.0006672627059742808, 0.013387405313551426, 0.008281981572508812, -0.01031201146543026, 0.004602974280714989, 0.02431989088654518, -0.01108760479837656, -0.026666902005672455, -0.007695229258388281, -0.0064745135605335236, -0.012395995669066906, -0.011714822612702847, 0.017670026049017906, 0.0019727032631635666, 0.008018954657018185, 0.007020800840109587, -0.01973377726972103, 0.011782266199588776, 0.004828908015042543, 0.00737150339409709, 0.012099247425794601, -0.011411329731345177, 0.021500781178474426, -0.004495066124945879, -0.012659022584557533, -0.021824507042765617, 0.012146457098424435, -0.034935396164655685, 0.01544441282749176, 0.03639216348528862, 0.03118557296693325, -0.006197997834533453, -0.02753017097711563, -0.009212693199515343, 0.00603950722143054, -0.015269061550498009, 0.02276870608329773, -0.010642481967806816, 0.02294405736029148, 0.011896918527781963, 0.039683371782302856, -0.017373278737068176, -0.00013446417870000005, -0.016402101144194603, -0.003635169705376029, 0.02383430302143097, -0.020718444138765335, -0.007560343481600285, -0.0113776084035635, -0.009327346459031105, -0.004434367176145315, -0.011890174821019173, 0.00032709783408790827, 0.03072696179151535, -0.0238477922976017, 0.003190046874806285, 0.0015604589134454727, 0.004646812565624714, -0.013643688522279263, 0.013778573833405972, -0.009226181544363499, -0.008524776436388493, -0.026869231835007668, -0.015498367138206959, -0.004720999393612146, -0.011310165748000145, 0.004656928591430187, -0.01862771436572075, -0.021905437111854553, 0.007735694758594036, -0.011141559109091759, -0.013630200177431107, -0.022890103980898857, 0.019477494060993195, 0.01382578443735838, -0.001228302950039506, -0.010062472894787788, -0.008592219091951847, -0.014432770200073719, 0.01775095798075199, -0.003945406526327133, -0.01864120364189148, -0.009691537357866764, 0.014230441302061081, 0.004228666890412569, 0.0010032124118879437, -0.0029691713862121105, 0.03010648861527443, -0.010224335826933384, -0.009361067786812782, -0.013920203782618046, 0.0009273391915485263, 0.016617918387055397, -0.026019452139735222, -0.020057503134012222, -0.0040668039582669735, 0.0039723836816847324, 0.010291778482496738, -0.020124945789575577, 0.0009669618448242545, 0.01575464941561222, -0.006528467871248722, -0.015093709342181683, -0.024859433993697166, 0.024562686681747437, 0.008308959193527699, -0.0039723836816847324, 0.017359789460897446, -0.05487150326371193, 0.0006874955724924803, 0.008126863278448582, -0.0174272321164608, 0.018600737676024437, -0.0032945831771939993, -0.016307681798934937, 0.019059348851442337, -0.007782904896885157, -0.006147415842860937, -0.0010352476965636015, -0.0021632295101881027, 0.008531520143151283, 0.016105351969599724, -0.005334729328751564, 0.007755927741527557, -0.036014482378959656, -0.01405509002506733, -0.013623455539345741, -0.032048843801021576, -0.00024469109484925866, 0.0038745917845517397, -0.0028258555103093386, 0.011573192663490772, -0.001723164808936417, -0.011128069832921028, -0.022040322422981262, 0.009880377911031246, 0.023955700919032097, -0.026046428829431534, 0.016712337732315063, 0.009914099238812923, 0.0031478949822485447, -0.010662714950740337, -0.024535708129405975, -0.17211414873600006, 0.0178858432918787, 0.021163566038012505, -0.013137866742908955, 0.028056224808096886, 0.03426096588373184, 0.01850631833076477, -0.0023014871403574944, -0.007513133343309164, -0.011134814471006393, 0.02921624295413494, 0.010062472894787788, -0.04631974920630455, -0.02214823104441166, -0.00038948244764469564, 0.003840870223939419, -0.02186497114598751, 0.02448175475001335, 0.022525912150740623, 0.020273320376873016, -0.008275237865746021, -0.0036216811276972294, 0.004714255221188068, -0.005651711020618677, 0.013050191104412079, 0.000604878063313663, -0.002323406282812357, 0.04008803144097328, 0.008882223628461361, -0.027179468423128128, -0.020866816863417625, 0.01574116200208664, -0.0038509867154061794, -0.02077239751815796, 0.02692318521440029, 0.011256211437284946, -0.013333451002836227, -0.0027550403028726578, -0.01680675894021988, 0.002842716174200177, 0.0066195158287882805, 0.0020654373802244663, 0.01775095798075199, 0.00018336024368181825, 0.0030956268310546875, 0.04313644766807556, -0.005604500882327557, -0.011876685544848442, 0.011411329731345177, -0.02494036592543125, 0.017305836081504822, -0.0028696933295577765, 0.017697004601359367, 0.0005762148648500443, 0.030484167858958244, 0.008322447538375854, 0.016132330521941185, 0.007890813052654266, -0.01680675894021988, -0.009590373374521732, -0.009597117081284523, -0.015633253380656242, 0.02079937420785427, -0.013765085488557816, -0.0002157117414753884, -0.0004931758157908916, -0.01185645256191492, 0.01306368038058281, -0.02216172032058239, 0.015336504206061363, -0.009516186080873013, 0.02001703716814518, 0.034773532301187515, -0.016105351969599724, 0.0009694909676909447, -0.009448743425309658, -0.017090018838644028, 0.01552534382790327, -0.013360428623855114, -0.010055729188024998, -0.0418415442109108, 0.03838846832513809, -0.02017890103161335, -0.010446897707879543, -0.008356168866157532, 0.014635098166763783, -0.004474833142012358, -0.022094277665019035, -0.016536986455321312, -0.0015478134155273438, 0.017157461494207382, -0.02030029706656933, -0.012510648928582668, -0.013421126641333103, 0.020111458376049995, 0.022647308185696602, 0.011579937301576138, -0.01590302400290966, 0.011478773318231106, -0.007438946515321732, 0.009462231770157814, -0.018546784296631813, -0.01833096705377102, 0.024104073643684387, 0.02628922276198864, 0.016132330521941185, 0.006329511292278767, 0.008275237865746021, 0.0357716865837574, 0.011499006301164627, -0.020704954862594604, 0.007904302328824997, -0.0007035132148303092, 0.00380040449090302, 0.012355529703199863, 0.028164133429527283, -0.0046636732295155525, -0.016483033075928688, 0.0038779638707637787, -0.014729518443346024, 0.0517151765525341, -0.021177055314183235, 0.003749822499230504, 0.0026285850908607244, -0.0021244497038424015, -0.03531307727098465, -0.11179326474666595, 0.003601448144763708, 0.01223413273692131, 0.01727885752916336, -0.005294263828545809, 0.013569501228630543, -0.011782266199588776, 0.011809242889285088, -0.012018315494060516, 0.011782266199588776, -0.02658597193658352, -0.03687775135040283, 0.00592822628095746, -0.007850348018109798, 0.023658951744437218, -0.03088882565498352, -0.008700127713382244, -0.016442567110061646, 0.007546854671090841, 0.028002271428704262, 0.005513452924787998, -0.0238477922976017, 0.015956977382302284, -0.03161720931529999, 0.032048843801021576, -0.004360180348157883, -0.023915234953165054, 0.02048913761973381, 0.02477850206196308, 0.014176486991345882, -0.010696436278522015, -0.006673470139503479, 0.023753371089696884, -0.002723005134612322, -0.0009079493465833366, -0.009819678962230682, -0.025169670581817627, -0.01497231237590313, 0.022188697010278702, -0.025628283619880676, 0.007364759221673012, -0.017508164048194885, 0.012052036821842194, -0.005591012071818113, 0.011728311888873577, -0.009192460216581821, -0.016577452421188354, 0.014662075787782669, 0.013852761127054691, -0.023631975054740906, -0.03458469361066818, 0.00932060182094574, -0.037039611488580704, -0.0045759971253573895, 0.031725116074085236, -0.007762671913951635, 0.025641771033406258, 0.01618628390133381, -0.024090586230158806, 0.0016970307333394885, -0.015862558037042618, 0.012652278877794743, 0.00501100393012166, 0.02918926440179348, 0.008457333780825138, -0.0024211984127759933, -0.007411969359964132, -0.022215675562620163, 0.024387333542108536, 0.009266647510230541, -0.003962267190217972, 0.017912819981575012, -0.02719295769929886, 0.012375762686133385, -0.022188697010278702, 0.020435184240341187, -0.028029248118400574, -0.0007789648952893913, 0.022741729393601418, 0.009057574905455112, -0.011721567250788212, -0.027759477496147156, 0.0027550403028726578, 0.00044933799654245377, 0.021770551800727844, 0.003523888997733593, 0.002508874051272869, -0.0073445262387394905, 0.006939869374036789, -0.026046428829431534, 0.005553918890655041, 0.02475152537226677, -0.01048061903566122, -0.03655402362346649, 0.01337391696870327, 0.03234558925032616, 0.02615433745086193, 0.015161152929067612, -0.01114830281585455, -0.004451227840036154, -0.024697571992874146, 0.005368450656533241, -0.06188555806875229, 0.03512423485517502, -0.008308959193527699, 0.010932485572993755, -0.00196764525026083, 0.0026252130046486855, 0.021473802626132965, -0.02307894267141819, 0.0028022504411637783, 0.01849282905459404, 0.0005981337744742632, 0.03283118084073067, -0.01544441282749176, -0.0013016470475122333, -0.027300866320729256, -0.02096123807132244, 0.007911046035587788, 0.0029169032350182533, 0.009900609962642193, -0.004346691537648439, 0.01306368038058281, 0.0014348466647788882, 0.013812295161187649, -0.0005374352331273258, -0.02477850206196308, 0.007641274947673082, 0.00297760171815753, 0.038280561566352844, 0.0028578906785696745, -0.022269628942012787, 0.013171588070690632, -0.028676699846982956, -0.007755927741527557, 0.0012755128554999828, 0.010898764245212078, 0.017359789460897446, -0.019814709201455116, 0.0006445007165893912, 0.0016717396210879087, 0.04283969849348068, 0.005031236447393894, -0.0013269380433484912, 0.00841012317687273, -0.025304557755589485, 0.009044086560606956, 0.035690754652023315, -0.013839272782206535, -0.001246849657036364, 0.01771049201488495, -0.014729518443346024, 0.0012367332819849253, 0.027476217597723007, -0.000756624445784837, -0.04283969849348068, -0.0014348466647788882, -0.04151781648397446, 0.015646740794181824, -0.005122284404933453, 0.014216952957212925, -0.025952007621526718, 0.009752236306667328, 0.0029590551275759935, 0.009974797256290913, -0.003338420996442437, 0.014041601680219173, -0.016510009765625, -0.00848431047052145, -0.010871787555515766, -0.01893795281648636, -0.029593922197818756, 0.001398596097715199, 0.002945566549897194, 0.0008118433179333806, 0.0003256225027143955, 0.013090657070279121, 0.032318614423274994, 0.0039723836816847324, 0.007904302328824997, -0.025952007621526718, 0.0010681261774152517, -0.005891133099794388, -0.008093141950666904, -0.031428366899490356, -0.0037767996545881033, 0.02646457403898239, -0.006514979060739279, 0.004316342528909445, -0.0036587745416909456, 0.0026538760866969824, 0.00191874906886369, 0.00833593588322401, -0.005081818904727697, -0.0016590941231697798, -0.011364120058715343, 0.011869941838085651, 0.028703676536679268, -0.012321808375418186, -0.0030467307660728693, 0.02477850206196308, 0.04019593819975853, -0.021460315212607384, 0.021325429901480675, 0.013367172330617905, -0.003311443841084838, 0.00918571650981903, 0.014446258544921875, -0.010210847482085228, -0.016577452421188354, 0.004481577314436436, 0.017521651461720467, -0.0023402669467031956, 0.005301008000969887, 0.031266506761312485, 0.02367244102060795, -0.008241516537964344, 0.010736901313066483, 0.024360356852412224, -0.00855849776417017, -0.011202257126569748, 0.040411755442619324, 0.016402101144194603, 0.024238960817456245, 0.015457901172339916, 0.009158738888800144, 0.022579865530133247, 0.025318045169115067, 0.01850631833076477, 0.025655260309576988, -0.0010639108950272202, 0.013360428623855114, 0.006376721430569887, 0.0057495031505823135, -0.03088882565498352, 0.007304060738533735, 0.017912819981575012, -0.0434601716697216, -0.009583628736436367, 0.01680675894021988, -0.03258838504552841, 0.032966066151857376, 0.007411969359964132, -0.00893617793917656, 0.004953677300363779, 0.006400326266884804, 0.02295754663646221, 0.007621041964739561, 0.005985552910715342, 0.01245669461786747, -0.014095555990934372, 0.006461025215685368, -0.015403946861624718, 0.008147096261382103, -0.012746698223054409, -0.007978488691151142, 0.029081357643008232, -0.01314461138099432, 0.025614794343709946, 0.000987194711342454, -0.0188030656427145, 0.03334374353289604, 0.005722525995224714, 0.03072696179151535, 0.0051661222241818905, -0.0019389819353818893, -0.003648658050224185, 0.005260542035102844, -0.002082298044115305, -0.005209960043430328, -0.02628922276198864, -0.005985552910715342, 0.0068420772440731525, -0.016307681798934937, -0.008693383075296879, 0.015363480895757675, 0.0034210386220365763, -0.004130874760448933, -0.015188129618763924, 0.021918926388025284, -0.008416867814958096, -0.01529603824019432, 0.01679326966404915, -0.02202683500945568, -0.015376969240605831, 0.022876614704728127, -0.012976003810763359, -0.021514268592000008, -0.0026437595952302217, -0.021905437111854553], "283a69e0-0505-4ad0-a408-8fdd7b248630": [-0.013460742309689522, -0.006773965898901224, -0.00558013841509819, 0.021864483132958412, -0.00509724160656333, 0.03817565739154816, -0.02354120835661888, -0.022830277681350708, -0.010496293194591999, -0.016244104132056236, 0.01978534646332264, 0.014017414301633835, 0.006767258979380131, -0.010321914218366146, 0.001396711217239499, 0.013883276842534542, 0.03447344899177551, 0.0032964397687464952, 0.03278331086039543, -0.021596208214759827, 0.004205224569886923, -0.0013028146931901574, 0.0045036813244223595, 0.03187117353081703, -0.0030549915973097086, 0.03267600014805794, 0.01589534617960453, -0.021099897101521492, -0.0031153536401689053, -0.013313190080225468, -0.0016104936366900802, 0.00015509699005633593, 0.006596233230084181, 0.009114672429859638, -0.03079807013273239, -0.013427207246422768, -0.00027540195151232183, -0.020523104816675186, 0.014393000863492489, 0.010670673102140427, 0.008940293453633785, -0.007243448402732611, -0.010335328057408333, 0.007303810678422451, -0.021757174283266068, 0.019007345661520958, 0.013192466460168362, -0.03168338164687157, -0.024426518008112907, 0.010724328458309174, 0.01596241444349289, 0.01757206954061985, -0.03428565710783005, 0.008806155994534492, 0.002468138001859188, 0.0017823578091338277, 0.015533173456788063, 0.007867190055549145, 0.0059288968332111835, 0.01848420687019825, 6.942686013644561e-05, 0.014755172654986382, -0.003645198419690132, 0.007357466034591198, -0.0256740003824234, 0.0034020734019577503, -0.009389655664563179, 0.0008480032556690276, -0.004832318983972073, -0.013789379969239235, 0.03761227801442146, 0.041529104113578796, -0.002080814680084586, 0.005650560837239027, 0.021099897101521492, -0.030663931742310524, -0.017290379852056503, -0.019999966025352478, -0.007934259250760078, 0.012179724872112274, -0.012924190610647202, -0.013179052621126175, -0.009107965975999832, 0.025781311094760895, 0.030449312180280685, -0.02054993249475956, 0.004845732823014259, 0.0320589654147625, -0.028249450027942657, -0.022521760314702988, 0.0031103233341127634, -0.00908784568309784, 0.007008707150816917, 0.0108115179464221, 0.00038627535104751587, 0.009577448479831219, -0.03329303488135338, 0.017826931551098824, -0.008383621461689472, -0.015774620696902275, -0.017156241461634636, -0.01203217264264822, -0.03551972657442093, -0.006270948797464371, -0.021408414468169212, 0.01879272423684597, -0.006643181201070547, 0.014312517829239368, 0.0029963061679154634, -0.005415819119662046, -0.017558656632900238, 0.019342690706253052, -0.018122036010026932, -0.051213864237070084, -0.006857802160084248, -0.006790732964873314, 0.03278331086039543, -0.023930208757519722, -0.012253500521183014, -0.018443966284394264, -0.0002626169298309833, 0.013936931267380714, 0.00010846310033230111, -0.012743104249238968, 0.0008609978831373155, 0.012796759605407715, -0.006260888185352087, -0.02918841503560543, 0.00452380208298564, 0.0025519742630422115, 0.03981214016675949, 0.026545897126197815, -0.004044258967041969, -0.0051307762041687965, -0.005063707008957863, 0.03034200146794319, -0.022669311612844467, 0.0009188448893837631, -0.01758548431098461, -0.027712898328900337, 0.02881282940506935, 0.01230044849216938, -0.0012307155411690474, -0.023796070367097855, -0.01788058690726757, 0.019892655313014984, 0.030449312180280685, 0.01771962083876133, -0.027390966191887856, 0.0033333278261125088, 0.022588828578591347, -0.018242759630084038, 0.016002655029296875, -0.017759863287210464, 0.02077796682715416, -0.021649863570928574, 0.008175707422196865, 0.0025855086278170347, -0.009255517274141312, -0.022427862510085106, 0.02811531163752079, 0.03653917461633682, 0.012159603647887707, -0.0034372846130281687, 0.007679396774619818, 0.03262234479188919, -0.013272948563098907, -0.0039570690132677555, -0.024091172963380814, -0.013661948963999748, 0.030985863879323006, 0.01596241444349289, -0.015600241720676422, -0.0004678060649894178, -0.011965104378759861, 0.024346034973859787, 0.033051587641239166, 0.04088524356484413, -0.01765255257487297, -0.003903413889929652, -0.01833665557205677, -0.012870535254478455, 0.024493588134646416, 0.01038898341357708, -0.00611333642154932, 0.0003841794386971742, -0.01050300057977438, -0.01230715587735176, 0.008329966105520725, -0.006425207015126944, 0.012823586352169514, 0.01788058690726757, -0.028061656281352043, -0.018819551914930344, -0.6399989128112793, -0.029859105125069618, -0.014567379839718342, -0.012354103848338127, 0.0035613621585071087, 0.0032310476526618004, 0.015533173456788063, 0.0057377503253519535, -0.000815726350992918, -0.0013648534659296274, -0.033185724169015884, 0.013427207246422768, 0.005217965692281723, -0.026988552883267403, -0.036941587924957275, -0.007002000231295824, 0.0053487503901124, -0.02803482860326767, 0.014956380240619183, -0.022977828979492188, -0.013829621486365795, -0.004423198290169239, 0.003299793228507042, 0.0026525778230279684, -0.014205207116901875, -0.009322586469352245, 0.007773293647915125, 0.01061701774597168, 0.012099241837859154, 0.0316028967499733, -0.03401738032698631, 0.024104587733745575, 0.015452690422534943, 0.027256829664111137, 0.051991865038871765, -0.018430553376674652, -0.01931586302816868, 0.030959036201238632, 0.002790069207549095, 0.016083138063549995, -0.011931569315493107, -0.020456034690141678, 0.025606932118535042, -0.0034607588313519955, 0.014567379839718342, -0.0051341294310987, 0.02918841503560543, -0.0045640431344509125, 0.007431241683661938, -0.0030667285900563, 0.0017823578091338277, 0.011562690138816833, -0.0021680044010281563, 0.004989931359887123, -0.0016566035337746143, 0.007940965704619884, 0.02749827690422535, -0.009081138297915459, -0.0016272608190774918, -0.006881276145577431, 0.01750500127673149, 0.024761863052845, -0.011777310632169247, -0.0024329267907887697, -0.01879272423684597, 0.009121379815042019, -0.016539208590984344, 0.022508345544338226, 0.02177058719098568, -0.023715587332844734, 0.023286346346139908, -0.00134221778716892, -0.010590190067887306, -0.01649896614253521, 0.025781311094760895, 0.014513724483549595, 0.031441930681467056, -0.01908782869577408, -0.009711586870253086, 0.02108648419380188, 0.0062474743463099, -0.02598251774907112, -0.03729034587740898, -0.011099914088845253, 0.025231346487998962, -0.0026861121878027916, -0.007981207221746445, 0.011623051948845387, -0.009879259392619133, 0.0006891336524859071, -0.003018103539943695, 0.018457381054759026, -0.010335328057408333, 0.00018726913549471647, 0.039087794721126556, -0.002952711423859, 0.004319241736084223, 0.002736413851380348, -0.000404090533265844, -0.0003041158488485962, -0.010489586740732193, -0.007598914206027985, 0.001182090607471764, -0.0116968285292387, 0.0002473168133292347, -0.007907431572675705, -0.04284365847706795, -0.00920186284929514, 0.04979200288653374, -0.01742451824247837, -0.02040238119661808, -0.007270276080816984, -0.02399727702140808, 0.0028772586956620216, 0.03857807070016861, -0.017384275794029236, 0.004285707138478756, -0.01053653471171856, 0.028061656281352043, -0.007102603558450937, 0.018068380653858185, -0.01612338051199913, 0.0218510702252388, -0.021421829238533974, 0.0254459660500288, 0.023581448942422867, 0.021891310811042786, -0.013963758945465088, -0.02474845014512539, -0.004745129495859146, 0.0037625690456479788, -0.007806827779859304, -0.0017186423065140843, 0.01864517293870449, 0.010134121403098106, -0.0252179317176342, 0.013896690681576729, 0.005388991441577673, 0.010140827856957912, -0.021555965766310692, -0.0064755091443657875, 0.00787389650940895, 0.02063041552901268, -0.002085844986140728, -0.01674041524529457, -0.03452710434794426, -0.010067052207887173, -0.0030449312180280685, -0.02308513969182968, 0.022307138890028, -0.01588193140923977, -0.009268931113183498, 0.008464103564620018, -0.002448017243295908, 0.01947682909667492, -0.013541224412620068, -0.028839657083153725, -0.007639155723154545, 0.020281655713915825, -0.020214587450027466, 0.004037552047520876, 0.017894001677632332, -0.012065707705914974, 0.0054325866512954235, 0.011830965988337994, -0.01597582921385765, -0.013018086552619934, 0.0401608981192112, -0.012769931927323341, -0.035492897033691406, 0.010670673102140427, -0.017317207530140877, 0.0028923493809998035, 0.05708910524845123, -0.03356131166219711, 0.009912793524563313, -0.01665993221104145, -0.016163621097803116, -0.015935586765408516, 0.008678724989295006, -0.005144190043210983, 0.021904725581407547, 0.001107476302422583, -0.002883965615183115, 0.017317207530140877, -0.001234069000929594, 0.004325948655605316, -0.00220489245839417, -0.0023122027050703764, 0.015841690823435783, 0.004081146791577339, 0.013521104119718075, -0.012662621214985847, -0.0051877847872674465, 0.01264920737594366, 0.002362504368647933, 0.014755172654986382, 0.016163621097803116, 0.00565391406416893, 0.02490941435098648, 0.007538551930338144, 0.013246120885014534, 0.02398386411368847, 0.004480207338929176, 0.007900724187493324, -0.036163587123155594, -0.008477517403662205, -0.01177060417830944, 0.03782689943909645, -0.02956400066614151, 0.0007243448635563254, -0.026545897126197815, -0.010228017345070839, -0.012769931927323341, 0.021260863170027733, 0.016767242923378944, 0.017384275794029236, 0.0034976466558873653, 0.008712259121239185, 0.0013212587218731642, 0.014352759346365929, -0.003977189771831036, 0.00013162284449208528, -0.023125380277633667, -0.010442638769745827, -0.00022405227355193347, 0.021448656916618347, 0.04177055507898331, 0.017531828954815865, -0.01750500127673149, 0.035412415862083435, 0.0008236907888203859, -0.010167655535042286, 0.004195163957774639, 0.026760518550872803, -0.0017706208163872361, 0.00951038021594286, -0.010717621073126793, 0.04804820939898491, -0.018913449719548225, -0.02069748379290104, -0.006482215598225594, 0.016592862084507942, -0.022441277280449867, -0.019919482991099358, 0.008283017203211784, 0.007397707086056471, 0.01588193140923977, 0.008940293453633785, 0.03715620934963226, -0.019839001819491386, -0.004785371012985706, -0.01796106994152069, -0.006981879472732544, 0.012823586352169514, -0.03490269184112549, 0.005757871083915234, 0.021180380135774612, 0.011965104378759861, 0.02650565654039383, 0.017840346321463585, -0.008464103564620018, 0.01703551784157753, 0.017075760290026665, 0.04147544875741005, -0.00026555120712146163, 0.003531181253492832, 0.03763910382986069, -0.0254459660500288, -0.033427175134420395, -0.015949001535773277, -0.02123403549194336, 0.0018477500416338444, -0.015640484169125557, 0.018363483250141144, 0.009141500107944012, 0.01352781057357788, 0.0022803449537605047, 0.020067036151885986, 0.026156898587942123, -0.024493588134646416, -0.03162972629070282, 0.015492931939661503, -0.004721655510365963, -0.0001895746390800923, -0.013843035325407982, -0.016767242923378944, 0.010013396851718426, -0.02575448341667652, 0.03836344927549362, -0.013266242109239101, 0.027377553284168243, 0.024185070767998695, -0.0191683117300272, -0.004302474204450846, -0.008920173160731792, 0.02246810495853424, -0.02025482803583145, 0.04332655295729637, -0.019221967086195946, 0.005107301753014326, -0.0040710861794650555, -0.027001967653632164, 0.011743776500225067, 0.01841713860630989, -0.00517437094822526, -0.019342690706253052, -0.020831622183322906, 0.01523806992918253, -0.019517069682478905, -0.0007289558416232467, -0.02490941435098648, -0.01127429399639368, -0.009845724329352379, 8.483176497975364e-05, 0.020764552056789398, -0.00542587973177433, 0.0026609613560140133, 0.016794070601463318, 0.004268940072506666, -0.0113816037774086, -0.013574759475886822, -0.01095906924456358, -0.013883276842534542, 0.08702869713306427, 0.026089828461408615, -0.0229912418872118, 0.00028462393674999475, -0.000944834086112678, 0.018001310527324677, -0.011737069115042686, -0.023407069966197014, 0.017612311989068985, -0.01794765517115593, 0.012481534853577614, -0.01134806964546442, 0.01763913966715336, 0.00011904742132173851, 0.016324587166309357, -0.000490441860165447, -0.007887310348451138, -0.007800120860338211, -0.0031069698743522167, 0.006126750260591507, 0.003893353743478656, 0.005838353652507067, 0.023340001702308655, 0.01111332792788744, -0.030234690755605698, -0.007860482670366764, 0.03130779415369034, 0.00039926994941197336, 0.015452690422534943, -0.020214587450027466, -0.0028521078638732433, 0.01979875937104225, 0.02765924297273159, 0.016230691224336624, -0.026103243231773376, -0.008222655393183231, -0.002179741393774748, 0.012488242238759995, -0.0026961725670844316, 0.008920173160731792, 0.008732379414141178, 0.014299103990197182, -0.0018812845228239894, -0.006472155451774597, 0.008169000037014484, 0.0006430237554013729, -0.013883276842534542, -0.009409775957465172, -0.04042917490005493, -0.007069069426506758, 0.03780006989836693, -0.008732379414141178, -0.009020776487886906, 0.009128086268901825, 0.024480173364281654, 0.005952370818704367, -0.008215948939323425, 0.0012248470447957516, -0.00538228452205658, 0.011623051948845387, -0.004892681259661913, 0.016686759889125824, 0.01727696694433689, -0.012092535383999348, -0.021287690848112106, -0.03758544847369194, -0.030315173789858818, -0.003826284548267722, -0.01908782869577408, 0.007498310878872871, -0.02268272452056408, -0.011435259133577347, -0.027390966191887856, 0.004684767685830593, 0.020643828436732292, 0.001631452701985836, 0.025486208498477936, -0.017451345920562744, 0.01107308641076088, -0.010710914619266987, -0.015264897607266903, -0.038390278816223145, 0.00536887114867568, -0.029859105125069618, -0.015157586894929409, 0.006948345340788364, 0.011529156006872654, 0.021260863170027733, -0.027001967653632164, 0.01596241444349289, 0.007008707150816917, 0.009825604036450386, 0.02741779386997223, -0.014688104391098022, -0.0001152747863670811, -0.009906087070703506, -0.00951038021594286, -0.002057340694591403, -0.0009104612399823964, -0.00041142621194012463, -0.0021260862704366446, -0.0319516584277153, 0.0044466727413237095, -0.014647862873971462, 0.010362155735492706, -0.012548604048788548, 0.013433914631605148, 0.01949024200439453, -0.007665982935577631, -0.021743759512901306, 0.0033886595629155636, -0.019852414727211, 0.001779004349373281, -0.014728345908224583, 0.014245448634028435, 0.005647207144647837, 0.010382276028394699, 0.010610311292111874, -0.0009389655897393823, 0.0019919483456760645, -0.008718965575098991, -0.03026151843369007, -0.0043896641582250595, -0.010355448350310326, -0.026612967252731323, -0.017920829355716705, 0.013802793808281422, -0.014996621757745743, 0.011951690539717674, -0.0013002996565774083, 0.008725672960281372, 0.004788724239915609, 0.023111967369914055, -0.006029500160366297, -0.02841041423380375, 0.0035077070351690054, -0.024815518409013748, 0.005757871083915234, -0.0053018019534647465, -0.0001926136901602149, -0.018309827893972397, -0.002295435406267643, -0.022964414209127426, -0.017934242263436317, -0.00269114226102829, -0.02017434500157833, -0.02092551812529564, 0.0001247063628397882, 0.0030533147510141134, -0.0042555262334644794, -0.009121379815042019, -0.04429234564304352, -0.0395975187420845, -0.01771962083876133, -0.011790724471211433, -0.032890621572732925, 0.0017588837072253227, 0.00590206915512681, 0.031146829947829247, -0.007800120860338211, 0.025459380820393562, -0.017840346321463585, 0.019597552716732025, 0.0056908018887043, -0.001215625088661909, 0.0017471465980634093, -0.01096577662974596, -0.026156898587942123, -0.04163641482591629, -0.019356103613972664, 0.03573434799909592, 0.016901379451155663, 0.016445310786366463, -0.012219966389238834, 0.003477526130154729, 0.025459380820393562, -0.003826284548267722, -0.0018309828592464328, -0.02115355245769024, -0.035117313265800476, -0.02894696779549122, 0.003524474333971739, 0.005952370818704367, 0.003272965783253312, -0.04217296838760376, 0.015452690422534943, 0.07340028136968613, 0.014057655818760395, 0.013802793808281422, -0.020429207012057304, 0.02048286236822605, -0.021260863170027733, -0.011086500249803066, 0.003443991532549262, 0.011555983684957027, 0.002592215547338128, 0.023957036435604095, 0.006844388321042061, 0.01581486314535141, -0.008370207622647285, 0.016552621498703957, -0.005744457244873047, -0.003214280353859067, -0.019369518384337425, -0.01872565597295761, 0.0004464278172235936, -0.017894001677632332, -0.009523793123662472, 0.027444621548056602, -0.0320589654147625, -0.028142139315605164, -0.008222655393183231, 0.0008362662047147751, -0.03546607121825218, -0.013594879768788815, -0.006968465633690357, 0.011569397523999214, 0.006066388450562954, -0.01122734509408474, -0.021260863170027733, 0.023366829380393028, -0.010623724199831486, 0.040992554277181625, 0.011891327798366547, 0.025325242429971695, 0.0056639742106199265, -0.007008707150816917, -0.0024698148481547832, -0.0010504677193239331, -0.013923518359661102, -0.0016666639130562544, 0.013313190080225468, 0.007665982935577631, -0.010147535242140293, 0.008403741754591465, -0.027471449226140976, 0.01230044849216938, -0.03916827589273453, -0.033051587641239166, 0.02169010415673256, 0.0119248628616333, -0.007813534699380398, -0.005573431495577097, -0.01065055187791586, -0.040697451680898666, 0.0010848406236618757, -0.0034708192106336355, 0.026170311495661736, -0.009248810820281506, -0.023930208757519722, -0.03627089783549309, -0.013990586623549461, 0.015613655559718609, 0.026612967252731323, 0.030824897810816765, -0.01112003531306982, -0.025499621406197548, -0.010905413888394833, -0.01664651744067669, -0.023943621665239334, -0.014178380370140076, 0.01474175974726677, -0.017531828954815865, 0.013802793808281422, 0.011589517816901207, -0.006703543476760387, -0.0027447976171970367, -0.008584828115999699, 0.0015660604694858193, 0.030422484502196312, 0.013708896934986115, 0.0067068967036902905, 0.00484908651560545, 0.017370862886309624, 0.007243448402732611, 0.01199863851070404, -0.005224672611802816, 0.008665311150252819, -0.013648535124957561, 8.04827650426887e-05, -0.001368206925690174, 0.019839001819491386, -0.007726345211267471, -0.006586172617971897, -0.014553966000676155, -0.014352759346365929, 0.008926879614591599, 0.014218620955944061, 0.002037219936028123, -0.04260220751166344, -0.02857138030230999, 0.007726345211267471, -0.026867829263210297, 0.022937586531043053, 0.0030063665471971035, 0.03310524299740791, -0.00920186284929514, 0.025647172704339027, -0.031361449509859085, 0.023272931575775146, -0.007404414005577564, 0.014393000863492489, -0.01880613900721073, 0.016244104132056236, 0.014553966000676155, -0.015372207388281822, 0.009342707693576813, -0.0114956209436059, -0.03519779443740845, -0.007357466034591198, 0.004252172540873289, 0.0196243803948164, 0.006760552059859037, 0.014647862873971462, 0.013172345235943794, -0.009745121002197266, 0.00985243171453476, 0.002640840597450733, -0.025633759796619415, 0.00517437094822526, 0.029429864138364792, 0.009771948680281639, 0.009054310619831085, -0.014942966401576996, 0.021555965766310692, 0.009349414147436619, 0.017746448516845703, 0.005952370818704367, -0.0328637957572937, 0.00787389650940895, -0.009832310490310192, 0.008296431042253971, 0.015345379710197449, -0.0006317058578133583, -0.014862483367323875, -0.02910793200135231, -0.011830965988337994, 0.0004183426790405065, 0.014419828541576862, -0.0068410346284508705, 0.017290379852056503, 0.016928207129240036, -0.007598914206027985, -0.004993284586817026, -0.02115355245769024, -0.007337345276027918, 0.01971827633678913, -0.02390338107943535, -0.03071758709847927, -0.011327948421239853, -0.013474156148731709, 0.03364179655909538, -0.0011426875134930015, -0.006448681466281414, -0.0021948320791125298, -0.029456691816449165, -0.029832277446985245, 0.004949689842760563, -0.0021646509412676096, 0.015345379710197449, 0.05416489765048027, 0.029617656022310257, 0.007645862642675638, 0.03093220852315426, -0.016767242923378944, -0.005026819184422493, 0.0032494915649294853, 0.018443966284394264, -0.01061701774597168, -0.0010420840699225664, -0.008276310749351978, 0.0035043535754084587, -0.013480862602591515, -0.009040896780788898, 0.011991932056844234, -0.009792068973183632, -0.0002724676742218435, 0.0031505648512393236, 0.0004602608096320182, -0.0019047587411478162, 0.0023692112881690264, -0.005687448661774397, 0.0027950992807745934, 0.027256829664111137, -0.003792750183492899, -0.03836344927549362, -0.022669311612844467, -0.013594879768788815, -0.00607309490442276, -0.03393689915537834, -0.026317862793803215, 0.0011628082720562816, -0.025633759796619415, 0.020751139149069786, -0.021716931834816933, -0.00307678896933794, -0.02101941406726837, -0.021636448800563812, 0.04391676187515259, -0.0023205862380564213, 0.0029107932932674885, 0.032810140401124954, -0.0032276941929012537, -0.020885277539491653, 0.00312373717315495, 0.014272276312112808, 0.01849762164056301, -0.025875208899378777, 0.0049999915063381195, -0.02169010415673256, 0.023943621665239334, -0.0034942931961268187, 0.019074413925409317, -0.015908759087324142, 0.0045036813244223595, -0.007062362506985664, 0.0232192762196064, -0.03213945031166077, 0.025606932118535042, 0.005033526103943586, 0.0124949486926198, -0.014688104391098022, 0.01523806992918253, -0.009986569173634052, 0.011569397523999214, -0.012850414030253887, -0.022253483533859253, 0.0019248793832957745, 0.005821586586534977, 0.007350759115070105, 0.0031874526757746935, -0.019356103613972664, -0.0034020734019577503, 0.004382957238703966, -0.033507656306028366, -0.00532862963154912, 0.19669987261295319, -0.02972496673464775, -0.012575431726872921, 0.011281000450253487, -0.017223311588168144, -0.00039486854802817106, 0.015036862343549728, -0.00881956983357668, -0.017478173598647118, -0.009765242226421833, 0.006562698632478714, 0.024050932377576828, -0.0189402773976326, 0.0035848363768309355, 0.023621691390872, -0.0036720260977745056, -0.0392487607896328, 0.0034322545398026705, 0.005754517391324043, -0.06733724474906921, 0.012937604449689388, -0.006472155451774597, -0.01310527604073286, 0.0015987565275281668, 0.006810853723436594, 0.002189801773056388, -0.010342034511268139, 0.008806155994534492, 0.031066346913576126, -0.011281000450253487, -0.03329303488135338, 0.007223328109830618, -0.0025234699714928865, -0.0232192762196064, -0.013427207246422768, 0.012676035054028034, 0.004121388308703899, -0.0029258837457746267, 0.014768586494028568, -0.01780010387301445, -0.0011208901414647698, 0.002914146753028035, 0.001081487163901329, 0.019047586247324944, -0.012622379697859287, 0.022119345143437386, 0.0020590173080563545, -0.02063041552901268, -0.01970486342906952, 0.024855758994817734, -0.037773244082927704, 0.005331982858479023, 0.04230710491538048, 0.03270282968878746, -0.0049060950987041, -0.01085175946354866, -0.009597569704055786, 0.006455388385802507, -0.02115355245769024, 0.01810862123966217, -0.019369518384337425, 0.03366862237453461, 0.003933595027774572, 0.02528500184416771, -0.01674041524529457, 0.001784034539014101, -0.006653241813182831, -0.0023876552004367113, 0.02284369058907032, -0.033722277730703354, 0.0001359194575343281, -0.021046241745352745, -0.011019431985914707, -0.008873224258422852, -0.004949689842760563, -0.009617689996957779, 0.019825587049126625, -0.018832966685295105, 0.009879259392619133, 0.0012499978765845299, 0.012025466188788414, -0.01788058690726757, 0.013581465929746628, 0.005150896962732077, 0.008242776617407799, -0.029429864138364792, 0.00011936180817428976, -0.0024178363382816315, -0.020576760172843933, 0.013802793808281422, -0.01835007034242153, -0.0333198644220829, 0.00025234700297005475, -0.004872560501098633, -0.006599586457014084, -0.012997966259717941, 0.017062345519661903, 0.008692137897014618, -0.012696155346930027, -0.0016054634470492601, -0.015479518100619316, -0.010013396851718426, 0.01116027683019638, 0.005643853917717934, -0.01781351864337921, -0.002424543257802725, 0.01073103491216898, 0.012119363062083721, 0.009872552007436752, 0.003812870942056179, 0.030234690755605698, -0.002028836403042078, -0.001990271732211113, -0.016284344717860222, 0.01091882772743702, 0.011166983284056187, -0.021368173882365227, -0.0005088857724331319, -0.002095905365422368, 0.001525819068774581, 0.012179724872112274, -0.02152913808822632, 0.010214603506028652, -0.001727025955915451, -0.003003013087436557, -0.007122724317014217, -0.03184434771537781, 0.02910793200135231, 0.014325931668281555, -0.0032260173466056585, 0.022508345544338226, -0.04753848537802696, 0.013065035454928875, 0.005831646732985973, -0.037397656589746475, 0.013588173314929008, -0.0024262198712676764, -0.024480173364281654, 0.03079807013273239, -0.011911449022591114, -0.012213259004056454, -0.005992612335830927, 0.009959741495549679, 0.008028155192732811, 0.007531845010817051, -0.0021109958179295063, 0.014044241979718208, -0.02177058719098568, 0.0032159569673240185, -0.007840362377464771, -0.03431248292326927, 0.006448681466281414, -0.004309181123971939, -0.00016369020158890635, 0.004178396891802549, 0.012280328199267387, -0.0018745777197182178, -0.027243414893746376, 0.0112675866112113, 0.019047586247324944, -0.024493588134646416, 0.010382276028394699, 0.01256872434169054, -0.0002332742587896064, -0.007934259250760078, -0.012287034653127193, -0.17040883004665375, 0.020965758711099625, 0.01089200098067522, -0.017129413783550262, 0.035868484526872635, 0.026304449886083603, 0.03154924139380455, -0.003090202808380127, 0.0008962090942077339, -0.014540552161633968, 0.018672000616788864, 0.01864517293870449, -0.03683427721261978, -0.020429207012057304, 0.0008337511098943651, -0.003457405371591449, -0.005204551853239536, 0.014902724884450436, 0.0410730354487896, 0.016525793820619583, -0.008960414677858353, -0.008135465905070305, 0.01180413831025362, -0.007719638291746378, 0.012219966389238834, 0.009389655664563179, -0.011401725001633167, 0.035573381930589676, 0.01276322454214096, -0.017223311588168144, -0.01710258610546589, 0.007907431572675705, -0.012790052220225334, -0.0316028967499733, 0.02237420715391636, 0.018739070743322372, 0.010898707434535027, 0.00962439738214016, -0.014822241850197315, 0.00034121336648240685, 0.02376924268901348, 0.008906759321689606, 0.02292417362332344, -0.004798784852027893, -0.0012583815259858966, 0.03138827905058861, 0.006663301959633827, -0.014889311045408249, 0.009651225060224533, -0.02399727702140808, 0.01835007034242153, -0.009000655263662338, 0.023594863712787628, -0.006066388450562954, 0.024708207696676254, 0.01841713860630989, 0.016472138464450836, 0.006260888185352087, -0.007069069426506758, -0.013936931267380714, -0.00553989689797163, -0.009959741495549679, 0.0101542416960001, -0.017625724896788597, 0.0036284311208873987, -0.0105834836140275, -0.01674041524529457, 0.017303794622421265, -0.0203084833920002, 0.009610983543097973, -0.009798776358366013, 0.022642483934760094, 0.022642483934760094, -0.011904741637408733, -0.006468802224844694, -0.004795431159436703, -0.020134104415774345, 0.007759879808872938, -0.006975172553211451, -0.018779311329126358, -0.03071758709847927, 0.045043520629405975, -0.019423173740506172, -0.011448672972619534, -0.012857121415436268, 0.007967793382704258, -0.0037759828846901655, -0.026599552482366562, -0.013816207647323608, 0.0065325177274644375, 0.01656603440642357, -0.025606932118535042, 0.004349422641098499, -0.0105834836140275, 0.02124744839966297, 0.022052276879549026, 0.014983207918703556, -0.007753172889351845, 0.0027464742306619883, -0.008028155192732811, 0.0020875215996056795, -0.010905413888394833, -0.01602948270738125, 0.019275622442364693, 0.014849069528281689, 0.015103931538760662, -0.008739086799323559, 0.015090517699718475, 0.03691476210951805, 0.004429905209690332, -0.010321914218366146, 0.009342707693576813, 0.0026659914292395115, -0.002023806096985936, 0.009805482812225819, 0.023205863311886787, -0.001879607792943716, -0.01581486314535141, 0.009805482812225819, -0.029081104323267937, 0.05628427863121033, -0.011904741637408733, -0.01107308641076088, 0.005476181395351887, -0.00989267323166132, -0.03994627669453621, -0.11074428260326385, -0.003319913987070322, 0.019369518384337425, 0.0012583815259858966, 0.0018477500416338444, 0.0048658535815775394, -0.009570742025971413, 0.01103284489363432, -0.016324587166309357, 0.020737724378705025, -0.01849762164056301, -0.03361496701836586, 0.0034020734019577503, -0.0037089139223098755, 0.008698845282196999, -0.013749138452112675, -0.016834311187267303, -0.013628414832055569, 0.008551293052732944, 0.03589531034231186, 0.009523793123662472, -0.024775277823209763, 0.01926220767199993, -0.009745121002197266, 0.02238762192428112, 0.0013732371153309941, -0.012394345365464687, 0.02956400066614151, 0.02743120864033699, 0.01134136226028204, 0.0072769830003380775, -0.0014461746904999018, 0.018967105075716972, -0.011562690138816833, -0.014205207116901875, -0.011569397523999214, -0.021448656916618347, 0.003987250383943319, 0.015345379710197449, -0.024118000641465187, 0.019503656774759293, -0.016995277255773544, 0.01550634577870369, -0.020429207012057304, 0.015788035467267036, -0.013816207647323608, -0.004483560565859079, 0.008142172358930111, 0.004208577796816826, -0.026089828461408615, -0.02551303617656231, 0.01161634549498558, -0.04713607206940651, -0.012474828399717808, 0.023554621264338493, -0.006542577873915434, 0.019463414326310158, 0.007853776216506958, -0.017022104933857918, -0.006995293311774731, -0.017545241862535477, 0.017303794622421265, -0.003031517378985882, 0.01880613900721073, 0.014607621356844902, -0.006046267691999674, -0.01931586302816868, -0.008665311150252819, 0.0310931745916605, 0.006626414135098457, -0.009550620801746845, 0.01742451824247837, -0.02765924297273159, 0.0019097889307886362, -0.024735035374760628, 0.0010337005369365215, -0.021260863170027733, 0.00293259066529572, 0.023957036435604095, 0.002516763051971793, -0.01926220767199993, -0.023581448942422867, 0.010496293194591999, 0.01211265567690134, 0.02001338079571724, 0.007310517597943544, 0.003558008698746562, -0.019114656373858452, -0.008712259121239185, -0.033051587641239166, 0.012005344964563847, 0.024399690330028534, -0.017464758828282356, -0.02535207010805607, 0.009678051806986332, 0.04238758981227875, 0.01955731213092804, 0.009718293324112892, -0.019758518785238266, -0.003232724266126752, -0.026787346228957176, 0.008993948809802532, -0.06095227971673012, 0.02191813848912716, -0.005965784657746553, 0.021113311871886253, -0.01119381096214056, -0.014728345908224583, 0.024560656398534775, -0.021985208615660667, 5.386476550484076e-05, 0.004872560501098633, 0.0051106554456055164, 0.019758518785238266, -0.022602243348956108, -0.008329966105520725, -0.015157586894929409, -0.022441277280449867, 0.004476853646337986, -0.0074647762812674046, 0.007022120989859104, -0.0007289558416232467, -0.0004514580068644136, 0.00023809484264347702, 0.01627093181014061, -0.014433242380619049, -0.011743776500225067, 0.004567396827042103, 0.014621035195887089, 0.029751794412732124, -0.009107965975999832, -0.019007345661520958, 0.00617034500464797, -0.03911462426185608, -0.015680724754929543, 0.004661293234676123, 0.00132209702860564, 0.017679380252957344, -0.034661244601011276, -0.003859819145873189, 0.0005394860054366291, 0.05094558745622635, 0.0030264873057603836, -0.014446656219661236, 0.008249483071267605, -0.023876553401350975, 0.016633104532957077, 0.028383588418364525, -0.022749794647097588, -0.010382276028394699, 0.01222667284309864, -0.020831622183322906, 0.0061736986972391605, 0.03157607093453407, -0.006445327773690224, -0.030073724687099457, -0.004745129495859146, -0.035036828368902206, 0.021743759512901306, 0.004004017449915409, 0.009275638498365879, -0.026492241770029068, 0.0044466727413237095, -0.006968465633690357, 0.005583491642028093, 0.005949017591774464, 0.014782000333070755, -0.0049396296963095665, -0.016525793820619583, -0.0063413712196052074, -0.017894001677632332, -0.019839001819491386, -0.0038195778615772724, -0.0023474139161407948, 0.013936931267380714, -0.006596233230084181, 0.014862483367323875, 0.029000621289014816, 0.00013078449410386384, 0.0018041552975773811, -0.03745131194591522, 0.004178396891802549, -0.000769197242334485, -0.011408431455492973, -0.04085841402411461, 0.002729706931859255, 0.03492951765656471, -0.002712939865887165, 0.010818224400281906, 0.0073306383565068245, -0.00607309490442276, 0.006921517662703991, 0.008484224788844585, -0.008645189926028252, -0.0007524300017394125, -0.0065895263105630875, 0.008625069633126259, 0.0196243803948164, -0.008551293052732944, 0.0001122357280110009, 0.017826931551098824, 0.03230041638016701, -0.01580144837498665, 0.020724311470985413, -0.0023692112881690264, -0.002444664016366005, 0.0033500948920845985, -0.002090875059366226, -0.01130782812833786, -0.02261565625667572, 0.00265425443649292, 0.016700172796845436, 0.007035534828901291, 0.004818905610591173, 0.026706863194704056, 0.0216230358928442, -0.010221310891211033, 0.019342690706253052, 0.013910104520618916, 0.0008609978831373155, -0.0048256125301122665, 0.033266209065914154, 0.000637574412394315, 0.037397656589746475, 0.028142139315605164, 0.013977172784507275, 0.01757206954061985, 0.02787386253476143, 0.014674690552055836, 0.019141484051942825, -0.007136138156056404, 0.016606276854872704, 0.0029929527081549168, 0.004020784515887499, -0.04056331142783165, 0.011971810832619667, 0.004782017320394516, -0.03817565739154816, -0.0062139397487044334, 0.009228690527379513, -0.03393689915537834, 0.04638489708304405, 0.008323258720338345, -0.01241446565836668, -0.0019450001418590546, -0.004289060365408659, 0.02497648447751999, 0.010167655535042286, 0.01619044877588749, 0.007981207221746445, -0.013058328069746494, 0.0200804490596056, -0.004725008737295866, 0.011871207505464554, -0.016378242522478104, -0.011589517816901207, 0.029912760481238365, -0.016244104132056236, 0.030288346111774445, -0.013688776642084122, -0.029134759679436684, 0.04072427749633789, 0.00298959924839437, 0.02520451880991459, 0.0032008665148168802, -0.012783345766365528, 0.013608293607831001, 0.003916827961802483, 0.008068396709859371, 0.003423870773985982, -0.030663931742310524, -0.004778664093464613, 0.006002672482281923, -0.014379587024450302, -0.0029493579640984535, 0.020509690046310425, 0.0012868858175352216, -0.005932250060141087, -0.02154255285859108, 0.028517724946141243, -0.02009386382997036, -0.023044897243380547, 0.024426518008112907, -0.023970449343323708, -0.019919482991099358, 0.018712243065238, -0.013071741908788681, -0.020415794104337692, -0.001167000038549304, -0.014084483496844769], "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046": [-0.016299238428473473, -0.0040950654074549675, -0.004955940879881382, 0.01932411827147007, 0.008926095440983772, 0.040835872292518616, -0.026805292814970016, -0.01736604794859886, -0.012930008582770824, -0.012585658580064774, 0.01870293729007244, 0.024212539196014404, 0.012754458002746105, 0.0008828191785141826, -0.0008553892839699984, 0.006876874249428511, 0.025873521342873573, -0.0007557978387922049, 0.03459705784916878, -0.03546131029725075, 0.0018399099353700876, -0.007298871874809265, -0.00271597714163363, 0.033786822110414505, -0.0074609192088246346, 0.027183402329683304, 0.011262274347245693, -0.020255889743566513, 0.005111236125230789, -0.016582820564508438, -0.0009359908872283995, -0.0018348459852859378, 0.0035852922592312098, 0.003571788314729929, -0.022065414115786552, 0.0024425226729363203, -0.004523815121501684, -0.027088874951004982, 0.008669520728290081, 0.00680935475975275, 0.0007068461272865534, -0.012106269598007202, -0.003338845679536462, -0.00820363499224186, -0.02830422855913639, 0.0162587258964777, 0.013463414274156094, -0.03162619471549988, -0.026859309524297714, 0.004017417784780264, 0.003122782800346613, 0.02577899396419525, -0.022794626653194427, 0.002322675194591284, -0.0014238201547414064, -0.007015289273113012, 0.018959511071443558, 0.018419355154037476, 0.004122073296457529, 0.03038383275270462, 0.004429287742823362, 0.010100936517119408, 0.002800376620143652, 0.016420774161815643, -0.021984390914440155, 0.0023159233387559652, -0.02098510041832924, -0.022619076073169708, -0.013260855339467525, -0.008075348101556301, 0.05080176889896393, 0.01290300115942955, 0.00486141350120306, 0.015083884820342064, 0.013895539566874504, -0.023888444527983665, -0.013855027966201305, -0.0047837658785283566, -0.011106979101896286, 0.017784669995307922, 0.00868302397429943, -0.02746698446571827, -0.012248060666024685, 0.02197088673710823, 0.026980843394994736, -0.03186926618218422, 0.012072510085999966, 0.024185530841350555, -0.028736354783177376, -0.009027374908328056, -0.005327298771589994, 0.011235265992581844, 0.005310419015586376, 0.01459774374961853, 0.0042436085641384125, 0.009493259713053703, -0.017041955143213272, 0.013328375294804573, -0.0035650364588946104, -0.029357535764575005, -0.03211233392357826, -0.01078963652253151, -0.02860131487250328, -0.00981060229241848, -0.018216796219348907, 0.005286787170916796, 0.004226728808134794, 0.009594539180397987, 0.007649973966181278, -0.016002152115106583, -0.011532352305948734, 0.024482617154717445, -0.013281110674142838, -0.03365178406238556, -0.015975143760442734, -0.021930376067757607, 0.024658169597387314, -0.018527386710047722, -0.015799593180418015, -0.015461995266377926, -0.005600753240287304, 0.01593463309109211, 0.011586368083953857, -0.005138244014233351, -0.0015622354112565517, 0.017176993191242218, -0.007764757610857487, -0.024725688621401787, 0.012416860088706017, -0.0004346576170064509, 0.038783274590969086, 0.01754160039126873, 0.013976563699543476, -0.014314161613583565, -0.009432491846382618, 0.04804696887731552, -0.018567897379398346, -0.004726374056190252, -0.01134329754859209, -0.029438558965921402, 0.02860131487250328, 0.003980282228440046, 0.006630427669733763, -0.03816209360957146, -0.019783250987529755, 0.014233137480914593, 0.026751277968287468, 0.01736604794859886, -0.01578608900308609, 0.005020084325224161, 0.009641802869737148, -0.025130806490778923, 0.029654622077941895, -0.014044082723557949, 0.015772584825754166, -0.016177702695131302, 0.012126525864005089, -0.011424321681261063, 0.006292829290032387, -0.034380994737148285, 0.009716074913740158, 0.02889840118587017, 0.013895539566874504, -0.016731364652514458, 0.0050909798592329025, 0.028088165447115898, 0.0020897325593978167, -0.00744741503149271, -0.03041084110736847, -0.016272230073809624, 0.02625163272023201, 0.025022774934768677, -0.020134354010224342, 0.015799593180418015, -0.013949555344879627, 0.013071800582110882, 0.03281453996896744, 0.033435720950365067, -0.013949555344879627, 0.00305863912217319, -0.023712893947958946, -0.008696528151631355, 0.02402348443865776, 0.0011182938469573855, -0.015799593180418015, -0.0010448662796989083, -0.011849694885313511, -0.01535396371036768, 0.009797098115086555, -0.01192396692931652, 0.003180174622684717, 0.0066439313814044, -0.016434278339147568, -0.01620471104979515, -0.6343604326248169, -0.024847224354743958, -0.006282701622694731, -0.00833867397159338, 0.0007979976362548769, 0.006687819492071867, 0.010593829676508904, -0.005391442216932774, 0.008365682326257229, -0.005195635370910168, -0.026440687477588654, 0.011694399639964104, -0.00935146864503622, -0.03392186015844345, -0.03211233392357826, 0.011221762746572495, 0.003313525812700391, -0.010289991274476051, 0.012140029110014439, -0.01989128254354, -0.02640017494559288, -0.014516720548272133, -0.013476918451488018, -0.007103065028786659, -0.012984024360775948, 0.008561489172279835, 0.010080680251121521, 0.006610171869397163, 0.012686938047409058, 0.02978966012597084, -0.03365178406238556, 0.03224737569689751, 0.024307066574692726, 0.0384051650762558, 0.0532054677605629, -0.021322699263691902, -0.013308119028806686, 0.007987571880221367, -0.014881325885653496, 0.012666682712733746, -0.021147148683667183, -0.02247053198516369, 0.035569339990615845, 0.00439890380948782, 0.01685290038585663, -0.006731707137078047, 0.01082339696586132, -0.01860840991139412, -0.019756244495511055, 0.004496807232499123, 0.004986324813216925, -0.009081389755010605, -0.014705775305628777, 0.023145729675889015, -0.02211943082511425, 0.012936760671436787, 0.03929642587900162, 0.004959316924214363, 0.0021758200600743294, -0.0005025992286391556, 0.020377423614263535, 0.025643955916166306, -0.008426450192928314, -0.007974068634212017, -0.012936760671436787, 0.010850404389202595, -0.014449200592935085, 0.02259206771850586, 0.017190497368574142, -0.015137900598347187, 0.03165320307016373, 0.0036494359374046326, -0.003342221723869443, -0.015218924731016159, 0.013220343738794327, 0.011579615995287895, 0.03516422212123871, -0.02459064871072769, -0.004520439077168703, 0.02244352549314499, 0.001234765280969441, -0.024806711822748184, -0.030167769640684128, -0.01766313426196575, 0.026791788637638092, -0.019391637295484543, -6.377440149663016e-05, 0.015853609889745712, 0.00909489393234253, 0.0017909582238644361, 0.005739168729633093, 0.019688723608851433, 0.001961445203050971, 0.008662768639624119, 0.03429997339844704, -0.003019815543666482, -0.011221762746572495, 0.005458962172269821, 0.015407979488372803, 0.002214643871411681, -0.009803850203752518, -0.0014525160659104586, 0.013787508010864258, -0.0136592211201787, 0.0027598647866398096, -0.0006718203076161444, -0.04213224723935127, -0.013220343738794327, 0.05336751416325569, -0.01602916046977043, -0.01602916046977043, -0.012092765420675278, -0.013017784804105759, -0.00019496293680276722, 0.032949578016996384, -0.017919709905982018, 0.008257650770246983, -0.005144995637238026, 0.03359776735305786, -0.01278146542608738, 0.01729852892458439, -0.020147858187556267, 0.027521001175045967, -0.007386647630482912, 0.024009980261325836, 0.026832301169633865, 0.01602916046977043, 0.0015841793501749635, -0.019337622448801994, -0.013936051167547703, 0.009371724911034107, -0.027602024376392365, -0.0015402915887534618, 0.0072583602741360664, 0.01727152056992054, -0.018041245639324188, 0.01979675516486168, 0.012686938047409058, 0.025373876094818115, -0.02981666848063469, -0.012909753248095512, -0.005985615309327841, 0.022794626653194427, 0.0070625534281134605, -0.017636127769947052, -0.026467693969607353, -0.01590762473642826, -0.0024931624066084623, -0.017339041456580162, 0.01336213480681181, -0.0071705845184624195, -0.017622623592615128, 0.010803140699863434, 0.0007874476723372936, 0.017258016392588615, -0.018216796219348907, -0.012491131201386452, -0.0023192993830889463, 0.006431244779378176, -0.021093131974339485, 0.016272230073809624, 0.015975143760442734, -0.018621914088726044, 0.014570736326277256, 0.026143601164221764, -0.014287153258919716, -0.020350417122244835, 0.02860131487250328, -0.0025606818962842226, -0.03151816129684448, 0.011768671683967113, -0.004763510078191757, 0.007649973966181278, 0.04661555215716362, -0.021592777222394943, -0.007042297162115574, -0.020404431968927383, -0.01247087586671114, -0.008082099258899689, 0.010080680251121521, -0.007514934986829758, 0.02694033272564411, 0.008183378726243973, -0.0011368617415428162, 0.028142182156443596, 0.000341607112204656, 0.0010659662075340748, 0.020080337300896645, -0.0034418131690472364, 0.03594744950532913, 0.0010389583185315132, 0.01679888367652893, -0.019040536135435104, 0.004513687454164028, 0.02518482133746147, 0.00021595731959678233, 0.014827311038970947, 0.020228881388902664, 0.00737989554181695, 0.019108055159449577, 0.011525601148605347, 0.01932411827147007, 0.021241676062345505, -0.000889571092557162, 5.1958464609924704e-05, -0.027277929708361626, 0.009027374908328056, 0.004645350389182568, 0.026791788637638092, -0.030194777995347977, -0.009290700778365135, -0.01091117225587368, -0.0027429850306361914, -0.010114440694451332, 0.013308119028806686, 0.022511044517159462, 0.01828431524336338, -0.009473004378378391, -0.001349548576399684, -0.000122801327961497, 0.025076789781451225, -0.01332162320613861, 0.005600753240287304, -0.025724979117512703, -0.015772584825754166, -0.006103774532675743, 0.0018905496690422297, 0.04801996052265167, 0.02407749928534031, -0.02895241789519787, 0.02664324641227722, 0.005199011415243149, -0.00862225703895092, 0.016231719404459, 0.019607700407505035, 0.000406172766815871, 0.007886292412877083, -0.016596324741840363, 0.062118060886859894, -0.032301392406225204, -0.007305623963475227, -0.010256231762468815, 0.01563754677772522, -0.028547300025820732, -0.026629742234945297, 6.693938485113904e-05, 0.0014229761436581612, 0.005094355903565884, 0.019877778366208076, 0.029573597013950348, -0.012700442224740982, -0.001910805469378829, -0.021862855181097984, -0.011849694885313511, 0.030491864308714867, -0.033489737659692764, -0.01053981389850378, 0.018716441467404366, 0.017919709905982018, 0.025751987472176552, 0.012646426446735859, 0.005668272729963064, 0.022105926647782326, 0.005310419015586376, 0.04564327001571655, 0.007265112362802029, 0.0024425226729363203, 0.025751987472176552, -0.032625485211610794, -0.029546590521931648, -0.02026939205825329, -0.0069612739607691765, 0.018621914088726044, -0.005779680330306292, 0.02149824984371662, 0.005492721684277058, 0.016461284831166267, -0.007339383941143751, 0.006434620823711157, 0.015597034245729446, -0.017906205728650093, -0.04248335212469101, 0.016015656292438507, -0.007433911319822073, -0.004966068547219038, -0.02155226655304432, -0.01959419623017311, 0.013922547921538353, -0.019459156319499016, 0.04837106168270111, -0.020323408767580986, 0.01024272758513689, 0.02464466542005539, -0.012376348488032818, -0.007778261322528124, -0.007980819791555405, 0.008696528151631355, -0.02333478443324566, 0.03962051868438721, -0.009594539180397987, -0.003966778051108122, 0.006934266071766615, -0.0309509988874197, 0.011721407994627953, 0.01608317531645298, -0.012329084798693657, -0.01736604794859886, -0.021241676062345505, 0.0272644255310297, -0.021660296246409416, 0.0027699926868081093, -0.02919548749923706, -0.00827790703624487, -0.014746286906301975, 0.00857499334961176, 0.016488293185830116, -0.0025438021402806044, 0.006015998777002096, 0.02577899396419525, -0.0077445013448596, -0.011437824927270412, -0.004216600675135851, -0.01056682225316763, -0.01443569641560316, 0.08523678034543991, 0.023537343367934227, -0.01596163958311081, 0.01344991009682417, 0.0010929739801213145, 0.009884873405098915, -0.0033658535685390234, -0.018689433112740517, 0.023078208789229393, 0.0023530591279268265, 0.01670435629785061, -0.007292119786143303, 0.012659930624067783, -0.002363187028095126, 0.009905129671096802, -0.01116099487990141, -0.003686571726575494, 0.0015419794945046306, -0.01697443425655365, 0.007582454476505518, -0.0020070208702236414, 0.009101646021008492, 0.01605616696178913, 0.015326956287026405, -0.029114464297890663, -0.00639073271304369, 0.026143601164221764, 0.0012643050868064165, 0.016447782516479492, -0.00804158765822649, -0.004115321207791567, 0.023051202297210693, 0.03041084110736847, 0.015705065801739693, -0.028520291671156883, 0.002592753851786256, 0.0016930546844378114, 0.009655307047069073, 7.93355648056604e-05, 0.009128653444349766, -0.009918633848428726, -0.0015250996220856905, 0.008095603436231613, -0.005624385084956884, 0.013078552670776844, -0.010641093365848064, -0.016191206872463226, -0.012383099645376205, -0.03567737340927124, 0.0033270297572016716, 0.04283445328474045, -0.005465713795274496, -0.015502506867051125, -0.00412544934079051, 0.01566455326974392, 0.011437824927270412, -0.0034671330358833075, -0.005614257417619228, 0.006995033472776413, 0.03594744950532913, -0.012930008582770824, 0.010593829676508904, 0.0044225356541574, -0.000881131156347692, -0.027210410684347153, -0.028088165447115898, -0.03367879241704941, -0.005435330327600241, -0.019108055159449577, -0.0002494006184861064, -0.0049829487688839436, 3.6265425933379447e-06, -0.021268682554364204, 0.006343469023704529, 0.0013411086983978748, 0.00010027719690697268, 0.020404431968927383, -0.013557941652834415, 0.004750005900859833, -0.01635325513780117, -0.006039631087332964, -0.015921128913760185, 0.0035110206808894873, -0.03254446014761925, -0.00520238745957613, 0.0035042688250541687, 0.01638026162981987, 0.0024475865066051483, -0.0250362791121006, 0.007487927097827196, 0.014638255350291729, 0.011444577015936375, 0.008966607041656971, -0.008561489172279835, 0.0024661545176059008, 0.009952393360435963, 0.009067886509001255, 0.008939598686993122, 0.01744707301259041, -0.002342931227758527, 0.005502849817276001, -0.039107371121644974, -0.008662768639624119, -0.014516720548272133, 0.021862855181097984, -0.018419355154037476, 0.023145729675889015, 0.03124808520078659, -0.004895173013210297, -0.022348998114466667, 0.0077174934558570385, -0.020350417122244835, -0.0035008927807211876, -0.023658879101276398, 0.014989357441663742, 0.0012381412088871002, 0.02179533615708351, 0.017609119415283203, 0.0011545856250450015, -0.012828730046749115, -0.014408688992261887, -0.03267950192093849, 0.013240599073469639, 0.007413655519485474, -0.029654622077941895, -0.011748415417969227, 0.007015289273113012, -0.010904420167207718, 0.016960930079221725, 0.0029252879321575165, 0.006032878998667002, 0.006110526621341705, 0.022213958203792572, -0.018446363508701324, -0.038810282945632935, 0.0003709359734784812, -0.03216635063290596, 0.007798517122864723, -0.0002255577564937994, 0.010742372833192348, -0.020552976056933403, -0.0004848753451369703, -0.015678057447075844, -0.007980819791555405, -0.00816312339156866, -0.020742030814290047, -0.02402348443865776, 0.013949555344879627, 0.022254470735788345, -0.025468403473496437, 0.00020899435912724584, -0.03748689964413643, -0.048695158213377, -0.010431782342493534, -0.007481175009161234, -0.04105193540453911, 0.012538394890725613, -0.005972111131995916, 0.014786798506975174, 0.0007988415891304612, 0.03151816129684448, -0.016771875321865082, 0.023375295102596283, 0.003296645823866129, -0.022065414115786552, -0.007346135564148426, -0.012194044888019562, -0.039674535393714905, -0.042051225900650024, -0.013308119028806686, 0.041322011500597, 0.00930420495569706, 0.023685885593295097, -0.004324632231146097, 0.0018010861240327358, 0.02080954983830452, -0.003983658272773027, 0.0004633534699678421, -0.019243095070123672, -0.02553592436015606, -0.03600146621465683, 0.011059715412557125, -0.0038823788054287434, -0.005195635370910168, -0.0221464391797781, 0.003980282228440046, 0.0648188441991806, 0.009729578159749508, -0.005590625107288361, -0.026737773790955544, 0.02384793385863304, -0.024158524349331856, -0.012673434801399708, 0.012153533287346363, 0.019486164674162865, -0.0072110965847969055, 0.020471950992941856, 0.013044792227447033, 0.012383099645376205, -0.022875649854540825, 0.008433201350271702, -0.006947769783437252, -0.0007110661244951189, -0.02036391943693161, -0.021511754021048546, -0.0003776879166252911, -0.00951351597905159, -0.004179465118795633, 0.02003982663154602, -0.03651461377739906, -0.026467693969607353, -0.018567897379398346, 0.012052253820002079, -0.031086036935448647, -0.021754825487732887, 0.009047630243003368, 0.010627590119838715, 0.010384518653154373, 0.004159209318459034, -0.020971596240997314, 0.0114175695925951, -0.022781122475862503, 0.04993751645088196, 0.01276796218007803, 0.012018494307994843, 0.007427159231156111, -0.02134970761835575, -5.319808406056836e-05, 0.001725970534607768, -0.0005393130122683942, -0.01575908064842224, 0.014948845840990543, 0.027183402329683304, -0.02018836885690689, 0.007055801339447498, -0.012801721692085266, 0.008656016550958157, -0.039053354412317276, -0.04002563655376434, 0.009088141843676567, 0.005293538793921471, -0.0051821316592395306, -0.01679888367652893, -0.007926804944872856, -0.036730676889419556, 0.006640555337071419, -0.003855370916426182, 0.020377423614263535, -0.008642512373626232, -0.03808107227087021, -0.03767595440149307, -0.015286443755030632, 0.015151404775679111, 0.02541438862681389, 0.035272255539894104, -0.00879780761897564, -0.0280071422457695, -0.02224096655845642, -0.02536037191748619, -0.02244352549314499, -0.013726741075515747, 0.019310614094138145, -0.022484036162495613, -0.0059248474426567554, 0.011235265992581844, 0.007042297162115574, -0.011255522258579731, 0.0035346525255590677, -0.01462475210428238, 0.02773706428706646, 0.02538738027215004, 0.010728869587182999, 0.007798517122864723, 0.018716441467404366, 0.010870660655200481, 0.014084594324231148, -0.008176627568900585, -0.0054285782389342785, -0.006883626338094473, -0.007622966077178717, 0.0016263790894299746, 0.009891625493764877, -0.007089561317116022, -0.012281820178031921, -0.02613009698688984, -0.02033691294491291, 0.009263693355023861, -0.013004280626773834, 0.008534480817615986, -0.042375318706035614, -0.017649631947278976, 0.012511387467384338, -0.032355405390262604, 0.01662333309650421, 0.0066709392704069614, 0.02182234451174736, -0.0072583602741360664, 0.028088165447115898, -0.004878293257206678, 0.01878396049141884, -0.008102355524897575, 0.00909489393234253, -0.029411550611257553, 0.00630295742303133, 0.0028240084648132324, -0.016002152115106583, -0.002402010839432478, -0.018675928935408592, -0.02806115709245205, 0.007346135564148426, 0.004513687454164028, 0.01801423728466034, 0.001571519416756928, 0.02253805287182331, 0.029978714883327484, 0.001355456537567079, 0.006326589267700911, -0.0068701221607625484, -0.029708636924624443, 0.012565403245389462, 0.0038013551384210587, 0.0063232132233679295, 0.011917214840650558, -0.005236147437244654, 0.004182841163128614, 0.016137192025780678, 0.008791055530309677, -0.005138244014233351, -0.036190520972013474, 0.01967521943151951, -0.016366757452487946, 0.012788217514753342, 0.024239547550678253, -0.007825525477528572, -0.026764780282974243, -0.027602024376392365, -0.021174155175685883, 0.016785379499197006, 0.009709322825074196, 0.004162585362792015, 0.0035143967252224684, -0.0024222666397690773, -0.01519191637635231, -0.011316290125250816, -0.01640726998448372, -0.0025184822734445333, 0.008986862376332283, -0.026184111833572388, -0.0428614616394043, -0.009884873405098915, -0.0020981724373996258, 0.03330068290233612, 0.0014558919938281178, -0.00524627510458231, -0.00627932557836175, -0.024752696976065636, -0.033759813755750656, 0.0023783789947628975, -0.01056682225316763, 0.021835848689079285, 0.0398905985057354, 0.032274384051561356, -0.003033319255337119, 0.02553592436015606, -0.013179832138121128, -0.000562522909604013, 0.0022635955829173326, -0.010641093365848064, 0.0051787556149065495, 0.009202925488352776, -0.008480465039610863, 0.0031919905450195074, -0.020647503435611725, -0.005539985373616219, 0.008082099258899689, -0.004672358278185129, 0.005043716169893742, -0.0006009247153997421, 0.0045440709218382835, 0.006032878998667002, -0.0030957749113440514, -0.008885582908987999, -0.0034215571358799934, 0.014584239572286606, -0.011282529681921005, -0.03578540310263634, -0.021471241489052773, -0.008487217128276825, -0.004604838788509369, -0.030869973823428154, -0.013544437475502491, 0.005036964546889067, -0.012653178535401821, 0.00863576028496027, -0.033462729305028915, -0.006606795825064182, -0.03186926618218422, -0.015705065801739693, 0.03770296275615692, -0.0027851846534758806, -0.0017892702016979456, 0.04007965326309204, 0.004128825385123491, -0.034975167363882065, -0.00967556331306696, 0.014084594324231148, 0.00898011028766632, -0.024253051728010178, -0.00013377326831687242, -0.031032022088766098, 0.027426473796367645, -0.009169165976345539, 0.019999314099550247, -0.03451603278517723, 0.004473175387829542, -0.02080954983830452, 0.0070693050511181355, -0.030329817906022072, 0.027548009529709816, 0.008082099258899689, 0.015502506867051125, -0.0008499033283442259, 0.01974274031817913, -0.011957726441323757, 0.01112048327922821, -0.013787508010864258, -0.01858140155673027, 0.009608043357729912, -0.00846020970493555, 0.00215556425973773, 0.003757467493414879, -0.025549428537487984, -0.006211806088685989, -0.001206913380883634, -0.02711588330566883, 0.018932504579424858, 0.20590786635875702, -0.012322332710027695, -0.010688357055187225, 0.016285734251141548, -0.010431782342493534, -0.0008760672062635422, 0.02405049279332161, -0.022281477227807045, -0.015043373219668865, -0.022902658209204674, -0.0007093781023286283, 0.013510677963495255, -0.013179832138121128, 0.00435501616448164, 0.013368886895477772, 0.0020576606038957834, -0.03810808062553406, 0.007812021300196648, 0.0014693959383293986, -0.0589311309158802, -4.399325916892849e-05, -0.013767252676188946, -0.014017075300216675, 0.0009528707596473396, -0.000517791137099266, 0.0014921837719157338, -0.0030738310888409615, 0.00943924393504858, 0.030545881018042564, 0.002822320442646742, -0.031977295875549316, 0.0015689873835071921, -0.0013698044931516051, -0.018419355154037476, -0.0027396089863032103, 0.014030578546226025, 0.0010668101022019982, -0.0029894316103309393, 0.013206839561462402, -0.020350417122244835, -0.01667734794318676, 0.010046920739114285, 0.00891934335231781, 0.02274061180651188, -0.0029793037101626396, 0.010607333853840828, 0.001103101996704936, -0.0006030346849001944, -0.013375638984143734, 0.013017784804105759, -0.03567737340927124, 0.011269026435911655, 0.05074775218963623, 0.03195028752088547, 0.003220686223357916, -0.016569316387176514, -0.019702227786183357, 0.004402279853820801, -0.015299947932362556, 0.007541942410171032, -0.025319861248135567, 0.03165320307016373, 0.006059886887669563, 0.01593463309109211, -0.026832301169633865, -0.0005055532092228532, -0.010688357055187225, 0.0031025270000100136, 0.030032731592655182, -0.029681628569960594, 0.005415074061602354, -0.011309538036584854, -0.010499302297830582, 0.0022551557049155235, -0.02170080877840519, -0.007292119786143303, 0.00017534004291519523, -0.012619419023394585, 0.001251645153388381, 0.0050808521918952465, 0.019729236140847206, -0.0003677709901239723, 0.0192025825381279, -0.008791055530309677, -0.0033354696352034807, -0.02753450535237789, -0.0003920358431059867, -0.014962350018322468, -0.02229498140513897, 0.02172781713306904, -0.011188002303242683, -0.027683047577738762, 0.009297452867031097, -0.008716784417629242, 0.012936760671436787, -0.001010262407362461, 0.009662059135735035, 0.013760500587522984, -0.009506763890385628, -0.009770090691745281, -0.020053330808877945, -0.019337622448801994, 0.016906915232539177, 0.016960930079221725, -0.017339041456580162, -0.007386647630482912, 0.0006249785656109452, 0.005992366932332516, 0.020161360502243042, -0.005462338216602802, 0.035002175718545914, -0.011127235367894173, 0.006832986604422331, -0.016771875321865082, 0.011950974352657795, 0.015975143760442734, -0.018041245639324188, 0.0005891087930649519, -0.008750543929636478, 0.003325341735035181, 0.020971596240997314, -0.01166739221662283, 0.009871370159089565, 0.01751459203660488, -0.002228147815912962, -0.008568241260945797, -0.029978714883327484, 0.007845780812203884, 0.009500011801719666, -0.0015664553502574563, 0.011174499057233334, -0.03781099244952202, -0.0038621227722615004, 0.007049049250781536, -0.02491474337875843, 0.0147597910836339, 0.0075081828981637955, -0.022781122475862503, 0.008493969216942787, -0.015218924731016159, 0.0029337278101593256, 0.0014972478384152055, 0.010364263318479061, 0.0070625534281134605, 0.002851016353815794, 0.006063262932002544, 0.016771875321865082, -0.018068252131342888, -0.00827790703624487, -0.019391637295484543, -0.03135611489415169, 0.007548694498836994, -0.015299947932362556, -0.0052800350822508335, 0.0023834428284317255, -0.0044427914544939995, -0.01563754677772522, -0.018095260486006737, 0.0028358243871480227, 0.01222105324268341, -0.03837815672159195, -0.0038587467279285192, 0.016312742605805397, -0.009445996023714542, -0.01107321958988905, -0.008878830820322037, -0.1713378131389618, 0.02211943082511425, 0.0011267338413745165, -0.01810876466333866, 0.040889889001846313, 0.020444944500923157, 0.0294655654579401, -0.0016204711282625794, 0.010958435945212841, -0.022186949849128723, 0.019877778366208076, 0.012734201736748219, -0.03330068290233612, -0.029411550611257553, -0.0015563274500891566, 0.0013740244321525097, -0.012734201736748219, 0.020796045660972595, 0.0531514510512352, 0.008676272816956043, 0.00549947377294302, -0.015948137268424034, 0.017609119415283203, -0.0044225356541574, -0.00471962196752429, -0.004388776142150164, -0.002537050051614642, 0.03192327916622162, 0.015529515221714973, -0.019756244495511055, -0.03683871030807495, -0.005702032707631588, -0.012200796976685524, -0.029330527409911156, 0.015070381574332714, 0.017919709905982018, -0.007285368163138628, 0.00951351597905159, -0.01979675516486168, 0.011221762746572495, 0.013254103250801563, 0.012140029110014439, 0.017204001545906067, 0.001843285863287747, 0.009047630243003368, 0.045832324773073196, -0.005654769018292427, -0.008534480817615986, 0.0009528707596473396, -0.022646084427833557, 0.03130210191011429, -0.01462475210428238, 0.01091117225587368, 0.010512806475162506, 0.034408003091812134, 0.0010465543018653989, 0.014638255350291729, 0.011059715412557125, -0.01729852892458439, -0.003821610938757658, -0.006856618449091911, -0.008217139169573784, 0.002572497818619013, -0.0050403401255607605, 0.005563617683947086, -0.011755167506635189, -0.028250213712453842, 0.021066123619675636, -0.025697970762848854, 0.008169875480234623, -0.007298871874809265, 0.017352545633912086, 0.01311231218278408, -0.00027872947975993156, -0.004918804857879877, 0.009999657049775124, -0.010978692211210728, 0.0035110206808894873, 0.015097388997673988, -0.0069106342270970345, -0.026494702324271202, 0.03146414831280708, -0.01632624678313732, 0.0033050859346985817, -0.007008537650108337, -0.0015875552780926228, -0.008102355524897575, -0.015326956287026405, -0.010580325499176979, -0.0015580154722556472, 0.018216796219348907, -0.02548190765082836, 0.0031818626448512077, -0.010148200206458569, 0.013436405919492245, 0.01563754677772522, 0.008264402858912945, -0.01602916046977043, 0.007224600296467543, 0.003743963548913598, 0.004402279853820801, 0.005060596391558647, -0.01349717378616333, 0.015286443755030632, 0.03959351032972336, 0.02887139283120632, -0.01944565400481224, 0.011498592793941498, 0.026116592809557915, 0.014368177391588688, -0.0026788413524627686, 0.014543727971613407, 0.010931427590548992, -0.005999119020998478, 0.01721750572323799, 0.01563754677772522, -0.008473713882267475, -0.0280071422457695, 0.0047432538121938705, -0.018176283687353134, 0.07270513474941254, -0.007204344496130943, -0.011262274347245693, 0.010411527007818222, -0.019243095070123672, -0.05039665102958679, -0.12218352407217026, -0.010350759141147137, 0.018270811066031456, -0.0021589400712400675, -0.007913300767540932, 0.012477627955377102, 0.002613009652122855, 0.018959511071443558, -0.009594539180397987, 0.013692980632185936, -0.02202490344643593, -0.027980133891105652, -0.0022669716272503138, -0.005786432418972254, 0.026157105341553688, -0.0192025825381279, -0.003397925291210413, -0.028439268469810486, 0.004240232519805431, 0.035596348345279694, 0.02060699090361595, -0.00985786598175764, 0.028682338073849678, -0.031680211424827576, 0.017933214083313942, -0.02033691294491291, -0.009884873405098915, 0.006657435558736324, 0.02660273388028145, 0.015380971133708954, -0.011174499057233334, -0.007400151342153549, 0.029114464297890663, -0.001324228709563613, -0.020917581394314766, -0.019229590892791748, -0.03740587458014488, -0.005816815886646509, 0.026535214856266975, -0.013456662185490131, -0.0013259167317301035, -0.012437115423381329, 0.012666682712733746, -0.010215720161795616, 0.0019918291363865137, -0.004172713030129671, -0.011579615995287895, 0.014543727971613407, -0.00905438233166933, -0.006660811603069305, -0.019729236140847206, 0.007697237655520439, -0.044130828231573105, -0.002326051238924265, 0.022808130830526352, -0.020877068862318993, 0.02577899396419525, 0.0058269440196454525, -0.006333341356366873, -0.003673067782074213, -0.024536633864045143, 0.01801423728466034, -0.00219945190474391, 0.017609119415283203, 0.003507644636556506, -0.0030772071331739426, -0.01872994564473629, -0.019729236140847206, 0.027548009529709816, 0.004138953518122435, -0.022916162386536598, 0.015880616381764412, -0.018446363508701324, 0.0063130855560302734, -0.019823763519525528, -0.00020698986190836877, -0.017555104568600655, 0.0049829487688839436, 0.013260855339467525, 0.011991485953330994, -0.0037034517154097557, -0.02600856125354767, 0.016582820564508438, -0.013517430052161217, 0.018689433112740517, 0.020525967702269554, 0.00868302397429943, -0.018095260486006737, -0.0009646866819821298, -0.03637957572937012, -0.0019766371697187424, 0.02157927304506302, -0.01561053842306137, -0.010992195457220078, 0.0012330772588029504, 0.032301392406225204, 0.02746698446571827, 0.00637047691270709, -0.02021537721157074, -0.012369596399366856, -0.034678082913160324, 0.00031206727726385, -0.05844499170780182, 0.01363221276551485, -0.0012558650923892856, 0.020593486726284027, -0.0021032365038990974, -0.014057586900889874, 0.015678057447075844, -0.014314161613583565, 0.0009815666126087308, 0.014246641658246517, -0.00767698185518384, 0.01590762473642826, -0.009337964467704296, -0.012680185958743095, -0.02384793385863304, -0.015029869973659515, 0.008122611790895462, -0.007103065028786659, 0.014314161613583565, 0.002003645058721304, -0.00269403331913054, 0.003622428048402071, 0.013173080049455166, -0.004328008275479078, -0.004321256186813116, -0.0016010592225939035, 0.017784669995307922, 0.01320008747279644, -0.0038688748609274626, -0.024955255910754204, 0.007987571880221367, -0.03484012931585312, -0.005354306660592556, 0.008190130814909935, 0.010445286519825459, 0.011701151728630066, -0.01789270155131817, -0.00627932557836175, 0.006552780047059059, 0.042321301996707916, 0.001885485602542758, 0.003689947770908475, 0.01247087586671114, -0.017379552125930786, 0.010695109143853188, 0.028115173801779747, -0.008088851347565651, -0.001001822529360652, 0.021417226642370224, -0.016420774161815643, 0.010458790697157383, 0.017379552125930786, -0.006657435558736324, -0.014314161613583565, -0.008223891258239746, -0.023469822481274605, 0.02773706428706646, -0.0010473981965333223, 0.012369596399366856, -0.02417202666401863, 0.01662333309650421, -0.010715365409851074, -0.0006967181689105928, 0.003296645823866129, 0.019661715254187584, -0.004368519876152277, -0.024982262402772903, -0.020377423614263535, -0.016690852120518684, -0.01519191637635231, -0.009533771313726902, 0.004571078810840845, 0.017163489013910294, 0.01908104680478573, 0.01446270477026701, 0.020566478371620178, -0.001736942445859313, 0.00909489393234253, -0.021741321310400963, 0.009756586514413357, 0.006448124535381794, -0.004726374056190252, -0.04018768295645714, 0.0022956673055887222, 0.024091003462672234, -0.003473884891718626, 0.005570369306951761, 0.009121902287006378, 0.013125816360116005, 0.008973359130322933, 0.0021724440157413483, -0.003824986983090639, -0.01632624678313732, 0.005313795059919357, 0.02078254148364067, 0.01462475210428238, -0.019567187875509262, 0.003139662789180875, 0.025603443384170532, 0.03370580077171326, -0.01099894754588604, 0.019567187875509262, -0.005934975575655699, -0.008899087086319923, 0.009864618070423603, 0.009331212379038334, -0.006292829290032387, -0.024806711822748184, -0.0007583298138342798, 0.015975143760442734, 0.0033017098903656006, -0.0017943341517820954, 0.030032731592655182, 0.028277220204472542, -0.008048339746892452, 0.0061746700666844845, 0.008899087086319923, -0.014678767882287502, 0.004375271964818239, 0.04129500687122345, -0.0011132298968732357, 0.016596324741840363, 0.022916162386536598, 0.014719279482960701, 0.03475910425186157, 0.019985809922218323, 0.01789270155131817, 0.03146414831280708, 0.005749296396970749, 0.007055801339447498, 0.007994323968887329, 0.007703989744186401, -0.05182806774973869, 0.008865327574312687, 0.002410450717434287, -0.02835824526846409, -0.018270811066031456, 0.005067348014563322, -0.012930008582770824, 0.04342862591147423, 0.00015518964210059494, -0.02179533615708351, -0.00035785403451882303, 0.008257650770246983, 0.017933214083313942, 0.012848985381424427, 0.019337622448801994, 0.0061645423993468285, -0.01547549944370985, 0.008986862376332283, -0.012491131201386452, 0.020053330808877945, -0.006333341356366873, -0.0006477664574049413, 0.02128218673169613, 0.0075689502991735935, 0.04167311638593674, -0.008946350775659084, -0.021390218287706375, 0.03772996738553047, -0.0019158695358783007, 0.015853609889745712, 0.015461995266377926, -0.0038182351272553205, 0.003274702001363039, 0.020796045660972595, 0.008244146592915058, 0.014192625880241394, -0.02660273388028145, 0.0044833035208284855, 0.006735083181411028, -0.0069106342270970345, -0.011572864837944508, 0.0016305990284308791, -0.011329793371260166, 0.0033439097460359335, -0.03459705784916878, 0.017204001545906067, -0.004560951143503189, -0.030437849462032318, 0.016960930079221725, -0.01932411827147007, -0.017906205728650093, 0.018027741461992264, -0.0002854814229067415, -0.0026501454412937164, -0.0025809379294514656, -0.012113021686673164], "0e54bae5-ac11-4559-a33e-b44322f831cf": [-0.026456326246261597, -0.014610805548727512, -0.014557627029716969, 0.005158318672329187, -0.004978841170668602, 0.021404365077614784, -0.026469619944691658, -0.0014441298553720117, -0.002522657159715891, 0.0028384048491716385, 0.02746671810746193, 0.012038293294608593, -0.0003288345178589225, -0.0009962668409571052, 0.01087501272559166, 0.009598727338016033, 0.038022659718990326, 0.007298755459487438, 0.025711826980113983, -0.012171239592134953, 0.0041279844008386135, -0.006899916101247072, -0.0025858066510409117, 0.05700739845633507, 0.006653965450823307, 0.015860501676797867, 0.009598727338016033, -0.01881190948188305, 0.011732516810297966, -0.012457074597477913, 0.0012388939503580332, 0.0037524111103266478, -0.005381003953516483, 0.00947907567024231, -0.031029680743813515, -0.004194457549601793, -0.0055172741413116455, -0.026057487353682518, 0.009505664929747581, -0.004274225328117609, -0.004101395141333342, -0.005417564418166876, -0.008262616582214832, 0.0071059828624129295, -0.04631851240992546, 0.01782810688018799, -0.00259743956848979, -0.03669319674372673, -0.018027527257800102, 0.004958899226039648, 0.013294636271893978, 0.019835596904158592, -0.03706544637680054, 0.010569236241281033, -0.02427600510418415, 0.008023313246667385, 0.017894580960273743, 0.027573075145483017, -0.0025824829936027527, 0.029062075540423393, 0.01885179430246353, 0.0008454557973891497, 0.004450379405170679, 0.02383728325366974, -0.02985975332558155, -0.007418407127261162, -0.022401461377739906, -0.015461661852896214, -0.007139219436794519, -0.01465068943798542, 0.03491171449422836, 0.003056104527786374, -0.0021105234045535326, 0.008422152139246464, 0.018373187631368637, -0.01926392875611782, -0.019875481724739075, -0.002725400496274233, -0.018173767253756523, 0.00533779663965106, -0.0008217747090384364, -0.01895815134048462, -0.011685985140502453, 0.019303811714053154, 0.0326516255736351, -0.014225260354578495, 0.010409699752926826, 0.01631251908838749, -0.014823519624769688, -0.011440034955739975, 0.012031645514070988, 0.010801891796290874, 0.0009746630094014108, 0.008388915099203587, -0.0020091519691050053, 0.011845520697534084, -0.012570078484714031, 0.0010112232994288206, -0.0124105429276824, -0.026044191792607307, -0.034539464861154556, -0.011034548282623291, -0.018998034298419952, -0.002961380174383521, -0.024156354367733, 0.01982230320572853, 0.01345417182892561, 0.016671473160386086, 0.008415504358708858, -0.017801517620682716, 0.003709203563630581, 0.0205136239528656, -0.003533049486577511, -0.05589064955711365, -0.012576726265251637, -0.016378991305828094, 0.03554985672235489, -0.01994195394217968, -0.017522331327199936, -0.01744256354868412, 0.004573354963213205, 0.010954780504107475, -0.003230596659705043, -0.0016925734234973788, -0.005520597565919161, 0.007956840097904205, -0.004955575801432133, -0.028530288487672806, -0.012596667744219303, -0.014929876662790775, 0.04892425984144211, 0.004400524776428938, 0.013314577750861645, -0.020021721720695496, -0.023199141025543213, 0.044537030160427094, -0.013500703498721123, 0.010349874384701252, -0.017681866884231567, -0.017655277624726295, 0.015089412219822407, 0.007604531943798065, 0.0036094938404858112, -0.026030898094177246, -0.023611273616552353, 0.01745585724711418, 0.03719839081168175, 0.011446681804955006, -0.01909109763801098, 0.012583373114466667, 0.0028201246168464422, -0.019450053572654724, 0.013853010721504688, -0.02036738209426403, 0.0012613285798579454, 0.006082295905798674, 0.021165061742067337, -0.010210280306637287, -0.00333196809515357, -0.02329220250248909, 0.012776145711541176, 0.034539464861154556, 0.02317255176603794, -0.01276285108178854, -0.0011341986246407032, 0.03584234043955803, -0.004992135800421238, -0.017655277624726295, -0.029195021837949753, -0.005759901367127895, 0.011426739394664764, 0.02484767511487007, -0.021590489894151688, 0.01381312683224678, -0.012310832738876343, 0.006471164058893919, 0.028929129242897034, 0.045414477586746216, -0.024634961038827896, 0.0066174049861729145, -0.027280593290925026, -0.009784852154552937, 0.014597510918974876, -0.001337772817350924, -0.019848892465233803, 0.0015538106672465801, -0.021018819883465767, -0.022787006571888924, 0.017535625025629997, -0.010117217898368835, 0.0002650617971085012, 0.014251849614083767, -0.012623257003724575, -0.01520906388759613, -0.6389933824539185, -0.02286677435040474, -0.01401254627853632, -0.019356990233063698, 0.005105140153318644, 0.003619464812800288, 0.0061022378504276276, 0.003649377729743719, -0.00865480862557888, -0.004247636068612337, -0.030338359996676445, 0.004796040244400501, -0.00025903768255375326, -0.02008819580078125, -0.020526917651295662, 0.016791125759482384, 0.015182474628090858, -0.018732141703367233, 0.014677278697490692, -0.010894954204559326, -0.018373187631368637, -0.0015828926116228104, -0.021311301738023758, -0.006308305077254772, -0.023823987692594528, -0.0032505386043339968, 0.009851325303316116, -0.0026772073470056057, 0.004915691912174225, 0.020128078758716583, -0.02593783475458622, 0.03206666186451912, 0.031880538910627365, 0.028158038854599, 0.05254040285944939, -0.006085619796067476, -0.024887559935450554, 0.029939521104097366, 0.0024063291493803263, 0.010290048085153103, -0.012816029600799084, -0.023478327319025993, 0.030497895553708076, 0.006966389250010252, 0.008275911211967468, -0.01269637793302536, 0.02205580100417137, -0.013407641090452671, 0.011240614578127861, 0.0007262194994837046, 0.010263458825647831, -0.010449583642184734, -0.01672465167939663, 0.012636551633477211, -0.005284618120640516, 0.0223349891602993, 0.042888496071100235, -0.00648113526403904, -0.003049457212910056, 0.002524319104850292, 0.01254348922520876, 0.022906659170985222, -0.0089207012206316, -0.011546391993761063, -0.011632806621491909, 0.022693943232297897, 0.0008213592227548361, 0.018187062814831734, 0.018891677260398865, -0.008468682877719402, 0.013135100714862347, 0.009791499935090542, 0.00474286125972867, -0.016711357980966568, 0.012164591811597347, 0.003951830789446831, 0.0423567108809948, -0.028477109968662262, 0.005414240527898073, 0.02175002545118332, 0.0018978093285113573, -0.02121824026107788, -0.03055107407271862, -0.02357139065861702, 0.026256905868649483, -0.03039153851568699, 0.0034034268464893103, 0.009857973083853722, 0.0022783682215958834, 0.0013352800160646439, 0.007730830926448107, 0.009326186962425709, 0.010635709390044212, 0.0003660179500002414, 0.03400767967104912, 0.0051284059882164, -0.00648113526403904, 0.015993447974324226, 0.013533939607441425, -0.009140062145888805, -0.014690573327243328, -0.013600412756204605, -0.0009754939237609506, -0.011353619396686554, -0.018785320222377777, -0.006441251374781132, -0.04004344344139099, -0.012450426816940308, 0.03810242563486099, -0.010635709390044212, -0.008295852690935135, -0.01980900764465332, -0.013341167010366917, -0.005899494979530573, 0.024156354367733, -0.020154668018221855, 0.015860501676797867, -0.00823602732270956, 0.026256905868649483, -0.022281810641288757, 0.02342514880001545, -0.014929876662790775, 0.03108285926282406, -0.006853384897112846, 0.013985957019031048, 0.0339810885488987, 0.010216928087174892, -0.0037889713421463966, -0.0178414024412632, -0.011267203837633133, 0.006680554710328579, -0.022215336561203003, -0.001748244627378881, 0.006600786931812763, 0.01038975827395916, -0.015102706849575043, 0.00745829101651907, 0.013826421461999416, 0.02036738209426403, -0.030710609629750252, -0.015461661852896214, 0.0013194927014410496, 0.023956933990120888, 0.017641982063651085, -0.008182848803699017, -0.027386950328946114, -0.007863777689635754, 0.006487782578915358, -0.02508697845041752, 0.01661829464137554, -0.00814961176365614, -0.00850856676697731, 0.008382268249988556, 0.009505664929747581, 0.0007528087589889765, -0.006251802667975426, -0.027918735519051552, -0.008282558061182499, 0.0033170117530971766, -0.01898474059998989, 0.013653591275215149, 0.020274320617318153, -0.002928143600001931, 0.01909109763801098, 0.017349500209093094, -0.01116749458014965, -0.02831757441163063, 0.020952345803380013, -0.01563449203968048, -0.027546485885977745, 0.019981838762760162, 0.004928986541926861, 0.005484037566930056, 0.048206351697444916, -0.022095685824751854, -0.005776519421488047, -0.008807696402072906, -0.01911768689751625, 0.006737057119607925, 0.015807323157787323, -0.008462036028504372, 0.03879375010728836, 0.013460819609463215, 0.001836321665905416, 0.025991013273596764, -0.005866258405148983, 0.004766127094626427, -0.005616983864456415, 0.0024246093817055225, 0.030737198889255524, -0.00346989999525249, 0.010030803270637989, 0.009691789746284485, -0.005869581829756498, -0.00015849698684178293, 0.009306245483458042, 0.012204475700855255, 0.020832695066928864, 0.021284712478518486, 0.022800300270318985, -0.0014590863138437271, 0.02105870470404625, 0.039937086403369904, 0.004699653945863247, -0.0038288552314043045, -0.010422994382679462, 0.005693427752703428, 0.0038122369442135096, 0.031747590750455856, -0.025286398828029633, -0.009140062145888805, -0.03164123371243477, 0.003636083099991083, -0.020141374319791794, 0.009286303073167801, 0.024661550298333168, 0.016658179461956024, -0.008329089730978012, 0.007531411480158567, -0.005776519421488047, 0.02258758619427681, -0.0048126582987606525, -0.01394607312977314, -0.0223349891602993, -0.02285347878932953, -0.004161220975220203, 0.021976033225655556, 0.04334051534533501, 0.017788223922252655, -0.024103175848722458, 0.03358225151896477, -0.0023016338236629963, 0.00045326401595957577, 0.0063182758167386055, 0.022015918046236038, 0.004842571448534727, 0.016405580565333366, -0.019489936530590057, 0.029221611097455025, -0.019423464313149452, -0.007032862398773432, 0.001265483209863305, 0.020167963579297066, -0.019330400973558426, -0.015714259818196297, -0.00485254218801856, 0.012403896078467369, 0.004673064686357975, 0.03251868113875389, 0.020287614315748215, -0.021098587661981583, -0.009106826037168503, 0.0023697689175605774, -0.007916956208646297, 0.011440034955739975, -0.034114036709070206, -0.01688418723642826, 0.022281810641288757, 0.007252224255353212, 0.031215805560350418, 0.029753396287560463, 0.004161220975220203, 0.01839977689087391, 0.024781201034784317, 0.04076135531067848, -0.0017133462242782116, -0.0021238180343061686, 0.03278457373380661, -0.012849265709519386, -0.03259844705462456, -0.02802509255707264, -0.01088165957480669, 0.013494055718183517, -0.010848423466086388, 0.004912368021905422, -0.0018579254392534494, 0.013420935720205307, 0.017881285399198532, 0.015089412219822407, -0.003725821850821376, -0.01700383983552456, -0.04573354870080948, 0.01540848333388567, -0.003665996016934514, -0.009538901969790459, -0.011353619396686554, -0.020181257277727127, 0.0034017651341855526, -0.026855165138840675, 0.041931282728910446, -0.027307182550430298, 0.009944387711584568, 0.010090628638863564, -0.01758880354464054, -0.006241831928491592, 0.009226477704942226, 0.01941016875207424, -0.028503699228167534, 0.029620449990034103, -0.012889149598777294, 0.011267203837633133, 0.0024412276688963175, -0.03150828927755356, 0.01910439319908619, 0.029327968135476112, 0.0022800301667302847, -0.004237665329128504, -0.012948975898325443, 0.03190712630748749, -0.010994664393365383, -0.004855866078287363, -0.03810242563486099, -0.0027037966065108776, -0.012470369227230549, 0.01885179430246353, 0.011639454402029514, -0.0019227367592975497, 0.0068135010078549385, 0.032013483345508575, -0.013985957019031048, -0.01758880354464054, -0.006959741935133934, -0.013786537572741508, -0.0010635708458721638, 0.08668103069067001, 0.028769593685865402, -0.016378991305828094, 0.0021071997471153736, 0.0017066989094018936, -0.0025791593361645937, -0.010349874384701252, -0.01534201018512249, 0.019436758011579514, -0.012251007370650768, 0.009439191780984402, -0.0067038205452263355, 0.020473739132285118, -0.007591237314045429, 0.011606217361986637, -0.001125058624893427, -0.013048685155808926, -0.0028749650809913874, -0.02343844436109066, -0.005819727201014757, -0.01729632169008255, 0.014464564621448517, 0.01451774314045906, 0.004706301260739565, -0.021989328786730766, -0.012556783854961395, 0.03328976780176163, -0.01894485577940941, 0.029354557394981384, -0.0066107576712965965, -0.0037557347677648067, 0.03344930335879326, 0.03701226785778999, 0.02007490023970604, -0.016113098710775375, 0.005430859047919512, -0.00899382121860981, 0.014836814254522324, -0.006158740259706974, -0.0031923744827508926, 0.0007673497893847525, 0.015700966119766235, 0.004054863937199116, -0.0046365042217075825, 0.003493165597319603, -0.01540848333388567, -0.017243143171072006, -0.006255126558244228, -0.03148169815540314, -0.005400945898145437, 0.03890010714530945, -0.018492838367819786, -0.024807792156934738, -0.00404156930744648, 0.01547495648264885, 0.0033136880956590176, -0.011160846799612045, 0.013932778500020504, 0.0061088851653039455, 0.027413539588451385, 0.0008608276839368045, 0.00495225191116333, 0.01003745011985302, 0.005331149324774742, -0.027971914038062096, -0.030471306294202805, -0.027971914038062096, -0.0028018446173518896, -0.02160378359258175, 0.024089880287647247, -0.007464938331395388, -0.009020410478115082, -0.023371970281004906, 0.012530194595456123, 0.007345286663621664, 0.0006738718948327005, 0.013268047012388706, -0.003011235035955906, -0.010728771798312664, -0.01485010888427496, -0.006441251374781132, -0.02455519326031208, -0.002098890719935298, -0.023225730285048485, -0.013022095896303654, 0.004443732090294361, 0.01017039641737938, -0.008209438063204288, -0.022667353972792625, 0.013733359053730965, 0.012018350884318352, 0.016817715018987656, 0.028929129242897034, -0.002122156322002411, -0.006098914425820112, -0.003516431199386716, 0.005643573123961687, 0.006191976834088564, 0.007784009445458651, -0.001721655367873609, -8.771343709668145e-05, -0.032545268535614014, -0.003237243974581361, -0.03217301890254021, 0.013460819609463215, -0.016538526862859726, 0.019702650606632233, 0.03836832195520401, -0.011386855505406857, -0.02160378359258175, 0.004739537835121155, -0.005058608949184418, 0.005736635532230139, -0.011559686623513699, 0.0038288552314043045, 0.006670583505183458, 0.01979571394622326, 0.019011329859495163, -0.00017958146054297686, 0.013214868493378162, -0.014318323694169521, -0.024927442893385887, 0.008455388247966766, 0.0019343695603311062, -0.023465033620595932, 0.012457074597477913, 0.006780264433473349, 0.015328715555369854, 0.015820616856217384, 0.01979571394622326, 0.013161689974367619, 0.009499017149209976, 0.03640071302652359, -0.019476642832159996, -0.02972680702805519, -0.0009821412386372685, -0.015940269455313683, 0.0035862282384186983, -0.002655603690072894, 0.014464564621448517, -0.016152983531355858, -0.02245463989675045, -0.033662017434835434, -0.012988859787583351, -0.013128452934324741, -0.0263366736471653, -0.014211965724825859, 0.010708829388022423, 0.0075048222206532955, -0.008734576404094696, -0.004171192180365324, -0.025219924747943878, -0.04802022501826286, -0.00983138382434845, -0.014836814254522324, -0.03443310782313347, 0.01080853957682848, -0.018904972821474075, 0.021843086928129196, -0.002452860353514552, 0.025073684751987457, -0.003453281708061695, 0.007936897687613964, 0.00029788294341415167, -0.016671473160386086, 0.006015822757035494, -0.0012147973757237196, -0.0309499129652977, -0.02845052070915699, -0.01414549257606268, 0.036055054515600204, 0.018891677260398865, 0.017548920586705208, 0.008555098436772823, -0.002994616748765111, 0.03765041008591652, -0.002233498962596059, -0.0032704805489629507, -0.022654060274362564, -0.023611273616552353, -0.034406520426273346, 0.007770714815706015, -0.007531411480158567, 0.013354462571442127, -0.011001311242580414, 0.008428798988461494, 0.055997006595134735, -0.008322441950440407, 0.0007739971042610705, -0.01882520504295826, 0.008362325839698315, -0.016910776495933533, -0.007784009445458651, 0.011346971616148949, 0.03310364484786987, -0.015873795375227928, 0.025605469942092896, 0.008694692514836788, 0.009292950853705406, -0.012503605335950851, 0.014318323694169521, -0.017349500209093094, -0.004450379405170679, -0.014278438873589039, -0.014876698143780231, 0.009811441414058208, -0.022986426949501038, -0.00886087492108345, 0.013527292758226395, -0.01854601688683033, -0.009312892332673073, -0.007644415833055973, -0.0011375222820788622, -0.03461923450231552, -0.0324123241007328, -0.004879131447523832, 0.009984271600842476, 0.006693849340081215, 0.0021238180343061686, -0.015607902780175209, 0.02218874730169773, -0.01941016875207424, 0.04408501461148262, 0.015794027596712112, 0.016485348343849182, 0.014690573327243328, -0.011214025318622589, -0.006112209055572748, -0.0013701784191653132, -0.008342384360730648, -0.014398091472685337, 0.0196627676486969, 0.010855070315301418, -0.013773242942988873, -0.00185626361053437, -0.015235653147101402, 0.02276041731238365, -0.03422039374709129, -0.03608164191246033, 0.011865463107824326, 0.0038388262037187815, -0.0019227367592975497, -0.008189495652914047, 0.0025725120212882757, -0.03642730414867401, 0.003685937961563468, -0.009725026786327362, 0.02524651400744915, -0.013407641090452671, -0.033662017434835434, -0.02665574476122856, -0.011027900502085686, 0.024076586589217186, 0.021537311375141144, 0.029354557394981384, 0.00035293103428557515, -0.03331635892391205, -0.025844773277640343, -0.009133415296673775, -0.022002622485160828, -0.010143807157874107, 0.02315925620496273, -0.03876715898513794, 0.004596620332449675, 0.013194926083087921, 0.006946447305381298, -0.014185376465320587, 0.003237243974581361, 0.0013269708724692464, 0.028370752930641174, 0.008488625288009644, 0.0071990457363426685, 0.002145421924069524, 0.03597528487443924, -0.0014441298553720117, 0.01644546538591385, -0.0033436010126024485, -0.008648160845041275, -0.015700966119766235, 0.0028766270261257887, 0.00956549122929573, 0.018054116517305374, 0.0009563828934915364, -0.010309990495443344, -0.014597510918974876, -0.01716337539255619, 0.015395188704133034, 0.002594115911051631, -0.005068580154329538, -0.029221611097455025, -0.018359892070293427, 0.015568018890917301, -0.027307182550430298, 0.013906189240515232, 0.004453703295439482, 0.02107199840247631, -0.025499112904071808, 0.0274933073669672, -0.024900853633880615, -0.003735792823135853, -0.00823602732270956, -0.0020058283116668463, -0.02903548628091812, 0.009911151602864265, 0.007252224255353212, -0.02861005812883377, 0.004546765703707933, -0.022281810641288757, -0.02580488845705986, 0.008289205841720104, 0.013135100714862347, 0.02064657025039196, 0.007697594352066517, 0.023212434723973274, 0.029407735913991928, -0.0038853574078530073, 0.006092267110943794, -0.011054489761590958, -0.02887595072388649, 0.01910439319908619, 0.001846292638219893, -0.0004235588130541146, 0.014238554984331131, -0.007890366949141026, 0.009372718632221222, 0.017229849472641945, 0.0016983897658064961, 0.012948975898325443, -0.035922106355428696, 0.019981838762760162, -0.013287988491356373, 0.009990919381380081, 0.004686359316110611, -0.0012413866352289915, -0.013480761088430882, -0.01604662649333477, -0.014903287403285503, -0.0006747028091922402, 0.0038388262037187815, -0.0026871783193200827, 0.010449583642184734, 0.0022418079897761345, -0.01171922218054533, -0.014477859251201153, -0.01219118107110262, 0.008581687696278095, 0.010336579754948616, -0.022082390263676643, -0.046398282051086426, -0.016113098710775375, -0.006035764701664448, 0.024781201034784317, 0.009040352888405323, -0.0022118950728327036, -0.0066041103564202785, -0.014863403514027596, -0.03321000188589096, -0.006780264433473349, -0.009319540113210678, 0.020832695066928864, 0.04549424350261688, 0.02230839990079403, 0.009459133259952068, 0.021577194333076477, -0.01527553703635931, 0.006760322488844395, 0.011606217361986637, -7.566517888335511e-05, -0.004669740796089172, -0.002422947436571121, -0.010961427353322506, 0.009086883626878262, -0.02773261070251465, -0.0006069832597859204, 0.014557627029716969, -0.016711357980966568, -0.012024998664855957, 0.011074432171881199, -0.014105608686804771, 6.590192788280547e-05, 0.0029264818876981735, -0.009758262895047665, 0.01332122553139925, 0.012869208119809628, -0.009326186962425709, -0.04007003456354141, -0.013627002015709877, -0.013108511455357075, -0.009884562343358994, -0.022906659170985222, -0.012742908671498299, 0.014118903316557407, -0.016086509451270103, 0.004231018014252186, -0.03975096344947815, -0.010183691047132015, -0.0324123241007328, -0.018599195405840874, 0.04169197753071785, 0.0024711405858397484, -0.0005126743926666677, 0.02956727147102356, -0.01249695848673582, -0.01644546538591385, -0.004054863937199116, 0.010682240128517151, 0.003722498193383217, -0.020128078758716583, -0.004922339227050543, -0.03390132263302803, 0.011898699216544628, -0.01296227052807808, 0.0105891777202487, -0.023478327319025993, 0.016511937603354454, -0.018200356513261795, -0.003439987078309059, -0.034539464861154556, 0.030364949256181717, 0.013580471277236938, 0.0024030054919421673, -0.0019061184721067548, 0.010110571049153805, -0.004270901903510094, 0.008555098436772823, -0.013959367759525776, -0.008747871033847332, 0.005700075067579746, 0.005583747290074825, 0.0007565479027107358, -0.002833419246599078, -0.02789214625954628, 0.004234341438859701, 0.0005862103425897658, -0.04270237311720848, 0.0058031086809933186, 0.20516282320022583, -0.010728771798312664, -0.004835924133658409, 0.014384796842932701, -0.002843390218913555, 0.0061088851653039455, 0.03363543003797531, -0.01185216847807169, -0.024156354367733, -0.014185376465320587, -0.007777362130582333, 0.015129296109080315, -0.012563431635499, 0.00638142554089427, 0.004496910609304905, -0.008355678990483284, -0.04459020867943764, 0.0005114280502311885, -0.011054489761590958, -0.06291022151708603, 0.00947907567024231, -0.01941016875207424, -0.006607434246689081, -0.0009530592360533774, 0.0032289347145706415, 0.003616141155362129, -0.019064508378505707, -0.001049445359967649, 0.019848892465233803, 0.0001695066166575998, -0.03935212269425392, -0.012084824033081532, 0.01520906388759613, -0.009818089194595814, -0.011187436059117317, 0.0037657057400792837, -0.0018014232628047466, 0.0026157195679843426, 0.01964947208762169, -0.01941016875207424, 0.0057266647927463055, -0.004387230146676302, 0.012257654219865799, -0.0011308749672025442, 0.0024212857242673635, 0.01465068943798542, 0.0009098516893573105, -0.008462036028504372, -0.01829341985285282, 0.02329220250248909, -0.0337417870759964, 0.023664452135562897, 0.03573598340153694, 0.030497895553708076, 0.011692632921040058, -0.02177661471068859, -0.03246550261974335, 0.010177044197916985, -0.003082693787291646, 0.009944387711584568, -0.017389385029673576, 0.027027996256947517, -0.0009721702663227916, 0.018612490966916084, -0.02692163921892643, 0.011832226067781448, -0.0021753348410129547, -0.0004578340449370444, 0.027918735519051552, -0.025219924747943878, 0.01130708772689104, -0.026044191792607307, -0.023385265842080116, -0.005949349608272314, -0.027307182550430298, -0.00428419653326273, 0.012483663856983185, -0.014929876662790775, -0.0017931141192093492, 0.0084354467689991, 0.007983429357409477, -0.011759106069803238, 0.017203260213136673, 0.0002677622833289206, -0.0014973083743825555, -0.021005526185035706, -0.014305029064416885, -0.003066075500100851, -0.023225730285048485, 0.023823987692594528, -0.016219455748796463, -0.0328909307718277, -0.0024711405858397484, -0.01644546538591385, 0.01185216847807169, -0.00850856676697731, 0.027971914038062096, 0.012310832738876343, -0.00526135228574276, -0.004912368021905422, -0.011047842912375927, -0.015953563153743744, 0.016272634267807007, 0.0004065250395797193, -0.017761634662747383, 0.003479870967566967, 0.01067559327930212, 0.011267203837633133, 0.01094813272356987, -0.00607232516631484, 0.027785789221525192, -0.013241457752883434, -0.00684009026736021, -0.01911768689751625, 0.014092314057052135, 0.008707987144589424, -0.02887595072388649, -0.0022733828518539667, 0.008614924736320972, 0.004014980047941208, 0.019290518015623093, -0.01813388429582119, 0.014225260354578495, 0.01276949793100357, 0.007671005092561245, -0.016126394271850586, -0.02496732771396637, 0.008189495652914047, -0.0008188664796762168, -0.0062285372987389565, 0.002499391557648778, -0.03477877005934715, 0.013613707385957241, 0.0015396850649267435, -0.028636647388339043, 0.014039135538041592, -0.006793559063225985, -0.027386950328946114, 0.005650220438838005, -0.020035017281770706, 0.00603908859193325, -0.002422947436571121, -0.0022384843323379755, 0.0037956186570227146, 0.006547608412802219, -0.010290048085153103, 0.013400993309915066, -0.008980526588857174, 0.003961801528930664, -0.009312892332673073, -0.03387473151087761, 0.008189495652914047, -0.005474066361784935, -0.0031956981401890516, 2.6186799004790373e-05, 0.007717536296695471, -0.0027686080429702997, -0.024475425481796265, -0.008422152139246464, 0.030710609629750252, -0.03336953744292259, 0.008614924736320972, 0.021284712478518486, -0.013733359053730965, -0.01282932423055172, -0.0055039795115590096, -0.16846963763237, 0.02483438141644001, -0.005108464043587446, -0.009957682341337204, 0.028796182945370674, 0.013693475164473057, 0.02164366841316223, 0.004347346257418394, 0.009791499935090542, -0.017322910949587822, 0.024049997329711914, 0.010343226604163647, -0.039139408618211746, -0.025499112904071808, -0.012995506636798382, -0.009738321416079998, -0.011074432171881199, 0.021789908409118652, 0.0457601398229599, 0.009160004556179047, 0.000128272469737567, -0.017509035766124725, 0.02693493291735649, 0.007677652407437563, -0.001334449159912765, 0.0011981790885329247, 0.009186593815684319, 0.03709203377366066, 0.012623257003724575, -0.022428050637245178, -0.03427357226610184, 0.015700966119766235, 0.0027852263301610947, -0.03137534111738205, 0.02359797991812229, 0.015129296109080315, -0.011639454402029514, -0.01591368019580841, -0.018506133928894997, 0.009851325303316116, 0.021125176921486855, 0.000869136827532202, 0.01332787238061428, 0.0027170912362635136, -0.009206535294651985, 0.033263180404901505, 0.00048650059034116566, -0.006544284522533417, 0.012064882554113865, -0.03193371742963791, 0.012251007370650768, -0.01465068943798542, 0.0011159185087308288, 0.003699232591316104, 0.027812378481030464, 0.004340698942542076, 0.021976033225655556, 0.01913098245859146, -0.006959741935133934, -0.023504916578531265, -0.006846737582236528, 0.0075247641652822495, 0.011765752919018269, -0.011007959023118019, 0.010416347533464432, -0.005743282847106457, -0.01401254627853632, 0.02484767511487007, -0.027121057733893394, 0.013513998128473759, -0.008402209728956223, 0.013527292758226395, 0.016631590202450752, -0.016963955014944077, -0.012018350884318352, -0.01527553703635931, -0.0140790194272995, 0.025751709938049316, 0.015926973894238472, -0.018213652074337006, -0.0362943559885025, 0.034805357456207275, -0.011061137542128563, 5.0478072807891294e-05, -0.0031142686493694782, 0.002358136000111699, -0.010575883090496063, -0.022906659170985222, -0.016365697607398033, 0.001479028258472681, 0.017881285399198532, -0.023518212139606476, -0.004453703295439482, -0.016711357980966568, 0.015395188704133034, 0.02609737031161785, 0.015860501676797867, -0.020021721720695496, 0.001852939953096211, 0.0013269708724692464, -0.0003294577181804925, 0.002682192949578166, -0.02871641516685486, 0.01812058873474598, 0.03275798261165619, 0.004982165060937405, -0.02401011250913143, 0.0033070407807826996, 0.028929129242897034, 0.01603333093225956, -0.0032920842058956623, 0.02091246284544468, 0.019476642832159996, 0.005454124417155981, 0.01316833682358265, 0.019968543201684952, -0.0061088851653039455, -0.024049997329711914, 0.01414549257606268, -0.021151766180992126, 0.06338882446289062, 0.0024644932709634304, -0.010010860860347748, 0.013028743676841259, -0.007265518885105848, -0.051662955433130264, -0.10236869752407074, -0.029886342585086823, 0.012616610154509544, 0.006195300258696079, -0.015102706849575043, 0.008668103255331516, -0.003446634393185377, 0.03445969894528389, -0.010044097900390625, 0.021430954337120056, -0.023664452135562897, -0.03834173083305359, 0.004297491163015366, -0.004370611626654863, 0.01644546538591385, -0.02274712175130844, 0.0028749650809913874, -0.017402678728103638, 0.009784852154552937, 0.040123213082551956, 0.013022095896303654, -0.017668571323156357, 0.019184160977602005, -0.034406520426273346, 0.014929876662790775, -0.0007906153914518654, -0.00976491067558527, 0.008335736580193043, 0.03400767967104912, 0.01659170538187027, -0.014464564621448517, -0.00017958146054297686, 0.011180789209902287, 1.9305785826873034e-05, -0.012297538109123707, 0.0037723530549556017, -0.03775676712393761, 0.0007395141292363405, 0.021976033225655556, -0.026017602533102036, -0.0062085953541100025, -0.006022470071911812, 0.027652842923998833, -0.004227694123983383, 0.00012006718316115439, -0.005650220438838005, -0.011712574400007725, 0.01318827923387289, -0.006085619796067476, -0.01825353503227234, -0.026522798463702202, 0.010555941611528397, -0.025578880682587624, -0.00941260252147913, 0.01633910834789276, -0.012197828851640224, 0.020167963579297066, -0.010163749568164349, -0.014690573327243328, -0.008874169550836086, -0.021391069516539574, 0.014570921659469604, -0.001561288838274777, 0.01853272318840027, 0.0010353197576478124, 0.00596264423802495, -0.012603315524756908, -0.023637862876057625, 0.029354557394981384, 0.012609962373971939, -0.02065986394882202, 0.010363169014453888, -0.017894580960273743, 0.010795244947075844, -0.018891677260398865, 0.0022833538241684437, -0.021430954337120056, -0.006743704434484243, 0.013055332936346531, 0.01347411423921585, -0.012490310706198215, -0.02789214625954628, 0.006657288875430822, -0.007285460829734802, 0.007471585646271706, 0.022906659170985222, 0.015248947776854038, -0.021590489894151688, 0.004154573660343885, -0.03097650222480297, -0.007644415833055973, 0.024209532886743546, -0.014889992773532867, -0.02662915550172329, -0.00603908859193325, 0.03977755084633827, 0.03656024858355522, 0.0024777879007160664, -0.014185376465320587, -0.006358159705996513, -0.025352871045470238, -0.005450800992548466, -0.06487782299518585, 0.027865557000041008, -0.007850483059883118, 0.005886200349777937, -0.005394298583269119, -0.01591368019580841, 0.023890461772680283, -0.020619980990886688, 0.0032621712889522314, 0.005244734231382608, -0.0005326163372956216, 0.024036701768636703, -0.022773711010813713, -0.025844773277640343, -0.01980900764465332, -0.005623631179332733, 0.012330775149166584, -0.023504916578531265, 0.008342384360730648, -0.010908248834311962, 0.010755361057817936, 0.0004798532754648477, 0.023890461772680283, -0.00697303656488657, -0.0032256110571324825, -0.007591237314045429, 0.01178569532930851, 0.014371502213180065, -0.002152069238945842, -0.01564778760075569, 0.004829276818782091, -0.03539032116532326, 0.00011238122533541173, 0.012516899965703487, 0.007963486947119236, 0.029221611097455025, -0.024089880287647247, -0.00844209361821413, -0.008289205841720104, 0.039431892335414886, 0.004633180797100067, -0.0011666043428704143, 0.005906142294406891, -0.0073585812933743, 0.02580488845705986, 0.021271418780088425, -0.013906189240515232, 0.00856839306652546, 0.02887595072388649, -0.01829341985285282, 0.01703042909502983, 0.033422715961933136, -0.0007897844770923257, -0.025060389190912247, -0.00823602732270956, -0.02105870470404625, 0.03392791002988815, -0.0040315985679626465, 0.01786799170076847, -0.019729239866137505, 0.012842618860304356, -0.002170349471271038, -0.014238554984331131, -0.004290843848139048, 0.010157101787626743, -0.009472427889704704, 0.002044050255790353, -0.018572606146335602, -0.02173672989010811, -0.019317107275128365, -0.000806818250566721, -0.0016418875893577933, 0.004407172091305256, 0.014331618323922157, 0.008069843985140324, 0.018373187631368637, -0.001728302682749927, 0.0061354744248092175, -0.03278457373380661, 0.012590020895004272, -0.003938536159694195, -0.01332787238061428, -0.02914184331893921, 0.005746606737375259, 0.03414062410593033, -0.008541803807020187, -0.0026572654023766518, 0.021018819883465767, -0.003915270324796438, 0.002065654145553708, -0.0012039955472573638, 0.0014108932809904218, -0.007970134727656841, -0.00021375282085500658, 0.005201526451855898, 0.012955622747540474, -0.017894580960273743, -0.011772400699555874, 0.02424941584467888, 0.02802509255707264, 0.0009630302083678544, 0.018466249108314514, -0.010855070315301418, -0.025897951796650887, 0.0023697689175605774, 0.011692632921040058, -0.013627002015709877, -0.012423837557435036, -0.0014092314522713423, 0.006457869429141283, 0.005856287200003862, 0.0037723530549556017, 0.03331635892391205, 0.0223349891602993, -0.011692632921040058, 0.011313735507428646, 0.014929876662790775, -0.006069001276046038, 0.0037856476847082376, 0.03233255445957184, 0.009093531407415867, 0.013281341642141342, 0.0326516255736351, 0.012151297181844711, 0.028822772204875946, 0.011752458289265633, 0.01688418723642826, 0.01782810688018799, 0.004430437460541725, -0.0073585812933743, 0.003656025044620037, 0.014929876662790775, -0.06147439777851105, 0.011054489761590958, -0.00024782033869996667, -0.028663236647844315, -0.01108107902109623, 0.0089207012206316, -0.02119165100157261, 0.04823293909430504, 0.008734576404094696, -0.017641982063651085, -0.0001784389460226521, 0.016285929828882217, 0.01782810688018799, 0.010835128836333752, 0.01578073389828205, 0.023677747696638107, -0.02276041731238365, 0.014464564621448517, -0.0084354467689991, 0.011479918844997883, -0.021377775818109512, -0.006002528127282858, 0.028556877747178078, 0.004925662651658058, 0.05434847250580788, -0.007245576940476894, -0.019995132461190224, 0.039697784930467606, 0.007172456476837397, 0.03211984038352966, 0.008096433244645596, -0.0033037171233445406, 0.0003001679724548012, 0.021949443966150284, 0.010024155490100384, 0.0033934558741748333, -0.026123959571123123, 0.002145421924069524, 0.02093905210494995, -0.007990076206624508, 0.0027619607280939817, 0.004776098299771547, -0.0016792787937447429, 0.014610805548727512, -0.03501807153224945, 0.01979571394622326, 0.007910308428108692, -0.029460914433002472, 0.023358676582574844, -0.010416347533464432, -0.01554142963141203, 0.012676435522735119, -0.013906189240515232, -0.005982586182653904, -0.0028118155896663666, -0.026895049959421158], "9bc60d7e-bc1b-4217-ad63-2dc3da936675": [-0.013881655409932137, -0.017322992905974388, -0.014298994094133377, 0.005138059612363577, -0.02364465221762657, 0.03497438132762909, -0.010878182016313076, -0.002439039060845971, -0.0021414284128695726, -0.01683039590716362, 0.024068834260106087, 0.013765348121523857, 0.014873690903186798, 0.0040536620654165745, 0.006975035648792982, 0.0029555815272033215, 0.03341449052095413, 0.008579396642744541, 0.020018592476844788, -0.01480527501553297, -0.004857553169131279, 0.003978404216468334, 0.00318648642860353, 0.04039295017719269, -0.008723070845007896, 0.019101815298199654, 0.02145533263683319, -0.009331975132226944, 0.009694580920040607, -0.01221914030611515, 0.008647812530398369, 0.0006850176141597331, 0.0035405405797064304, 0.011131322011351585, -0.028680087998509407, -0.0009971667313948274, -0.0032874003518372774, -0.0284885223954916, 0.009544065222144127, -0.010269277729094028, 0.009366183541715145, -0.014408459886908531, -0.015352604910731316, 0.0004934521275572479, -0.03981825336813927, 0.01480527501553297, 0.008086799643933773, -0.015010523609817028, -0.02222159504890442, 0.007607886102050543, 0.024602480232715607, 0.028816919773817062, -0.02878955379128456, 0.012657004408538342, -0.018540801480412483, -0.002690468681976199, 0.023480454459786415, 0.021345866844058037, -0.013389058411121368, 0.014025329612195492, -0.0048746573738753796, 0.018663950264453888, -0.00045154718100093305, -0.0038826216477900743, -0.02634025365114212, -0.010638725012540817, -0.008764120750129223, 0.007607886102050543, -0.011131322011351585, -0.01948494464159012, 0.03303135931491852, 0.019101815298199654, 0.001977229258045554, 0.01111079752445221, 0.022632092237472534, -0.021811097860336304, -0.03040417842566967, -0.01730930805206299, -0.018869198858737946, 0.007867868058383465, -0.0025142969097942114, -0.01658409647643566, -0.009434599429368973, 0.017473507672548294, 0.02412356622517109, -0.00920882634818554, 0.01655673049390316, 0.01275962870568037, -0.027558062225580215, -0.024493014439940453, -0.002781120128929615, -0.004583888221532106, 0.0032634546514600515, 0.008107324130833149, -0.01605045050382614, 0.009687739424407482, -0.020798537880182266, 0.015804151073098183, -0.003995508421212435, -0.012964877299964428, -0.004535996820777655, -0.011062906123697758, -0.019950175657868385, -0.0007936283946037292, -0.03653427213430405, 0.014326361007988453, -0.0031043868511915207, 0.005302258767187595, 0.011363937519490719, -0.029720015823841095, -0.0020541977137327194, 0.020825903862714767, -0.026928631588816643, -0.06480386108160019, -0.008552029728889465, -0.015530486591160297, 0.03341449052095413, -0.02059328928589821, -0.006954510696232319, -0.01547575369477272, -0.008928319439291954, 0.021906880661845207, -0.0058051180094480515, 0.005391199607402086, 0.016707245260477066, 0.006212194450199604, -0.01600939966738224, -0.02227632887661457, -0.012875936925411224, -0.0067561035975813866, 0.04696090891957283, 0.01847238466143608, 0.006622692104429007, -0.020429089665412903, -0.009715106338262558, 0.02220791205763817, -0.022030029445886612, -0.00866833794862032, -0.024780362844467163, -0.019703878089785576, 0.018239770084619522, 0.00785418413579464, -0.0058051180094480515, -0.022604726254940033, -0.028816919773817062, 0.010932914912700653, 0.036807939410209656, 0.001408519339747727, -0.01817135326564312, 0.006595325656235218, 0.020689072087407112, -0.021003786474466324, 0.011425511911511421, -0.02681916579604149, 0.0015325237764045596, -0.0034293641801923513, 0.001365759177133441, -0.006342185661196709, -0.009078835137188435, -0.018882881850004196, 0.029665281996130943, 0.024794045835733414, 0.023206789046525955, -0.0007380401948466897, 0.007135814055800438, 0.028160125017166138, -0.004135761875659227, -0.0058051180094480515, -0.03355132415890694, -0.014818958006799221, 0.024233032017946243, 0.03231983259320259, -0.03472808375954628, 0.01221914030611515, -0.012075466103851795, 0.00692714424803853, 0.03396182134747505, 0.03127990663051605, -0.02059328928589821, 0.00752578629180789, -0.023165740072727203, -0.012102833017706871, 0.016077816486358643, 0.00408102897927165, -0.011658127419650555, 0.008736753836274147, -0.009461966343224049, 0.0017121164128184319, 0.0004613820347003639, -0.011781277135014534, 0.010139286518096924, 0.021277450025081635, -0.020456455647945404, -0.017186159268021584, -0.6388434767723083, -0.02062065526843071, -0.005719597917050123, -0.025587674230337143, -0.0044915261678397655, 0.005062801763415337, 0.008052591234445572, 0.00537067512050271, -0.012670687399804592, 0.004994385410100222, -0.028625356033444405, 0.004217861220240593, -0.007895234040915966, -0.01847238466143608, -0.024219349026679993, -0.007142655551433563, 0.010679774917662144, -0.025861339643597603, 0.007908917032182217, -0.014025329612195492, -0.008900952525436878, 0.002622052328661084, -0.010980806313455105, 0.00043551213457249105, -0.007731035351753235, -0.01739140786230564, 0.006530330050736666, -0.0036978977732360363, -0.000666203151922673, 0.030869407579302788, -0.03127990663051605, 0.02580660581588745, 0.023001540452241898, 0.02338467165827751, 0.04430635645985603, -0.019183913245797157, -0.027038099244236946, 0.029391616582870483, 0.015845201909542084, 0.0024595637805759907, -0.016953544691205025, -0.02008700743317604, 0.01822608709335327, 0.007279488258063793, 0.002497192705050111, -0.0008894111379049718, 0.031033607199788094, -0.020976418629288673, 0.012718578800559044, 0.00963984802365303, 0.00639007706195116, 0.010597676038742065, -0.0115144532173872, -0.010549784637987614, 0.006554275751113892, 0.0010749901412054896, 0.0408034473657608, -0.008688862435519695, 0.00933881662786007, 0.003150567878037691, 0.015119989402592182, 0.018280819058418274, -0.010098237544298172, -0.026504451408982277, -0.007566836196929216, 0.006725316401571035, -0.0011724833166226745, 0.02166058123111725, 0.017322992905974388, -0.0009535513818264008, 0.011220263317227364, 0.010679774917662144, -0.007388954050838947, -0.020812220871448517, 0.019963858649134636, 0.0028597989585250616, 0.024205666035413742, -0.015858884900808334, 0.0032224049791693687, 0.011288680136203766, 0.005459615960717201, -0.013867972418665886, -0.03289452940225601, -0.029172684997320175, 0.027339130640029907, -0.012506488710641861, 0.005661443807184696, 0.012793837115168571, -0.006670583505183458, 0.006889515556395054, 0.0057948557659983635, 0.016761979088187218, 0.009037785232067108, 0.0002892724296543747, 0.03418075293302536, 0.014216895215213299, 0.009981929324567318, 0.007518944796174765, 0.006626112852245569, -0.014216895215213299, 0.0010989358415827155, -0.0006974180578254163, 0.00475492887198925, -0.0017429037252441049, -0.012992244213819504, -0.009708264842629433, -0.048411332070827484, -0.011062906123697758, 0.036014311015605927, -0.005394620820879936, -0.009954563342034817, -0.005138059612363577, -0.019443895667791367, -0.0035508028231561184, 0.029117953032255173, -0.024629846215248108, 0.017405090853571892, -0.0023979891557246447, 0.022591043263673782, -0.025286642834544182, 0.021838463842868805, -0.020825903862714767, 0.020784854888916016, 0.0024595637805759907, 0.019389161840081215, 0.035165946930646896, 0.019430212676525116, -0.008476772345602512, -0.025669774040579796, -0.0216742642223835, 0.0016813291003927588, 0.0015119989402592182, 0.01848606765270233, 0.014818958006799221, 0.011521294713020325, -0.01733667589724064, 0.013245384208858013, 0.008996735326945782, 0.014572659507393837, -0.03305872902274132, -0.01896498166024685, 0.0011339992051944137, 0.018937615677714348, 0.0081278495490551, -0.0204017236828804, -0.03631534054875374, -0.019744927063584328, 0.0010980806546285748, -0.03713633492588997, 0.01629674807190895, -0.01436741091310978, -0.009154093451797962, 0.0013888496905565262, -0.0014931844780221581, 0.008107324130833149, -0.007211071904748678, -0.02194792963564396, -0.004423109814524651, -0.00039510379428975284, -0.03117043897509575, -0.010932914912700653, 0.024493014439940453, -0.013115392997860909, -0.00040237302891910076, 0.01979966089129448, 0.0002171146625187248, -0.017295625060796738, 0.030513644218444824, -0.017268259078264236, -0.04126867651939392, 0.022084763273596764, 0.00284953648224473, -0.013649039901793003, 0.05377516523003578, -0.03368815779685974, -0.004936231765896082, -0.0155989034101367, -0.003413970349356532, 1.2193324039344589e-07, 0.011692335829138756, -0.02252262644469738, 0.025847656652331352, 0.003964721225202084, -0.0028683508280664682, 0.026463402435183525, 0.000205676318728365, -0.0034191017039120197, -0.017719807103276253, -0.0021294555626809597, 0.023562554270029068, -0.004211019724607468, 0.0069031985476613045, 0.025423474609851837, 0.006937406957149506, -0.0035131738986819983, 0.012773312628269196, 0.011972841806709766, 0.023220472037792206, 0.011227104812860489, 0.009092518128454685, 0.009468807838857174, 0.008688862435519695, 0.03902462497353554, -0.0021345866844058037, 0.00054177112178877, -0.03360605612397194, 0.00191565474960953, -0.010713983327150345, 0.037546832114458084, -0.023247838020324707, -0.0018318447982892394, -0.03357869014143944, 0.0041220784187316895, -0.02765384502708912, 0.011240788735449314, 0.023685703054070473, 0.028871653601527214, 0.0038894633762538433, -0.0015684423269703984, -0.0008265537326224148, 0.009851939044892788, -0.004450476262718439, -0.0056135524064302444, -0.01165128592401743, -0.01684407889842987, -0.0023056273348629475, 0.0311978068202734, 0.03398918733000755, 0.013142759911715984, -0.0027913826052099466, 0.02628551982343197, -0.0063763936050236225, -0.007211071904748678, 0.004943073261529207, 0.02821485698223114, -0.0008723070495761931, 0.02364465221762657, -0.02089432068169117, 0.024862462654709816, -0.01818503625690937, 0.006136936601251364, 0.004936231765896082, 0.02876218780875206, -0.020415406674146652, -0.004200757015496492, 0.0019498629262670875, 0.019895443692803383, 0.008086799643933773, 0.03311346098780632, 0.031006241217255592, -0.005319362506270409, 0.0009475649567320943, -0.007347904145717621, 0.004686512518674135, 0.016597779467701912, -0.034810181707143784, -0.004642041865736246, 0.022974174469709396, 0.012369656004011631, 0.037026870995759964, 0.006465334910899401, 0.00909935962408781, 0.012889619916677475, 0.025177177041769028, 0.03823099657893181, 0.0014564107405021787, 4.3855878175236285e-05, 0.02876218780875206, -0.027215979993343353, -0.018020838499069214, -0.02253630943596363, -0.019963858649134636, 0.008380989544093609, -0.020757487043738365, 0.015927301719784737, 0.005456195212900639, 0.010967123322188854, 0.000646105851046741, 0.02363096922636032, 0.005363833159208298, -0.018075570464134216, -0.04430635645985603, 0.013970596715807915, -0.00224234233610332, -0.007245279848575592, -0.014148478396236897, -0.033195558935403824, 0.011603394523262978, -0.012800678610801697, 0.039763517677783966, -0.03366079181432724, 0.020305940881371498, 0.0058495886623859406, -0.010700300335884094, 0.0024766679853200912, -0.0021140617318451405, 0.02331625483930111, -0.01984070986509323, 0.029117953032255173, -0.009845096617937088, 6.039871368557215e-05, 0.0022679984103888273, -0.038367826491594315, 0.014476876705884933, 0.026107637211680412, -0.0046933540143072605, -0.006437968462705612, -0.02148270048201084, 0.020730121061205864, -0.007019506301730871, 0.008914636448025703, -0.020524872466921806, -0.0021893198136240244, -0.011466561816632748, 0.007204229943454266, 0.01234229002147913, -0.013662722893059254, 0.010563467629253864, 0.025040343403816223, -0.00704687274992466, -0.011794960126280785, -0.01788400486111641, -0.020524872466921806, -0.004525734111666679, 0.09665846824645996, 0.014777908101677895, -0.004943073261529207, -0.010262436233460903, 0.009119885042309761, 0.00869570393115282, -0.017829272896051407, -0.019457578659057617, 0.015352604910731316, 0.00288716540671885, 0.00045154718100093305, -0.009407233446836472, 0.02229001186788082, 0.004009191878139973, 0.008983052335679531, 0.003217273624613881, -0.009461966343224049, -0.0026117900852113962, -0.013389058411121368, 0.0013991121668368578, -0.000552461133338511, 0.01073450781404972, 0.005723018664866686, 0.007731035351753235, -0.029227418825030327, -0.011507611721754074, 0.02655918523669243, -0.005206475965678692, 0.020292257890105247, -0.016611462458968163, -0.009769839234650135, 0.02417830005288124, 0.03905199095606804, 0.028652722015976906, -0.008894111029803753, -0.0006242981762625277, -0.011870217509567738, 0.026449719443917274, -0.0012597140157595277, -0.004525734111666679, 0.016365164890885353, -0.0009244744433090091, 0.008784645237028599, -0.010241910815238953, -0.004293119069188833, -0.014887373894453049, -0.016419898718595505, 0.0020388038828969, -0.028926387429237366, 0.0020901162642985582, 0.03483755141496658, -0.013348008506000042, -0.010426634922623634, -0.006092466413974762, 0.017227210104465485, 0.009461966343224049, -0.014942106790840626, 0.002081564161926508, -0.019744927063584328, 0.0176103413105011, 0.002136297058314085, 0.007580519653856754, 0.018787099048495293, -0.0015043021412566304, -0.02335730381309986, -0.0204017236828804, -0.028433790430426598, -0.013922705315053463, -0.012349131517112255, 0.013190651312470436, -0.025902388617396355, -0.012438072822988033, -0.023713069036602974, 0.005835905205458403, 0.015256822109222412, 0.004553101025521755, 0.024000417441129684, 0.0010630172910168767, -0.006629533600062132, -0.016200965270400047, -0.01762402430176735, -0.03130727261304855, 0.024520380422472954, -0.02743491344153881, -0.013265908695757389, 0.014764225110411644, 0.007559994701296091, 0.010296644642949104, -0.025943439453840256, 0.03013051301240921, 0.00879832822829485, 0.017459824681282043, 0.03237456455826759, -0.009304609149694443, 0.003260033903643489, -0.013040135614573956, -0.005712755955755711, -0.0008988183690235019, 1.2059698747179937e-05, 0.009455124847590923, -0.007190546952188015, -0.03905199095606804, 0.0004132768663112074, -0.02280997484922409, 0.008661496452987194, -0.02520454302430153, 0.002652839757502079, 0.023973051458597183, -0.0284611564129591, -0.018499750643968582, 0.005507507361471653, -0.0102008618414402, 0.008791486732661724, -0.01180180162191391, 0.01532523799687624, 0.0013050397392362356, 0.007881551049649715, 0.015024206601083279, 0.006485859863460064, 0.008887269534170628, 0.0006290018209256232, -0.020429089665412903, -0.0019943334627896547, 0.0004613820347003639, -0.016871444880962372, 0.006841624155640602, 0.025656091049313545, -0.02445196360349655, 0.015270505100488663, 0.012698054313659668, 0.0013734560925513506, 0.001534234150312841, 0.025628723204135895, 0.0018215824384242296, -0.029418984428048134, -0.00230904808267951, 0.0006020629080012441, 0.007847342640161514, -0.00011192469537490979, 0.011767593212425709, -0.01195231731981039, -0.014435826800763607, -0.02064802125096321, -0.01342326682060957, -0.010905548930168152, -0.026654968038201332, -0.015379970893263817, 0.018362918868660927, -0.016419898718595505, -0.009065152145922184, -0.0030205771327018738, -0.02795487642288208, -0.04485368728637695, -0.006424285005778074, -0.019142864271998405, -0.03231983259320259, 0.006171145010739565, -0.011576027609407902, 0.01681671291589737, 0.00827836524695158, 0.028351690620183945, -0.003058206057175994, 0.008866745047271252, 0.008866745047271252, -0.015653636306524277, -0.0005635787965729833, -0.0011468272423371673, -0.02358992025256157, -0.04282856732606888, -0.015585219487547874, 0.039708785712718964, 0.023535186424851418, 0.011986525729298592, -0.00494649400934577, -0.007012664806097746, 0.02982948161661625, -0.007594202645123005, 0.0052098967134952545, -0.017829272896051407, -0.03639743849635124, -0.017199842259287834, -0.006865569856017828, -0.007867868058383465, 0.0020610392093658447, -0.02766752801835537, 0.002947029657661915, 0.05648444965481758, 0.0021174827124923468, 0.0005811104201711714, -0.006437968462705612, 0.013129076920449734, -0.00920882634818554, -0.006803994998335838, 0.005979579407721758, 0.02246789261698723, -0.010659250430762768, 0.017788222059607506, 0.007388954050838947, 0.013922705315053463, -0.011288680136203766, 0.007142655551433563, -0.012410705909132957, -0.006554275751113892, -0.02445196360349655, -0.021113252267241478, 0.013272751122713089, -0.019156547263264656, -0.006143778562545776, 0.015557853505015373, -0.011541820131242275, -0.014312678016722202, -0.011924950405955315, 0.00014527760504279286, -0.03450915217399597, -0.012704895809292793, -0.0034533096477389336, 0.004724141210317612, 0.002370622707530856, 0.0016086368123069406, 0.00758736114948988, 0.019895443692803383, -0.020839586853981018, 0.04452528804540634, -0.0017736910376697779, 0.025163494050502777, 0.010426634922623634, -0.002155111636966467, -0.014490559697151184, -0.0006003525340929627, -0.009530382230877876, -0.013293275609612465, 0.019170230254530907, 0.014969473704695702, 0.0007243569707497954, -0.0027417808305472136, -0.03283979743719101, 0.01328643411397934, -0.036260608583688736, -0.04011928290128708, 0.020470138639211655, 0.01570836827158928, -0.0012212299043312669, -0.01451792661100626, 0.0004797689034603536, -0.03470071777701378, 0.015078939497470856, -0.013546415604650974, 0.038395196199417114, -0.016091499477624893, -0.02416461706161499, -0.03927092254161835, -0.0048301867209374905, 0.022098446264863014, 0.04132340848445892, 0.034317586570978165, -0.009804047644138336, -0.025615040212869644, -0.005189371760934591, -0.010070870630443096, -0.00922250933945179, 0.002216686261817813, 0.026490768417716026, -0.015489436686038971, -0.00021818367531523108, 0.007546311244368553, 0.012383339926600456, -0.009427757933735847, -0.01006402913480997, 0.009708264842629433, 0.026805482804775238, 0.013813238590955734, 0.0048301867209374905, 0.005979579407721758, 0.02631288580596447, 0.010878182016313076, 0.02551925741136074, -0.0018677633488550782, 0.0034550202544778585, -0.015256822109222412, 0.01304697711020708, 0.014025329612195492, 0.022166861221194267, 1.3883686733606737e-05, -0.015024206601083279, -0.014312678016722202, -0.008285206742584705, 0.010324010625481606, 0.010501893237233162, 0.00042824289994314313, -0.0352206826210022, -0.031334638595581055, 0.012766470201313496, -0.029966313391923904, 0.014449509792029858, 0.0024287765845656395, 0.03442705422639847, -0.00841519795358181, 0.017322992905974388, -0.042445436120033264, 0.00868202093988657, -0.018267136067152023, 0.016720930114388466, -0.017692439258098602, 0.010926073417067528, 0.003923671320080757, -0.02661391720175743, 0.017692439258098602, -0.02089432068169117, -0.017432458698749542, 0.009715106338262558, 0.006609008647501469, 0.010125603526830673, 0.003715001977980137, 0.011213421821594238, 0.011726543307304382, 0.0034430474042892456, 0.011227104812860489, -0.014490559697151184, -0.017021961510181427, 0.005548557266592979, 0.01685776188969612, 0.008175740949809551, 0.018882881850004196, -0.019443895667791367, 0.022837340831756592, 0.014723175205290318, 0.010850816033780575, 0.010830290615558624, -0.024493014439940453, 0.022358426824212074, -0.004457318224012852, 0.0030530747026205063, -0.012383339926600456, -0.010460843332111835, -0.003814205527305603, -0.013546415604650974, -0.015065256506204605, 0.0028478261083364487, 0.02144164964556694, -0.00036175086279399693, 0.027872776612639427, 0.011199738830327988, -0.017459824681282043, -0.021373232826590538, -0.02415093220770359, 0.007594202645123005, 0.012588588520884514, -0.0029076901264488697, -0.03355132415890694, -0.011644444428384304, -0.008497296832501888, 0.03234719857573509, -0.004187074024230242, -0.014695808291435242, 0.0004246082971803844, -0.02279629185795784, -0.024219349026679993, -0.004279436077922583, -0.015858884900808334, 0.019662827253341675, 0.04630411043763161, 0.021222718060016632, 0.005716176703572273, 0.028078025206923485, -0.01821240410208702, -0.003752630902454257, 0.008770962245762348, 0.011049223132431507, -0.012273873202502728, -0.008032066747546196, -0.005640918854624033, 0.0054664574563503265, -0.025697140023112297, -0.009256717748939991, 0.010761874727904797, -0.009318292140960693, -0.008593079634010792, 0.004891761112958193, -0.0021209034603089094, 0.018376601859927177, -0.0009407232864759862, -0.0028580883517861366, 0.016351481899619102, 0.028899019584059715, 0.0011109086917713284, -0.037300534546375275, -0.004460738971829414, -0.006225877907127142, -0.008298889733850956, -0.020415406674146652, -0.019211281090974808, 0.01869131624698639, -0.025409791618585587, 0.0011536688543856144, -0.015681002289056778, -0.01977229304611683, -0.022125812247395515, -0.03998245298862457, 0.03853202611207962, -0.017405090853571892, 0.008613605052232742, 0.02338467165827751, -0.008435722440481186, -0.007190546952188015, -0.00677662855014205, 0.02005964145064354, 0.005011489614844322, -0.03155357018113136, -0.0012263611424714327, -0.022180546075105667, 0.01650199666619301, -0.003217273624613881, 0.0025399529840797186, -0.014846323989331722, 0.0230973232537508, -0.009516699239611626, 0.006687687709927559, -0.030021047219634056, 0.017747173085808754, 0.0176103413105011, -0.006410601548850536, -0.002497192705050111, 0.0176377072930336, -0.012814361602067947, 0.00623614015057683, -0.023713069036602974, -0.006626112852245569, 0.0016163337277248502, 0.01137762051075697, -0.004070766270160675, -0.011836010031402111, -0.024835094809532166, 0.013737981207668781, 0.006530330050736666, -0.023959368467330933, 0.009331975132226944, 0.21115988492965698, -0.009667214937508106, -0.012958035804331303, 0.029418984428048134, -0.012513330206274986, 0.006260085850954056, 0.024862462654709816, -0.009667214937508106, -0.01733667589724064, -0.0016608042642474174, -0.009995613247156143, 0.022385794669389725, -0.015872567892074585, 0.004607833921909332, 0.010173494927585125, 0.0057264394126832485, -0.05128481239080429, -0.005514348857104778, -0.009886146523058414, -0.06836150586605072, 0.020004909485578537, -0.010597676038742065, -0.008593079634010792, -0.007115289103239775, 0.007580519653856754, -0.003886042395606637, -0.011391304433345795, -0.006588484160602093, 0.02854325622320175, 0.004990964662283659, -0.03554907813668251, -0.006181407254189253, 0.017569290474057198, -0.015256822109222412, -0.012246507219970226, 0.017733490094542503, 0.0018061887240037322, 0.005640918854624033, 0.024520380422472954, -0.008613605052232742, 0.004512051120400429, -0.010939757339656353, 0.005257788114249706, 0.006328502204269171, -0.01127499621361494, 0.012698054313659668, -0.0025262697599828243, -0.005924846511334181, -0.016693562269210815, 0.02115430124104023, -0.04181600734591484, 0.01410742849111557, 0.045674681663513184, 0.034043923020362854, -0.0028016450814902782, -0.015256822109222412, -0.018937615677714348, 0.01083713211119175, -0.006475597154349089, 0.010111920535564423, -0.002555346582084894, 0.015106306411325932, 0.002235500607639551, 0.027284396812319756, -0.01953967846930027, 0.007895234040915966, -0.009030943736433983, -0.0019413108238950372, 0.017268259078264236, -0.011576027609407902, -0.0019413108238950372, -0.024807728826999664, -0.003100966103374958, -0.006106149405241013, -0.013512207195162773, -0.00011021428508684039, 0.004375218413770199, -0.018335552886128426, -0.00590774230659008, 0.009865622036159039, 0.0050764852203428745, -0.014750541187822819, 0.007108447607606649, 0.00025463668862357736, -0.0026117900852113962, -0.01114500593394041, -0.004994385410100222, -0.0025040344335138798, -0.03204616904258728, 0.034645985811948776, -0.02090800367295742, -0.03639743849635124, 0.003646585624665022, -0.011151847429573536, -0.0036397441290318966, -0.023822534829378128, 0.014777908101677895, 0.005309100262820721, 7.285260653588921e-05, 0.003844992723315954, -0.009311450645327568, -0.020237524062395096, 0.011240788735449314, 0.008093641139566898, -0.023398354649543762, -0.009701423346996307, 0.012670687399804592, 0.018581850454211235, 0.004744666162878275, -0.0051004309207201, 0.027298079803586006, -0.024766679853200912, -0.01818503625690937, -0.029501082375645638, -0.0013426687801256776, 0.012615954503417015, -0.023439403623342514, -0.016064133495092392, 0.005483561661094427, 0.0024475909303873777, 0.019047081470489502, -0.008353622630238533, 0.011904425919055939, -0.001211822615005076, 0.0010672933422029018, -0.0216879490762949, -0.011439195834100246, 0.012527014128863811, -0.005989842116832733, -0.009550907649099827, 0.0163241159170866, -0.04830186441540718, 0.01247228030115366, 0.002492061583325267, -0.03957195207476616, 0.020798537880182266, -0.0016633698251098394, -0.02634025365114212, 0.025012977421283722, -0.01871868409216404, 0.01141182892024517, -0.012814361602067947, 0.009263559244573116, 0.011849693022668362, 0.016214648261666298, -0.01083713211119175, 0.012273873202502728, -0.013621673919260502, 0.005692231468856335, -0.018267136067152023, -0.025820288807153702, 0.012999085709452629, -0.00356106529943645, -0.012602271512150764, 0.005989842116832733, -0.005842747166752815, 0.004419689066708088, -0.026709700003266335, -0.00989298801869154, 0.03429022058844566, -0.027489645406603813, 0.02112693525850773, 0.022604726254940033, -0.006047995761036873, -0.02011437527835369, -0.0011160399299114943, -0.17536450922489166, 0.02687389962375164, 0.009578273631632328, -0.00785418413579464, 0.030869407579302788, 0.019580727443099022, 0.016228333115577698, 0.007293171249330044, 0.005103851668536663, -0.013272751122713089, 0.02636761963367462, 0.007943125441670418, -0.02389095164835453, -0.007546311244368553, -0.011343413032591343, -0.005281733814626932, -0.01397743821144104, 0.019868075847625732, 0.034892283380031586, 0.020689072087407112, 0.004539417568594217, -0.01655673049390316, 0.014121112413704395, 0.017035644501447678, 0.010406110435724258, 0.0054664574563503265, -0.006762945558875799, 0.02172899805009365, 0.007566836196929216, -0.02229001186788082, -0.012410705909132957, 0.02059328928589821, 0.004378639627248049, -0.02086695283651352, 0.03344186022877693, 0.01070714183151722, -0.002180767711251974, -0.023562554270029068, -0.01451792661100626, 0.0024048308841884136, 0.022139495238661766, 0.0014102297136560082, 0.015653636306524277, 0.001012560329400003, -0.012212298810482025, 0.039790887385606766, 0.002522848779335618, -0.0019327588379383087, 0.013115392997860909, -0.022125812247395515, 0.008572555147111416, -0.001996043836697936, 0.00935934204608202, 0.0055246115662157536, 0.027544379234313965, 0.004361535422503948, 0.01844501867890358, 0.0028649300802499056, -0.007792609743773937, -0.02738017961382866, 0.0019738085102289915, 0.0030308393761515617, 0.014340043999254704, -0.01927969604730606, -0.0017600078135728836, 0.012013891711831093, -0.006721895653754473, 0.013621673919260502, -0.030267344787716866, 0.02115430124104023, 0.0034550202544778585, 0.014271628111600876, 0.024274082854390144, -0.013820081017911434, -0.007778926752507687, -0.022577360272407532, -0.011883901432156563, 0.021332183852791786, 0.008983052335679531, -0.01396375522017479, -0.034810181707143784, 0.0434306301176548, -0.01083713211119175, -0.011596553027629852, 0.0008564857998862863, 0.015421020798385143, -0.01927969604730606, -0.02854325622320175, -0.022481577470898628, -0.0006204497767612338, 0.012048100121319294, -0.02363096922636032, -0.002923083957284689, -0.014600025489926338, 0.01977229304611683, 0.01951231248676777, 0.012431231327354908, -0.02227632887661457, 0.00937302503734827, 0.007416320499032736, 0.010645567439496517, -0.007826818153262138, -0.025040343403816223, 0.02930951677262783, 0.029528450220823288, 0.017514558508992195, -0.00937302503734827, 0.0014401618391275406, 0.02930951677262783, 0.018636584281921387, -0.012020733207464218, 0.015243138186633587, 0.024862462654709816, 0.00596931716427207, 0.014942106790840626, 0.010460843332111835, -0.004108395427465439, -0.02059328928589821, 0.011425511911511421, -0.03694476932287216, 0.05779803916811943, 0.00251258653588593, 0.0010698590194806457, 0.005815380252897739, -0.0013905600644648075, -0.04009191691875458, -0.11515821516513824, -0.019991226494312286, 0.007833659648895264, 0.005870113614946604, -0.009735630825161934, 0.004221281968057156, -0.016693562269210815, 0.022974174469709396, -0.00011801801883848384, 0.011357096023857594, -0.016638830304145813, -0.028078025206923485, -0.002033672761172056, -0.004039979074150324, 0.014641075395047665, -0.013888496905565262, -0.00311978068202734, -0.00623956136405468, 0.007293171249330044, 0.03576800972223282, 0.011268154717981815, -0.017021961510181427, -0.006099307909607887, -0.03423548862338066, 0.026422351598739624, 0.00433416897431016, -0.0189512986689806, 0.004512051120400429, 0.032949261367321014, 0.026449719443917274, -0.011883901432156563, -0.0009373024804517627, 0.020210158079862595, 0.004642041865736246, 0.0014589763013646007, -0.010926073417067528, -0.03141673654317856, -0.010659250430762768, 0.016077816486358643, -0.024096200242638588, -0.0023928580339998007, 0.0003087282821070403, 0.015804151073098183, -0.006123253609985113, 0.007231596857309341, -0.010932914912700653, -0.02148270048201084, 0.010385585017502308, 0.002697310410439968, -0.030267344787716866, -0.02709283120930195, 0.012020733207464218, -0.04104974493384361, -0.012944352813065052, 0.024369865655899048, -0.0006362710264511406, 0.017541924491524696, 0.004806241020560265, -0.02553294040262699, -0.01873236708343029, -0.01706301048398018, 0.014709492214024067, -0.0010561756789684296, 0.016091499477624893, 0.0052235801704227924, 0.0017651390517130494, -0.021113252267241478, -0.019156547263264656, 0.037081602960824966, 0.010536100715398788, -0.010152970440685749, 0.013389058411121368, -0.026969682425260544, 0.009201984852552414, -0.013566941022872925, -0.00704687274992466, -0.020415406674146652, -0.01981334388256073, 0.018308186903595924, 0.0025433737318962812, -0.012116516008973122, -0.025149811059236526, 0.0052783130668103695, -0.002873482182621956, 0.02338467165827751, 0.017268259078264236, 0.011302363127470016, -0.015119989402592182, 0.0020114374347031116, -0.03935302048921585, 0.010967123322188854, 0.02497192844748497, 0.002688758308067918, -0.02716124802827835, 0.0011040670797228813, 0.0379846952855587, 0.03820363059639931, -0.0017873742617666721, -0.028351690620183945, -0.01153497863560915, -0.018362918868660927, 0.0030975453555583954, -0.05538978800177574, 0.03694476932287216, -0.00923619233071804, 0.0022440527100116014, -0.019854392856359482, -0.02060697227716446, 0.022987857460975647, -0.02062065526843071, -0.00826468225568533, 0.00036923389416188, -0.004707037471234798, 0.01395691279321909, -0.014025329612195492, -0.015585219487547874, -0.016912493854761124, -0.0004861829220317304, -0.007224754896014929, -0.020456455647945404, 0.007813135161995888, -0.008469930849969387, -0.002235500607639551, -0.012267031706869602, 0.02609395422041416, -0.004713878966867924, -0.017268259078264236, -0.002413382986560464, 0.011877059005200863, 0.020018592476844788, -0.004973860923200846, -0.013443791307508945, 0.026696017012000084, -0.03300399333238602, -0.011603394523262978, 0.005688810255378485, 0.01480527501553297, 0.025601357221603394, -0.02556030824780464, -0.0018061887240037322, -0.00854518823325634, 0.04143287613987923, 0.002984658582136035, -0.0029128214810043573, 0.0122054573148489, -0.006082203704863787, 0.022714192047715187, 0.024027783423662186, -0.012752787210047245, -0.004450476262718439, 0.022194229066371918, -0.00868202093988657, 0.006013787351548672, 0.03508384898304939, 0.013293275609612465, -0.03502911701798439, -0.004156286828219891, -0.03149883821606636, 0.044114790856838226, -0.0004742100718431175, 0.007689985446631908, -0.027804359793663025, 0.0019515733001753688, 0.001116895116865635, -0.011199738830327988, -0.0021209034603089094, 0.011719701811671257, -0.003400287125259638, 0.015653636306524277, -0.0162830650806427, -0.022632092237472534, -0.018540801480412483, 0.01410742849111557, 0.0050867474637925625, -0.00040622142842039466, -0.006602167151868343, 0.015393653884530067, 0.0257929228246212, 0.011391304433345795, 0.002562188310548663, -0.026955999433994293, 0.007388954050838947, -0.004860973916947842, -0.02410988323390484, -0.03582274541258812, 0.006626112852245569, 0.027311762794852257, -0.0016804739134386182, -0.011794960126280785, 0.011213421821594238, -0.005350150167942047, -0.001565021462738514, 0.0036329024005681276, -0.006352447904646397, -0.009721947833895683, -0.0011254472192376852, 0.010755033232271671, 0.013580624014139175, -0.00650638435035944, 0.009633006528019905, 0.016898810863494873, 0.02628551982343197, -0.0050764852203428745, 0.006075362209230661, 0.0021636635065078735, -0.028981119394302368, -0.00488834036514163, 0.005507507361471653, -0.01848606765270233, -0.014846323989331722, -0.011993367224931717, 0.009872463531792164, -0.0022577359341084957, 0.00718370545655489, 0.03330502659082413, 0.02200266346335411, -0.015078939497470856, 0.013395899906754494, 0.014572659507393837, -0.009783522225916386, 0.003388314275071025, 0.045455750077962875, 0.010235069319605827, 0.0324840322136879, 0.01896498166024685, 0.006212194450199604, 0.012041258625686169, 0.01787032186985016, 0.013806397095322609, 0.022618409246206284, 0.0029863689560443163, 0.010823449119925499, 0.008880428038537502, 0.008250998333096504, -0.04323906451463699, -0.002468115882948041, 0.0013948361156508327, -0.03721843659877777, -0.014285311102867126, -0.0012511620298027992, -0.047097738832235336, 0.0326482318341732, 0.012431231327354908, -0.014134795404970646, -0.013943229801952839, 0.009619323536753654, 0.028132759034633636, 0.0015983744524419308, 0.0037731556221842766, 0.01651567965745926, -0.00773787684738636, -0.005986420903354883, -0.013389058411121368, 0.010878182016313076, -0.024055149406194687, -0.024794045835733414, 0.025177177041769028, -0.012533855624496937, 0.022071078419685364, -0.007778926752507687, -0.02798224240541458, 0.04233596846461296, 0.005066222511231899, 0.028296956792473793, 0.00326174427755177, -0.002119193086400628, -0.0010134155163541436, 0.004084449727088213, 0.00937302503734827, 0.0059180050157010555, -0.028269590809941292, -0.011343413032591343, -0.004566784016788006, -0.018267136067152023, -0.000676893163472414, 0.02658655121922493, -0.0035508028231561184, 0.007176863495260477, -0.014860007911920547, 0.028105391189455986, 0.005189371760934591, -0.03576800972223282, 0.02688758261501789, -0.012048100121319294, -0.016761979088187218, 0.013683248311281204, 0.001237478805705905, -0.022659458220005035, -0.0027896722313016653, -0.030568376183509827], "90cca82e-664f-445b-bd5f-04c51061ca74": [-0.003097923006862402, -0.02000720240175724, 0.0005744607769884169, 0.012780451215803623, -0.02329776994884014, 0.035404834896326065, -0.005883450619876385, -0.02257578819990158, -0.010302112437784672, -0.022173145785927773, 0.02525544911623001, 0.01343995239585638, 0.013287225738167763, -0.0016149117145687342, 0.0041999854147434235, 0.005647418089210987, 0.03807061165571213, 0.005637004971504211, 0.03359988331794739, -0.02414470911026001, -0.009580131620168686, 0.0039431266486644745, -0.002053133212029934, 0.04079192131757736, -0.009233025833964348, 0.01648060418665409, 0.019715633243322372, -0.012009874917566776, 0.01556424330919981, -0.014689534902572632, 0.0006859686691313982, 0.010100791230797768, 0.00347973988391459, -0.008059806190431118, -0.0425691083073616, -0.0035682518500834703, -0.0033009801991283894, -0.03398863971233368, 0.019410179927945137, -0.0025668505113571882, 0.0058903926983475685, -0.012593013234436512, -0.015994654968380928, 0.005421799141913652, -0.0490669347345829, 0.015314326621592045, 0.005085106007754803, -0.019437948241829872, -0.012454170733690262, 0.025283217430114746, 0.028990311548113823, 0.012947062030434608, -0.0376540832221508, 0.00808063242584467, -0.0038910608272999525, -0.004328414332121611, 0.012856814078986645, 0.022659093141555786, -0.00854575540870428, -0.0013059871271252632, -0.0010074757738038898, 0.014300776645541191, 0.014210528694093227, -0.003337426343932748, -0.026227345690131187, -0.020881909877061844, 0.0001251751818927005, 0.005407914984971285, -0.019021421670913696, -0.019854474812746048, 0.03310004994273186, 0.022561904042959213, 0.0011801611399278045, 0.010982440784573555, 0.0201738141477108, -0.03040650486946106, -0.027532465755939484, -0.008059806190431118, -0.020756952464580536, 0.005168411415070295, -0.004040316212922335, -0.028907006606459618, 0.0047032893635332584, 0.01917414739727974, 0.026366189122200012, -0.004505438730120659, 0.02281182073056698, 0.017896797508001328, -0.02296454831957817, -0.02558867074549198, 0.0011541282292455435, 0.00866377167403698, -0.006848405580967665, 0.01648060418665409, -0.0033027157187461853, 0.01078111957758665, -0.028962543234229088, 0.0188270416110754, -0.004654694348573685, -0.01749415323138237, -0.016952667385339737, -0.0035196570679545403, -0.022048186510801315, -0.009239967912435532, -0.03934796154499054, 0.0022023890633136034, 0.001427474315278232, 0.004550562705844641, 0.011024093255400658, -0.02957344986498356, -0.011579463258385658, 0.039986636489629745, -0.018479935824871063, -0.05298229306936264, -0.011267067864537239, -0.020437614992260933, 0.02564420737326145, -0.018743736669421196, -0.01132260449230671, -0.013433010317385197, -0.012759624980390072, 0.014245239086449146, -0.00628609349951148, 0.0013164003612473607, 0.007108735386282206, 0.01642506569623947, -0.0032680050935596228, -0.02336719073355198, -0.004238166846334934, -0.0070705534890294075, 0.040153246372938156, 0.021229015663266182, 0.003769573522731662, -0.013613506220281124, -0.003602962475270033, 0.017480269074440002, -0.02553313411772251, -0.0013537142658606172, -0.017535805702209473, -0.015953002497553825, 0.013953669928014278, 0.013807885348796844, -0.004977503325790167, -0.01095467247068882, -0.024005865678191185, 0.020326539874076843, 0.017147047445178032, 0.00214511645026505, -0.022672977298498154, 0.019660096615552902, 0.02331165410578251, -0.018535472452640533, 0.012051528319716454, -0.015550358220934868, 0.020992984995245934, -0.015328210778534412, 0.0024019749835133553, -0.0013797471765428782, 0.0062513831071555614, -0.0088581508025527, 0.021756617352366447, 0.029656754806637764, 0.021367859095335007, -0.003922300413250923, 0.002880981657654047, 0.029545681551098824, -0.001551564782857895, -0.01671663485467434, -0.03173939138650894, -0.026532799005508423, 0.018993651494383812, 0.04612347483634949, -0.03618235141038895, 0.004880313295871019, -0.03707094490528107, -0.0022995786275714636, 0.04720644652843475, 0.028309984132647514, -0.0337664932012558, 0.007594684138894081, -0.03398863971233368, -0.0012547889491543174, 0.03426632657647133, 0.004543620627373457, -0.01631399244070053, -0.004279819782823324, -0.015966886654496193, -0.011759958229959011, 0.014245239086449146, -0.005775847472250462, 0.0020635465625673532, 0.010545087046921253, -0.009149719960987568, -0.030656421557068825, -0.634454607963562, -0.01861877739429474, -0.011385084129869938, -0.019201915711164474, -0.01383565366268158, -0.00767104746773839, 0.013912017457187176, 0.004068084992468357, -0.01050343457609415, 0.007101793307811022, -0.023214463144540787, 0.014175818301737309, -0.0035196570679545403, -0.02531098574399948, -0.02068752981722355, -0.013252515345811844, 0.005942458286881447, -0.028018413111567497, -0.0008755754097364843, -0.020423730835318565, 0.004318001214414835, 0.0054599810391664505, -0.0037244497798383236, 0.01561977993696928, -0.005914689972996712, -0.014286891557276249, 0.00838608667254448, 0.0073517095297575, -0.005112874787300825, 0.038820359855890274, -0.026671642437577248, 0.015939118340611458, 0.027712959796190262, 0.02442239411175251, 0.056703273206949234, -0.022992316633462906, -0.024130824953317642, 0.010496492497622967, 0.01271102949976921, 0.012495824135839939, -0.011114341206848621, -0.016466718167066574, 0.01456457655876875, 0.012502766214311123, 0.005178824998438358, -0.0008126624161377549, 0.024936111643910408, -0.02481115236878395, 0.01371763739734888, 0.022034302353858948, 0.015897464007139206, 0.004002134781330824, -0.012815161608159542, -0.008483275771141052, -0.018354976549744606, -0.008684597909450531, 0.04706760495901108, -0.008094516582787037, 0.008767902851104736, 0.00634510163217783, -0.0008278483292087913, 0.02503330074250698, -0.0006473531248047948, -0.02279793657362461, -0.010413186624646187, 0.006112540606409311, -0.015439284965395927, 0.015855811536312103, 0.021534468978643417, -0.002573792589828372, 0.0027594943530857563, 0.013495489954948425, 0.010128559544682503, -0.022311987355351448, 0.020201582461595535, 0.013419126160442829, 0.033294428139925, -0.0014092512428760529, 0.00035144505091011524, 0.010989382863044739, 0.004293703939765692, -0.016688866540789604, -0.023617107421159744, -0.014467387460172176, 0.022228682413697243, -0.012877640314400196, -0.001287764054723084, 0.03362765163183212, 0.014016149565577507, 0.01520325243473053, 0.01500887330621481, 0.01614738069474697, 0.004463785793632269, -0.0009961948962882161, 0.030989643186330795, 0.018257787451148033, -0.004033374134451151, 0.003399905515834689, 0.012037643231451511, -0.017299773171544075, 0.013488547876477242, -0.01142673660069704, 0.005876508075743914, -0.0064665889367461205, -0.008781787008047104, -0.005716839339584112, -0.05353766307234764, 0.003215939039364457, 0.043235551565885544, -0.03373872488737106, -0.0014404908288270235, -0.01588357985019684, -0.020368192344903946, -0.0022579259239137173, 0.015855811536312103, -0.0191047266125679, 0.017646880820393562, -0.0001836408773669973, 0.02113182656466961, -0.017480269074440002, 0.021090174093842506, -0.015716969966888428, 0.007518320810049772, -0.013321937061846256, 0.023158926516771317, 0.038986969739198685, 0.01109351497143507, -0.0062479120679199696, -0.019215799868106842, -0.015578127466142178, 0.00500180060043931, -0.015411515720188618, 0.007240635808557272, 0.011065746657550335, 0.010239633731544018, -0.02420024573802948, 0.023825371637940407, 0.012197312898933887, 0.012606898322701454, -0.030934106558561325, 0.0020271004177629948, 0.0027265192475169897, 0.011537810787558556, 0.0040437872521579266, -0.012204254977405071, -0.022339755669236183, -0.016619445756077766, 0.002887923736125231, -0.03398863971233368, 0.007691873703151941, -0.0019333816599100828, -0.00739336246624589, -0.0017181758303195238, -0.0022284218575805426, -0.003403376555070281, -0.011794669553637505, -0.027754614129662514, 0.0009189636912196875, -0.0016079695196822286, -0.03682102635502815, -0.01178772747516632, 0.013016482815146446, -0.013849537819623947, 0.008337491191923618, 0.023547686636447906, -0.0019004065543413162, -0.01022574957460165, 0.03762631490826607, 0.001405780203640461, -0.05159386992454529, 0.0307952631264925, -0.0033704014495015144, 0.0019420592579990625, 0.053121134638786316, -0.019965549930930138, 0.014397965744137764, -0.02028488740324974, 0.0027577588334679604, -0.00424857996404171, 0.008747076615691185, -0.02281182073056698, 0.008052864111959934, 0.0015914819668978453, -0.01271102949976921, 0.031072948127985, -0.016841594129800797, -0.0022544548846781254, 0.009094183333218098, 0.013377473689615726, 0.032433606684207916, -0.00314304674975574, 0.003500566119328141, -0.004359654150903225, 0.0042694066651165485, -0.009961948730051517, -0.0037556893657892942, 0.026060735806822777, 0.03734862804412842, 0.015092178247869015, 0.0069976611994206905, 0.014036975800991058, 0.0057480791583657265, 0.029184691607952118, 0.0005067751044407487, -0.0032714761327952147, -0.024658426642417908, 0.0015272673917934299, -0.008788729086518288, 0.03704317659139633, -0.005980640184134245, -0.002238835208117962, -0.024061402305960655, -0.0021642071660608053, -0.013877307064831257, 0.016466718167066574, 0.017924565821886063, 0.007858484983444214, 0.0028306511230766773, -0.009003935381770134, 0.0032697406131774187, 0.015092178247869015, -0.004873371217399836, 0.004491554573178291, -0.007192040793597698, -0.010697813704609871, -0.00832360703498125, 0.022311987355351448, 0.033960871398448944, 0.008552697487175465, -0.005845268722623587, 0.02111794240772724, 0.00039613497210666537, -0.0094135208055377, 0.0026761889457702637, 0.017521921545267105, -0.003693210193887353, 0.018091175705194473, -0.0166055615991354, 0.034460704773664474, -0.03723755478858948, 0.0027056930121034384, 0.0019646212458610535, 0.026963211596012115, -0.029989976435899734, -0.012599955312907696, 0.010795003734529018, 0.02302008494734764, -0.0005171882803551853, 0.020048854872584343, 0.014883914962410927, -0.010135501623153687, 0.0032784182112663984, -0.011378142051398754, -0.0030875098891556263, 0.0163278765976429, -0.039820026606321335, -0.006723447237163782, 0.01592523418366909, 0.01411333866417408, 0.02726866491138935, 0.024408509954810143, -0.001332020154222846, 0.022659093141555786, 0.013078962452709675, 0.048317186534404755, -0.003071889979764819, -0.004220811650156975, 0.026907674968242645, -0.03504384309053421, -0.009996659122407436, -0.02503330074250698, -0.018299439921975136, 0.017355311661958694, -0.000665576197206974, 0.015411515720188618, 0.00047770494711585343, 0.02504718489944935, -0.0043006460182368755, 0.015508705750107765, -0.002429743530228734, -0.017521921545267105, -0.04817834496498108, 0.01575862243771553, 0.0008981373393908143, -0.0021104058250784874, -0.010822772048413754, -0.024894457310438156, 0.00025881108012981713, 0.002353380201384425, 0.04920577630400658, -0.02549147978425026, 0.016397297382354736, 0.015161599963903427, -0.010434012860059738, 0.00280808936804533, 0.02118736319243908, 0.011079630814492702, -0.029545681551098824, 0.024228014051914215, 0.0035040373913943768, -0.017077626660466194, -0.001069954945705831, -0.034349631518125534, 0.010822772048413754, 0.029018079861998558, 0.004685934167355299, 0.012093180790543556, -0.012225081212818623, 0.014994988217949867, -0.02135397493839264, -0.0024609831161797047, -0.031545013189315796, -0.005973698105663061, -0.010878308676183224, 0.009239967912435532, 0.013099788688123226, -0.011100457049906254, 0.010760292410850525, 0.027754614129662514, -0.0092538520693779, -0.013370531611144543, -0.011884916573762894, -0.016966551542282104, 0.005428741220384836, 0.0953570231795311, 0.024103056639432907, -0.014661766588687897, 0.0053176674991846085, 0.0034658554941415787, 0.01164888497442007, -0.02106240577995777, -0.03229476138949394, 0.03729309141635895, -0.007455841638147831, 0.006306920200586319, -0.013946727849543095, 0.01031599659472704, -0.004786594770848751, 0.0070705534890294075, 0.0008217739523388445, -0.012114007025957108, 0.00767104746773839, 0.00032302571344189346, 0.006171548739075661, -0.003689739154651761, 0.009718974120914936, 0.010343764908611774, 0.025338754057884216, -0.038820359855890274, -0.01022574957460165, 0.032183688133955, 0.0003126125375274569, 0.023839255794882774, -0.010919962078332901, -0.011843264102935791, 0.019910013303160667, 0.02715758979320526, 0.026241229847073555, -0.005841797683387995, -0.0016539611387997866, -7.869549153838307e-05, 0.022089838981628418, 0.0012747475411742926, -0.0070705534890294075, 0.01274573989212513, 0.008087574504315853, 0.0033235419541597366, -0.00472411559894681, 0.001142847235314548, -0.004140977282077074, -0.01269020326435566, -0.014273007400333881, -0.03498830646276474, 0.0037279208190739155, 0.045068271458148956, -0.011218473315238953, -0.010996324941515923, -0.00577237643301487, 0.026629989966750145, 0.013988380320370197, -0.011891858652234077, -0.0013927636900916696, -0.013710695318877697, 0.030989643186330795, 0.0020201581064611673, 0.00609171437099576, 0.020146045833826065, -0.006150722038000822, -0.014064744114875793, -0.01653614081442356, -0.02951791323721409, -0.011364257894456387, -0.014085570350289345, 0.02464454062283039, -0.02737973816692829, 0.00020707055227831006, -0.0166055615991354, -0.002384619787335396, -0.0066089024767279625, 0.00749055203050375, 0.024561235681176186, -0.01156557910144329, 0.0018709024880081415, -0.019812822341918945, -0.007001132238656282, -0.028518246486783028, 0.0212845541536808, -0.022492483258247375, -0.01492556743323803, 0.007705757860094309, 0.01843828149139881, 0.014439619146287441, -0.0307952631264925, 0.013592679984867573, 0.019354643300175667, 0.02436685748398304, 0.018063407391309738, -0.013120614923536777, 0.008434681221842766, -0.013564910739660263, 0.002742139156907797, -0.004380480386316776, 0.0017259856685996056, -0.018132828176021576, 0.0047032893635332584, -0.05076081305742264, -0.0029104857239872217, -0.0025425530038774014, 0.019493484869599342, -0.02375594899058342, 0.0005193576798774302, 0.015828043222427368, -0.017591342329978943, -0.018021754920482635, 0.012370865792036057, -0.012468055821955204, -0.001765902852639556, -0.0021867691539227962, 0.00694212457165122, 0.0163278765976429, 0.0029243698809295893, 0.014689534902572632, 0.011433678679168224, 0.014731188304722309, -0.014273007400333881, -0.029434606432914734, 0.002528668846935034, 0.005942458286881447, -0.031489476561546326, -0.0010638805106282234, 0.022173145785927773, -0.01766076497733593, 0.01710539497435093, -0.0006603695801459253, 0.016466718167066574, 0.00808063242584467, 0.0035075084306299686, -0.007518320810049772, -0.018993651494383812, -0.013238631188869476, 0.00347973988391459, -0.0076155103743076324, -0.0035647808108478785, 0.01484226156026125, -0.018910346552729607, -0.01884092576801777, 0.0053766751661896706, -0.0022232152987271547, -0.0016982171218842268, -0.02654668316245079, -0.014703419059515, 0.01456457655876875, -0.0052343616262078285, -0.005761963315308094, -0.008011211641132832, -0.03682102635502815, -0.03312781825661659, -0.004974032286554575, -0.009066414088010788, -0.03162831813097, -0.012218139134347439, -0.00677898433059454, 0.01655002497136593, -0.007275346200913191, 0.028823699802160263, -0.030267661437392235, 0.013287225738167763, -0.0032228813506662846, -0.008830382488667965, -0.007608568295836449, 0.005473865196108818, -0.01636952906847, -0.04381868988275528, -0.00804592203348875, 0.0337664932012558, 0.026366189122200012, 0.009732858277857304, -0.00157152337487787, -0.012995656579732895, 0.03260021656751633, -0.01804952323436737, -0.004071556031703949, -0.021451164036989212, -0.04140282794833183, -0.020090507343411446, -0.0009632197325117886, 0.0008946663001552224, 0.0021746205165982246, -0.03035096824169159, -0.00638675456866622, 0.04237472638487816, 0.007796005811542273, 0.00367585476487875, -0.012891525402665138, 0.010232691653072834, -0.01556424330919981, 0.004377009347081184, 0.0026310652028769255, 0.020312655717134476, -0.010628391988575459, 0.007233693730086088, 0.009746742434799671, 0.01704985834658146, -0.010565913282334805, -0.011336488649249077, -0.00248007383197546, -0.008705424144864082, -0.011482274159789085, -0.028934774920344353, 0.016452834010124207, -0.014772840775549412, -0.018354976549744606, 0.02542205899953842, -0.008691539987921715, -0.021756617352366447, -0.015467053279280663, -0.014071686193346977, -0.03212815150618553, -0.02610238827764988, 0.012162601575255394, -0.0007740468718111515, 0.01682770997285843, 0.0015333417104557157, -0.012232023291289806, 0.006931710988283157, -0.015355979092419147, 0.05562030151486397, -0.00036164128687232733, 0.027754614129662514, 0.01603630743920803, -0.005949400365352631, -0.010093849152326584, 0.0024696607142686844, 0.0033547815401107073, -0.016008539125323296, 0.018632661551237106, 0.022672977298498154, -0.0009814428631216288, -0.001192309893667698, -0.010447897017002106, -0.0001630314509384334, -0.04095853492617607, -0.03382202982902527, 0.012919293716549873, 0.001716440194286406, -0.0041270931251347065, -0.012780451215803623, -0.005553699564188719, -0.043068937957286835, 0.022659093141555786, -0.0010335088009014726, 0.019271336495876312, -0.004130564164370298, -0.0190630741417408, -0.0332111231982708, -3.248697248636745e-05, 0.019493484869599342, 0.031545013189315796, 0.02504718489944935, -0.027588002383708954, -0.029045848175883293, -0.0010126824490725994, -0.01777183823287487, -0.003693210193887353, -0.008559639565646648, 0.030545346438884735, -0.013419126160442829, -0.006827579345554113, 0.008448565378785133, 0.017077626660466194, -0.0025442885234951973, -0.012225081212818623, -0.004456843715161085, 0.025241564959287643, 0.013856479898095131, 0.0074697257950901985, -0.0028896592557430267, 0.013169210404157639, 0.005508575588464737, 0.013287225738167763, -0.0030111465603113174, -0.00919137243181467, -0.010545087046921253, 0.007858484983444214, 0.012898467481136322, 0.03068418987095356, -0.0032506496645510197, -0.004838660825043917, -0.020465383306145668, -0.0009206992690451443, 0.004842131864279509, 0.019660096615552902, 0.002216273220255971, -0.04734528809785843, -0.03140617161989212, 0.013981438241899014, -0.01257218699902296, 0.012641608715057373, -0.0032506496645510197, 0.024908341467380524, -0.012940119951963425, 0.02074306830763817, -0.040153246372938156, 0.022534135729074478, -0.011044919490814209, 0.00986475870013237, -0.03648780658841133, 0.005484278313815594, 0.003073625499382615, -0.02252025157213211, 0.02985113486647606, -0.020701413974165916, -0.023006200790405273, 0.0016287959879264235, 0.02078472077846527, 0.021881576627492905, 0.0036064335145056248, 0.01014244370162487, 0.008656828664243221, -0.0007931377040222287, 0.009059472009539604, -0.021326206624507904, -0.012683261185884476, 0.008691539987921715, -0.003620317904278636, 0.005557170603424311, 0.0029191633220762014, -0.022534135729074478, 0.021478932350873947, 0.005206593312323093, 0.017035972326993942, 0.0022023890633136034, -0.026616103947162628, 0.011218473315238953, 0.005956342909485102, -0.0021607361268252134, 0.001836191862821579, -0.010864424519240856, -0.016341760754585266, -0.019312990829348564, -0.01182243786752224, 0.003163873217999935, 0.020465383306145668, -0.008393028751015663, 0.013065078295767307, 0.010795003734529018, -0.015411515720188618, -0.02068752981722355, -0.011204589158296585, 0.015828043222427368, 0.01561977993696928, -0.001525531872175634, -0.036515574902296066, -0.0009198314510285854, -0.010253517888486385, 0.022603556513786316, -0.004005605820566416, -0.013891191221773624, -0.011274009943008423, -0.022284219041466713, -0.026741063222289085, -0.012995656579732895, 0.003287095809355378, 0.017521921545267105, 0.05348212644457817, 0.020021086558699608, 0.0076155103743076324, 0.028795931488275528, -0.0291291531175375, 0.004262464586645365, 0.006893529556691647, -0.011808553710579872, -0.008476333692669868, -0.004994858521968126, -0.012079296633601189, 0.01653614081442356, -0.02710205316543579, -0.0074003045447170734, 0.0074003045447170734, -0.005966756027191877, 0.007886253297328949, 0.01402309164404869, 0.0032749471720308065, 0.0058209714479744434, -0.004022961016744375, -0.004002134781330824, 0.014106396585702896, 0.018646545708179474, -0.0029747001826763153, -0.025338754057884216, -0.0014639204600825906, -0.020881909877061844, -0.005154527258127928, -0.02190934494137764, -0.011898800730705261, 0.012343097478151321, -0.019854474812746048, 0.006515183951705694, -0.02626899816095829, -0.006195846013724804, -0.018354976549744606, -0.03415525332093239, 0.03621011972427368, -0.01324557326734066, 0.006334688514471054, 0.04012547805905342, -0.0025633794721215963, -0.01151004247367382, -0.0013754083774983883, 0.02604684978723526, 0.0025616439525038004, -0.034960538148880005, 0.007796005811542273, -0.02106240577995777, 0.026352304965257645, -0.003769573522731662, -0.000929376925341785, -0.02749081328511238, 0.02168719656765461, -0.011357315815985203, 0.006626257672905922, -0.02710205316543579, 0.027421390637755394, 0.0155364740639925, -0.0024418921675533056, 0.002289165509864688, -0.0035161860287189484, -0.006695678923279047, 0.018924230709671974, -0.01142673660069704, -0.012926235795021057, -0.02218702994287014, 0.02107628993690014, 0.001026566606014967, 0.005105932708829641, -0.017896797508001328, -0.003918829374015331, 0.017646880820393562, -0.013085904531180859, 0.010767234489321709, 0.21192917227745056, -0.009850874543190002, 0.0010803680634126067, 0.033461038023233414, -0.016050191596150398, 0.01210012286901474, 0.01655002497136593, 0.0007020223420113325, -0.009267736226320267, -0.005932045169174671, -0.011808553710579872, 0.021978765726089478, -0.023880908265709877, 0.0016548288986086845, 0.01176690123975277, 0.00749055203050375, -0.043901994824409485, -0.0075807999819517136, -0.0008139640558511019, -0.07658551633358002, 0.007330883294343948, -0.0171609316021204, -0.003838994773104787, -0.010239633731544018, 0.02117347903549671, 0.007775179110467434, 0.007164272479712963, -0.004560975823551416, 0.0302398931235075, -0.008059806190431118, -0.031656086444854736, -0.012350039556622505, 0.005064279772341251, -0.01839662902057171, -0.005189238116145134, 0.028601553291082382, 0.015175484120845795, 0.01291235163807869, 0.018174482509493828, -0.007198982872068882, 0.006685265805572271, -0.0063208043575286865, 0.0005575393442995846, 0.007601626217365265, -0.014154992066323757, 0.017535805702209473, 0.00017528864555060863, -0.010996324941515923, -0.018813157454133034, 0.01816059648990631, -0.03282236307859421, 0.017855143174529076, 0.03365541994571686, 0.029323533177375793, -0.008587407879531384, -0.02320057898759842, -0.010017485357820988, 0.015772506594657898, -0.0062791514210402966, 0.017466384917497635, -0.012266733683645725, 0.013078962452709675, 0.004404778126627207, 0.035127148032188416, -0.01616126485168934, 0.008275012485682964, 7.435666339006275e-05, -0.010100791230797768, 0.009121951647102833, -0.020923562347888947, -0.009323272854089737, -0.016189033165574074, 0.007844600826501846, -0.012093180790543556, -0.008642944507300854, -0.012141775339841843, 0.016466718167066574, -0.02084025740623474, -0.0038042841479182243, 0.00171470467466861, 0.011274009943008423, -0.01548093743622303, 0.01005913782864809, -0.0034970950800925493, -0.011239299550652504, -0.010697813704609871, -0.01190574374049902, -0.01176690123975277, -0.03176715970039368, 0.02078472077846527, -0.018993651494383812, -0.02386702410876751, 0.004790065810084343, -0.008726250380277634, -0.005862623918801546, -0.009941122494637966, 0.029878903180360794, 0.015355979092419147, 0.006758158095180988, -0.0032471786253154278, -0.0007905344245955348, -0.026685526594519615, 0.017785722389817238, 0.006813695188611746, -0.025338754057884216, -0.01190574374049902, 0.012273675762116909, 0.005987582262605429, 0.00863600242882967, 0.01215565949678421, 0.029545681551098824, -0.01506440993398428, -0.01686936244368553, -0.029823366552591324, -0.0091358358040452, 0.015231020748615265, -0.023880908265709877, -0.016786057502031326, 0.0026102387346327305, 0.0057064262218773365, 0.017077626660466194, 0.0003855048562400043, 0.0062826224602758884, 0.0038251106161624193, 0.00620625913143158, -0.010510376654565334, -0.015730854123830795, 0.008295838721096516, 0.0016539611387997866, -0.003478004364296794, 0.01895199902355671, -0.03707094490528107, 0.017841259017586708, 0.003311393316835165, -0.029267996549606323, 0.011169877834618092, -0.007865427061915398, -0.02470007911324501, 0.014175818301737309, -0.02581081911921501, 0.002976435935124755, -0.002280487911775708, 0.0017945391591638327, 0.008462449535727501, 0.016730519011616707, -0.016008539125323296, 0.013002598658204079, -0.022228682413697243, -0.007622452452778816, -0.02519991062581539, -0.025908008217811584, 0.003838994773104787, -0.008115343749523163, 0.0005249981768429279, 0.002693544141948223, -0.009003935381770134, 0.0037209787406027317, -0.029045848175883293, 0.005400972906500101, 0.02582470327615738, -0.020881909877061844, 0.012509708292782307, 0.01638341322541237, 0.00978145282715559, -0.016508372500538826, -0.013516316190361977, -0.17816267907619476, 0.015467053279280663, 0.008788729086518288, -0.020243234932422638, 0.017369195818901062, 0.01749415323138237, 0.026241229847073555, -0.008691539987921715, -0.010919962078332901, -0.000524564296938479, 0.016786057502031326, 0.004470727872103453, -0.030323199927806854, -0.025241564959287643, 0.0007041917415335774, 0.008601292036473751, -0.015592011623084545, 0.011343431659042835, 0.026449494063854218, 0.0185077041387558, -0.0017016882775351405, -0.009816164150834084, 0.013446894474327564, 0.00863600242882967, 0.006289564538747072, -0.0031829639337956905, -0.008038979955017567, 0.023450495675206184, 0.014856145717203617, -0.014189702458679676, -0.011169877834618092, 0.01810505986213684, 0.0017711095279082656, -0.012169543653726578, 0.029601218178868294, 0.003957010805606842, -0.010621449910104275, 0.00261891633272171, -0.014939451590180397, 0.01237780787050724, 0.01838274486362934, 0.0026761889457702637, 0.008642944507300854, -0.0047727106139063835, -0.015231020748615265, 0.038542672991752625, -0.0014491684269160032, -0.007566915359348059, 0.01187797449529171, -0.015730854123830795, 1.0169127762083008e-07, -0.005109403748065233, 0.020187698304653168, 0.001073425984941423, 0.04001440480351448, 0.007962617091834545, 0.01022574957460165, 0.006223614327609539, -0.012329213321208954, -0.008351375348865986, 0.005432212259620428, -0.0017121013952419162, 0.015966886654496193, -0.020159929990768433, -0.010156327858567238, 0.0179939866065979, -0.012037643231451511, 0.00767104746773839, -0.01288458239287138, 0.013925901614129543, 0.003078832058236003, 0.02526933327317238, 0.02308950573205948, -0.0025564373936504126, 0.0025442885234951973, -0.010482607409358025, -0.02174273319542408, 0.011995990760624409, 0.004550562705844641, -0.016688866540789604, -0.03182269632816315, 0.03984779492020607, -0.01000360120087862, -0.014161934144794941, 0.004161803517490625, 0.018479935824871063, -0.019354643300175667, -0.021923229098320007, -0.017480269074440002, 0.005557170603424311, 0.015355979092419147, -0.019701749086380005, -0.013412184081971645, -0.004928908310830593, -0.0010031369747593999, 0.025227680802345276, 0.005390559788793325, -0.02521379664540291, 0.006872703321278095, -0.009906411170959473, -0.004928908310830593, -0.02706040069460869, -0.01861877739429474, 0.02957344986498356, 0.022034302353858948, 0.022561904042959213, 0.004470727872103453, 0.006421464961022139, 0.027907339856028557, 0.010829714126884937, -0.016897130757570267, 0.006785926409065723, 0.01693878322839737, -0.004245108924806118, 0.011593347415328026, 0.024325203150510788, -0.006414522882550955, -0.016452834010124207, 0.01160028949379921, -0.025505365803837776, 0.057092029601335526, -0.007816832512617111, 0.004061142913997173, 0.00518229603767395, -0.009941122494637966, -0.033405501395463943, -0.12606897950172424, -0.01151004247367382, 0.008705424144864082, 0.01118376199156046, -0.009774510748684406, 0.020090507343411446, -0.013259457424283028, 0.022895125672221184, 0.0034242027904838324, 0.0024575120769441128, -0.02364487573504448, -0.025921892374753952, 0.003410318633541465, 0.002287429990246892, 0.004491554573178291, -0.012079296633601189, -0.008955340832471848, -0.022200914099812508, -0.0011011945316568017, 0.030656421557068825, 0.006647083908319473, -0.013669042848050594, -0.01616126485168934, -0.03687656298279762, 0.031878236681222916, 0.00533849373459816, -0.028296098113059998, 0.006428407039493322, 0.02470007911324501, 0.01681382581591606, -0.022881241515278816, -0.006254854146391153, 0.014536808244884014, -0.002124289982020855, -0.012225081212818623, -0.013807885348796844, -0.036571111530065536, -0.014245239086449146, 0.02285347320139408, -0.03448847308754921, 0.009316330775618553, -0.004147919360548258, 0.024436278268694878, -0.011468389071524143, 0.008670713752508163, -0.0010170212481170893, -0.02292289398610592, 0.012343097478151321, -0.001836191862821579, -0.02358933910727501, -0.021506700664758682, 0.01151004247367382, -0.02990667149424553, -0.01190574374049902, 0.03326665982604027, -0.008517986163496971, 0.01889646239578724, 0.0038251106161624193, -0.03621011972427368, -0.004980974365025759, -0.026338420808315277, 0.008865092881023884, 0.002506106859073043, 0.004744941834360361, 0.01561977993696928, -0.011635000817477703, -0.018938114866614342, -0.017896797508001328, 0.028990311548113823, 0.02078472077846527, -0.009233025833964348, 0.008622118271887302, -0.030212124809622765, 0.014481271617114544, -0.017910681664943695, 0.00036598011502064764, -0.025616439059376717, -0.014522924087941647, 0.006789397448301315, -0.0013684662990272045, 0.013571852818131447, -0.021812153980135918, -0.008122285827994347, -0.020645877346396446, 0.018466051667928696, 0.014967219904065132, 0.0008686333312653005, -0.01343995239585638, 0.0007072289008647203, -0.03776515647768974, -0.0029642870649695396, 0.01727200485765934, 0.003481475403532386, -0.0332111231982708, 0.010121617466211319, 0.02525544911623001, 0.026810484007000923, 0.007927905768156052, -0.020048854872584343, -0.006372869946062565, -0.015633665025234222, 0.013863421976566315, -0.057036492973566055, 0.026449494063854218, -0.014078628271818161, 0.00799038540571928, -0.005897334776818752, -0.00166610989253968, 0.015841927379369736, -0.02604684978723526, -0.016619445756077766, 0.007032372057437897, -0.017632996663451195, 0.035460371524095535, -0.021270669996738434, -0.007879311218857765, -0.023506032302975655, -0.01492556743323803, 0.006588076241314411, -0.018993651494383812, 0.0061784908175468445, -0.004595686215907335, 0.015675317496061325, -0.004713702481240034, 0.01939629577100277, 0.009038645774126053, -0.02739362232387066, 0.0033027157187461853, 0.01078111957758665, 0.04001440480351448, -0.0023707353975623846, -0.011017151176929474, 0.02543594315648079, -0.03668218478560448, 0.0012955740094184875, 0.005119816865772009, 0.010947730392217636, 0.02313115820288658, -0.019410179927945137, 0.009684263728559017, -0.002056604251265526, 0.039708949625492096, -0.0029920556116849184, 0.001023095566779375, 0.009094183333218098, -0.0018448695773258805, 0.020326539874076843, 0.030212124809622765, -0.019798938184976578, 0.0057793185114860535, 0.02347826398909092, -0.003554367693141103, -0.005487749353051186, 0.030767494812607765, 0.01721646822988987, -0.02302008494734764, -0.004606099333614111, -0.03096187487244606, 0.035182684659957886, -0.0061784908175468445, 0.01520325243473053, -0.04298563301563263, 0.012204254977405071, -0.008136169984936714, 0.008740134537220001, -0.007289230823516846, 0.02102075330913067, -0.01648060418665409, 0.004140977282077074, -0.008399970829486847, -0.015841927379369736, -0.0155364740639925, 0.004967090208083391, 0.006119482684880495, 0.0003737900115083903, 4.1923922253772616e-05, 0.008184764534235, 0.01928522065281868, 0.00658113369718194, 0.002933047479018569, -0.03718201816082001, 0.00290701468475163, -0.01033682283014059, -0.021215131506323814, -0.030823031440377235, -0.004932379350066185, 0.035349298268556595, -0.004696347285062075, 0.0019698278047144413, 0.005932045169174671, -0.008788729086518288, -0.0029920556116849184, 0.013981438241899014, -0.010350706987082958, -0.008538813330233097, -0.0014257387956604362, 0.018479935824871063, 0.01967398077249527, -0.015411515720188618, 0.0033756080083549023, 0.012724913656711578, 0.03018435649573803, -0.008226417005062103, 0.016175149008631706, -0.0028913947753608227, -0.02526933327317238, -0.012120949104428291, -0.004536678083240986, -0.02268686331808567, -0.009337157011032104, 0.00438742246478796, 0.021867692470550537, 0.019271336495876312, 0.001668713171966374, 0.03129509836435318, 0.017952334135770798, -0.011968222446739674, 0.0072128670290112495, 0.009302446618676186, -0.011794669553637505, -0.004908082075417042, 0.05314890295267105, 0.008760960772633553, 0.03748747333884239, 0.03509937971830368, 0.009337157011032104, 0.022700747475028038, 0.011732189916074276, 0.004619983956217766, 0.016466718167066574, 0.01269020326435566, 0.012822103686630726, 0.0062513831071555614, 0.017035972326993942, -0.044235218316316605, 0.007084438111633062, 0.00767104746773839, -0.04723421484231949, -0.005546757485717535, 0.004790065810084343, -0.03626565635204315, 0.026074619963765144, 0.016022423282265663, -0.011572521179914474, -0.0038945318665355444, 0.01478672493249178, 0.01788291148841381, 0.01649448834359646, 0.007823774591088295, 0.0152587890625, -0.004599157255142927, 0.013870364055037498, -0.013564910739660263, 0.022617440670728683, -0.020520919933915138, -0.026227345690131187, 0.02078472077846527, -0.012204254977405071, 0.022117609158158302, -0.007886253297328949, -0.024158593267202377, 0.01972951740026474, 0.0017034237971529365, 0.021104058250784874, 0.006650554947555065, 4.0107039239956066e-05, 0.0056022945791482925, 0.007421130780130625, 0.0020288359373807907, -0.001806687912903726, -0.029601218178868294, -0.002886188216507435, 0.007636336609721184, -0.010697813704609871, -0.016022423282265663, 0.02157612331211567, -0.0036376731004565954, -0.0023828842677176, -0.010045253671705723, 0.010378476232290268, -0.006549894344061613, -0.02258967235684395, 0.009177488274872303, -0.021451164036989212, -0.00933021493256092, 0.014745072461664677, -0.00844162330031395, -0.02828221395611763, 0.0033547815401107073, -0.017702417448163033], "fc5915cc-ba5a-408a-a36a-ee6ea2d663de": [-0.0011909384047612548, -0.013215132057666779, -0.0024829779285937548, 0.011748307384550571, -0.013050627894699574, 0.027293909341096878, -0.02050813101232052, -0.011981354095041752, -0.02840430848300457, -0.02050813101232052, 0.012872415594756603, 0.018767133355140686, 0.011686618439853191, 0.011117709800601006, 0.002321901498362422, -0.0033397681545466185, 0.03503929078578949, -0.0006657259655185044, 0.03405227139592171, -0.017738984897732735, -0.016011694446206093, 0.00687145721167326, -0.016258450224995613, 0.026430264115333557, -0.007855052128434181, 0.02080972120165825, 0.004462163429707289, -0.017834944650530815, 0.007909887470304966, -0.02041216939687729, -0.00732726976275444, 0.019123557955026627, 0.0010367161594331264, -0.011645492166280746, -0.03769876807928085, 0.008629591204226017, -0.003553965827450156, -0.02065892517566681, 0.010857244953513145, -0.0008816370973363519, 0.003057027468457818, -0.0017872643657028675, -0.019877532497048378, -6.243858661036938e-05, -0.0425790473818779, 0.022920850664377213, -0.014983546920120716, -0.02245475724339485, -0.023619992658495903, 0.007471210323274136, 0.018232494592666626, -0.0077865091152489185, -0.032297562807798386, 0.011576948687434196, 0.0010941211367025971, -0.0064122178591787815, 0.02165965549647808, 0.023825621232390404, -0.002411007648333907, 0.008403398096561432, -0.00033800373785197735, 0.011282213032245636, 0.012152711860835552, 0.004078321158885956, -0.02826722152531147, -0.012646223418414593, -0.016847921535372734, -0.006772069726139307, -0.024661848321557045, -0.02131693996489048, 0.025895627215504646, 0.016847921535372734, -0.003105007577687502, 0.02082342840731144, 0.018163952976465225, -0.02242734096944332, -0.013461887836456299, -0.007861906662583351, -0.017245473340153694, 0.005322380922734737, 0.0011917951051145792, -0.033202335238456726, -0.003930953331291676, 0.02061779983341694, 0.015860900282859802, -0.01416102796792984, 0.019315477460622787, 0.026389138773083687, -0.009184790775179863, -0.011110855266451836, -0.0026149237528443336, 0.018246203660964966, 0.016025403514504433, -0.0007929592975415289, 0.016573749482631683, 0.0004429605323821306, -0.017039842903614044, 0.0217007827013731, -0.016313284635543823, -0.013407053425908089, -0.030488021671772003, -0.025429533794522285, -0.005863871891051531, -0.009760553948581219, -0.033037830144166946, 0.009013433009386063, -0.0020837136544287205, 0.000937328499276191, 0.008259457536041737, -0.014010232873260975, -0.011364465579390526, 0.029583251103758812, -0.018040575087070465, -0.03660207614302635, -0.010864099487662315, -0.018355872482061386, 0.02172819897532463, -0.02039846032857895, -0.032900743186473846, -0.02156369574368, -0.019356604665517807, 0.008410252630710602, -0.0012886124895885587, -0.015614144504070282, 0.004815160762518644, 0.01049396675080061, -0.0030673088040202856, -0.006922864820808172, -0.0022276544477790594, -0.008842075243592262, 0.046061042696237564, 0.03682141378521919, 0.007882470265030861, 0.0067240893840789795, -0.0021882422734051943, 0.02903490699827671, -0.038384199142456055, 0.011042311787605286, -0.01464083045721054, -0.02200237289071083, 0.004825442563742399, 0.015244010835886002, 3.662778181023896e-05, -0.01004843506962061, -0.027101987972855568, 0.024017542600631714, 0.015929443761706352, -0.0026971756014972925, -0.019904950633645058, 0.02200237289071083, 0.006912583485245705, -0.02202978916466236, 0.024305423721671104, -0.02782854624092579, 0.017780110239982605, -0.004801452159881592, 0.00022576421906705946, -0.0014376939507201314, -0.0005783333908766508, -0.007484918925911188, 0.019767863675951958, 0.024538470432162285, 0.025594037026166916, -0.011857976205646992, 0.007375250104814768, 0.026868941262364388, -0.015408514998853207, 0.0005633395630866289, -0.007279289420694113, -0.02034362591803074, 0.01067217905074358, 0.038329366594552994, -0.023647408932447433, 0.016285868361592293, -0.024209463968873024, -0.004013205412775278, 0.04098884388804436, 0.03336683660745621, -0.026306886225938797, 0.004273669328540564, -0.03432644158601761, 0.0005466321599669755, 0.018876802176237106, 0.016285868361592293, -0.00524355610832572, -0.006470479536801577, -0.01410619355738163, -0.019192099571228027, 0.008561047725379467, 0.006107200402766466, 0.00045067165046930313, 0.0035094127524644136, -0.018081700429320335, -0.032215312123298645, -0.6479253172874451, -0.01410619355738163, -0.004482726100832224, -0.012742184102535248, -0.016436662524938583, -0.0004716629919130355, 0.0031786917243152857, -0.0024058669805526733, -0.032626569271087646, 0.0028325484599918127, -0.031968556344509125, -0.004510143771767616, -0.0136332456022501, -0.012091022916138172, -0.027156822383403778, -0.011604366824030876, 0.0018609482795000076, -0.019534816965460777, -0.0099936006590724, -0.012001916766166687, 0.008972306735813618, -0.0008019556407816708, -0.005486884620040655, 0.004893985576927662, -0.02090568095445633, -0.007752237841486931, 0.015819774940609932, -5.531651549972594e-05, -0.0023321828339248896, 0.02174190804362297, -0.026923775672912598, 0.014010232873260975, 0.012947813607752323, 0.019000180065631866, 0.054149139672517776, -0.025689996778964996, -0.03586180880665779, 0.013208277523517609, 0.009349294938147068, 0.018630046397447586, -0.004259960725903511, -0.009116247296333313, 0.03712300583720207, -0.002061437116935849, -0.0026971756014972925, 0.0005389210418798029, 0.013420761562883854, -0.008965452201664448, 0.0060318028554320335, 0.0014376939507201314, 0.017533354461193085, -0.0032061089295893908, -0.01406506821513176, 0.004780889488756657, -0.001304891426116228, 0.004047476686537266, 0.03632790595293045, -0.012625660747289658, 0.016601167619228363, 0.015545601025223732, 0.004678074270486832, 0.024785226210951805, -0.006854321341961622, -0.023016812279820442, -0.01424328051507473, 0.017876069992780685, -0.016710836440324783, 0.00363279040902853, 0.02186528593301773, 0.005774765741080046, 0.015175468288362026, 0.011837413534522057, -0.0018420988926663995, -0.022920850664377213, 0.027348743751645088, 0.01115198154002428, 0.02887040190398693, -0.023030521348118782, -0.003046745900064707, 0.005092761013656855, -0.006220296956598759, -0.019740445539355278, -0.015134342014789581, -0.008163496851921082, 0.008334854617714882, -0.017423685640096664, -0.011686618439853191, 0.019384020939469337, 0.012666786089539528, 0.026361720636487007, 0.0017598470440134406, 0.011659201234579086, -0.002734874375164509, 0.004708918742835522, 0.02908974140882492, 0.02174190804362297, 0.004568405449390411, 0.0071970378048717976, 0.004897412844002247, -0.016464080661535263, -0.00708736851811409, -0.014901295304298401, 0.022509591653943062, -0.012495428323745728, -0.010096415877342224, -0.016587458550930023, -0.03301041200757027, -0.010802410542964935, 0.05025588721036911, -0.038713209331035614, -0.011480988934636116, -0.015847191214561462, -0.014448910020291805, 0.0022070915438234806, 0.029967093840241432, -0.018314747139811516, 0.004678074270486832, -0.009369857609272003, 0.02748582884669304, -0.024565888568758965, 0.016285868361592293, -0.017670441418886185, 0.009342440403997898, -0.019260643050074577, 0.015093215741217136, 0.039480891078710556, 0.004349066875874996, 0.003653353312984109, -0.00727243535220623, -0.017834944650530815, 0.0011326766107231379, -0.017314016819000244, 0.012022480368614197, 0.007944158278405666, 0.011186252348124981, -0.024044960737228394, 0.030625108629465103, 0.011940227821469307, 0.029884841293096542, -0.039892151951789856, 0.0004943679668940604, -0.005706222727894783, -0.0010050148703157902, 0.00026174940285272896, 0.0013237408129498363, -0.02197495475411415, -0.015970569103956223, -0.006981126498430967, -0.039069633930921555, 0.0027948496863245964, -0.0026629038620740175, -0.0046540843322873116, -0.0035334026906639338, -0.0013862865744158626, 0.008273165673017502, -0.007532899267971516, -0.032626569271087646, -0.0010624198475852609, -7.272006769198924e-05, -0.03756168112158775, -0.004331931006163359, 0.0052778273820877075, -0.032050807029008865, 0.016765670850872993, 0.023359527811408043, -0.015326263383030891, -0.0009887359337881207, 0.031529881060123444, -0.004671220201998949, -0.04142751917243004, 0.018479250371456146, -0.010007309727370739, -0.003170123789459467, 0.04704806208610535, -0.01472308300435543, 0.017547063529491425, -0.03301041200757027, -0.0034220200031995773, 0.004445027559995651, 0.016011694446206093, -0.006117482203990221, 0.016505206003785133, -0.006148326676338911, -0.018259912729263306, 0.019521107897162437, -0.00014083489077165723, -0.0004346068308223039, 0.013345364481210709, 0.00041789942770265043, 0.03591664507985115, -0.0006117481971159577, -0.0023356101009994745, -0.013537284918129444, -0.01066532451659441, -0.002618350787088275, 0.004390193149447441, 0.011707181110978127, 0.03473770245909691, 0.007663131691515446, 0.018369581550359726, 0.0023904447443783283, 0.0015687828417867422, 0.02056296542286873, -0.009973037987947464, 1.433784836990526e-05, -0.024415092542767525, 0.0005984679446555674, 0.0032386670354753733, 0.031694382429122925, -0.016628583893179893, -0.004369630012661219, -0.02837689220905304, -0.012049897573888302, -0.011474134400486946, 0.02233137935400009, 0.01997349224984646, 0.00515102269127965, 0.003858983051031828, 0.0031872594263404608, -0.005699368193745613, 0.003636217676103115, 0.011700326576828957, -0.011844268068671227, -0.019589651376008987, -0.016505206003785133, -0.004952247254550457, 0.018287330865859985, 0.0288429856300354, 0.013777186162769794, -0.014435200951993465, 0.024661848321557045, 0.011385028250515461, -0.012639368884265423, 0.01422957144677639, 0.02767775021493435, -0.0031375656835734844, 0.025594037026166916, -0.006850894540548325, 0.045951370149850845, -0.026567351073026657, -0.014627122320234776, -0.012831290252506733, 0.016464080661535263, -0.022961977869272232, -0.019192099571228027, 0.00518186716362834, 0.005737067200243473, 0.0144214928150177, 0.019370311871170998, 0.01029519084841013, -0.006772069726139307, -0.000833228463307023, -0.003069022437557578, -0.013050627894699574, 0.001510521164163947, -0.03775360435247421, -0.009479526430368423, 0.013653808273375034, 0.0019843261688947678, 0.03687625005841255, 0.02730761654675007, -0.014215863309800625, 0.017533354461193085, 0.008362272754311562, 0.04745932295918465, 0.0036910520866513252, 0.017615607008337975, 0.02133064903318882, -0.026718145236372948, -0.02042587846517563, -0.02059038169682026, -0.016793087124824524, 0.015833482146263123, -0.0021077038254588842, -0.006919437553733587, 0.008211477659642696, 0.026772979646921158, -0.005322380922734737, 0.02224912866950035, 0.0004750901716761291, -0.019055014476180077, -0.030241265892982483, 0.023085355758666992, -0.001944913761690259, 0.004750045016407967, -0.011001186445355415, -0.013646954670548439, 0.016025403514504433, -0.005480030085891485, 0.039755064994096756, -0.015339971520006657, 0.02160482108592987, 0.016724545508623123, -0.0052504101768136024, -0.007395812775939703, -0.007251872215420008, 0.016738252714276314, -0.03372326120734215, 0.02718423865735531, -0.0006057506543584168, -0.0014445482520386577, -0.010281482711434364, -0.02193382941186428, 0.015353680588304996, 0.023702243342995644, 0.013338509947061539, -0.008986015804111958, -0.02090568095445633, 0.026677019894123077, -0.02113872766494751, -0.00037227533175610006, -0.047623828053474426, 0.0026611904613673687, -0.007985284551978111, 0.016313284635543823, 0.003636217676103115, -0.002385303843766451, 0.011124564334750175, 0.02089197188615799, 0.0013134593609720469, -0.008280020207166672, 0.0010358593426644802, -0.01102860365062952, 0.01386629231274128, 0.0987570658326149, 0.019658194854855537, -0.017368851229548454, 0.0005894716596230865, 0.0030501731671392918, -0.0017992594512179494, -0.01416102796792984, -0.031749218702316284, 0.032434649765491486, -0.003259229939430952, 0.013276821002364159, -0.016573749482631683, 0.009630321525037289, -0.006264850031584501, 0.02898007072508335, 0.0016133359167724848, -0.005270973313599825, 0.013057482428848743, 2.6734531274996698e-05, 0.004136582836508751, 0.006192879751324654, 0.010679032653570175, 0.017396267503499985, 0.010816119611263275, -0.04852859675884247, -0.00687145721167326, 0.018794549629092216, -0.011501551605761051, 0.02091939002275467, -0.008136079646646976, 0.01072015892714262, 0.018287330865859985, 0.023729661479592323, 0.025594037026166916, -0.0027948496863245964, 0.005541719030588865, 0.015367388725280762, 0.025210194289684296, 0.0053155263885855675, -0.015298846177756786, 0.018081700429320335, -0.010802410542964935, 0.0021848150063306093, 0.010336317121982574, -0.002597787883132696, -0.013304238207638264, -0.011803141795098782, -0.01072701346129179, -0.03355875983834267, -0.008314291946589947, 0.04192103073000908, -0.007539753802120686, -0.024894895032048225, 0.01048025768250227, 0.02763662487268448, 0.02174190804362297, -0.013139734044671059, 0.00992505718022585, -0.01436665840446949, 0.031146036460995674, -0.0016313284868374467, 0.00514416815713048, 0.02049442194402218, -0.002734874375164509, -0.026306886225938797, -0.023537740111351013, -0.022441048175096512, -0.014695665799081326, -0.018917927518486977, 0.008924326859414577, -0.00180097296833992, -0.004945393186062574, -0.019246935844421387, 0.00526754604652524, -0.008780386298894882, 0.009246479719877243, 0.008554193191230297, -0.017341433092951775, -0.015271428041160107, -0.008142934180796146, 0.01024721097201109, -0.025347281247377396, 0.011364465579390526, -0.02848656103014946, -0.008588464930653572, 0.011378173716366291, 0.016505206003785133, 0.022509591653943062, -0.017807526513934135, 0.014490035362541676, 0.01435294933617115, 0.018095409497618675, 0.019013887271285057, -0.023798204958438873, 0.0032420940697193146, -0.01417473703622818, -0.009013433009386063, 0.003828138578683138, 0.0008336568716913462, -0.02168707363307476, 0.0028068446554243565, -0.04183878004550934, 0.004551269579678774, -0.011707181110978127, 0.007724820636212826, -0.022770056501030922, 0.0025532348081469536, 0.025923043489456177, -0.007361541502177715, -0.017135804519057274, -0.002820553258061409, -0.01447632722556591, 0.008149788714945316, -0.012234964407980442, 0.0018095409031957388, -0.0002166608173865825, 0.009787971153855324, 0.024936022236943245, 0.012872415594756603, 0.010747576132416725, -0.007916741073131561, -0.02969292178750038, -0.004191417712718248, 0.007731674704700708, -0.0288429856300354, -0.01102174911648035, 0.0033449088223278522, -0.005264118779450655, 0.012557117268443108, 0.006103773135691881, 0.0014693952398374677, 0.016560040414333344, 0.0017504224088042974, -0.02104276791214943, -0.015435932204127312, -0.02220800146460533, -0.003745886730030179, 0.008876346051692963, -0.0013220272958278656, 0.009753699414432049, -0.02011057920753956, -0.012605097144842148, -0.007731674704700708, -0.008396543562412262, 0.009006578475236893, -0.019877532497048378, -0.025607746094465256, 0.012810726650059223, -0.005980395711958408, -0.008862637914717197, 0.0022961976937949657, -0.031063785776495934, -0.04082433879375458, -0.0045889681205153465, -0.01049396675080061, -0.02806159295141697, -0.006062647327780724, -0.011433008126914501, 0.032462067902088165, 0.009171082638204098, 0.02802046574652195, -0.0413452684879303, 0.01024721097201109, -0.01058992650359869, -0.016560040414333344, -0.0007248445181176066, -0.016107656061649323, -0.015531892888247967, -0.04197586700320244, -0.00700168963521719, 0.039864733815193176, 0.019836407154798508, 0.02192012034356594, 0.0011249654926359653, -0.011117709800601006, 0.038219697773456573, -0.013969107531011105, 0.005990677047520876, -0.024867478758096695, -0.04351123422384262, -0.024140920490026474, 0.005061916541308165, -0.011378173716366291, -0.001598770497366786, -0.02840430848300457, 0.003807575674727559, 0.037945523858070374, 0.0064464895986020565, -0.0001603268610779196, -0.0039069633930921555, 0.0033860348630696535, -0.003500844817608595, 0.0039035361260175705, 0.014030796475708485, 0.019356604665517807, 0.0005337803158909082, 0.008766677230596542, -0.0015910593792796135, 0.019630776718258858, -0.010939497500658035, -0.01052823755890131, -0.0042428248561918736, -0.01078184787184, -0.017012426629662514, -0.029994511976838112, 0.0035882373340427876, -0.031447626650333405, -0.02207091636955738, 0.012186983600258827, -0.018780840560793877, -0.004116020165383816, -0.009945620782673359, -0.0014145605964586139, -0.02211204171180725, -0.02862364612519741, 0.0053052450530231, 0.009068267419934273, 0.0037047609221190214, -0.008773531764745712, -0.026183508336544037, 0.013544139452278614, -0.024387676268815994, 0.0440869964659214, 0.015573018230497837, 0.01440778374671936, 0.0071422029286623, -0.013797749765217304, 0.003838420147076249, 0.01022664736956358, 0.0005813321331515908, -0.02192012034356594, 0.025141650810837746, 0.013722351752221584, 0.003978933673352003, 0.009212207980453968, -0.024922313168644905, 0.0008229470113292336, -0.04290805384516716, -0.02878815121948719, 0.004955674521625042, -0.0003133710124529898, -0.004023486748337746, -0.018451834097504616, -0.016354411840438843, -0.04778832942247391, 0.011645492166280746, 0.005788474343717098, 0.012351487763226032, -0.012954668141901493, -0.019959785044193268, -0.03421677276492119, 0.011844268068671227, 0.022852307185530663, 0.02175561711192131, 0.031310539692640305, -0.024524763226509094, -0.03424419090151787, 0.0011009754380211234, -0.013030065223574638, -0.005322380922734737, -0.0020408742129802704, 0.02725278213620186, -0.017423685640096664, 0.0012500568991526961, 0.007395812775939703, 0.00520585710182786, -0.012714766897261143, -0.015353680588304996, -0.005774765741080046, 0.026361720636487007, 0.00047894573071971536, 0.018547793850302696, 0.005425195675343275, 0.015230302698910236, 0.006775496993213892, 0.019603360444307327, 0.00536693399772048, -0.0029473581817001104, -0.016354411840438843, 0.013064336962997913, 0.0031889730598777533, 0.031968556344509125, 0.008677571080625057, -0.014311823062598705, -0.017930904403328896, -0.005647961050271988, 0.0219064112752676, 0.010685887187719345, 0.010439131408929825, -0.046006206423044205, -0.03509412705898285, -0.004417610354721546, -0.02246846631169319, 0.018684880807995796, -0.0014162742299959064, 0.023304693400859833, -0.0055931261740624905, 0.03427160903811455, -0.02917199209332466, 0.013962252996861935, -0.004122874233871698, 0.010569363832473755, -0.017766401171684265, 0.014092485420405865, 0.022783765569329262, -0.016724545508623123, 0.018767133355140686, -0.02128952369093895, -0.038959965109825134, -0.0019003606867045164, 0.016875339671969414, 0.024675557389855385, 0.016642292961478233, 0.026512516662478447, 0.018616337329149246, 0.0027245928067713976, 0.005579417571425438, -0.011748307384550571, -0.015970569103956223, 0.01406506821513176, -0.004612958524376154, 0.01100804004818201, 0.018191369250416756, -0.02163223922252655, 0.008807803504168987, 0.0004215407825540751, 0.01369493454694748, 0.0018198223551735282, -0.032462067902088165, 0.004787743557244539, -0.00024311422021128237, -0.004499861970543861, 0.002318474231287837, -0.016738252714276314, -0.016066528856754303, -0.031776633113622665, -0.00262177805416286, -0.006607566028833389, 0.015915734693408012, -0.0023904447443783283, 0.024990856647491455, -0.0015636420575901866, -0.0035985189024358988, -0.00018924353935290128, -0.008615882135927677, 0.018355872482061386, 0.015874609351158142, -0.008101807907223701, -0.0420306995511055, 0.0046540843322873116, 0.0011540964478626847, 0.024922313168644905, 0.002073432318866253, -0.010404860600829124, -0.01083668228238821, -0.023153897374868393, -0.019246935844421387, -0.008567902259528637, -0.012844998389482498, 0.019891241565346718, 0.04932369664311409, 0.03569730743765831, 0.0027965630870312452, 0.029583251103758812, -0.016052821651101112, -0.00033736112527549267, 0.007998993620276451, -0.0030518865678459406, -0.0024521334562450647, 0.017834944650530815, -0.020137997344136238, 0.011234233155846596, -0.019411439076066017, -0.0026166371535509825, -0.00032258150167763233, 0.0046575115993618965, -0.0038144299760460854, 0.003996069543063641, 0.0008122370927594602, 0.006158608011901379, 0.005641106516122818, -0.008005847223103046, 0.012563971802592278, 0.02862364612519741, 0.00018292470485903323, -0.02854139544069767, -0.009561778977513313, -0.018835674971342087, 0.0002773858141154051, -0.012529700063169003, -0.015148051083087921, 0.0068234773352742195, -0.025237612426280975, 0.014325532130897045, -0.025114234536886215, 0.0012560543837025762, -0.02782854624092579, -0.019946075975894928, 0.03772618621587753, -0.007628859952092171, 0.008177205920219421, 0.04219520464539528, -0.012447447516024113, -0.0006794346263632178, -0.004678074270486832, 0.02053554728627205, 0.010391151532530785, -0.026361720636487007, 0.010158104822039604, -0.032023388892412186, 0.024689266458153725, 0.00183181744068861, -0.001960335997864604, -0.011597512289881706, 0.005857017822563648, -0.006401936523616314, -0.004174281843006611, -0.02061779983341694, 0.026101255789399147, 0.019877532497048378, 0.011967645026743412, 0.001470251940190792, 0.007484918925911188, -0.01362639106810093, 0.017903488129377365, -0.013345364481210709, -0.016066528856754303, -0.011309630237519741, 0.017464810982346535, 0.0017384273232892156, 0.002395585412159562, -0.016656002029776573, -0.012207546271383762, 0.016806796193122864, -0.007224455010145903, -0.0010487112449482083, 0.2105647623538971, -0.02093309722840786, -0.0050002275966107845, 0.02100164070725441, -0.026375429704785347, 0.02080972120165825, 0.01454487070441246, -0.013523576781153679, -0.02197495475411415, 0.004290805198252201, -0.002940503880381584, 0.014078776352107525, -0.022838599979877472, -0.0002578938438091427, 0.02208462357521057, 0.012721620500087738, -0.03438127785921097, -0.007779655046761036, 0.0045889681205153465, -0.07112044095993042, 0.012584534473717213, -0.004095457028597593, 0.007964721880853176, -0.0049659558571875095, 0.020137997344136238, 0.003403170732781291, 0.008012701757252216, -0.0060660745948553085, 0.025443241000175476, -0.018794549629092216, -0.0440869964659214, -0.0104734031483531, 0.0035779557656496763, -0.017492229118943214, -0.010761285200715065, 0.026142382994294167, 0.013530430383980274, 0.025676287710666656, 0.03333941847085953, -0.004417610354721546, 0.006076355930417776, -0.007669985760003328, 0.016368119046092033, 0.007676840294152498, -0.006497896742075682, 0.02087826281785965, -0.006511605344712734, 0.005253837443888187, -0.013503013178706169, 0.013153443112969398, -0.025360990315675735, 0.008300583809614182, 0.0434015654027462, 0.026348011568188667, -0.007957867346704006, -0.013598973862826824, -0.0063436743803322315, -0.0002805987896863371, -0.009164228104054928, 0.030296102166175842, -0.011439862661063671, 0.008766677230596542, -0.007169620133936405, 0.02744470350444317, -0.022879725322127342, 0.01041856873780489, 0.005195575766265392, 0.0023287557996809483, 0.017464810982346535, -0.019904950633645058, -0.01114512700587511, -0.010096415877342224, -0.004122874233871698, -0.004869995638728142, -0.01097376924008131, -0.015490766614675522, 0.022578135132789612, -0.026526223868131638, -0.010795556008815765, 0.0013571556191891432, 0.008732405491173267, -0.00345457810908556, 0.003046745900064707, 0.0073821041733026505, -0.011398736387491226, -0.026896357536315918, -0.019096139818429947, -0.014092485420405865, -0.019027596339583397, 0.024387676268815994, -0.02017912268638611, -0.018136534839868546, 0.0017958323005586863, -0.009431546553969383, 0.0029576397500932217, -0.012899832800030708, 0.02799304947257042, 0.010679032653570175, 0.004020059481263161, -0.023112772032618523, -0.005264118779450655, -0.015339971520006657, -0.0034631460439413786, 0.007622005417943001, -0.013482450507581234, -0.001991180470213294, 0.02200237289071083, 0.0077865091152489185, 0.012913541868329048, 0.011618074961006641, 0.032297562807798386, -0.012927250936627388, -0.0017598470440134406, -0.025470659136772156, -0.0012868988560512662, 0.012474865652620792, -0.016258450224995613, -0.019000180065631866, -0.003948089201003313, 0.004335358273237944, 0.02027508243918419, -0.014873878099024296, 0.005531437695026398, 0.006333393044769764, 0.009527507238090038, -0.017505938187241554, -0.013455033302307129, 0.006144899409264326, 0.0029113730415701866, -0.0017444248078390956, 0.008142934180796146, -0.05094131827354431, 0.005767911672592163, 0.002260212553665042, -0.02845914289355278, 0.022632969543337822, -0.011426153592765331, -0.024812644347548485, 0.015559310093522072, -0.02209833264350891, 0.013674371875822544, -0.0031941139604896307, -0.00016632440383546054, 0.009335585869848728, 0.014202154241502285, 0.00042261177441105247, 0.003418592968955636, -0.015614144504070282, -0.007978430017828941, -0.026498807594180107, -0.015490766614675522, 0.0008079531835392118, -0.0009193358710035682, -0.0009938766015693545, -0.005192148499190807, -0.0003482852189335972, 0.000906484026927501, -0.030049346387386322, 0.00515102269127965, 0.02109760232269764, -0.04510143771767616, -0.001479676691815257, 0.017094677314162254, 0.008499358780682087, -0.018396999686956406, -0.016998717561364174, -0.1756899654865265, 0.004636948462575674, 0.00195519533008337, -0.0023013383615761995, 0.023428071290254593, 0.02181045152246952, 0.023044228553771973, -0.0017529927426949143, -0.0021334076300263405, -0.0011592371156439185, 0.025923043489456177, 0.009068267419934273, -0.029830006882548332, -0.02064521610736847, 0.006014666985720396, 0.0010624198475852609, -0.006494469475001097, 0.023784495890140533, 0.015106924809515476, 0.017259182408452034, 0.01072015892714262, -0.019055014476180077, 0.018451834097504616, 0.006090064533054829, 0.006203161086887121, 4.318758146837354e-05, -0.014202154241502285, 0.03386034816503525, 0.019562233239412308, -0.025772249326109886, -0.017478520050644875, 0.017176929861307144, -0.006405363325029612, -0.017725275829434395, 0.03586180880665779, 0.008478796109557152, -0.000255751860095188, -0.0019432001281529665, -0.024757809937000275, 0.015257719904184341, 0.01446261815726757, 0.013509867712855339, 0.015819774940609932, 0.0026389136910438538, -0.003982360940426588, 0.03427160903811455, 0.0046575115993618965, -0.008321146480739117, 0.012707912363111973, -0.012036188505589962, 0.015970569103956223, 0.004403901752084494, 0.0104734031483531, 0.01119996141642332, 0.02906232327222824, -0.004482726100832224, 0.0016373260878026485, -0.0007861049962230027, -0.019932366907596588, -0.0021642521023750305, -0.002423002617433667, -0.002866819966584444, 0.008972306735813618, -0.017588188871741295, -0.0028925237711519003, 0.023729661479592323, -0.008471941575407982, 0.006984553765505552, -0.014983546920120716, 0.01388685591518879, 0.023263568058609962, 0.031721800565719604, 0.031721800565719604, 0.0003155129961669445, 0.00512017821893096, -0.007635714020580053, -0.016518915072083473, 0.026841523125767708, 0.004369630012661219, -0.013345364481210709, -0.03328458592295647, 0.03706816956400871, -0.00391039066016674, -0.008506213314831257, -0.0027914224192500114, 0.0014993828954175115, -0.009945620782673359, -0.02011057920753956, -0.019904950633645058, 0.006285412702709436, 0.011179398745298386, -0.019507398828864098, -0.02015170454978943, -0.01102860365062952, 0.001531084068119526, 0.015463349409401417, 0.012461156584322453, -0.022989394143223763, 0.012324070557951927, -0.007896178402006626, -0.005809037480503321, -0.03377809748053551, -0.01094635110348463, 0.018479250371456146, 0.03490220382809639, 0.010014164261519909, -0.0017187211196869612, 0.015449641272425652, 0.02718423865735531, 0.02015170454978943, -0.024908604100346565, 0.005051635205745697, 0.015463349409401417, 0.007402667310088873, 0.003869264619424939, 0.014092485420405865, 0.0014959556283429265, -0.013345364481210709, 0.0053120991215109825, -0.018986470997333527, 0.047020647674798965, -0.015847191214561462, 0.004818588029593229, 0.004534133709967136, -0.0039994968101382256, -0.026745563372969627, -0.11624929308891296, -0.014133610762655735, 0.019082430750131607, 0.01405135914683342, -0.002174533437937498, 0.024812644347548485, -0.0026988890022039413, 0.02851397730410099, -0.008252603001892567, 0.025909336283802986, -0.024373967200517654, -0.02718423865735531, 0.00024397100787609816, -0.005178439896553755, 0.0029816299211233854, -0.026512516662478447, -0.0016724544111639261, -0.025552911683917046, 0.013352218084037304, 0.030378352850675583, 0.006364237517118454, -0.008561047725379467, 0.002998765790835023, -0.03333941847085953, 0.016505206003785133, 0.015943152830004692, -0.019123557955026627, -0.003135852050036192, 0.02071375958621502, 0.02176932618021965, -0.01107658352702856, -0.006439635064452887, 0.012995793484151363, -0.023551449179649353, -0.0007586877327412367, -0.023428071290254593, -0.029939675703644753, 0.008108662441372871, 0.010576218366622925, -0.024401385337114334, 0.0001688947668299079, 0.0005200716550461948, 0.017094677314162254, -0.01447632722556591, 0.008156642317771912, 0.0005697654560208321, -0.017272889614105225, 0.0006331679760478437, 0.0009081976022571325, -0.012509136460721493, -0.023674827069044113, 0.016189906746149063, -0.03577955812215805, 0.002765718847513199, 0.03539571538567543, 0.001063276664353907, 0.02747212164103985, -0.0046883560717105865, -0.018808258697390556, 0.0031735508237034082, -0.013729206286370754, 0.008396543562412262, 0.0049968003295362, 0.011254795826971531, -0.0013186001451686025, 0.0008919186075218022, -0.015668978914618492, -0.015614144504070282, 0.019397730007767677, 0.017930904403328896, -0.0029045187402516603, 0.007347832899540663, -0.03597148135304451, 0.023222440853714943, -0.018054282292723656, -0.015148051083087921, -0.02230396308004856, -0.004606103990226984, 0.02230396308004856, 0.011768870055675507, 0.005846736487001181, -0.02867848053574562, -0.011714035645127296, -0.01368808001279831, 0.009040850214660168, 0.02049442194402218, 0.008129225112497807, -0.014380366541445255, 0.007745383307337761, -0.032653987407684326, -0.005109896883368492, 0.018904218450188637, -0.008410252630710602, -0.04129043221473694, 0.002042587846517563, 0.02922682650387287, 0.02867848053574562, 0.005860445089638233, -0.012029333971440792, -0.0009630321874283254, 0.0020682914182543755, 0.016902757808566093, -0.052476685494184494, 0.02160482108592987, -0.003341481788083911, 0.0049385386519134045, -0.003115289146080613, 0.004993373062461615, 0.019959785044193268, -0.0217007827013731, -0.01422957144677639, 0.006607566028833389, -0.012790163978934288, 0.029857425019145012, -0.016847921535372734, -0.006175743881613016, -0.017766401171684265, -0.004400474485009909, -0.018150243908166885, -0.017889779061079025, 0.00046352349454537034, -0.017519645392894745, 0.015408514998853207, -0.003185546025633812, 0.0274035781621933, -0.016779379919171333, -0.012063605710864067, -0.003855555783957243, 0.0046917833387851715, 0.02826722152531147, 0.007491773460060358, -0.009548069909214973, 0.026334304362535477, -0.027348743751645088, -0.0010692741489037871, 0.0023253285326063633, -0.0007788222865201533, 0.027101987972855568, -0.009150519035756588, 0.015202885493636131, -0.016080237925052643, 0.047623828053474426, -0.012934104539453983, 0.005428622476756573, 0.022893434390425682, -0.025155359879136086, 0.015134342014789581, 0.03399743512272835, -0.010747576132416725, 0.009623467922210693, 0.018232494592666626, 0.0037321781273931265, -0.008492504246532917, 0.0288429856300354, 8.219831215683371e-05, -0.019822698086500168, -0.0008259457536041737, -0.046883560717105865, 0.02810271829366684, -0.008677571080625057, 0.02027508243918419, -0.039014797657728195, 0.010281482711434364, -0.014805334620177746, -0.005853590555489063, -0.0053772153332829475, 0.004479299299418926, -0.007546607870608568, -0.010199230164289474, -0.012166420929133892, -0.015710104256868362, -0.024812644347548485, 0.004088602960109711, 0.017505938187241554, -0.0003397173131816089, 0.008910617791116238, 0.01049396675080061, 0.019301770254969597, -0.0019260643748566508, 0.017437394708395004, -0.038768041878938675, 0.004050903953611851, 0.0029233682435005903, -0.02145402692258358, -0.024716682732105255, -0.02093309722840786, 0.03588922694325447, -0.010761285200715065, 0.0034288743045181036, 0.0018232495058327913, -0.0049351113848388195, 0.0057576303370296955, 0.016546331346035004, -0.006432780995965004, -0.0022893433924764395, -0.0010555655462667346, 0.01043227780610323, 0.010624198243021965, -0.020137997344136238, 0.013571556657552719, 0.014832751825451851, 0.03446352854371071, 0.0027520100120455027, 0.010322608053684235, 0.008471941575407982, -0.015929443761706352, -0.005781620275229216, -0.009081976488232613, -0.024716682732105255, -0.016724545508623123, 0.0057576303370296955, 0.017574479803442955, 0.010507674887776375, -0.004092029761523008, 0.030981533229351044, 0.016834214329719543, -0.010679032653570175, -0.0017547063762322068, 0.009829097427427769, -0.019397730007767677, -0.00684746727347374, 0.03536830097436905, 0.02023395709693432, 0.03424419090151787, 0.005678805522620678, 0.013269966468214989, 0.015065798535943031, 0.005898143630474806, 0.005613689310848713, 0.01100804004818201, 0.006261422764509916, -0.0038966818246990442, 0.003773303935304284, 0.003087871940806508, -0.04087917506694794, -0.000977597665041685, 0.001515661831945181, -0.03446352854371071, -0.0010727012995630503, 0.002539526205509901, -0.01424328051507473, 0.03440869599580765, 0.0136332456022501, -0.018863093107938766, -0.008718697354197502, 0.026786688715219498, 0.017533354461193085, 0.013359072618186474, -0.0037390324287116528, 0.014572287909686565, -0.030049346387386322, 0.017533354461193085, -0.016422955319285393, 0.032626569271087646, -0.009726282209157944, -0.012940959073603153, 0.02881556749343872, -0.011323339305818081, 0.046225544065237045, -0.010617343708872795, -0.030296102166175842, 0.02748582884669304, -0.02061779983341694, 0.024373967200517654, 0.0060729291290044785, 0.001112113706767559, 0.00023775927547831088, 0.012721620500087738, 0.0004091173177585006, 0.007841343991458416, -0.023633699864149094, -0.0067583611235022545, 0.014133610762655735, -0.006292267236858606, -0.004366202745586634, 0.015915734693408012, 0.00512017821893096, -0.0031786917243152857, -0.02209833264350891, 0.013030065223574638, -0.012975230813026428, -0.017368851229548454, 0.0214266087859869, -0.02197495475411415, -0.026375429704785347, 0.015024673193693161, 0.008759822696447372, -0.02150886133313179, 0.005291536450386047, -0.009040850214660168], "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7": [-0.0031470113899558783, -0.015946678817272186, 0.005928805563598871, 0.008935874328017235, -0.014813480898737907, 0.02432960644364357, -0.020069878548383713, -0.012198936194181442, -0.02592700533568859, -0.02610449306666851, 0.03689034655690193, 0.01116813626140356, 0.008717426098883152, -0.01271092239767313, -0.005710358265787363, 0.01219210959970951, 0.03970285877585411, 0.0008580043213441968, 0.03593463823199272, -0.016247043386101723, -5.021202741772868e-05, 0.00818496011197567, 0.0010410395916551352, 0.02965426817536354, -0.011919049546122551, 0.03377746790647507, 0.020411202684044838, -0.015851108357310295, 0.008260051719844341, -0.035770803689956665, -0.0020871988963335752, 0.01886841468513012, -0.0015905719483271241, 0.001514627248980105, -0.0366445928812027, 0.006355461198836565, 0.007290690205991268, -0.02200859971344471, 0.004583987407386303, 0.0032494086772203445, -0.0014275895664468408, 0.006157493218779564, -0.014376585371792316, -0.005106213968247175, -0.01933261752128601, 0.018841110169887543, -0.013263868167996407, -0.010171468369662762, -0.027401527389883995, 0.003292074427008629, 0.023838099092245102, 0.006055095698684454, -0.028207052499055862, 0.014130832627415657, 0.004430391360074282, -0.007044936530292034, 0.020848097279667854, 0.02878047712147236, -0.0015973984263837337, 0.023455815389752388, 0.007106374949216843, 0.0011135709937661886, 0.00437919283285737, 0.013878252357244492, -0.016806816682219505, -0.008512631990015507, -0.002885898109525442, -0.009884756058454514, -0.019701248034834862, -0.022786820307374, 0.033040206879377365, 0.012724575586616993, -0.015496130101382732, 0.02319641038775444, 0.02801591157913208, -0.02374252863228321, -0.01380316074937582, 0.0024199902545660734, -0.020889056846499443, 0.009659482166171074, 0.001193782314658165, -0.03424166887998581, 0.00023850046272855252, 0.009966674260795116, 0.013564233668148518, -0.02682810090482235, 0.019523758441209793, 0.01791270636022091, -0.0026281983591616154, -0.01088824961334467, 0.010908729396760464, 0.026623306795954704, 0.021899376064538956, 0.008567243814468384, -0.002889311406761408, 0.01473156362771988, -0.026268329471349716, 0.017161794006824493, -0.00816448125988245, -0.017202751711010933, -0.03159299120306969, -0.015236723236739635, -0.012929369695484638, -0.01475886907428503, -0.02387905865907669, 0.002583826193585992, -0.010942861437797546, -0.010990647599101067, 0.03205719217658043, -0.005307595245540142, -0.02183111198246479, 0.015728231519460678, -0.025217050686478615, -0.04920533299446106, 0.00016255576338153332, -0.01641087979078293, 0.020930014550685883, -0.022855084389448166, -0.03841948136687279, -0.009331810288131237, -0.006184799131006002, 0.013400398194789886, 0.0011323438957333565, -0.01724371127784252, 0.00580934202298522, -0.0015888652997091413, -0.004935551434755325, -0.023947322741150856, -0.003380818758159876, -0.010485487058758736, 0.056960225105285645, 0.024315953254699707, 0.006495404057204723, 0.005044775549322367, -0.0010077604092657566, 0.020069878548383713, -0.03383208066225052, -0.002001867862418294, -0.01095651462674141, -0.02883508987724781, 0.009761879220604897, 0.004529375582933426, 0.011850784532725811, -0.014048914425075054, -0.03041883558034897, 0.025640292093157768, 0.03415974974632263, 0.006498817354440689, -0.028534723445773125, 0.01824037916958332, 0.008676467463374138, -0.00891539454460144, 0.025858739390969276, -0.029217373579740524, 0.022213395684957504, -0.018062889575958252, 0.0012569272657856345, -0.0024046306498348713, -0.0008537377580069005, -0.004532788880169392, 0.012069232761859894, 0.022527413442730904, 0.015168458223342896, 0.0022203156258910894, 0.024998603388667107, 0.03175682574510574, 0.015072887763381004, -0.009789185598492622, -0.02633659541606903, -0.008690120652318, 0.021885722875595093, 0.035634271800518036, -0.022404536604881287, 0.004587400704622269, -0.0204248558729887, -0.007536443881690502, 0.03721801936626434, 0.02715577371418476, -0.01066297572106123, 0.0025445737410336733, -0.036863040179014206, -0.008997312746942043, 0.023701569065451622, 0.02674618363380432, 0.006191625725477934, -0.0029285638593137264, -0.015386906452476978, -0.019714899361133575, 0.0029456301126629114, -0.005669399164617062, 0.007311169523745775, 0.004949204623699188, -0.008655987679958344, -0.02710116095840931, -0.6369933485984802, -0.027224037796258926, -0.020315630361437798, -0.008949527516961098, -0.007352128624916077, 0.002303940011188388, 0.015468823723495007, -0.010226080194115639, -0.021080197766423225, 0.0028227532748132944, -0.029763491824269295, 0.01996065303683281, -0.007843635976314545, -0.027224037796258926, -0.023851752281188965, -0.01081998459994793, 0.01052644569426775, -0.018581703305244446, -0.01818576641380787, -0.02095732092857361, 0.0015496129635721445, -0.010669802315533161, -5.66385242564138e-05, 0.01555074192583561, -0.010697108693420887, -0.015973983332514763, 0.01991969533264637, -0.0013772441307082772, 0.008417060598731041, 0.011468501761555672, -0.03970285877585411, 0.03470586985349655, 0.006829902064055204, 0.02559933438897133, 0.04887766018509865, -0.006515883840620518, -0.03437819704413414, 0.0010777319548651576, -0.003450790187343955, 0.008976832963526249, -0.010451355017721653, -0.01066297572106123, 0.03907482326030731, 0.006846968550235033, -0.0005614787223748863, 0.005106213968247175, 0.027442485094070435, -0.0002585532783996314, 0.003469563089311123, 0.0026572109200060368, 0.004713690839707851, 0.0027357153594493866, -0.014485809952020645, 0.009174801409244537, -0.005686465185135603, -0.007672973442822695, 0.03323134779930115, -0.007611535023897886, 0.013106859289109707, 0.0025923592038452625, 0.024548053741455078, 0.031265318393707275, -0.0204248558729887, -0.017107181251049042, -0.03355902060866356, 0.015496130101382732, -0.0001814352726796642, 0.009427381679415703, 0.024315953254699707, 0.004485003184527159, 0.023455815389752388, 0.011789346113801003, -0.0012347411829978228, -0.02938120812177658, 0.008403408341109753, 0.01677951030433178, 0.03377746790647507, -0.02056138403713703, 0.0015427864855155349, 0.0013908970868214965, 0.0006075575365684927, -0.014431198127567768, -0.023947322741150856, -0.008669640868902206, 0.012226241640746593, -0.011523113586008549, 0.0005580654833465815, 0.020220059901475906, 0.011140829883515835, 0.005362207069993019, 0.012089711613953114, 0.022841433063149452, -0.01277918741106987, -0.003986669704318047, 0.04661126807332039, 0.02891700714826584, 0.0007692599901929498, -0.0020633062813431025, 0.009830144234001637, -0.021366911008954048, -0.012854279018938541, -0.013250214979052544, 0.03055536560714245, -0.0050345356576144695, 0.0031965035013854504, -0.019974306225776672, -0.04095893353223801, -0.0060824016109108925, 0.04696624353528023, -0.026950977742671967, -0.02069791406393051, -0.0062598902732133865, -0.016315309330821037, 0.0006681426311843097, 0.028261665254831314, -0.01691604033112526, 0.012294506654143333, 0.0008652574615553021, 0.024725543335080147, -0.02815243974328041, 0.015264029614627361, -0.0035361212212592363, 0.017489464953541756, -0.012144324369728565, 0.022363577038049698, 0.03246678039431572, 0.01691604033112526, -0.007461352273821831, 0.0031470113899558783, -0.012164803221821785, -0.007242904976010323, -0.013038594275712967, 0.011809825897216797, 0.003611212596297264, 0.0098437974229455, -0.013461836613714695, 0.022977961227297783, 0.004184637684375048, 0.012949849478900433, -0.030582670122385025, 0.002442176453769207, -0.008007471449673176, 0.007611535023897886, 0.019209740683436394, -0.018349602818489075, -0.0176942590624094, -0.01941453479230404, -0.0006020109867677093, -0.03361363336443901, 0.006410073023289442, -0.005898086354136467, -0.0014796415343880653, -0.008171306923031807, -0.006655826698988676, 0.013113684952259064, -0.015523435547947884, -0.02710116095840931, -0.00030825863359496, 0.0059595247730612755, -0.03014577552676201, 0.01073124073445797, 0.008601375855505466, -0.023442164063453674, 0.02551741525530815, 0.027770157903432846, -0.02251376025378704, -0.008485325612127781, 0.011065738275647163, -0.011932702735066414, -0.04101354628801346, 0.012656310573220253, -0.008294183760881424, 0.012069232761859894, 0.040003225207328796, -0.01555074192583561, 0.008034777827560902, -0.011946355924010277, -0.008772037923336029, -0.006550016347318888, 0.01439023856073618, -0.006324741989374161, 0.02751075103878975, 0.005921979434788227, -0.005529456306248903, 0.017489464953541756, 0.002606012159958482, 0.00293880351819098, 0.004157331772148609, 0.0028415259439498186, 0.026664266362786293, 0.012342291884124279, 0.003665824653580785, -0.012908890843391418, -0.015168458223342896, -0.01088824961334467, 0.008731079287827015, 0.023264674469828606, 0.031046871095895767, 0.013762202113866806, 0.023223714902997017, 0.011871264316141605, 0.019537411630153656, 0.010744893923401833, 0.005201784428209066, 0.0016289709601551294, -0.0176942590624094, 0.005706944968551397, -0.0066080414690077305, 0.03268522769212723, -0.024070199579000473, 0.00045694809523411095, -0.028070522472262383, 0.004621533211320639, -0.018704580143094063, 0.016574716195464134, 0.021230380982160568, 0.00838975515216589, 0.009324983693659306, 0.010014459490776062, 0.001050426042638719, 0.015373253263533115, 0.0034763894509524107, -0.014144484885036945, -0.020206406712532043, -0.008280531503260136, -0.01473156362771988, 0.012806493788957596, 0.0434710830450058, 0.013379918411374092, -0.010376263409852982, 0.014308321289718151, -0.0049457913264632225, 0.002954163122922182, 0.02337389811873436, 0.013994302600622177, 0.010150989517569542, 0.013270694762468338, -0.0028620054945349693, 0.032439474016427994, -0.03233025223016739, -0.01548247691243887, -0.007174639962613583, 0.02401558868587017, -0.017789829522371292, -0.0037613953463733196, 0.0176396481692791, 0.014253709465265274, 0.006369114387780428, 0.013257041573524475, 0.006560255773365498, -0.020943667739629745, 0.01116813626140356, -0.010014459490776062, -0.003955950494855642, 0.011734734289348125, -0.02946312725543976, -0.01462233904749155, 0.009522952139377594, 0.015100193209946156, 0.036589980125427246, 0.01641087979078293, -0.003483216045424342, 0.02087540365755558, 0.005085734184831381, 0.04579208791255951, 0.00019391495152376592, 0.01125688012689352, 0.012274026870727539, -0.016697591170668602, -0.01991969533264637, -0.012826972641050816, -0.013134164735674858, 0.008772037923336029, 0.0031760239508002996, -0.0022203156258910894, -0.007509137969464064, 0.026705224066972733, -0.007120028138160706, 0.004229010082781315, -0.0023107666056603193, -0.028316276147961617, -0.026664266362786293, 0.028370888903737068, 0.003203329863026738, -0.0007338475552387536, -0.020110836252570152, -0.023633304983377457, -0.0005734250880777836, -0.018090195953845978, 0.032712534070014954, -0.01724371127784252, 0.014513115398585796, 0.013188776560127735, -0.002124744700267911, -0.003805767511948943, -0.007475005462765694, 0.023401204496622086, -0.02792033925652504, 0.03060997650027275, 0.006147253327071667, -0.004781955387443304, -0.002140104304999113, -0.018759191036224365, 0.016260696575045586, 0.024111159145832062, -0.000523079710546881, -0.009591217152774334, -0.025776822119951248, 0.02200859971344471, -0.014499462209641933, -0.009324983693659306, -0.03609847277402878, -0.010546925477683544, -0.01045818068087101, 0.0248347669839859, 0.010608363896608353, -0.010717587545514107, 0.01668393984436989, 0.009236239828169346, -0.007905074395239353, -0.02237723022699356, -0.007905074395239353, -0.022814126685261726, 0.012267200276255608, 0.10507331788539886, 0.026937326416373253, -0.018895721063017845, 0.009113362990319729, -0.007324822712689638, 0.015591700561344624, -0.022404536604881287, -0.025667598471045494, 0.031483765691518784, 1.8252858353662305e-05, 0.01212384458631277, -0.01452676858752966, 0.042679209262132645, -0.012799667194485664, 0.0217355415225029, -0.012683616951107979, -0.018158460035920143, 0.014990969561040401, 0.00868329405784607, 0.009113362990319729, 0.010929209180176258, 0.005829821806401014, 0.018158460035920143, 0.015578048303723335, -0.04366222396492958, 0.0018107262440025806, 0.01978316530585289, -0.0007777931168675423, 0.013912384398281574, -0.018062889575958252, -0.01366663072258234, 0.016124166548252106, 0.025094173848628998, 0.00602437648922205, -0.006597801577299833, 0.0059458720497787, -0.0015154805732890964, 0.012239894829690456, -0.010990647599101067, -0.02060234360396862, 0.027387874200940132, 0.01800827868282795, 0.0088471295312047, -0.0014583086594939232, -0.005744490306824446, -0.0006715558702126145, -0.015072887763381004, 0.0052256775088608265, -0.036863040179014206, -0.015168458223342896, 0.038774456828832626, -0.014171791262924671, -0.033040206879377365, -0.007017630618065596, 0.007713932543992996, 0.008690120652318, -0.028725866228342056, 0.00058835803065449, -0.018718233332037926, 0.04194194823503494, 0.003169197589159012, 0.000333857984514907, 0.016219737008213997, -0.015195764601230621, -0.024042895063757896, -0.018568050116300583, -0.03336787968873978, -0.00591173954308033, -0.020807137712836266, 0.011775693856179714, -0.017885401844978333, -0.006256476975977421, -0.030091162770986557, 0.003239169018343091, 0.0021145050413906574, 0.0036589980591088533, 0.02177649922668934, -0.017448505386710167, 0.0007539003854617476, -0.016765857115387917, -0.002867125440388918, -0.029490431770682335, 0.015741882845759392, -0.03170221671462059, -0.015332294628024101, -0.003420070977881551, -0.006894753780215979, 0.012103364802896976, -0.028343582525849342, 0.02023371309041977, 0.009993979707360268, 0.021134810522198677, 0.01007589790970087, -0.013461836613714695, 0.0002905524452216923, -0.011120351031422615, -0.010041764937341213, 0.0007231811759993434, 0.004710277542471886, -0.02091636136174202, 0.014335626736283302, -0.02633659541606903, 0.004829741083085537, -0.011127176694571972, -0.009959847666323185, -0.016301656141877174, 0.009010965935885906, 0.02273220755159855, -0.020028918981552124, -0.018363256007432938, 0.00957073736935854, -0.03110148385167122, -0.00030655201408080757, 0.002018934115767479, 0.004512309096753597, 0.0035702537279576063, 0.0026077188085764647, 0.021257687360048294, 0.008724252693355083, -0.005553348921239376, 0.0028381128795444965, -0.03096495382487774, -0.0021298646461218596, -0.0013567646965384483, -0.021407868713140488, -0.013966996222734451, -0.008608202449977398, -0.012943022884428501, 0.024343259632587433, 0.0059595247730612755, -0.009700440801680088, 0.008772037923336029, 0.016083208844065666, -0.015223070047795773, -0.026213718578219414, -0.008744732476770878, -0.009311331436038017, 0.017271017655730247, 0.0001445295783923939, 0.0032818345353007317, -0.01307272631675005, -0.014431198127567768, -0.020902710035443306, -0.018035583198070526, 0.010246559977531433, -0.020902710035443306, -0.024589013308286667, 0.013728069141507149, 0.0024199902545660734, -0.0050686681643128395, -0.013338959775865078, -0.036398839205503464, -0.032767146825790405, 0.010949688032269478, -0.012506128288805485, -0.02610449306666851, -0.008232745341956615, -0.012198936194181442, 0.03014577552676201, 0.010499140247702599, 0.040358204394578934, -0.016028596088290215, 0.00987110286951065, 0.007748065050691366, -0.016670286655426025, 0.0025582266971468925, -0.011570898815989494, -0.009679961018264294, -0.03437819704413414, -0.012581218965351582, 0.04876843839883804, 0.015905719250440598, 0.017066221684217453, -0.0009070697124116123, -0.006198451854288578, 0.036589980125427246, -0.011065738275647163, -0.007311169523745775, -0.020575037226080894, -0.03110148385167122, -0.012103364802896976, -0.00043262873077765107, -0.011680122464895248, -0.009563910774886608, -0.023633304983377457, -0.0066421739757061005, 0.05444807559251785, 0.013721242547035217, 0.004874113015830517, -0.012963502667844296, 0.0027340089436620474, -0.00477512925863266, 0.008772037923336029, 0.03273984044790268, 0.0231008380651474, -0.004467937164008617, 0.004007149022072554, 0.008587723597884178, 0.02547645755112171, -0.012540260329842567, -0.0036692379508167505, -0.0004936404875479639, -0.008109868504106998, -0.019496452063322067, -0.032084498554468155, -0.005140346009284258, -0.013994302600622177, -0.008041604422032833, 0.02424768917262554, -0.028234358876943588, -0.016342613846063614, -0.009693614207208157, 0.0176396481692791, -0.02550376206636429, -0.03456934168934822, 0.004287035204470158, 0.009598043747246265, 0.0037443293258547783, -0.01336626522243023, -0.021448828279972076, 0.012867932207882404, -0.014035261236131191, 0.04038550704717636, 0.010997474193572998, -0.0031043458729982376, 0.013414050452411175, -0.010000806301832199, 0.005444124806672335, 0.003938884008675814, 0.004942378029227257, -0.013966996222734451, 0.027906687930226326, 0.016124166548252106, -0.004269968718290329, 0.011174962855875492, -0.019851429387927055, -0.001692115911282599, -0.05220898613333702, -0.03134723752737045, 0.014171791262924671, -0.004246076103299856, -0.012512953951954842, -0.019769512116909027, -0.02206321246922016, -0.03134723752737045, 3.250582085456699e-05, 0.009625349193811417, 0.02869855985045433, -0.026527736335992813, -0.013455010019242764, -0.03159299120306969, 0.011434368789196014, 0.014362933114171028, 0.01828133687376976, 0.02159901149570942, -0.043006882071495056, -0.03934788331389427, 0.009953021071851254, -0.02255471982061863, 0.00605850899592042, 0.0020069878082722425, 0.0207388736307621, -0.00795968621969223, 0.0022578611969947815, 0.0038876854814589024, 0.007406740449368954, -0.0003959363675676286, 0.006478338036686182, -0.017789829522371292, 0.0251487847417593, 0.006218931637704372, 0.011304665356874466, 0.008451193571090698, 0.012669963762164116, 0.004618119914084673, 0.002479722024872899, 0.008348795585334301, -0.008737905882298946, -0.004430391360074282, 0.003542947815731168, 0.005113040097057819, 0.025981616228818893, 0.014472156763076782, -0.009973500855267048, -0.028807783499360085, -0.005328074563294649, 0.0020308804232627153, 0.004290448501706123, 0.007829982787370682, -0.040276285260915756, -0.04366222396492958, -0.006249650847166777, -0.023483121767640114, 0.014649645425379276, 0.00019167500431649387, 0.026677919551730156, 0.0003643638629000634, 0.02659600041806698, -0.02760632149875164, 0.01596033200621605, -0.014076219871640205, 0.0014890278689563274, -0.02659600041806698, -0.0009343756828457117, 0.0023995109368115664, -0.002797153778374195, 0.01387142576277256, -0.015933025628328323, -0.03918404504656792, 0.0022356752306222916, 0.021953988820314407, 0.019305311143398285, 0.01832229644060135, 0.004621533211320639, 0.0003408977936487645, 0.007358955219388008, 0.010642495937645435, -0.014717910438776016, -0.02979079820215702, 0.00690158037468791, 0.01102477964013815, 0.0013337252894416451, 0.01750311814248562, -0.01860900968313217, 0.0021657035686075687, 0.01221258845180273, 0.017352934926748276, 0.01387142576277256, -0.03041883558034897, 0.009625349193811417, 0.00809621624648571, 0.01619243249297142, 0.0035668404307216406, -0.011400236748158932, -0.00795968621969223, -0.02192668244242668, -0.011584552004933357, -0.0038535529747605324, 0.015728231519460678, -0.011939529329538345, 0.01615147292613983, 0.006812836043536663, -0.02101193368434906, 0.0016494503943249583, 0.00024191370175685734, 0.0041743977926671505, 0.010656149126589298, -0.011352451518177986, -0.048222318291664124, -0.009557084180414677, -0.010171468369662762, 0.03137454390525818, -0.012581218965351582, -0.0014096699887886643, -0.008990486152470112, -0.018076542764902115, -0.020179102197289467, -0.020110836252570152, -0.008587723597884178, 0.016451839357614517, 0.040358204394578934, 0.02177649922668934, -0.0011784227099269629, 0.028070522472262383, -0.00852628517895937, 0.008744732476770878, 0.008225919678807259, -0.0029985352884978056, 0.008041604422032833, 0.018035583198070526, -0.006881101056933403, -0.0020308804232627153, -0.017393894493579865, -0.006075575016438961, 0.0023261262103915215, -0.005075494758784771, 0.00832149013876915, 0.016438186168670654, 0.00035156417288817465, 0.01093603577464819, 0.004863873589783907, 0.006444205529987812, 0.02163996919989586, 0.022090518847107887, 0.0009309624438174069, -0.02028832584619522, -0.016110513359308243, -0.0026486776769161224, 0.006717265117913485, -0.018772844225168228, -0.029818104580044746, 0.0040208022110164165, -0.013407224789261818, -0.0023295392747968435, -0.026541389524936676, -0.002066719578579068, -0.01873188652098179, -0.02319641038775444, 0.047048162668943405, -0.00222884863615036, -0.009099709801375866, 0.03131993114948273, -0.014513115398585796, -0.010642495937645435, -0.001354204723611474, 0.021817458793520927, 0.015728231519460678, -0.017407547682523727, 0.012581218965351582, -0.03418705612421036, 0.022445496171712875, -0.01668393984436989, 0.00039700299385003746, -0.0169569980353117, 0.00841023400425911, -0.01714814081788063, 0.003271594876423478, -0.012041926383972168, 0.026636959984898567, 0.023947322741150856, 0.011802999302744865, -0.008014298044145107, 0.010608363896608353, -0.011318318545818329, 0.02069791406393051, -0.019892388954758644, -0.018527090549468994, 0.010321651585400105, 0.0034542034845799208, 0.016861427575349808, 0.0008678174344822764, -0.026459472253918648, -0.013338959775865078, 0.003201623447239399, -0.019714899361133575, -0.0016340907895937562, 0.21320490539073944, -0.02387905865907669, -0.0033705788664519787, 0.015332294628024101, -0.03336787968873978, -0.0006118240999057889, 0.0017032090108841658, -0.008655987679958344, -0.00698008481413126, 0.005614787340164185, -0.00888808909803629, 0.02538088522851467, -0.01732562854886055, -0.004737583454698324, 0.01964663527905941, 0.0027800877578556538, -0.022568373009562492, -0.008068909868597984, -0.0014455090276896954, -0.08164481073617935, 0.007406740449368954, 0.0020650129299610853, -0.006355461198836565, -0.010362610220909119, 0.01896398700773716, 0.008062083274126053, -0.007604708895087242, -0.012301333248615265, 0.018772844225168228, -0.010191948153078556, -0.03579811006784439, -0.011850784532725811, 0.009031444787979126, -0.021953988820314407, -0.018895721063017845, 0.010922382585704327, 0.0010734654497355223, 0.01462233904749155, 0.015659965574741364, -0.030391529202461243, 0.0024148705415427685, 0.0010871184058487415, 0.01687508076429367, 0.0004590813769027591, 0.00037972343852743506, 0.024889379739761353, -0.011714255437254906, -0.024029241874814034, -0.020452160388231277, 0.016520103439688683, -0.019441841170191765, 0.015291335061192513, 0.049232639372348785, 0.02355138771235943, 0.012451515533030033, -0.019892388954758644, -0.006625107489526272, -0.005669399164617062, -0.005601134151220322, 0.022035906091332436, -0.012635830789804459, 0.011645990423858166, -0.007877768017351627, 0.022500107064843178, -0.024274995550513268, 0.026759836822748184, 0.005881020333617926, 0.010028112679719925, 0.03415974974632263, -0.025258008390665054, -0.0006446765619330108, -0.013420877046883106, -0.00693571288138628, 0.0025377473793923855, -0.00882665067911148, -0.022445496171712875, 0.03320404142141342, -0.017544075846672058, 0.008655987679958344, -0.0018516851123422384, 0.016315309330821037, -0.015223070047795773, 0.011611857451498508, -0.012431036680936813, -0.013673457317054272, -0.026295635849237442, -0.016260696575045586, -0.007242904976010323, -0.018172113224864006, 0.010034939274191856, -0.021981295198202133, -0.016520103439688683, -0.002073545940220356, -0.017612341791391373, 0.00011967688624281436, -0.00802795123308897, 0.023797141388058662, 0.01469060406088829, 0.001461721956729889, -0.004874113015830517, 0.002672570524737239, -0.02319641038775444, 0.007222425192594528, 0.0015436398098245263, -0.018800150603055954, 0.007857289165258408, 0.005345141049474478, 0.00235343212261796, -0.00456009479239583, -0.0010777319548651576, 0.028671253472566605, -0.01541421189904213, -0.00016063581279013306, -0.01116813626140356, 0.008833476342260838, 0.01841786690056324, -0.016383573412895203, -0.023756181821227074, 0.003809180809184909, 7.941126386867836e-05, 0.008867609314620495, -0.015755536034703255, 0.005597720853984356, 0.010123683139681816, 0.0065739089623093605, -0.01329800020903349, -0.02155805192887783, 0.015018275938928127, 0.0016460372135043144, -0.01824037916958332, 0.016765857115387917, -0.02405654639005661, -0.007700279355049133, 0.015154805965721607, -0.02883508987724781, 0.021435175091028214, -0.010635670274496078, -0.019564718008041382, 0.012588045559823513, -0.01587841287255287, 0.011898570694029331, -0.002740835305303335, -0.006638760678470135, -0.001046159421093762, 0.01364615187048912, -0.00431092781946063, 0.01765330135822296, -0.019714899361133575, -0.0023636717814952135, -0.028998924419283867, -0.03642614558339119, -0.00616090651601553, -0.009065577760338783, -0.02001526579260826, 0.008157654665410519, -0.004403085447847843, -0.018131155520677567, -0.0292446780949831, 0.008649162016808987, 0.02842549979686737, -0.05179939791560173, 0.009495645761489868, 0.03014577552676201, 0.004635185934603214, -0.011789346113801003, -0.01886841468513012, -0.1743212193250656, 0.012704095803201199, 0.010307998396456242, -0.01052644569426775, 0.03637153282761574, 0.022568373009562492, 0.02114846371114254, -0.0098437974229455, -0.005758143495768309, -0.009611696936190128, 0.025039561092853546, 0.00847849901765585, -0.031292624771595, -0.03918404504656792, -0.00991206243634224, 0.00337740546092391, -0.011448021978139877, 0.015400558710098267, 0.016042249277234077, 0.030309611931443214, 0.007638841401785612, -0.009222586639225483, 0.020807137712836266, 0.0016588368453085423, 0.001960908994078636, -0.010840464383363724, -0.010744893923401833, 0.030855730175971985, 0.003966189920902252, -0.023524081334471703, -0.020206406712532043, 0.016301656141877174, -0.015973983332514763, -0.01609686017036438, 0.0251487847417593, 0.0048775263130664825, -0.0010248266626149416, -0.0013149523874744773, -0.015195764601230621, 0.021080197766423225, 0.006802596151828766, 0.014772522263228893, -0.0045771608129143715, 0.004191464278846979, -0.003556600771844387, 0.03096495382487774, 0.010342130437493324, -0.020438507199287415, 0.024083852767944336, -0.017953665927052498, 0.013325306586921215, 0.012724575586616993, 0.026718877255916595, 0.026172759011387825, 0.025776822119951248, -0.00140711001586169, 0.009522952139377594, 0.000991547480225563, -0.01755772903561592, -0.011420716531574726, -0.0017561143031343818, -0.003925231285393238, 0.016861427575349808, -0.01466329861432314, -0.015441518276929855, 0.017257364466786385, -0.009611696936190128, 0.0031811438966542482, -0.016670286655426025, -0.002580412896350026, 0.01978316530585289, 0.021858418360352516, 0.03405052796006203, -0.015605353750288486, 0.002215195680037141, 0.008144001476466656, 0.0023227129131555557, 0.018090195953845978, -0.004833154380321503, -0.009086056612432003, -0.02192668244242668, 0.028261665254831314, -0.012096538208425045, -0.01791270636022091, -0.010430875234305859, 0.013154644519090652, -0.008785691112279892, -0.024397872388362885, -0.024848420172929764, 0.004430391360074282, 0.010417222045361996, -0.022227048873901367, -0.02579047530889511, -0.0016400639433413744, 0.009522952139377594, 0.013516448438167572, 0.010976994410157204, -0.025544721633195877, 0.001290206448175013, -0.0012270613806322217, 0.003792114555835724, -0.017666952684521675, -0.0008712306735105813, 0.035443130880594254, 0.021667275577783585, 0.006109707523137331, -0.01705257035791874, 0.013564233668148518, 0.026991937309503555, 0.0005725717637687922, -0.014499462209641933, 0.0025923592038452625, 0.01475886907428503, 0.005379273556172848, 0.017544075846672058, 0.0332859605550766, 0.006543189752846956, -0.026950977742671967, 0.008942700922489166, -0.027811115607619286, 0.06307675689458847, -0.011359278112649918, -0.00033193803392350674, 0.01082681119441986, -0.01541421189904213, -0.012205762788653374, -0.12353214621543884, -0.006594388280063868, 0.017134487628936768, 0.018486132845282555, 0.01380316074937582, 0.013721242547035217, 0.004293861798942089, 0.018841110169887543, -0.009659482166171074, 0.009611696936190128, -0.024479789659380913, -0.02056138403713703, -0.009809664450585842, -0.00279203406535089, 0.009720920585095882, -0.008471672423183918, -0.0046659051440656185, -0.02288239076733589, 0.019796818494796753, 0.021680928766727448, 0.0015564394416287541, -0.016711244359612465, 0.0047341701574623585, -0.028234358876943588, 0.018076542764902115, 0.00690158037468791, -0.026363899931311607, 0.012007794342935085, 0.022786820307374, 0.024220382794737816, 0.0018892307998612523, -0.011263706721365452, 0.023715222254395485, -0.019755858927965164, -0.008519458584487438, -0.00854676403105259, -0.03705418109893799, 0.007038109935820103, 0.01387142576277256, -0.014513115398585796, 0.010198774747550488, 0.001134903752245009, 0.029135454446077347, -0.012342291884124279, 0.004546441603451967, -0.004068587440997362, -0.008335143327713013, 0.002655504271388054, 0.015072887763381004, -0.010342130437493324, -0.01656106300652027, 0.00811669509857893, -0.03694495931267738, 0.005119866691529751, 0.031401850283145905, -0.006212105043232441, 0.03309481963515282, -0.001979681896045804, -0.027264997363090515, -0.008021124638617039, -0.024766502901911736, 0.007085895631462336, 0.0006741157849319279, 0.01462233904749155, 0.004099306650459766, -0.0013670044718310237, -0.02600892260670662, -0.02801591157913208, 0.021899376064538956, 0.010697108693420887, -0.009714093990623951, 0.011386583559215069, -0.03227563947439194, 0.014035261236131191, -0.017994625493884087, 0.002157170558348298, -0.036180391907691956, -0.014799827709794044, 0.01623339019715786, 0.002015520818531513, 0.007713932543992996, -0.028452806174755096, -0.00011082378478022292, -0.00495603121817112, 0.005536282435059547, 0.01364615187048912, -0.0007722465670667589, -0.015468823723495007, 0.003346686251461506, -0.021394217386841774, -0.016397226601839066, 0.03131993114948273, -0.004689797759056091, -0.03473317623138428, 0.0035634273663163185, 0.03380477428436279, 0.010806332342326641, 0.002978055737912655, -0.01714814081788063, -0.0005153999081812799, -0.01682046800851822, 0.02715577371418476, -0.048413459211587906, 0.02864394709467888, -4.029895080748247e-06, -0.0027169426903128624, -0.002635024720802903, 0.009877929463982582, 0.010492313653230667, -0.007946033030748367, 0.002809100318700075, 0.01469060406088829, -0.009079230017960072, 0.036999572068452835, -0.02251376025378704, -0.01291571743786335, -0.017789829522371292, -0.0026503843255341053, 0.010860944166779518, -0.008997312746942043, 0.0049253120087087154, 0.011072564870119095, 0.024848420172929764, -0.006123360712081194, 0.011802999302744865, -0.003792114555835724, -0.02456170693039894, 0.0010768786305561662, 0.0030480273999273777, 0.022786820307374, 0.006604628171771765, -0.014226403087377548, 0.02210417203605175, -0.029271984472870827, -0.014253709465265274, 0.010267039760947227, 0.003271594876423478, 0.02450709603726864, -0.020725220441818237, 0.015264029614627361, -0.009215760044753551, 0.043088797479867935, -0.0163289625197649, 0.0006131040281616151, 0.010253386572003365, -0.013338959775865078, -0.0022032493725419044, 0.03443280979990959, -0.014854440465569496, 0.014403891749680042, 0.015182111412286758, -0.014581380411982536, -0.010492313653230667, 0.03162029758095741, 0.0022407949436455965, -0.029818104580044746, -0.0061711459420621395, -0.030091162770986557, 0.027278650552034378, -0.006164319347590208, 0.02245914936065674, -0.031265318393707275, 0.005235916934907436, -0.016028596088290215, 0.006249650847166777, -0.01387142576277256, 0.013885078951716423, -0.004375779535621405, -0.009113362990319729, -0.009857449680566788, -0.004345060326159, -0.024534400552511215, 0.0047341701574623585, -0.0023448988795280457, -0.008437540382146835, 0.005126693286001682, -0.0007133681210689247, 0.019632982090115547, 0.00019444827921688557, 0.012355945073068142, -0.04333455115556717, 0.007010804023593664, 0.004017388913780451, -0.008423887193202972, -0.023442164063453674, -0.019933348521590233, 0.020902710035443306, -0.02068426087498665, 0.020807137712836266, 0.0027527816127985716, -0.0007871795096434653, 0.006546603050082922, 0.01642453297972679, -0.011127176694571972, -0.019837776198983192, -0.009338636882603168, 0.007795850280672312, 0.006290609482675791, -0.02068426087498665, 0.00696984538808465, 0.028179746121168137, 0.024397872388362885, -0.001025679986923933, -0.0016238510143011808, 0.013079552911221981, -0.008062083274126053, 1.7679540178505704e-05, -0.0031367717310786247, -0.024083852767944336, -0.019045904278755188, 0.004177811089903116, 0.0366445928812027, 0.016929693520069122, -0.010813158936798573, 0.02782476879656315, 0.011878090910613537, 0.0017185686156153679, 0.01241738349199295, 0.010710760951042175, -0.011393410153687, -0.01600128971040249, 0.042952269315719604, 0.012082885950803757, 0.02905353717505932, 0.023046227172017097, 0.020138142630457878, 0.02561298757791519, 0.019073210656642914, 0.014362933114171028, 0.024766502901911736, -0.0031214121263474226, -0.0034081246703863144, 0.013407224789261818, -0.0018824043218046427, -0.05275510624051094, -0.0019523758674040437, 0.007208772469311953, -0.03377746790647507, -0.005918566137552261, -0.004730756860226393, -0.016397226601839066, 0.0353885181248188, 0.012792840600013733, -0.004799021873623133, 0.002887604758143425, 0.018895721063017845, 0.022349925711750984, 0.007836809381842613, 0.0014583086594939232, 0.006836728658527136, -0.024029241874814034, 0.02241818979382515, -0.01445850357413292, 0.026664266362786293, -0.005805928725749254, -0.013830467127263546, 0.03069189377129078, -0.0026742771733552217, 0.027729198336601257, -0.025258008390665054, -0.02219974249601364, 0.023728875443339348, -0.012560740113258362, 0.017940012738108635, -0.007140507455915213, 0.0001652223727433011, 0.011386583559215069, 0.019359922036528587, -0.00170576898381114, 0.02341485768556595, -0.03000924549996853, 0.002635024720802903, 0.019578371196985245, -0.020110836252570152, -0.011700602248311043, 0.013857772573828697, 0.00920893345028162, -0.006191625725477934, -0.009516125544905663, 0.010082724504172802, -0.008225919678807259, -0.01755772903561592, 0.028616642579436302, -0.022950656712055206, -0.019387228414416313, 0.028343582525849342, -0.008341969922184944, -0.01892302744090557, -0.005215437617152929, -0.002158877206966281], "5cf82a63-947d-4b5a-817e-482767927e49": [0.0005774894962087274, -0.013705527409911156, 0.0024323288816958666, 0.02035713382065296, -0.0008230692474171519, 0.024407103657722473, -0.020719217136502266, -0.030468648299574852, -0.017098383978009224, -0.010205388069152832, 0.033150747418403625, 0.01901608519256115, 0.017017919570207596, 0.014657673425972462, -0.004277948290109634, 0.0064102173782885075, 0.03089778497815132, -0.007536699064075947, 0.038702692836523056, -0.025117861106991768, 0.0018741169478744268, 0.0011583316372707486, 0.0014894033083692193, 0.02491670288145542, -0.008891159668564796, 0.02963719703257084, 0.011888405308127403, -0.020853321999311447, 0.0035001395735889673, -0.0220334455370903, -0.009601915255188942, -0.001776890829205513, 0.004619915969669819, -0.015717102214694023, -0.03325803205370903, 0.016575373709201813, 0.010104808956384659, -0.029100777581334114, 0.009883536025881767, 0.008797286078333855, -2.439165029954893e-07, 0.0031162642408162355, -0.007120973896235228, 0.009340411052107811, -0.018573537468910217, 0.013303212821483612, -0.009970704093575478, -0.03127327933907509, -0.022878307849168777, 0.015355018898844719, 0.023910915479063988, 0.012163320556282997, -0.028859389945864677, -0.004220953676849604, -0.005796687211841345, -0.00929347425699234, 0.008093235082924366, 0.028457073494791985, -0.0006575334118679166, 0.020544881001114845, -0.0038555178325623274, 0.001592496526427567, 0.0012488524662330747, 0.020705806091427803, -0.008991737850010395, -0.015891438350081444, -0.008254161104559898, -0.012967950664460659, -0.021671362221240997, -0.014550388790667057, 0.03626198321580887, 0.022234603762626648, -0.0016075832536444068, 0.023602474480867386, 0.018814926967024803, -0.03189016133546829, -0.026137057691812515, 0.00392592279240489, -0.01837238110601902, -0.00040399120189249516, 0.002182558411732316, -0.036503370851278305, -0.01833214983344078, -0.005548593122512102, 0.029449451714754105, -0.019297704100608826, 0.0021171821281313896, 0.011754300445318222, -0.011948752216994762, -0.025439713150262833, 0.003781760111451149, 0.031943801790475845, 0.014952704310417175, 0.006011255085468292, -0.0011524645378813148, 0.00736906798556447, -0.005334025248885155, 0.012438235804438591, -0.011888405308127403, -0.021148353815078735, -0.027344003319740295, -0.006879584863781929, -0.012860666029155254, -0.006323049310594797, -0.03041500598192215, 0.011942047625780106, -0.015864618122577667, -0.009943882934749126, 0.01849307492375374, -0.01759457215666771, -0.01788960210978985, 0.024514388293027878, -0.009843304753303528, -0.044040072709321976, -0.00995729397982359, -0.0336335264146328, 0.028188863769173622, -0.027974296361207962, -0.03872951492667198, -0.002056834986433387, 0.0011331869754940271, 0.011164238676428795, -0.003929275553673506, -0.020839912816882133, 0.008227339945733547, 0.0029201356228441, 0.012988066300749779, -0.028859389945864677, 0.007952424697577953, -0.009159369394183159, 0.049887046217918396, 0.02263691835105419, 0.002819556975737214, -0.00018575633293949068, -0.008026182651519775, 0.02692827768623829, -0.0450860895216465, -0.005598882213234901, 0.0028882857877761126, -0.02920806221663952, 0.01406761072576046, 0.013128876686096191, 0.006701895967125893, -0.03403583914041519, -0.015797564759850502, 0.022234603762626648, 0.01642785780131817, 0.019002674147486687, -0.03510868176817894, 0.013799401000142097, 0.0154891237616539, -0.017111793160438538, 0.004623268730938435, -0.014054200612008572, 0.02293195016682148, -0.013444023206830025, 0.009085611440241337, -0.011895110830664635, -0.0014885651180520654, -0.007295310031622648, 0.0033190979156643152, 0.02396455779671669, 0.010138335637748241, -0.009440990164875984, 0.005675992928445339, 0.03156831115484238, 0.016374217346310616, -0.013115465641021729, -0.04031195491552353, -0.024447334930300713, 0.004640032071620226, 0.029047135263681412, -0.027223307639360428, 0.006115186493843794, -0.02254304476082325, 0.007342246826738119, 0.03446497768163681, 0.03011997602880001, -0.012739972211420536, 6.38570127193816e-05, -0.034223586320877075, -0.00548489298671484, 0.030495470389723778, 0.01578415557742119, 0.007234963122755289, -0.008991737850010395, -0.014161484315991402, -0.02778654918074608, 0.010453482158482075, 0.003647655015811324, 0.006430333014577627, 0.015609818510711193, -0.01538184005767107, -0.0336335264146328, -0.6321171522140503, -0.02800111658871174, -0.02762562409043312, -0.012384593486785889, -0.013397086411714554, -0.0014726402005180717, 0.013799401000142097, -0.015636639669537544, -0.001419836306013167, 0.004358411300927401, -0.011077070608735085, 0.01245164591819048, -0.018479663878679276, -0.025694511830806732, -0.029610376805067062, 0.005173099227249622, 0.005491598509252071, -0.011895110830664635, -0.0013796048006042838, -0.012766793370246887, -0.008723528124392033, 0.0026552784256637096, -0.003503492334857583, 0.006510796025395393, -0.010621113702654839, -0.014107842929661274, 0.021671362221240997, -0.004385232459753752, 0.01247846707701683, 0.021027658134698868, -0.040419235825538635, 0.02404502034187317, 0.011693953536450863, 0.025587227195501328, 0.04822414740920067, -0.017500698566436768, -0.020102335140109062, -0.007952424697577953, 0.009152663871645927, 0.005981081631034613, -0.011331870220601559, -0.01006457768380642, 0.037147074937820435, 0.003647655015811324, -0.000503312679938972, -0.004878068342804909, 0.029610376805067062, -0.016146238893270493, 0.003939333371818066, 0.01228401530534029, 0.007422709837555885, -0.017071561887860298, -0.018224865198135376, 0.004613210912793875, -0.013336739502847195, 0.010761924088001251, 0.03205108642578125, -0.01923065260052681, -0.0016344042960554361, 0.012223667465150356, 0.010748513042926788, 0.03111235238611698, -0.004854599945247173, -0.005380962044000626, -0.018345559015870094, 0.0116805424913764, -0.01241141464561224, 0.009668968617916107, 0.00862294901162386, 0.007684214506298304, 0.014094431884586811, 0.025667691603302956, 0.013108761049807072, -0.02517150156199932, 0.01626693271100521, 0.005907323677092791, 0.032641150057315826, -0.02164454199373722, 0.0028497306630015373, 0.025023987516760826, 0.017192257568240166, -0.013115465641021729, -0.030790500342845917, -0.01665583625435829, 0.013356855139136314, -0.02392432652413845, -0.009769546799361706, 0.0293421670794487, 0.006953342352062464, 0.001320095732808113, 0.000251027726335451, 0.013350149616599083, 0.008160287514328957, -0.002687128260731697, 0.03875633701682091, 0.01463085226714611, -0.008146876469254494, -0.0002271402918267995, 0.024635082110762596, 0.002769267652183771, -0.010554061271250248, -0.01077533420175314, 0.022918539121747017, -0.014309000223875046, 0.007516583427786827, -0.010748513042926788, -0.03709343448281288, -0.004499221686273813, 0.06544322520494461, -0.022999001666903496, -0.004784194752573967, -0.018560128286480904, -0.014912472106516361, 0.009789662435650826, 0.030468648299574852, -0.020853321999311447, 0.0314878448843956, 0.01080215536057949, 0.0314878448843956, -0.019391577690839767, 0.03170241415500641, -0.00862294901162386, 0.01157325878739357, -0.0203973650932312, 0.01893562078475952, 0.042350348085165024, 0.024594850838184357, -0.0019294351805001497, 0.005478187929838896, -0.012900898233056068, -0.002195968758314848, -0.018613768741488457, 0.022529633715748787, 0.002098742639645934, 0.010265734978020191, -0.01150620635598898, 0.026190700009465218, -0.0034833764657378197, 0.02757198177278042, -0.015127040445804596, 0.004100259393453598, 0.004180722404271364, 0.0059542604722082615, 0.020276671275496483, -0.00858271773904562, -0.028644820675253868, -0.028188863769173622, 0.0019529035780578852, -0.04135797172784805, 0.008254161104559898, -0.00847543403506279, 0.007268489338457584, 0.005686050746589899, 0.0034833764657378197, 0.005843624006956816, -0.010748513042926788, -0.02435346134006977, 0.0073958891443908215, 0.008468728512525558, -0.02246258221566677, 0.015676870942115784, 0.008797286078333855, -0.0184528436511755, 0.029529914259910583, 0.02990540862083435, -0.02357565425336361, -0.005890560802072287, 0.02568110078573227, -0.021148353815078735, -0.041840750724077225, 0.013759169727563858, -0.011935342103242874, 0.0006453801761381328, 0.036503370851278305, -0.021671362221240997, -0.004378527402877808, -0.0016276990063488483, -0.013759169727563858, 0.0023619236890226603, 0.021926162764430046, -0.005263620056211948, 0.018104171380400658, -0.002085332293063402, -0.010366314090788364, 0.003996327985078096, 0.0021088006906211376, -0.010292556136846542, -0.0029335462022572756, 0.014174895361065865, 0.029100777581334114, 0.016937457025051117, -0.007992655970156193, -0.002333426382392645, -0.0007958291680552065, -0.01320933923125267, 0.009347116574645042, 0.007711035665124655, 0.019807303324341774, 0.00043039312004111707, 0.02344154752790928, 0.0029000199865549803, 0.0077847931534051895, 0.012713151052594185, 0.0006173019064590335, -0.0007115944754332304, -0.0220334455370903, 0.003744881134480238, -0.004512632265686989, 0.04594436287879944, -0.02572133205831051, 0.00572292972356081, -0.03575238585472107, -0.0078719612210989, -0.01768844574689865, 0.00536755146458745, 0.037361644208431244, 0.02018279768526554, 0.006470564752817154, -0.003781760111451149, 0.002787706907838583, 0.01161349005997181, -0.013470844365656376, 0.002506086602807045, -0.025023987516760826, -0.009870125912129879, -0.019418399780988693, 0.005585472099483013, 0.04208213835954666, 0.005035641603171825, -0.00916607491672039, 0.015462302602827549, 0.0012823787983506918, -0.007523288484662771, 0.03140738233923912, 0.003273837501183152, 0.006557732820510864, 0.011995689012110233, 0.0004383556079119444, 0.04977976530790329, -0.02757198177278042, -0.01305511873215437, 0.007898782379925251, 0.018104171380400658, -0.010386429727077484, -0.017004510387778282, 0.023629294708371162, 0.020102335140109062, 0.002046777168288827, 0.021416563540697098, 0.025453122332692146, -0.02180546708405018, 0.013450727798044682, -0.00037214127951301634, -0.0072751943953335285, 0.0025396128185093403, -0.03234611824154854, -0.015073398128151894, 0.013839632272720337, 0.004790899809449911, 0.023642705753445625, 0.01308193989098072, -0.0036644183564931154, 0.03054911084473133, 0.011211175471544266, 0.044898342341184616, 0.002970424946397543, 0.008884454146027565, 0.01888198032975197, -0.02353542111814022, -0.030227258801460266, -0.013946916908025742, -0.0005657553556375206, 0.018171222880482674, -8.182498277164996e-05, 5.945669545326382e-05, 0.0030777091160416603, 0.02507762983441353, -0.00027135302661918104, 0.0006474755355156958, -0.014805188402533531, -0.03679840266704559, -0.02507762983441353, 0.023548832163214684, 0.006152065470814705, 0.0012387946480885148, -0.010956375859677792, -0.025614049285650253, 0.014872240833938122, -0.014617441222071648, 0.03497457504272461, -0.018144402652978897, 0.011050249449908733, 0.008589423261582851, -0.005206625442951918, -0.011251406744122505, 0.004572979174554348, 0.01463085226714611, -0.027867011725902557, 0.03382127359509468, 0.01811758056282997, -0.00035265416954644024, 0.009534862823784351, -0.013095350004732609, 0.01901608519256115, 0.030495470389723778, -0.011968868784606457, -0.009977409616112709, -0.017178846523165703, 0.006879584863781929, -0.030039513483643532, -0.00736906798556447, -0.025614049285650253, -0.009642147459089756, -0.0035772500559687614, 0.018104171380400658, 0.010681460611522198, -0.025359248742461205, 0.016615604981780052, 0.032158371061086655, -0.001415645587258041, 0.0004915785393677652, -0.017742088064551353, -0.013987148180603981, -0.006809179671108723, 0.10883959382772446, 0.04237717017531395, -0.020880144089460373, 0.0030207145027816296, 0.00018114647537004203, 0.0022915187291800976, -0.027518339455127716, -0.036583833396434784, 0.02357565425336361, -0.004750668536871672, 0.005290440749377012, -0.01673630066215992, 0.025868847966194153, -0.009695788845419884, 0.009065495803952217, -0.015676870942115784, -0.018519895151257515, 0.00847543403506279, -0.007704330608248711, 0.008985033258795738, 0.000999920186586678, 0.005384314339607954, 0.018922211602330208, 0.012203551828861237, -0.03634244576096535, -0.009622031822800636, 0.017929833382368088, 0.01088261790573597, 0.012532109394669533, -0.01794324442744255, -0.016964279115200043, 0.02589567005634308, 0.016106005758047104, 0.013383675366640091, -0.02263691835105419, 0.004472400527447462, 0.006654959172010422, 0.017286131158471107, -0.005404429975897074, -0.010165156796574593, 0.024152304977178574, 0.01729954034090042, 0.024018200114369392, -0.009394053369760513, 0.0032218717969954014, 0.00044841348426416516, -0.009588505141437054, -0.004153901245445013, -0.03341895714402199, -0.015797564759850502, 0.05468800663948059, 0.002775972941890359, -0.01090273354202509, 0.0010284174932166934, 0.00830109789967537, 0.01544889248907566, -0.012552225030958652, 0.0022596686612814665, -0.005511714145541191, 0.053373776376247406, 0.0093538211658597, 0.015127040445804596, 0.015985311940312386, 0.0025748154148459435, -0.023092875257134438, -0.011479385197162628, -0.029368987306952477, -0.012163320556282997, -0.028966672718524933, 0.009528158232569695, -0.006856116466224194, -0.013041707687079906, -0.017621392384171486, 0.01481859851628542, -0.0029016961343586445, 0.0028111753053963184, 0.015167271718382835, -0.02552017569541931, 0.00500211538746953, -0.018828338012099266, -0.010037756524980068, -0.018224865198135376, 3.5726399801205844e-05, -0.020383955910801888, -0.014925883151590824, -0.0035839553456753492, 0.009668968617916107, 0.006343164946883917, -0.026633245870471, 0.02861800044775009, 0.009756136685609818, 0.019351346418261528, 0.0027625623624771833, -0.008884454146027565, -0.0007895429735071957, -0.011264816857874393, -0.00991706270724535, -0.0017081620171666145, 0.011928636580705643, -0.01305511873215437, 0.0031363798771053553, -0.04272584244608879, -0.002636838937178254, -0.01866741105914116, 0.007865256629884243, -0.013484254479408264, 0.01811758056282997, 0.03347260132431984, -0.013242865912616253, -0.0076775094494223595, 0.016414448618888855, -0.019726840779185295, -0.00854248646646738, 0.01790301315486431, 0.01660219579935074, 0.0028413489926606417, 0.013410496525466442, 0.029073957353830338, 0.0037147076800465584, 0.0016670924378558993, 0.005206625442951918, -0.03242658078670502, 0.006866174284368753, -0.00845531839877367, -0.027867011725902557, 0.004955178592354059, -0.0014684493653476238, -0.02159089967608452, 0.02306605502963066, 0.001372061436995864, -0.001093793660402298, 0.000912751944269985, 0.006953342352062464, -0.01396032702177763, -0.03548417612910271, 0.00015841149433981627, -0.015234324149787426, 0.008864338509738445, -0.0043684691190719604, 0.006239233538508415, -0.022945359349250793, -0.01893562078475952, -0.01456379983574152, -0.028805747628211975, 0.0007786469650454819, -0.01991458795964718, -0.020464418455958366, -0.0012698064092546701, 0.020719217136502266, -0.006440391298383474, -0.0018456196412444115, -0.04374504089355469, -0.03875633701682091, 0.005065815057605505, -0.007100858259946108, -0.035645101219415665, -0.008730233646929264, -0.006748832296580076, 0.030656395480036736, -0.006011255085468292, 0.01764821447432041, -0.014872240833938122, 0.0023149868939071894, 0.0039024546276777983, -0.0067823585122823715, 0.0016981041990220547, -0.014201716519892216, -0.028081580996513367, -0.03269479051232338, -0.011821352876722813, 0.04210896044969559, 0.017567750066518784, 0.02193957194685936, -0.007288604974746704, 0.0002692576381377876, 0.045059267431497574, -0.015140450559556484, -0.004995409864932299, -0.015931669622659683, -0.0423235259950161, -0.0233610849827528, 0.001279026153497398, -0.018868569284677505, -0.0058000399731099606, -0.01901608519256115, -0.004854599945247173, 0.04578343778848648, -0.006725363899022341, 6.95669514243491e-05, -0.024152304977178574, 0.002772620180621743, 0.0005825184634886682, -0.0041237277910113335, 0.02104106917977333, 0.019726840779185295, -0.012632687576115131, 0.013437317684292793, -0.001414807396940887, 0.017621392384171486, -0.006785711273550987, 0.008160287514328957, -0.009782957844436169, 0.007979245856404305, -0.016615604981780052, -0.030870962888002396, 0.004572979174554348, -0.013497664593160152, -0.012123089283704758, 0.0187076423317194, -0.029851766303181648, -0.01389327459037304, -0.005015525966882706, 0.007020395249128342, -0.026230931282043457, -0.03462590277194977, 0.006178886163979769, 0.012317541055381298, 0.001050209510140121, -0.012109678238630295, -0.031246457248926163, 0.008146876469254494, -0.003560486948117614, 0.03532324731349945, 0.020853321999311447, 0.001688884454779327, -0.0036677708849310875, -0.022274835035204887, 0.010627818293869495, 0.008441907353699207, 0.0015355019131675363, -0.022127319127321243, 0.031729236245155334, 0.019995050504803658, -0.0023485133424401283, 0.014268768951296806, -0.02456803061068058, 0.006504090968519449, -0.0321047306060791, -0.024876471608877182, 0.00455956906080246, 0.004049969837069511, -0.011874995194375515, -0.011284933425486088, -0.007295310031622648, -0.028027938678860664, 0.004851247183978558, 0.012813729234039783, 0.020974017679691315, -0.02181887812912464, -0.009568389505147934, -0.033150747418403625, 0.012465056963264942, 0.010741807520389557, 0.015515944920480251, 0.018224865198135376, -0.02374999038875103, -0.038836799561977386, -0.004133785609155893, -0.02207367680966854, -0.011405627243220806, 0.005712871439754963, 0.02616387978196144, -0.02263691835105419, 0.0048445421271026134, -0.000364597886800766, -0.003426381852477789, -0.0008985032909549773, 0.009045380167663097, -0.024165716022253036, 0.024621672928333282, 0.014107842929661274, 0.026512552052736282, 0.012163320556282997, 0.006960047874599695, 0.013839632272720337, 0.006960047874599695, -0.004660147707909346, -0.00996399950236082, -0.018680822104215622, 0.00016941229114308953, 0.003594013163819909, -0.0027659148909151554, -0.002918459475040436, -0.007858551107347012, -0.019458631053566933, -0.021443383768200874, 0.011124007403850555, 0.014952704310417175, 0.001508680870756507, -0.048894669860601425, -0.036717940121889114, -0.002509439131245017, -0.038354020565748215, 0.026472320780158043, 0.005531829781830311, 0.023454958572983742, 0.005384314339607954, 0.035510994493961334, -0.01621329039335251, 0.011861584149301052, -0.007610457018017769, -0.005206625442951918, -0.047339051961898804, 0.0068192374892532825, 0.004247774835675955, -0.018037118017673492, 0.016253521665930748, -0.018600359559059143, -0.03290935978293419, 0.00311291147954762, 0.022771023213863373, 0.01837238110601902, 0.01449674740433693, 0.00991706270724535, 0.013148992322385311, 0.010520534589886665, 0.011023428291082382, -0.017567750066518784, -0.02388409525156021, 0.01068816613405943, 0.009320295415818691, -0.0038387547247111797, 0.00929347425699234, -0.016401037573814392, 0.007134384475648403, 0.002769267652183771, -0.002187587320804596, 0.016360806301236153, -0.03105871006846428, 0.013906684704124928, -0.003989622928202152, -0.0029419276397675276, 0.02698192000389099, -0.012223667465150356, -0.006494033150374889, -0.018439432606101036, 3.166658279951662e-05, -0.0025178208015859127, 0.014268768951296806, -0.004489163868129253, 0.019163599237799644, 3.5123975976603106e-05, -0.017152026295661926, -0.0038152863271534443, -0.01326968614012003, 0.010487008839845657, 0.019954819232225418, -0.01683017425239086, -0.03902454674243927, -0.018466254696249962, 0.0014466573484241962, 0.029100777581334114, 0.00291007780469954, 0.0023518658708781004, -0.00936052668839693, -0.012739972211420536, -0.02417912520468235, -0.009648852050304413, -0.007248373702168465, 0.02301241271197796, 0.036717940121889114, 0.020424187183380127, -0.010145041160285473, 0.030951427295804024, -0.022006625309586525, 0.007898782379925251, 0.006457154173403978, -0.021657953038811684, -0.0037582917138934135, 0.005350788123905659, -0.005967671051621437, -0.0012983037158846855, -0.01764821447432041, -0.000864138884935528, 0.013973738066852093, -0.003956096712499857, 0.0020367191173136234, 0.0018908800557255745, -0.005327319726347923, -0.006440391298383474, -0.000549411284737289, -0.016146238893270493, 0.01677653193473816, 0.014925883151590824, -0.0006931550451554358, -0.012136499397456646, -0.004693673923611641, -0.011948752216994762, -0.0011935342336073518, -0.011063659563660622, -0.01725930906832218, 0.010104808956384659, -0.02778654918074608, 0.012109678238630295, -0.025050807744264603, -0.006068249698728323, -0.028752105310559273, -0.01888198032975197, 0.051093991845846176, 0.0021993215195834637, 1.2801524462702218e-05, 0.038917262107133865, -0.003594013163819909, -0.024152304977178574, 0.0042678904719650745, 0.005903971381485462, 0.007315426133573055, -0.022811254486441612, 0.015569586306810379, -0.037790779024362564, 0.04122386872768402, -0.019284294918179512, 0.013068528845906258, -0.020102335140109062, 0.0023015765473246574, -0.014107842929661274, -0.004167311824858189, -0.00838826596736908, 0.02891303040087223, 0.015985311940312386, -0.009005148895084858, 0.003101177280768752, -0.006349870003759861, -0.022569866850972176, 0.015220914036035538, -0.00793901365250349, -0.01477836724370718, -0.007529994007200003, 0.0007459588814526796, -0.010600998066365719, 0.011995689012110233, -0.004284653812646866, -0.022140730172395706, 0.014912472106516361, -0.025748154148459435, 0.0077311513014137745, 0.2084527611732483, -0.027732906863093376, 0.00916607491672039, 0.015515944920480251, -0.012102973647415638, 0.003553781658411026, 0.01854671724140644, -0.01768844574689865, -0.007771383039653301, -0.0007409299723803997, -0.015341607853770256, 0.01827850751578808, -0.005706166382879019, 0.003329155733808875, 0.019203830510377884, -0.006423627957701683, -0.037066612392663956, -0.0018875274108722806, -0.016146238893270493, -0.07129020243883133, 0.008066413924098015, -0.01161349005997181, -0.01704474166035652, -0.0009513071272522211, 0.02749151922762394, 0.0014667731011286378, -0.0034364399034529924, -0.005525124724954367, 0.025828616693615913, -0.007798203732818365, -0.029583556577563286, -0.01542207133024931, -0.004536100663244724, -0.012149910442531109, 0.003791817929595709, 0.004049969837069511, -0.0008649770170450211, 0.014322410337626934, 0.013732348568737507, -0.009387347847223282, 0.00765739381313324, -0.00010073588055092841, 0.002781001850962639, -0.006262701936066151, -0.01245835144072771, 0.017366593703627586, -0.009588505141437054, -0.006286170333623886, -0.019820714369416237, 0.019163599237799644, -0.0233610849827528, 0.024755777791142464, 0.056860506534576416, 0.01798347570002079, 0.007516583427786827, -0.016280343756079674, -0.002090361202135682, 0.01256563514471054, -0.004257832653820515, 0.00730201555415988, -0.03368716686964035, 0.023642705753445625, 0.002643544226884842, 0.026016363874077797, -0.03430405259132385, 0.026552783325314522, 0.007704330608248711, 0.0019763719756156206, 0.02861800044775009, -0.03119281493127346, 0.0027709437999874353, 0.00657114339992404, -0.013497664593160152, -0.00938064232468605, -0.018533306196331978, -0.00845531839877367, 0.012867371551692486, -0.029234882444143295, 0.00690640602260828, -0.002789383288472891, 0.015864618122577667, -0.01595849171280861, 0.01669606938958168, -0.006289523094892502, -0.0052535622380673885, -0.02495693415403366, -0.0059911394491791725, -0.012210257351398468, -0.005189862102270126, 0.019981639459729195, -0.018774695694446564, -0.02078627049922943, 0.001136539620347321, -0.00942087359726429, 0.014282179065048695, -0.0076238675974309444, 0.03744210675358772, 0.020451007410883904, 0.008596128784120083, -0.014536978676915169, 0.0012454999377951026, -0.024058431386947632, 0.02035713382065296, 0.023294033482670784, -0.025091039016842842, -0.00619564950466156, 0.010634523816406727, 0.012961245141923428, 0.006038076244294643, -0.017500698566436768, 0.0347600094974041, -0.014402873814105988, 0.002110476838424802, -0.021738415583968163, 0.0063934545032680035, 0.02792065404355526, -0.013906684704124928, -0.0032101375982165337, -0.009715904481709003, 0.0038454600144177675, 0.012505288235843182, -0.013021592050790787, -0.007516583427786827, 0.0078049092553555965, 0.0017634803662076592, -0.014389462769031525, -0.028644820675253868, 0.008012771606445312, 0.0025379364378750324, -0.011023428291082382, 0.024742366746068, -0.033284854143857956, -0.013175813481211662, 0.014456515200436115, -0.027545159682631493, 0.0154891237616539, 0.004629973787814379, -0.005273677874356508, 0.02745128609240055, -0.02659301459789276, 0.006366633344441652, 0.001916024717502296, 0.009494631551206112, -0.0011273198761045933, 0.0014449810842052102, -0.0025731390342116356, 0.008227339945733547, -0.021792057901620865, -0.0008096587262116373, -0.030012691393494606, -0.02464849315583706, -0.011385511606931686, -0.005364198703318834, -0.008964916691184044, -0.008710118010640144, -0.008958212099969387, -0.019646378234028816, -0.012827140279114246, -0.007912193424999714, 0.03376762941479683, -0.04471059516072273, -0.0017056475626304746, 0.026941688731312752, -0.004663500469177961, -0.019713429734110832, -0.019136779010295868, -0.1698305308818817, 0.012190141715109348, 0.011472679674625397, -0.012076152488589287, 0.03510868176817894, 0.0363960899412632, 0.026566194370388985, 0.004918299615383148, -0.014925883151590824, -0.0048143682070076466, 0.017782319337129593, 0.01932452619075775, -0.029824944213032722, -0.04031195491552353, -0.013417202048003674, 0.01823827624320984, -0.0021842345595359802, 0.019860945641994476, 0.03918547183275223, 0.011479385197162628, 0.024742366746068, -0.008059708401560783, 0.012109678238630295, -0.0020668928045779467, 0.005421193316578865, -0.0035705447662621737, -0.0017869486473500729, 0.02891303040087223, 0.015891438350081444, -0.014443105086684227, -0.025828616693615913, 0.01223707851022482, -0.012753382325172424, -0.01570369116961956, 0.01823827624320984, 0.011888405308127403, -0.010694870725274086, -0.0107351029291749, -0.019257472828030586, 0.009575095027685165, 0.007811614312231541, 0.000957174226641655, 0.021657953038811684, 0.0011298343306407332, -0.005766513757407665, 0.026190700009465218, -0.012525403872132301, -0.005575413815677166, 0.013444023206830025, -0.017433645203709602, 0.02155066840350628, -0.0012446617474779487, 0.019257472828030586, 0.004264538176357746, 0.03489411249756813, 0.01064793486148119, 0.028322968631982803, 0.0009177808533422649, -0.0047976053319871426, -0.01644126884639263, -0.014697904698550701, -0.004505926743149757, 0.008978327736258507, -0.014188305474817753, 0.003144761547446251, -0.0010820594616234303, -0.02840343303978443, 0.006980163510888815, -0.021778646856546402, 0.0036744761746376753, 0.010386429727077484, 0.012250488623976707, 0.0314878448843956, -0.004777489695698023, -0.001001596450805664, -0.008884454146027565, -0.005857034586369991, 0.012780203483998775, -0.012082858011126518, -0.02125563658773899, -0.022878307849168777, 0.03105871006846428, -0.012545519508421421, -0.014697904698550701, -0.00783172994852066, 0.023387907072901726, -0.002814528066664934, -0.020665574818849564, -0.02240893989801407, 0.009977409616112709, 0.009803073480725288, -0.018774695694446564, -0.0040868488140404224, -0.009648852050304413, 0.006980163510888815, 0.0010124924592673779, 0.01400055829435587, -0.017970066517591476, 0.006644901353865862, -0.0034632608294487, 0.010574176907539368, -0.01251869834959507, -0.016293752938508987, 0.022221192717552185, 0.030495470389723778, 0.012404709123075008, -0.008321213535964489, 0.011097186245024204, 0.03862223029136658, 0.0005179804284125566, -0.0008549191406928003, 0.0033643583301454782, 0.02314651757478714, -0.0008444422273896635, 0.011117301881313324, 0.024380283430218697, 0.015274555422365665, -0.03041500598192215, 0.0035370185505598783, -0.01406761072576046, 0.0672670528292656, -0.00656108558177948, -0.01006457768380642, 0.003421352943405509, -0.016199879348278046, -0.04023148864507675, -0.11500842124223709, -0.00922642182558775, 0.01243153028190136, 0.009367232210934162, 0.004234364256262779, 0.01531478762626648, -0.006584553979337215, 0.020571701228618622, -0.025761565193533897, 0.013571422547101974, -0.013946916908025742, -0.022690560668706894, -0.015542766079306602, 0.004448932129889727, 0.024728955700993538, -0.030602753162384033, 0.0007388345547951758, -0.03197062388062477, 0.007905487902462482, 0.03054911084473133, 0.0018573538400232792, -0.022274835035204887, 0.008596128784120083, -0.036932509392499924, 0.014590620063245296, -0.002547994488850236, -0.025748154148459435, -0.005793334450572729, 0.015542766079306602, 0.03634244576096535, 0.007536699064075947, -0.014456515200436115, 0.022382119670510292, -0.017232488840818405, 0.005491598509252071, -0.004469048231840134, -0.04862646013498306, 0.023253802210092545, 0.015757333487272263, -0.02848389558494091, 0.0020249849185347557, -0.01151291187852621, 0.012672919780015945, 0.0022244660649448633, -0.010373019613325596, -0.004026501439511776, -0.01720566675066948, 0.010124925523996353, 0.0019713430665433407, -0.011828058399260044, -0.016897225752472878, 0.005501656327396631, -0.024554619565606117, -0.004515984561294317, 0.030924605205655098, -0.0048613050021231174, 0.025453122332692146, -0.0011968868784606457, -0.035510994493961334, 0.0006545998621731997, -0.016883814707398415, 0.01673630066215992, 0.005213330499827862, 0.02413889393210411, 0.0019864297937601805, 0.0021590900141745806, -0.03575238585472107, -0.036932509392499924, 0.03138056397438049, 0.0021624425426125526, -0.011566553264856339, 0.016199879348278046, -0.04688309505581856, 0.013490960001945496, -0.01542207133024931, 0.012404709123075008, -0.024192536249756813, -0.008897864259779453, 0.01915019005537033, 0.006242586299777031, -0.0012262222589924932, -0.01996823027729988, -0.004505926743149757, 0.006229175720363855, 0.02332085371017456, 0.025158092379570007, 0.00740929925814271, -0.010708281770348549, -0.002645220374688506, -0.01790301315486431, -0.0008121732389554381, 0.026941688731312752, -0.013444023206830025, -0.030602753162384033, 0.009554979391396046, 0.028966672718524933, 0.010567471385002136, -0.0012413091026246548, -0.011975573375821114, 0.012149910442531109, -0.02400478906929493, 0.021497026085853577, -0.05557309836149216, 0.02653937228024006, -0.004777489695698023, 0.007020395249128342, -0.002459149807691574, 0.009668968617916107, 0.019244063645601273, -0.004911594558507204, -0.008917979896068573, 0.02207367680966854, -0.010332787409424782, 0.027867011725902557, -0.013330033980309963, -0.014188305474817753, -0.027974296361207962, -0.018922211602330208, -0.0001896328030852601, -0.009031969122588634, 0.009501337073743343, 0.0168704055249691, 0.014255357906222343, 0.0003084414347540587, 0.02491670288145542, 0.013068528845906258, -0.01303500309586525, -0.0019964876119047403, 0.013370265252888203, 0.005085930693894625, 0.013685411773622036, -0.022395528852939606, 0.017782319337129593, -0.02104106917977333, -0.011177648790180683, 0.014456515200436115, 0.004398643039166927, 0.00620570732280612, -0.013651886023581028, -0.01068816613405943, -0.0007702654111199081, 0.03840766102075577, -0.010554061271250248, -0.003133027348667383, 0.005468130111694336, -0.024621672928333282, 0.004103612154722214, 0.03548417612910271, -0.014832009561359882, 0.010252324864268303, 0.011821352876722813, -0.007704330608248711, -0.008448612876236439, 0.019713429734110832, 0.009789662435650826, -0.018788106739521027, -0.007255078759044409, -0.019780483096837997, 0.017795728519558907, 0.004918299615383148, 0.012954539619386196, -0.02271738089621067, -0.002288165967911482, -0.014872240833938122, 0.020209617912769318, 0.010446776635944843, 0.019123367965221405, -0.004398643039166927, -0.01538184005767107, -0.007241668179631233, -0.010748513042926788, -0.01481859851628542, -0.0028329675551503897, 0.0035269607324153185, -0.00456962687894702, -0.00032709038350731134, 0.0018020354909822345, 0.0021205348894000053, -0.00913925375789404, 0.018855158239603043, -0.022274835035204887, -0.004469048231840134, -0.0009622031357139349, 0.005256914533674717, -0.033928558230400085, -0.005531829781830311, 0.03347260132431984, -0.016937457025051117, 0.01901608519256115, 0.00995729397982359, -3.420724533498287e-05, 0.012357772327959538, 0.004180722404271364, -0.012833845801651478, -0.009782957844436169, -0.011050249449908733, 0.016508322209119797, 0.015569586306810379, -0.022006625309586525, -0.00503228884190321, 0.016374217346310616, 0.02529219724237919, -0.002195968758314848, 0.01456379983574152, 0.010393135249614716, -0.016977688297629356, -0.007811614312231541, 0.0005230093956924975, -0.012941129505634308, -0.01763480342924595, 0.011023428291082382, 0.02813522145152092, 0.012753382325172424, -0.006698543205857277, 0.03309710696339607, 0.023977968841791153, 0.0021188585087656975, 0.008361444808542728, 0.011432448402047157, -0.0066918376833200455, -0.0040231491439044476, 0.023857273161411285, 0.0013150668237358332, 0.04648078233003616, 0.012009100057184696, 0.01691063679754734, 0.026995329186320305, 0.01150620635598898, 0.018010297790169716, 0.03317756950855255, 0.017447056248784065, 0.0006893833633512259, 0.002232847735285759, -0.0059542604722082615, -0.0390513651072979, -0.003644302487373352, 0.002558052306994796, -0.0390513651072979, -0.011217880994081497, 0.0027256833855062723, 0.0006537617300637066, 0.03800534829497337, -0.00728189991787076, -0.019780483096837997, -0.0020836559124290943, 0.006960047874599695, 0.016937457025051117, 0.01716543547809124, 0.0025211733300238848, 0.002050129696726799, -0.036905687302351, 0.020370544865727425, -0.026137057691812515, 0.01806393824517727, -0.013933505862951279, 0.0018506485503166914, 0.027303772047162056, 0.0038521653041243553, 0.017862781882286072, -0.006748832296580076, -0.020558292046189308, 0.026753941550850868, 0.0020182798616588116, 0.017876192927360535, -0.0036644183564931154, 0.004643384367227554, -0.00854248646646738, 0.020585112273693085, 0.005340730305761099, 0.011492795310914516, -0.03269479051232338, -0.007248373702168465, 0.013417202048003674, 0.0037549391854554415, -0.022905128076672554, 0.013672001659870148, -0.00012457094271667302, 0.00473390519618988, -0.015636639669537544, 0.00620570732280612, 0.002100419020280242, -0.013866453431546688, 0.004452284891158342, -0.019284294918179512, -0.029959049075841904, 0.008026182651519775, -0.004804310388863087, -0.0014240271411836147, -0.002455797279253602, -0.006973458454012871], "c3564b7f-c9b5-4152-9176-c5e4f64076cf": [-0.007861008867621422, -0.015267704613506794, -0.010187647305428982, -0.0031268505845218897, -0.01412503607571125, 0.028608016669750214, -0.017484206706285477, -0.01506119780242443, -0.022109948098659515, -0.017566809430718422, 0.03805224224925041, 0.00984347052872181, 0.046615369617938995, 0.018599340692162514, 0.0033144273329526186, 0.009361621923744678, 0.029103631153702736, -0.005172984674572945, 0.054380010813474655, -0.011344083584845066, -0.007682037074118853, 0.01047675684094429, 0.0051557756960392, 0.030039792880415916, 0.0033436822704970837, 0.03408731892704964, 0.012404149398207664, -0.011068741790950298, 0.01627270132303238, -0.025565488263964653, -0.01261753961443901, -0.0021046441979706287, 0.012390382587909698, -0.016245167702436447, -0.02188967540860176, 0.010222065262496471, -0.00020887258870061487, -0.01948043517768383, -0.004680810961872339, 0.0033023811411112547, -0.0013465936062857509, -0.0063535128720104694, -0.01412503607571125, 0.0015255658654496074, -0.03023253194987774, 0.014056200161576271, -0.005018104799091816, -0.021600566804409027, -0.025937199592590332, 0.01267260778695345, 0.017387837171554565, 0.0019308346090838313, -0.029268836602568626, 0.009926073253154755, -0.010869118385016918, -0.01181904785335064, 0.014345308765769005, 0.018860915675759315, -0.009375389665365219, 0.027258841320872307, -0.009024328552186489, 0.011839699000120163, 0.0024677510373294353, 0.013409147039055824, -0.034500330686569214, -0.01159877423197031, 0.004030316136777401, -0.014317775145173073, -0.01978331059217453, -0.005272795911878347, 0.03356416895985603, 0.024147478863596916, -0.004016548860818148, 6.673812458757311e-05, 0.017759548500180244, -0.032490335404872894, -0.029819520190358162, -0.006797501351684332, -0.011929184198379517, 0.005252145230770111, 0.007172654382884502, -0.039649222046136856, -0.021008580923080444, 0.013154455460608006, 0.032214995473623276, -0.01730523444712162, 0.0012115039862692356, 0.021036116406321526, -0.021779539063572884, -0.0211875531822443, 0.0016907709650695324, 0.012596888467669487, 0.01217010896652937, 0.014056200161576271, -0.005534370895475149, 0.015983592718839645, -0.03279321268200874, 0.015543046407401562, -0.014661951921880245, -0.0223990585654974, -0.02946157567203045, -0.013897879049181938, -0.023018576204776764, -0.0037825084291398525, -0.04386195167899132, 0.015487978234887123, -0.006928288843482733, -0.0006638319464400411, 0.014152569696307182, -0.02399604022502899, 0.0044123525731265545, 0.02142159454524517, -0.025469118729233742, -0.04485318437218666, 0.0005222890176810324, -0.027327677235007286, 0.010366619564592838, -0.011908533982932568, -0.025482885539531708, -0.005245261825621128, 0.01161254197359085, 0.006387930363416672, 0.0029685290064662695, -0.02045789733529091, 0.008659500628709793, -0.004856341518461704, 0.021738236770033836, -0.026873363181948662, 0.012892881408333778, -0.011020557023584843, 0.03480320796370506, 0.009010561741888523, 0.021215088665485382, -0.004925176966935396, -0.00895549263805151, 0.012183875776827335, -0.026570485904812813, 0.0032077322248369455, -0.0028773220255970955, -0.031141160055994987, 0.03229759633541107, 0.016107497736811638, -0.008962376043200493, -0.02654295228421688, -0.01474455464631319, 0.02614370733499527, 0.027644319459795952, 0.029681848362088203, -0.02681829407811165, 0.014827157370746136, 0.019094955176115036, -0.0235692597925663, 0.01592852547764778, -0.013498633168637753, 0.029874587431550026, -0.014799622818827629, 0.012624423019587994, -0.006177982315421104, -0.00027598717133514583, -0.010827817022800446, 0.002827416406944394, 0.015074964612722397, 0.021201319992542267, 0.0012691537849605083, 0.0019170674495398998, 0.0262125413864851, 0.01345733180642128, -0.018792079761624336, -0.03210485726594925, -0.02303234301507473, 0.009575012139976025, 0.02684582769870758, -0.011110043153166771, 0.011729561723768711, -0.027644319459795952, 0.006470533087849617, 0.05644507333636284, 0.035271286964416504, -0.018420368432998657, 0.012968599796295166, -0.029984725639224052, -0.015171335078775883, 0.03480320796370506, 0.012693258002400398, 0.0027103961911052465, 0.006233050487935543, -0.023761998862028122, -0.01481339056044817, 0.019563036039471626, -0.005964592099189758, 0.01263818982988596, 0.01029090117663145, -0.025551721453666687, -0.016795851290225983, -0.6202900409698486, -0.024822065606713295, -0.03227006271481514, -0.005985242780297995, -0.030287601053714752, 0.013946063816547394, 0.013037435710430145, -0.001419731299392879, -0.0021287365816533566, 0.008122583851218224, -0.01917755790054798, 0.02209618128836155, -0.01327147614210844, -0.020306460559368134, -0.024987271055579185, -0.009093163534998894, 0.013911645859479904, -0.039511553943157196, 0.0059404997155070305, -0.026804527267813683, -0.012314663268625736, 0.010703913867473602, 0.011240829713642597, -0.003297218354418874, -0.0028824848122894764, -0.004725554026663303, 0.022743234410881996, -0.0028687177691608667, 0.010607544332742691, 0.02684582769870758, -0.03788703680038452, 0.02169693633913994, 0.023156248033046722, 0.012032438069581985, 0.04967166483402252, -0.011426685377955437, -0.016713248565793037, 0.01613503135740757, 0.01146798674017191, 0.0014205917250365019, -0.012934182770550251, -0.02537274919450283, 0.018819613382220268, 0.0012072018580511212, 0.01079339999705553, 0.002281895373016596, 0.03455539792776108, -0.020760774612426758, 0.012108156457543373, 0.0182826966047287, 0.014097501523792744, -0.015047430992126465, -0.0046567185781896114, 0.008108817040920258, -0.011523055844008923, 0.013202640227973461, 0.02962678112089634, -0.015529278665781021, -0.001259688870050013, 0.009416690096259117, 0.00783347524702549, 0.012259595096111298, -0.0013138967333361506, 0.009884771890938282, -0.018819613382220268, 0.013023667968809605, -0.008246487937867641, 0.016658181324601173, 0.020802075043320656, -0.02155926451086998, 0.007179538253694773, 0.02008618600666523, 0.006009335163980722, -0.016190098598599434, 0.0203202273696661, 2.9695374905713834e-06, 0.035133618861436844, -0.03072814829647541, 0.005307213868945837, 0.028415275737643242, -0.001831023138947785, -0.019865913316607475, -0.03254540264606476, -0.018062423914670944, 0.01066261250525713, -0.028195003047585487, -0.021710703149437904, 0.03551909700036049, 0.005345073062926531, 0.008218953385949135, 0.007365393918007612, 0.006494625471532345, 0.0026966289151459932, -0.001282920828089118, 0.036675531417131424, 0.02434021793305874, -0.017787082120776176, 0.010869118385016918, 0.010098161175847054, -0.005647949408739805, -0.000658669276162982, 0.002634677104651928, 0.011839699000120163, -0.011213296093046665, 0.002464309334754944, -0.010222065262496471, -0.030149929225444794, -0.011158227920532227, 0.061841774731874466, -0.03502348065376282, 0.0008286068332381546, -0.009526827372610569, -0.020333994179964066, 0.003954596817493439, 0.02282583713531494, -0.015198868699371815, 0.014386610127985477, 0.0031681519467383623, 0.043834418058395386, -0.022509194910526276, 0.01496482826769352, -0.011750212870538235, 0.013498633168637753, -0.023445356637239456, 0.019094955176115036, 0.038850732147693634, 0.02263309806585312, -0.0018654408631846309, -0.004601650405675173, -0.018323998898267746, 0.003920179326087236, -0.01278962753713131, 0.02406487613916397, 0.009189533069729805, 0.01674078218638897, -0.014510514214634895, 0.013904762454330921, 0.008060632273554802, 0.02658425271511078, -0.022137483581900597, -9.222875814884901e-05, 0.0053794910199940205, 0.013980480842292309, -0.00669424794614315, -0.003164710011333227, -0.028139933943748474, -0.01917755790054798, 0.00295476196333766, -0.035464026033878326, 0.0058165960945189, 0.0065428102388978004, 0.002314592245966196, -0.009857237339019775, -0.009347855113446712, 0.0015212636208161712, -0.009100046940147877, -0.02614370733499527, 0.006714898627251387, 0.0014352193102240562, -0.025056106969714165, 0.009726449847221375, 0.020127488300204277, -0.02513870969414711, 0.019824611023068428, 0.012555587105453014, -0.018888449296355247, -0.025414051488041878, 0.0256480909883976, -0.0039580389857292175, -0.033729374408721924, -0.007145120296627283, -0.0051557756960392, -0.0009447666234336793, 0.04309099540114403, -0.006866336800158024, -0.0031681519467383623, -0.01891598291695118, -0.017553040757775307, -0.009024328552186489, 0.017387837171554565, -0.008005563169717789, 0.011901650577783585, 0.001677003805525601, -0.0011297619203105569, 0.019700707867741585, 0.007682037074118853, -0.00928590353578329, -0.0012020391877740622, 0.016121264547109604, 0.028415275737643242, 0.009251485578715801, -0.0014395214384421706, 0.005520603619515896, -0.007585667539387941, 0.008432343602180481, 0.002646723296493292, 0.01263818982988596, 0.020898444578051567, 0.019824611023068428, 0.0185442715883255, 0.006701131816953421, 0.0009654173045419157, 0.01636907085776329, -0.005183309782296419, 0.0052211694419384, -0.028635550290346146, 0.0036586045753210783, -0.0012639911146834493, 0.04154908284544945, -0.02513870969414711, -0.0012063414324074984, -0.03772183135151863, 0.0042092883959412575, -0.017800848931074142, 0.014317775145173073, 0.03257293999195099, 0.015157567337155342, 0.0011435290798544884, -0.0025796086993068457, 0.009988024830818176, 0.024629326537251472, -0.021338991820812225, 0.011605657637119293, -0.020898444578051567, -0.01511626597493887, -0.011887883767485619, 0.01081405021250248, 0.034224990755319595, 0.020471664145588875, -0.0064051393419504166, 0.020609335973858833, 0.012197642587125301, -0.0014180104481056333, 0.013656954281032085, 0.0034021923784166574, 0.007344743236899376, 0.0021407827734947205, -0.01660311222076416, 0.04562414065003395, -0.04589948430657387, -0.005334747955203056, 0.014469212852418423, 0.028910892084240913, -0.0211875531822443, -0.017415370792150497, 0.008900424465537071, 0.02146289497613907, -0.010641961358487606, 0.0017492810729891062, 0.03152664005756378, -0.00014681312313769013, 0.007007449399679899, 0.0031044790521264076, -0.019604338333010674, 0.0091206980869174, -0.038547854870557785, -0.008673267439007759, 0.01723639853298664, 0.011419801972806454, 0.024381518363952637, 0.007303441874682903, 0.01643790677189827, 0.013416030444204807, 0.01380839291960001, 0.047579068690538406, 0.005238378420472145, 0.0024195662699639797, 0.028497878462076187, -0.023376520723104477, -0.026033569127321243, -0.01924639381468296, -0.000672866590321064, -0.002213059924542904, 0.0030235974118113518, 0.023183781653642654, -0.00147738098166883, 0.020760774612426758, -0.01012569572776556, 0.021104950457811356, -0.010800283402204514, -0.030149929225444794, -0.02219255082309246, 0.013051202520728111, 0.018200093880295753, -0.009636963717639446, -0.015364074148237705, -0.014345308765769005, -0.002218222711235285, -0.031746912747621536, 0.036207448691129684, -0.01683715358376503, 0.01634153723716736, 0.016107497736811638, -0.020003583282232285, -0.018695710226893425, 0.012583121657371521, 0.01894351840019226, -0.024312682449817657, 0.03874059394001961, -0.014937293715775013, 0.00669424794614315, 0.007874776609241962, -0.023183781653642654, 0.019659405574202538, 0.016011126339435577, 0.004949269350618124, -0.006387930363416672, -0.023459123447537422, 0.006680481135845184, -0.021600566804409027, -0.007213955745100975, -0.0376942977309227, -0.0012183876242488623, 0.013884111307561398, 0.01084846816956997, 0.007971146143972874, -0.031554173678159714, 0.012252711690962315, 0.04700085148215294, -0.0023077086079865694, 0.0010592056205496192, -0.023142481222748756, -0.027107402682304382, -0.01412503607571125, 0.1006099060177803, 0.023390287533402443, -0.01884714886546135, 0.006790617946535349, 0.016479209065437317, 0.008012447506189346, -0.016561811789870262, -0.023885903880000114, 0.027837058529257774, -0.013181990012526512, 0.0013663838617503643, -0.004384818486869335, 0.010366619564592838, -0.006969590205699205, 0.007145120296627283, -0.010180763900279999, -0.003101037349551916, 0.008473644964396954, -0.0019342763116583228, -0.00012659271305892617, -0.003751532407477498, 0.008391042239964008, 0.0023541725240647793, 0.022343989461660385, -0.04868043586611748, 0.002977133495733142, 0.02995719015598297, 0.017084959894418716, 0.008294672705233097, -0.016864687204360962, -0.02567562460899353, 0.027038566768169403, 0.028139933943748474, 0.025400282815098763, -0.021104950457811356, 0.002223385265097022, 0.007117586210370064, 0.0027396511286497116, -0.00011121228453703225, 0.00408538430929184, 0.016754550859332085, 0.013725790195167065, 0.008707685396075249, -0.010758982039988041, 0.008494295179843903, 0.00895549263805151, -0.002669094828888774, -0.012046204879879951, -0.03224252909421921, -0.018103724345564842, 0.03843772038817406, -0.0031492221169173717, -0.02111871726810932, -0.010208298452198505, 0.023114945739507675, 0.0055068363435566425, -0.013718906790018082, -0.0018172560958191752, -0.008707685396075249, 0.049423858523368835, -0.009161999449133873, 0.02018255554139614, 0.016575578600168228, -0.01994851604104042, -0.012128807604312897, -0.013574352487921715, -0.02303234301507473, -0.008776520378887653, -0.013712023384869099, 0.012156341224908829, -0.020306460559368134, 0.0009989745449274778, -0.02658425271511078, 0.002292220713570714, -0.005086940247565508, -0.0010531825246289372, 0.024175012484192848, -0.014827157370746136, 0.006680481135845184, -0.018502971157431602, -0.005579113960266113, -0.02771315537393093, 0.00481159845367074, -0.023514192551374435, -0.017346534878015518, -0.006508392281830311, -0.003837576601654291, 0.007158887572586536, -0.022812070325016975, 0.010428572073578835, 0.011791513301432133, 0.01569448411464691, 0.005320980679243803, -0.006129797548055649, 0.005923291202634573, -0.00644299853593111, -0.0009335808572359383, -0.013746440410614014, 0.0056686000898480415, -0.004739321302622557, 0.01245233416557312, -0.03524375334382057, 0.006525601260364056, -0.010222065262496471, 0.010600659996271133, -0.025565488263964653, 0.018021123483777046, 0.02464309334754944, -0.003637953894212842, -0.0037446487694978714, 0.015322772786021233, -0.014923526905477047, 0.004285007249563932, -0.003785950131714344, 0.012149457819759846, 0.006797501351684332, 0.032655540853738785, 0.010139462538063526, 0.0014963106950744987, 0.010256483219563961, -0.0020719473250210285, -0.04075058922171593, -0.001875766203738749, 0.0030081095173954964, -0.025758227333426476, -0.014400377869606018, 0.0032180575653910637, -0.036703065037727356, 0.020609335973858833, -0.0014438236830756068, 0.016176331788301468, 0.0082327201962471, 0.021215088665485382, -0.009575012139976025, -0.032352663576602936, 0.0006677039200440049, -0.021380292251706123, -0.004598208703100681, -0.029131164774298668, 0.0022853370755910873, -0.008342857472598553, -0.01987968012690544, -0.023624328896403313, -0.012245827354490757, -0.0208846777677536, -0.021875908598303795, -0.016382839530706406, 0.018337765708565712, 0.022137483581900597, -0.006986798718571663, -0.006408581044524908, -0.04700085148215294, -0.029268836602568626, -0.010655729100108147, -0.006147006060928106, -0.036069780588150024, -0.0010471594287082553, -0.007372277323156595, 0.02146289497613907, 0.006009335163980722, 0.04722112417221069, -0.009981141425669193, -0.0030545734334737062, 0.0014911480247974396, 0.006584111601114273, -0.009692031890153885, -0.0036930222995579243, -0.03169184550642967, -0.02948910929262638, -0.001169342314824462, 0.03909853845834732, 0.01669948175549507, 0.011571240611374378, -0.007936728186905384, -0.010194530710577965, 0.059033289551734924, 0.0032524752896279097, -0.012576238252222538, -0.018392834812402725, -0.04408222809433937, -0.02497350424528122, 0.010600659996271133, -0.0016184936976060271, -0.01241791620850563, -0.02095351368188858, -0.01232154667377472, 0.0447155125439167, 0.023156248033046722, 0.006756199989467859, -0.02286713942885399, 0.018158793449401855, -0.009871004149317741, -0.007909193634986877, 0.015226403251290321, 0.012176992371678352, -0.0032765676733106375, 0.018957285210490227, -0.0014575908426195383, 0.023046111688017845, -0.00748241413384676, 0.006315653212368488, -0.007592550944536924, 0.014510514214634895, -0.019108721986413002, -0.025262612849473953, 0.0031991279684007168, -0.014758322387933731, -0.015047430992126465, 0.02015502192080021, -0.033096086233854294, -0.018626874312758446, 0.0031320133712142706, 0.0068319193087518215, -0.03909853845834732, -0.022646864876151085, 0.015185101889073849, -0.006339745596051216, 0.010552475228905678, -0.006425790023058653, -0.02714870497584343, 0.014689486473798752, 0.001111692632548511, 0.0329308807849884, 0.0010006953962147236, 0.010607544332742691, 0.010648844763636589, -0.011743328534066677, 0.003340240567922592, 0.008157001808285713, -0.010724564082920551, -0.03394964709877968, 0.02962678112089634, 0.014909760095179081, 0.007516832090914249, 0.01081405021250248, -0.019260160624980927, -0.006460207514464855, -0.04364167898893356, -0.03480320796370506, 0.007220839615911245, 0.008721452206373215, -0.0031801981385797262, -0.010387270711362362, -0.018530504778027534, -0.02661178819835186, 0.003102758200839162, 0.002765464363619685, 0.02500103786587715, -0.011082508601248264, -0.005444884765893221, -0.03273814171552658, 0.015295238234102726, 0.014799622818827629, 0.020939746871590614, 0.014992362819612026, -0.028415275737643242, -0.03400471433997154, -0.013553701341152191, -0.0267769917845726, -0.009919188916683197, -0.012514285743236542, 0.01636907085776329, -0.023238850757479668, -0.010786515660583973, 0.002600259380415082, -0.008012447506189346, -0.0064051393419504166, 0.0030253182630985975, -0.020540500059723854, 0.022206317633390427, 0.00374120706692338, 0.02132522501051426, 0.01113069336861372, 0.018654407933354378, 0.012280245311558247, 0.007709571160376072, -0.006539368536323309, 0.00023726721701677889, -0.014083734713494778, 0.006601320113986731, -0.0026518860831856728, 0.012328430078923702, 0.014909760095179081, 0.0036689299158751965, -0.026019802317023277, -0.007420462090522051, 0.022454125806689262, -0.002583050401881337, 6.0983911680523306e-05, -0.036372654139995575, -0.020168788731098175, 0.00430909963324666, -0.01908118836581707, 0.012528053484857082, 0.0010222065029665828, 0.006931730546057224, -0.018062423914670944, 0.04047524929046631, -0.024285148829221725, 0.02731390856206417, -0.014014898799359798, 0.005520603619515896, -0.03695087134838104, -0.0035725601483136415, 0.008563131093978882, -0.02182083949446678, 0.014785856008529663, -0.02511117421090603, -0.022715700790286064, 0.02266063168644905, 0.014510514214634895, 0.008508062921464443, -0.00783347524702549, 0.0071382368914783, 0.013051202520728111, 0.00044226780300959945, 0.022412825375795364, -0.014772089198231697, -0.02965431474149227, 0.03477567434310913, 0.011812164448201656, -0.0020943188574165106, 0.007193305063992739, -0.011901650577783585, 0.0182413961738348, 0.01116511132568121, 0.019039887934923172, 0.010621311143040657, -0.0341423861682415, 0.020636869594454765, 0.005768411327153444, 0.003899528644979, 0.01569448411464691, -0.010228948667645454, -0.016286469995975494, -0.02406487613916397, -0.005878548137843609, 0.0019927865359932184, 0.009671381674706936, -0.013078737072646618, 0.02048543281853199, -0.0023180339485406876, -0.02303234301507473, -0.010752098634839058, 0.004374493379145861, -0.006625412497669458, 0.011605657637119293, -0.004725554026663303, -0.049561530351638794, -0.01613503135740757, -0.007017774973064661, 0.031581707298755646, 0.009010561741888523, -0.0007769802468828857, -0.0023644978646188974, -0.02630891092121601, -0.03331636264920235, -0.0077508725225925446, 0.0003628919366747141, 0.019232627004384995, 0.04006223753094673, 0.01521263550966978, -0.006243376061320305, 0.02406487613916397, -0.017360301688313484, 0.009533710777759552, 0.015914756804704666, -0.015818387269973755, -0.01680961810052395, 0.002731046639382839, -7.415944855893031e-05, -0.0004166696162428707, 0.002132178284227848, -0.0036586045753210783, 0.011585007421672344, 0.005589439067989588, 0.009423574432730675, 0.0012691537849605083, -0.004102593287825584, 0.01116511132568121, -0.01683715358376503, 0.0023180339485406876, 0.018296465277671814, 0.012610655277967453, -0.008280905894935131, -0.010001791641116142, 0.002622630912810564, -0.01166761014610529, -0.00883847288787365, -0.018351532518863678, -0.02551042102277279, -0.005672041792422533, -0.010931070894002914, 0.010552475228905678, -0.018805846571922302, -0.000986928353086114, -0.023376520723104477, -0.02932390384376049, 0.0464501678943634, -0.003088991157710552, -0.013980480842292309, 0.029434042051434517, 0.007024658378213644, -0.0040337578393518925, -0.02146289497613907, 0.01744290441274643, 0.014097501523792744, -0.024780765175819397, 0.012238943949341774, -0.017029892653226852, 0.03238019719719887, -0.014290240593254566, 0.006869778502732515, -0.0282500721514225, 0.00896926037967205, -0.010931070894002914, 0.009251485578715801, -0.019370296970009804, 0.030755681917071342, 0.016988590359687805, -0.009478642605245113, -0.0021820839028805494, -0.005709900986403227, -0.016685714945197105, 0.0040406412445008755, -0.004291890654712915, 0.003655162639915943, -0.007289675064384937, -0.0034710278268903494, -0.007709571160376072, 0.010738330893218517, -0.009547477588057518, -0.006157331634312868, 0.016616879031062126, -0.0376942977309227, 0.014510514214634895, 0.20749759674072266, -0.018902216106653214, 0.007062518037855625, 0.009891655296087265, -0.0051901936531066895, 0.004419236443936825, 0.015074964612722397, -0.017993588000535965, -0.014331541955471039, -0.012245827354490757, -0.013780858367681503, 0.028635550290346146, -0.005988684948533773, 0.0037308817263692617, -7.750711120024789e-06, 0.0005291725974529982, -0.03959415480494499, 0.0027465347666293383, -0.001818976947106421, -0.061346158385276794, -0.0036448375321924686, 0.0053863744251430035, -0.022082414478063583, -0.004092267714440823, 0.021779539063572884, 0.010538708418607712, -0.022275153547525406, 0.0019652522169053555, 0.016382839530706406, -0.001642586081288755, -0.019425366073846817, -0.007289675064384937, 0.010270250029861927, -0.0006380186532624066, -0.006085054483264685, -0.007248373702168465, 0.007420462090522051, -0.0033677746541798115, 0.0018946959171444178, -0.015295238234102726, 0.002748255617916584, 0.0019755775574594736, -0.0030958745628595352, -0.005259029101580381, -0.024877134710550308, 0.017952287569642067, -0.005703017581254244, -0.01777331531047821, -0.020705705508589745, 0.01528147142380476, -0.0341423861682415, 0.023858368396759033, 0.03997963294386864, 0.0324077345430851, 0.012679491192102432, -0.017787082120776176, -0.0032421499490737915, 0.01781461574137211, -0.00928590353578329, 0.013484866358339787, -0.03276567906141281, 0.024188779294490814, 0.003193965181708336, 0.01877831295132637, -0.028965959325432777, 0.005961150396615267, -0.004002781584858894, -0.008294672705233097, 0.03973182663321495, -0.023445356637239456, 0.014785856008529663, -0.021077416837215424, -0.010655729100108147, -0.00026200496358796954, -0.011640075594186783, -0.0025348656345158815, 0.027134936302900314, -0.02252296172082424, 0.0038513438776135445, -0.003937388304620981, 0.013897879049181938, -0.01931522972881794, -0.0051213582046329975, -0.002600259380415082, 0.0002656618307810277, -0.03337142989039421, -0.007971146143972874, -0.008742103353142738, -0.00348995765671134, 0.0068456861190497875, -0.025056106969714165, -0.020609335973858833, 0.007929844781756401, -0.011364733800292015, -0.0007571900496259332, -0.012018670327961445, 0.03166431188583374, 0.027492880821228027, -0.0016916313907131553, -0.0053175389766693115, -0.006756199989467859, -0.013326544314622879, 0.020196322351694107, 0.01667194813489914, -0.015171335078775883, -0.01131654903292656, 0.003706789342686534, 0.0009791844058781862, 0.0016184936976060271, -0.017057426273822784, 0.025923432782292366, -0.020636869594454765, -0.009836587123572826, -0.027506647631525993, 0.011344083584845066, 0.02249542810022831, -0.029213767498731613, -0.021228855475783348, -0.007475530728697777, -0.0014188708737492561, 0.021807072684168816, -0.011901650577783585, 0.0002714698202908039, 0.0164654403924942, 0.002849787939339876, -0.0051351250149309635, -0.028608016669750214, 0.02429891563951969, 0.0010342526948079467, -0.009850353933870792, 0.026061104610562325, -0.030948420986533165, -0.0039786892011761665, 0.013897879049181938, -0.014717021025717258, 0.008921075612306595, 0.0012932461686432362, -0.018750779330730438, 0.023706931620836258, -0.005362282041460276, -0.0005962871364317834, 0.015226403251290321, 0.008810938335955143, 0.0019652522169053555, 0.006453324109315872, 0.0012106435606256127, 0.00962319690734148, -0.025317680090665817, -0.007351626642048359, -0.034059785306453705, -0.024147478863596916, -0.007991796359419823, 0.008645733818411827, -0.021449128165841103, -0.0035622348077595234, -0.024615559726953506, -0.012128807604312897, -0.02808486670255661, -0.0070281000807881355, 0.025386516004800797, -0.019328996539115906, 0.020733239129185677, 0.015309005975723267, 0.004780622664839029, -0.023404056206345558, -0.007922961376607418, -0.1755579560995102, 0.027740688994526863, 0.02289467304944992, -0.011591890826821327, 0.025317680090665817, 0.02350042574107647, 0.026694390922784805, 0.004759971983730793, -0.006780292373150587, -0.013691372238099575, 0.01330589409917593, 0.009946723468601704, -0.03257293999195099, -0.04036511108279228, -0.0046945782378315926, 0.008728335611522198, -0.006195191293954849, 0.017332768067717552, 0.035766903311014175, 0.026666855439543724, 0.010800283402204514, -0.01113069336861372, 0.00923771783709526, 0.003768741153180599, 0.019797077402472496, -0.011254597455263138, 0.009361621923744678, 0.019976049661636353, 0.008377275429666042, -0.008473644964396954, -0.028071099892258644, 0.0027000708505511284, -0.007503064814954996, -0.018351532518863678, 0.013071853667497635, 0.0077508725225925446, -0.01676831766963005, -0.0024780763778835535, -0.0027689062990248203, 0.013044319115579128, 0.0030356436036527157, 0.0036310702562332153, 0.025565488263964653, 0.0002079045952996239, 0.006401697639375925, 0.03565676510334015, -0.003923621028661728, 6.507102079922333e-05, 0.013223291374742985, -0.015295238234102726, 0.01650674268603325, -0.010655729100108147, 0.02413371205329895, 0.006377605255693197, 0.04017237201333046, 0.021765772253274918, 0.019962282851338387, 0.003479632316157222, 0.0004362447070889175, -0.013367845676839352, -0.01016011368483305, -0.004567232448607683, 0.026391513645648956, -0.02637774683535099, 0.006250259466469288, -0.01464818511158228, -0.0259096659719944, 0.004994012415409088, -0.02497350424528122, 0.005733993370085955, 0.0019239509711042047, 0.0070900521241128445, 0.02995719015598297, -0.00043172738514840603, -0.0006573786376975477, -0.0031388967763632536, -0.011736445128917694, 0.018117493018507957, -0.0253452155739069, -0.021504197269678116, -0.036675531417131424, 0.03551909700036049, -0.01245233416557312, -0.005362282041460276, 0.0020788307301700115, 0.022619331255555153, -0.01730523444712162, -0.01639660634100437, -0.02387213706970215, -0.0030769449658691883, 0.010022442787885666, -0.012507402338087559, -0.019728241488337517, -0.010166997089982033, 0.011653842404484749, 0.015625648200511932, -0.0030373644549399614, -0.0010583451949059963, 0.0014756601303815842, -0.007275907788425684, -0.0016004244098439813, -0.005527487024664879, -0.022233853116631508, 0.028415275737643242, 0.038272514939308167, 0.0091206980869174, -0.01081405021250248, -0.0042299386113882065, 0.026129938662052155, 0.009347855113446712, -0.009753984399139881, 0.014689486473798752, 0.01704365946352482, -0.011874116025865078, 0.016327770426869392, 0.017332768067717552, 0.018585573881864548, -0.021476661786437035, 0.0041404529474675655, -0.023885903880000114, 0.06988175213336945, -0.010882886126637459, 0.004274681676179171, 0.006608203984797001, -0.023004809394478798, -0.05027741938829422, -0.11344083398580551, 0.0015978430164977908, 0.013533051125705242, 0.0016012848354876041, 0.001522984472103417, 0.004605092108249664, 0.006683922838419676, 0.015419142320752144, -0.0004332331591285765, 0.015377840958535671, -0.023238850757479668, -0.02785082533955574, 0.001789721893146634, 0.0008376414771191776, 0.027341444045305252, -0.03411485254764557, -0.0009232555748894811, -0.028910892084240913, 0.0025503537617623806, 0.0330134853720665, -0.022619331255555153, -0.012094389647245407, 0.016148798167705536, -0.026942197233438492, 0.01968694105744362, 0.008941725827753544, -0.032958418130874634, 0.021104950457811356, 0.018323998898267746, 0.02165563404560089, -0.007922961376607418, -0.008700801990926266, 0.027203772217035294, -0.0003420261782594025, 0.008914191275835037, -0.005899198818951845, -0.03805224224925041, 0.0047083450481295586, 0.02333522029221058, -0.030507873743772507, 0.005252145230770111, -0.008205186575651169, 0.008095049299299717, -0.010008675046265125, 0.0007903170771896839, -0.0004568953299894929, -0.008494295179843903, 0.008611315861344337, 0.021848373115062714, -0.010524941608309746, -0.022977275773882866, 0.004680810961872339, -0.03400471433997154, -0.014772089198231697, 0.030204998329281807, -0.009051862172782421, 0.02707986906170845, -0.0006066124769859016, -0.029847053810954094, 0.005169542971998453, -0.013223291374742985, 0.01081405021250248, 0.005978359375149012, 0.01740160398185253, -0.000575636513531208, -0.005961150396615267, -0.024822065606713295, -0.012431683950126171, 0.030810751020908356, 0.007626968435943127, -0.01669948175549507, 0.006515276152640581, -0.03284827992320061, 0.012837812304496765, -0.0038616692181676626, 0.015873456373810768, -0.0312788300216198, 0.0012175271986052394, 0.022288920357823372, -0.0041611031629145145, 0.0035725601483136415, -0.017718246206641197, 0.0007997819921001792, -0.002715558744966984, 0.02611617185175419, 0.017800848931074142, 0.007234606426209211, -0.004254031460732222, 0.011550589464604855, -0.017098726704716682, 0.005004337523132563, 0.0285529475659132, -0.004990570712834597, -0.03673059865832329, 0.004980245139449835, 0.03796963766217232, 0.014923526905477047, 0.00965761486440897, -0.019397832453250885, 0.0024109617806971073, -0.03193965181708336, -0.0064051393419504166, -0.05859274044632912, 0.03874059394001961, 0.012073739431798458, 0.020540500059723854, 0.002674257382750511, 0.0041611031629145145, 0.008783404715359211, -0.019755776971578598, -0.00826713815331459, 0.014304008334875107, -0.014345308765769005, 0.02775445580482483, -0.006652947049587965, -0.0036104198079556227, -0.015377840958535671, -0.017057426273822784, 0.001960089663043618, -0.011192644946277142, 0.007496181409806013, 0.004346959292888641, 0.006401697639375925, -0.00622616708278656, 0.009650731459259987, 0.015364074148237705, -0.019067421555519104, -0.007172654382884502, 0.023348987102508545, 0.019865913316607475, -0.004312541335821152, -0.026336446404457092, 0.009044978767633438, -0.044467706233263016, -0.01055935863405466, 0.01791098527610302, 0.016093729063868523, 0.00036913013900630176, -0.003940830007195473, -0.027410278096795082, 0.0074479966424405575, 0.0471385195851326, -0.006343187298625708, -0.019094955176115036, -0.00366204627789557, -0.02630891092121601, 0.014799622818827629, 0.03538142517209053, -0.006105705164372921, 0.01603866182267666, 0.010049976408481598, -0.016947289928793907, 0.004491513594985008, 0.023156248033046722, 0.0031612683087587357, -0.03152664005756378, 0.00031449200469069183, -0.03039773739874363, 0.021517964079976082, -0.006735549308359623, 0.013202640227973461, -0.031746912747621536, 0.00030954444082453847, -0.0013027109671384096, 0.01998981647193432, -0.005806270986795425, 0.01077963225543499, -0.022715700790286064, -0.009347855113446712, -0.00965761486440897, -0.01096548791974783, -0.008095049299299717, 0.012830928899347782, -0.01506119780242443, 0.00993984006345272, 0.011454219929873943, 0.0023765440564602613, 0.01786968484520912, -0.012514285743236542, 0.00915511604398489, -0.026501649990677834, -0.0010996464407071471, -0.006264026742428541, -0.004419236443936825, -0.0330134853720665, 0.010284016840159893, 0.02480829879641533, -0.011695143766701221, 0.0019205092685297132, 0.025950966402888298, -0.00010540429502725601, -0.001379290479235351, -0.0026501649990677834, -0.00136810471303761, -0.0062296087853610516, -0.0203202273696661, 0.0018206977983936667, 0.027671853080391884, -0.01680961810052395, -0.00927213579416275, 0.03056294284760952, 0.01744290441274643, -0.015584347769618034, 0.022206317633390427, 0.018461668863892555, -0.008927959017455578, -0.010001791641116142, 0.012156341224908829, -0.014937293715775013, -0.013884111307561398, 0.0005627298378385603, 0.023183781653642654, -0.006560019217431545, 0.005382932722568512, 0.034693069756031036, 0.02754794992506504, -0.0025606791023164988, 0.0007692362414672971, 0.019742008298635483, -0.007592550944536924, -0.009568128734827042, 0.032352663576602936, 0.01091041974723339, 0.03796963766217232, 0.016616879031062126, 0.004591324832290411, 0.025056106969714165, 0.006436115130782127, 0.01012569572776556, 0.02637774683535099, 0.008067515678703785, 0.005183309782296419, 0.0021700377110391855, -0.0050284299068152905, -0.056830551475286484, 0.0026776993181556463, -0.0010024163639172912, -0.030452806502580643, -0.017897218465805054, 0.0024384960997849703, -0.012390382587909698, 0.03323375806212425, 0.0037480907049030066, -0.008611315861344337, -0.013071853667497635, 0.0059267329052090645, 0.018792079761624336, -0.00223371060565114, 0.014799622818827629, 0.005964592099189758, -0.02962678112089634, 0.0030648987740278244, -0.013030552305281162, 0.020678171887993813, -0.03598717600107193, -0.012679491192102432, 0.02607487142086029, -0.010765865445137024, 0.037942104041576385, -0.015143800526857376, -0.015391607768833637, 0.032820746302604675, 0.005764969624578953, 0.015185101889073849, 0.001836185809224844, 0.0029685290064662695, 0.0005790782743133605, 0.02728637494146824, 0.007799057289958, -0.005169542971998453, -0.041328806430101395, 0.007186421658843756, 0.012548703700304031, 0.004054408520460129, -0.032985951751470566, 0.0038066008128225803, -0.009375389665365219, 0.018103724345564842, -0.025358982384204865, 0.015873456373810768, -0.0029599247500300407, -0.02158679999411106, 0.019590571522712708, -0.015790853649377823, -0.016782084479928017, 0.021201319992542267, -0.02149043045938015, -0.019039887934923172, 0.0035519094672054052, -0.017690712586045265], "0fbaad3b-553c-4cde-bc8f-51c1001280dd": [-0.015418737195432186, -0.017410892993211746, -0.018052203580737114, 0.010649845004081726, -0.02260960079729557, 0.03212009742856026, -0.004891696851700544, -0.013030880130827427, -0.012219008058309555, -0.025898020714521408, 0.025761572644114494, 0.007559274788945913, 0.029254665598273277, -0.005979877430945635, -0.012321345508098602, 0.01454546395689249, 0.03828759118914604, 0.000893740972969681, 0.03774179518222809, -0.007975444197654724, -0.010929564945399761, 0.0007615560316480696, 0.005164594855159521, 0.03539487347006798, -0.007095348089933395, 0.03356645628809929, 0.024369793012738228, -0.021245110780000687, 0.0057854377664625645, -0.018748093396425247, -0.00933311227709055, 0.004543751943856478, 0.007852640002965927, 0.005614876747131348, -0.02529764547944069, 0.0020467350259423256, 0.0004993180627934635, -0.015446027740836143, 0.020890342071652412, -0.0017397247720509768, 0.0061470274813473225, -0.004833706188946962, -0.011816483922302723, 0.0019205197459086776, -0.03523113206028938, 0.011523118242621422, 0.006116326432675123, -0.025720637291669846, -0.028299523517489433, 0.006061747204512358, 0.02771279215812683, 0.01499574538320303, -0.02331913448870182, -0.002222413197159767, -0.023482874035835266, -0.008732736110687256, 0.013583498075604439, 0.041889842599630356, -0.011918820440769196, 0.024533530697226524, -0.010499751195311546, 0.0005031556938774884, 0.0009329700842499733, 0.002137132454663515, -0.028954477980732918, -0.013856396079063416, 0.003191201016306877, -0.009681057184934616, -0.0018386503215879202, -0.01017227303236723, 0.04380013048648834, 0.01623743213713169, 0.005560297053307295, 0.003198023419827223, 0.023005302995443344, -0.022882498800754547, -0.02269146963953972, 0.011523118242621422, -0.0077298362739384174, -0.0019716881215572357, -0.001830122317187488, -0.03214738517999649, -0.0008928881725296378, 0.016633134335279465, 0.03091934509575367, -0.028627000749111176, -0.0004737338749691844, 0.02391950972378254, -0.02301894687116146, -0.023974090814590454, 0.0018727625720202923, -0.0007688048644922674, 0.01253284141421318, 0.02381035126745701, -0.01402695756405592, 0.006808805279433727, -0.025488674640655518, 0.03029167838394642, -0.003429986769333482, -0.00711581576615572, -0.019948843866586685, -0.01285349577665329, -0.02172268182039261, -0.004185573197901249, -0.042299192398786545, 0.019826039671897888, 0.004738191608339548, -0.0059082419611513615, 0.021354269236326218, -0.022486796602606773, 0.002744330558925867, 0.002415147377178073, -0.020590154454112053, -0.05430670455098152, -0.00515095004811883, -0.011100126430392265, 0.025611478835344315, -0.0021661280188709497, -0.016633134335279465, -0.005703568458557129, 0.0016646778676658869, 0.012771626934409142, -0.0048951078206300735, -0.0018028324702754617, 0.013910976238548756, 0.004983799997717142, 0.004287910182029009, -0.044646114110946655, 0.01758827641606331, 0.001286031911149621, 0.041180308908224106, 0.013201441615819931, 0.006849740166217089, -0.013105927035212517, -0.006198196206241846, 0.014272565953433514, -0.024574466049671173, 0.0034760383423417807, -0.02056286484003067, -0.03610440716147423, 0.010779471136629581, 0.008985167369246483, 0.005011089611798525, -0.02637559175491333, 0.0006622040527872741, 0.033921223133802414, 0.04079825058579445, 0.020876698195934296, -0.016974255442619324, -0.002184889744967222, 0.010288255289196968, -0.0027733261231333017, 0.01419069617986679, -0.005314688663929701, 0.01664677821099758, -0.0031451494432985783, 0.006546141114085913, -0.013160506263375282, -0.0025413627736270428, -0.015732569620013237, 0.0057274471037089825, 0.01888454146683216, 0.012505550868809223, -0.010922743007540703, 0.01009722612798214, 0.02745353989303112, 0.019389403983950615, -0.01449088379740715, -0.03121953271329403, -0.016196496784687042, 0.019798750057816505, 0.024669980630278587, -0.017711080610752106, 0.002338394755497575, -0.014040602371096611, 0.007995911873877048, 0.027317089959979057, 0.023046236485242844, -0.011761903762817383, -0.0008843601099215448, -0.04767528176307678, -0.01758827641606331, 0.0372505784034729, 0.017929399386048317, -0.010567975230515003, 0.0014966749586164951, -0.014449949376285076, 0.003612487344071269, 0.008139182813465595, 0.0042299190536141396, 0.01322190836071968, 0.0164966844022274, -0.02245950698852539, -0.015609766356647015, -0.6374897360801697, -0.027726437896490097, -0.024983812123537064, -0.01933482475578785, -0.015336868353188038, 0.01520041935145855, 0.013378825038671494, 0.0022565254475921392, -0.013767704367637634, 0.0061095040291547775, -0.011127416044473648, 0.008964699693024158, -0.00047032267320901155, -0.028217654675245285, -0.012751159258186817, -0.005515951197594404, 0.01454546395689249, -0.037714503705501556, -0.01499574538320303, -0.014122472144663334, -0.009155727922916412, -0.0066007208079099655, -0.004383424296975136, 0.0012783566489815712, -0.0086031099781394, -0.01449088379740715, 0.012839850969612598, 0.008173295296728611, -0.004018423147499561, 0.04027974605560303, -0.031492430716753006, 0.012362279929220676, 0.021149596199393272, 0.018052203580737114, 0.04641995206475258, -0.006870207376778126, -0.0304008387029171, 0.023087171837687492, 0.014081536792218685, -0.011468539014458656, -0.005959410220384598, -0.016510330140590668, 0.02439708262681961, 0.002558418782427907, 0.0021098428405821323, 0.002558418782427907, 0.024042313918471336, -0.02325090952217579, 0.016046402975916862, 0.022063804790377617, 0.002841550623998046, -0.004277676343917847, -0.028845319524407387, -0.010622555390000343, -0.0015162895433604717, -0.004291321150958538, 0.04440050572156906, -0.006870207376778126, -0.0029234199319034815, 0.0008800960495136678, 8.075009100139141e-05, 0.012027979828417301, -0.00014732228009961545, 0.0039911335334181786, -0.006324411369860172, 0.012334990315139294, -0.01623743213713169, 0.017492761835455894, 0.03154700994491577, -0.01612827181816101, -0.003841039491817355, 0.03367561474442482, -0.0019802162423729897, -0.026907743886113167, 0.03029167838394642, 0.008746380917727947, 0.031765326857566833, -0.012798916548490524, -0.004127582535147667, 0.02816307358443737, 0.0008536590612493455, -0.01270340196788311, -0.028818029910326004, -0.026662135496735573, 0.017888464033603668, -0.009455915540456772, -0.0018932298989966512, 0.03184719756245613, -0.007641144096851349, 0.014258921146392822, 0.0037659925874322653, 0.020426416769623756, 0.014763781800866127, 0.0007001539343036711, 0.039433762431144714, 0.007873107679188251, -0.006467682775110006, -0.0031434439588338137, 0.02656662091612816, -0.01571892574429512, -0.0013508450938388705, -0.008657689206302166, 0.01843426004052162, -0.011871063150465488, 0.005485250148922205, -0.010520217940211296, -0.03692309930920601, 0.0029899387154728174, 0.04497359320521355, 0.001677469932474196, -0.004468705039471388, -0.025092972442507744, -0.021627167239785194, 0.013815461657941341, 0.027262510731816292, -0.0206720232963562, 0.026839518919587135, -0.00686338497325778, 0.031465139240026474, -0.0049599213525652885, 0.027617277577519417, -0.01675593852996826, 0.019348468631505966, -0.017124349251389503, 0.029363825917243958, 0.03970665857195854, 0.01963501237332821, -0.010220030322670937, -0.003220196580514312, -0.013249197974801064, -0.0093535790219903, -0.0029899387154728174, 0.030673736706376076, 0.007149927783757448, 0.02260960079729557, -0.0068395063281059265, 0.017274443060159683, 0.014640978537499905, 0.02161352150142193, -0.014818361960351467, -0.013010412454605103, -0.018352391198277473, 0.024342501536011696, 0.010029002092778683, -0.011318445205688477, -0.023742126300930977, -0.01597817800939083, 0.0003300360403954983, -0.028081204742193222, 0.010472460649907589, -0.014040602371096611, 0.0026948677841573954, -0.0010822111507877707, -0.004472116008400917, 0.009558252990245819, -0.0077571258880198, -0.011393492110073566, -0.0018318279180675745, 0.008207407779991627, -0.03776908293366432, -0.0025601244997233152, 0.018270522356033325, -0.015541541390120983, 0.019307533279061317, 0.022896142676472664, -0.019716881215572357, -0.02123146504163742, 0.028135783970355988, -0.0010515101021155715, -0.04071638360619545, 0.005396557971835136, 0.0002976293908432126, 0.001016545109450817, 0.043609101325273514, -0.016605844721198082, -0.0052430531941354275, -0.0070203011855483055, -0.019989779219031334, -0.005573941860347986, 0.014804717153310776, -0.012587420642375946, 0.002495311200618744, 0.005973055027425289, -0.009640121832489967, 0.01664677821099758, -0.0054443152621388435, -0.010861340910196304, -0.000252857047598809, 0.006218663416802883, 0.03416683152318001, 0.020126227289438248, -0.006617776583880186, 0.0010813584085553885, -0.004083236679434776, 0.020685669034719467, -0.002715335227549076, 0.01780659519135952, 0.021777261048555374, 0.011318445205688477, 0.020221741870045662, 0.001787481945939362, 0.007170394994318485, 0.031246822327375412, 0.004202629439532757, 0.0030701025389134884, -0.033621035516262054, 0.004843939561396837, -0.004963332321494818, 0.05026781186461449, -0.013569853268563747, -0.0016118038911372423, -0.025092972442507744, 0.0002101101417792961, -0.024765493348240852, 0.017342668026685715, 0.025843441486358643, 0.015091259963810444, 0.0027289800345897675, -0.006767870392650366, -0.004383424296975136, 0.02146342769265175, -0.017233509570360184, 0.01232816744595766, 0.0005935531808063388, -0.014627332799136639, -0.009135261178016663, 0.012437326833605766, 0.049121640622615814, 0.01907557062804699, -0.0019802162423729897, 0.016974255442619324, -0.003540851641446352, 0.006986189167946577, 0.013624433428049088, 0.0044755274429917336, 0.006617776583880186, 0.006692823488265276, -0.020385481417179108, 0.04917621985077858, -0.038533199578523636, 0.002196829067543149, 0.014054247178137302, 0.04742967337369919, -0.025993535295128822, 0.005608053877949715, 0.007081703282892704, 0.012485084123909473, -0.0037421139422804117, 0.01907557062804699, 0.013528918847441673, -0.01128433272242546, 0.002229235600680113, -0.0012920014560222626, -0.01253284141421318, 0.01320826355367899, -0.031083082780241966, -0.015254998579621315, 0.02243221551179886, 0.02325090952217579, 0.03438514843583107, -0.005052024498581886, 0.00382739445194602, 0.023005302995443344, 0.015623411163687706, 0.054033804684877396, -0.011113771237432957, -0.004076413810253143, 0.024083249270915985, -0.02469727024435997, -0.024110538884997368, -0.02786288596689701, -0.00045582494931295514, 0.0065359072759747505, -0.0020876696798950434, 0.01432714518159628, 0.011004611849784851, 0.011011434718966484, -0.010527040809392929, 0.003392463317140937, 0.0079549765214324, -0.03946105018258095, -0.02928195707499981, 0.02256866544485092, 0.010349657386541367, -0.008487127721309662, -0.01944398321211338, -0.03594066947698593, -0.009817506186664104, -0.020085293799638748, 0.042899567633867264, -0.024970168247818947, 0.015132194384932518, 0.016332946717739105, -0.009619655087590218, -0.003474332857877016, 0.016523974016308784, 0.01305816974490881, -0.015609766356647015, 0.027576344087719917, -0.006222074385732412, 0.004625621251761913, 0.015132194384932518, -0.022855207324028015, 0.01530957780778408, 0.033430006355047226, -0.002229235600680113, -0.006259597837924957, -0.01952585205435753, 0.013617610558867455, -0.01114106085151434, -0.00940815918147564, -0.02230941131711006, 0.007204507477581501, -0.001303088036365807, 0.02529764547944069, 0.005659222602844238, -0.020999502390623093, 0.008337033912539482, 0.030864764004945755, -0.009039746597409248, -0.018188651651144028, -0.02768550254404545, -0.036295436322689056, -0.012362279929220676, 0.10108142346143723, 0.0179566890001297, -0.0009090914973057806, -0.005550063215196133, -0.0005462224362418056, 0.0017584864981472492, -0.015855373814702034, -0.031792618334293365, 0.022732404991984367, 0.0036431883927434683, 0.008568997494876385, -0.01454546395689249, 0.017301734536886215, -0.0073887137696146965, 0.005457960069179535, -0.015063970349729061, -0.012566952966153622, 0.00474842544645071, -0.006784926634281874, 0.0023452171590179205, -0.0039774882607162, 0.020399125292897224, 0.0024970166850835085, 0.012498728930950165, -0.03588608652353287, -0.017110705375671387, 0.021299690008163452, -0.003769403789192438, 0.016223786398768425, -0.016046402975916862, -0.021709036082029343, 0.015964534133672714, 0.029200086370110512, 0.019716881215572357, -0.018011268228292465, 0.0120893819257617, 0.003899030387401581, 0.012976299971342087, 0.005410203244537115, -0.02205015905201435, 0.014204340986907482, 0.012962655164301395, 0.004987210966646671, -0.0007901249919086695, -0.0004579569795168936, 0.006723524536937475, -0.021954644471406937, -0.01862528920173645, -0.03482178598642349, -0.019539497792720795, 0.03258402273058891, -0.006153849884867668, -0.026798583567142487, -0.02351016364991665, 0.0072386194951832294, 0.008876007981598377, -0.015991823747754097, 0.0013653428759425879, -0.014518174342811108, 0.03888796642422676, 0.006771281827241182, 0.005021323449909687, 0.03141056001186371, -0.006368757225573063, -0.018952766433358192, -0.025243066251277924, -0.036677490919828415, -0.008493950590491295, -0.013078637421131134, 0.006133382674306631, -0.02514755167067051, -0.003400991437956691, -0.012655644677579403, -0.0011180290021002293, 0.000767099263612181, -0.004536929540336132, 0.02865429036319256, -0.009606010280549526, 0.011413958854973316, -0.024151474237442017, -0.012007512152194977, -0.028026625514030457, 0.019716881215572357, -0.02258230932056904, -0.01847519539296627, 0.01007675938308239, -0.0017132877837866545, 0.0127784488722682, -0.025611478835344315, 0.023783061653375626, 0.008016378618776798, 0.008255165070295334, -0.006665533874183893, -0.0103360116481781, 0.004482349846512079, -0.018202297389507294, -0.008562174625694752, -0.00604469096288085, -0.0042299190536141396, -0.004236741457134485, 0.008166473358869553, -0.04306330531835556, -0.01419069617986679, -0.00934675708413124, 0.0008417197968810797, -0.013760882429778576, 0.029773171991109848, 0.029309246689081192, -0.016032757237553596, -0.011475360952317715, 0.013883686624467373, -0.024615399539470673, 0.01359714288264513, 0.012744337320327759, 0.01606004871428013, 0.003169028088450432, 0.014409014955163002, 0.012423682026565075, 0.006027634721249342, -0.0005440904060378671, -0.004420947749167681, -0.041398629546165466, -0.0019375758711248636, 0.011611809954047203, -0.03520384430885315, -0.00815965048968792, 0.010950032621622086, -0.027876531705260277, 0.017861174419522285, -0.002457787748426199, 0.006300532724708319, -0.004438003990799189, 0.02256866544485092, -0.006133382674306631, -0.04038890451192856, 7.531345181632787e-05, -0.017178930342197418, 0.0012749453308060765, -0.015282288193702698, 0.013515274040400982, -0.0053453897126019, -0.010090404190123081, -0.004806416109204292, -0.018284166231751442, -0.015923598781228065, -0.029445694759488106, -0.022855207324028015, 0.0003741687396541238, 0.009565074928104877, -0.009285354986786842, 0.007736658677458763, -0.025311289355158806, -0.015446027740836143, 0.002120076445862651, -0.005679689813405275, -0.027999335899949074, 0.004188984632492065, -0.008630399592220783, 0.022077448666095734, 0.006481327582150698, 0.03154700994491577, -0.01769743673503399, -0.0013414642307907343, 0.0155142517760396, -0.01193928811699152, 0.0013252609642222524, -0.008657689206302166, -0.03318439796566963, -0.035858798772096634, -0.020699314773082733, 0.037086840718984604, 0.030346257612109184, 0.01530957780778408, -0.014709202572703362, 0.0012237769551575184, 0.03531300276517868, 0.0009585542720742524, 0.008016378618776798, -0.005529596004635096, -0.037195999175310135, -0.014163406565785408, -0.012362279929220676, -0.0047518364153802395, -0.0006711585447192192, -0.014504529535770416, -0.013699480332434177, 0.057199422270059586, 0.013460693880915642, 5.409989898907952e-05, -0.018898187205195427, 0.003687534248456359, -0.019621366634964943, -0.002157599898055196, 0.01223947573453188, 0.009374046698212624, -0.01367218978703022, 0.016510330140590668, 0.0002748168190009892, 0.016182851046323776, -0.00012120509200030938, 0.0017687202198430896, -0.0019836274441331625, -0.0016646778676658869, -0.01032236684113741, -0.011536763049662113, 0.002258230932056904, -0.029336536303162575, -0.01255330815911293, 0.0025908255483955145, -0.02153165265917778, -0.013965555466711521, -0.00512365996837616, 0.004342489410191774, -0.03479449450969696, -0.014804717153310776, -0.004830294754356146, 0.005700157023966312, 0.004359545651823282, -0.0017840707441791892, -0.015036679804325104, 0.006324411369860172, -0.006587075535207987, 0.03662291169166565, 0.0033907578326761723, 0.013692657463252544, 0.02865429036319256, -0.0006310766329988837, 0.0023332780692726374, -0.0006758489762432873, -0.002925125416368246, -0.008896474726498127, 0.027576344087719917, 0.005498894955962896, 0.002681222977116704, 0.0009449093486182392, -0.008930587209761143, -0.008091425523161888, -0.024315211921930313, -0.02577521651983261, 0.005041790660470724, 0.0006165789091028273, -0.008091425523161888, -0.009148905985057354, -0.01037694700062275, -0.027658212929964066, 0.007231797091662884, -0.009660589508712292, 0.029964201152324677, -0.01668771356344223, -0.029827753081917763, -0.031901776790618896, 0.009298999793827534, 0.012921720743179321, 0.01996248960494995, 0.02190006524324417, -0.024274278432130814, -0.039133574813604355, -0.0038853853475302458, -0.023564742878079414, -0.010956855490803719, 0.006099270656704903, 0.010574798099696636, -0.01773837022483349, -0.0030001725535839796, 0.013842751272022724, -0.0037489363458007574, -0.010711247101426125, -0.0027289800345897675, -0.01683780737221241, 0.02585708722472191, 0.008951054885983467, 0.008541707880795002, 0.018652578815817833, 0.006303944159299135, 0.015746215358376503, 0.015705280005931854, 0.001462562708184123, -0.001357667613774538, -0.01922566443681717, 0.0015904837055131793, 0.011618632823228836, 0.01888454146683216, 0.013269665651023388, 0.004468705039471388, -0.025434093549847603, -0.010874985717236996, -0.0042094518430531025, 0.012273588217794895, -0.0031485608778893948, -0.03681394085288048, -0.030455417931079865, 0.013938265852630138, -0.025788862258195877, 0.004588097799569368, -0.005045202095061541, 0.027699148282408714, -0.0052430531941354275, 0.021668102592229843, -0.032611310482025146, 0.026307368651032448, -0.01981239579617977, 0.014245276339352131, -0.04183526337146759, -0.0027665034867823124, 0.0035203841980546713, -0.02258230932056904, 0.00867815688252449, -0.017833884805440903, -0.03351187705993652, 0.007416003383696079, 0.007941331714391708, 0.008521240204572678, 0.0021558941807597876, 0.010295077227056026, 0.008985167369246483, 0.003279892960563302, 0.020549220964312553, -0.030428128316998482, -0.04257208853960037, 0.01106601394712925, 0.016114627942442894, 0.012321345508098602, -0.005355623550713062, -0.005938943009823561, 0.01922566443681717, 0.013242376036942005, 0.017642855644226074, 0.0019495151937007904, -0.0276036337018013, 0.025120262056589127, 0.0045915087684988976, 0.00949685089290142, 0.012369101867079735, -0.00045284011866897345, -0.018284166231751442, -0.03206551447510719, -0.01329695526510477, 0.002483371878042817, 0.00940815918147564, 0.00832338910549879, 0.017001545056700706, 0.016551263630390167, -0.007941331714391708, -0.004758658818900585, -0.008036846294999123, 0.001320144161581993, 0.017560986801981926, -0.008425725623965263, -0.03359374403953552, -0.013958733528852463, -0.0012715341290459037, 0.045273780822753906, -0.004588097799569368, -0.004905341658741236, -0.0027733261231333017, -0.01165956724435091, -0.023551099002361298, -0.01884360797703266, -0.003793282201513648, 0.012873963452875614, 0.035367581993341446, 0.02514755167067051, 0.002010917291045189, 0.032611310482025146, -0.018297811970114708, -0.004506228491663933, -0.004871229641139507, -0.01705612614750862, -0.013378825038671494, -0.0051202489994466305, -0.0036909454502165318, 0.015609766356647015, -0.01245779450982809, -0.0037421139422804117, 0.016073692589998245, -0.002967765787616372, 0.007661611773073673, 0.008186940103769302, -0.005478427745401859, 0.01238956954330206, -0.014791072346270084, 0.006757637020200491, 0.00987208541482687, 0.017560986801981926, -0.0021268988493829966, -0.017492761835455894, -0.006853151135146618, -0.005498894955962896, -0.0046563223004341125, -0.01571892574429512, -0.03722328692674637, -0.003486271947622299, -0.02157258801162243, 0.004035479389131069, -0.016564909368753433, -0.009319466538727283, -0.024301568046212196, -0.02939111553132534, 0.03550403192639351, -0.008166473358869553, -0.008964699693024158, 0.016100982204079628, 0.0008741264464333653, -0.008562174625694752, -0.0053453897126019, 0.011550407856702805, 0.010984145104885101, -0.023864930495619774, 0.00032577200909145176, -0.029855042695999146, 0.012587420642375946, -0.009223952889442444, 0.007293199189007282, -0.030073359608650208, 0.01143442653119564, -0.02477913908660412, -0.0002756696194410324, -0.027767373248934746, 0.03561319038271904, 0.015609766356647015, -0.02011258341372013, -0.01009722612798214, 0.001268975785933435, 0.00022983129019849002, 0.01344704907387495, -0.01084087323397398, -0.011652745306491852, -0.0034709216561168432, 0.015555186197161674, -0.002836433704942465, -0.002457787748426199, -0.009039746597409248, 0.00230087130330503, 0.006324411369860172, -0.007477405481040478, 0.010513396002352238, 0.21504363417625427, -0.01884360797703266, 0.001395191065967083, 0.015596121549606323, 0.013494806364178658, 0.009155727922916412, 0.014067891985177994, -0.008036846294999123, -0.012369101867079735, -0.007375068496912718, -0.01981239579617977, 0.01642845943570137, -0.010267787612974644, 0.00467337854206562, 0.012171250768005848, 0.003653421998023987, -0.042381059378385544, 0.0059082419611513615, -0.0035544964484870434, -0.06620505452156067, -0.0015879252459853888, -0.004397069104015827, -0.014286210760474205, -0.003721646498888731, 0.014613687992095947, 0.00877367053180933, -0.02525671012699604, -0.015336868353188038, 0.02671671472489834, -0.005440903827548027, -0.032392993569374084, -0.013808638788759708, -0.0019000524189323187, -0.0057854377664625645, -0.011352556757628918, 0.007975444197654724, 0.008207407779991627, 0.0038751517422497272, 0.019171085208654404, -0.019880620762705803, 0.010909098200500011, 0.0029694715049117804, -0.004625621251761913, 9.130356920650229e-05, -0.014122472144663334, 0.0227187592536211, 0.014436304569244385, -0.011373024433851242, -0.02082211896777153, 0.016715003177523613, -0.02510661631822586, 0.006518851034343243, 0.052696604281663895, 0.043336205184459686, 0.004165105987340212, -0.034849077463150024, -0.008493950590491295, 0.015896309167146683, -0.019948843866586685, 0.0269759688526392, -0.021913710981607437, 0.028081204742193222, 0.014081536792218685, 0.03684123232960701, -0.020139873027801514, 0.023564742878079414, -0.008064135909080505, 0.004291321150958538, 0.018748093396425247, -0.020317256450653076, 0.013508451171219349, -0.018297811970114708, -0.012676112353801727, -0.000419580697780475, -0.01996248960494995, -0.004038890358060598, 0.032720472663640976, -0.017424538731575012, -0.010834051296114922, -0.01030190009623766, 0.014913876540958881, -0.021968290209770203, 0.013508451171219349, -0.006184550933539867, 0.001395191065967083, -0.023223619908094406, 0.0017039069207385182, -0.011666390113532543, -0.019921554252505302, 0.013228731229901314, -0.02331913448870182, -0.03162888064980507, -0.006095859222114086, -0.006703057326376438, 0.0010898864129558206, -0.020317256450653076, 0.011632277630269527, 0.019266599789261818, -0.0006101828766986728, -0.0039263200014829636, -0.003793282201513648, -0.0242196973413229, 0.011748258955776691, 0.005324922502040863, -0.018120428547263145, 0.002664166735485196, 0.009762926027178764, 0.006024223752319813, 0.003428281284868717, -0.002157599898055196, 0.031137662008404732, -0.016715003177523613, -0.00504861306399107, -0.011823305860161781, -0.0065359072759747505, 0.0023162218276411295, -0.015841729938983917, -0.01713799498975277, -0.007184040267020464, 0.0068770297802984715, 0.02220025286078453, -0.007375068496912718, -0.0039911335334181786, 0.01702883653342724, -0.003776226192712784, -0.0083097442984581, -0.013228731229901314, 0.009135261178016663, 0.006866795942187309, -0.01216442883014679, 0.012580597773194313, -0.036295436322689056, 0.008746380917727947, 0.02101314626634121, -0.01698790118098259, 0.01675593852996826, 0.0039433762431144714, -0.014299855567514896, 0.013965555466711521, -0.000965376733802259, -0.004287910182029009, -0.0015000862767919898, -0.01203480176627636, 0.013187795877456665, 0.017492761835455894, -0.01253284141421318, 0.011686856858432293, -0.0172062199562788, -0.004069591406732798, -0.015009390190243721, -0.03921544551849365, 0.004236741457134485, -0.015214064158499241, -0.014832006767392159, 0.004188984632492065, -0.015173128806054592, -0.009681057184934616, -0.019321179017424583, -0.014586398378014565, 0.02168174646794796, -0.021818196401000023, 0.00256182998418808, 0.009524140506982803, -0.006931609474122524, -0.021436138078570366, -0.011127416044473648, -0.17432725429534912, 0.023046236485242844, 0.03111037239432335, -0.01432714518159628, 0.026348302140831947, 0.018202297389507294, 0.028217654675245285, -0.0003044518525712192, -0.0019426926737651229, -0.008337033912539482, 0.016114627942442894, 0.005652400199323893, -0.028627000749111176, -0.028954477980732918, 0.0006234013708308339, 0.003018934279680252, -0.009067036211490631, 0.017069770023226738, 0.03809656202793121, 0.013092282228171825, 0.016141917556524277, 0.006228897254914045, 0.014463594183325768, -0.011475360952317715, 0.03111037239432335, -0.0011035313364118338, 0.005696746055036783, 0.03468533605337143, 0.014054247178137302, -0.005348801147192717, -0.029309246689081192, 0.012375924736261368, -0.011031902395188808, -0.020330902189016342, 0.023673901334404945, 0.007313666399568319, -0.0019699824042618275, -0.004246975295245647, 0.0008344709640368819, 0.011495828628540039, 0.0076274992898106575, -0.0013372002867981791, 0.010342834517359734, -0.010636200197041035, -0.007566097192466259, 0.03785095363855362, -0.007416003383696079, -0.003612487344071269, 0.017752015963196754, -0.017069770023226738, 0.012321345508098602, 0.0006165789091028273, 0.015664346516132355, 0.0005150950164534152, 0.033430006355047226, 0.0006980219623073936, 0.016660423949360847, -0.002394679933786392, -0.024465305730700493, -0.021886419504880905, 0.005492072552442551, -0.005072491709142923, 0.02846326306462288, -0.022404925897717476, -0.002749447477981448, 0.0018318279180675745, -0.010179095901548862, 0.02428792230784893, -0.028081204742193222, 0.0021610110998153687, 0.0011589637724682689, 0.005256698001176119, 0.026798583567142487, -0.016674067825078964, -0.015500606968998909, -0.0039058527909219265, -0.01575985923409462, 0.009783393703401089, -0.007197685074061155, -0.014477238990366459, -0.022937078028917313, 0.03569506108760834, -0.0025908255483955145, -0.009244419634342194, -0.010445171035826206, 0.0296913031488657, -0.02301894687116146, -0.015295933000743389, -0.010029002092778683, -0.004223096650093794, 0.01631930097937584, -0.015336868353188038, -0.020126227289438248, -0.007736658677458763, 0.011338911950588226, 0.015132194384932518, -0.0027323912363499403, -0.0179566890001297, 0.008644044399261475, -0.007300021592527628, 0.009790215641260147, -0.015814440324902534, -0.014409014955163002, 0.022377636283636093, 0.027508119121193886, 0.01365172304213047, -0.000678833806887269, 0.0011589637724682689, 0.03430328145623207, 0.009708346799015999, -0.006730346940457821, 0.010008534416556358, 0.007156750187277794, 0.004380012862384319, 0.022268477827310562, 0.027330735698342323, 0.008923765271902084, -0.025092972442507744, 0.004052535630762577, -0.01582808420062065, 0.0565444678068161, -0.005110015161335468, -0.013228731229901314, 0.012437326833605766, -0.016073692589998245, -0.01627836562693119, -0.12564224004745483, 0.014204340986907482, 0.0172062199562788, 0.0127784488722682, 0.0036431883927434683, -0.00047501310473307967, -0.020167162641882896, 0.020849408581852913, -0.00701347878202796, -0.006095859222114086, -0.02525671012699604, -0.019839685410261154, -0.007763948291540146, -0.0005722329951822758, 0.022091094404459, -0.025133905932307243, 0.0011495829094201326, -0.020590154454112053, 0.003030873602256179, 0.02999149076640606, 0.003759169951081276, -0.023441938683390617, 0.004417536314576864, -0.027439894154667854, 0.02477913908660412, 0.003472627140581608, -0.03476720675826073, 0.022527730092406273, 0.013972378335893154, 0.01825687661767006, -0.024055959656834602, 0.004141227342188358, 0.02258230932056904, 0.00434931181371212, 0.00757974199950695, 0.00010052454308606684, -0.036568332463502884, -0.006709879729896784, 0.022145673632621765, -0.024424372240900993, 0.0020552631467580795, 0.0005948323523625731, 0.019020991399884224, -0.005706979427486658, -0.0013047936372458935, -0.002217296278104186, -0.023073526099324226, -0.009401336312294006, 0.014136116951704025, -0.02805391512811184, -0.023564742878079414, 0.004250386264175177, -0.025829795747995377, -0.019116505980491638, 0.031792618334293365, -0.0026078815571963787, 0.03203822672367096, 0.008657689206302166, -0.026471106335520744, 0.010608909651637077, -0.022937078028917313, 0.01765650138258934, 0.006283476483076811, 0.023755772039294243, 0.0141770513728261, -0.009121616370975971, -0.018311455845832825, -0.006904319394379854, 0.012635177932679653, 0.002254819730296731, -0.0036022537387907505, 0.011782371439039707, -0.022896142676472664, 0.005260108970105648, -0.014299855567514896, 0.012989944778382778, -0.023196330294013023, -0.005028145853430033, 0.01203480176627636, -0.0005253286799415946, -0.005703568458557129, -0.019757816568017006, -0.011127416044473648, 0.0005035821232013404, 0.00994713231921196, 0.02611633948981762, -0.005492072552442551, -0.005761559121310711, 0.009913019835948944, -0.03233841434121132, 0.0011666390346363187, 0.03132869303226471, -0.0008655983838252723, -0.0207538940012455, -0.0047143129631876945, 0.0345761775970459, 0.02090398781001568, 0.00011949947656830773, -0.009210308082401752, -0.0031809674110263586, -0.03231112286448479, 0.008732736110687256, -0.05741773918271065, 0.03154700994491577, -0.0011726085795089602, 0.008684978820383549, -0.011311622336506844, -0.0007914042216725647, 0.013419759459793568, -0.025311289355158806, 0.006280065514147282, 0.026662135496735573, 0.006993011571466923, 0.025979889556765556, -0.017342668026685715, -0.004246975295245647, -0.01944398321211338, -0.015132194384932518, 0.0006907730712555349, -0.009558252990245819, 0.00815965048968792, -0.0012041624868288636, 0.015664346516132355, -0.008425725623965263, 0.0029916444327682257, 0.022964367642998695, -0.023714836686849594, -0.0011521412525326014, 0.0033037716057151556, 0.01702883653342724, 0.008732736110687256, -0.026143629103899002, 0.014518174342811108, -0.03367561474442482, -0.02230941131711006, -0.0010191034525632858, 0.012225830927491188, 0.01773837022483349, -0.0083097442984581, -0.010997789911925793, 0.0017977156676352024, 0.03405767306685448, -0.0014975278172641993, 0.003933142405003309, -0.0024731382727622986, -0.022268477827310562, 0.019252954050898552, 0.034849077463150024, -0.01754734106361866, 0.006750814616680145, 0.017629211768507957, -0.02090398781001568, 0.0007879930199123919, 0.01520041935145855, 0.012955833226442337, -0.029418405145406723, -0.00412417110055685, -0.02458810992538929, 0.02164081297814846, -0.015323223546147346, 0.00934675708413124, -0.037004970014095306, 0.012764804065227509, -0.0092921769246459, 0.010479283519089222, 0.0037421139422804117, 0.0172062199562788, -0.014668268151581287, 0.0022326468024402857, -0.004103703889995813, -0.021067725494503975, 0.000564984162338078, 0.00193928147200495, -0.005543240811675787, 0.00026799438637681305, -0.014040602371096611, 0.0021217819303274155, 0.020385481417179108, 0.005280576646327972, 0.02258230932056904, -0.02756269834935665, 0.008343856781721115, 0.0005069933249615133, -0.03643188253045082, -0.033430006355047226, -0.002879074076190591, 0.013542563654482365, 0.003738702740520239, -0.0008877713116817176, 0.010772649198770523, 0.00765478890389204, 0.005758148152381182, 0.001715846243314445, -0.010861340910196304, 0.0038376282900571823, 0.0004733074747491628, 0.010868162848055363, 0.02187277562916279, -0.0023196330294013023, -0.002382740844041109, 0.020330902189016342, 0.02794475667178631, -0.011564052663743496, 0.006440393161028624, 0.012696580030024052, -0.02357838861644268, -0.006699645891785622, -0.00912843830883503, -0.009387691505253315, -0.0213815588504076, 0.002744330558925867, 0.03498552367091179, -0.002162716817110777, 0.007108992896974087, 0.02865429036319256, 0.020958567038178444, -0.012410037219524384, 0.007443292997777462, 0.02049463987350464, -0.003133210353553295, -0.008998812176287174, 0.0537881962954998, 0.012437326833605766, 0.032502152025699615, 0.011113771237432957, 0.004322022199630737, 0.022363992407917976, 0.026512041687965393, 0.00634146761149168, 0.04279040917754173, -0.0036056649405509233, 0.024015024304389954, 0.006539318710565567, 0.005417025648057461, -0.03632272407412529, -0.0038137496449053288, 0.01283302903175354, -0.05466147139668465, -0.018038557842373848, 0.016264721751213074, -0.018297811970114708, 0.03187448903918266, 0.000366706692148, -0.01439537014812231, 0.0019580433145165443, -0.005154361017048359, 0.017315378412604332, 0.007422825787216425, 0.0027733261231333017, -0.0103360116481781, -0.02164081297814846, -0.008719091303646564, -0.015214064158499241, -0.0016723531298339367, -0.04224461317062378, -0.009319466538727283, 0.02887260913848877, -0.012696580030024052, 0.013774527236819267, -0.01743818260729313, -0.017642855644226074, 0.03793282434344292, 0.012792093679308891, 0.00925806537270546, -0.003731880336999893, 0.002191712148487568, 0.005648988764733076, 0.017820239067077637, -2.022749868046958e-05, -0.0020672024693340063, -0.029063638299703598, 0.00579226016998291, 0.010397413745522499, -0.017424538731575012, -0.020658379420638084, 0.002549890661612153, -0.0011862535029649734, 0.005181651096791029, -0.015186774544417858, 0.008800961077213287, 0.0030735137406736612, -0.027521764859557152, 0.01843426004052162, -0.020576510578393936, -0.004499406088143587, 0.02514755167067051, -0.00987208541482687, -0.023632967844605446, -0.003626132383942604, -0.02503839135169983], "065a0519-9216-4d9d-ac5c-74e8811f5f4c": [-0.018402589485049248, -0.0257909893989563, -0.0063348691910505295, -0.0027945940382778645, -0.009639126248657703, 0.04099193960428238, -0.00014483915583696216, -0.019141430035233498, -0.02521633729338646, -0.016555489972233772, 0.02211047150194645, 0.004846927244216204, 0.005513935815542936, 0.002538052387535572, -0.003343593329191208, 0.011116806417703629, 0.040171004831790924, -0.0035573779605329037, 0.039596352726221085, -0.016131341457366943, -0.0066153546795248985, -0.002767229685559869, -0.008120398968458176, 0.021029576659202576, -0.018635187298059464, 0.03168802708387375, 0.02447749674320221, -0.01106207724660635, 0.007087391335517168, -0.012177178636193275, -0.012683420442044735, 0.008202492259442806, 0.0025859400629997253, -0.0008726692758500576, -0.025558391585946083, -0.009974340908229351, 0.0037386673502624035, -0.02109798789024353, 0.019811859354376793, 0.007313148118555546, 0.0029108929447829723, -0.0015837172977626324, -0.010678974911570549, 0.004751151893287897, -0.010863685049116611, 0.01669231243431568, 0.008004100061953068, -0.027323398739099503, -0.037078823894262314, 0.008366678841412067, 0.02759704366326332, 0.011629889719188213, -0.016254480928182602, -0.008387202396988869, -0.018635187298059464, -0.004631432238966227, 0.007313148118555546, 0.027761230245232582, -0.0031930888071656227, 0.020249688997864723, 0.006430644541978836, -0.003656574059277773, -5.468212748382939e-06, 0.005712328013032675, -0.03376772627234459, -0.008352996781468391, 0.006317766383290291, -0.002709080232307315, 0.003215322270989418, -0.019209841266274452, 0.043591562658548355, 0.018183674663305283, -0.009440734051167965, 0.001062937662936747, 0.015337771736085415, -0.02845902368426323, -0.023369235917925835, -0.011759870685636997, -0.008872921578586102, 0.009563873521983624, -0.0032546587754040956, -0.029553601518273354, 0.009714378044009209, 0.005216347519308329, 0.023656563833355904, -0.033247802406549454, 0.0014126895694062114, 0.01710277795791626, -0.03275524079799652, -0.028978947550058365, 0.007689409423619509, 0.0221241544932127, 0.0199213158339262, 0.02049596980214119, 0.009851200506091118, 0.01682913489639759, -0.026625605300068855, 0.03571060299873352, 0.010350601747632027, -0.024833234027028084, -0.021754734218120575, -0.006830849684774876, -0.02200101502239704, -0.004214124754071236, -0.026953978464007378, 0.015474594198167324, -0.0017581656575202942, -0.01826576702296734, 0.01860782317817211, -0.009714378044009209, -0.019278252497315407, 0.024846917018294334, -0.025558391585946083, -0.04186760261654854, -0.004320161882787943, -0.004439881537109613, 0.014749436639249325, -0.018169991672039032, -0.016569171100854874, -0.011376768350601196, -0.0012921149609610438, 0.013237550854682922, 0.0014468950685113668, -0.009700695984065533, 0.0022883517667651176, 0.004132031463086605, -0.0020181278232485056, -0.02243884466588497, 0.0036155274137854576, 0.008086193352937698, 0.043427374213933945, 0.020400194451212883, -0.000937232282012701, -0.021713687106966972, 0.0012023253366351128, 0.023656563833355904, -0.02848638780415058, -0.0040499381721019745, -0.01713014394044876, -0.022151518613100052, 0.01260816864669323, 0.01580296829342842, -0.0005985972238704562, -0.03757138550281525, -0.022397799417376518, 0.024244898930191994, 0.02996406890451908, 0.01223190687596798, -0.021289538592100143, 0.003427396761253476, 0.01784161850810051, -0.007497858256101608, 0.016911227256059647, -0.009043949656188488, 0.01771847903728485, -0.020988529548048973, 0.015597733668982983, 0.0005956042441539466, 0.0014811006840318441, -0.007155802566558123, 0.02461431920528412, 0.020003410056233406, 0.012724467553198338, 0.008948173373937607, -0.0014520259574055672, 0.028732668608427048, 0.013100728392601013, -0.007709932513535023, -0.032372139394283295, -0.02137163281440735, 0.02622882090508938, 0.018252085894346237, -0.03278260678052902, 0.011082600802183151, -0.019387708976864815, 0.007703091483563185, 0.028705304488539696, 0.019127747043967247, 0.004104666877537966, 0.007778343744575977, -0.03792712092399597, -0.02037283033132553, 0.016281845048069954, 0.012902336195111275, -0.009167089127004147, 0.00394390057772398, -0.009837518446147442, -0.012601327151060104, 0.015488276258111, 0.014544202946126461, 0.005004272796213627, 0.015679826959967613, -0.017294330522418022, -0.019551897421479225, -0.6370443105697632, -0.021002212539315224, -0.02687188610434532, -0.006324607413262129, -0.009570715017616749, 0.0053326464258134365, 0.013128092512488365, -0.00464511476457119, 0.015584051609039307, 0.009221818298101425, -0.026926614344120026, 0.00478877779096365, -0.00557208526879549, -0.023068226873874664, -0.011930898763239384, -0.007716773543506861, 0.006533261388540268, -0.02564048580825329, -0.009858042001724243, -0.025476299226284027, -0.011835122480988503, 0.0007362746400758624, 0.007361035794019699, 0.014325287193059921, -0.017499562352895737, -0.01225243043154478, 0.025421570986509323, -0.008606118150055408, 0.014557885006070137, 0.03603897616267204, -0.03582005947828293, 0.029252592474222183, 0.02343764714896679, 0.01639130339026451, 0.04517870023846626, -0.017308011651039124, -0.028732668608427048, 0.01681545190513134, 0.013210185803472996, 0.0066153546795248985, -0.022397799417376518, -0.01696595549583435, 0.020441241562366486, 0.004939282312989235, 0.019825540482997894, 0.017650067806243896, 0.011841963976621628, -0.014133736491203308, -0.0016598246293142438, 0.022767219692468643, 0.005407898686826229, -0.004604068119078875, -0.0228493120521307, -0.003273471724241972, 0.004080723039805889, -0.002030099742114544, 0.039459530264139175, -0.01282708439975977, -0.003449630457907915, -0.004949544090777636, 0.014037961140275002, 0.021877873688936234, -0.0038447047118097544, 0.006259616930037737, -0.005698645953088999, 0.010302714072167873, -0.007716773543506861, 0.013004953041672707, 0.02789805270731449, -0.016487078741192818, 0.014557885006070137, 0.014817846938967705, 0.001088591874577105, -0.019360344856977463, 0.02286299504339695, 0.010788432322442532, 0.033685632050037384, -0.010945778340101242, -0.0025859400629997253, 0.027460221201181412, 0.008749781176447868, -0.01468102540820837, -0.015885060653090477, -0.02343764714896679, 0.02109798789024353, -0.0036121068987995386, -0.011137329041957855, 0.02465536631643772, -0.006519579328596592, 0.005838888697326183, 0.022219929844141006, 0.018361542373895645, 0.00037818518467247486, 0.010548993945121765, 0.03456129506230354, 0.015009398572146893, -0.01100050751119852, -0.0012467926135286689, 0.004190180916339159, -0.006092009600251913, 0.0005772187723778188, -0.014393698424100876, 0.004470666404813528, -0.007771502714604139, -0.002869846299290657, -0.008859239518642426, -0.03748929128050804, 0.0062698787078261375, 0.04643746465444565, -0.02213783748447895, 0.010514788329601288, -0.015255678445100784, -0.016336573287844658, 0.004340685438364744, 0.025038467720150948, -0.023998618125915527, 0.008318791165947914, -0.0011133908992633224, 0.021946284919977188, -0.004781936760991812, 0.016733357682824135, -0.00854454841464758, 0.016021883115172386, -0.0070052980445325375, 0.02302718162536621, 0.028842125087976456, 0.010200097225606441, -0.0013459887122735381, -0.019661353901028633, -0.021029576659202576, -0.00208653905428946, 0.00199076347053051, 0.010412171483039856, 0.002450828207656741, 0.01903197169303894, -0.002322557382285595, 0.01577560231089592, 0.0066803451627492905, 0.01416110061109066, -0.029416779056191444, -0.0043441057205200195, 0.0034513408318161964, 0.015529323369264603, 0.009126042947173119, -0.009338117204606533, -0.02376602031290531, -0.012717626057565212, 0.013511194847524166, -0.027843324467539787, 0.010029069148004055, -0.0047203670255839825, -0.008277744986116886, 9.085851343115792e-05, 0.0013767736963927746, 0.021412678062915802, -0.008277744986116886, -0.016459714621305466, 0.0015503668691962957, 0.010453218594193459, -0.02390284277498722, 0.0022626975551247597, 0.004867450799793005, -0.013805363327264786, 0.01830681413412094, 0.023506058380007744, -0.023054545745253563, -0.020619109272956848, 0.02922522835433483, -0.004142292775213718, -0.032372139394283295, 0.006930045783519745, -0.003066528122872114, -0.0033641166519373655, 0.036066338419914246, -0.02550366334617138, -0.0027330240700393915, -0.011328880675137043, -0.02421753481030464, -0.009892246685922146, 0.012375570833683014, -0.013148616068065166, 0.01754060946404934, -0.00471694627776742, -0.012792878784239292, 0.03883014991879463, -0.002096800599247217, -0.002753547392785549, -0.002139557618647814, 0.010302714072167873, 0.01873096264898777, 0.01165041234344244, 0.004532236140221357, -0.00818881019949913, -0.0019514270825311542, 0.010740544646978378, -0.002202837960794568, 0.009946975857019424, 0.018087899312376976, 0.003995209001004696, 0.010528470389544964, 0.01784161850810051, 0.02096116542816162, 0.03573796525597572, 0.00937232282012701, -0.008701893500983715, -0.040499377995729446, 0.013148616068065166, -0.007395241409540176, 0.02933468669652939, -0.013422260992228985, -0.003186247544363141, -0.02889685519039631, -0.0035539574455469847, -0.026447737589478493, 0.018689915537834167, 0.020988529548048973, 0.011458861641585827, -0.002264407929033041, -0.010726862587034702, 0.0011638441355898976, 0.027090800926089287, -0.010466900654137135, 0.0029108929447829723, -0.01725328341126442, -0.013217027299106121, -0.011096282862126827, 0.0036839384119957685, 0.037544019520282745, 0.013483830727636814, -0.002202837960794568, 0.019250888377428055, 0.0026782951317727566, 0.009830676950514317, 0.019675036892294884, 0.010884208604693413, -0.0007443984504789114, 0.00623567309230566, -0.012847607024013996, 0.05076104775071144, -0.0456986241042614, -0.00416281633079052, 0.002683426020666957, 0.03330253064632416, -0.024244898930191994, -0.021576864644885063, 0.001617067726328969, 0.0016435770085081458, 0.0009269706206396222, 0.015666145831346512, 0.031934309750795364, -0.012040356174111366, -0.004976908676326275, 0.000605438370257616, -0.014106371439993382, 0.02332819066941738, -0.027843324467539787, 0.009126042947173119, 0.01959294266998768, 0.023232415318489075, 0.036066338419914246, 0.0033777987118810415, -0.002384127350524068, 0.023081909865140915, 0.008448773063719273, 0.05106205493211746, 0.008387202396988869, 0.0021087725181132555, 0.018990924581885338, -0.041238218545913696, -0.03302888572216034, -0.03125019744038582, -0.017951076850295067, 0.013593288138508797, -0.0005477165104821324, 0.012286636047065258, 0.0005956042441539466, 0.0017470488091930747, -0.004470666404813528, 0.0033059671986848116, 0.005541300401091576, -0.03083973005414009, -0.021946284919977188, 0.021918920800089836, -0.009126042947173119, 0.003540275152772665, -0.008127240464091301, -0.03743456304073334, -0.0017162638250738382, -0.029827246442437172, 0.02287667617201805, -0.014174782671034336, -0.0025517346803098917, 0.02461431920528412, -0.007429447025060654, -0.008736099116504192, 0.00884555745869875, 0.00893449131399393, -0.011609366163611412, 0.04233279824256897, -0.00729946605861187, 0.006112533155828714, 0.015693509951233864, -0.02211047150194645, 0.008209333755075932, 0.007196849212050438, -0.008332474157214165, -0.0011852225288748741, -0.02109798789024353, 0.00827090349048376, -0.01726696453988552, -0.0021891556680202484, -0.03051135689020157, -0.009057631716132164, -0.01327859703451395, 0.003748929128050804, 0.009570715017616749, -0.0046895816922187805, 0.019223522394895554, 0.012211384251713753, -0.003718144027516246, -0.03127755969762802, -0.012095085345208645, -0.002154950052499771, -0.004706684499979019, 0.10732335597276688, 0.015337771736085415, -0.005780739244073629, 0.008948173373937607, -0.00011704714415827766, 0.022780900821089745, -0.01652812585234642, -0.022329388186335564, 0.028404295444488525, -0.00818196963518858, 0.013620653189718723, -0.026625605300068855, 0.019127747043967247, -0.012868130579590797, -0.0008726692758500576, -0.01128099299967289, -0.012861289083957672, -0.0019274831283837557, 0.006851373240351677, 0.001314348541200161, 0.004111507907509804, 0.012957065366208553, 0.0015443809097632766, 0.015283042564988136, -0.03513594716787338, -0.007142120506614447, 0.037708207964897156, 0.0017308011883869767, 0.015132538974285126, -0.014845211990177631, -0.011896693147718906, 0.022520938888192177, 0.027843324467539787, 0.008524024859070778, -0.01505044475197792, 0.0001587351580383256, -0.0004664782900363207, 0.010733704082667828, -0.018402589485049248, 0.012984429486095905, 0.022603033110499382, 0.025298429653048515, 0.004679320380091667, -0.009755425155162811, 0.008503501303493977, 0.006663242354989052, -0.029143134132027626, 0.002709080232307315, -0.033986642956733704, -0.009242341853678226, 0.028951583430171013, -0.007449970580637455, -0.008195651695132256, -0.00920813623815775, 0.016610218212008476, 0.0031332289800047874, -0.015844013541936874, -0.003807078581303358, -0.0040704612620174885, 0.03335725888609886, -0.00019582681125029922, 6.0501079133246094e-05, 0.01238925289362669, 0.0029810143169015646, -0.01785530149936676, -0.024450132623314857, -0.03809130936861038, -0.00951598584651947, -0.012922859750688076, 0.009344957768917084, -0.03820076584815979, -0.009303911589086056, -0.020742250606417656, 0.00550025375559926, 0.014448427595198154, 0.0032426868565380573, 0.03127755969762802, -0.018484683707356453, 0.0034000324085354805, -0.0044022551737725735, -0.01785530149936676, -0.04257907718420029, 0.02302718162536621, -0.013018635101616383, -0.016131341457366943, 0.00039614312117919326, 0.014954669401049614, 0.016446031630039215, -0.040773022919893265, 0.007730456069111824, 0.0034838360734283924, 0.017814254388213158, -0.0012809981126338243, -0.0132717564702034, -0.004073882009834051, -0.0031520421616733074, -0.010802115313708782, -0.015214632265269756, -0.001575165893882513, -0.016747040674090385, 0.00788780115544796, -0.04693002626299858, -0.008695052936673164, -0.009256023913621902, 0.004292797297239304, -0.0023499217350035906, 0.017321694642305374, 0.025188973173499107, -0.011431497521698475, -0.01416110061109066, 0.004480928182601929, -0.019250888377428055, -0.0026885569095611572, 0.0035744807682931423, 0.016049247235059738, 0.006519579328596592, 0.020099185407161713, 0.011322039179503918, 0.008120398968458176, -0.009310753084719181, -0.013032317161560059, -0.03877541795372963, 0.010473741218447685, -0.0024628001265227795, -0.016705993562936783, -0.007176326122134924, 0.016336573287844658, -0.015296725556254387, 0.020454922690987587, 0.005979131441563368, 0.01319650374352932, -0.002016417682170868, 0.014503155834972858, -0.005520776845514774, -0.03275524079799652, 0.0014246614882722497, -0.013210185803472996, -0.002909182570874691, -0.021727370098233223, 0.004142292775213718, -0.02832220122218132, -0.00855138897895813, -0.012744990177452564, -0.02272617258131504, -0.008127240464091301, -0.02595517598092556, -0.012929700314998627, 0.00641696248203516, 0.004251750651746988, -0.001852230867370963, -0.00586283253505826, -0.02815801464021206, -0.036832544952631, -0.0021566604264080524, -0.0007910035201348364, -0.037817664444446564, 0.008373520337045193, -0.0021942865569144487, 0.020400194451212883, -0.004484348464757204, 0.04233279824256897, -0.028677938506007195, 0.0033777987118810415, 0.005763636436313391, -0.004494610242545605, 0.005431842524558306, -0.005777318496257067, -0.02183682844042778, -0.038118671625852585, -0.017636384814977646, 0.03363090381026268, 0.028568482026457787, 0.006393018644303083, -0.01355908252298832, -0.017745843157172203, 0.03880278393626213, -0.002274669473990798, -0.0047203670255839825, -0.015898743644356728, -0.04214124754071236, -0.015228314325213432, -0.0072789425030350685, -0.013292279094457626, 0.01327859703451395, -0.014489473775029182, -0.0035505369305610657, 0.0515819787979126, -0.001375918509438634, 0.0010415592696517706, -0.01784161850810051, 0.021645275875926018, -0.021877873688936234, 0.00044509980943985283, 0.017034366726875305, 0.021002212539315224, -0.0007927137776277959, 0.017349058762192726, 0.00394390057772398, 0.004142292775213718, -0.005100048612803221, -0.002184024779126048, 0.005808103829622269, -0.01639130339026451, -0.013251232914626598, -0.021631594747304916, 0.013182821683585644, -0.013388055376708508, -0.02195996791124344, 0.019661353901028633, -0.016610218212008476, -0.020468605682253838, -0.0132717564702034, -0.005859411787241697, -0.03168802708387375, -0.02195996791124344, -0.00471694627776742, 0.0017504694405943155, 0.01651444286108017, -0.008859239518642426, -0.012190860696136951, 0.014024278149008751, -0.013907979242503643, 0.033247802406549454, 0.014954669401049614, 0.01959294266998768, 0.011404132470488548, -0.01901829056441784, 0.011985627003014088, -0.0033042568247765303, -0.00604412192478776, -0.010165891610085964, 0.019387708976864815, 0.011609366163611412, -0.01767743192613125, 0.0033128082286566496, -0.015967154875397682, 0.0006186930113472044, -0.042852722108364105, -0.02241148054599762, 0.01874464564025402, 0.0077441381290555, -0.004296218045055866, -0.009427051991224289, 0.0008730968693271279, -0.037708207964897156, 0.008777146227657795, -0.0040636202320456505, 0.02652982994914055, -0.0022490154951810837, -0.017472198233008385, -0.023683927953243256, 0.005257394164800644, 0.017431151121854782, 0.03499912470579147, 0.024067029356956482, -0.018484683707356453, -0.029006311669945717, 0.0015794415958225727, -0.017321694642305374, -0.014927305281162262, -0.003182827029377222, 0.012279795482754707, -0.0076483627781271935, 0.0017042919062078, 0.00478877779096365, -0.011718823574483395, -0.011800916865468025, 0.01046005915850401, -0.016582854092121124, 0.026625605300068855, 0.016897546127438545, 0.01563877984881401, 0.003868648549541831, 0.003533434122800827, 0.022096790373325348, 0.015994518995285034, -0.00028668533195741475, -0.003653153544291854, -0.01577560231089592, 0.0007217372767627239, 0.009474939666688442, 0.020605428144335747, 0.0011552927317097783, -0.004118348937481642, -0.01931929960846901, -0.0066358782351017, 0.0034547613468021154, 0.0005220622988417745, 0.007908324711024761, -0.03447920083999634, -0.03617579862475395, -0.004094405099749565, -0.020591745153069496, 0.011192058213055134, -0.00586283253505826, 0.017814254388213158, -0.00442619901150465, 0.014612614177167416, -0.030292442068457603, 0.03417819365859032, -0.02241148054599762, 0.003102444112300873, -0.04074566066265106, 0.0060030752792954445, 0.008441931568086147, -0.020619109272956848, 0.014653660356998444, -0.004231227561831474, -0.035026490688323975, 0.007696250453591347, 0.0059449258260428905, 0.012122449465095997, 0.0057089077308773994, 0.012334523722529411, -0.013264914974570274, -0.009256023913621902, 0.01650076173245907, -0.03699672967195511, -0.02800751104950905, 0.01128099299967289, 0.028650574386119843, -0.008619800209999084, 0.0076688858680427074, -0.021741053089499474, 0.015679826959967613, 0.0077441381290555, 0.010118003934621811, 0.004306479822844267, -0.05533090978860855, 0.012225066311657429, 0.0005130833596922457, 0.012190860696136951, 0.022780900821089745, -0.010118003934621811, -0.0060817482881248, -0.019100382924079895, -0.008982378989458084, 0.013518036343157291, 0.0092149768024683, -0.019647672772407532, 0.011711983010172844, 0.008640323765575886, 0.00046562316128984094, -0.005630234722048044, -0.01009748037904501, 0.008065670728683472, 0.010330078192055225, -0.011677777394652367, -0.03349408134818077, -0.007135279010981321, -0.007641521282494068, 0.028294837102293968, -0.006211729254573584, -0.02007182128727436, 0.004207283724099398, -0.022767219692468643, -0.029991433024406433, -0.019100382924079895, -0.0099606579169631, 0.01054215244948864, 0.033712998032569885, 0.013682222925126553, 0.013593288138508797, 0.014284241013228893, -0.01563877984881401, -0.006639298517256975, 0.006129635963588953, -0.007709932513535023, -0.004617750179022551, 0.002957070479169488, 0.008195651695132256, 0.0026133046485483646, -0.016569171100854874, -0.0092149768024683, 0.0072857835330069065, -0.0006576018640771508, 0.008996061980724335, 0.0022045481018722057, 0.0027757808566093445, 0.015337771736085415, -0.005431842524558306, 0.006492214743047953, 0.03174275532364845, 0.016035566106438637, 0.009625444188714027, -0.016008200123906136, -0.018799373880028725, -0.006030439864844084, -0.011130488477647305, -0.027815958485007286, -0.033986642956733704, 0.01247134618461132, -0.013087046332657337, 0.014845211990177631, -0.013080204837024212, 0.002406361047178507, -0.012635532766580582, -0.036203160881996155, 0.04375574737787247, -0.018963560461997986, 0.0024405664298683405, 0.032098494470119476, 0.003080210415646434, -0.017882665619254112, 0.003453050972893834, 0.02243884466588497, 0.018621506169438362, -0.029444143176078796, 0.016309209167957306, -0.03040189854800701, 0.013039158657193184, -0.007812549360096455, 0.012519233860075474, -0.01009748037904501, 0.01371642854064703, -0.024682730436325073, -8.572767546866089e-05, -0.02564048580825329, 0.029580965638160706, 0.016418667510151863, -0.006191205698996782, -0.0095775555819273, -0.0033931913785636425, -0.0018727543065324426, -0.010384807363152504, -0.007073709275573492, -0.00611595343798399, 0.010713180527091026, -0.0009098678128793836, 0.007792025804519653, -0.0016478527104482055, -0.006064645480364561, 0.0023704450577497482, 0.021481089293956757, -0.033411987125873566, 0.01812894456088543, 0.2066562920808792, -0.01799212396144867, -0.004436460789293051, 0.025134243071079254, 0.007819389924407005, 0.011623048223555088, 0.009160248562693596, -0.010562676005065441, -0.0143800163641572, -0.01989395171403885, -0.013312802650034428, 0.03160593658685684, -0.023054545745253563, -0.00043612084118649364, 0.002567127114161849, 0.002132716588675976, -0.04044464975595474, -0.003116126172244549, -0.005466048140078783, -0.062007833272218704, 0.0037797139957547188, -0.002632117597386241, -0.009399686940014362, -0.003694200189784169, 0.014024278149008751, 0.010795273818075657, -0.013107569888234138, -0.0016863340279087424, 0.032536327838897705, -0.00024905920145101845, -0.033110979944467545, -0.007764661684632301, -0.021029576659202576, -0.0075457459315657616, -0.005055581219494343, 0.014995716512203217, 0.00428253598511219, -0.009762265719473362, 0.014571567066013813, -0.020153913646936417, -0.006468270905315876, -0.0049871704541146755, 0.0046690586023032665, 0.005428421776741743, -0.0076688858680427074, 0.03234477341175079, -0.006629037205129862, -0.025572074577212334, -0.017143825069069862, 0.01975712925195694, -0.029854610562324524, 0.011219422332942486, 0.05073368176817894, 0.03420555591583252, 0.002970752539113164, -0.01873096264898777, -0.015392500907182693, 0.00950914528220892, -0.011780394241213799, 0.009981181472539902, -0.017472198233008385, 0.026789791882038116, 0.014003755524754524, 0.02509319595992565, -0.02490164525806904, 0.008715575560927391, -0.009536509402096272, 0.00431674113497138, 0.020537016913294792, -0.03168802708387375, 0.012738149613142014, -0.004132031463086605, -0.0016085163224488497, 0.007162643596529961, -0.023834431543946266, 0.0009620313066989183, 0.02257566712796688, -0.020851707085967064, 0.0092149768024683, -0.0006764148711226881, 0.013107569888234138, -0.011711983010172844, 0.01291601825505495, -0.011609366163611412, -0.0169796384871006, -0.0354369580745697, -0.008482977747917175, -0.008503501303493977, -0.016418667510151863, 0.002941677812486887, -0.011253627948462963, -0.02832220122218132, -0.002187445294111967, 0.0072584194131195545, 0.00048144321772269905, -0.01357960607856512, 0.011513590812683105, 0.025024786591529846, -0.003143490757793188, 0.0038241813890635967, -0.013825885951519012, -0.006478532683104277, 0.03157857060432434, 0.008578754030168056, -0.02761072665452957, -0.007169484626501799, 0.009379163384437561, 0.018375225365161896, -0.010548993945121765, -0.014188464730978012, 0.02550366334617138, -0.01297074742615223, 0.004679320380091667, -0.0243269931524992, 0.002668033353984356, 0.008503501303493977, -0.02167264185845852, -0.017335375770926476, 0.005171880125999451, 0.011814599856734276, 0.010247984901070595, -0.008134081959724426, 0.0018402589485049248, 0.009967499412596226, -0.004067040979862213, -0.0014973483048379421, -0.030319806188344955, 0.018183674663305283, 0.008825033903121948, 0.013750634156167507, 0.01993499882519245, -0.03937743604183197, -0.003878910094499588, -0.0020249690860509872, -0.024368038401007652, 0.01739010587334633, 0.008674529381096363, -0.017472198233008385, 0.02390284277498722, -0.004190180916339159, -0.0011646992061287165, 0.0009218397899530828, -0.006136476993560791, -0.002385837724432349, -0.00012068148498656228, -0.008838715963065624, 0.013100728392601013, -0.009550191462039948, 0.002880107844248414, -0.007620998192578554, -0.03866596147418022, -0.0029450985603034496, -0.006177523639053106, -0.018525728955864906, 0.011294675059616566, -0.0036428917665034533, -0.015337771736085415, -0.018238402903079987, 0.008298268541693687, 0.022630397230386734, -0.03319307416677475, 0.024258581921458244, 0.015693509951233864, 0.0024628001265227795, -0.007922006770968437, -0.025312112644314766, -0.17513245344161987, 0.025708897039294243, 0.011014189571142197, -0.0028168277349323034, 0.02789805270731449, 0.03677781671285629, 0.0213989969342947, -0.0028869491070508957, -0.021467408165335655, -0.01416110061109066, 0.022356752306222916, 0.006824008654803038, -0.043290551751852036, -0.02966305986046791, -0.00937232282012701, -2.6095098291989416e-05, -0.016938591375947, 0.025763625279068947, 0.036805178970098495, 0.021741053089499474, 0.0026475100312381983, -0.00677954126149416, 0.017609020695090294, -0.006735074333846569, 0.0007662044954486191, 0.00490849744528532, -0.0034735742956399918, 0.03382245451211929, 0.016487078741192818, -0.019688718020915985, -0.02832220122218132, 0.02889685519039631, 0.0011741057969629765, -0.032508961856365204, 0.030319806188344955, 0.0121634965762496, -0.007860437035560608, -0.0014973483048379421, -0.002686846535652876, 0.008359838277101517, 0.01595347188413143, -0.005828626919537783, 0.017034366726875305, 0.005206085741519928, 0.0037728729657828808, 0.045069243758916855, -0.0028561640065163374, -0.012464504688978195, 0.006782962009310722, -0.02138531394302845, 0.015556687489151955, 0.0014768249820917845, 0.027172895148396492, 0.005647337529808283, 0.02536684088408947, 0.011472543701529503, 0.0176911149173975, 0.003752349643036723, -0.017745843157172203, -0.011452020145952702, -0.0014734043506905437, -0.0060030752792954445, 0.0258183553814888, -0.020003410056233406, 0.004511713050305843, -0.009440734051167965, -0.008585594594478607, 0.010610563680529594, -0.025298429653048515, 0.00752522237598896, -0.0004968357388861477, 0.006694027688354254, 0.023820750415325165, -0.01741746999323368, -0.015296725556254387, 0.004843506962060928, -0.027036072686314583, 0.010453218594193459, -0.010022228583693504, -0.01595347188413143, -0.04443985968828201, 0.036942001432180405, -0.009844359010457993, -0.017581656575202942, -0.0037284058053046465, 0.013217027299106121, -0.016911227256059647, -0.01017273310571909, -0.01142465602606535, -0.002016417682170868, 0.019497167319059372, -0.0272686704993248, -0.013483830727636814, -0.01164357177913189, 0.014817846938967705, 0.024299627169966698, 0.013388055376708508, -0.020591745153069496, -0.00188130559399724, -0.016145022585988045, 0.011855646036565304, -0.00788096059113741, -0.007306307088583708, 0.014338969253003597, 0.029444143176078796, 0.023834431543946266, -0.003964424133300781, 0.014311605133116245, 0.036339983344078064, 0.009714378044009209, -0.007169484626501799, 0.0043577877804636955, 0.005363431293517351, -0.004942703060805798, 0.02509319595992565, 0.030730271711945534, -0.011431497521698475, -0.013709587045013905, 0.018238402903079987, -0.013155457563698292, 0.0679185539484024, -0.029006311669945717, -0.014202147722244263, 0.003355565248057246, -0.020441241562366486, -0.03289206326007843, -0.1164630800485611, 0.002753547392785549, 0.009823836386203766, 0.008147764019668102, 0.0047340490855276585, 0.003146911272779107, -0.0033418829552829266, 0.00597229041159153, -0.004864030051976442, 0.0011313487775623798, -0.03275524079799652, -0.025134243071079254, 0.0076757268980145454, -0.0072652604430913925, 0.0228493120521307, -0.03628525510430336, -0.006471691653132439, -0.010083798319101334, 0.008715575560927391, 0.0324542336165905, 0.006550364196300507, -0.018676234409213066, 0.014722071588039398, -0.019237205386161804, 0.04074566066265106, -0.015146221034228802, -0.025708897039294243, 0.023711292073130608, 0.028404295444488525, 0.008879763074219227, -0.01468102540820837, -0.007066868245601654, 0.030730271711945534, -0.0009295360068790615, -3.107895463472232e-05, -0.001994183985516429, -0.04509660601615906, -0.015543005429208279, 0.026967661455273628, -0.032508961856365204, 0.008647165261209011, -0.01739010587334633, 0.020619109272956848, -0.004166237078607082, 0.012567121535539627, 0.0003734819183591753, -0.029444143176078796, 0.0008581319125369191, 0.010891049169003963, -0.027815958485007286, -0.025284748524427414, 0.008517183363437653, -0.04487768933176994, -0.010289032012224197, 0.022657761350274086, -0.01172566507011652, 0.03182484954595566, 0.015283042564988136, -0.007237895857542753, 0.005226609297096729, -0.016268163919448853, 0.017650067806243896, -0.007148961536586285, 0.031222833320498466, 0.004563021473586559, -0.002519239205867052, -0.0057294308207929134, -0.023697610944509506, 0.03127755969762802, -0.00026167251053266227, -0.024545907974243164, 0.019866587594151497, -0.025147926062345505, 0.018211038783192635, -0.02200101502239704, 0.021631594747304916, -0.02669401653110981, -0.0022370433434844017, 0.006536682136356831, -0.0052881790325045586, -0.0028818182181566954, -0.019059335812926292, 0.00021806042059324682, 0.01260816864669323, 0.02595517598092556, 0.007429447025060654, -0.002245594747364521, -0.015816649422049522, 0.00033628338132984936, -0.019141430035233498, -0.0006473401444964111, 0.01739010587334633, 0.0010141948005184531, -0.016336573287844658, 0.0035710602533072233, 0.029881974682211876, 0.01829313114285469, 0.0062904017977416515, -0.01090473122894764, -0.004398834891617298, -0.028404295444488525, 0.016021883115172386, -0.05779371038079262, 0.028103286400437355, -0.004214124754071236, 0.009714378044009209, 0.007347353734076023, -0.023068226873874664, 0.02137163281440735, -0.02800751104950905, -0.011376768350601196, 0.019647672772407532, -0.007504699286073446, 0.03426028788089752, -0.012902336195111275, -0.013305962085723877, -0.031770121306180954, -0.018648870289325714, 0.011369926854968071, -0.0035676395054906607, 0.0059312437660992146, -0.0056199729442596436, -0.00043911385000683367, -0.00512741319835186, 0.023957572877407074, 0.0030613974668085575, -0.02405334822833538, 0.003102444112300873, 0.009782789275050163, 0.035327497869729996, -0.0028920797631144524, -0.02919786423444748, 0.011794076301157475, -0.03554641455411911, -0.00034120044438168406, 0.008811351843178272, 0.0027620987966656685, 0.026803474873304367, -0.024067029356956482, 0.0022045481018722057, 0.005537879653275013, 0.03735246881842613, -0.011493067257106304, -0.008291427046060562, 0.009173930622637272, -0.028869491070508957, 0.00512741319835186, 0.037680841982364655, -0.028978947550058365, -0.0011475963983684778, 0.018074216321110725, -0.029526237398386, 0.018908832222223282, 0.02624250389635563, 0.005695225205272436, -0.028705304488539696, 0.0019189317245036364, -0.01335384976118803, 0.0206738393753767, -0.015077809803187847, 0.007935688830912113, -0.034424472600221634, 0.020769614726305008, -0.015433547087013721, 0.004138872493058443, -0.010521629825234413, 0.025024786591529846, -0.007867278531193733, -0.0076688858680427074, -0.002661192324012518, -0.01518726721405983, -0.021275857463479042, -0.00538053410127759, -3.9249539440788794e-06, 0.017294330522418022, -0.00026466549024917185, 0.016404984518885612, 0.01595347188413143, -0.0036121068987995386, -0.001182657084427774, -0.019059335812926292, 0.004515133332461119, 0.0025004262570291758, -0.012936541810631752, -0.031003916636109352, 0.0022986135445535183, 0.02242516353726387, -0.011335721239447594, 0.0015614837175235152, -0.006437486037611961, -0.0036223684437572956, 0.016158705577254295, 0.006160420831292868, -0.0081067169085145, -0.0002674447023309767, -0.0016606798162683845, 0.014653660356998444, 0.027172895148396492, -0.010419012978672981, 0.0010167602449655533, 0.031031280755996704, 0.02227465808391571, -0.022616714239120483, 0.01934666372835636, 0.014434745535254478, -0.017814254388213158, -0.016008200123906136, -0.0010167602449655533, -0.018224721774458885, -0.019880270585417747, 0.004258591681718826, 0.030210347846150398, 0.010726862587034702, -0.0040123118087649345, 0.0257909893989563, 0.025106878951191902, -0.016487078741192818, 0.003748929128050804, 0.016213433817029, -0.002934836782515049, -0.013025476597249508, 0.03904906287789345, 0.009714378044009209, 0.030648179352283478, 0.007737297099083662, 0.013442783616483212, 0.009358640760183334, 0.030155619606375694, 0.00929707009345293, 0.029170500114560127, -0.011151012033224106, 0.01609029434621334, 0.013251232914626598, 0.003988367971032858, -0.038994334638118744, -0.005291599780321121, 0.013080204837024212, -0.046820566058158875, -0.01782793551683426, 0.01959294266998768, -0.01903197169303894, 0.03743456304073334, 0.00686163455247879, -0.010856843553483486, 0.005527617875486612, 0.0005994524108245969, 0.02996406890451908, 0.011718823574483395, 0.006245934870094061, 0.0020420716609805822, -0.0034633127506822348, -0.00818881019949913, -0.01394218485802412, 0.009242341853678226, -0.011465703137218952, -0.007477334700524807, 0.018484683707356453, -0.01026166696101427, 0.029690423980355263, -0.010959460400044918, -0.015898743644356728, 0.03478021174669266, 0.008359838277101517, 0.036832544952631, 0.00011116806126665324, -0.011157852597534657, 0.012382411397993565, 0.005161618813872337, 0.007894642651081085, 0.008435090072453022, -0.03554641455411911, 0.010501106269657612, 0.018621506169438362, -0.023506058380007744, -0.017472198233008385, 0.020181279629468918, -0.0050076935440301895, 0.007039503660053015, -0.00482640415430069, 0.009529667906463146, 0.005804683081805706, -0.02464168332517147, 0.011841963976621628, -0.027104483917355537, -0.011657253839075565, 0.031086010858416557, -0.006030439864844084, -0.024874281138181686, -0.00302206096239388, -0.023547105491161346], "a78b0967-45af-4804-a706-7989c942dae7": [-0.014457122422754765, -0.015170376747846603, -0.010253035463392735, 0.00603523151949048, -0.004344680812209845, 0.0278032124042511, -0.0053254058584570885, -0.004533281549811363, -0.008264152333140373, -0.025896629318594933, 0.02921600639820099, 0.015019495971500874, 0.010273609310388565, 0.014662868343293667, -0.0023249357473105192, 0.007475457154214382, 0.03020359016954899, 0.00439611729234457, 0.03684234246611595, -0.011034871451556683, 0.0010956001933664083, -0.00449213245883584, -0.005256823729723692, 0.03516893833875656, -0.009128287434577942, 0.033440668135881424, 0.015513287857174873, -0.009292884729802608, 0.01939503848552704, -0.01322950143367052, -0.006107242777943611, 0.012159619480371475, -0.0012567683588713408, 0.0004672160721383989, -0.032151322811841965, -0.012852299027144909, -0.002937031676992774, -0.019532203674316406, 0.024387821555137634, 0.013908464461565018, 0.010246177203953266, -0.016967229545116425, -0.017570752650499344, 0.012811150401830673, -0.026061225682497025, 0.017296424135565758, -0.0039983405731618404, -0.023263072595000267, -0.027871794998645782, 0.016569452360272408, 0.02393517829477787, -0.002811869140714407, -0.029133707284927368, 0.0005332264117896557, -0.015883632004261017, 0.0009627222898416221, 0.012879732064902782, 0.024127209559082985, -0.005352838896214962, 0.01792738027870655, 0.005956362001597881, 0.005743756890296936, 0.004066922701895237, 0.008895107544958591, -0.04002455621957779, -0.019792815670371056, 0.004468128550797701, -0.0027604324277490377, -0.011274909600615501, -0.014566853642463684, 0.03708923980593681, 0.020986145362257957, -0.000438068644143641, 0.0029318879824131727, 0.012872873805463314, -0.03530610352754593, -0.018722932785749435, -0.030999142676591873, -0.020135726779699326, 0.012571112252771854, -0.007297143340110779, -0.03182213008403778, 0.01651458814740181, 0.004132076166570187, 0.02080783247947693, -0.0203689057379961, 0.0073863002471625805, 0.02449755184352398, -0.02346882037818432, -0.029408035799860954, 0.002628411864861846, 0.010479356162250042, 0.008524764329195023, 0.004430408589541912, 0.0030981996096670628, 0.018380023539066315, -0.0077429274097085, 0.022083459421992302, 0.005819197278469801, -0.02084898017346859, -0.01831144094467163, -0.006686761975288391, -0.01947733759880066, -0.005260252859443426, -0.012433947995305061, 0.006052376702427864, -0.012207627296447754, -0.006024944130331278, 0.02002599462866783, -0.007393158506602049, -0.01383302453905344, 0.03728127107024193, -0.0218777135014534, -0.04682790860533714, -0.02008086070418358, -0.020478637889027596, 0.017858797684311867, -0.029792096465826035, -0.027185974642634392, -0.012982605956494808, 0.007269710302352905, 0.017680484801530838, -0.002030032454058528, -0.01750217005610466, -4.235485175740905e-05, 0.013709576800465584, 0.004900196101516485, -0.01119261048734188, 0.00449213245883584, 0.013284367509186268, 0.03917413949966431, 0.012818008661270142, 0.014031913131475449, -0.01853090338408947, 0.005232819821685553, 0.0187092162668705, -0.03259024769067764, -0.006841071881353855, -0.011096595786511898, -0.016610601916909218, 0.01383302453905344, 0.01529382448643446, 0.0025272530037909746, -0.027871794998645782, -0.026445286348462105, 0.013867315836250782, 0.02008086070418358, 0.0027912945952266455, -0.04199972376227379, 0.010945715010166168, 0.017488453537225723, -0.011425790376961231, 0.028118690475821495, -0.013181493617594242, 0.02302989363670349, -0.017570752650499344, 0.003751444863155484, 0.003562843892723322, -0.007009098306298256, -0.004985923878848553, 0.025814330205321312, 0.014237659052014351, 0.019408755004405975, -0.0017437017522752285, 0.006412433460354805, 0.025965211912989616, -0.011384640820324421, -0.002793008927255869, -0.03590962663292885, -0.008970548398792744, 0.025320539250969887, 0.029106274247169495, -0.030505351722240448, 0.0005092226201668382, -0.022206908091902733, 0.0032902297098189592, 0.04279527813196182, 0.028639916330575943, -0.011864716187119484, -0.003614280605688691, -0.0338795930147171, -0.020396338775753975, 0.019120709970593452, -0.0036211388651281595, -0.015636736527085304, -0.007413732819259167, -0.014011338353157043, -0.013291225768625736, 0.0046498714946210384, 0.011912724003195763, 0.002227206015959382, 0.01438853982836008, -0.006244407035410404, -0.0228652972728014, -0.6338090300559998, -0.024291805922985077, -0.015815049409866333, -0.017406156286597252, 0.000341624952852726, -0.000690965389367193, 0.013208926655352116, -0.004512707237154245, -0.019189292564988136, 0.0017899947706609964, -0.03036818653345108, 0.008565913885831833, 0.0022597825154662132, -0.010129586793482304, -0.02042377181351185, -0.004351539071649313, 0.004838472232222557, -0.026651032269001007, 0.00800353940576315, -0.011288626119494438, -0.008627637289464474, 0.0016399712767452002, 0.014155360870063305, 0.0176667682826519, -0.02337280474603176, -0.01559558603912592, 0.01879151538014412, -0.0024843893479555845, -0.0015199524350464344, 0.03195929154753685, -0.03187699615955353, 0.02681563049554825, 0.019449904561042786, 0.011706977151334286, 0.04899510368704796, -0.018462320789694786, -0.035031773149967194, 0.0187092162668705, 0.007763502188026905, 0.018626919016242027, -0.017186691984534264, -0.005057935137301683, 0.015252675861120224, 0.007804651279002428, 0.02153480239212513, 0.01383302453905344, 0.005009927786886692, -0.01104858797043562, 0.0032919442746788263, 0.01267398614436388, 0.002609551651403308, -0.006275268737226725, -0.022152042016386986, -0.0018071403028443456, 0.005277398508042097, 0.00924487691372633, 0.03464771434664726, -0.01913442648947239, 0.0066764745861291885, 0.0049584913067519665, 0.02397632785141468, 0.02355111762881279, -0.007804651279002428, 0.0035594147630035877, -0.006940516177564859, 0.00048136114492081106, -0.012276208959519863, -0.0006120959296822548, 0.025059927254915237, -0.011000581085681915, 0.015801332890987396, 0.011418932117521763, 0.0023129337932914495, -0.023180775344371796, 0.028941677883267403, 0.01004043035209179, 0.03829628601670265, -0.015252675861120224, -0.007886949926614761, 0.029325736686587334, 0.0109388567507267, -0.020341472700238228, -0.02693907730281353, -0.024552417919039726, 0.02080783247947693, -0.023701999336481094, 0.0003857747360598296, 0.03464771434664726, -0.01526639237999916, 0.011357207782566547, 0.012763142585754395, 0.029956692829728127, -0.00012709133443422616, 0.021260473877191544, 0.04186255857348442, 0.01263283658772707, -0.007338292431086302, -0.0022683553397655487, 0.007262852042913437, -0.007324576377868652, -0.007400016766041517, -0.02611609175801277, 0.00389889650978148, -0.008243577554821968, -0.01814684271812439, -0.018284007906913757, -0.03311147540807724, -0.012447664514183998, 0.060462042689323425, -0.013805591501295567, -0.00194944825489074, -0.018174275755882263, -0.008874533697962761, -0.008716794662177563, 0.033303502947092056, -0.023496253415942192, 0.010877132415771484, -0.0003002613375429064, 0.01921672560274601, -0.02444268763065338, 0.023482536897063255, -0.020259173586964607, 0.011466939933598042, -0.009450623765587807, 0.02659616619348526, 0.02518337406218052, 0.008867675438523293, -0.013016896322369576, -0.01711811125278473, -0.018887531012296677, 0.00417322525754571, -0.003638284280896187, 0.0034479687456041574, 0.009142003953456879, 0.010328475385904312, -0.013538121245801449, 0.016624318435788155, 0.004605292808264494, 0.019189292564988136, -0.037939660251140594, -7.594940143462736e-06, 0.01848975382745266, 0.003149636322632432, 0.013325516134500504, 0.0018105694325640798, -0.02076668292284012, -0.01770791783928871, 0.012392798438668251, -0.03366013243794441, 0.009121429175138474, 0.0042486656457185745, -0.014470838941633701, -0.008812809363007545, 0.004708166234195232, 0.016624318435788155, -0.005304831080138683, -0.02814612351357937, 0.006631896365433931, 0.010177594609558582, -0.016528304666280746, 0.008620779030025005, 0.00980039220303297, -0.01522524282336235, 0.018558336421847343, 0.022810431197285652, -0.014237659052014351, -0.02264583297073841, 0.029737230390310287, -0.0019717374816536903, -0.03530610352754593, 0.01239965669810772, -0.008675645105540752, -0.005030502565205097, 0.04575802758336067, -0.022165758535265923, 0.005383700598031282, -0.007221702951937914, -0.01703581213951111, -0.00977981835603714, 0.010328475385904312, -0.017351290211081505, 0.022632118314504623, -0.014265092089772224, -0.007132546044886112, 0.03171239793300629, -0.0006733912159688771, -0.0010390199022367597, -0.01082912553101778, 0.02042377181351185, 0.023180775344371796, -0.011144603602588177, 0.014319958165287971, 0.004896767437458038, -0.00556544354185462, 0.005428279284387827, -0.01297574769705534, 0.002453527180477977, 0.025293106213212013, 0.00475274445489049, 0.008977406658232212, 0.021905146539211273, 0.015060645528137684, 0.034345950931310654, 0.0031256326474249363, -0.003933187574148178, -0.039448466151952744, 0.004790464881807566, -0.008963690139353275, 0.0403263196349144, -0.01492348127067089, -0.0025941208004951477, -0.023688282817602158, -0.013394098728895187, -0.00629584351554513, 0.012502530589699745, 0.04482530802488327, 0.020560935139656067, -0.0015559580642729998, -0.011871574446558952, 0.0037857359275221825, 0.016802633181214333, -0.017995962873101234, 0.006919941399246454, -0.013071762397885323, -0.011995022185146809, -0.016583168879151344, 0.004132076166570187, 0.03752816468477249, 0.014265092089772224, -0.009718094021081924, 0.023578550666570663, 0.0024672436993569136, 0.002937031676992774, 0.018023395910859108, 0.014059345237910748, 0.00844932347536087, 0.003026188351213932, -0.013675285503268242, 0.04817212000489235, -0.03697950765490532, -0.00210718740709126, 0.005555156152695417, 0.01994369551539421, -0.0186543520539999, -0.028941677883267403, 0.007722352631390095, -0.002216918859630823, 0.004101213999092579, 0.024072343483567238, 0.025841763243079185, -0.00458814762532711, -0.002366085071116686, 0.0009515776764601469, -0.010074721649289131, 0.014827465638518333, -0.03623881936073303, 0.012077320367097855, 0.015691600739955902, 0.014182793907821178, 0.03857061639428139, 0.01703581213951111, -0.008024114184081554, 0.02484046295285225, 0.015842482447624207, 0.04150593280792236, 0.004677304066717625, -0.0004359254380688071, 0.03269997984170914, -0.023880312219262123, -0.029984125867486, -0.01289344858378172, 0.0001830286782933399, 0.014100494794547558, -0.005568872671574354, 0.0082367192953825, 0.0013793589314445853, 0.0037240120582282543, -0.005836342927068472, 0.0059049250558018684, 0.0023557976819574833, -0.017351290211081505, -0.022426370531320572, 0.02131533995270729, 0.00894311536103487, -0.0008324161171913147, -0.010012997314333916, -0.025882912799715996, 0.010719393379986286, -0.016075661405920982, 0.025375403463840485, -0.019449904561042786, 0.0060009402222931385, 0.03239822015166283, -0.010842842049896717, 0.0046498714946210384, 0.005342551507055759, 0.01951848715543747, -0.014608003199100494, 0.038927242159843445, -0.008469898253679276, 0.007070822175592184, 0.005345980636775494, -0.026020076125860214, 0.009574071504175663, 0.018558336421847343, -0.01663803495466709, -0.009457482025027275, -0.020958712324500084, 0.01899726130068302, -0.025457702577114105, -0.005836342927068472, -0.03681490942835808, -0.014237659052014351, -0.010945715010166168, 0.01108973752707243, 0.004025773610919714, -0.012385940179228783, 0.021548518911004066, 0.015129227191209793, -0.0039571914821863174, -0.030258454382419586, -0.0030981996096670628, -0.013764441944658756, 0.0077360691502690315, 0.10078836232423782, 0.01473145093768835, -0.02050607092678547, 0.013908464461565018, 0.002919886028394103, 0.016226543113589287, -0.02415464073419571, -0.017008379101753235, 0.027268271893262863, 0.0004382829647511244, 0.009855258278548717, -0.0176667682826519, 0.020794115960597992, -0.01209789514541626, 0.01586991548538208, -0.00633699307218194, -0.025073641911149025, -0.0029284588526934385, 0.0015302397077903152, 0.006409004330635071, -0.004337822552770376, 0.007530322764068842, 0.0010355907725170255, 0.013304941356182098, -0.03662288188934326, -0.005033931694924831, 0.033989325165748596, 0.0011607533087953925, 0.013476396910846233, -0.011816708371043205, -0.006182683166116476, 0.02770719863474369, 0.020903846248984337, 0.019367605447769165, -0.011062304489314556, -0.006995381787419319, 0.0012533392291516066, 0.011556096374988556, -0.004550427198410034, 0.014333674684166908, 0.01736500672996044, 0.009875833056867123, 0.0030776250641793013, -0.019710516557097435, 0.008737368509173393, 0.011466939933598042, -0.008216144517064095, -0.013373523950576782, -0.026651032269001007, 0.002750145271420479, 0.040079422295093536, -0.006069522351026535, -0.006244407035410404, -0.0012327645672485232, 0.010794834233820438, -0.004200658295303583, -0.0009370039333589375, -0.01372329331934452, -0.0012404801091179252, 0.033605266362428665, -0.0012353364145383239, 0.014402256347239017, 0.014950914308428764, -0.007845800369977951, -0.020684383809566498, -0.03152036666870117, -0.021946296095848083, -0.009807250462472439, -0.010849700309336185, 0.007420591078698635, -0.027391720563173294, -0.007111971266567707, -0.01895611360669136, 0.013435248285531998, 0.01935388892889023, 0.008977406658232212, 0.025896629318594933, -0.010904565453529358, 0.0013613561168313026, -0.009553496725857258, -0.01503321249037981, -0.04024402052164078, 0.009416332468390465, -0.01788623072206974, -0.021438786759972572, 0.004121788777410984, 0.007413732819259167, 0.013558696024119854, -0.032151322811841965, 0.010170736350119114, -0.008874533697962761, 0.017214125022292137, 0.01438853982836008, -0.011034871451556683, 0.0017694201087579131, 0.0034685435239225626, -0.0022957883775234222, -0.010630236938595772, -0.009690660983324051, -0.010966289788484573, 0.015540720894932747, -0.04142363369464874, 0.005695749539881945, -0.027350571006536484, 0.007962390780448914, -0.01098000630736351, -0.005126517731696367, 0.014141644351184368, -0.01574646681547165, -0.011995022185146809, 0.005407704506069422, -0.023359088227152824, 0.0001239837147295475, 0.0061723957769572735, 0.005764331668615341, 0.0058877794072031975, 0.009087137877941132, 0.022206908091902733, 0.003381101181730628, -0.003122203517705202, -0.010074721649289131, -0.03396189212799072, -0.0013742153532803059, -0.003442825051024556, -0.019971128553152084, -0.004636154975742102, 0.01368214376270771, -0.016363706439733505, 0.02341395430266857, 0.007763502188026905, 0.004351539071649313, 0.009978706017136574, 0.02449755184352398, -0.003257653210312128, -0.020958712324500084, 0.0035251236986368895, -0.009155720472335815, -0.0031736399978399277, -0.01669290103018284, 0.014086778275668621, -0.016843782737851143, -0.01218019425868988, -0.006306130904704332, -0.023784298449754715, -0.01800967939198017, -0.024826746433973312, -0.005874063353985548, 0.012509388849139214, -0.001277343020774424, -0.012269350700080395, -0.003271369729191065, -0.0462518185377121, -0.043727993965148926, -0.0019391609821468592, -0.011309200897812843, -0.03826885297894478, 0.003382815746590495, -0.021946296095848083, 0.023990044370293617, 0.0005216531571932137, 0.03552556782960892, -0.019573353230953217, 0.008874533697962761, 0.00039884820580482483, 0.005342551507055759, 0.0047870357520878315, -0.012427089735865593, -0.020958712324500084, -0.04605978727340698, -0.016802633181214333, 0.025636017322540283, 0.021603384986519814, 0.013208926655352116, -0.01629512384533882, -0.002614695345982909, 0.032919444143772125, -0.013908464461565018, -0.012646553106606007, -0.018818948417901993, -0.0294629018753767, -0.022206908091902733, 0.001783136511221528, -0.007914382964372635, 0.006666187196969986, -0.01784508116543293, 0.01943618804216385, 0.05245164781808853, 0.004934487398713827, 0.0020077431108802557, -0.014772600494325161, 0.027570033445954323, -0.02204230986535549, 0.005709466058760881, 0.01960078440606594, 0.017913663759827614, -0.006937087047845125, 0.007955532521009445, -0.006011227611452341, 0.008867675438523293, -0.009210585616528988, 0.017310140654444695, 0.0117961335927248, -0.014594286680221558, -0.007777218706905842, -0.022975027561187744, 0.020602084696292877, -0.011590387672185898, -0.029545200988650322, 0.028077542781829834, -0.03168496489524841, -0.014443405903875828, -0.009772960096597672, -0.006436436902731657, -0.0333583690226078, -0.02595149539411068, -0.007365725468844175, 0.002335223136469722, 0.016185393556952477, -0.008661928586661816, -0.028255855664610863, 0.011028013192117214, -0.019724233075976372, 0.046224385499954224, 0.006607892457395792, 0.02084898017346859, -0.009039130061864853, -0.023016177117824554, 0.011158320121467113, -0.01038334146142006, -0.008524764329195023, -0.018023395910859108, 0.021905146539211273, 0.027185974642634392, -0.010794834233820438, 0.003329664468765259, -0.033989325165748596, 0.01252310536801815, -0.03818655386567116, -0.02788551151752472, 0.022110892459750175, 0.01263283658772707, -0.006618179846554995, -0.003300517098978162, -0.004896767437458038, -0.039009541273117065, 0.01537612359970808, 0.006690191105008125, 0.019971128553152084, -0.0008641353924758732, -0.008113271556794643, -0.028200989589095116, -0.00449213245883584, 0.016034511849284172, 0.03250795230269432, 0.019038410857319832, -0.01741987280547619, -0.02320820838212967, -0.007708636578172445, -0.01604822836816311, -0.019148143008351326, -0.013078620657324791, 0.02157595194876194, -0.0038783219642937183, -0.0025889771059155464, 0.009388899430632591, -0.0032387932296842337, -0.018942397087812424, 0.0058466303162276745, -0.028804512694478035, 0.0294629018753767, 0.0048041814006865025, 0.021438786759972572, 0.0026695611886680126, 0.01925787515938282, 0.028200989589095116, 0.023317938670516014, 0.0027895800303667784, 0.003180498257279396, -0.03349553421139717, 0.003274798858910799, 0.0011187467025592923, 0.01507436204701662, 0.015005779452621937, -0.01237222459167242, -0.01098000630736351, -0.004577860236167908, 0.009574071504175663, 0.010095296427607536, 0.010246177203953266, -0.03975022956728935, -0.03879007697105408, 0.0024415254592895508, -0.03165753185749054, 0.019792815670371056, -0.0046498714946210384, 0.02607494220137596, -0.012516247108578682, 0.015019495971500874, -0.02479931339621544, 0.017776498571038246, -0.019669367000460625, -0.004066922701895237, -0.025334255769848824, -0.0014273665146902204, 0.01033533364534378, -0.01909327693283558, 0.02530682273209095, -0.013469538651406765, -0.024223223328590393, 0.01724155806005001, 0.008634495548903942, 0.01239965669810772, 0.0013999335933476686, 0.00980039220303297, 0.0023729433305561543, -0.010328475385904312, 0.0033090899232774973, -0.020821547135710716, -0.026911644265055656, 0.01187843270599842, 0.02671961486339569, 0.0034942617639899254, 0.004749315325170755, -0.019285308197140694, 0.020094577223062515, 0.00473902840167284, 0.011206327006220818, 0.009004839695990086, -0.043727993965148926, 0.018901247531175613, -0.019161859527230263, 0.001872293301858008, 0.016157960519194603, -0.005507148336619139, -0.0042658112943172455, -0.015252675861120224, -0.006258123554289341, 0.004320676904171705, 0.019916262477636337, -0.009382041171193123, 0.020739249885082245, 0.0077360691502690315, 0.0022683553397655487, -0.010513647459447384, -0.028063826262950897, -0.005826055537909269, -0.0016082519432529807, -0.013592987321317196, -0.037171538919210434, -0.010301042348146439, -0.009622079320251942, 0.028639916330575943, -0.007461740635335445, -0.023907745257019997, 0.0005658029112964869, -0.02139763906598091, -0.029435468837618828, -0.012571112252771854, -0.021123308688402176, 0.023317938670516014, 0.027515167370438576, 0.019065843895077705, 0.01529382448643446, 0.013030612841248512, -0.002595835365355015, 0.007098255213350058, 0.009642654098570347, -0.009217443875968456, 0.009039130061864853, 0.00044664141023531556, -0.0025443986523896456, -0.005455711856484413, -0.026157241314649582, -0.012365366332232952, 0.011871574446558952, -0.001982024870812893, 0.0007471170392818749, -0.004595005884766579, -0.003165067406371236, 0.010410773567855358, -0.014854898676276207, 0.004001769702881575, 0.022028593346476555, 0.01848975382745266, -0.0029438897036015987, -0.028255855664610863, -0.01522524282336235, -0.008661928586661816, -0.015581869520246983, -0.02084898017346859, -0.023962611332535744, 0.006453582551330328, -0.013352949172258377, 0.007180553395301104, -0.014937197789549828, -0.004354968201369047, -0.016446005553007126, -0.031163739040493965, 0.03859804570674896, -0.01754331961274147, 0.006086667999625206, 0.0437554270029068, -0.0020557506941258907, -0.010417631827294827, -0.004913912620395422, 0.022892730310559273, 0.01728270761668682, -0.02877707965672016, 0.007571471855044365, -0.025814330205321312, 0.018476037308573723, -0.0036657170858234167, 0.002702137688174844, -0.0014599430141970515, 0.012420231476426125, -0.01982024870812893, 0.0013227786403149366, -0.01827029138803482, 0.03226105496287346, 0.015211526304483414, 0.005850059445947409, -0.002763861557468772, 0.007448024116456509, -0.012571112252771854, -0.0008795663597993553, -0.005160808563232422, -0.007180553395301104, 0.007763502188026905, 0.005579160060733557, 0.008319017477333546, -0.00604894757270813, -0.020560935139656067, 0.00764691224321723, 0.01758446916937828, -0.036183953285217285, 0.004008627962321043, 0.21123309433460236, -0.01368214376270771, -0.005784906446933746, 0.03366013243794441, -0.009100854396820068, 0.013250076211988926, 0.019573353230953217, -0.00924487691372633, -0.014278808608651161, -0.019669367000460625, -0.0172004085034132, 0.030313320457935333, -0.025320539250969887, -0.0016219684621319175, 0.008106413297355175, -0.008723652921617031, -0.03494947403669357, -0.006762202363461256, -0.0039983405731618404, -0.058486878871917725, 0.0043069603852927685, -0.011652111075818539, -0.004090926609933376, -0.010307900607585907, 0.0015250961296260357, 0.0045195650309324265, -0.013819308020174503, -0.005030502565205097, 0.017310140654444695, -0.00844932347536087, -0.028969110921025276, -0.010856558568775654, 0.004317247774451971, -0.00040249162702821195, 0.005671745631843805, 0.012111611664295197, 0.0048281848430633545, 0.010568512603640556, 0.02002599462866783, -0.01986139826476574, -0.00034483973286114633, -0.010170736350119114, 0.0005666601937264204, 0.003610851475968957, -0.01004043035209179, 0.021219324320554733, -0.01153552159667015, -0.021342772990465164, -0.010019855573773384, 0.01659688539803028, -0.03379729390144348, 0.007550897542387247, 0.05204015225172043, 0.023647133260965347, 0.0058294846676290035, -0.008442465215921402, -0.011528663337230682, -0.0008294156868942082, -0.016308840364217758, 0.009944415651261806, -0.02006714418530464, 0.022206908091902733, 0.0040532066486775875, 0.020821547135710716, -0.036732614040374756, 0.01158352941274643, -0.009238018654286861, 0.005819197278469801, 0.01913442648947239, -0.034922044724226, 0.0026507009752094746, -0.010493072681128979, -0.004907054360955954, 0.003614280605688691, -0.011014296673238277, -0.0090939961373806, 0.014251375570893288, -0.014758883975446224, 0.007228561211377382, 0.007605763152241707, 0.015979645773768425, -0.00657360116019845, 0.010547938756644726, -0.003809739835560322, -0.006964519619941711, -0.018668068572878838, -0.00016459722246509045, -0.006254694424569607, -0.01438853982836008, 0.008133845403790474, -0.02222062461078167, -0.026664748787879944, -0.009457482025027275, -0.002995326416566968, 0.008051547221839428, -0.006553026847541332, 0.014608003199100494, 0.006306130904704332, 0.0028238710947334766, -0.0027758635114878416, -0.015513287857174873, -0.014141644351184368, 0.022700699046254158, 0.015389840118587017, -0.04062807932496071, -0.0039057547692209482, 0.006827355362474918, 0.012584828771650791, 0.00252039497718215, -0.011638394556939602, 0.029133707284927368, -0.013483255170285702, 0.003593705827370286, -0.024977628141641617, 0.014169077388942242, 0.016651751473546028, -0.021082160994410515, -0.011124028824269772, 0.0005525151500478387, 0.011295484378933907, 0.016788916662335396, -0.025128507986664772, 0.009443765506148338, 0.0035731312818825245, -0.003271369729191065, -0.008312159217894077, -0.030944276601076126, 0.01570531725883484, 0.0039571914821863174, -0.0012593402061611414, 0.029929259791970253, -0.05039418116211891, -0.004310389515012503, -0.012948314659297466, -0.028804512694478035, 0.02012201026082039, -0.007406874559819698, -0.015389840118587017, 0.022975027561187744, -0.012036171741783619, 0.0055380105040967464, 0.0012962031178176403, 0.0004599292005877942, -0.001985454000532627, -0.005908354185521603, 0.0009172865538857877, 0.007482314947992563, -0.027076242491602898, 0.00988954957574606, -0.012255634181201458, -0.029353169724345207, 0.008593345992267132, -0.0006708193686790764, -0.021562235429883003, 0.004735599271953106, -0.0005379414069466293, -0.005061364267021418, -0.02302989363670349, 0.010458781383931637, 0.03294687718153, -0.024264372885227203, 0.01514294371008873, 0.020821547135710716, -0.0035765604116022587, -0.020725533366203308, -0.027995243668556213, -0.17535090446472168, 0.02831072174012661, 0.0014908049488440156, -0.010691961273550987, 0.03280971199274063, 0.025937778875231743, 0.02415464073419571, 0.008696219883859158, 0.00028440169990062714, -0.005599734373390675, 0.027089959010481834, 0.024456404149532318, -0.03404419124126434, -0.01935388892889023, 0.0002106758620357141, 0.0006952518015168607, -0.011117170564830303, 0.03036818653345108, 0.03036818653345108, 0.022933879867196083, 0.004255523905158043, -0.008922540582716465, 0.003101628739386797, -0.009491773322224617, -0.004896767437458038, -0.01224877592176199, -0.0017334144795313478, 0.026664748787879944, 0.006347279995679855, -0.016843782737851143, -0.021342772990465164, 0.019271591678261757, 0.0004350681556388736, -0.02431923896074295, 0.016788916662335396, 0.005980365443974733, -0.007866375148296356, -0.004704737104475498, -0.011761843226850033, 0.011487513780593872, 0.014676584862172604, -0.0026678466238081455, 0.012790575623512268, 0.00464301323518157, 0.0020266033243387938, 0.03357783332467079, 0.0019100134959444404, -0.0003624139353632927, -0.002554686041548848, -0.011679544113576412, 0.016569452360272408, -0.002030032454058528, 0.02298874408006668, 0.0029095986392349005, 0.03681490942835808, 0.02393517829477787, 0.013839882798492908, 0.012715134769678116, -0.0017934239003807306, -0.013044329360127449, 0.00993069913238287, 0.0009961561299860477, 0.01822914183139801, -0.02213832549750805, 0.0056751747615635395, 0.005767760798335075, -0.01566416770219803, 0.0009284311672672629, -0.020382622256875038, 0.019875114783644676, 0.009313459508121014, 0.019408755004405975, 0.03250795230269432, -0.009766101837158203, -0.006775918882340193, 0.0005653742700815201, -0.026006359606981277, 0.022755565121769905, -0.006878791842609644, -0.02248123660683632, -0.052012719213962555, 0.039832524955272675, -0.0024689582642167807, -0.021027294918894768, 0.002794723492115736, 0.014909764751791954, -0.0038508891593664885, -0.02002599462866783, -0.02534797228872776, 0.0033742429222911596, 0.021740548312664032, -0.03401675820350647, -0.012296783737838268, -0.008572772145271301, 0.0046738749369978905, 0.021205607801675797, 0.01402505487203598, -0.024456404149532318, 0.007989822886884212, -0.006981665268540382, 0.0015353834023699164, -0.009862116537988186, -0.01582876592874527, 0.022152042016386986, 0.023880312219262123, 0.014011338353157043, -0.020341472700238228, 0.008613920770585537, 0.02754260040819645, 0.013592987321317196, 0.0014273665146902204, 0.008847100660204887, 0.01578761637210846, 0.00546942837536335, 0.023605983704328537, 0.030861977487802505, -0.010246177203953266, -0.011124028824269772, 0.01655573770403862, -0.01998484507203102, 0.07214844971895218, -0.02346882037818432, -0.015005779452621937, -0.005743756890296936, -0.01209789514541626, -0.030395619571208954, -0.11686402559280396, -0.002630126429721713, 0.014086778275668621, 0.01209789514541626, -0.0028032963164150715, 0.0087305111810565, 0.0014882332179695368, 0.012811150401830673, -0.014854898676276207, 0.00516766682267189, -0.02333165518939495, -0.026020076125860214, 0.013702718541026115, -0.006714195013046265, 0.018695499747991562, -0.038241419941186905, -0.011172035709023476, -0.021685684099793434, 0.016542021185159683, 0.029435468837618828, -0.006721053272485733, -0.028475318104028702, 0.013154060579836369, -0.034345950931310654, 0.03780249506235123, -0.015252675861120224, -0.018517186865210533, 0.018393738195300102, 0.028338154777884483, 0.013654710724949837, -0.005195099860429764, -0.00475274445489049, 0.024346671998500824, -0.014621719717979431, 0.0007621194235980511, -0.020478637889027596, -0.04405718669295311, -0.016761483624577522, 0.024428971111774445, -0.030724814161658287, 0.010369624942541122, -0.02028660662472248, 0.022248057648539543, -0.014470838941633701, 0.016706617549061775, 0.004125217907130718, -0.024730732664465904, 0.004742457531392574, 2.681670230231248e-05, -0.026884213089942932, -0.027652332559227943, 0.010424490086734295, -0.04123160243034363, 0.001044163596816361, 0.021548518911004066, -0.012715134769678116, 0.028365587815642357, 0.001468515838496387, -0.003813168965280056, -0.004495561588555574, -0.016747767105698586, 0.020272890105843544, -0.00697137787938118, 0.03289201110601425, 0.0028238710947334766, -0.005757473409175873, -0.013702718541026115, -0.014854898676276207, 0.03577246144413948, 0.014525704085826874, -0.01522524282336235, 0.006823926232755184, -0.024826746433973312, 0.021370206028223038, -0.021041011437773705, 0.008024114184081554, -0.027912944555282593, -0.00372058292850852, 0.004749315325170755, -0.0016048228135332465, 0.0011393213644623756, -0.02484046295285225, 0.008037830702960491, 0.006333563942462206, 0.024387821555137634, 0.01796852983534336, 0.021466219797730446, -0.025841763243079185, -0.0015019496204331517, -0.01604822836816311, -0.002060894388705492, 0.018037112429738045, -0.009848400019109249, -0.03088941052556038, 0.0009155720472335815, 0.030038991943001747, 0.020039711147546768, -0.0068307844921946526, -0.006597605068236589, -0.0005520865088328719, -0.01375072542577982, 0.010616520419716835, -0.060077983886003494, 0.031931858509778976, 0.012125328183174133, 0.006004369352012873, 0.006151820998638868, -0.023619700223207474, 0.021630818024277687, -0.01831144094467163, -0.00230093183927238, 0.01158352941274643, -0.00943690724670887, 0.022975027561187744, -0.017337573692202568, -0.011974447406828403, -0.03327606990933418, -0.019312739372253418, 0.01507436204701662, -0.013215784914791584, 0.014402256347239017, -0.006549597717821598, 0.004351539071649313, 0.0073863002471625805, 0.04117673635482788, 0.001727413502521813, -0.035799894481897354, -0.0056511713191866875, 0.012872873805463314, 0.02161710150539875, -0.0023266503121703863, -0.02075296640396118, 0.010006139054894447, -0.03574502840638161, -0.010198169387876987, 0.004619009327143431, -0.00010281967843184248, 0.02552628517150879, -0.03396189212799072, -0.0029884681571274996, 0.0030536213889718056, 0.033001743257045746, -0.0046327258460223675, -0.01048621442168951, 0.007482314947992563, -0.020533502101898193, 0.006686761975288391, 0.029819529503583908, -0.016706617549061775, -0.002290644682943821, 0.010191311128437519, -0.01453942060470581, 0.011261193081736565, 0.02641785331070423, 0.022028593346476555, -0.022494953125715256, -0.004005198832601309, -0.014635436236858368, 0.025581151247024536, -0.018517186865210533, 0.01544470526278019, -0.033742427825927734, 0.01052736397832632, -0.011597245931625366, -0.007962390780448914, -0.0036657170858234167, 0.01537612359970808, -0.00964951142668724, -0.020272890105843544, -0.013586129061877728, -0.01887381449341774, -0.016199110075831413, -0.0010313044767826796, -0.0012704847613349557, 0.010774259455502033, 0.0071188295260071754, 0.012214485555887222, 0.00999242253601551, -0.004996211268007755, 0.0014985204907134175, -0.01827029138803482, 0.0026369846891611814, -0.016843782737851143, -0.020341472700238228, -0.03744586557149887, 0.0036211388651281595, 0.029490334913134575, -0.015060645528137684, -0.0013459251495078206, 0.008572772145271301, -0.01158352941274643, 0.008620779030025005, 0.017954813316464424, -0.007763502188026905, 0.0016879787435755134, 0.003122203517705202, 0.020218024030327797, 0.013181493617594242, -0.01368214376270771, 0.007420591078698635, 0.021287906914949417, 0.02414092607796192, -0.01552700437605381, 0.013798733241856098, 0.015458421781659126, -0.012605403549969196, -0.0044029755517840385, -0.0009541495237499475, -0.01492348127067089, -0.015211526304483414, 0.006721053272485733, 0.021740548312664032, 0.012735709547996521, -0.0023146483581513166, 0.031218605116009712, 0.022248057648539543, -0.0023437957279384136, -0.0017848510760813951, 0.012358508072793484, -0.0008508475730195642, -0.004663588013499975, 0.02916114032268524, 0.01153552159667015, 0.04370056092739105, 0.002501534763723612, 0.027693482115864754, 0.02526567317545414, 0.021809130907058716, 0.009862116537988186, 0.0218777135014534, -0.004735599271953106, 0.008764801546931267, 0.017310140654444695, 0.00436525559052825, -0.04315190389752388, -0.006285556126385927, 0.0032627969048917294, -0.03415392339229584, -0.009238018654286861, 0.018544619902968407, -0.028667349368333817, 0.03659544885158539, 0.023386521264910698, -0.014635436236858368, -0.0014505130238831043, 0.008223002776503563, 0.0265550184994936, 0.00574718602001667, 0.012900306843221188, 0.012838582508265972, -0.008511047810316086, 0.009340892545878887, -0.016953513026237488, 0.0020848980639129877, -0.013332374393939972, -0.0022083460353314877, 0.019587069749832153, 0.0011221758322790265, 0.030999142676591873, -0.026774480938911438, -0.03083454631268978, 0.023605983704328537, 0.0018637205939739943, 0.04024402052164078, -0.008113271556794643, -0.00584320118650794, 0.0014290810795500875, 0.007667487021535635, 0.005051076877862215, 0.015060645528137684, -0.02744658663868904, 0.005874063353985548, 0.01689864695072174, -0.020396338775753975, -0.005390558857470751, 0.021644534543156624, 0.004183512646704912, 0.006206686608493328, -0.018818948417901993, 0.0191755760461092, -0.0008478471427224576, -0.011274909600615501, 0.01518409326672554, -0.020821547135710716, -0.015348690561950207, 0.032315921038389206, -0.00808583851903677, -0.025251956656575203, -5.588375643128529e-05, -0.016884930431842804], "30900bf0-7814-4adf-bdf7-adf52c018283": [-0.005336383823305368, -0.019380217418074608, -0.005227199289947748, 0.003241409547626972, -0.008059167303144932, 0.028114963322877884, -0.017633268609642982, -0.025685612112283707, -0.0032977077644318342, -0.011157272383570671, 0.03635837882757187, 0.014535162597894669, -0.0034870742820203304, 0.015517821535468102, 0.009294315241277218, 0.007929511368274689, 0.03679511696100235, -0.006946852430701256, 0.02669556625187397, -0.016118334606289864, 0.006100673694163561, -0.001230029622092843, -0.0029616246465593576, 0.03016216866672039, -0.0010568700963631272, 0.02542629837989807, 0.005779944825917482, -0.019475752487778664, 0.019066311419010162, -0.020813260227441788, -0.000905888678971678, -0.0035553143825381994, -0.007909039035439491, 0.0015772016486153007, -0.045011237263679504, 0.008727921172976494, 0.0025965396780520678, -0.027064062654972076, 0.016036447137594223, -0.0031134590972214937, 0.010713711380958557, -5.6671353377169e-05, -0.019189143553376198, 0.015326748602092266, -0.035048168152570724, 0.014439626596868038, -0.008400368504226208, -0.028961140662431717, -0.02322896383702755, 0.029179509729146957, 0.01981695368885994, 0.0010278680128976703, -0.035130053758621216, 0.004640333820134401, -0.005599108524620533, 0.0001491688162786886, 0.013784520328044891, 0.025999516248703003, -0.013729928061366081, 0.01797446794807911, 0.009949421510100365, 0.0032499395310878754, -0.0003365094889886677, 0.0008286919328384101, -0.03600353002548218, -0.01632305607199669, -0.015818078070878983, -0.002731313928961754, -0.003712266916409135, -0.01862957514822483, 0.041135191917419434, 0.012515252456068993, -0.00934208370745182, 0.005288615357130766, 0.018452150747179985, -0.022587506100535393, -0.02958895079791546, -0.004653981886804104, -0.024484584107995033, 0.000677283969707787, -0.0016522658988833427, -0.02542629837989807, -0.006694363430142403, 0.0067864879965782166, 0.025985868647694588, -0.01645953580737114, 0.015859022736549377, 0.020772317424416542, -0.032755296677351, -0.019776010885834694, 0.0003493045223876834, 0.018452150747179985, 0.01085701584815979, 0.013811816461384296, -0.005759472958743572, 0.025467243045568466, -0.029152214527130127, 0.017182882875204086, -0.00921925064176321, -0.031799934804439545, -0.01968047395348549, -0.004213832318782806, -0.01714193820953369, -0.00740406196564436, -0.021536607295274734, 0.01279503758996725, -0.007288053631782532, 0.0044902050867676735, 0.029097622260451317, -0.013729928061366081, -0.009860709309577942, 0.01615927927196026, -0.013743576593697071, -0.06671161949634552, -0.009376203641295433, -0.015927262604236603, 0.034884389489889145, -0.027432560920715332, -0.020513003692030907, -0.01849309355020523, 0.005223787389695644, 0.017237475141882896, -0.003903339384123683, -0.012563020922243595, 0.004790462087839842, 0.012064867652952671, -0.007526894100010395, -0.031499676406383514, -0.008304832503199577, -0.01095255184918642, 0.044847458600997925, 0.020294636487960815, 0.013921000994741917, -0.020717725157737732, -0.002908738562837243, 0.032291263341903687, -0.032072894275188446, 0.014139369130134583, -0.014971899800002575, -0.030680794268846512, 0.023351795971393585, 0.012788213789463043, 0.0066227116622030735, -0.02628612518310547, -0.01981695368885994, 0.007021916564553976, 0.02639530971646309, 0.011594009585678577, -0.02953435853123665, 0.008639208972454071, 0.011996626853942871, -0.005936897359788418, 0.021154461428523064, -0.017319362610578537, 0.009717404842376709, -0.006097261793911457, 0.005373915657401085, -0.003838511183857918, -0.004592565353959799, -0.02168673649430275, -0.004742694087326527, 0.024102438241243362, 0.017237475141882896, -0.020376523956656456, 0.003301119664683938, 0.02991650439798832, 0.004531149286776781, -0.01096620038151741, -0.031799934804439545, -0.010290621779859066, 0.01879335194826126, 0.03018946386873722, -0.03652215376496315, 0.008564145304262638, -0.014657994732260704, -0.005629816558212042, 0.029370581731200218, 0.038514770567417145, -0.024266215041279793, 0.011307401582598686, -0.025166986510157585, -0.014248553663492203, 0.01871146261692047, -0.003026452846825123, -0.009724228642880917, -0.007663374301046133, -0.015394989401102066, -0.011396113783121109, 0.015872670337557793, -0.00020887899154331535, -0.010672767646610737, 0.007083332631736994, -0.012180875986814499, -0.025822091847658157, -0.6280282139778137, -0.02144107036292553, -0.016009151935577393, -0.017660563811659813, 0.005288615357130766, 0.0005719381733797491, 0.013511559925973415, 0.002958212746307254, -0.008509553037583828, -0.004428789019584656, -0.027255136519670486, 0.017605971544981003, -0.008878050372004509, -0.02025369182229042, -0.025276171043515205, -0.002067678142338991, 0.00891899410635233, -0.026040460914373398, 0.010481694713234901, -0.02528981864452362, -0.01882064715027809, 0.004534561187028885, -0.00246347114443779, -0.00042884700815193355, -0.021591199561953545, -0.005060011055320501, 0.0195985846221447, -0.0003365094889886677, 0.0012914458056911826, 0.01873875968158245, -0.03029864840209484, 0.038405586034059525, 0.03316473588347435, 0.027009470388293266, 0.04768625274300575, -0.01876605488359928, -0.031199419870972633, 0.0034307760652154684, 0.0004435612936504185, 0.01811094954609871, -0.013852761127054691, -0.01860227808356285, 0.028578996658325195, 0.01673249714076519, 0.007363117765635252, 0.00023159018019214272, 0.01337507925927639, -0.019325625151395798, 0.013006581924855709, -0.0004520913353189826, 0.014453274197876453, -0.008516376838088036, -0.022082528099417686, -0.007956807501614094, 0.0025112393777817488, 0.010679591447114944, 0.03390173241496086, -0.01069323904812336, 0.003244821447879076, 0.0036099066492170095, 0.008898521773517132, 0.017988117411732674, -0.012508428655564785, -0.00902817863970995, -0.007335821632295847, 0.021318238228559494, -0.0012428245972841978, 0.014275849796831608, 0.025194281712174416, -0.023160723969340324, 0.019202793017029762, 0.01940751262009144, 0.010468047112226486, -0.022396434098482132, 0.012692676857113838, 0.00027615955332294106, 0.038651250302791595, -0.035512201488018036, 0.002574361627921462, 0.01001766137778759, -0.008809809572994709, -0.014439626596868038, -0.03660404309630394, -0.016664257273077965, 0.014385034330189228, -0.021372830495238304, -0.008127408102154732, 0.009533155709505081, -0.008250240236520767, 0.0032840596977621317, 0.00148763635661453, 0.016391295939683914, 0.00048706441884860396, -0.0027790821623057127, 0.027596337720751762, 0.020635835826396942, 0.008359424769878387, 0.0030793389305472374, 0.02022639475762844, -0.00742453383281827, -0.016718849539756775, -0.010549934580922127, 0.020594893023371696, -0.01332048699259758, -0.0023918189108371735, -0.009253371506929398, -0.03311014547944069, -0.0444653145968914, 0.05369139090180397, -0.01651412807404995, -0.006127969827502966, -0.020922444760799408, -0.013743576593697071, 0.005605932325124741, 0.038159921765327454, -0.02036287635564804, 0.020130859687924385, 0.005254495423287153, 0.019093608483672142, -0.02358381263911724, 0.02195969596505165, -0.011928386986255646, 0.01772880367934704, -0.010918431915342808, 0.023542869836091995, 0.031308602541685104, 0.010891135782003403, -0.0004998594522476196, -0.014030185528099537, -0.007410885766148567, -0.0012146756052970886, -0.012023922987282276, 0.014712586998939514, 0.010427102446556091, 0.011942035518586636, -0.015640653669834137, 0.009901653043925762, 0.007656550500541925, 0.01107538491487503, -0.028142258524894714, -0.009355731308460236, 0.004967886488884687, 0.0109116081148386, 0.006127969827502966, -0.00813423190265894, -0.017278417944908142, -0.014603402465581894, -0.0004891969147138298, -0.029261397197842598, 0.00813423190265894, -5.309940752340481e-05, -0.006172325927764177, -0.001439015264622867, 0.004452673252671957, 0.01531310100108385, -0.01333413552492857, -0.02715959958732128, -0.011716842651367188, -0.0017162410076707602, -0.02509874477982521, -0.0012249115388840437, 0.012235468253493309, -0.014180313795804977, 0.020936094224452972, 0.020745020359754562, 0.00022433965932577848, -0.01684168167412281, 0.01871146261692047, -0.009151010774075985, -0.034911684691905975, 0.0036201425828039646, -0.003063984913751483, 0.008748393505811691, 0.03963390737771988, -0.034829799085855484, 0.0007156691281124949, -0.0026750159449875355, -0.011430233716964722, 0.002997450763359666, 0.015299452468752861, -0.008038695901632309, 0.032291263341903687, -0.00850272923707962, -0.012235468253493309, 0.01516297273337841, 0.0015609945403411984, -0.007663374301046133, -0.007363117765635252, 0.011341521516442299, 0.023297203704714775, 0.005281791556626558, 0.006271274294704199, 0.008625561371445656, -2.0245481209713034e-05, 0.001497019431553781, 0.0022587506100535393, 0.007328997366130352, 0.022314544767141342, 0.007731614634394646, 0.020267339423298836, 0.008762042038142681, 0.016186576336622238, 0.03406550735235214, 0.0024157031439244747, -0.00037318860995583236, -0.03431117162108421, -0.0020079677924513817, 0.00427183648571372, 0.03712267056107521, -0.027719169855117798, -0.0062815104611217976, -0.020936094224452972, 0.0012982698390260339, -0.02135918289422989, 0.0002413997135590762, 0.016036447137594223, 0.025972221046686172, 0.0029786848463118076, -0.013306839391589165, -0.009430795907974243, 0.01824742928147316, -0.012767741456627846, -0.01003130991011858, -0.01892983168363571, -0.010085901245474815, -7.655697118025273e-05, 0.017988117411732674, 0.03373795375227928, 0.02482578530907631, -0.01725112274289131, 0.02493496984243393, -0.011948859319090843, 0.0011319343466311693, 0.014166665263473988, 0.031199419870972633, 0.015545117668807507, 0.01275409385561943, -0.012958814390003681, 0.042336221784353256, -0.03223666921257973, -0.008912170305848122, 0.006390694994479418, 0.013845936395227909, -0.027760112658143044, -0.016609665006399155, -0.00469151372089982, 0.020212747156620026, 0.00372250284999609, 0.032755296677351, 0.019489401951432228, -0.011334697715938091, 0.0070082684978842735, 0.0047734021209180355, -0.00044867931865155697, 0.0038589832838624716, -0.034857094287872314, -0.014480570331215858, 0.03013487160205841, 0.0013767459895461798, 0.04260918125510216, 0.015968207269906998, 0.003500722348690033, 0.021946048364043236, 0.012767741456627846, 0.0405619740486145, 0.017933525145053864, -0.000944273779168725, 0.031991004943847656, -0.0072061652317643166, -0.027691872790455818, -0.01016778964549303, -0.014344089664518833, 0.015940910205245018, -0.0024498230777680874, 0.008857578039169312, -0.004145591985434294, 0.018151894211769104, 0.0100722536444664, 0.013839112594723701, -0.004974710755050182, -0.02512604184448719, -0.035075463354587555, 0.019543994218111038, 0.00574582489207387, -0.0016070567071437836, -0.011907914653420448, -0.02003532275557518, 0.004872350487858057, -0.027323376387357712, 0.0545375682413578, -0.031008347868919373, 0.010959376581013203, 0.01708734594285488, -0.017073698341846466, -0.02281952276825905, 0.0033540057484060526, 0.027350671589374542, -0.02961624786257744, 0.032263968139886856, 0.002309930743649602, -0.014057481661438942, 0.0006116027943789959, -0.022737635299563408, 0.018643222749233246, 0.026163293048739433, -0.007895391434431076, -0.014466922730207443, -0.013893704861402512, 0.028933845460414886, -0.022628450766205788, -0.001784481224603951, -0.03977038711309433, 0.00373956304974854, -0.0005668201483786106, 0.006397518794983625, 0.006124557927250862, -0.00939667597413063, 0.019584937021136284, 0.02138647809624672, -0.006394106894731522, -0.021058926358819008, -0.009901653043925762, -0.017333010211586952, 0.002680133795365691, 0.09635516256093979, 0.029015732929110527, -0.02688663825392723, 0.01312941499054432, 0.014207609929144382, 0.004063704051077366, -0.01632305607199669, -0.00046318036038428545, 0.020772317424416542, -0.006602239329367876, -0.006533998996019363, -0.021017981693148613, 0.025685612112283707, -0.0073153492994606495, 0.00843448843806982, -0.006482819095253944, -0.025576427578926086, 0.0023338147439062595, -0.028551699593663216, -0.0013579799560829997, 0.006697775796055794, 0.00934208370745182, 0.009901653043925762, 0.012760917656123638, -0.02677745372056961, -0.012624436989426613, 0.03608541935682297, -0.019584937021136284, 0.019066311419010162, -0.021482015028595924, -0.008154704235494137, 0.03736833482980728, 0.0363856740295887, 0.009649164043366909, -0.015872670337557793, 0.0004198904789518565, 7.597053627250716e-05, 0.02694123052060604, -0.008516376838088036, -0.0019004895584657788, 0.022396434098482132, 0.010352038778364658, 0.012788213789463043, -0.01514932420104742, 0.007472301833331585, -0.006578355096280575, -0.009560451842844486, 0.0009425677708350122, -0.022519266232848167, -0.010085901245474815, 0.038378287106752396, -0.001421955181285739, -0.024293512105941772, -0.004258188419044018, 0.01824742928147316, 0.005841361358761787, -0.007294877432286739, 0.010044957511126995, 0.0018851355416700244, 0.045229606330394745, -0.003434188198298216, 0.006076789926737547, 0.0071788690984249115, -0.0004827994271181524, -0.02041746862232685, -0.022314544767141342, -0.027869297191500664, -0.004698337987065315, -0.02195969596505165, 0.015367693267762661, -0.007724790833890438, 0.0019533757586032152, -0.024348104372620583, 0.008441313169896603, 0.007410885766148567, 0.002072795992717147, 0.020485708490014076, -0.011457529850304127, -0.001079048146493733, -0.0033983620814979076, -0.010925255715847015, -0.02030828408896923, 0.002489061327651143, -0.020799612626433372, -0.003633790649473667, 0.005012242589145899, 0.0012104104971513152, -0.000658517936244607, -0.024116087704896927, 0.023106131702661514, -0.006728483829647303, 0.017687859013676643, 0.010979847982525826, -0.002101798076182604, -0.005923249293118715, 0.0020932680927217007, 0.0027432560455054045, -0.0012940048472955823, 0.005094130989164114, -0.00979929231107235, 0.012597140856087208, -0.03698618710041046, 0.012951989658176899, -0.026026813313364983, 0.002669897861778736, -0.012344651855528355, 0.005971017759293318, 0.03624919429421425, -0.028005778789520264, -0.023351795971393585, -0.0024003491271287203, -0.013122590258717537, -0.00112681626342237, -0.0014748413814231753, 0.01480812393128872, 0.0035075463820248842, 0.02130459062755108, 0.02388407103717327, -0.0043537248857319355, 0.00990847684442997, -0.017305715009570122, -0.01862957514822483, 0.000982658937573433, 0.00833895243704319, -0.024184327572584152, -0.0021393303759396076, 0.019079960882663727, -0.0038248631171882153, 0.017988117411732674, 0.0035348422825336456, -0.0003597538161557168, 0.01341602299362421, 0.02961624786257744, -0.015586061403155327, -0.025726554915308952, -0.002011379925534129, -0.007909039035439491, 0.009444443508982658, 0.005622992292046547, 0.013654864393174648, -0.02287411503493786, -0.016200223937630653, -0.03941553831100464, -0.017128290608525276, -0.014071129262447357, -0.024389047175645828, -0.010249678045511246, 0.007997751235961914, 0.012344651855528355, -0.007854446768760681, -0.007062860764563084, -0.02539900317788124, -0.026954879984259605, -0.009621867910027504, -0.024894025176763535, -0.024389047175645828, 0.002929210662841797, -0.02523522637784481, 0.0358397550880909, 0.0020762081257998943, 0.024047845974564552, -0.014262202195823193, 0.011307401582598686, 0.004247952252626419, -0.011785082519054413, 0.0039067515172064304, -0.0019584938418120146, -0.016473185271024704, -0.03431117162108421, -0.010577230714261532, 0.028824660927057266, 0.022614803165197372, 0.0028319682460278273, -0.0046164495870471, 0.0038589832838624716, 0.051835257560014725, -0.009471739642322063, -0.007219813298434019, -0.020840557292103767, -0.0247711930423975, -0.02634071744978428, -0.0067591918632388115, -0.010311094112694263, -0.0003405612369533628, -0.010263326577842236, 0.006421403028070927, 0.065510593354702, 0.012283235788345337, -0.014316794462502003, -0.022410081699490547, 0.02006261982023716, -0.010563583113253117, -0.004213832318782806, 0.0022877526935189962, 0.033574178814888, -0.006885436363518238, 0.02152295969426632, 2.313769255124498e-05, 0.010413454845547676, 0.005558164324611425, 0.009321611374616623, -0.009451267309486866, -0.006489642895758152, -0.0171965304762125, -0.012453836388885975, 0.005981253460049629, -0.022614803165197372, -0.016746144741773605, 0.016282111406326294, -0.018588630482554436, -0.017401251941919327, -0.018670517951250076, -0.003835099283605814, -0.029370581731200218, -0.025712907314300537, -0.00996306911110878, 0.005517220124602318, 0.010461222380399704, -0.00902817863970995, -0.022328194230794907, 0.024702953174710274, -0.00854367297142744, 0.05328194797039032, 0.028387922793626785, 0.02160484716296196, -0.002871206495910883, -0.010208734311163425, 0.00032200844725593925, -0.002586303511634469, -0.00919195543974638, -0.021482015028595924, 0.02311977930366993, 0.02030828408896923, -0.02193240076303482, 0.006431638728827238, -0.04340076819062233, 0.006858140230178833, -0.05333654209971428, -0.03305555135011673, 0.011232336983084679, 0.006574943196028471, -0.004456085152924061, -0.008570969104766846, 0.00037766684545204043, -0.03559408709406853, 0.010147318243980408, -0.008884874172508717, 0.01494460366666317, -0.004343488719314337, -0.020513003692030907, -0.024034198373556137, -0.002576067578047514, 0.023788534104824066, 0.024252567440271378, 0.02534441091120243, -0.025494538247585297, -0.026190588250756264, -0.022969651967287064, -0.012679029256105423, -0.019885193556547165, -0.001965317875146866, 0.026381662115454674, -0.025658315047621727, 0.004640333820134401, 0.012951989658176899, -0.004084175918251276, -0.016909921541810036, 0.004606213420629501, -0.017619619145989418, 0.03133590146899223, 0.00844813697040081, 0.015995502471923828, -0.0030759270302951336, 0.024102438241243362, 0.008250240236520767, 0.015927262604236603, 0.0068956720642745495, -0.015654301270842552, -0.019967082887887955, 0.004193360451608896, 0.01968047395348549, 0.009771997109055519, 0.002755198162049055, -0.026927582919597626, -0.018752407282590866, -0.018506743013858795, 0.010734183713793755, 0.006257626228034496, -0.0013622449478134513, -0.04069845378398895, -0.028442515060305595, 0.0056980568915605545, -0.031554266810417175, 0.02133188582956791, -0.0011498474050313234, 0.022055232897400856, -0.01632305607199669, 0.021372830495238304, -0.027650929987430573, 0.0023542868439108133, -0.012378772720694542, -0.00019725682795979083, -0.03657674789428711, -9.889497596304864e-05, 0.010522638447582722, -0.024075143039226532, 0.01681438460946083, -0.015394989401102066, -0.028660884127020836, 0.02006261982023716, 0.011853322386741638, 0.017674211412668228, 0.0033079436980187893, 0.025112394243478775, 0.014767179265618324, -0.002137624192982912, 0.0037259149830788374, -0.010611351579427719, -0.02999839186668396, 0.02036287635564804, 0.0045243254862725735, 0.010324742645025253, 0.013948297128081322, -0.012112635187804699, 0.0041046482510864735, 0.011266456916928291, 0.011013967916369438, 0.008086463436484337, -0.031363196671009064, 0.01703275367617607, -0.010004013776779175, 0.019120903685688972, 0.0028592643793672323, -0.0151083804666996, -0.007786206901073456, -0.02036287635564804, -0.017865285277366638, 0.00757466210052371, 0.03360147401690483, -0.00456185732036829, 0.015381340868771076, -0.0030179228633642197, -0.01624116860330105, -0.015381340868771076, -0.007615606300532818, 0.010481694713234901, 0.018042709678411484, -0.003872631350532174, -0.04776814207434654, -0.01065229531377554, -0.0023201669100672007, 0.03010757640004158, 0.0005386710981838405, 0.0032755297143012285, -0.0015601415652781725, -0.024361751973628998, -0.03616730496287346, -0.01479447539895773, -0.013102118857204914, 0.024279862642288208, 0.03387443721294403, 0.029097622260451317, -0.0017136820824816823, 0.01830202154815197, -0.01873875968158245, 0.008727921172976494, 0.017960820347070694, -0.010904784314334393, -0.006919556297361851, 0.020854204893112183, -0.0034683081321418285, -0.004974710755050182, -0.034720614552497864, 0.012160403653979301, 0.007397237699478865, -0.007253933232277632, -0.009041826240718365, -0.0034700140822678804, -0.0012760917888954282, 0.019052663818001747, -0.00908277090638876, -0.008959938772022724, 0.027350671589374542, 0.014644347131252289, -0.001136199338361621, -0.038896914571523666, -0.014316794462502003, -0.006097261793911457, 0.001134493388235569, 0.00450726505368948, -0.02306518703699112, 0.00744500569999218, -0.018561335280537605, 0.0069229681976139545, -0.028688179329037666, -0.012774565257132053, -0.020977037027478218, -0.03008028119802475, 0.04714033007621765, 0.002767140045762062, 0.003299413714557886, 0.03717726096510887, -0.0063668107613921165, -0.018506743013858795, 0.005172607023268938, 0.0022962826769798994, 0.0018015413079410791, -0.020977037027478218, 0.010918431915342808, -0.0296708382666111, 0.027418913319706917, 6.408181070582941e-05, 0.010317917913198471, -0.0009459797875024378, 0.018916184082627296, -0.013511559925973415, 0.0019687297753989697, -0.019366567954421043, 0.028660884127020836, 0.013074822723865509, 0.0035280182491987944, 0.004285484552383423, 0.02710500732064247, -0.006779663730412722, 0.008939466439187527, 0.0016701789572834969, -0.010877488180994987, 0.004565269220620394, 0.007028740830719471, -0.0010543110547587276, -0.002195628359913826, -0.019912490621209145, -0.0040125236846506596, 0.003156109247356653, -0.04610307887196541, 0.017960820347070694, 0.20395630598068237, -0.015231212601065636, -0.008850754238665104, 0.012296884320676327, -0.008250240236520767, 0.008748393505811691, 0.020881501957774162, -0.0031544032972306013, -0.014166665263473988, -0.010160965844988823, -0.0048245820216834545, 0.015790782868862152, 0.0007037270697765052, 0.004445848986506462, -0.007049212697893381, -6.061649037292227e-05, -0.034720614552497864, -0.0020574419759213924, -0.00467104185372591, -0.05994219332933426, 0.009580924175679684, -0.004756342153996229, -0.0010261620627716184, -0.008830281905829906, -0.00021858188847545534, -0.000324354215990752, -0.02025369182229042, -0.0076497262343764305, 0.019011719152331352, 0.0033250036649405956, -0.03559408709406853, -0.009007706306874752, 0.015927262604236603, -0.011143624782562256, -0.007328997366130352, 0.006363398861140013, 0.0026391898281872272, 0.005824300926178694, 0.024266215041279793, -0.01516297273337841, 0.0031271071638911963, -0.009983541443943977, 0.007260757498443127, 0.00740406196564436, -0.0033761837985366583, 0.02317437157034874, -0.0035450784489512444, -0.01106173638254404, -0.014193961396813393, 0.027391616255044937, -0.025494538247585297, 0.01231735572218895, 0.04610307887196541, 0.022191712632775307, 0.008714273571968079, -0.014084777794778347, -0.011471177451312542, 0.018998071551322937, -0.013184006325900555, 0.0100722536444664, -0.013804992660880089, 0.021058926358819008, -0.020185451954603195, 0.015326748602092266, -0.0296708382666111, 0.01359344832599163, 0.0037088547833263874, 0.00631563039496541, 0.020622188225388527, -0.028688179329037666, 0.012037571519613266, -0.0195985846221447, -0.01716923527419567, 0.0034563662484288216, -0.01860227808356285, -0.0016300877323374152, 0.011239160783588886, -0.022710338234901428, 0.009915301576256752, 0.002697193995118141, 0.01184649858623743, -0.027405263856053352, 0.016691552475094795, -0.003899927483871579, -0.00046147435205057263, -0.020567595958709717, -0.004708573687821627, 0.0010952552547678351, -0.010331566445529461, 0.02133188582956791, -0.019107256084680557, -0.024020550772547722, 0.0005932632484473288, -0.00979929231107235, 0.013300014659762383, -0.01643224060535431, 0.019967082887887955, -0.007677022367715836, 0.01263126078993082, -0.011205040849745274, -0.011157272383570671, -0.02306518703699112, 0.022259952500462532, 0.004630097653716803, -0.014453274197876453, -0.005773121025413275, 0.008768865838646889, 0.0037668589502573013, 0.004193360451608896, -0.020881501957774162, 0.02228724956512451, -0.020321931689977646, -0.0012266176054254174, -0.009000882506370544, 0.012044395320117474, 0.021754976361989975, -0.02479848824441433, -0.009335258975625038, -0.0029513887129724026, 0.010174613445997238, 0.022601153701543808, -0.014780827797949314, 0.01165542658418417, 0.00886440183967352, 0.008652857504785061, -0.010836543515324593, -0.034611430019140244, 0.002221218543127179, -0.006073378026485443, -0.01501284446567297, 0.014862715266644955, -0.031062940135598183, 0.0006849610363133252, 0.009294315241277218, -0.0372045561671257, 0.021591199561953545, -0.013006581924855709, -0.01681438460946083, 0.02972543053328991, -0.019748713821172714, 0.014535162597894669, 0.0004348180373199284, 0.005237435456365347, 0.005817477125674486, -0.001468017348088324, -0.008646033704280853, 0.005674172658473253, -0.012924693524837494, -0.002606775611639023, -0.021918753162026405, -0.025030504912137985, -0.00012677749327849597, -0.003062278963625431, -0.0033232977148145437, 0.0017964232247322798, 0.00943761970847845, -0.0018083653412759304, -0.008127408102154732, -0.008707449771463871, 0.034529540687799454, -0.027951186522841454, 0.012917869724333286, 0.015681598335504532, -0.015231212601065636, -0.03013487160205841, -0.009362555108964443, -0.17382143437862396, 0.017578676342964172, -0.0009229487041011453, -0.015927262604236603, 0.028333330526947975, 0.024866728112101555, 0.0324823372066021, 0.009949421510100365, 0.00614503026008606, -0.02317437157034874, 0.029343286529183388, 0.028879253193736076, -0.04118978604674339, -0.026490846648812294, 0.011232336983084679, -0.01499919593334198, -0.009116890840232372, 0.038432881236076355, 0.03930635377764702, 0.02108622156083584, 0.0019090196583420038, -0.0010329859796911478, 0.013661688193678856, 0.013518383726477623, -0.0005373915773816407, 0.005841361358761787, 0.002760316012427211, 0.03704078122973442, 0.015572413802146912, -0.02168673649430275, -0.02041746862232685, 0.01879335194826126, -0.006513527128845453, -0.019530344754457474, 0.012672205455601215, 0.00891899410635233, -0.014016536995768547, -0.01656872034072876, -0.01501284446567297, 0.008591441437602043, 0.020867852494120598, -0.0026255417615175247, 0.022628450766205788, 0.0002680560282897204, -0.0037088547833263874, 0.04716762527823448, 0.0023133428767323494, 0.00019757670816034079, 0.005483100190758705, -0.02298329956829548, 0.01835661381483078, -0.008359424769878387, 0.0070082684978842735, 0.010604526847600937, 0.02531711384654045, 0.0012769447639584541, 0.027814704924821854, 0.0015720835654065013, 0.003149285214021802, -0.019093608483672142, -0.008632385171949863, -0.001278650714084506, -0.002289458643645048, -0.02501685731112957, 0.005616168491542339, -0.009062298573553562, -0.014112072996795177, 0.031090235337615013, -0.03040783293545246, 0.013504735194146633, -3.1081279303180054e-05, 0.027609985321760178, 0.020513003692030907, -0.008120584301650524, -0.006697775796055794, -0.009888005442917347, -0.01879335194826126, 0.026900287717580795, 0.002521475311368704, -0.01089795958250761, -0.031581565737724304, 0.03335580974817276, -0.009696932509541512, 0.0015524645568802953, 0.006643183529376984, 0.008393544703722, -0.010829719714820385, -0.023215316236019135, -0.014002889394760132, -0.01080242358148098, 0.000877739570569247, -0.01531310100108385, -0.015190268866717815, -0.011068560183048248, 0.024648360908031464, 0.02988920733332634, 0.0002642175240907818, -0.01662331260740757, -0.0031629332806915045, 0.002947976579889655, 0.014535162597894669, -0.002347462810575962, -0.031991004943847656, 0.028851956129074097, 0.024252567440271378, 0.0070423888973891735, -0.014180313795804977, 0.012037571519613266, 0.024702953174710274, 0.008837105706334114, -0.017128290608525276, 0.02022639475762844, 0.024470936506986618, 0.006407754961401224, 0.01873875968158245, 0.02479848824441433, -0.009690108709037304, -0.025617370381951332, 0.011730490252375603, -0.02718689665198326, 0.07446371018886566, -0.005814065225422382, -0.01069323904812336, 0.0022621627431362867, -0.010010837577283382, -0.042063258588314056, -0.11071290075778961, -0.009731052443385124, 0.006653419695794582, 0.0035211944486945868, -0.017619619145989418, 0.009594571776688099, -0.007847622968256474, 0.020881501957774162, -0.004295720718801022, 0.01490365993231535, -0.018970776349306107, -0.03223666921257973, 0.010372510179877281, -0.0018271313747391105, 0.02385677397251129, -0.02030828408896923, 0.0030861629638820887, -0.027337023988366127, 0.020895149558782578, 0.041462745517492294, 0.007642902433872223, -0.015804430469870567, 0.0055274562910199165, -0.02986191213130951, 0.01684168167412281, -0.0021888043265789747, -0.011880618520081043, 0.013839112594723701, 0.031281307339668274, 0.01621387153863907, 0.005029302556067705, -0.003729326883330941, 0.01640494354069233, -0.0015669655986130238, -4.142393299844116e-05, -0.0026647797785699368, -0.0389242097735405, -0.00747912609949708, 0.02108622156083584, -0.031472381204366684, 0.0002951388596557081, -0.0036952069494873285, 0.016828034073114395, -0.0034580721985548735, 0.002458353294059634, 0.015872670337557793, -0.014153017662465572, 0.008318480104207993, -0.00188854755833745, -0.017933525145053864, -0.01700545847415924, -0.004725633654743433, -0.0306262020021677, -0.006353162694722414, 0.02060854062438011, -0.011826027184724808, 0.03316473588347435, 0.00985388457775116, -0.015640653669834137, -0.017674211412668228, -0.007806678768247366, 0.017687859013676643, -0.007595134433358908, 0.014453274197876453, -0.0028695003129541874, 0.00035165029112249613, -0.016186576336622238, -0.025603722780942917, 0.015981854870915413, -0.0017392721492797136, -0.01811094954609871, 0.0033113558311015368, -0.03586705029010773, 0.016309408470988274, -0.016186576336622238, 0.0009997189044952393, -0.026299772784113884, -0.00653058709576726, 0.014425978064537048, 0.014726235531270504, -0.014685290865600109, -0.01873875968158245, -0.0005015654605813324, 0.0036030826158821583, 0.025740204378962517, 0.013607095927000046, 0.017305715009570122, -0.021891456097364426, -0.0003284059639554471, -0.028196850791573524, 0.005865245126187801, 0.01981695368885994, -0.01321130245923996, -0.030817274004220963, -0.004039819817990065, 0.0431005097925663, 0.03704078122973442, -0.002644307678565383, -0.009526331909000874, -0.006776251830160618, -0.02287411503493786, 0.010229205712676048, -0.06545600295066833, 0.028033073991537094, -0.0038112152833491564, 0.0032226433977484703, -0.01227641198784113, -0.019311977550387383, 0.01016778964549303, -0.00981294084340334, 0.0007450976991094649, 0.015558765269815922, 0.010468047112226486, 0.024457287043333054, -0.01725112274289131, -0.014262202195823193, -0.027555393055081367, -0.0031697573140263557, 0.006711423862725496, -0.026217885315418243, 0.014016536995768547, -0.002431057160720229, -0.0076497262343764305, -0.0073767658323049545, 0.0363856740295887, -0.003360829781740904, -0.012876925989985466, -0.01706005074083805, 0.01327954325824976, 0.011839674785733223, 0.007949983701109886, -0.024307159706950188, 0.01884794421494007, -0.018806999549269676, 0.002239984693005681, 0.004984946455806494, 0.014125721529126167, 0.0212772935628891, -0.029261397197842598, -0.004421964753419161, -0.004387844819575548, 0.041326265782117844, 0.001985789742320776, -0.0009604808292351663, 0.012419716455042362, -0.018506743013858795, 0.016636960208415985, 0.027623632922768593, -0.004398080985993147, 0.003923811484128237, 0.016336703673005104, -0.009860709309577942, 0.01242654025554657, 0.022355489432811737, 0.005561576224863529, -0.027173247188329697, 0.0011037852382287383, -0.031172122806310654, 0.03930635377764702, -0.0037429749500006437, 0.015981854870915413, -0.013880056329071522, 0.01714193820953369, -0.001602791715413332, 0.0037566230166703463, -0.006493055261671543, 0.023051539435982704, -0.017633268609642982, -0.0027790821623057127, -0.01811094954609871, -0.025726554915308952, -0.026354365050792694, 0.010829719714820385, -0.005933485459536314, 0.00538073992356658, 0.013497911393642426, 0.006540823262184858, 0.015872670337557793, 0.006963912397623062, 0.003197053447365761, -0.019216440618038177, 0.004643745720386505, -0.012303708121180534, -0.010925255715847015, -0.031144827604293823, 0.007820326834917068, 0.031526971608400345, -0.024034198373556137, 0.005643464624881744, 0.028824660927057266, -0.010979847982525826, 0.008523200638592243, 0.0052510835230350494, -0.005660524591803551, -0.012501604855060577, -0.014303145930171013, 0.003623554715886712, 0.016336703673005104, -0.02036287635564804, -8.466049621347338e-05, 0.03272800147533417, 0.034829799085855484, -0.00492694228887558, 0.001898783608339727, 0.006114321760833263, -0.021236350759863853, -0.017387602478265762, 0.007922687567770481, -0.008161528035998344, -0.015476877801120281, 0.005377328023314476, 0.006987796630710363, 0.017387602478265762, -0.0002765860699582845, 0.029397878795862198, 0.02212347276508808, -0.006540823262184858, -0.003691794816404581, 0.009519508108496666, -0.012760917656123638, 0.00110805022995919, 0.03406550735235214, 0.010877488180994987, 0.03338310495018959, 0.015736190602183342, 0.0046608056873083115, 0.01516297273337841, 0.022942354902625084, 0.019776010885834694, 0.022655745968222618, 0.004708573687821627, -0.0024191150441765785, 0.0017162410076707602, 0.002031852025538683, -0.054646752774715424, -7.485097012249753e-05, -0.0006470024236477911, -0.028005778789520264, -0.022369137033820152, 0.005292027723044157, -0.022273601964116096, 0.03603082522749901, 0.008577792905271053, -0.01651412807404995, -0.004964474588632584, -0.003270411631092429, 0.02228724956512451, 0.003203877480700612, -0.004282072652131319, 0.02382947877049446, -0.034775204956531525, -0.0033369457814842463, -0.009410323575139046, 0.022191712632775307, -0.029015732929110527, -0.008366248570382595, 0.011785082519054413, 0.00653058709576726, 0.03234585374593735, -0.009103242307901382, -0.019352920353412628, 0.03592164069414139, 0.0006768574821762741, 0.041735704988241196, -0.0037668589502573013, 0.0028063782956451178, -0.010085901245474815, 0.03341040387749672, 0.0040705278515815735, 0.013286367058753967, -0.03652215376496315, -0.0016053507570177317, 0.018725110217928886, -0.014603402465581894, -0.010665942914783955, 0.009737876243889332, -0.006974148564040661, 0.013388726860284805, -0.02999839186668396, 0.02374758943915367, 0.012133107520639896, -0.025794796645641327, 0.017155585810542107, -0.013552503660321236, -0.011594009585678577, 0.019161848351359367, -0.013770872727036476, -0.023215316236019135, -0.001096961204893887, -0.022341841831803322], "7cbc4388-d621-4238-98da-22913b684ab8": [-0.015551484189927578, -0.011120577342808247, -0.003694643499329686, -0.008795184083282948, -0.016151156276464462, 0.03931180760264397, -0.016537610441446304, -0.014405445195734501, 0.001945601194165647, -0.008282131515443325, 0.02809128351509571, 0.0271717868745327, 0.006566404365003109, 0.0048540085554122925, 0.004993931856006384, 0.01500511635094881, 0.03320848196744919, 0.0066230399534106255, 0.025599315762519836, -0.021894676610827446, 0.00578349968418479, -0.006486447993665934, 0.007122766226530075, 0.04128405824303627, -0.009774647653102875, 0.01796349696815014, 0.0029850320424884558, -0.014818551950156689, 0.007742426823824644, -0.02340051904320717, -0.0005147181218490005, -0.004317635670304298, -0.0014492063783109188, -0.003807914676144719, -0.02974371239542961, -0.0019772506784647703, -0.0060933297500014305, -0.02180139534175396, 0.017590368166565895, 0.004187706857919693, 0.009134997613728046, -0.00627989461645484, -0.006129976361989975, 0.00500392634421587, -0.02240106649696827, 0.007482569199055433, -0.0053504034876823425, -0.0225210003554821, -0.021388288587331772, 0.016790805384516716, 0.006609713658690453, 0.0024453275837004185, -0.03238226845860481, 0.00884182471781969, -0.010387645103037357, 0.004494205582886934, 0.01946933940052986, 0.0331551767885685, -0.014285510405898094, 0.035553865134716034, 0.006523094605654478, 0.005763510707765818, -0.0036480023991316557, 0.012806320562958717, -0.0304899699985981, -0.022481022402644157, -0.011933465488255024, -0.006553078070282936, -0.011480379849672318, -0.02663874626159668, 0.03672655671834946, 0.0034581064246594906, -0.015498179942369461, 0.0014367132680490613, 0.01908288337290287, -0.026545463129878044, -0.025359446182847023, -0.011087262071669102, -0.024160103872418404, 0.012033410370349884, 0.005353734828531742, -0.022880803793668747, -0.01491183415055275, 0.009594745934009552, 0.032035790383815765, -0.02300073765218258, 0.013186112977564335, 0.026452181860804558, -0.015431549400091171, -0.017470432445406914, 0.009648050181567669, 0.012179996818304062, 0.0030549936927855015, 0.014298836700618267, -0.013685839250683784, 0.03675320744514465, -0.037339553236961365, 0.011267163790762424, -0.001023606164380908, -0.03126288205385208, -0.016977369785308838, -0.0077291009947657585, -0.017590368166565895, -0.0029233992099761963, -0.01357923075556755, 0.011700259521603584, -0.006336530204862356, -0.008042262867093086, 0.019922424107789993, -0.0114270756021142, -0.010887371376156807, 0.027198439463973045, -0.0020072341430932283, -0.0775042250752449, -0.008948433212935925, -0.01834995113313198, 0.0245199054479599, -0.01848321221768856, -0.030729839578270912, -0.01934940367937088, 0.0007637484231963754, 0.02942388691008091, 0.00374461617320776, -0.005570283159613609, -0.0015058420831337571, -0.008435380645096302, 0.000980296521447599, -0.029130714014172554, 0.013492611236870289, -0.014698618091642857, 0.05474335700273514, 0.003281536279246211, 0.004280989058315754, -0.02438664622604847, -0.01156699936836958, 0.02372034452855587, -0.015551484189927578, -0.0008520334376953542, -0.028677629306912422, -0.02060205116868019, 0.024146776646375656, 0.008828498423099518, 0.0030433335341513157, -0.027718154713511467, -0.017936844378709793, 0.01056754682213068, 0.0284910649061203, 0.009754658676683903, -0.03875211253762245, 0.012053399346768856, -0.005007258150726557, -0.00934155099093914, 0.015498179942369461, -0.012293267995119095, -0.0020738644525408745, -0.001554981805384159, 0.013366013765335083, -0.017403803765773773, -0.00433762464672327, -0.022227827459573746, 0.0003114960854873061, 0.025092925876379013, 0.02703852765262127, -0.013779121451079845, 0.013006211258471012, 0.030783142894506454, -0.0030433335341513157, -0.012299931608140469, -0.02777145802974701, -0.017910191789269447, 0.02278752066195011, 0.013399329036474228, -0.035953644663095474, 0.0034681009128689766, -0.010534231550991535, -0.0020838589407503605, 0.024200081825256348, 0.037925899028778076, -0.016804130747914314, 0.008095567114651203, -0.028437761589884758, -0.006759631913155317, 0.012013421393930912, 0.009561430662870407, -0.012339909560978413, 0.0035913665778934956, -0.02465316653251648, -0.021814720705151558, 0.02902410551905632, -0.0016457653837278485, 0.0027834756765514612, 0.01649763248860836, -0.014045641757547855, -0.013306046836078167, -0.6302682161331177, -0.026625419035553932, -0.02360040880739689, -0.021041810512542725, 0.003817909397184849, 0.002753492211923003, 0.015604788437485695, -0.0001728220231598243, -0.00010072609438793734, -0.0005875948700122535, -0.02457321062684059, 0.012366561219096184, -0.004677438642829657, -0.018576493486762047, -0.010987316258251667, -0.00874187983572483, 0.0021721438970416784, -0.022161196917295456, -0.0037479475140571594, -0.01715060882270336, -0.01683078333735466, 0.003544725477695465, -0.020761964842677116, -0.007229374721646309, -0.007755753118544817, -0.01649763248860836, 0.023280585184693336, -0.011873497627675533, -0.007615829352289438, 0.03267544135451317, -0.030703186988830566, 0.03206244111061096, 0.03168931230902672, 0.025079600512981415, 0.04797372967004776, -0.007948980666697025, -0.0364333838224411, 0.0147385960444808, 0.008288794197142124, 0.018909644335508347, -0.01703067310154438, -0.03251552954316139, 0.020775290206074715, 0.013445970602333546, 0.0071694073267281055, 0.001321776187978685, 0.01255978923290968, -0.00990790780633688, 0.012273279018700123, 0.004137733951210976, 0.02068200707435608, -0.004660781007260084, -0.017603693529963493, 0.00033315090695396066, -0.003056659596040845, 0.02292078174650669, 0.027744807302951813, -0.006596387829631567, 0.001277633709833026, -0.0004422578203957528, 0.02166813425719738, 0.015951264649629593, -0.006916212849318981, -0.006143302656710148, -0.01861647143959999, 0.01381909940391779, -0.0013084501260891557, 0.01656426303088665, 0.018376603722572327, -0.026079053059220314, 0.008215500973165035, 0.016377698630094528, -0.00042768247658386827, -0.02000238001346588, 0.01796349696815014, 0.007902339100837708, 0.02637222595512867, -0.02835780382156372, 0.001681579160504043, 0.0005280441837385297, -0.0012393213110044599, -0.023547105491161346, -0.02558598853647709, -0.012006758712232113, 0.015591462142765522, -0.018190039321780205, -0.014432096853852272, 0.018243342638015747, 0.008968422189354897, 0.01769697479903698, 0.010960664600133896, 0.004687433131039143, 0.02074863761663437, 0.006283225957304239, 0.03344834968447685, 0.008641934022307396, 0.0013684172881767154, -0.014805225655436516, 0.01783023588359356, -0.0032848678529262543, -0.01741712912917137, -0.01149370614439249, 0.020828593522310257, -0.01192680187523365, 0.0009619732154533267, -0.014472074806690216, -0.03041001409292221, -0.03486090898513794, 0.03995145484805107, -0.011686933226883411, -0.006423149257898331, -0.016884086653590202, -0.013572567142546177, 0.011340457014739513, 0.022414391860365868, -0.01708397828042507, 0.0107674365863204, -0.0048340195789933205, 0.02795802429318428, -0.019722532480955124, 0.011580325663089752, -0.009967874735593796, 0.023347215726971626, -0.0030400019604712725, 0.02240106649696827, 0.03174261748790741, 0.009728006087243557, -0.016377698630094528, -0.02213454619050026, -0.014458749443292618, -0.006936201825737953, -0.033368393778800964, 0.004071103874593973, 0.001985579263418913, -0.0028650977183133364, -0.017603693529963493, 0.004211027175188065, 0.00018833436479326338, 0.01941603422164917, -0.0410974957048893, -0.005520310252904892, -0.004334293305873871, 0.01854984275996685, 0.011147229000926018, 0.0012368226889520884, -0.03454108536243439, -0.014858529902994633, 0.00154082290828228, -0.01636437140405178, 0.010973990894854069, 0.006799609865993261, 8.59425199450925e-05, 0.006346524693071842, 0.0059200916439294815, 0.018989602103829384, -0.013545915484428406, -0.028784237802028656, -0.0023087356239557266, 0.006982842925935984, -0.018576493486762047, -0.0016882421914488077, 0.02358708344399929, -0.0154048977419734, 0.018976274877786636, 0.017976822331547737, -0.007875687442719936, -0.00818218570202589, 0.016817457973957062, -0.009688028134405613, -0.038005854934453964, 0.02240106649696827, -0.004890655167400837, -0.005157175939530134, 0.03326178714632988, -0.03803250566124916, -0.010201080702245235, -0.004037789069116116, -0.013559241779148579, 0.004587487783282995, 0.023707017302513123, -0.014325488358736038, 0.02365371398627758, 0.006143302656710148, 0.004101087339222431, 0.023547105491161346, 0.002988363616168499, -0.011007305234670639, -0.008528662845492363, 0.004490874242037535, 0.030569925904273987, 0.011173881590366364, 0.008048925548791885, 0.01391238160431385, -0.0066630179062485695, 0.0205354206264019, 0.012719701044261456, 0.026851963251829147, 0.02809128351509571, 0.006856245454400778, 0.014831878244876862, 0.017923519015312195, 0.011027295142412186, 0.03936510905623436, 0.012479832395911217, 0.007495895028114319, -0.029663756489753723, -0.0025336125399917364, 0.00025319468113593757, 0.04048449546098709, -0.03638007864356041, -0.017017347738146782, -0.02530614286661148, -0.004754063207656145, -0.01258644089102745, 0.00424101110547781, 0.026652071624994278, 0.024213407188653946, 0.002242105547338724, -0.003701306413859129, -0.007395950146019459, 0.024613188579678535, -0.010907360352575779, -0.019056230783462524, -0.004933964926749468, -0.02220117673277855, -0.021708112210035324, 0.016644218936562538, 0.036486685276031494, 0.02995692938566208, -0.011860172264277935, 0.02875758521258831, -0.014378792606294155, -0.001960593042895198, 0.012852962128818035, 0.033554960042238235, 0.004064441192895174, 0.02325393259525299, -0.012133356183767319, 0.032835353165864944, -0.03536729887127876, -0.002052209572866559, 0.010973990894854069, 0.009714679792523384, -0.03784594312310219, -0.022774195298552513, 0.002471979707479477, 0.01788354106247425, 0.011193870566785336, 0.04418913647532463, 0.028730932623147964, 0.001340932329185307, 0.0007041977369226515, 0.008708564564585686, -0.0012909597717225552, 0.022960759699344635, -0.03278204798698425, -0.020575398579239845, 0.02266758680343628, 0.01149370614439249, 0.034807607531547546, 0.005533636547625065, 0.01289294008165598, 0.010527567937970161, 0.003511410439386964, 0.030170144513249397, 0.007349309045821428, 0.0023770316038280725, 0.026465507224202156, -0.014472074806690216, -0.02803798019886017, -0.022880803793668747, -0.003168265102431178, 0.0027268400881439447, -0.0026552127674221992, 0.006436475552618504, 0.0005197154241614044, 0.004880660679191351, 0.007782404776662588, 0.016550935804843903, -0.01417890191078186, -0.03352830559015274, -0.040990885347127914, 0.009388192556798458, 0.0032998595852404833, -0.00462080305442214, -0.01166028156876564, -0.013612546026706696, -0.004467553459107876, -0.020921876654028893, 0.04997263476252556, -0.007296004798263311, 0.016071198508143425, 0.006436475552618504, -0.013206101953983307, -0.008135545067489147, 0.008455369621515274, 0.018056778237223625, -0.026132356375455856, 0.036673251539468765, -0.008528662845492363, -0.004923970438539982, -0.0041210767813026905, -0.02689194120466709, 0.00035501393722370267, 0.02140161395072937, -0.0011910144239664078, -0.00791566539555788, -0.01631106808781624, 0.02001570537686348, -0.033768173307180405, -0.008395402692258358, -0.032755397260189056, 0.0041710492223501205, 0.001887299818918109, 0.00550032127648592, 0.0023770316038280725, -0.01431216299533844, 0.017923519015312195, 0.028970802202820778, -0.01166028156876564, -0.02205459028482437, -0.02393355965614319, -0.026052400469779968, -0.006469790358096361, 0.09887918829917908, 0.02312067151069641, -0.024706469848752022, 0.014352140948176384, 0.010960664600133896, -0.0048240250907838345, -0.017137281596660614, -0.0059500751085579395, 0.026198986917734146, -0.014618661254644394, 0.00625990517437458, -0.002388691995292902, 0.01815006136894226, -0.01259310357272625, 0.017577040940523148, -0.0035913665778934956, -0.020975179970264435, -0.012673060409724712, -0.022441044449806213, 0.01050091627985239, 0.004800704307854176, -0.002831782680004835, 0.014498727396130562, 0.021055135875940323, -0.021947981789708138, -0.012539800256490707, 0.031902529299259186, -0.006812935695052147, 0.020628703758120537, -0.01651095785200596, -0.023440496996045113, 0.023480474948883057, 0.029104063287377357, 0.014618661254644394, -0.019029580056667328, 0.005397044587880373, -0.0042043644934892654, 0.01239321380853653, -0.0027884729206562042, -0.008821835741400719, 0.010420960374176502, 0.02172143943607807, 0.008135545067489147, -0.008435380645096302, 0.007762415800243616, -0.010414296761155128, -0.0124198654666543, 0.0007141922251321375, -0.026265617460012436, -0.0036213502753525972, 0.035420604050159454, -0.002153820591047406, -0.028810890391469002, -0.00864859763532877, 0.01298622228205204, -0.0012276610359549522, -0.0144187705591321, 0.0017823573434725404, 0.001755705219693482, 0.03947171941399574, -0.008975084871053696, 0.0130861671641469, 0.012579778209328651, -0.0066330344416201115, -0.006236584857106209, -0.03206244111061096, -0.033288437873125076, -0.00247697695158422, -0.019855793565511703, 0.005090545862913132, -0.01272636465728283, -0.0014758585020899773, -0.033368393778800964, -4.034249286632985e-05, 0.002163815079256892, 0.0010402636835351586, 0.01948266476392746, -0.01033434085547924, -0.0019122861558571458, -0.00241867545992136, -0.01968255452811718, -0.0301434937864542, 0.011453728191554546, -0.026958569884300232, 0.0009161649504676461, 0.0072427005507051945, 0.001965590286999941, -0.0007046141545288265, -0.02340051904320717, 0.016004569828510284, 0.009348214603960514, 0.023493802174925804, 0.021374961361289024, 0.00042976465192623436, -0.0022254479117691517, 0.011513695120811462, -0.008275467902421951, 0.005686885677278042, 0.012613093480467796, -0.008801846764981747, 0.02048211731016636, -0.03219570219516754, 0.012146681547164917, -0.03936510905623436, 0.009561430662870407, -0.009494801051914692, 0.0018889656057581306, 0.027451634407043457, -0.028011327609419823, -0.02021559700369835, 0.007549199275672436, -0.013725817203521729, -0.0010810747044160962, 0.00528710475191474, 0.01980249024927616, 0.014925160445272923, 0.014885182492434978, 0.029130714014172554, 0.008375413715839386, 0.016857435926795006, -0.008528662845492363, -0.01182685699313879, 0.0001324274780927226, 0.00914832390844822, -0.03622016683220863, -0.013032862916588783, 0.02061537839472294, -0.01484520360827446, 0.02286747843027115, 0.004237679298967123, -0.009001737460494041, 0.013572567142546177, 0.0258525088429451, -0.011353782378137112, -0.02041548676788807, 0.0027768127620220184, -0.018256669864058495, 0.020921876654028893, -0.014818551950156689, 0.01183351967483759, -0.010747447609901428, -0.015791352838277817, -0.0251728817820549, -0.00528377341106534, -0.022481022402644157, -0.024559883400797844, -7.204388384707272e-05, 0.0150717468932271, 0.007675796747207642, -0.003338172100484371, 0.002058872487396002, -0.02571924962103367, -0.03240891918540001, -0.014485401101410389, -0.021961307153105736, -0.040591105818748474, -0.004400923382490873, -0.018989602103829384, 0.029450539499521255, 0.01467196550220251, 0.0208685714751482, -0.016870761290192604, 0.005233800504356623, 0.010274373926222324, -0.005230469163507223, 0.011900150217115879, 0.005510315764695406, -0.014818551950156689, -0.03304857015609741, -0.02040216140449047, 0.03891202434897423, 0.014405445195734501, 0.005480332300066948, 0.015218333341181278, 0.0016707517206668854, 0.04736073315143585, -0.006149965804070234, -0.011866834945976734, -0.02578588016331196, -0.020175619050860405, -0.022974085062742233, -0.025132903829216957, -0.005097208544611931, -5.7884968555299565e-05, -0.026198986917734146, 0.018789710476994514, 0.06023368239402771, 0.010447612032294273, -0.003159936284646392, -0.010660829022526741, 0.018110083416104317, -0.020961854606866837, -0.011527021415531635, 0.013379340060055256, 0.03656664118170738, -0.010927349328994751, 0.015191680751740932, 0.00093615404330194, 0.015324940904974937, 0.008502011187374592, 0.005570283159613609, -0.0202022697776556, -0.0059200916439294815, -0.02690526656806469, -0.014285510405898094, 0.004644123371690512, -0.026398876681923866, -0.010087809525430202, 0.012972895987331867, -0.023173976689577103, -0.01921614445745945, 0.0012851295759901404, -0.002277086488902569, -0.0337948277592659, -0.022560978308320045, 0.007569188252091408, -0.00104359514079988, 0.01391238160431385, -0.011127240024507046, -0.013612546026706696, 0.013672512955963612, -0.010627513751387596, 0.05042571946978569, 0.00858196709305048, 0.017283868044614792, 0.0030583252664655447, -0.008508673869073391, 0.004690764471888542, 0.0015674750320613384, -0.01854984275996685, -0.015511506237089634, 0.021281680092215538, 0.02755824290215969, -0.019495990127325058, 0.007069461978971958, -0.04810699075460434, 0.020095661282539368, -0.041790448129177094, -0.037152986973524094, 0.018403256312012672, -0.005610261112451553, -0.0018106751376762986, 0.01116055529564619, 0.0015824667643755674, -0.03219570219516754, 0.007402612827718258, -0.015578135848045349, 0.021041810512542725, 0.0021271684672683477, -0.013312709517776966, -0.04341622442007065, -0.0006117483135312796, 0.03232896327972412, 0.016271090134978294, 0.02875758521258831, -0.014725269749760628, -0.02013564109802246, -0.02373366989195347, -0.015271637588739395, 0.003378150053322315, -0.010720795951783657, 0.022414391860365868, -0.032755397260189056, 0.0049039809964597225, 0.02034885622560978, -0.012473169714212418, -0.01934940367937088, -0.003754610661417246, -0.009528115391731262, 0.02723841741681099, 0.002931727794930339, 0.01457868330180645, -0.014165576547384262, 0.04035123810172081, 0.026132356375455856, 0.011986769735813141, 0.004327630158513784, -0.008561978116631508, -0.019189491868019104, -0.011187206953763962, 0.009068367071449757, 0.01066749170422554, 0.0013059515040367842, -0.013372677378356457, -0.028117936104536057, -0.01200009509921074, 0.018190039321780205, 0.000814137514680624, 0.004024462774395943, -0.04533517360687256, -0.018523190170526505, 0.0017340504564344883, -0.018776385113596916, 0.019855793565511703, 0.005043904762715101, 0.012399876490235329, -0.0022854150738567114, 0.02424005977809429, -0.017910191789269447, 0.01258644089102745, -0.022814173251390457, 0.011380434967577457, -0.033901434391736984, 0.0014450419694185257, 0.013266068883240223, -0.019602598622441292, 0.010107798501849174, -0.015524831600487232, -0.010960664600133896, 0.018962949514389038, 0.006336530204862356, 0.008808509446680546, 0.006399828940629959, 0.011287152767181396, 0.02034885622560978, -0.010467601008713245, 0.014392118901014328, -0.01106727309525013, -0.038991980254650116, 0.013885729014873505, -7.84986768849194e-05, 0.009614734910428524, 0.024026842787861824, -0.0066430289298295975, 0.0007712443475611508, 0.022027937695384026, 0.013026200234889984, 0.01282630953937769, -0.024426624178886414, 0.009694690816104412, -0.009115008637309074, 0.016324393451213837, 0.017137281596660614, -0.00440758652985096, -0.0038845394738018513, -0.017843561246991158, -0.0066630179062485695, 0.0019772506784647703, 0.029237322509288788, -0.013565904460847378, 0.004567498806864023, 0.0007158580119721591, -0.01769697479903698, -0.024959664791822433, -0.01524498499929905, -0.0002806796401273459, 0.009714679792523384, -0.030703186988830566, -0.04895985499024391, -0.014472074806690216, -0.0016957380576059222, 0.024946339428424835, -0.003881207900121808, -0.009947885759174824, -0.0035713776014745235, -0.025466054677963257, -0.026065725833177567, -0.015418224036693573, -0.01596459187567234, 0.014058968052268028, 0.041044190526008606, 0.02114841900765896, -0.005773505195975304, 0.014818551950156689, -0.012706375680863857, -0.00924826879054308, 0.00884182471781969, -0.004024462774395943, -0.009121671319007874, 0.017710302025079727, -0.009754658676683903, 0.0054037077352404594, -0.027065178379416466, 0.005113866180181503, 0.009781310334801674, -0.009368203580379486, -0.013659186661243439, 0.00274849496781826, 0.0066030509769916534, 0.016377698630094528, -0.009628061205148697, 0.0004006139643024653, 0.02987697347998619, 0.004973942879587412, -0.005890107713639736, -0.02457321062684059, -0.0029750375542789698, 0.005610261112451553, 0.002332056174054742, -0.007995621301233768, -0.029983580112457275, 0.006849582307040691, -0.018856341019272804, 0.006339861545711756, -0.04208362102508545, -0.014072294346988201, -0.01723056472837925, -0.029184019193053246, 0.041710492223501205, -0.0014708612579852343, 0.0026851962320506573, 0.03299526497721672, 0.007382623851299286, -0.01823001727461815, 0.00042414272320456803, 0.024466602131724358, 0.007935654371976852, -0.023173976689577103, -5.6271270295837894e-05, -0.0357670821249485, 0.020362183451652527, -0.004064441192895174, 0.015751374885439873, -0.01941603422164917, 0.02505294792354107, -0.009421507827937603, 0.002871760632842779, -0.010154439136385918, 0.03470099717378616, 0.009481474757194519, -0.008535326458513737, -5.549044726649299e-05, 0.01961592398583889, -0.0038845394738018513, 0.001146039110608399, -0.010181091725826263, -0.010281036607921124, 0.007602503523230553, 0.010154439136385918, -0.0026735360734164715, 0.0009861267171800137, -0.0215348731726408, -0.003491421462967992, -0.002173809567466378, -0.04101753979921341, 0.009201628156006336, 0.2074597328901291, -0.01060086116194725, -0.006386502645909786, 0.027318373322486877, 0.0005684387288056314, 0.009188301861286163, 0.01564476639032364, -0.013805773109197617, -0.006116650532931089, -0.0013967351987957954, -0.012446517124772072, 0.00984127726405859, -0.011960117146372795, 0.007955643348395824, 0.015578135848045349, -0.003531399415805936, -0.03406134620308876, -0.002330390503630042, -0.007869023829698563, -0.05309092625975609, 0.011380434967577457, -0.00924826879054308, -0.0018839683616533875, -0.002456987975165248, 0.013179449364542961, 0.021281680092215538, -0.018256669864058495, 0.00032648787600919604, 0.01914951391518116, -0.008382076397538185, -0.029797015711665154, -0.010161102749407291, 0.009934559464454651, -0.022494347766041756, -0.00312995258718729, 0.00318825407885015, 0.005620255600661039, -0.002901744330301881, 0.010720795951783657, -0.024746449664235115, 0.011080598458647728, -0.005147181451320648, 0.0036113557871431112, 0.0032065773848444223, -0.012579778209328651, 0.015125051140785217, -0.002681864658370614, -0.006076672580093145, -0.016444329172372818, 0.022627608850598335, -0.03630012273788452, 0.01768364943563938, 0.03531399369239807, 0.024666491895914078, 0.02225448004901409, -0.020428813993930817, -0.01821669191122055, 0.029397236183285713, -0.0038312352262437344, 0.031236227601766586, 0.008928444236516953, 0.027798110619187355, -0.0107674365863204, 0.024959664791822433, -0.029370583593845367, 0.017510410398244858, -0.012852962128818035, 0.0037412845995277166, 0.027744807302951813, -0.03147609531879425, 0.008921780623495579, -0.032888658344745636, -0.012013421393930912, 0.01299288496375084, -0.010540894232690334, -0.003861218923702836, 0.017070652917027473, -0.027318373322486877, 0.007409275975078344, 0.0036513337399810553, 0.0029583799187093973, -0.023160651326179504, 0.01684410870075226, -0.00026089878519997, -0.013532589189708233, -0.025426076725125313, 0.010081145912408829, -0.007296004798263311, -0.016257764771580696, 0.01591128669679165, -0.015151702798902988, -0.03195583447813988, 0.0009278252255171537, -0.007069461978971958, 0.016950717195868492, -0.006306546740233898, 0.02729172073304653, -0.00507055688649416, 0.013805773109197617, -0.011606977321207523, -0.01823001727461815, -0.01206006295979023, 0.021828046068549156, -0.0038145778235048056, -0.01457868330180645, -0.00692287553101778, 0.010680817998945713, 0.004897318314760923, 0.0033548295032233, -0.01173357479274273, 0.02060205116868019, -0.02173476479947567, -0.012299931608140469, -0.006026699673384428, 0.0016107845585793257, 0.02822454459965229, -0.025692597031593323, -0.021841373294591904, -0.0144187705591321, 0.009554767981171608, 0.01974918507039547, -0.020455464720726013, 0.020029032602906227, 0.015191680751740932, 0.005157175939530134, -0.010487589985132217, -0.023746995255351067, 0.0038845394738018513, 0.001496680430136621, -0.00732265692204237, 0.017017347738146782, -0.03685981407761574, -0.00788901373744011, -0.010121123865246773, -0.031582705676555634, 0.02260095626115799, -0.02133498340845108, -0.014365466311573982, 0.0258525088429451, -0.01415225025266409, 0.018656449392437935, 0.012866287492215633, -0.0010444280924275517, 0.014165576547384262, 0.003343169344589114, -0.008821835741400719, 0.011073935776948929, -0.018469884991645813, 0.0015200009802356362, -0.026332246139645576, -0.034567736089229584, -0.00308164581656456, 0.002540275687351823, -0.0022904123179614544, 0.002052209572866559, 0.0033848132006824017, 0.003787925699725747, -0.00858196709305048, -0.001638269517570734, 0.01993574947118759, -0.02398686483502388, 0.006722985301166773, 0.005160507280379534, -0.014565357007086277, -0.020428813993930817, -0.012173334136605263, -0.16844108700752258, 0.012293267995119095, 0.009028389118611813, -0.012020084075629711, 0.037606071680784225, 0.024879708886146545, 0.031049663200974464, -0.0024120125453919172, -0.004547509830445051, -0.03440782427787781, 0.023347215726971626, 0.020388834178447723, -0.032035790383815765, -0.025279490277171135, -0.00021592342818621546, -0.014165576547384262, -0.0008561977883800864, 0.023906908929347992, 0.031902529299259186, 0.00924160610884428, 0.010887371376156807, -0.009028389118611813, 0.017936844378709793, 0.013232753612101078, 0.013339362107217312, -0.006856245454400778, 0.017203912138938904, 0.026545463129878044, 0.004014468286186457, -0.018922971561551094, -0.028331153094768524, 0.024959664791822433, -0.01100064255297184, -0.009128334932029247, 0.024493254721164703, 0.001945601194165647, -0.01749708503484726, -0.009434833191335201, -0.011906812898814678, 0.001579135307110846, 0.02538609877228737, -0.0027118483558297157, 0.012959569692611694, 0.004817361943423748, 0.007315993774682283, 0.05127858743071556, -0.005690217483788729, -0.0035480570513755083, 0.0067096590064466, -0.022441044449806213, 0.005816814489662647, -0.020162291824817657, 0.009514790028333664, 0.014005663804709911, 0.043043095618486404, -0.002317064441740513, 0.029903624206781387, 0.008048925548791885, -0.004277657717466354, -0.018389929085969925, 0.0006021702429279685, 0.0041110822930932045, 0.009274921379983425, -0.011380434967577457, 0.003084977390244603, -0.00374461617320776, -0.01564476639032364, 0.026025747880339622, -0.02955714799463749, 0.02571924962103367, -0.008968422189354897, 0.006273231469094753, 0.016284415498375893, -0.009115008637309074, 0.0023670371156185865, -0.00040436189738102257, -0.01768364943563938, 0.026345573365688324, 0.0020988506730645895, -0.00554696237668395, -0.030649881809949875, 0.038005854934453964, -0.007569188252091408, 0.0004984770203009248, -0.0023337220773100853, 0.008075578138232231, -0.0060466886498034, -0.023027390241622925, -0.006842919625341892, -0.0020222258754074574, 0.012133356183767319, -0.005040572956204414, 0.0015566475922241807, -0.008008947595953941, 0.023307237774133682, 0.017603693529963493, 0.00808890350162983, -0.026931919157505035, -0.0034847583156079054, 0.0053837182931602, 0.010520905256271362, -0.005626918748021126, -0.03120957687497139, 0.027345025911927223, 0.022307783365249634, 0.009228279814124107, -0.02126835286617279, 0.006772957742214203, 0.013805773109197617, 0.010287699289619923, -0.006566404365003109, 0.009821288287639618, 0.022481022402644157, -0.0077091120183467865, 0.026865288615226746, 0.03107631579041481, 0.012866287492215633, -0.02014896646142006, 0.009867929853498936, -0.024733122438192368, 0.06849582493305206, -0.0031965828966349363, -0.007502558175474405, 0.01451205275952816, -0.021694786846637726, -0.04432239383459091, -0.10938010364770889, 0.001877305330708623, -0.00220379326492548, 0.012766342610120773, -0.026931919157505035, 0.001555814640596509, -0.005303762387484312, 0.00578349968418479, 0.0038978655356913805, 0.0053603979758918285, -0.02108178846538067, -0.03470099717378616, -0.0007004497456364334, -0.0047807153314352036, 0.013519263826310635, -0.01801680028438568, -0.0009619732154533267, -0.03009018860757351, 0.02168145962059498, 0.05474335700273514, 0.005297099240124226, -0.008975084871053696, 0.014858529902994633, -0.03837898373603821, 0.024066820740699768, -0.014818551950156689, -0.01000119000673294, 0.005263783968985081, 0.032968614250421524, 0.018869666382670403, 0.0005696880398318172, -0.0007370963576249778, 0.021095115691423416, -0.002590248128399253, 0.008302120491862297, 4.146166975260712e-05, -0.021748090162873268, -0.0073759607039391994, 0.015551484189927578, -0.030063537880778313, -0.0029583799187093973, -0.005806820001453161, 0.013006211258471012, 0.005520310252904892, 0.01047426462173462, -0.0012701378436759114, -0.011933465488255024, 0.016351046040654182, -0.009588083252310753, -0.01676415279507637, -0.01761701889336109, 0.014445423148572445, -0.0390985906124115, 0.002008899813517928, 0.01828332059085369, -0.013432644307613373, 0.019642576575279236, -0.00044100850936956704, -0.013872403651475906, -0.016271090134978294, -0.008761868812143803, 0.017110630869865417, -0.005183828063309193, 0.021255027502775192, 0.004907312802970409, 0.002052209572866559, -0.016057873144745827, -0.024999642744660378, 0.024333341047167778, 0.0017440449446439743, -0.01159365102648735, 0.010094472207129002, -0.027211764827370644, 0.009208290837705135, -0.021388288587331772, 0.006439806893467903, -0.024293363094329834, -0.009774647653102875, 0.017910191789269447, 0.0066530234180390835, -0.019296100363135338, -0.018669776618480682, 0.00798895861953497, 0.005260452628135681, 0.01200009509921074, 0.007082788273692131, 0.015178355388343334, -0.015111724846065044, -0.006126645021140575, -0.030250102281570435, -0.00264355237595737, 0.022081241011619568, -0.008468695916235447, -0.023293910548090935, 0.0011743569048121572, 0.03901863470673561, 0.028331153094768524, 0.0015566475922241807, -0.009561430662870407, -0.008115556091070175, -0.016271090134978294, -0.004680769983679056, -0.062312543392181396, 0.018003474920988083, -0.007609166670590639, 0.005843466613441706, -0.00047557291691191494, -7.365758210653439e-05, 0.01795016974210739, -0.004360945429652929, -0.010114461183547974, 0.00352140492759645, 0.005986721720546484, 0.025559337809681892, -0.026492159813642502, -0.021281680092215538, -0.02803798019886017, -0.0055036526173353195, 0.02205459028482437, -0.026345573365688324, 0.016404349356889725, -0.00957475695759058, 0.008342098444700241, -0.006516431458294392, 0.030330058187246323, -0.003291530767455697, -0.006563072558492422, -0.011367108672857285, 0.02280084788799286, 0.028944149613380432, 0.004973942879587412, -0.027131808921694756, 0.010274373926222324, -0.024439949542284012, -0.005430359859019518, -0.009354877285659313, 0.005673559848219156, 0.023880256339907646, -0.03067653439939022, -0.005890107713639736, -0.004017799627035856, 0.02557266317307949, 0.003241558326408267, -0.0002987947082147002, 0.01451205275952816, -0.029797015711665154, 0.025346120819449425, 0.02445327676832676, -0.006489779334515333, -0.0031182924285531044, 0.016337720677256584, -0.021308330819010735, 0.00798229593783617, 0.03067653439939022, -0.0032598816324025393, -0.0245065800845623, -0.0005576112889684737, -0.03366156667470932, 0.02028222754597664, -0.00841539166867733, 0.023613736033439636, -0.015178355388343334, 0.010207743383944035, 0.0041210767813026905, 0.014818551950156689, -0.019655903801321983, 0.004344287794083357, -0.01084072981029749, 0.004654117859899998, -0.012859624810516834, -0.023413844406604767, -0.028730932623147964, 0.0047307428903877735, 0.00478737847879529, 0.0016832449473440647, 0.009288246743381023, 0.00620993273332715, 0.02258763089776039, 0.00011139733396703377, 0.005813483148813248, -0.033368393778800964, 0.011980106122791767, -0.009301573038101196, -0.019722532480955124, -0.03523403778672218, 0.013525926508009434, 0.029317278414964676, -0.021508222445845604, -0.007309330627322197, 0.026212312281131744, -0.007629155647009611, 0.010047830641269684, 0.006909549701958895, -0.012213312089443207, -0.007236037403345108, -0.011393760330975056, 0.011800204403698444, 0.017243890091776848, -0.019109535962343216, -0.001326773432083428, 0.02101515792310238, 0.032702092081308365, -0.015564809553325176, 0.011347119696438313, 1.1998638001387008e-05, -0.023533780127763748, -0.013219427317380905, 0.018203364685177803, -0.002520286478102207, -0.010947338305413723, 0.00599671620875597, 0.018456559628248215, 0.014685291796922684, 0.016137829050421715, 0.03851224482059479, 0.02471979707479477, -0.009188301861286163, 0.007182733155786991, 0.010747447609901428, -0.004690764471888542, -0.007455917075276375, 0.038059160113334656, 0.013605882413685322, 0.017110630869865417, 0.016657544299960136, 0.009927896782755852, 0.016617566347122192, -0.000828712887596339, 0.01030768919736147, 0.02100183255970478, 0.007862361147999763, 0.006729647982865572, 0.005223806016147137, 0.007309330627322197, -0.05863455682992935, 0.009134997613728046, 0.0031182924285531044, -0.03041001409292221, -0.01569806970655918, 0.00507055688649416, -0.018443234264850616, 0.03430121764540672, 0.004930633120238781, -0.013445970602333546, -0.008302120491862297, 0.0006608880939893425, 0.016550935804843903, 0.012066725641489029, 0.012446517124772072, 0.00600004754960537, -0.02338719367980957, 0.012792994268238544, -0.005843466613441706, 0.018469884991645813, -0.017310520634055138, -0.005140518303960562, 0.02432001568377018, -0.0009919567964971066, 0.03891202434897423, -0.008522000163793564, -0.021055135875940323, 0.024213407188653946, -0.0059200916439294815, 0.030436666682362556, 0.0019872451666742563, -0.0003185755340382457, -0.014631987549364567, 0.030250102281570435, 0.00808224081993103, 0.0018906313925981522, -0.0364333838224411, 0.007016157731413841, 0.01763034611940384, -0.014472074806690216, -0.0035480570513755083, -0.00030150156817398965, 0.009941223077476025, 0.011473717167973518, -0.022494347766041756, 0.026159008964896202, 0.013026200234889984, -0.03368821740150452, 0.01116055529564619, -0.0154048977419734, -0.00917497556656599, 0.020188944414258003, -0.008228827267885208, -0.014751921407878399, 0.001189348753541708, -0.017004022374749184], "b36e4b7d-f46c-4934-810f-2b4d9c71aff0": [-0.013375094160437584, -0.010500828735530376, -0.0019369317451491952, -0.0019621741957962513, -0.025121213868260384, 0.03516431525349617, -0.010170995257794857, -0.016895564272999763, -0.01149033010005951, -0.012486562132835388, 0.03731833025813103, 0.01728598028421402, 0.00629040040075779, 0.024151906371116638, -0.002911287359893322, 0.012951022014021873, 0.031098607927560806, 0.00411282479763031, 0.03064087964594364, -0.02215944044291973, -0.0016163535183295608, -0.003668558783829212, -0.010211382992565632, 0.046688299626111984, -0.004375345539301634, 0.022119052708148956, 0.010574872605502605, -0.012096147052943707, 0.024030743166804314, -0.0236537903547287, -0.003500276245176792, -0.001167880604043603, -0.00495087169110775, 0.0013588812435045838, -0.0267771128565073, 0.005795649718493223, -0.009794042445719242, -0.020288139581680298, 0.01602049544453621, -0.00243168231099844, 0.011921132914721966, -0.0008611857774667442, -0.007727533113211393, -0.0008090181509032845, -0.036214396357536316, 0.011598031036555767, -0.008717034012079239, -0.03080243058502674, -0.023263374343514442, 0.013785703107714653, 0.022280603647232056, 0.026830963790416718, -0.037049077451229095, 0.01342221349477768, -0.00511578842997551, 0.0052268547005951405, 0.014081880450248718, 0.02835223823785782, -0.023680714890360832, 0.03171788901090622, 0.020409302785992622, 0.003927713725715876, -0.014364595524966717, 0.01472808513790369, -0.03785683214664459, -0.018093734979629517, -0.015051187947392464, -0.01593971997499466, 0.0027531019877642393, -0.016922488808631897, 0.031744811683893204, 0.002078288933262229, -0.010588335804641247, -0.004378710873425007, 0.01317315548658371, -0.037372179329395294, -0.033171847462654114, -0.007996784523129463, -0.012493293732404709, 0.005337921436876059, -0.003840206889435649, -0.03196021541953087, -0.005220123566687107, 0.0008616064442321658, 0.03204099088907242, -0.01313276682049036, 0.009531521238386631, 0.018241824582219124, -0.01929190754890442, -0.035622041672468185, 0.002251619938760996, 0.015414678491652012, 0.009881549514830112, -0.0027531019877642393, -0.00839393213391304, 0.017932184040546417, -0.040657054632902145, 0.025807805359363556, -0.014714622870087624, -0.04262259602546692, -0.016545535996556282, -0.019197668880224228, -0.017676394432783127, 0.0016601069364696741, -0.02055739238858223, 0.02023428864777088, -0.0013479429762810469, 0.00335555337369442, 0.003809916088357568, -0.013509719632565975, 0.0034077209420502186, 0.018591850996017456, -0.012930828146636486, -0.06015090271830559, -0.012358667328953743, -0.007512131240218878, 0.043430350720882416, -0.011699000373482704, -0.013812628574669361, -0.02568664215505123, 0.001970588229596615, 0.028890741989016533, -0.002451876178383827, -0.02551162801682949, 0.013018335215747356, 0.009255537763237953, 0.0026134273502975702, -0.02079971879720688, 0.00740443030372262, -0.012055759318172932, 0.042326416820287704, 0.009080524556338787, 0.010689305141568184, -0.023640327155590057, -0.004907118156552315, 0.025996282696723938, -0.030910132452845573, 0.006509167607873678, -0.02005927450954914, -0.018928416073322296, 0.020274676382541656, 0.00757271284237504, 0.003086301265284419, -0.026373235508799553, -0.031233234331011772, 0.006105289328843355, 0.02575395628809929, 0.014014567248523235, -0.02835223823785782, 0.00589661905542016, 0.006455317139625549, -0.012607725337147713, 0.023465313017368317, -0.005822574719786644, -0.0009331265464425087, -2.9133909265510738e-05, 0.01847068779170513, -0.017016727477312088, -0.015926256775856018, -0.019103430211544037, 0.010009443387389183, 0.023007584735751152, 0.01635706052184105, -0.02416536957025528, 0.005836037453263998, 0.0234922394156456, 0.005963932257145643, -0.016680162400007248, -0.02660209871828556, -0.01962847262620926, 0.00780157744884491, 0.0048330738209187984, -0.04318802431225777, 0.003158662701025605, -0.010770080611109734, -0.0004276479303371161, 0.045772843062877655, 0.04044165462255478, -0.021957501769065857, 0.00589661905542016, -0.02910614386200905, -0.007734264247119427, 0.013664539903402328, 0.0037796252872794867, -0.007458280771970749, -0.00846797600388527, -0.004190234467387199, -0.008461244404315948, 0.018726477399468422, -0.0007644232828170061, 0.003594514448195696, 0.02073240466415882, -0.016599386930465698, -0.031179383397102356, -0.6319883465766907, -0.022361380979418755, -0.026494398713111877, -0.01291736587882042, -0.0010526070836931467, -0.005782186985015869, 0.008945898152887821, 0.006472145207226276, -0.00780157744884491, -0.011813431978225708, -0.019399607554078102, 0.010541216470301151, -0.010998944751918316, -0.01191440224647522, -0.01593971997499466, -0.0021792585030198097, 0.009544984437525272, -0.03257949277758598, -0.0037291403859853745, -0.020207364112138748, -0.01738021709024906, 0.012648114003241062, -0.01670708693563938, -0.004523433744907379, -0.009255537763237953, -0.010137338191270828, 0.019076505675911903, -0.01065564900636673, -0.0077611892484128475, 0.02189018949866295, -0.023007584735751152, 0.024515395984053612, 0.033521875739097595, 0.032014064490795135, 0.04757683351635933, 0.001834279391914606, -0.043511126190423965, 0.021203596144914627, 0.006876023486256599, 0.008097754791378975, -0.020517004653811455, -0.019534233957529068, 0.012998141348361969, -6.368441245285794e-05, 0.0023576379753649235, 0.0016609483864158392, 0.012594263069331646, -0.010312352329492569, 0.024151906371116638, -0.0005342969670891762, 0.019318832084536552, -0.009632490575313568, -0.016383985057473183, -0.0010139021323993802, 0.003745968686416745, 0.01921113207936287, 0.03279489651322365, -0.01618204638361931, 0.008871854282915592, -0.006886120419949293, 0.0028305118903517723, 0.021109357476234436, -0.006727934814989567, -0.018174510449171066, -0.01602049544453621, 0.016841713339090347, 0.006478876806795597, 0.022940272465348244, 0.008905510418117046, -0.02190365083515644, 0.007922740653157234, 0.018524538725614548, 0.01241251826286316, -0.006859194952994585, 0.0286214891821146, 0.0022751796059310436, 0.015199276618659496, -0.018861103802919388, 0.009423820301890373, 0.022630631923675537, 0.003655096050351858, -0.008252574130892754, -0.013227005489170551, -0.010783543810248375, 0.021338222548365593, -0.013267393223941326, -0.001839327858760953, 0.019184205681085587, -0.0072159538976848125, 0.0057855527848005295, 0.010850856080651283, -0.004732104018330574, 0.010332546196877956, -0.0034497915767133236, 0.04046857729554176, 0.007855427451431751, -0.01506465021520853, -0.002384563209488988, 0.011665343306958675, -0.007767920847982168, -0.006135580595582724, -0.006445220205932856, 0.011719194240868092, -0.003426231909543276, 0.007236148230731487, -0.011631687171757221, -0.031233234331011772, -0.019264981150627136, 0.05091555789113045, -0.012661576271057129, -0.01585894450545311, -0.01619550958275795, -0.01645129919052124, 0.0011821846710518003, 0.029752347618341446, -0.016074346378445625, 0.014714622870087624, -0.012553875334560871, 0.015751242637634277, -0.01794564723968506, 0.023115286603569984, -0.022684482857584953, 0.01602049544453621, -0.008959361352026463, 0.018053347244858742, 0.033521875739097595, 0.003074521431699395, -0.019668860360980034, -0.016841713339090347, -0.02113628387451172, -0.003762796986848116, -0.02155362442135811, 0.007431355770677328, 0.0008468817686662078, 0.017582157626748085, -0.016128195449709892, 0.010601798072457314, 0.002709348453208804, 0.013361631892621517, -0.037372179329395294, -0.007343848701566458, -0.013987642712891102, 0.020692016929388046, -0.0006992138223722577, -0.0100632943212986, -0.02584819309413433, -0.01116049662232399, 0.0028153664898127317, -0.01888802833855152, 0.007000552490353584, 0.002971869194880128, -0.004230622202157974, -0.009376701898872852, 0.0017484553391113877, 0.0069063142873346806, -0.004294569604098797, -0.024798110127449036, -0.006600040011107922, 0.010803737677633762, -0.021513236686587334, 0.007781383115798235, 0.021015120670199394, -0.022428693249821663, 0.015387753024697304, 0.0143107445910573, -0.010022906586527824, -0.03257949277758598, 0.023936504498124123, -0.016464760527014732, -0.033925753086805344, 0.0030122569296509027, 0.006488973740488291, -0.00042428227607160807, 0.034948911517858505, -0.038556888699531555, 0.006438489072024822, -0.004658060148358345, -0.017393680289387703, 0.01820143684744835, 0.01383955404162407, -0.003503641812130809, 0.020113125443458557, -0.0013513085432350636, -0.012479831464588642, 0.01779755763709545, 0.00880454108119011, -0.016895564272999763, -0.006556286476552486, 0.0067514944821596146, 0.03667212650179863, 0.007182297762483358, -0.005186466965824366, 0.02450193464756012, -0.011725925840437412, 0.0062634749338030815, 0.006138945929706097, 0.013408750295639038, 0.017245592549443245, 0.0003033292305190116, 0.004812879953533411, 0.023855729028582573, 0.015872405841946602, 0.03799146041274071, 0.007976590655744076, 0.0009036770788952708, -0.034033454954624176, -0.0002631517709232867, 0.005677851848304272, 0.036618273705244064, -0.019803486764431, -0.012762545607984066, -0.031340934336185455, 0.0072698043659329414, -0.011779775843024254, -0.005337921436876059, 0.02591550722718239, 0.024273069575428963, -0.005960566457360983, -0.014337670058012009, 0.0022280605044215918, 0.020570853725075722, -0.006886120419949293, 0.003739237319678068, -0.009491133503615856, -0.021459385752677917, -0.015535841695964336, 0.004062339663505554, 0.028836891055107117, 0.028729191049933434, -0.00897282361984253, 0.02660209871828556, -0.007303460966795683, -0.004937408957630396, -0.000835943385027349, 0.026157833635807037, -0.0021859898697584867, 0.023869192227721214, -0.014876173809170723, 0.04555744305253029, -0.029994674026966095, -0.005566785577684641, 0.012419248931109905, 0.015899332240223885, -0.02910614386200905, -0.02039583958685398, 0.005075400695204735, 0.017232129350304604, 0.017097502946853638, 0.0402531772851944, 0.00961229670792818, -0.006152408663183451, 0.010891243815422058, 0.0067245690152049065, -0.01439152006059885, 0.016074346378445625, -0.018995730206370354, -0.016383985057473183, 0.03791068494319916, 0.01720520481467247, 0.03540664166212082, 0.010359471663832664, 0.0038435724563896656, 0.015535841695964336, 0.01847068779170513, 0.04908464476466179, 0.01367127150297165, 0.0032310241367667913, 0.023021047934889793, -0.019534233957529068, -0.03295644745230675, -0.01409534364938736, -0.010857587680220604, -0.001963856862857938, 0.00016617898654658347, 0.013933791778981686, -0.002960089361295104, 0.007168835029006004, 0.0049205804243683815, 0.012587531469762325, -0.006159139797091484, -0.03045240417122841, -0.024461545050144196, 0.014324207790195942, 0.018080273643136024, 0.0025730396155267954, -0.009652684442698956, -0.014579996466636658, -0.007384236436337233, -0.02854071371257305, 0.04951544478535652, -0.019830411300063133, 0.012762545607984066, 0.025498166680336, -0.015549303963780403, -0.012540413066744804, 0.009040136821568012, 0.013812628574669361, -0.021203596144914627, 0.04246104508638382, -0.010406590066850185, -0.0032680463045835495, -0.0007627404993399978, -0.022886421531438828, 0.024124979972839355, 0.020530465990304947, 0.0014118902618065476, -0.007841965183615685, -0.005822574719786644, 0.02408459223806858, -0.0253366157412529, -0.0075929067097604275, -0.040657054632902145, 0.008542019873857498, 0.0007888242835178971, 0.0022331089712679386, 0.015347365289926529, -0.011510523967444897, 0.029159992933273315, 0.03758758306503296, -0.013678002171218395, -0.016047419980168343, -0.012850052677094936, -0.023963429033756256, -0.006418295204639435, 0.07285959273576736, 0.01738021709024906, -0.030613955110311508, 0.011221078224480152, 0.013455869629979134, -0.007148641161620617, -0.015185813419520855, -0.004617671947926283, 0.024299994111061096, -0.008501632139086723, -0.0043046665377914906, -0.018403375521302223, 0.02063816785812378, -0.010911437682807446, 0.023774953559041023, -0.015172351151704788, -0.014876173809170723, -0.0017955744406208396, -0.01145667303353548, 0.006946702022105455, -0.025323152542114258, 0.011274928227066994, 0.005758627783507109, 0.02047661691904068, -0.03521816432476044, -0.010857587680220604, 0.03325262293219566, -0.004092630464583635, 0.022926809266209602, -0.01703019067645073, -0.019830411300063133, 0.03362957760691643, 0.02559240348637104, 0.019763099029660225, -0.014956949278712273, 0.006391369737684727, 0.003222610102966428, 0.029321545735001564, -0.003927713725715876, -0.016545535996556282, 0.006748128682374954, 0.0162762850522995, 0.02030160278081894, -0.009168031625449657, 0.013455869629979134, 0.0002711451961658895, -0.0199650377035141, -0.007364042568951845, -0.02190365083515644, -0.0162762850522995, 0.02249600552022457, -0.005920178722590208, -0.026830963790416718, -0.01208268478512764, 0.022522931918501854, -0.0009129326208494604, -0.01989772357046604, 0.009336314164102077, -0.0177167821675539, 0.03769528120756149, -0.0016786180203780532, 0.01330104935914278, 0.012769277207553387, -0.007680413778871298, -0.016222434118390083, -0.028998441994190216, -0.036887526512145996, -0.005422062706202269, -0.014660772867500782, 0.011941326782107353, -0.007249610498547554, 0.00016807216161396354, -0.008966092020273209, 0.009120912291109562, 0.004732104018330574, 0.004674888215959072, 0.019480383023619652, -0.012957753613591194, 0.012594263069331646, 0.004058974329382181, -0.006408198270946741, -0.02711367793381214, 0.012829858809709549, -0.01637052185833454, -0.004859998822212219, 0.0029466268606483936, 0.0048465365543961525, 0.004859998822212219, -0.016410911455750465, 0.017932184040546417, -0.006364444736391306, 0.01946692168712616, 0.0028658511582762003, -0.001648327219299972, 0.006828904151916504, -0.003722409252077341, 0.005438890773802996, -0.006223087199032307, 0.0001714378158794716, -0.01704365201294422, 0.004240719135850668, -0.04168021306395531, 0.011248002760112286, -0.028675340116024017, 0.0023475410416722298, -0.016491686925292015, 0.005398503039032221, 0.016464760527014732, -0.01711096614599228, -0.025377003476023674, 0.004856633488088846, -0.016262821853160858, -0.006980358622968197, -0.007835233584046364, 0.015010800212621689, -0.006226452998816967, 0.024232681840658188, 0.011752850376069546, 0.0008435160852968693, 0.014256894588470459, -0.003806550521403551, -0.030613955110311508, 0.010346008464694023, 0.006044707726687193, -0.027706032618880272, 0.005469181574881077, 0.026480935513973236, -0.0076063694432377815, 0.013213543221354485, 0.007646757178008556, -0.001000439515337348, 0.007364042568951845, 0.01989772357046604, -0.01124127209186554, -0.013496257364749908, -0.0037897222209721804, -0.01813412271440029, 0.014485758729279041, -0.009046867489814758, 0.009585372172296047, -0.01409534364938736, -0.02392304129898548, -0.010595067404210567, -0.019763099029660225, -0.02660209871828556, -0.022603707388043404, -0.004075802396982908, 0.003345456440001726, 0.01397417951375246, -0.01199517771601677, 0.006085095461457968, -0.023182598873972893, -0.04019932821393013, -0.007377505302429199, -0.022388305515050888, -0.016801325604319572, 0.0016222434351220727, -0.018928416073322296, 0.022886421531438828, 0.008871854282915592, 0.026454010978341103, -0.01970924809575081, 0.006758225616067648, 0.011988446116447449, -0.006337519269436598, 0.007108253426849842, -0.0015481990994885564, -0.033010296523571014, -0.05161561071872711, -0.02483849786221981, 0.027706032618880272, 0.013193349353969097, 0.013455869629979134, -0.0006407356704585254, -0.004627768881618977, 0.04655367508530617, 0.00244514481164515, -0.011133571155369282, -0.014916561543941498, -0.023855729028582573, -0.016545535996556282, -0.015253126621246338, -0.013193349353969097, 0.0005300898919813335, -0.024286532774567604, 0.0117461197078228, 0.06661295145750046, 0.005970663391053677, -0.01330104935914278, -0.009376701898872852, 0.02929461933672428, -0.0022718138061463833, -0.004395539406687021, 0.015751242637634277, 0.024542322382330894, -0.01861877739429474, 0.026319384574890137, -0.005755261983722448, -0.006189430598169565, 0.005321092903614044, -0.009174762293696404, -0.004139749798923731, -0.005519666243344545, -0.01871301606297493, -0.008171798661351204, 0.007902546785771847, -0.0232499111443758, -0.018820716068148613, 0.011126839555799961, -0.012203847989439964, -0.02147284895181656, -0.0033673329744488, -0.009120912291109562, -0.03497583791613579, -0.026130909100174904, 0.000898628612048924, -0.0015557717997580767, 0.011315315961837769, -0.020274676382541656, -0.015805093571543694, 0.002874265192076564, -0.01439152006059885, 0.044265031814575195, 0.009841160848736763, 0.022280603647232056, 0.006791882216930389, -0.021782487630844116, -0.00852182600647211, -0.00910744909197092, -0.008730496279895306, -0.01930536888539791, 0.019655397161841393, 0.019763099029660225, -0.014014567248523235, -0.005889887921512127, -0.023626863956451416, -0.002958406461402774, -0.04246104508638382, -0.029348470270633698, 0.019574621692299843, 0.0008321570348925889, -0.000449314306024462, -0.007343848701566458, 0.009511327371001244, -0.03581051900982857, -0.010722961276769638, -0.018107198178768158, 0.025403928011655807, -0.004789320286363363, -0.01728598028421402, -0.0319063626229763, -0.006744762882590294, 0.01661285012960434, 0.024892348796129227, 0.031233234331011772, -0.020166976377367973, -0.02551162801682949, -0.023276837542653084, -0.01677440106868744, -0.004402270540595055, 0.005492741242051125, 0.02516160160303116, -0.03004852496087551, 0.004072436597198248, 0.010083488188683987, -0.004439292475581169, -0.01305199135094881, 0.003469985444098711, -0.016599386930465698, 0.026871351525187492, -0.00041628885082900524, 0.015131963416934013, 0.004244084935635328, 0.033683426678180695, 0.02719445340335369, 0.014539608731865883, 0.014579996466636658, -0.009046867489814758, -0.028163760900497437, -0.0022432059049606323, 0.007034209091216326, 0.013826090842485428, 0.006404832471162081, -0.014041492715477943, -0.016639774665236473, -0.0015734414337202907, 0.014378057792782784, 0.011012407951056957, -0.002414854010567069, -0.045422814786434174, -0.025821268558502197, 0.004759029485285282, -0.019830411300063133, 0.020005425438284874, -0.0014287185622379184, 0.019668860360980034, -0.006455317139625549, 0.018564926460385323, -0.03029085136950016, 0.011571105569601059, -0.019803486764431, -0.004907118156552315, -0.03432963415980339, -0.004708544816821814, 0.015724318102002144, -0.014499220997095108, 0.0062634749338030815, -0.022294066846370697, -0.01988426223397255, 0.024959662929177284, 0.01182689517736435, 0.01065564900636673, 0.0007366567151620984, 0.013368362560868263, 0.007754458114504814, -0.01132877916097641, 0.013738584704697132, -0.009800773113965988, -0.03642979636788368, 0.018753403797745705, 0.012984678149223328, 0.0019285175949335098, 0.011497060768306255, -0.011900939047336578, 0.026575174182653427, 0.004156577866524458, 0.008784347213804722, 0.010521022602915764, -0.04103400930762291, 0.01451268419623375, 0.0014051590114831924, 0.012318279594182968, -0.0005448146257549524, -0.010352740064263344, -0.00885839108377695, -0.031152458861470222, -0.0034110865090042353, 0.006687547080218792, 0.025821268558502197, -0.005849500186741352, 0.003503641812130809, 0.00956517830491066, -0.015805093571543694, -0.027894509956240654, -0.00740443030372262, -0.0024535590782761574, 0.005943738389760256, -0.009827698580920696, -0.037722207605838776, 0.0012873612577095628, 0.01191440224647522, 0.02384226582944393, 0.003624805249273777, -0.02408459223806858, -0.009693073108792305, -0.01506465021520853, -0.045692067593336105, -0.02132475934922695, -0.008575676940381527, 0.0218094140291214, 0.043834228068590164, 0.01921113207936287, 0.002127090934664011, 0.012574069201946259, -0.020826643332839012, 0.003434646176174283, 0.0020698748994618654, 0.0008952629868872464, 0.0026874716859310865, 0.02425960637629032, -7.109936268534511e-05, -0.004957602825015783, -0.028567640110850334, -0.008656452409923077, 0.006051439326256514, -0.006145677529275417, -0.0011047746520489454, 0.0009726728894747794, 0.008838197216391563, 0.022280603647232056, -0.01263465080410242, -0.0036214396823197603, 0.02802913449704647, -0.0002623103791847825, -0.0016836664872244, -0.013752046972513199, -0.01225096732378006, 0.0003319372481200844, -0.004069071263074875, 0.0019739537965506315, -0.025107750669121742, 0.009235343895852566, -0.015172351151704788, 0.0009263952379114926, -0.02650786191225052, -0.00930938869714737, -0.01803988590836525, -0.03365650400519371, 0.04135711118578911, -0.004435927141457796, -0.0008700205944478512, 0.02778680808842182, -0.007895815186202526, -0.010729692876338959, -0.0011897573713213205, 0.009019942954182625, 0.006714472081512213, -0.048465363681316376, 0.008602602407336235, -0.025632793083786964, 0.017474455758929253, -0.012782739475369453, 0.012318279594182968, -0.022765258327126503, 0.023815341293811798, -0.008097754791378975, -0.0020328527316451073, -0.021378610283136368, 0.03634902089834213, 0.008333349600434303, -0.030775506049394608, 0.006142311729490757, 0.022940272465348244, -0.008777615614235401, 0.00889204815030098, 0.0004897020990028977, -0.013920329511165619, 0.0040657054632902145, 0.01964193396270275, -0.006014416925609112, -7.26770085748285e-05, -0.02113628387451172, -0.0010105364490300417, -0.00019426112703513354, -0.03766835853457451, 0.002487215446308255, 0.19278444349765778, -0.012271161191165447, -0.012405786663293839, 0.014862711541354656, 0.0076063694432377815, 0.017084039747714996, 0.01653207466006279, -0.0026050133164972067, -0.015751242637634277, 0.00461430661380291, -0.009693073108792305, 0.022724870592355728, -0.013812628574669361, 0.00847470760345459, 0.0014337670290842652, 0.009746923111379147, -0.04647289961576462, 0.009800773113965988, -0.004072436597198248, -0.0498654730618, 0.011739388108253479, -0.0032074647024273872, -0.0008515095105394721, -0.0039647361263632774, 0.012526949867606163, -0.004449389409273863, -0.017003264278173447, -0.010891243815422058, 0.013906867243349552, -0.009067061357200146, -0.024946199730038643, -0.019251519814133644, 0.017555231228470802, -0.01787833496928215, 0.002840608824044466, 0.006687547080218792, 0.017407143488526344, 0.0025006781797856092, 0.029644647613167763, -0.020597780123353004, 0.005041744094341993, -0.009295925498008728, -0.006307228468358517, -0.009598834440112114, -0.017259053885936737, 0.0230883602052927, -0.0017122745048254728, -0.004557090345770121, -0.019816948100924492, 0.015185813419520855, -0.03400652855634689, 0.022253679111599922, 0.03290259838104248, 0.022711407393217087, 0.0017837946070358157, -0.015818556770682335, -0.004631134681403637, 0.018672628328204155, -0.008871854282915592, 0.023761490359902382, 0.007040940225124359, 0.034195005893707275, 0.004607575014233589, 0.03750680759549141, -0.03029085136950016, -0.0041330186650156975, -0.018605314195156097, -0.008333349600434303, 0.024609634652733803, -0.018847640603780746, 0.01182689517736435, -0.026278996840119362, -0.0065125334076583385, 0.018322600051760674, -0.015306977555155754, -0.0018797157099470496, 0.012843321077525616, -0.016734013333916664, 0.00025936542078852654, 0.0019100065110251307, 0.003300020005553961, -0.02333068661391735, 0.002758150454610586, -0.0070611340925097466, -0.007148641161620617, -0.02759833261370659, -0.003476716810837388, -0.013482795096933842, -0.006455317139625549, 0.020018886774778366, -0.013247199356555939, -0.02658863738179207, 0.002926432993263006, -0.01325393095612526, 0.009511327371001244, -0.004035414662212133, 0.024892348796129227, 0.0005969821941107512, 0.013785703107714653, -0.005516300909221172, -0.011631687171757221, -0.00578891858458519, 0.026952126994729042, -0.007390968035906553, -0.01778409630060196, -0.01786487177014351, 0.005334555637091398, 0.00885839108377695, 0.009989249520003796, -0.0019840507302433252, 0.016007032245397568, -0.022872958332300186, -0.019749635830521584, -0.01532043982297182, 0.005637464113533497, 0.023021047934889793, -0.025982819497585297, -0.015872405841946602, -0.0031115435995161533, 0.016491686925292015, 0.03984929993748665, -0.02996774949133396, 0.013159692287445068, 0.016585923731327057, 0.006229818798601627, -0.002912970259785652, -0.022011352702975273, 1.211502603837289e-05, 0.0007833550916984677, -0.012089415453374386, 0.017595618963241577, -0.053661927580833435, 0.003343773540109396, 0.0023206158075481653, -0.029940824955701828, 0.018511075526475906, -0.002588185016065836, -0.01526658982038498, 0.02794835902750492, -0.016141658648848534, 0.004429195541888475, 0.01372512150555849, 0.008676646277308464, -0.0008775932947173715, -0.004267644602805376, -0.00822564959526062, 0.004570553079247475, -0.021028582006692886, -0.009888280183076859, -0.026804039254784584, -0.029833123087882996, -0.00687938928604126, -0.0005532287759706378, 0.006536092609167099, -0.004509971477091312, 0.0034800823777914047, 0.0006133897695690393, -0.009181493893265724, -0.011133571155369282, 0.024057667702436447, -0.029133068397641182, 0.014660772867500782, 0.01913035660982132, -0.008346812799572945, -0.026373235508799553, -0.010998944751918316, -0.1705980747938156, 0.01847068779170513, 0.008245843462646008, -0.017057115212082863, 0.017743708565831184, 0.030021600425243378, 0.038879990577697754, 0.0075188628397881985, 0.009322850964963436, -0.01703019067645073, 0.0322294682264328, 0.035191237926483154, -0.04194946587085724, -0.023478776216506958, -0.00011569422349566594, -0.019399607554078102, -0.014660772867500782, 0.029079217463731766, 0.039472345262765884, 0.00427774153649807, 0.007875621318817139, -0.0060245138593018055, 0.01938614621758461, 0.00497443089261651, 0.013146230019629002, 0.006465414073318243, 0.013112572953104973, 0.0273425430059433, 0.013960717245936394, -0.007781383115798235, -0.010049832053482533, 0.014741548337042332, 0.0014228286454454064, -0.020409302785992622, 0.0042171599343419075, 0.01670708693563938, -0.010393127799034119, -0.009181493893265724, -0.003894057357683778, 0.0012065855553373694, 0.01149033010005951, -0.017434068024158478, 0.013617420569062233, 0.0020883858669549227, 0.0020294871646910906, 0.046122871339321136, -0.0023122017737478018, -0.01237886119633913, 0.010480634868144989, -0.02745024301111698, 0.007444818504154682, 0.0005742640933021903, 0.016572462394833565, 9.344938007416204e-05, 0.04380730167031288, 0.009874817915260792, 0.026319384574890137, 0.014660772867500782, 0.003678655717521906, -0.032929521054029465, 0.005782186985015869, 0.00880454108119011, 0.008865122683346272, -0.009343044832348824, 0.008420856669545174, -0.0036584618501365185, -0.01787833496928215, 0.0053816745057702065, -0.042407192289829254, 0.015966644510626793, -0.0022314260713756084, 0.011362435296177864, 0.017730245366692543, -0.006051439326256514, -0.000172279222169891, -0.004190234467387199, -0.01317315548658371, 0.03290259838104248, -0.0001765914639690891, -0.013072185218334198, -0.049138493835926056, 0.03295644745230675, -0.002539383014664054, -0.0005978236440569162, -0.0162762850522995, 0.017393680289387703, -0.011032601818442345, -0.021297834813594818, -0.011867282912135124, -0.01039985939860344, 0.017434068024158478, -0.014283820055425167, -0.008434319868683815, -0.0023525895085185766, 0.024784648790955544, 0.027652181684970856, -0.004755663685500622, -0.02576741762459278, -0.004664791282266378, 0.011268196627497673, -0.0006571431877091527, 0.001185550238005817, -0.02265755832195282, 0.02198442816734314, 0.032175615429878235, 0.006623599678277969, -0.01903611794114113, 0.011927864514291286, 0.025861656293272972, 0.02374802716076374, -0.01132204756140709, 0.017582157626748085, 0.023128747940063477, -0.009363238699734211, 0.017420604825019836, 0.03365650400519371, -0.006236549932509661, -0.01011714432388544, 0.008239111863076687, -0.014835786074399948, 0.0782446339726448, -0.007916009053587914, -0.008400662802159786, 0.013947254978120327, -0.009363238699734211, -0.035945143550634384, -0.10985482484102249, 0.0014691062970086932, -0.004853267688304186, 0.024151906371116638, -0.025390464812517166, 0.003937810659408569, -0.013731853105127811, 0.016060883179306984, 0.002073240466415882, 0.0001568182633491233, -0.017851408571004868, -0.03365650400519371, 0.005509569309651852, 0.004546993412077427, 0.018497614189982414, -0.0322294682264328, -0.01208268478512764, -0.013408750295639038, 0.020570853725075722, 0.03941849619150162, 0.003937810659408569, -0.02240176871418953, 0.006539458408951759, -0.030479328706860542, 0.018739940598607063, -0.002874265192076564, -0.02592896856367588, 0.014149193651974201, 0.028567640110850334, 0.017837945371866226, 0.0041363839991390705, 0.001967222662642598, 0.019413070753216743, -0.006899583153426647, 0.009208419360220432, 0.0026151102501899004, -0.022697946056723595, -0.0012436077231541276, 0.024017279967665672, -0.03500276431441307, 0.006233184132725, -0.0013639297103509307, 0.016653237864375114, 0.0016012081177905202, 0.006600040011107922, -0.006017782725393772, -0.02174209989607334, 0.008313155733048916, -0.0031485657673329115, -0.014351132325828075, -0.018268749117851257, 0.00698708975687623, -0.037883758544921875, -0.018053347244858742, 0.014903099276125431, -0.01355683896690607, 0.024286532774567604, 0.0072832670994102955, -0.008528557606041431, -0.008717034012079239, -0.017851408571004868, 0.01073642447590828, -0.006388003937900066, 0.023384537547826767, 0.0022802280727773905, -0.00033972031087614596, -0.006707740947604179, -0.016841713339090347, 0.026077058166265488, -0.0009255537879653275, -0.014081880450248718, 0.0013201762922108173, -0.0355951152741909, 0.00746501237154007, -0.015360827557742596, 0.008885316550731659, -0.02256331965327263, -0.004398904740810394, 0.007539056707173586, 0.00648224214091897, -0.0034531571436673403, -0.015091575682163239, 0.005852865986526012, 0.012392324395477772, 0.013146230019629002, 0.02248254418373108, 0.012890440411865711, -0.026413623243570328, 0.0020665093325078487, -0.039741598069667816, 0.008299693465232849, 0.022603707388043404, 1.704189116935595e-06, -0.02275179512798786, 0.009874817915260792, 0.051238659769296646, 0.03694137558341026, 0.0009019942372106016, -0.0016752524534240365, -0.004119555931538343, -0.01593971997499466, 0.01132204756140709, -0.06742070615291595, 0.030425477772951126, -0.00117461197078228, 0.004674888215959072, -0.005341286770999432, -0.015616617165505886, 0.006616868544369936, -0.020193900913000107, -0.017824484035372734, 0.018941879272460938, 0.0012149997055530548, 0.035945143550634384, -0.017514843493700027, -0.01011714432388544, -0.01972271129488945, 0.0007038416224531829, 0.011443210765719414, -0.029159992933273315, 0.011295122094452381, -0.013698196038603783, 0.0009036770788952708, -0.0015801728004589677, 0.037964534014463425, 0.007478474639356136, -0.013684733770787716, -0.011887476779520512, 0.013745315372943878, 0.014889637008309364, 0.00939689576625824, -0.01618204638361931, 0.020436227321624756, -0.03072165511548519, 0.014472296461462975, 0.010588335804641247, 0.014755010604858398, 0.020261215046048164, -0.02467694692313671, -0.011678806506097317, -0.002170844469219446, 0.028971517458558083, 0.000329413014696911, -0.007458280771970749, 0.022253679111599922, -0.03330647572875023, 0.023694178089499474, 0.034706585109233856, -0.00011443210678407922, 0.005920178722590208, 0.01229808572679758, -0.014499220997095108, -0.0013765509938821197, 0.035702817142009735, 0.020099664106965065, -0.027975285425782204, 0.01087104994803667, -0.030344702303409576, 0.028836891055107117, -0.0029769176617264748, 0.008885316550731659, -0.02065162919461727, 0.018080273643136024, -0.002833877457305789, 0.025955894961953163, -0.010924900881946087, 0.006411563605070114, -0.0026083788834512234, -0.0011216029524803162, -0.014660772867500782, -0.012338473461568356, -0.02870226465165615, 0.014149193651974201, -0.003745968686416745, 0.00813814252614975, 0.014485758729279041, 0.015495453961193562, 0.02711367793381214, -0.0065697492100298405, 0.012190384790301323, -0.028325311839580536, 0.00038094952469691634, -0.009235343895852566, -0.031664036214351654, -0.02767910808324814, 0.013496257364749908, 0.030183151364326477, -0.013072185218334198, -0.00822564959526062, 0.024690410122275352, -0.012365398928523064, 0.008447782136499882, 0.006744762882590294, -0.006142311729490757, -0.00740443030372262, -0.01635706052184105, 0.003384161274880171, 0.021688250824809074, -0.014606921933591366, -0.0022869594395160675, 0.028836891055107117, 0.032848745584487915, -0.02625207230448723, 0.024448083713650703, 0.007343848701566458, -0.014876173809170723, -0.018928416073322296, 0.013307780958712101, -0.017232129350304604, -0.004792686086148024, 0.005075400695204735, 0.01409534364938736, 0.009672879241406918, 0.005247048567980528, 0.04413040727376938, 0.03004852496087551, -0.019615009427070618, 0.001618036301806569, 0.004873461555689573, 0.0031250063329935074, -0.009322850964963436, 0.03446425870060921, 0.0234922394156456, 0.023007584735751152, 0.016505148261785507, 0.009820966981351376, 0.028809966519474983, 0.007754458114504814, 0.010265232995152473, 0.02291334606707096, 0.006529361475259066, 0.01417611911892891, -0.0035709550138562918, 0.006744762882590294, -0.05094248056411743, -0.0038368413224816322, 0.007680413778871298, -0.03373727947473526, -0.005348018370568752, 0.005694680381566286, -0.015199276618659496, 0.046365197747945786, 0.0011072988854721189, -0.01887456700205803, 0.005183101166039705, -0.0028995077591389418, 0.015010800212621689, 0.01711096614599228, 0.006926508154720068, 0.019332295283675194, -0.021082432940602303, 0.00031868499354459345, -0.014351132325828075, 0.015172351151704788, -0.018982267007231712, -0.007720801513642073, 0.012903902679681778, -0.0014581679133698344, 0.032337166368961334, -0.008582408539950848, -0.016545535996556282, 0.03029085136950016, -0.0022852765396237373, 0.034706585109233856, -0.00497443089261651, -0.0011316998861730099, -0.009215150028467178, 0.020597780123353004, 0.005624001380056143, 0.001654217136092484, -0.040576279163360596, -0.0005982443108223379, 0.020840106531977654, -0.019615009427070618, 0.0022667653393000364, 0.0037123123183846474, 0.003348822006955743, 0.008818003349006176, -0.017151353880763054, 0.02039583958685398, 0.010675842873752117, -0.031152458861470222, 0.0015052870148792863, -0.008292961865663528, -0.0018258652416989207, 0.012574069201946259, -0.011705731973052025, -0.018053347244858742, -0.004775857552886009, -0.01754176989197731], "32054d58-0f2d-4904-9802-5ba83f0494f7": [-0.002384871942922473, -0.021617261692881584, 0.0074544684030115604, 0.0025173649191856384, -0.005603054538369179, 0.02403002604842186, -0.014072139747440815, -0.003678421024233103, -0.016429118812084198, -0.014065166004002094, 0.033248741179704666, 0.014169765636324883, 0.0005164607428014278, 0.011282815597951412, -0.0008450780296698213, 0.007614854723215103, 0.03249562531709671, -0.001070403028279543, 0.040752023458480835, -0.016540691256523132, -0.0024563483893871307, -0.0007300183642655611, -0.004382725339382887, 0.03723747655749321, -0.012747210450470448, 0.028646357357501984, 0.010724950581789017, -0.02008313313126564, 0.016959089785814285, -0.027321428060531616, -0.012544984929263592, 0.004211879335343838, -0.0019420668249949813, 5.281056473904755e-06, -0.04077991843223572, 0.01331902202218771, 0.0036296078469604254, -0.027865346521139145, 0.017014876008033752, 0.009218716062605381, 0.0005238699377514422, -0.0056727877818048, -0.021324381232261658, 0.0009544718195684254, -0.013270208612084389, 0.016708049923181534, -0.008437705226242542, -0.022412218153476715, -0.01991577260196209, 0.017572741955518723, 0.029678408056497574, 0.006523531395941973, -0.023221122100949287, 0.005812253803014755, -0.011840680614113808, 0.00873755756765604, 0.01225210539996624, 0.01898135058581829, -0.013486381620168686, 0.02079441025853157, 0.014260418713092804, 0.0034221517853438854, 0.0025748948100954294, 0.000874714576639235, -0.042648762464523315, -0.00634571211412549, -0.014936829917132854, -0.004295559134334326, -0.012001066468656063, -0.01785167306661606, 0.04041730612516403, 0.013291128911077976, -0.005920340307056904, 0.01920449547469616, 0.015146029181778431, -0.040361519902944565, -0.03344399482011795, -0.007754320744425058, -0.022342484444379807, 0.011659374460577965, 0.0030037532560527325, -0.01840953901410103, 0.008186666294932365, 0.005739034153521061, 0.02665199153125286, -0.021087288856506348, 0.012468278408050537, 0.017642473801970482, -0.028813716024160385, -0.020041292533278465, 0.011512935161590576, 0.017586687579751015, 0.02504812926054001, 0.003549414686858654, -0.005522861611098051, 0.027558520436286926, -0.035535987466573715, 0.016498850658535957, -0.014769470319151878, -0.034197110682725906, -0.02315138839185238, 0.0023517487570643425, -0.006893116980791092, -0.004086359869688749, -0.01730775460600853, 0.01605255901813507, -0.005491481628268957, -0.003999193198978901, 0.011087562888860703, -0.008186666294932365, -0.020097078755497932, 0.017405381426215172, -0.016735943034291267, -0.04705589637160301, -0.01755879446864128, -0.017726153135299683, 0.02878582291305065, -0.03082202933728695, -0.030849922448396683, -0.022970082238316536, -0.0012194575974717736, 0.015118136070668697, 0.000315542274620384, -0.02450421079993248, 0.0008738429169170558, 0.0029253035318106413, -0.0065026115626096725, -0.02561994083225727, -0.0193021222949028, -0.018716363236308098, 0.03787901997566223, 0.01264261081814766, 0.014560271054506302, -0.017586687579751015, -0.005320635624229908, 0.022551683709025383, -0.04139356687664986, 0.008758476935327053, -0.012949436902999878, -0.02204960584640503, 0.021380169317126274, 0.010118273086845875, 0.004546598065644503, -0.016554638743400574, -0.021798567846417427, 0.0033611354883760214, 0.01991577260196209, 0.009204769507050514, -0.021129129454493523, 0.013026143424212933, 0.006443338468670845, 0.0016735943499952555, 0.019260281696915627, -0.015689946711063385, 0.007838000543415546, -0.01612229272723198, 0.019399749115109444, -0.0165964774787426, 0.005358988884836435, -0.027084335684776306, 0.0024912150111049414, 0.022356431931257248, 0.017656421288847923, -0.009790527634322643, 0.008235478773713112, 0.028088493272662163, 0.0036540143191814423, -0.02030627802014351, -0.020208653062582016, -0.0011322911595925689, 0.029511047527194023, 0.02965051494538784, -0.03651225194334984, 0.0069175236858427525, -0.017600635066628456, -0.015187868848443031, 0.03637278452515602, 0.03801848739385605, -0.02428106591105461, 0.015369175001978874, -0.03271877020597458, -0.012830890715122223, 0.010348391719162464, 0.01154082827270031, -0.01888372376561165, -0.002140806056559086, -0.014323178678750992, 5.654918641084805e-05, 0.025034183636307716, 0.0008019306696951389, -0.002592328004539013, 0.008249425329267979, -0.010550618171691895, -0.033165063709020615, -0.6292715072631836, -0.02299797721207142, -0.018200339749455452, -0.019260281696915627, -0.010857443325221539, 0.003002010053023696, 0.019176602363586426, -0.007363815326243639, -0.009658033959567547, 0.0034483016934245825, -0.02934368886053562, 0.02457394450902939, -0.014936829917132854, -0.014420805498957634, -0.025424689054489136, -0.014448698610067368, 0.005627461243420839, -0.032858237624168396, 0.01785167306661606, -0.02172883413732052, -0.001722407527267933, 0.0020815329626202583, -0.002236689208075404, 0.0031170696020126343, -0.015076296404004097, -0.007677614223212004, 0.02403002604842186, -0.0023308289237320423, -0.007321975659579039, 0.035842813551425934, -0.031184641644358635, 0.04900842159986496, 0.015006562694907188, 0.028437158092856407, 0.05310872942209244, -0.004483838099986315, -0.03121253475546837, 0.014797363430261612, 0.002545258030295372, 0.018618738278746605, -0.02577335387468338, -0.016150185838341713, 0.028674250468611717, 0.015006562694907188, 0.01769826002418995, 0.004647711291909218, 0.0078101069666445255, -0.008821236900985241, -0.002960170153528452, 0.0018862803699448705, 0.014685790985822678, -0.00743354856967926, -0.016317544505000114, -0.0030909196939319372, 0.0002020080719375983, 0.010341418907046318, 0.027168015018105507, -0.009790527634322643, 0.008089039474725723, 0.004306018818169832, 0.02206355333328247, 0.023374535143375397, -0.01240551844239235, -0.01047391165047884, -0.012482224963605404, 0.01652674376964569, -0.005491481628268957, 0.010808630846440792, 0.012907597236335278, -0.009825393557548523, 0.028088493272662163, 0.020585210993885994, -0.0004615459474734962, -0.01999945379793644, 0.02117096818983555, 0.004930130206048489, 0.035759132355451584, -0.04167250171303749, 0.010697057470679283, 0.016498850658535957, -0.0020170300267636776, -0.023890560492873192, -0.030180485919117928, -0.014713684096932411, 0.0200691856443882, -0.022119339555501938, -0.006645564455538988, 0.02649857848882675, -0.009183849208056927, 0.002737024100497365, 0.0016047329409047961, 0.0008703562780283391, 0.0075730145908892155, 0.005003349855542183, 0.03464340418577194, 0.010996909812092781, -0.002255865838378668, 0.005589107982814312, 0.009295422583818436, -0.011980146169662476, -0.00896767619997263, -0.012077772989869118, 0.007782213855534792, -0.01506234984844923, -0.006446824874728918, -0.018562952056527138, -0.03082202933728695, -0.023276908323168755, 0.05461496487259865, -0.026916977018117905, -0.021645154803991318, -0.008570197969675064, -0.015132082626223564, -0.004414105322211981, 0.02995733916759491, -0.016261758282780647, 0.004121226258575916, 0.006363145541399717, 0.01661042496562004, -0.012579850852489471, 0.016192026436328888, -0.0008978136465884745, 0.016261758282780647, -0.00794957298785448, 0.016721997410058975, 0.03255141153931618, 0.010411151684820652, 0.005069596227258444, -0.01046693790704012, -0.013061009347438812, 0.004675604403018951, -0.008870050311088562, 0.012816944159567356, 0.0031240428797900677, 0.009295422583818436, -0.027209855616092682, 0.012579850852489471, 0.0007618340896442533, 0.02426711842417717, -0.035284947603940964, -0.019887879490852356, -0.009183849208056927, 0.011673321016132832, 0.01612229272723198, -0.011296762153506279, -0.021408062428236008, -0.012977330014109612, -0.004731390625238419, -0.02973419427871704, 0.018005086109042168, -0.004971969872713089, 0.004539624787867069, 0.003633094485849142, 0.011129402555525303, 0.023569786921143532, -0.013918726705014706, -0.011359522119164467, 0.004239772446453571, 0.007496308069676161, -0.01818639226257801, 0.004483838099986315, 0.01371650118380785, -0.019190549850463867, 0.02341637574136257, 0.027697987854480743, -0.00047592842020094395, -0.02939947508275509, 0.01873031072318554, -0.010745870880782604, -0.03257930278778076, -0.00047985088895075023, -0.008897943422198296, -0.0017459425143897533, 0.03785112500190735, -0.02900896966457367, 0.007116262800991535, -0.010397205129265785, -0.011840680614113808, -0.006826870609074831, 0.020055240020155907, -0.014267392456531525, 0.021603314206004143, -0.00936515536159277, -0.013395728543400764, 0.01898135058581829, 0.00877939723432064, -0.004832503851503134, -0.010641271248459816, 0.009316341951489449, 0.03059888444840908, 0.013047062791883945, 0.009009516797959805, 0.0034639916848391294, 0.0025557181797921658, 0.005013810005038977, 0.007370788604021072, 0.007740374188870192, 0.02474130317568779, 0.00699771661311388, 0.006572344806045294, 0.01707066223025322, 0.015034456737339497, 0.034503936767578125, 0.006907063536345959, 0.001723279245197773, -0.04167250171303749, -6.477551505668089e-05, 0.007984439842402935, 0.05034729838371277, -0.029148435220122337, -0.00810298603028059, -0.018772151321172714, -0.0058819870464503765, -0.014769470319151878, 0.014490538276731968, 0.024225279688835144, 0.020989663898944855, -0.015606267377734184, -0.01205685269087553, -0.005104463081806898, 0.019190549850463867, -0.01905108243227005, -0.005104463081806898, -0.0003682779206428677, -0.0036714477464556694, -0.0036679611075669527, 0.00632479228079319, 0.03520127013325691, 0.015090242959558964, -0.014009379781782627, 0.024783143773674965, -0.014643951319158077, -0.0011523395078256726, 0.016317544505000114, 0.024169491603970528, 0.0033506753388792276, 0.030013125389814377, -0.019232388585805893, 0.050709910690784454, -0.03235615789890289, -0.00999972689896822, 0.000905658642295748, 0.008549277670681477, -0.026763563975691795, -0.03444815054535866, -0.004766257479786873, 0.021993819624185562, 0.022119339555501938, 0.038548458367586136, 0.02309560216963291, -0.009037409909069538, -0.001811317284591496, 0.0007823182386346161, 0.010536671616137028, 0.005728574004024267, -0.03232826665043831, -0.0018392105121165514, 0.023737147450447083, 0.009455808438360691, 0.031240427866578102, 0.024713410064578056, -0.007210402749478817, 0.022635364904999733, 0.023737147450447083, 0.038938961923122406, 0.014936829917132854, 0.00047069843276403844, 0.01952526718378067, -0.014162792824208736, -0.02782350592315197, -0.030543098226189613, -0.018297964707016945, 0.002048409776762128, 0.006230652332305908, 0.011234002187848091, 0.004316478967666626, 0.005983099807053804, 0.019316067919135094, 0.017600635066628456, -0.001288319006562233, -0.029315795749425888, -0.03698643669486046, 0.015048403292894363, 0.005990073084831238, -0.0033576488494873047, -0.013500328175723553, -0.009943939745426178, -0.008005360141396523, -0.024601837620139122, 0.03813005983829498, -0.020599158480763435, 0.02182646095752716, 0.013897806406021118, -0.0193021222949028, -0.004424565006047487, 0.0014765984378755093, 0.020362064242362976, -0.029594726860523224, 0.03377871215343475, -0.007405654992908239, -0.007796160411089659, -0.005135842598974705, -0.027572467923164368, 0.01482525747269392, 0.011059669777750969, 0.009692900814116001, -0.013897806406021118, -0.019734466448426247, 0.013458488509058952, -0.012628664262592793, -0.0037795340176671743, -0.037990592420101166, -0.0009126319200731814, -0.0008873536717146635, 0.0014059935929253697, 0.002604531357064843, -0.004068926442414522, 0.024002132937312126, 0.029036862775683403, -0.006610698066651821, -0.017656421288847923, -0.01288667693734169, -0.020975716412067413, -0.0009928250219672918, 0.10063880681991577, 0.028813716024160385, -0.020431797951459885, 0.014365018345415592, 0.010934149846434593, -0.0009753917111083865, -0.011247948743402958, -0.011854627169668674, 0.024685516953468323, -0.00741262873634696, 0.006819897331297398, -0.01628965139389038, 0.030849922448396683, -0.012105666100978851, 0.007914707064628601, -0.013005223125219345, -0.017251968383789062, 0.011094536632299423, -0.007405654992908239, 0.009190822951495647, 0.009142009541392326, -0.00011505961447255686, 0.004856910556554794, 0.018521111458539963, -0.04117042198777199, -0.018953455612063408, 0.028981076553463936, -0.012600771151483059, 0.021310435608029366, -0.015187868848443031, -0.01510418951511383, 0.024559997022151947, 0.028423210605978966, 0.008075092919170856, -0.014127925969660282, 0.006398011930286884, 0.012335785664618015, 0.01754484884440899, -0.003891106927767396, 0.00033624429488554597, 0.02687513642013073, 0.008584144525229931, 0.012572878040373325, -0.01287970319390297, -0.007043043151497841, -0.001448705093935132, -0.010996909812092781, -0.005902906879782677, -0.02490866370499134, -0.014086086302995682, 0.03455972298979759, 0.003204236039891839, -0.022161178290843964, -0.009288448840379715, 0.02711222879588604, -0.0015646364772692323, -0.006216705776751041, 0.017516953870654106, -0.009204769507050514, 0.030570991337299347, 0.0015811980701982975, 0.001247350824996829, 0.004985916428267956, 0.0006855635438114405, -0.012426438741385937, -0.027530627325177193, -0.022788777947425842, 0.0005940388655290008, -0.022649310529232025, 0.011798840947449207, -0.0056937076151371, 0.005808767396956682, -0.021129129454493523, 0.003493628231808543, 0.01201501302421093, 0.005700680892914534, 0.0192184429615736, -0.022161178290843964, -0.0014617800479754806, 0.004891776945441961, -0.01110848318785429, -0.03146357461810112, 0.004400158766657114, -0.025271276012063026, -0.009874206967651844, 0.005759953986853361, 0.0020919928792864084, 0.007970493286848068, -0.03280245140194893, 0.021296488121151924, -0.013123769313097, 0.008821236900985241, -0.0028590571600943804, 0.005404315423220396, 0.0077752405777573586, 0.00011571335926419124, 0.0007801390602253377, -0.006551424507051706, 0.0007361200405284762, -0.015480748377740383, 0.018451377749443054, -0.03341609984636307, 0.019023189321160316, -0.025968605652451515, -0.0033053490333259106, -0.0214220080524683, -0.005780873820185661, 0.02418343909084797, -0.015550481155514717, -0.024643678218126297, -0.0008646904607303441, -0.010306552052497864, 0.0019961099606007338, -0.012719317339360714, 0.014225552789866924, 0.003362878691405058, 0.021449901163578033, 0.012544984929263592, 0.0025034183636307716, 0.0132074486464262, -0.011882520280778408, -0.018116658553481102, -0.0022419190499931574, 0.00632130540907383, -0.025103915482759476, 0.0015445881290361285, 0.0100345928221941, -0.023667413741350174, 0.02197987213730812, -0.00041730902739800513, -0.003915513399988413, 0.011903440579771996, 0.010090379975736141, -0.02071073092520237, -0.019162656739354134, 0.0026934409979730844, -0.022900350391864777, 0.010606404393911362, -0.0009082736214622855, 0.016540691256523132, -0.014755523763597012, -0.015159975737333298, -0.024546051397919655, -0.024838929995894432, -0.012830890715122223, -0.026986708864569664, -0.013981486670672894, 0.01628965139389038, 0.01818639226257801, -0.004633764270693064, -0.003352418774738908, -0.019343961030244827, -0.02038995921611786, 0.0024441450368613005, -0.020111026242375374, -0.03464340418577194, 0.004508244805037975, -0.00794957298785448, 0.02773982658982277, -0.0031118395272642374, 0.028869504109025, -0.01603861339390278, 0.007475388236343861, -0.0020972229540348053, -0.0026638044510036707, 0.010181032121181488, -0.0130819296464324, -0.024392638355493546, -0.03779533877968788, -0.01571783982217312, 0.03224458545446396, 0.016735943034291267, 0.012426438741385937, -0.012538011185824871, -0.010153139010071754, 0.056093305349349976, -0.014685790985822678, -0.0033245254307985306, -0.010927177034318447, -0.023737147450447083, -0.013890833593904972, -0.01075284369289875, -0.01627570576965809, 0.008319159038364887, -0.015159975737333298, 0.010857443325221539, 0.06052833050489426, 0.013033116236329079, -0.0065618846565485, -0.014936829917132854, 0.01581546664237976, -0.012558931484818459, -0.010920203290879726, 0.01249617151916027, 0.027725880965590477, 0.00142865686211735, 0.012942463159561157, 0.00033668012474663556, 0.004710470791906118, -0.0048255305737257, 0.01004156656563282, -0.007921679876744747, -0.011826734058558941, -0.02609412558376789, -0.02892529033124447, 0.013855966739356518, -0.020334171131253242, -0.020278384909033775, 0.028283745050430298, -0.02522943541407585, -0.013883859850466251, 0.0013066239189356565, -0.0011453661136329174, -0.03919000178575516, -0.023346642032265663, -0.004870857112109661, -0.003960839938372374, 0.004668631125241518, -0.008451651781797409, -0.011443201452493668, 0.010801657103002071, -0.008381919004023075, 0.057683221995830536, 0.010153139010071754, 0.014560271054506302, -0.002111169509589672, -0.013479407876729965, 0.008514411747455597, -0.0020100565161556005, -0.007112776394933462, -0.013200475834310055, 0.017823779955506325, 0.0201528649777174, -0.010982963256537914, 0.017879566177725792, -0.029371581971645355, 0.008367971517145634, -0.05531229451298714, -0.05852001905441284, 0.0011000396916642785, 0.006847790442407131, 0.0019089436391368508, -0.007321975659579039, -0.006474718451499939, -0.034364473074674606, 0.006704837549477816, -0.003425638424232602, 0.012747210450470448, -0.013235342688858509, -0.009518568404018879, -0.03193775936961174, -0.003233872586861253, 0.018911616876721382, 0.025494420900940895, 0.04094727709889412, -0.014162792824208736, -0.032997701317071915, -0.013855966739356518, -0.010766790248453617, -0.007161589339375496, 0.00018130606622435153, 0.022468004375696182, -0.015913093462586403, 0.003866700455546379, 0.010676137171685696, -0.004923156928271055, -0.010174059309065342, -0.00023360588238574564, -0.017921406775712967, 0.02323506958782673, 0.022719044238328934, 0.023918453603982925, 0.011617534793913364, 0.025327062234282494, 0.019316067919135094, 0.015132082626223564, 0.0017686057835817337, 0.00019361831073183566, -0.01644306443631649, 0.0005256132571958005, 0.007921679876744747, 0.011770946905016899, 0.018451377749443054, -0.02110123634338379, -0.02324901521205902, -0.01133860182017088, 0.002198335947468877, -0.0002935327647719532, -0.0009701617527753115, -0.05455917865037918, -0.024225279688835144, 0.002886950271204114, -0.027168015018105507, 0.010055513121187687, -5.3770756494486704e-05, 0.020961768925189972, -0.016415171325206757, 0.02062705159187317, -0.025438634678721428, 0.004183985758572817, -0.012035933323204517, 0.00019775870896410197, -0.030710456892848015, 0.0065339915454387665, 0.005969153251498938, -0.014978669583797455, 0.016401225700974464, -0.015508641488850117, -0.021045450121164322, 0.013353888876736164, 0.010759817436337471, 0.021408062428236008, 0.005059136543422937, 0.015397068113088608, 0.009985780343413353, 0.0038980802055448294, 0.011268869042396545, -0.020431797951459885, -0.023123495280742645, 0.02260747179389, 0.009295422583818436, -0.0009126319200731814, 0.02965051494538784, -0.012782077305018902, 0.025675727054476738, 0.012747210450470448, 0.014894990250468254, 0.011743053793907166, -0.03628910332918167, 0.004891776945441961, -0.019385801628232002, 0.014490538276731968, 0.0038178872782737017, -0.0008041097898967564, -0.014309232123196125, -0.0310730691999197, -0.008625984191894531, 0.0072731622494757175, 0.021547527983784676, -0.0045291646383702755, 0.014127925969660282, 0.00545312836766243, -0.009671980515122414, -0.014406858012080193, -0.009665007703006268, -0.003814400639384985, 0.004316478967666626, -0.015187868848443031, -0.04892474412918091, -0.008214559406042099, -0.000745272496715188, 0.02663804404437542, 0.008786370977759361, -2.994641590703395e-06, -0.021226756274700165, -0.01684751734137535, -0.04167250171303749, -0.008409812115132809, -0.018800044432282448, 0.029538940638303757, 0.045744914561510086, 0.03548020124435425, 0.0065200449898839, 0.014839204028248787, -0.0227748304605484, 0.0022070526611059904, 0.002166955964639783, -0.0048046107403934, 0.0036400677636265755, 0.014853150583803654, -0.011352548375725746, -0.0054112887009978294, -0.02688908390700817, 0.005167222581803799, 0.0015611497219651937, 0.0035773080307990313, -0.0029584267176687717, 0.014643951319158077, -0.008521384559571743, 0.01564810797572136, -0.004103792831301689, 0.0036052013747394085, 0.027237748727202415, 0.015759680420160294, -0.004898750223219395, -0.02323506958782673, -0.009727767668664455, -0.00417352607473731, -0.0020135431550443172, -4.331079253461212e-06, -0.017572741955518723, 0.015201815403997898, -0.03235615789890289, 0.010766790248453617, -0.021519634872674942, -0.020041292533278465, -0.01801903359591961, -0.02679145708680153, 0.054893895983695984, 0.0012185858795419335, -0.01414884626865387, 0.04072412848472595, -0.00395386666059494, -0.021798567846417427, -0.005247415974736214, 0.005983099807053804, 0.014853150583803654, -0.03291402384638786, 0.008577171713113785, -0.0264148972928524, 0.01356308814138174, -0.0004068490525241941, 2.0919929738738574e-05, -0.009497648105025291, 0.017991140484809875, -0.005202089436352253, -0.00873755756765604, -0.01173608098179102, 0.02585703320801258, 0.01984604075551033, 0.0014565500896424055, 0.0068024639040231705, 0.024057919159531593, -0.00853533111512661, 0.00031183770624920726, -0.005864553619176149, -0.038213737308979034, 0.006398011930286884, 6.237843626877293e-05, 0.0065026115626096725, -0.001614321256056428, -0.02687513642013073, 0.010738897137343884, -0.0017668624641373754, -0.05093305557966232, 0.012558931484818459, 0.19402538239955902, -0.012279998511075974, -0.012677477672696114, 0.014107005670666695, -0.004333911929279566, 0.0023064222186803818, 0.01730775460600853, -0.001340618822723627, -0.024476317688822746, -0.015424961224198341, -0.0022732990328222513, 0.020445745438337326, -0.005822713952511549, 0.006593264639377594, 0.0012395058292895555, 0.008026279509067535, -0.029985232278704643, -0.00834705214947462, -0.012363678775727749, -0.05773900821805, 0.014518431387841702, -0.010090379975736141, 0.011547801084816456, -0.008402838371694088, 0.00741262873634696, -0.0013667687308043242, -0.013102849014103413, -0.0006088571390137076, 0.01827007159590721, -0.0009954399429261684, -0.025076022371649742, -0.012558931484818459, 0.006136512849479914, -0.017210129648447037, -0.02252379059791565, 0.009665007703006268, 0.006554911378771067, 0.0025278248358517885, 0.024141598492860794, -0.0200691856443882, -0.0011654144618660212, -0.0083400784060359, 0.01715434342622757, 0.004229312296956778, -0.007440521847456694, 0.033471886068582535, -0.005303202196955681, -0.02267720364034176, -0.02465762384235859, 0.024071866646409035, -0.02594071254134178, 0.015676001086831093, 0.05603751912713051, 0.021993819624185562, 0.005285768769681454, -0.006091186311095953, -0.017809834331274033, 0.013102849014103413, -0.02016681246459484, 0.01691724918782711, 0.0017633757088333368, 0.013744394294917583, -0.014253445900976658, 0.029371581971645355, -0.029929446056485176, 0.017991140484809875, 0.0010939380154013634, -0.0024807550944387913, 0.010139192454516888, -0.030766243115067482, -0.005442668218165636, -0.020055240020155907, -0.003352418774738908, 0.001215970958583057, -0.015522588044404984, -0.0009527285001240671, 0.018688470125198364, -0.013702553696930408, 0.0005221265600994229, 0.00033668012474663556, 0.01221723947674036, -0.01739143580198288, 0.017642473801970482, -0.004396671894937754, -0.006373605225235224, -0.035619668662548065, 0.004508244805037975, -0.012300918810069561, -0.01889766938984394, 0.024838929995894432, -0.019483428448438644, -0.023039815947413445, -0.0024023053701967, -0.01173608098179102, 0.009769607335329056, -0.004145632963627577, 0.020975716412067413, 0.0062690055929124355, 0.002153009409084916, 0.0012970356037840247, -0.007482361514121294, -0.01754484884440899, 0.02126859501004219, 0.007384735159575939, -0.026456737890839577, 0.006952390074729919, 0.0030002666171640158, 0.0006720527308061719, 0.005467074923217297, -0.011987119913101196, 0.01723802275955677, -0.013416648842394352, -0.005404315423220396, -0.016484905034303665, 0.011826734058558941, 0.019190549850463867, -0.03163093328475952, -0.009093196131289005, 0.0019124302780255675, 0.016345439478754997, 0.019023189321160316, -0.02529916912317276, 0.011164269410073757, 0.003394258674234152, -0.0077752405777573586, -0.011666347272694111, -0.030096806585788727, 0.015034456737339497, -0.012621691450476646, -0.017251968383789062, 0.0248110368847847, -0.0404730923473835, -0.007405654992908239, 0.008437705226242542, -0.028492944315075874, 0.019330015406012535, -0.013549141585826874, -0.03073835000395775, 0.029064755886793137, -0.010724950581789017, 0.009762633591890335, -0.0017468141159042716, 0.005941260140389204, 0.01905108243227005, -0.0064154453575611115, -0.0032373592257499695, 0.005735547281801701, -0.006485178135335445, -0.00762880127876997, -0.02467157132923603, -0.027084335684776306, -0.004253719002008438, -0.000569632276892662, 0.0011758743785321712, 0.005247415974736214, 0.009274502284824848, 4.513583917287178e-05, -0.004870857112109661, -0.0067710839211940765, 0.01898135058581829, -0.03570334613323212, 0.016554638743400574, 0.010062485933303833, -0.007531174924224615, -0.02568967454135418, -0.014964723028242588, -0.17862831056118011, 0.010899283923208714, -0.012175398878753185, -0.012356705032289028, 0.028255851939320564, 0.020292332395911217, 0.022230911999940872, 0.005969153251498938, 0.0015376148512586951, -0.01983209326863289, 0.02861846424639225, 0.02238432504236698, -0.04577280580997467, -0.026275431737303734, -0.005013810005038977, -0.0031345027964562178, -0.004114252980798483, 0.023458214476704597, 0.035368628799915314, 0.019650787115097046, 0.004093333147466183, 0.0004619817773345858, 0.017405381426215172, 0.0013135973131284118, -0.014588164165616035, 0.008584144525229931, -0.00830521248281002, 0.032690878957509995, 0.010257738642394543, -0.03012469969689846, -0.01793535239994526, 0.023290855810046196, -0.008165745995938778, -0.017098555341362953, 0.01352124847471714, 0.006593264639377594, -0.009658033959567547, -0.010285632684826851, -0.008918863721191883, -0.002913100179284811, 0.026665937155485153, -0.0035354681313037872, 0.01355611439794302, 0.018130606040358543, 0.00806114636361599, 0.040835704654455185, 0.00033733388409018517, -0.011896466836333275, 0.01205685269087553, -0.02521548978984356, 0.017656421288847923, 0.00988815352320671, 0.02900896966457367, 0.005739034153521061, 0.025396794080734253, 0.01149898860603571, 0.016819624230265617, 0.0007631416083313525, -0.0033140655141323805, -0.0214220080524683, -0.0009283219114877284, 0.0018915103282779455, 0.0025644346605986357, -0.010585484094917774, 0.011610561050474644, -0.002156496047973633, -0.008911889977753162, 0.026052286848425865, -0.034113433212041855, 0.017809834331274033, -0.002991549903526902, 0.021686993539333344, 0.028255851939320564, -0.006282952148467302, -0.0067675975151360035, -0.004271152429282665, -0.019790254533290863, 0.020111026242375374, -0.0038213739171624184, -0.008625984191894531, -0.03787901997566223, 0.035452306270599365, -0.0045256782323122025, -0.011038749478757381, -0.002886950271204114, 0.004706984385848045, -0.011917387135326862, -0.03224458545446396, -0.01835375279188156, -0.0031798293348401785, 0.005365962162613869, -0.02316533587872982, -0.004776717163622379, -0.006927983369678259, 0.010306552052497864, 0.02191014029085636, 0.0060005332343280315, -0.006063293199986219, 0.004093333147466183, 0.005299715790897608, 0.009546461515128613, -0.01414884626865387, -0.031100962311029434, 0.019622894003987312, 0.032858237624168396, 0.004393185488879681, -0.008765450678765774, 0.01510418951511383, 0.023667413741350174, 0.018200339749455452, -0.0016779527068138123, 0.027530627325177193, 0.020850196480751038, -0.0027980406302958727, 0.016959089785814285, 0.019190549850463867, -0.0012909340439364314, -0.014197658747434616, 0.014016353525221348, -0.023179281502962112, 0.06978888809680939, -0.0113455755636096, -0.0040235999040305614, 0.007203429006040096, -0.0078101069666445255, -0.036233317106962204, -0.11982935667037964, -0.002126859501004219, 0.0021303461398929358, 0.017405381426215172, -0.00830521248281002, 0.013835047371685505, -0.0036958542186766863, 0.011596614494919777, -0.00415260624140501, 0.02126859501004219, -0.011289788410067558, -0.03344399482011795, 0.008116932585835457, -0.0025156214833259583, 0.00810995977371931, -0.021408062428236008, -0.0024563483893871307, -0.020180759951472282, 0.017740100622177124, 0.041533034294843674, 0.01612229272723198, -0.02093387581408024, 0.007998386397957802, -0.03383449837565422, 0.023918453603982925, 0.0012342758709564805, -0.014044246636331081, 0.0070395562797784805, 0.04688853770494461, 0.020292332395911217, -0.01482525747269392, 0.0021251162979751825, 0.009720793925225735, -0.0007692432845942676, 0.004414105322211981, -0.003751640673726797, -0.04270454868674278, -0.010697057470679283, 0.0130400899797678, -0.028730036690831184, 0.006809437181800604, -0.010564564727246761, 0.012796023860573769, -0.00656537152826786, 0.008702690713107586, 0.013437568210065365, -0.02702854946255684, 0.013639794662594795, 0.012105666100978851, -0.022021712735295296, -0.014462645165622234, 0.004239772446453571, -0.0358985997736454, -0.00767064094543457, 0.024057919159531593, -0.007398681715130806, 0.029064755886793137, 0.003333242144435644, -0.008360998705029488, -0.01913476176559925, -0.010745870880782604, 0.017656421288847923, -0.00767064094543457, 0.016010720282793045, 0.00038266039337031543, 0.007126722950488329, -0.0054147751070559025, -0.02370925433933735, 0.026052286848425865, 0.0011880777310580015, -0.011401361785829067, 0.005125382915139198, -0.025717567652463913, 0.01959500089287758, -0.017642473801970482, 0.008096013218164444, -0.03073835000395775, -0.004082872997969389, 0.005568188149482012, 0.013688607141375542, -0.0018932536477223039, -0.029455261304974556, -0.0025905845686793327, 0.002726564183831215, 0.013332968577742577, 0.01336086168885231, 0.015927039086818695, -0.02687513642013073, -0.006021453067660332, -0.027572467923164368, 0.008123906329274178, 0.011275841854512691, -0.016247812658548355, -0.023500055074691772, 0.006851276848465204, 0.03960840031504631, 0.03168671950697899, -0.007879840210080147, -0.014392911456525326, -0.003444815054535866, -0.014120953157544136, 0.013019169680774212, -0.06956574320793152, 0.022412218153476715, -0.0017372258007526398, 0.012544984929263592, -0.0012804740108549595, -0.009783553890883923, 0.012419464997947216, -0.015703894197940826, -0.010299579240381718, 0.0214220080524683, -0.014351071789860725, 0.031491469591856, -0.019330015406012535, -0.017349595203995705, -0.02631727233529091, 0.0059168534353375435, -0.004623304586857557, -0.01835375279188156, 0.01676383800804615, -0.00391202699393034, 0.0034953716676682234, -0.001541973208077252, 0.02663804404437542, 0.0004136044590268284, -0.010397205129265785, -0.0029113569762557745, 0.006488665007054806, 0.014072139747440815, 0.00675713736563921, -0.025006290525197983, 0.019957613199949265, -0.029036862775683403, -0.0005142816225998104, 0.009337262250483036, 0.013346915133297443, 0.020376011729240417, -0.03520127013325691, 0.0063352519646286964, 0.003399488516151905, 0.04172828793525696, -0.004686064086854458, -0.010174059309065342, 0.005801794119179249, -0.014337125234305859, 0.010885336436331272, 0.019343961030244827, 0.0007483233348466456, 0.0002016812068177387, 0.018772151321172714, -0.010773763991892338, 0.011889493092894554, 0.03193775936961174, 0.011652400717139244, -0.04214668646454811, 0.0005269207176752388, -0.028325585648417473, 0.03495023027062416, -0.002710874192416668, 0.0013397472212091088, -0.02854873053729534, 0.0005809639114886522, -0.0071546160615980625, 0.007761294022202492, -0.003038619877770543, 0.024002132937312126, -0.023848719894886017, -0.0006258545909076929, -0.014950776472687721, -0.022175125777721405, -0.022970082238316536, 0.015006562694907188, 0.0022889890242367983, 0.00031379895517602563, 0.005121896043419838, 0.0016901560593396425, 0.02718196250498295, 0.0065339915454387665, 0.015620213933289051, -0.03043152391910553, 0.0026516010984778404, 0.004044519737362862, -0.013723473995923996, -0.04195143282413483, 0.004086359869688749, 0.020892037078738213, -0.019413694739341736, 8.482377597829327e-05, 0.017600635066628456, -0.002006569877266884, 0.011073616333305836, 0.007440521847456694, -0.004689550958573818, -0.008312185294926167, -0.006527018267661333, -0.002252379199489951, 0.01661042496562004, -0.02165910042822361, -0.004978943150490522, 0.0333603136241436, 0.03266298398375511, -0.02546652778983116, 0.0036819076631218195, 0.00024210460833273828, -0.012147505767643452, -0.0077752405777573586, -0.0006088571390137076, -0.019078975543379784, -0.013967540115118027, 0.005139329470694065, 0.011763974092900753, 0.0178656205534935, 0.003772560739889741, 0.031909868121147156, 0.02409975975751877, -0.005571674555540085, -0.0030874330550432205, 0.00790773332118988, -0.002576638013124466, -0.005125382915139198, 0.030319951474666595, 0.007130209356546402, 0.03073835000395775, 0.01284483727067709, 0.013890833593904972, 0.01898135058581829, 0.00984631385654211, 0.011694240383803844, 0.01403727289289236, 0.011966199614107609, 0.0023517487570643425, 0.00944883469492197, -0.004187472630292177, -0.05773900821805, 0.005641407798975706, -0.001837467192672193, -0.028953183442354202, 0.003183315973728895, 0.004971969872713089, -0.021087288856506348, 0.0331929549574852, 0.003525008214637637, -0.02252379059791565, 0.00456403149291873, 0.010250765830278397, 0.008751504123210907, 0.01043207198381424, -0.0036958542186766863, 0.022565631195902824, -0.018911616876721382, -0.0017598890699446201, -0.013932673260569572, 0.03280245140194893, -0.00482204370200634, -0.0009204769157804549, 0.013842020183801651, 0.010167085565626621, 0.035731241106987, -0.002996779978275299, -0.029204221442341805, 0.018674524500966072, 0.0071197496727108955, 0.03430868685245514, 0.0041770124807953835, 0.000864254601765424, -0.0004754925612360239, 0.02221696637570858, 2.986129402415827e-06, 0.015564427711069584, -0.04697221517562866, 0.004445485305041075, 0.019176602363586426, -0.017265915870666504, -0.008012332953512669, 0.0065339915454387665, 0.0007317617419175804, 0.007224349305033684, -0.017600635066628456, 0.02499234303832054, 0.00305430986918509, -0.01698698289692402, 0.015355228446424007, -0.019901826977729797, -0.012035933323204517, 0.028423210605978966, -0.0178656205534935, -0.013298101723194122, 0.003493628231808543, -0.020780464634299278], "7943ca32-20c1-4d02-8565-47383c9d26d1": [0.001531439134851098, -0.021862145513296127, -0.013211214914917946, 0.010005402378737926, -0.006956137251108885, 0.028396286070346832, -0.0004015773884020746, -0.00952895451337099, -0.02782454900443554, -0.016512317582964897, 0.025877919048070908, 0.013898661360144615, 0.0007640179828740656, -0.001371488906443119, -0.0031802887097001076, 0.0058807265013456345, 0.03582886978983879, 0.0002809765574056655, 0.04252636432647705, -0.026218239217996597, -0.011250972747802734, -0.00113241421058774, -0.003525713225826621, 0.01638980209827423, -0.009175022132694721, 0.026340752840042114, 0.01839088276028633, -0.015668325126171112, 0.005149038974195719, -0.024911411106586456, -0.015464132651686668, 0.0016309827333316207, 0.003241546219214797, -0.008290190249681473, -0.03621002659201622, 0.019275713711977005, 0.0028229528106749058, -0.023618195205926895, 0.018554236739873886, -0.012748380191624165, 0.006734929047524929, 1.0163066690438427e-05, -0.009746759198606014, -0.009188635274767876, -0.013544728979468346, 0.021902984008193016, -6.365044100675732e-05, -0.009828436188399792, -0.03283405676484108, 0.009413246065378189, 0.021276794373989105, 0.008446738123893738, -0.021902984008193016, 0.013347343541681767, -0.013640018180012703, -0.014484011568129063, 0.01707044243812561, 0.02610933594405651, -0.013408600352704525, 0.023522906005382538, 0.013177183456718922, 0.00020195853721816093, 0.00802474096417427, 0.00528176361694932, -0.031990062445402145, -0.006857444066554308, -0.012496544048190117, -0.012163029983639717, -0.018322817981243134, -0.0191123615950346, 0.04026664048433304, 0.012666703201830387, -0.009175022132694721, 0.021698791533708572, 0.02542869746685028, -0.012292351573705673, -0.021644340828061104, -0.01707044243812561, -0.018200304359197617, 0.004342481028288603, -0.0029318551532924175, -0.028287382796406746, 0.0015246327966451645, 0.016811799257993698, 0.009637856855988503, -0.018635913729667664, 0.01709766685962677, 0.02345484122633934, -0.0190442968159914, -0.021644340828061104, 0.008045160211622715, 0.027538679540157318, 0.0241490937769413, -0.002351609990000725, -0.003379375673830509, 0.028614090755581856, -0.015967804938554764, 0.013816984370350838, -0.010747299529612064, -0.021290408447384834, -0.029376406222581863, -0.0003894534893333912, 0.003818388329818845, -0.006374190095812082, -0.020201385021209717, 0.015627486631274223, -0.009937338531017303, -0.007997515611350536, 0.012864088639616966, -0.013109119608998299, -0.018581461161375046, 0.01743798702955246, -0.024516640231013298, -0.02877744287252426, -0.024053804576396942, -0.02747061476111412, 0.01472904160618782, -0.013857822865247726, -0.023672645911574364, -0.013190795667469501, 0.002375432290136814, 0.02246110700070858, -0.00835825502872467, -0.019194036722183228, 0.009331569075584412, 0.01056352723389864, -0.004298239480704069, -0.030084270983934402, -0.0022869491949677467, -0.01036614179611206, 0.04059334844350815, 0.021916596218943596, 0.008331028744578362, 0.007929451763629913, -0.0058330814354121685, 0.014211755245923996, -0.02820570580661297, 0.005111603531986475, -0.014946846291422844, -0.02885911986231804, 0.01973854936659336, 0.017301859334111214, 0.0037979690823704004, -0.01675734855234623, -0.022706137970089912, 0.018840104341506958, 0.020705057308077812, 0.002324384404346347, -0.02379516139626503, 0.006990169174969196, 0.022896716371178627, -0.01708405464887619, 0.02485695853829384, -0.012101772241294384, 0.01508297398686409, -0.032371219247579575, 0.01975216157734394, -0.016879862174391747, 0.01508297398686409, 0.0024230771232396364, 0.013476665131747723, 0.021290408447384834, 0.015518583357334137, -0.005159248597919941, 0.012591833248734474, 0.028886346146464348, 0.008970830589532852, -0.013755726628005505, -0.02610933594405651, -0.014742654748260975, 0.024666380137205124, 0.02446218766272068, -0.02448941394686699, -0.00116984941996634, -0.03493042662739754, -0.0037775500677525997, 0.04255358874797821, 0.037734661251306534, -0.019915515556931496, 0.004614736884832382, -0.04293474927544594, -0.013156764209270477, 0.018554236739873886, 0.0191123615950346, 0.004499027971178293, -0.014524850063025951, -0.01052949484437704, -0.010699654929339886, 0.01055672112852335, 0.010427399538457394, 0.018554236739873886, 0.0095221484079957, -0.0009120571194216609, -0.020609768107533455, -0.6451374888420105, -0.020582541823387146, -0.009794404730200768, -0.01569554954767227, -0.01713850535452366, 0.0036788571160286665, 0.021875757724046707, -0.004223369061946869, -0.00113241421058774, 0.01271434873342514, -0.02078673429787159, 0.007970290258526802, -0.01747882552444935, -0.02078673429787159, -0.029267504811286926, -0.018622299656271935, -0.003699276363477111, -0.025047538802027702, 9.996894368669018e-05, -0.027334487065672874, -0.010583946481347084, -0.008160869590938091, 0.012809637933969498, 0.0021065797191113234, -0.006275497376918793, 0.012047321535646915, 0.024380510672926903, 0.003498487640172243, 0.003512100549414754, 0.0388236828148365, -0.025660114362835884, 0.03171780705451965, 0.002040217397734523, 0.033487468957901, 0.04767199978232384, -0.019302939996123314, -0.013197602704167366, 0.021617114543914795, -0.017015989869832993, 0.019289327785372734, -0.01840449497103691, -0.011121651157736778, 0.028260158374905586, -0.0075074550695717335, 0.0015697251074016094, 0.012251513078808784, 0.011400713585317135, -0.01308189332485199, -0.006394609343260527, 0.01610393449664116, 0.011761453002691269, 0.004145095124840736, -0.026953330263495445, -0.005955596920102835, -0.008664542809128761, 0.005091184284538031, 0.035638291388750076, -0.008296997286379337, 0.010488656349480152, -0.015110200271010399, 0.009991790167987347, 0.02450302615761757, -0.018826492130756378, -0.0016786274500191212, -0.00643885089084506, 0.028968023136258125, -0.0034763668663799763, 0.006697494070976973, 0.017968885600566864, -0.002150821266695857, 0.017274633049964905, 0.02517005428671837, 0.0007891165441833436, -0.021167892962694168, 0.025238117203116417, -0.0004594317579176277, 0.04062057286500931, -0.027606744319200516, 0.005360037088394165, 0.01441594772040844, 0.0031853935215622187, -0.013701275922358036, -0.025061151012778282, -0.026367979124188423, 0.015259940177202225, -0.010195981711149216, -0.017315471544861794, 0.04116508364677429, -0.0009197142790071666, 0.011278199031949043, -0.001398714492097497, 0.007609551306813955, 0.01542329415678978, 0.006176804658025503, 0.027334487065672874, 0.022188851609826088, 0.0072556184604763985, 0.0024315849877893925, 0.022951168939471245, -0.010257239453494549, -0.007316876202821732, -0.0190442968159914, 0.02078673429787159, -0.018540622666478157, 0.006602204404771328, -0.018200304359197617, -0.027661195024847984, -0.019929127767682076, 0.04399654641747475, -0.02921305224299431, -0.011530035175383091, -0.02986646629869938, -0.009828436188399792, -0.011312230490148067, 0.023863226175308228, -0.019997192546725273, 0.004628349561244249, 0.008964023552834988, 0.011666162870824337, 0.008412705734372139, 0.023373164236545563, -0.005996434949338436, 0.010243626311421394, -0.014320657588541508, 0.039041489362716675, 0.02883189544081688, 0.00986927468329668, -0.01123055350035429, -3.666414340841584e-05, -0.01709766685962677, -0.004485415294766426, -0.019575195387005806, -0.0015671727014705539, 0.012197062373161316, -0.0018836702220141888, -0.023182585835456848, 0.008133643306791782, -0.0011256077559664845, 0.026272689923644066, -0.028614090755581856, -0.015382455661892891, -0.008344641886651516, 0.01742437481880188, 0.004267610609531403, -0.009603825397789478, -0.024679992347955704, -0.011244166642427444, -0.01773746870458126, -0.03493042662739754, 0.000903549138456583, -0.011707001365721226, 0.0032755781430751085, -0.016280900686979294, -0.003893258748576045, 0.024639153853058815, -0.0070718456991016865, -0.00971272774040699, 0.014606526121497154, 0.009814823046326637, -0.012945765629410744, 0.01611754670739174, 0.010931072756648064, -0.01713850535452366, 0.012503350153565407, 0.043016426265239716, -0.020664218813180923, -0.01776469498872757, 0.02009248174726963, -0.007153522688895464, -0.0361555777490139, 0.0221480131149292, -0.0019381213933229446, -0.0077524855732917786, 0.034331463277339935, -0.0050061047077178955, -0.012952571734786034, -0.013830597512423992, -0.00696634640917182, 0.0006483092438429594, 0.01908513531088829, -0.0013723396696150303, 0.00385922659188509, -0.020664218813180923, -0.012251513078808784, 0.030928265303373337, 0.0030969104263931513, -0.008426318876445293, 0.020705057308077812, 0.013401794247329235, 0.029948143288493156, 0.004652171861380339, -0.0010839186143130064, -0.006027063820511103, -0.0005215401179157197, 0.008827895857393742, 0.006258481182157993, 0.004168917890638113, 0.030982716009020805, -0.0066328332759439945, 0.004053208976984024, 0.02182130701839924, 0.015096587128937244, 0.020596155896782875, 0.01572277583181858, -0.00010422294144518673, -0.04247191175818443, 0.008133643306791782, -0.0027821145486086607, 0.038388073444366455, -0.03117329441010952, -0.006690687499940395, -0.03991270810365677, -0.007146716117858887, -0.004798509180545807, 0.028940796852111816, 0.020337512716650963, 0.0038490172009915113, -0.004114466719329357, -0.015355230309069157, 0.001815606257878244, 0.021971046924591064, -0.010658816434442997, -0.017982499673962593, 0.00041986958240158856, 0.001279602525755763, -0.015382455661892891, -0.0016930911224335432, 0.04658297449350357, 0.005155845079571009, -0.011815903708338737, 0.01287089567631483, 0.00952895451337099, -0.0037809531204402447, 0.016648445278406143, 0.0061972239054739475, -0.01071326807141304, 0.03343302011489868, -0.012755186296999454, 0.03947709873318672, -0.03640060871839523, -0.012183449231088161, 0.008296997286379337, 0.015409681014716625, -0.013653631322085857, -0.02281504124403, 0.005843291059136391, 0.00886192824691534, 0.007146716117858887, 0.02216162718832493, 0.027048619464039803, -0.006234658882021904, -0.008936798200011253, -0.015368842519819736, 0.008596478961408138, 0.012836863286793232, -0.038333624601364136, 0.0013961620861664414, 0.00886873435229063, 0.006370787043124437, 0.02850518748164177, 0.0328885056078434, -0.01709766685962677, 0.025537598878145218, 0.01002582162618637, 0.04062057286500931, -0.001907492522150278, 0.012326383963227272, 0.016988765448331833, -0.02986646629869938, -0.0090729258954525, -0.0161447711288929, -0.014606526121497154, 0.022638075053691864, -0.002879105741158128, 0.020255835726857185, 0.014865169301629066, 0.02315535955131054, -0.006483092438429594, 0.017533276230096817, -0.0039545162580907345, -0.027593130245804787, -0.017301859334111214, 0.017601341009140015, 0.005125216208398342, 0.00016314080858137459, -0.010454624891281128, -0.006830218713730574, 0.003974935505539179, -0.01613115891814232, 0.03512100502848625, -0.014946846291422844, 0.01372850127518177, 0.022270528599619865, -0.020596155896782875, 0.00024141436733771116, 0.0006525632343254983, 0.02148098684847355, -0.0061291600577533245, 0.04497666656970978, 0.0017866790294647217, -0.015627486631274223, 0.004104257095605135, -0.026585783809423447, 0.008616897277534008, 0.009542567655444145, 0.003498487640172243, -0.011897580698132515, -0.01939822919666767, 0.0161447711288929, -0.026667460799217224, -0.00010853011917788535, -0.02273336425423622, -0.0004883589572273195, 0.010236820206046104, 0.0024537057615816593, -0.009236279875040054, -0.010624784976243973, 0.025061151012778282, 0.008147256448864937, 0.0020521285478025675, -0.012040515430271626, -0.018254755064845085, -0.008657735772430897, 0.011856742203235626, 0.09763094782829285, 0.017315471544861794, -0.017301859334111214, -0.002448601182550192, -0.001710107084363699, 0.0070650395937263966, -0.012122191488742828, -0.02574179135262966, 0.014620139263570309, -0.010243626311421394, 0.013463051989674568, -0.016212835907936096, 0.013776145875453949, -0.01709766685962677, -0.009004862047731876, -0.016879862174391747, -0.01708405464887619, 0.012476124800741673, -0.0013000216567888856, 0.012693929485976696, 0.007296456955373287, 0.00886192824691534, 0.004104257095605135, 0.009590212255716324, -0.04026664048433304, -0.017696630209684372, 0.02778371050953865, -0.005870516877621412, 0.01949351839721203, -0.014552075415849686, -0.007895419374108315, 0.0187448151409626, 0.024298835545778275, 0.016253674402832985, -0.009093345142900944, 0.002280142856761813, 0.016335351392626762, 0.019888289272785187, -0.01037975400686264, 0.0018632509745657444, 0.032725151628255844, 0.01441594772040844, 0.009494923055171967, -0.013558341190218925, -0.003985145129263401, 0.0053974720649421215, -0.008943604305386543, -0.006619220599532127, -0.0284507367759943, 0.0011298618046566844, 0.04426880180835724, -0.01273476704955101, -0.012455705553293228, -0.013143151067197323, 0.030656009912490845, 0.0058296783827245235, 0.004652171861380339, -0.0026204625610262156, -0.002337997080758214, 0.04056612029671669, 0.010815363377332687, 0.005894339177757502, 0.008419511839747429, 0.0045228502713143826, -0.007997515611350536, -0.027388939633965492, -0.021535437554121017, -0.004624946508556604, -0.01980661414563656, 0.02105898968875408, -0.007044620346277952, 0.008310609497129917, -0.01939822919666767, 0.0066362363286316395, 0.014497623778879642, 0.009576600044965744, 0.02978479117155075, -0.01606309600174427, 0.0019108958076685667, -0.0015297376085072756, -0.018989846110343933, -0.03879645839333534, 0.020528091117739677, -0.013782952912151814, -0.0076231639832258224, 0.002145716454833746, 0.006898282561451197, 0.00046836514957249165, -0.03473984822630882, 0.016675671562552452, 0.010515882633626461, 0.027035005390644073, 0.010298077948391438, 0.007201167289167643, 0.013102312572300434, 0.0016922402428463101, -0.015123812481760979, -0.0010337214916944504, -0.015314391814172268, -0.02786538563668728, 0.009631050750613213, -0.03356914594769478, -0.004410544876009226, -0.01907152310013771, 0.0010235118679702282, -0.009270311333239079, 0.001334053697064519, 0.019547970965504646, -0.015913354232907295, -0.026912491768598557, 0.009181828238070011, -0.021508213132619858, 0.009998596273362637, -0.006047483067959547, 0.013476665131747723, -0.0026800185441970825, 0.012653090991079807, 0.014797105453908443, 0.009814823046326637, -0.007847774773836136, -0.0072556184604763985, -0.03043820522725582, 0.015940580517053604, -0.0020283060148358345, -0.020691445097327232, -0.009426859207451344, 0.0032500543165951967, -0.021263182163238525, 0.027075843885540962, 0.007173941936343908, -0.011169296689331532, 0.006925508379936218, 7.641243428224698e-05, -0.012312770821154118, -0.028396286070346832, -0.007296456955373287, -0.012619058601558208, 0.009937338531017303, -0.005727582611143589, 0.014592913910746574, -0.017900822684168816, -0.01708405464887619, 0.0036652444396167994, -0.026367979124188423, 0.003484874963760376, -0.02582346834242344, -0.015532196499407291, -0.001402968424372375, 0.012013289146125317, -0.002651091432198882, -0.014987684786319733, -0.024938635528087616, -0.03444036468863487, -0.009147796779870987, -0.01542329415678978, -0.02921305224299431, 0.009188635274767876, 0.00039774877950549126, 0.01810501329600811, -0.01187035534530878, 0.038660332560539246, -0.022352205589413643, 0.00636398047208786, -0.0016122651286423206, -0.0030016207601875067, 0.008548833429813385, -0.010822170414030552, -0.028314609080553055, -0.03792523965239525, -0.01736992411315441, 0.036672864109277725, 0.01673012226819992, 0.02412186935544014, -0.009229473769664764, -0.0035086972638964653, 0.05227312445640564, -0.02005164325237274, -0.005730985663831234, -0.016226448118686676, -0.04568453133106232, -0.013306505046784878, -0.00305437040515244, -0.011162489652633667, 0.011094425804913044, -0.016158385202288628, -0.003631212515756488, 0.04824373871088028, 0.006663462147116661, 0.005567632149904966, -0.019588809460401535, 0.011142070405185223, -0.018581461161375046, 0.009331569075584412, 0.01242847926914692, 0.020922861993312836, 0.0037333082873374224, 0.007657195907086134, 0.0065681724809110165, 0.0009503430919721723, -0.01457930076867342, -0.001008197432383895, -0.006050886120647192, -0.012476124800741673, -0.015995031222701073, -0.03759853169322014, 0.019697710871696472, -0.021685179322957993, -0.02583708055317402, 0.030410978943109512, -0.021930208429694176, -0.02478889562189579, -0.004117869772017002, -0.005928371101617813, -0.02375432290136814, -0.021549051627516747, -0.00023886197595857084, 0.0075006489641964436, 0.012462511658668518, -0.00467939767986536, -0.021902984008193016, 0.004185933619737625, -0.004675994161516428, 0.05121132731437683, 0.010801751166582108, 0.013980338349938393, 0.005138829350471497, -0.018962619826197624, 0.0012021797010675073, 0.002036814112216234, 0.007616357412189245, -0.007915838621556759, 0.021671565249562263, 0.017274633049964905, -0.009324762970209122, -0.002021499676629901, -0.010815363377332687, 0.00871899351477623, -0.0441599003970623, -0.03454926609992981, 0.009937338531017303, 0.007888613268733025, -0.01393269281834364, 0.004168917890638113, -0.005615276750177145, -0.035665515810251236, 0.013061474077403545, 0.008984442800283432, 0.009637856855988503, 0.00045517776743508875, -0.006084918510168791, -0.03280682861804962, 0.01172061450779438, 0.007847774773836136, 0.015681937336921692, 0.037979692220687866, -0.025700952857732773, -0.03694511950016022, -0.004478608723729849, -0.011958838440477848, -0.008378674276173115, -0.0015322900144383311, 0.007201167289167643, -0.012006483040750027, 0.016212835907936096, 0.017560502514243126, -0.0029743951745331287, -0.023250650614500046, -0.00364142213948071, -0.018853718414902687, 0.02348206751048565, 0.020187770947813988, 0.011666162870824337, -0.0014608227647840977, 0.01840449497103691, 0.0068846698850393295, 0.004315255209803581, -0.002167837228626013, 0.013599179685115814, -0.011672969907522202, -0.0028910168912261724, 0.009283924475312233, 0.011843129992485046, 0.0063809966668486595, -0.0045228502713143826, -0.02080034650862217, 0.002356714801862836, -0.013558341190218925, -0.0005006955470889807, -0.0020844589453190565, -0.04560285434126854, -0.04021218791604042, 0.005642502568662167, -0.016839023679494858, 0.015545808710157871, 0.004492221400141716, 0.008405899628996849, -4.421499033924192e-05, 0.030302075669169426, -0.027280036360025406, 0.033678047358989716, -0.014484011568129063, -0.0026630025822669268, -0.032343994826078415, 0.012836863286793232, 0.01036614179611206, -0.009916919283568859, 0.015995031222701073, -0.011482390575110912, -0.025632888078689575, 0.008433124981820583, 0.028614090755581856, 0.01938461698591709, 0.01172061450779438, 0.017288247123360634, 0.008160869590938091, 0.009440471418201923, 0.006653252523392439, -0.006571575533598661, -0.02983924187719822, 0.00852841418236494, 0.011196522042155266, 0.00026289705419912934, 0.010053046979010105, -0.021304020658135414, 0.02580985426902771, 0.002521769842132926, 0.01238083466887474, 0.004335674457252026, -0.03727182745933533, 0.008160869590938091, -0.013953112065792084, 0.02711668238043785, 0.015518583357334137, -0.009590212255716324, -0.008154062554240227, -0.03185393288731575, -0.012557800859212875, -0.0008142151637002826, 0.01780553348362446, -0.019302939996123314, 0.03427701070904732, 0.006796186789870262, -0.005492761731147766, -0.014906007796525955, -0.009351988323032856, -0.007344101555645466, 0.008610091172158718, -0.011958838440477848, -0.02346845529973507, -0.007881807163357735, -0.0018972830148413777, 0.04244468733668327, 0.008637316524982452, -0.009760372340679169, -0.02677636221051216, -0.030601557344198227, -0.0187448151409626, -0.02047364041209221, -0.0017526471056044102, 0.014878782443702221, 0.03547493740916252, 0.017887208610773087, 0.014701816253364086, 0.027538679540157318, -0.027933450415730476, -0.005237522069364786, -0.0037707434967160225, -0.011829516850411892, 0.00902528129518032, 0.010692848823964596, -0.0113734882324934, -0.00015995031571947038, -0.023713484406471252, -0.0033402389381080866, 0.001829219050705433, 0.009038894437253475, 0.0010660517727956176, 0.012659897096455097, -0.003814985044300556, 0.019166812300682068, -0.00991011317819357, 0.0063809966668486595, 0.014211755245923996, 0.021358471363782883, -0.0039511132054030895, -0.005683341063559055, -0.017220182344317436, -0.011788678355515003, -0.008684962056577206, -0.020882023498415947, -0.020950088277459145, 0.022570010274648666, -0.0174107626080513, 0.017914434894919395, -0.022883104160428047, -0.012108579277992249, -0.017192957922816277, -0.02809680439531803, 0.05382498353719711, -0.011475584469735622, -0.010359334759414196, 0.03561106696724892, 0.0055778417736291885, -0.018268367275595665, 0.003940903581678867, 0.01643064059317112, 0.012748380191624165, -0.031336650252342224, 0.003447439754381776, -0.027647580951452255, 0.015205489471554756, 0.006244868505746126, 0.002419673837721348, -0.01909874752163887, 0.015886129811406136, -0.0053294082172214985, -0.00410766014829278, -0.011046781204640865, 0.016947926953434944, 0.01041378639638424, -0.004682800732553005, -0.006925508379936218, -0.0062652877531945705, 0.00011039124365197495, 0.013027442619204521, -0.01613115891814232, -0.03079213760793209, 0.003200707957148552, 0.005965806543827057, 0.012707541696727276, 0.005533600226044655, -0.015532196499407291, -0.0021304020192474127, 0.011611712165176868, -0.031690582633018494, 0.0033912870567291975, 0.2065877467393875, -0.014892395585775375, -0.0043220617808401585, 0.022556398063898087, -0.013020636513829231, 0.002759993774816394, 0.014538462273776531, -0.0005713119171559811, -0.004808718804270029, -0.016934314742684364, -0.0030645800288766623, 0.022597236558794975, -0.015191876329481602, 0.001283856458030641, 0.010815363377332687, 0.0021440149284899235, -0.03343302011489868, -0.008991249836981297, -0.01426620688289404, -0.06839066743850708, -0.0020504267886281013, -0.011026361957192421, -0.010645204223692417, -0.011359875090420246, 0.023250650614500046, 0.001370638026855886, -0.011461971327662468, -0.0005853500915691257, 0.02616378664970398, -0.006118950434029102, -0.02173963002860546, 0.0008231485262513161, -0.013041055761277676, -0.01577722653746605, -0.008821089752018452, 0.014170916751027107, 0.014116466045379639, 0.023577356711030006, 0.016961539164185524, -0.006983362603932619, -0.0002546017640270293, -0.001553559908643365, 0.0014293432468548417, 0.0076912278309464455, -0.013476665131747723, 0.02782454900443554, -0.009957757778465748, -0.024911411106586456, -0.01570916175842285, 0.017955273389816284, -0.037407953292131424, 0.00678597716614604, 0.057772692292928696, 0.00836506113409996, -0.017165731638669968, -0.011550454422831535, -0.014021176844835281, 0.010822170414030552, -0.018703976646065712, 0.009338376112282276, -0.004162111319601536, 0.012469317764043808, 0.0110740065574646, 0.04661020264029503, -0.020664218813180923, 0.014592913910746574, -0.0014293432468548417, 0.0071875546127557755, 0.03013872355222702, -0.0395587757229805, 0.006135966163128614, -0.01342221349477768, 0.00952895451337099, -0.008739412762224674, -0.012959378771483898, 0.0007240304257720709, 0.01476988010108471, -0.03294295817613602, 0.004158708266913891, -0.008290190249681473, 0.02446218766272068, -0.011353068985044956, 0.014116466045379639, -0.0024383915588259697, -0.021984660997986794, -0.022610848769545555, -0.01342901960015297, -0.01206774078309536, -0.012898121029138565, -0.0025983417872339487, -0.0190442968159914, -0.010794944129884243, 0.0026749137323349714, -0.0133745688945055, -0.008616897277534008, -0.004077031277120113, 0.028396286070346832, 0.026204625144600868, -0.0021423131693154573, 0.009243085980415344, 0.000769973557908088, -0.024571090936660767, 0.021916596218943596, 0.0167437344789505, -0.026885265484452248, -0.00356655172072351, 0.01072007417678833, 0.018145851790905, 0.00805196724832058, 0.00046368574840016663, 0.029703114181756973, -0.004015774000436068, 0.000246519164647907, -0.020623380318284035, -0.0056935506872832775, 0.014402334578335285, -0.031336650252342224, -0.007766098249703646, -0.0010847693774849176, 0.01391227450221777, 0.009950951673090458, -0.018499786034226418, 0.004029386676847935, 0.004798509180545807, -0.009590212255716324, -0.013143151067197323, -0.02348206751048565, 0.01521910261362791, 0.008085998706519604, -0.020677832886576653, 0.021916596218943596, -0.04116508364677429, -0.0018649526173248887, 0.0015280359657481313, -0.009746759198606014, 0.019969966262578964, -0.008038354106247425, -0.01373530738055706, 0.02149459905922413, -0.012163029983639717, 0.011768259108066559, -0.006057692691683769, 0.002705542603507638, -0.0028467753436416388, -0.003552938811480999, 0.001329799648374319, 0.018867330625653267, -0.018663138151168823, -0.013517502695322037, -0.00856244657188654, -0.018295593559741974, -0.01341540738940239, -0.0022171835880726576, -0.005465536378324032, 0.011809097602963448, -0.007738872431218624, -0.010434205643832684, -0.004675994161516428, 0.009998596273362637, 0.027620356529951096, -0.03909594193100929, 0.013041055761277676, 0.022896716371178627, 0.01223109383136034, -0.019275713711977005, -0.008780251257121563, -0.17402593791484833, 0.01570916175842285, 0.007453003898262978, -0.004567091818898916, 0.018949007615447044, 0.027021393179893494, 0.013844209723174572, 0.0006117248558439314, -0.002967588836327195, -0.0012021797010675073, 0.026898877695202827, -0.003130942350253463, -0.03552938997745514, -0.04195462539792061, -0.012156223878264427, 0.0011953733628615737, -0.020242223516106606, 0.037026796489953995, 0.03245289623737335, 0.022570010274648666, 0.004345884080976248, -0.013742114417254925, 0.015110200271010399, -0.004607930313795805, -0.015681937336921692, 0.01091065350919962, -0.00837186723947525, 0.02681720070540905, 0.007262425031512976, -0.031608905643224716, -0.02477528341114521, 0.02280142717063427, 0.006489899009466171, -0.012489737011492252, 0.012898121029138565, 0.005928371101617813, -0.011679776012897491, -0.012387641705572605, -0.015259940177202225, 0.007943064905703068, 0.021630726754665375, 0.003333432599902153, 0.03392307832837105, 0.010141530074179173, -0.006496705114841461, 0.044894989579916, -0.0055370032787323, -0.02440773695707321, 0.004955056589096785, -0.02913137711584568, 0.011094425804913044, 0.0027565904892981052, 0.02582346834242344, 0.016185609623789787, 0.025986820459365845, 0.0014174319803714752, 0.0021440149284899235, -0.005996434949338436, -0.009610631503164768, -0.00713310344144702, -0.011312230490148067, -0.005965806543827057, 0.014865169301629066, -0.01570916175842285, -0.008439931087195873, -0.00017207420023623854, 0.00030352274188771844, 0.01041378639638424, -0.0368906669318676, 0.017206570133566856, 0.004199546296149492, 0.006163191981613636, 0.033623598515987396, -0.01912597380578518, -0.012904927134513855, -1.6922935174079612e-05, -0.01506936177611351, 0.009460890665650368, -0.0009631050634197891, 0.005424697883427143, -0.04190017655491829, 0.01947990618646145, -0.007670808583498001, -0.006731525994837284, 0.0004441173514351249, 0.008242545649409294, 0.0002571541699580848, -0.024244382977485657, -0.006391206290572882, -0.008610091172158718, 0.006251675076782703, -0.025578437373042107, -0.014511236920952797, -0.008943604305386543, 0.018595075234770775, 0.016008643433451653, 0.016362575814127922, -0.011645743623375893, 0.0011119949631392956, -0.02416270598769188, 0.011319037526845932, -0.023291487246751785, 9.790841431822628e-06, 0.022202465683221817, 0.040402770042419434, 0.0050775716081261635, -0.0016326842596754432, 0.007473423145711422, 0.013034248724579811, 0.007943064905703068, -0.020283060148358345, -0.003549535758793354, 0.012653090991079807, 0.004066821653395891, 0.016662057489156723, 0.031091617420315742, -0.014892395585775375, -0.0241490937769413, 0.0167437344789505, -0.012789218686521053, 0.06071305647492409, -0.012993410229682922, -0.010624784976243973, -0.02005164325237274, -0.0022988603450357914, -0.022011885419487953, -0.11510977149009705, -0.0019466293742880225, 0.008154062554240227, 0.008419511839747429, 0.0130750872194767, 0.02374071069061756, 0.0058977422304451466, 0.005873919930309057, 0.0003094783460255712, 0.009950951673090458, -0.024271609261631966, -0.03158167749643326, 0.010121111758053303, -0.006908492185175419, 0.01679818518459797, -0.020160546526312828, -0.006581785157322884, -0.020038031041622162, 0.004046402405947447, 0.02684442698955536, 0.008753025904297829, -0.023985739797353745, 0.019547970965504646, -0.025632888078689575, 0.0321534164249897, -0.02482973411679268, -0.04026664048433304, 0.0076231639832258224, 0.022542783990502357, 0.025020312517881393, -0.027075843885540962, -0.0035971803590655327, 0.01840449497103691, -0.01837727054953575, -0.0055778417736291885, -0.02239304408431053, -0.044758863747119904, 0.002543890615925193, 0.015940580517053604, -0.019616033881902695, 0.009855661541223526, -0.003474665340036154, 0.02718474715948105, -0.022379431873559952, 0.014865169301629066, 0.0003479770093690604, -0.027007780969142914, -0.004294835962355137, 0.012510156258940697, -0.025551211088895798, -0.011441552080214024, 0.007929451763629913, -0.03664563596248627, -0.010754106566309929, 0.028614090755581856, -0.006278900429606438, 0.02915860153734684, 0.0050741685554385185, -0.008759832009673119, -0.01188396755605936, -0.015178264118731022, 0.016593994572758675, 0.0030067255720496178, 0.026367979124188423, 0.004121272824704647, 0.0056935506872832775, -0.011965644545853138, -0.02314174734055996, 0.025932369753718376, 0.009542567655444145, -0.010624784976243973, 0.012271932326257229, -0.012115385383367538, 0.014497623778879642, -0.0190442968159914, 0.00986927468329668, -0.0238496121019125, 0.00518307089805603, 0.0042710136622190475, -0.0017866790294647217, -0.010536301881074905, -0.02715752087533474, -0.007473423145711422, -0.003927290439605713, 0.01273476704955101, 0.00721477996557951, -0.0053294082172214985, -0.016008643433451653, -0.0024043594021350145, -0.022039111703634262, -1.0103244676429313e-05, 0.015110200271010399, -0.016335351392626762, -0.010999136604368687, -0.003699276363477111, 0.03117329441010952, 0.01840449497103691, -0.004471802152693272, -0.008106417953968048, -0.010338916443288326, -0.025700952857732773, 0.018880942836403847, -0.058861713856458664, 0.02748422883450985, -0.010794944129884243, 0.002748082624748349, 0.008099611848592758, 0.0004960161168128252, 0.0038796458393335342, -0.016947926953434944, -0.008950411342084408, 0.02580985426902771, -0.011237360537052155, 0.039722129702568054, -0.007262425031512976, -0.01157087367027998, -0.016866249963641167, -0.0014727340312674642, -0.021167892962694168, -0.0017262722831219435, 0.02007886953651905, 0.0004764477489516139, 0.018635913729667664, 0.011788678355515003, 0.023522906005382538, 0.002150821266695857, -0.02619101293385029, 0.006857444066554308, -0.00046836514957249165, 0.012408060021698475, 0.005907951854169369, -0.013347343541681767, 0.02820570580661297, -0.022297754883766174, -0.005594857968389988, 0.013755726628005505, 0.004839347675442696, 0.018213916569948196, -0.02340039052069187, -0.011734227649867535, 0.006990169174969196, 0.03825194761157036, -0.01558664720505476, -0.002892718417569995, 0.012598639354109764, -0.021004538983106613, 0.004308448638767004, 0.021576276049017906, -0.01912597380578518, -0.00418253056704998, 0.014293432235717773, -0.004607930313795805, 0.015110200271010399, 0.032643478363752365, 0.0013238440733402967, -0.03310631215572357, -0.006095127668231726, -0.020187770947813988, 0.03473984822630882, -0.0028944199439138174, 0.01308189332485199, -0.028314609080553055, 0.01843172125518322, -0.03016594797372818, 0.0035052942112088203, -0.0006057692808099091, 0.021671565249562263, -0.02073228359222412, -0.004556882195174694, -0.005046942736953497, -0.019956354051828384, -0.025714565068483353, 0.002494544256478548, 0.0013085296377539635, -0.004148498643189669, 0.003774146782234311, 0.0037162923254072666, 0.023958515375852585, -0.003425318980589509, -0.0005040987161919475, -0.016920700669288635, 0.006255078129470348, -0.002884210553020239, -0.008154062554240227, -0.036700088530778885, -0.006078111939132214, 0.03384140133857727, -0.015001297928392887, 0.009202247485518456, -0.0018139046151190996, -0.0020351125858724117, 0.017846371978521347, 0.012482930906116962, -0.01207454688847065, -0.003539326135069132, 0.0023737307637929916, 0.01641702838242054, 0.008691768161952496, -0.025646502152085304, 0.010046240873634815, 0.02145376056432724, 0.03664563596248627, -0.023863226175308228, 0.010944684967398643, 0.00720797386020422, -0.01747882552444935, 0.003576761344447732, -0.00806557945907116, -0.01523271482437849, -0.027225585654377937, 0.008269771933555603, 0.022692525759339333, 0.006261884700506926, -0.012265126220881939, 0.03414088487625122, 0.028995247557759285, -0.014974071644246578, -0.004482011776417494, 0.005390665959566832, -0.009624244645237923, -0.007800130173563957, 0.03411365672945976, 0.010849395766854286, 0.028287382796406746, 0.007296456955373287, 0.012176643125712872, 0.02311452105641365, 0.015940580517053604, 0.020269447937607765, 0.023032845929265022, 0.002007887000218034, -0.006983362603932619, 0.01780553348362446, -0.0057650175876915455, -0.030247624963521957, 0.003774146782234311, 0.0057650175876915455, -0.04056612029671669, 0.011822710745036602, 0.003204111009836197, -0.016580380499362946, 0.03514822944998741, -0.01875842735171318, -0.019234875217080116, -0.005911355372518301, 0.010522688739001751, 0.015205489471554756, 0.010665623471140862, 0.0003641422081273049, 0.00786138791590929, -0.014320657588541508, -0.0019381213933229446, -0.018363656476140022, 0.03846975043416023, -0.00805877335369587, -0.012258320115506649, 0.005877322982996702, 0.004550076089799404, 0.008453544229269028, -0.01223109383136034, -0.015504971146583557, 0.013626405037939548, -0.011298618279397488, 0.014375109225511551, 0.002727663377299905, -0.0167437344789505, 0.011312230490148067, 0.013810178264975548, 0.0018734605982899666, 0.009093345142900944, -0.04895160347223282, 0.006146175786852837, 0.012898121029138565, -0.008181287907063961, -0.006510318256914616, 0.031091617420315742, 0.007704840507358313, -0.000389666180126369, -0.0005759912892244756, 0.018690364435315132, 0.006054289638996124, -0.006680477876216173, 0.014865169301629066, -0.016947926953434944, -0.017859984189271927, 0.01972493715584278, -0.019507132470607758, -0.010046240873634815, -0.00015410107153002173, -0.017506051808595657], "940653d8-76b4-492d-9564-1cad868963e8": [0.002861600136384368, -0.018376626074314117, -0.0020919519010931253, 0.002210620092228055, 0.004387334920465946, 0.017006855458021164, -0.0031599660869687796, -0.02229606918990612, -0.010578427463769913, -0.036997370421886444, 0.035993777215480804, 0.02483217976987362, 0.02511698380112648, -0.00361768645234406, -0.010449587367475033, 0.012619521468877792, 0.04689769446849823, -0.0012222829973325133, 0.03973691165447235, -0.018024012446403503, -0.01617956906557083, 0.003222690662369132, 0.0029226294718682766, -0.0013019603211432695, -0.0034210362937301397, 0.023625154048204422, 0.022350318729877472, -0.011053100228309631, 0.007025160826742649, -0.007682921830564737, -0.014443621970713139, 0.021658651530742645, 0.012185534462332726, -0.007960944436490536, -0.023923519998788834, -0.0033023678697645664, 0.005635046865791082, -0.03078593499958515, 0.0025767963379621506, -0.01116837840527296, -0.004221199546009302, -0.008679735474288464, -0.017861267551779747, 0.004946771077811718, -0.01975996047258377, 0.026554564014077187, -0.005211231764405966, -0.020085450261831284, -0.03716011717915535, 0.01486404612660408, 0.041879720985889435, 0.009479898028075695, -0.025578094646334648, -0.002615787321701646, -0.005306166131049395, -0.0009154407889582217, 0.02206551469862461, 0.013880794867873192, -0.004295790567994118, 0.028317635878920555, 0.019095417112112045, 0.001001899130642414, 0.0007662578718736768, 0.0031853949185460806, -0.01845799945294857, -0.01765783689916134, -0.008659391663968563, -0.03211501985788345, -0.017834143713116646, -0.0006200416246429086, 0.035017307847738266, 0.014036758802831173, -0.014443621970713139, -0.008930633775889874, 0.015365843661129475, -0.012497462332248688, -0.016247378662228584, -0.010239374823868275, -0.00557401729747653, 0.003098936751484871, 0.00986641738563776, -0.03539704531431198, 0.00781176146119833, 0.03197940066456795, 0.009710453450679779, -0.02072286792099476, 0.004492441192269325, 0.030351947993040085, -0.00806944165378809, -0.02484574168920517, 0.0019614167977124453, 0.008266091346740723, 0.00397708173841238, 0.007004817482084036, -0.005570626817643642, 0.024723682552576065, -0.030080707743763924, 0.026500316336750984, -0.007696483749896288, -0.01643724925816059, -0.03121992200613022, -0.0006556421285495162, -0.014538556337356567, -0.004787416197359562, -0.025279728695750237, 0.004495831672102213, 0.0013765516923740506, 0.0024632138665765524, 0.01893267221748829, -0.02226894535124302, -0.02567302994430065, 0.009018787182867527, -0.018498685210943222, -0.040632009506225586, -0.008435617201030254, -0.029104236513376236, 0.031898025423288345, -0.003443074645474553, -0.011500649154186249, -0.02617482654750347, -0.0005348547711037099, 0.010422463528811932, -0.0035803907085210085, -0.011500649154186249, 0.015989700332283974, -0.0008565305033698678, 0.004034720826894045, -0.026473192498087883, -0.009066254831850529, -0.016003262251615524, 0.03360684961080551, 0.012422870844602585, 0.006506410893052816, -0.003583781188353896, 0.0006013937527313828, 0.02050587348639965, -0.025428911671042442, 0.003797384211793542, -0.012673769146203995, -0.018322378396987915, 0.01845799945294857, 0.01798332668840885, 0.003427817253395915, -0.02226894535124302, -0.020885612815618515, 0.019108979031443596, 0.016260940581560135, 0.02537466399371624, -0.013833328150212765, -0.010775077156722546, 0.023245416581630707, -0.019895579665899277, 0.013311187736690044, -0.01693904586136341, 0.02765309438109398, -0.011141253635287285, 0.026188388466835022, -0.016505058854818344, 0.0004814540734514594, -0.011127691715955734, 0.007262497209012508, 0.014823360368609428, 0.010347872041165829, 0.01346037071198225, 0.00922221876680851, 0.028778746724128723, 0.003515970893204212, -0.016505058854818344, -0.02918560989201069, -0.023679401725530624, 0.01513528823852539, 0.029646720737218857, -0.03794671595096588, 0.009425650350749493, -0.009120502509176731, 0.006848853547126055, 0.030379073694348335, 0.03683462738990784, -0.010585208423435688, 0.0013172175968065858, -0.04817252978682518, -0.002225877484306693, 0.03404083475470543, 0.023408161476254463, -0.003370178397744894, -0.015772705897688866, -0.00193937832955271, -0.012199096381664276, 0.014497870579361916, -0.0048043690621852875, 0.004628061782568693, 0.021482344716787338, -0.02096698433160782, -0.009167970158159733, -0.6527161002159119, -0.006523363292217255, -0.014036758802831173, -0.02488642744719982, 0.002071608556434512, 0.00934427697211504, 0.00950702279806137, -0.009032349102199078, -0.0044992221519351006, 0.004478878807276487, -0.020112574100494385, 0.009228999726474285, -0.021129731088876724, -0.01513528823852539, -0.02719198353588581, 0.0001681486755842343, -0.0014291048282757401, -0.0179697647690773, -0.0018478342099115252, -0.006645422428846359, -0.021143293008208275, 0.0028904196806252003, 0.00972401537001133, 0.0018207100220024586, -0.010524178855121136, 0.0037092305719852448, 0.01369770709425211, -0.004594156518578529, 0.005292604211717844, 0.04380553960800171, -0.023625154048204422, 0.03287449851632118, 0.009961352683603764, 0.02637825720012188, 0.04895913228392601, -0.0003615143650677055, -0.013392560184001923, 0.02563234232366085, 0.002146200044080615, 0.02205195277929306, -0.039058808237314224, -0.02532041445374489, 0.013209471479058266, 0.01871567964553833, 0.007920258678495884, -0.0013460370246320963, 0.01523022260516882, -0.015555712394416332, -0.010144440457224846, 0.023150481283664703, 0.009818950667977333, 0.010544521734118462, -0.007092970889061689, 0.004895912948995829, -0.002875162288546562, 0.009954570792615414, 0.039628416299819946, -0.010178345255553722, 0.014891170896589756, 0.0009349363390356302, 0.008883166126906872, 0.020112574100494385, -0.010307185351848602, -1.9469011022010818e-05, -0.0038753661792725325, 0.013887575827538967, 0.009879980236291885, 0.008455961011350155, 0.011066662147641182, -0.014769111759960651, 0.022635120898485184, 0.011697299778461456, -0.010205470025539398, -0.01116837840527296, 0.009785044938325882, 0.007628673687577248, 0.033416979014873505, -0.01818675734102726, 0.009039130061864853, 0.01567777246236801, 0.007289621513336897, -0.02251306362450123, -0.02283855341374874, -0.0060215662233531475, 0.014606366865336895, -0.021740024909377098, -0.019000481814146042, 0.01974639669060707, -0.016030386090278625, 0.007059065625071526, -0.00589950755238533, 0.010890355333685875, 0.0020817802287638187, -0.012097381055355072, 0.026744434610009193, 0.001735099358484149, -0.014931856654584408, 0.015311595052480698, 0.0230826698243618, -0.018091822043061256, -0.005736762657761574, -0.007370993960648775, 0.0069437879137694836, -0.012131285853683949, 0.019149664789438248, 0.007350650615990162, -0.03124704584479332, -0.009771483018994331, 0.03976403549313545, -0.015026791021227837, -0.009662986733019352, -0.01765783689916134, -0.007879571989178658, -0.01154811680316925, 0.0192310381680727, -0.024723682552576065, 0.028073517605662346, -0.002285211579874158, 0.023150481283664703, 0.006106329150497913, 0.02354378066956997, 0.003492237301543355, 0.013874013908207417, -0.00781176146119833, 0.02584933675825596, 0.01691192202270031, 0.00756086315959692, -0.010422463528811932, -0.023408161476254463, -0.004051673226058483, -0.0034481603652238846, -0.01358242891728878, -0.002398794051259756, -0.000995118054561317, 0.01641012355685234, -0.010639457032084465, 0.0065979547798633575, -0.010863230563700199, 0.03197940066456795, -0.02688005566596985, -0.020424501970410347, 0.0035363140050321817, 0.009018787182867527, 0.006282636430114508, -0.023679401725530624, -0.022906363010406494, -0.011229407042264938, -0.005363805219531059, -0.015081039629876614, 0.012856857851147652, -0.009269685484468937, -0.005309556610882282, -0.0019665025174617767, -0.0028259996324777603, 0.023001298308372498, -0.007364213000983, -0.01924460008740425, 0.01078864000737667, 0.009920665994286537, -0.009140846319496632, 0.0045636422000825405, 0.0295110996812582, -0.007411680184304714, 0.009662986733019352, 0.019176790490746498, -0.012578834779560566, -0.014999667182564735, 0.02872449904680252, 0.002736150985583663, -0.03634639084339142, 0.005658780224621296, -0.02617482654750347, 0.0003254900802858174, 0.04765716940164566, -0.039628416299819946, 0.0014680958120152354, -0.0061266724951565266, -0.023964205756783485, -0.011392151936888695, 0.00945955514907837, 0.0021004281006753445, 0.002225877484306693, -0.019339535385370255, -0.0032362528145313263, 0.03306436538696289, 0.0021004281006753445, -0.014904732815921307, -0.006313151214271784, 0.012171972543001175, 0.023204728960990906, 0.00034837608109228313, 0.008401712402701378, -0.006591173820197582, -0.004811150021851063, -0.002514071762561798, -0.013073851354420185, -0.0001266147883143276, 0.016816986724734306, -0.012171972543001175, 0.024777932092547417, 0.024791494011878967, -0.0010230898624286056, 0.027273355051875114, 0.015406530350446701, 0.010320747271180153, -0.0294839758425951, 0.0034956277813762426, 2.4938875867519528e-05, 0.016708489507436752, -0.019787084311246872, 0.0009527365327812731, -0.024493128061294556, 0.0015257346676662564, -0.010530959814786911, 0.009764702059328556, 0.01176510937511921, 0.009201875887811184, 0.01695260778069496, -0.01716960035264492, -0.015338719822466373, 0.012524586170911789, -0.01102597638964653, -0.00998169556260109, 0.0028819432482123375, -0.01331796869635582, 0.0018597011221572757, -0.004088968969881535, 0.035722535103559494, 0.007933820597827435, -0.006869196426123381, 0.02380146086215973, 0.014552118256688118, -0.013392560184001923, 0.014619928784668446, 0.0038923188112676144, -0.02074999175965786, 0.018295254558324814, -0.007886352948844433, 0.037566978484392166, -0.02609345316886902, 0.0069573502987623215, 0.010300404392182827, 0.013928262516856194, -0.009879980236291885, -0.018051136285066605, 0.0020173604134470224, 0.011880387552082539, -0.0046246713027358055, 0.007309964392334223, 0.053922854363918304, -0.0004945923574268818, -0.004441583063453436, -0.02201126515865326, -0.009398525580763817, 0.011202283203601837, -0.03127416968345642, 0.001619821647182107, 0.011432838626205921, 0.01346037071198225, 0.03404083475470543, 0.005411272402852774, 0.001990236109122634, 0.019597213715314865, 0.004990847781300545, 0.04483625665307045, 0.02743609994649887, -0.004072016570717096, 0.034935932606458664, -0.030813060700893402, -0.007872791029512882, -0.02483217976987362, -0.019163228571414948, 0.006296198349446058, -0.005397710483521223, 0.019800646230578423, -0.004994238261133432, 0.014253752306103706, 0.008530552498996258, 0.007777856197208166, 0.006170749198645353, -0.014199504628777504, -0.01921747624874115, 0.018498685210943222, -0.016206692904233932, -0.0062012639828026295, -0.015962574630975723, -0.02150946855545044, -0.0008561066933907568, -0.012748360633850098, 0.03615652024745941, -0.023408161476254463, 0.008211842738091946, 0.02157728001475334, -0.017562901601195335, -0.009676548652350903, 0.02127891406416893, 0.011663394048810005, -0.014253752306103706, 0.036780375987291336, 0.009920665994286537, -0.00988676119595766, 0.006926835514605045, -0.028805870562791824, 0.00974435918033123, -0.012653426267206669, 0.00011231102689635009, -0.016342313960194588, -0.015203098766505718, 0.0059571461752057076, -0.027802277356386185, -0.008598363026976585, -0.013779079541563988, 0.0067132324911653996, 0.017617149278521538, 0.006628469564020634, -0.0045602512545883656, -0.01447074580937624, 0.019312411546707153, 0.0140774454921484, 0.008523771539330482, -0.005753715056926012, -0.02690717950463295, -0.010469930246472359, 0.014714863151311874, 0.09840649366378784, 0.01765783689916134, -0.024954238906502724, -0.0015825259033590555, 0.017834143713116646, -0.002291992539539933, -0.020641494542360306, -0.0333627313375473, 0.012578834779560566, -0.013846890069544315, 0.016274502500891685, -0.011453181505203247, 0.020614370703697205, 0.00211907597258687, -0.00023161500575952232, -0.024289695546030998, -0.007228591945022345, -0.006123282015323639, -0.0014926771400496364, -0.0016452505951747298, -0.009669767692685127, 0.019610777497291565, 0.007798199541866779, 0.01064623799175024, -0.04668070003390312, -0.006679327227175236, 0.020709306001663208, -0.0007166714640334249, 0.012816171161830425, -0.029158486053347588, -0.0006276703206822276, 0.024276133626699448, 0.016599994152784348, 0.015732020139694214, -0.014497870579361916, -0.012070256285369396, 0.02047874964773655, 0.002834476064890623, 0.004072016570717096, -0.0001278862328035757, 0.011107348836958408, 0.015691334381699562, 0.008937414735555649, -0.0034718939568847418, 0.00430257199332118, 0.004512784071266651, -0.007092970889061689, 0.006336884573101997, -0.03143691644072533, 0.012185534462332726, 0.046734947711229324, -0.007126876153051853, 0.00041216026875190437, -0.013399341143667698, 0.0487421378493309, 0.003634639084339142, -0.0070183794014155865, -0.003699058899655938, -0.008822137489914894, 0.018376626074314117, -0.0027514081448316574, -0.008733983151614666, -0.007364213000983, -0.004109312314540148, -0.011941417120397091, -0.010273280553519726, -0.03461044281721115, -0.020288880914449692, -0.02765309438109398, 0.010802201926708221, -0.020316004753112793, -0.020872050896286964, -0.029538223519921303, -0.01152777299284935, 0.011860044673085213, 0.02563234232366085, 0.017332345247268677, -0.007391336839646101, 0.012002446688711643, -0.001101919449865818, -0.01868855394423008, -0.03949279338121414, 0.004587375558912754, -0.016599994152784348, -0.008693297393620014, -0.01560996100306511, 0.013351873494684696, 0.0034210362937301397, -0.044727761298418045, -0.004431411623954773, 0.007059065625071526, 0.03130129352211952, -0.015799829736351967, 0.0035363140050321817, -0.004760292358696461, -0.011649832129478455, -0.006235169246792793, -0.0127958282828331, 0.0005780839128419757, -0.02050587348639965, 0.007479490712285042, -0.03181665390729904, -0.007167562376707792, -0.03024345263838768, 0.012789047323167324, -0.016586432233452797, 0.019136102870106697, 0.01951584219932556, -0.015162412077188492, -0.008252529427409172, 0.016057509928941727, -0.02999933436512947, 0.005492644850164652, 0.0059571461752057076, 0.000821353867650032, 0.012117723934352398, 0.02662237547338009, 0.020071888342499733, 0.0066115171648561954, -0.02019394561648369, -0.005716419313102961, -0.04274769499897957, 0.004956942517310381, -0.005536721553653479, -0.01448430772870779, -0.021740024909377098, 0.006519972812384367, -0.027585282921791077, 0.0004996781353838742, -0.003492237301543355, 0.004027939401566982, 0.019882017746567726, 0.0077032651752233505, -0.026296885684132576, -0.02000407688319683, -0.003461722517386079, -0.016979731619358063, 0.0006378418765962124, 0.0007777008577249944, -0.006231778766959906, -0.02072286792099476, -0.007411680184304714, -0.01244321372359991, -0.027531035244464874, -0.017603587359189987, -0.028778746724128723, -0.004641624167561531, -0.01064623799175024, 0.007330307736992836, 0.01100563257932663, -0.0023208120837807655, -0.02251306362450123, -0.03691599890589714, -0.0029633159283548594, -0.015040353871881962, -0.038353580981492996, -0.002225877484306693, -0.004807759542018175, 0.012456776574254036, 0.011446400545537472, 0.036536261439323425, -0.0127958282828331, 0.02024819515645504, 0.01639656163752079, -0.0053298999555408955, -0.004112702794373035, -0.0038346799556165934, -0.031409792602062225, -0.039628416299819946, -0.000500949565321207, 0.013263720087707043, 0.002849733456969261, 0.01615244522690773, -0.015989700332283974, -0.00860514398664236, 0.03477318957448006, -0.012917887419462204, -0.006313151214271784, -0.02000407688319683, -0.04486338049173355, -0.016505058854818344, 0.005207841284573078, -0.0067878239788115025, 0.007845667190849781, -0.007832104340195656, -0.006638641003519297, 0.052946384996175766, -0.009025568142533302, 0.0023869271390140057, -0.017766332253813744, 0.02994508668780327, -0.02462874911725521, 0.010903917253017426, -0.006157187279313803, 0.02688005566596985, -0.01943446882069111, 0.022485939785838127, 0.00898488238453865, 0.001266359817236662, -0.02407270297408104, -0.006638641003519297, -0.010259718634188175, -0.025442473590373993, -0.017847705632448196, -0.0057265907526016235, -0.00010505319369258359, -0.02763953246176243, -0.0147555498406291, 0.01551502663642168, -0.024194762110710144, -0.019854893907904625, -0.012721236795186996, -0.010775077156722546, -0.03132841736078262, -0.013426464982330799, -0.0004297486157156527, -0.012002446688711643, 0.016342313960194588, -0.011365028098225594, -0.017617149278521538, 0.0029989161994308233, -0.0089509766548872, 0.05451958626508713, -0.0003979624598287046, 0.020804239436984062, 0.004950161557644606, -0.0230826698243618, -0.004695872310549021, 0.017617149278521538, 0.005299385171383619, -0.014131694100797176, 0.017345909029245377, 0.005068829748779535, -0.01089713629335165, -0.0028141329530626535, -0.018037574365735054, 0.0067776525393128395, -0.028507504612207413, -0.02693430334329605, 0.016301628202199936, 0.005984270479530096, -0.007120095193386078, -0.006703061051666737, -0.00846274197101593, -0.048335276544094086, 0.005838477984070778, 0.003956738859415054, 0.0029158485122025013, -0.014999667182564735, -0.009988476522266865, -0.03054181858897209, 0.007465928327292204, 0.008557676337659359, 0.014538556337356567, 0.031057177111506462, -0.012517805211246014, -0.027856525033712387, -0.0060724238865077496, -0.015352281741797924, 0.006675936747342348, 0.0014265619684010744, 0.008883166126906872, -0.025835774838924408, 0.011270093731582165, -4.7281882871175185e-05, -0.0030311262235045433, -0.0013189128367230296, 0.005489254370331764, -0.017291659489274025, 0.023720089346170425, 0.00857123825699091, -0.011758328415453434, 0.003631248604506254, 0.006991255562752485, 0.013243377208709717, 0.017996888607740402, -0.007248935289680958, -0.007581206038594246, -0.005136640276759863, -0.0003549452230799943, -0.0011044624261558056, 0.005448568146675825, -0.013385779224336147, -0.018132509663701057, -0.017061104997992516, -0.008849261328577995, -0.02074999175965786, -0.00423815194517374, 0.013677364215254784, -0.03124704584479332, -0.024737244471907616, 0.00279209460131824, -0.023394599556922913, 0.023381035774946213, 0.004139826633036137, -0.0025276339147239923, 0.0043296958319842815, 0.027327602729201317, -0.023177605122327805, 0.028860120102763176, -0.003699058899655938, 0.009635861963033676, -0.02590358443558216, 0.012883981689810753, 0.010130878537893295, -0.018363064154982567, 0.01076829619705677, -0.031898025423288345, -0.03181665390729904, 0.005428224802017212, 0.027734465897083282, 0.017237411811947823, 0.0026988552417606115, 0.007628673687577248, 0.010422463528811932, 0.00948667898774147, 0.015203098766505718, -0.004129655193537474, -0.003453246084973216, 0.0046246713027358055, 0.022133324295282364, 0.008530552498996258, 0.016518620774149895, -0.01665424183011055, 0.017508653923869133, 0.012131285853683949, 0.018864862620830536, -0.0011815967736765742, -0.026513878256082535, 0.005350242834538221, -0.010402119718492031, 0.03387809172272682, 0.016803424805402756, -0.006621688604354858, -0.015569275245070457, -0.02384214662015438, -0.015216660685837269, 0.017305221408605576, 0.016193130984902382, -0.025483159348368645, 0.024249009788036346, 0.031111424788832664, 2.9322713089641184e-05, 0.00035388569813221693, 0.010035944171249866, 0.005153592675924301, 0.002310640411451459, -0.0002966706233564764, -0.024710120633244514, -0.005787620320916176, -0.005902898032218218, 0.036726128309965134, 0.006092767231166363, -0.010436025448143482, -0.010280061513185501, -0.027558159083127975, -0.024927115067839622, -0.017562901601195335, -0.010463149286806583, 0.021889207884669304, 0.037051618099212646, 0.0006425038445740938, 0.006638641003519297, 0.01745440438389778, -0.01719672605395317, 0.00595375569537282, -0.005001019220799208, -0.0008230491075664759, 0.0014867436839267612, -0.008645829744637012, -0.010849668644368649, 0.006248731166124344, -0.013812984339892864, 0.0030362119432538748, 0.009147627279162407, -0.0007933820597827435, 0.0037431358359754086, 0.005824916064739227, 0.01638299971818924, 0.008801793679594994, -0.01064623799175024, -0.00040241252281703055, 0.03301011770963669, 0.0008747545653022826, -0.00654031615704298, -0.002598834689706564, -0.022947050631046295, -0.013148442842066288, -0.010422463528811932, -0.02122466452419758, -0.025510283187031746, 0.017061104997992516, -0.008889947086572647, 0.02019394561648369, -0.021645089611411095, -0.00794060155749321, 0.0026090063620358706, -0.01668136566877365, 0.03998102992773056, -0.000788720091804862, -0.005136640276759863, 0.027015674859285355, 0.01719672605395317, -0.03382384404540062, 0.00011241697939112782, 0.025523846969008446, 0.012463557533919811, -0.013867232948541641, 0.02024819515645504, -0.025740839540958405, 0.00846274197101593, 0.012646645307540894, 0.011398933827877045, -0.023882834240794182, 0.010212250985205173, -0.020058324560523033, -0.0030887650791555643, -0.034176457673311234, 0.027517473325133324, 0.012646645307540894, 0.003692277939990163, -0.002039398765191436, -0.0017969764303416014, -0.007343869656324387, -0.00494338059797883, -0.023720089346170425, -0.023191167041659355, -0.01843087561428547, -0.003895709291100502, 0.006180920638144016, 0.003419341053813696, -0.01409100741147995, 0.0015435349196195602, 0.017047543078660965, -0.03206077218055725, 0.00884248036891222, 0.21373847126960754, -0.018024012446403503, -0.007221810985356569, 0.02532041445374489, -0.0012604263611137867, 0.008354244753718376, 0.03604802489280701, 0.00116803462151438, -0.0017164514865726233, -0.002137723844498396, -0.0011468438897281885, 0.011690517887473106, -0.026242636144161224, 0.00934427697211504, -0.002219096291810274, 0.0024004892911762, -0.03897743672132492, -0.0027073314413428307, 0.0007442194619216025, -0.08343395590782166, 0.010212250985205173, -0.005428224802017212, -0.020709306001663208, -0.006204654462635517, 0.024913553148508072, -0.0008840785012580454, -0.01643724925816059, 0.0013468846445903182, 0.02738185226917267, 0.011019195429980755, -0.01763071119785309, -0.0036719348281621933, -0.012151629664003849, 0.001429952448233962, -0.0005225641070865095, 0.004719606135040522, 0.01974639669060707, 0.015162412077188492, 0.011914292350411415, -0.00975792109966278, 0.0008675496792420745, -0.0008162680896930397, 0.0025801868177950382, 0.020831365138292313, -0.01977352239191532, 0.030107831582427025, -0.0016172787873074412, -0.010076629929244518, -0.029022864997386932, 0.011080224066972733, -0.02686649188399315, 0.017603587359189987, 0.04692481830716133, 0.0069031016901135445, -0.00453990837559104, -0.010395338758826256, -0.0121651915833354, 0.011629489250481129, -0.024126950651407242, 0.015528588555753231, -0.0034159503411501646, 0.028344759717583656, -0.0013104365207254887, 0.02688005566596985, -0.008157595060765743, 0.010632675141096115, -0.01847156137228012, -0.002744627185165882, -0.000443734519649297, -0.025564532727003098, 0.0089509766548872, -0.014253752306103706, -0.0038346799556165934, 0.0022140105720609426, -0.004848445765674114, 0.0042890096083283424, 0.018512247130274773, -0.032955870032310486, 0.020885612815618515, 0.016735615208745003, 0.008869604207575321, -0.01943446882069111, 0.007154000457376242, -0.017522215843200684, -0.030650313943624496, -0.02970096841454506, 0.007988069206476212, -0.007411680184304714, -0.010096972808241844, 0.006245340686291456, -0.010035944171249866, -0.009127284400165081, 0.0021597621962428093, 0.001997017301619053, -0.0014079140964895487, -0.004556860774755478, 0.011717642657458782, 0.01038855779916048, 0.007215030025690794, -0.005729981232434511, -0.01447074580937624, -0.028778746724128723, 0.021211102604866028, 0.01100563257932663, -0.014050321653485298, 0.0012468643253669143, 0.012945011258125305, 0.00872720219194889, 0.010775077156722546, -0.01346037071198225, 0.016979731619358063, -0.003224385902285576, -0.004183903802186251, -0.014402935281395912, 0.004275447688996792, 0.010158002376556396, -0.03279312327504158, -0.005384148098528385, -0.0035091897007077932, 0.0002977301774080843, 0.012361841276288033, -0.013385779224336147, -0.0006297893705777824, 0.0034990182612091303, -0.01051739789545536, -0.013616334646940231, -0.03078593499958515, 0.008591581135988235, 0.0034345982130616903, -0.01567777246236801, 0.030433321371674538, -0.04052351415157318, -0.0017562902066856623, 0.012497462332248688, -0.008937414735555649, 0.018864862620830536, 0.0007781246677041054, -0.013799422420561314, 0.01848512329161167, 0.0009095073910430074, 0.0004628062015399337, -0.006533535197377205, 0.0007734626997262239, 0.004929818212985992, 0.005882554687559605, 0.0033328826539218426, 0.006937006954103708, -0.019393783062696457, -0.009791825897991657, -0.013548524118959904, -0.030162079259753227, -0.00844918005168438, 0.0017164514865726233, -0.008923852816224098, 0.014443621970713139, -0.003387131029739976, -0.029022864997386932, -0.0083474637940526, 0.007737169973552227, 0.0268936175853014, -0.026703746989369392, 0.025740839540958405, 0.029890837147831917, 0.010327528230845928, -0.004373773001134396, -0.015528588555753231, -0.1743541806936264, 0.029646720737218857, 0.007913477718830109, -0.028100643306970596, 0.05091207101941109, 0.01232115551829338, 0.03184377774596214, -0.0016579650109633803, -0.004862007685005665, -0.006041909568011761, 0.02130603790283203, -0.0012833124492317438, -0.0359124056994915, -0.029022864997386932, -0.001322303432971239, 0.0004602633125614375, -0.017088228836655617, 0.03154541179537773, 0.033199988305568695, 0.01565064676105976, -0.012978916056454182, -0.020668620243668556, 0.0166949275881052, 0.006950569339096546, -0.0017630711663514376, 0.009608738124370575, 0.0021885817404836416, 0.008259310387074947, -0.001207025721669197, -0.01947515644133091, -0.012517805211246014, 0.017481528222560883, -0.006289417389780283, 0.004000815562903881, 0.017820581793785095, 0.0011383675737306476, -0.013433245941996574, -0.009798606857657433, -0.006184311117976904, 0.005943584255874157, 0.016233816742897034, 0.0032769390381872654, 0.019407344982028008, 0.0025496722664684057, -0.002276735147461295, 0.0410931222140789, 0.002353021875023842, -0.005028143525123596, 0.0056757330894470215, -0.023760775104165077, 0.007920258678495884, -0.009561270475387573, 0.016518620774149895, 0.016545744612812996, 0.03824508190155029, 0.027341166511178017, 0.01715603843331337, -0.0005700314068235457, -0.01512172631919384, -0.02643250674009323, -0.0029887447599321604, -0.011554897762835026, -0.0007734626997262239, -0.009561270475387573, -0.010951384902000427, -0.018837736919522285, -0.0024276133626699448, 0.0045195650309324265, -0.034935932606458664, 0.013799422420561314, -0.014945418573915958, 0.010171564295887947, 0.03154541179537773, -0.01331796869635582, 0.0033752641174942255, 0.01871567964553833, -0.02381502278149128, 1.5032194824016187e-05, -0.0028632953763008118, -0.00211907597258687, -0.028887243941426277, 0.028832994401454926, -0.031626783311367035, -0.006899711210280657, 0.025957832112908363, 0.008530552498996258, 5.631444219034165e-05, -0.02225538343191147, -0.007960944436490536, -0.001561335171572864, 0.010436025448143482, -0.023150481283664703, 0.004255104344338179, -0.01999051496386528, 0.015759143978357315, 0.024140512570738792, 0.019936267286539078, -0.014294438995420933, -0.0012061779852956533, -0.021075481548905373, -0.003485456109046936, 0.00030387548031285405, -0.010544521734118462, 0.03542416915297508, 0.030026458203792572, 0.010598770342767239, -0.013453589752316475, 0.01551502663642168, 0.023747213184833527, 0.001668984186835587, -0.006682718172669411, -0.006808167323470116, 0.017644274979829788, 0.0010154611663892865, 0.018254568800330162, 0.03892318904399872, -0.014647052623331547, -0.01189394947141409, 0.026310447603464127, -0.00820506177842617, 0.05302775651216507, -0.01176510937511921, -0.014538556337356567, -0.00046916340943425894, -0.00935105886310339, -0.028616001829504967, -0.1127280592918396, -0.009513803757727146, -0.015786267817020416, 0.0067369663156569, -0.005404491443186998, 0.003066726727411151, 0.009073035791516304, -0.010341091081500053, 0.00633349409326911, 0.009113721549510956, -0.017467966303229332, -0.029836589470505714, -0.0014401240041479468, -0.010747953318059444, 0.025686591863632202, -0.029348354786634445, -0.003436293685808778, -0.016532182693481445, 0.009873198345303535, 0.030948679894208908, 0.003980472218245268, -0.019271723926067352, 0.010286842472851276, -0.023191167041659355, 0.02047874964773655, 0.006964131258428097, -0.031898025423288345, 0.012789047323167324, 0.02720554545521736, 0.017576463520526886, -0.019380221143364906, -0.005580798257142305, 0.02054656110703945, 0.007974506355822086, -0.008652610704302788, -0.009513803757727146, -0.017305221408605576, 0.00041237217374145985, 0.010280061513185501, -0.014280877076089382, 0.01763071119785309, 0.006418257486075163, 0.015718458220362663, -0.011358247138559818, -0.009025568142533302, 0.012734798714518547, -0.03151828795671463, 0.012517805211246014, 0.011100567877292633, -0.022377442568540573, -0.017508653923869133, 0.004322914872318506, -0.019854893907904625, -0.001027328078635037, 0.03284737095236778, -0.007669359911233187, 0.012144847773015499, 0.008544114418327808, 0.017834143713116646, -0.004994238261133432, 0.007838886231184006, 0.00936462078243494, -0.0007785485358908772, 0.046246714890003204, 0.013351873494684696, 0.006964131258428097, -0.02027531899511814, -0.041662730276584625, 0.0217671487480402, 0.00795416347682476, -0.0115413349121809, 0.024221885949373245, -0.00922221876680851, 0.016844110563397408, -0.010408900678157806, 0.009649423882365227, -0.01635587587952614, -0.0050450959242880344, 0.0068420725874602795, 0.000341383129125461, -0.011900730431079865, -0.030134955421090126, 0.01228724978864193, -0.0020444844849407673, 0.023977767676115036, 2.692550879146438e-05, 0.01510816439986229, -0.0001019275514408946, 0.014619928784668446, -0.015365843661129475, 0.010863230563700199, 0.013833328150212765, -0.004068625625222921, -0.01894623413681984, 0.005645218305289745, 0.026825806125998497, 0.013914700597524643, 0.016030386090278625, 0.006669155787676573, -0.009893542155623436, -0.025578094646334648, -0.0030277357436716557, -0.054926447570323944, 0.04426664859056473, -0.0020088839810341597, -0.0027480176649987698, 0.015718458220362663, -0.0004539060755632818, -0.009215437807142735, -0.014524994418025017, -0.013562086038291454, 0.014050321653485298, -0.011222626082599163, 0.02942972630262375, -0.015569275245070457, -0.016803424805402756, -0.007689702790230513, -0.018024012446403503, -0.01102597638964653, -0.006865805946290493, 0.005340071395039558, 0.006469115149229765, 0.0034345982130616903, 0.01129043661057949, 0.017739208415150642, -0.0013680754927918315, -0.021631527692079544, 0.007045503705739975, 0.002961620455607772, 0.02610701508820057, 0.013284062966704369, -0.018254568800330162, 0.01893267221748829, -0.025944270193576813, 0.01447074580937624, 0.003214214462786913, 0.015189536847174168, 0.012497462332248688, -0.020939860492944717, -0.0028259996324777603, 0.031057177111506462, 0.05782873556017876, -0.01026649959385395, -0.009452774189412594, 0.0006535230204463005, -0.02688005566596985, 0.002007188741117716, 0.027219107374548912, -0.019882017746567726, -0.002793789841234684, 0.014430060051381588, -0.002829390112310648, 0.021699337288737297, 0.03303724154829979, 0.0012027875054627657, -0.024045579135417938, -0.011032757349312305, -0.023204728960990906, 0.03612939640879631, 0.011934636160731316, 0.0009061169112101197, -0.030107831582427025, 0.031599659472703934, -0.02020750753581524, 0.016722051426768303, -0.018620744347572327, 0.020695744082331657, -0.023258978500962257, -0.001471486291848123, -0.014931856654584408, -0.02072286792099476, -0.026690185070037842, -0.010578427463769913, -0.00487896054983139, 0.004027939401566982, 0.023367473855614662, 0.014972543343901634, 0.009513803757727146, -0.014809798449277878, -0.007337088696658611, -0.009825731627643108, 0.019325973466038704, -0.0034159503411501646, -0.001372313592582941, -0.04179834946990013, 0.002180105308070779, 0.021387409418821335, -0.010456368327140808, -0.004170341417193413, -0.0022869068197906017, -0.003048078855499625, -0.004661967046558857, 0.010964946821331978, -0.004502612631767988, 0.0026581687852740288, -0.01693904586136341, 0.0269478652626276, 0.013073851354420185, -0.032657504081726074, 0.006330103613436222, 0.02921273373067379, 0.02590358443558216, -0.012151629664003849, 0.028344759717583656, -0.014321562834084034, -0.013365436345338821, -0.014280877076089382, 0.007689702790230513, -0.005373976659029722, -0.018580058589577675, 0.005428224802017212, 0.01204991340637207, 0.010408900678157806, -0.015162412077188492, 0.03998102992773056, 0.02353021875023842, -0.017779894173145294, 0.01745440438389778, 0.009900323115289211, -0.004482269287109375, -0.0017317088786512613, 0.03802809119224548, 0.010964946821331978, 0.02639181911945343, 0.013833328150212765, 0.005065439268946648, 0.019136102870106697, 0.017061104997992516, 0.020560123026371002, 0.025008486583828926, 0.00857123825699091, -0.015555712394416332, 0.007106533274054527, 0.010666580870747566, -0.03290162235498428, 0.011948198080062866, 0.007994850166141987, -0.04272057116031647, -0.009228999726474285, 0.02072286792099476, -0.018878424540162086, 0.024194762110710144, -0.0005272260750643909, -0.004658576566725969, 0.0028243043925613165, 0.011561678722500801, 0.01692548394203186, 0.005523159634321928, -0.003105717711150646, -0.0020173604134470224, -0.017305221408605576, -0.0049196467734873295, -0.024913553148508072, 0.030867308378219604, -0.015569275245070457, -0.010808982886373997, 0.0010747953783720732, -0.006130062974989414, 0.0192581620067358, -0.00665898434817791, -0.014660615473985672, 0.024154076352715492, 0.00047382537741214037, 0.030704563483595848, -0.0053705861791968346, -0.021726461127400398, -0.009296810254454613, 0.02788364887237549, 0.01048349216580391, 0.0069031016901135445, -0.044754885137081146, 0.010659799911081791, 0.02334035001695156, -0.007221810985356569, -0.010537740774452686, 0.021116167306900024, -0.01217875350266695, -0.0036278581246733665, -0.00468231039121747, 0.006319932173937559, -0.003746526315808296, -0.02796502225100994, 0.012755141593515873, -0.0179290771484375, -0.015216660685837269, 0.01204991340637207, -0.01719672605395317, -0.015976138412952423, 0.0020275318529456854, -0.01818675734102726], "f13b02ca-0937-4928-8c7c-7aa944292c98": [-0.0013111501466482878, -0.018217356875538826, 0.020145926624536514, -0.001624195952899754, 0.00032800433109514415, 0.020811907947063446, -0.014554460532963276, -0.004946296568959951, -0.006257446948438883, -0.022865349426865578, 0.03205033764243126, 0.01102337334305048, 0.02315671555697918, 0.011356364004313946, -0.008449634537100792, 0.004838768392801285, 0.041540566831827164, -0.006385786924511194, 0.05219626426696777, -0.018134107813239098, 0.006944239605218172, 0.00015739005175419152, -0.005518624093383551, 0.009184988215565681, -0.005310505162924528, 0.023642325773835182, 0.023697825148701668, -0.010440640151500702, 0.021380765363574028, -0.01954931765794754, -0.024710671976208687, 0.006774275563657284, 0.002866840222850442, -0.0033021559938788414, -0.026944482699036598, 0.009830157272517681, 0.0063684433698654175, -0.025459900498390198, 0.00967753678560257, 1.4389483112609014e-05, 0.0006100490572862327, -0.016413656994700432, -0.013971727341413498, 0.005345191340893507, -0.007221731822937727, 0.02751334197819233, 0.004589025396853685, -0.032022587954998016, -0.02289309725165367, 0.008872809819877148, 0.03132885694503784, 0.012910319492220879, -0.02047891728579998, 0.0030662876088172197, -0.0039611998945474625, 0.005879363976418972, 0.006753463763743639, 0.026902858167886734, -0.010482263751327991, 0.023975316435098648, 0.007367415353655815, -0.01288257073611021, 0.0031304575968533754, 0.011703229509294033, -0.01946607045829296, -0.01602516882121563, -0.017440378665924072, -0.024766169488430023, -0.0039646681398153305, -0.013250247575342655, 0.0398201160132885, 0.016441406682133675, -0.002291044220328331, 0.004696553573012352, 0.01974356174468994, -0.027860205620527267, -0.01899433322250843, -0.005803053267300129, -0.02085353061556816, 0.000312178599415347, 0.0058967070654034615, -0.022560106590390205, 0.013770544901490211, 0.01835610158741474, 0.022532358765602112, -0.029108921065926552, 0.0007644040160812438, 0.023142840713262558, -0.0054284390062093735, -0.016344284638762474, 0.007526973262429237, 0.0338817834854126, 0.013354307040572166, 0.015442434698343277, 0.0023690888192504644, 0.02537665143609047, -0.019063707441091537, 0.020784158259630203, -0.004824894014745951, -0.01357630081474781, -0.0272358488291502, -0.0031738157849758863, -0.017579123377799988, -0.0013007442466914654, -0.02212999388575554, 0.009844032116234303, 0.001142920576967299, -0.006056264974176884, 0.014443463645875454, -0.010482263751327991, -0.039514873176813126, 0.020506665110588074, -0.015914171934127808, -0.029691653326153755, -0.006642466876655817, -0.018591970205307007, 0.03268856927752495, -0.017398754134774208, -0.01871684193611145, -0.022296490147709846, -0.0023933693300932646, 0.004564744886010885, 0.0007856495212763548, -0.01798148825764656, 0.016080666333436966, 0.0021783129777759314, 0.007051767781376839, -0.030524130910634995, -0.008005646988749504, -0.0115852952003479, 0.02946966141462326, 0.008373323827981949, 0.00010682361607905477, -0.00903236772865057, -0.003510274924337864, 0.02641724795103073, -0.0274300929158926, 0.011800351552665234, -0.00047780669410713017, -0.035546738654375076, 0.015275940299034119, 0.010225583799183369, 0.00039152399403974414, -0.03798866644501686, -0.01778724417090416, 0.01658015325665474, 0.013361244462430477, 0.021047774702310562, -0.023115091025829315, -0.008123581297695637, 0.01724613457918167, -0.008172142319381237, 0.024294432252645493, -0.009975841268897057, 0.02464129775762558, -0.03318805620074272, 0.007790590636432171, -0.01231371145695448, 0.015775425359606743, -0.013687297701835632, 0.01796761341392994, 0.023878194391727448, 0.013375119306147099, 0.012528767809271812, 0.010863815434277058, 0.02464129775762558, 0.01935507357120514, -0.01732938177883625, -0.03143985569477081, -0.02147788740694523, 0.023295462131500244, 0.041263073682785034, -0.033021558076143265, 0.011391050182282925, -0.023212213069200516, 0.010794442147016525, 0.039154134690761566, 0.023683950304985046, -0.01477645430713892, 0.002488757250830531, -0.04253953695297241, -0.01899433322250843, 0.023475831374526024, 0.01880008913576603, -0.00907399132847786, -0.017731744796037674, -0.01107193436473608, -0.020978402346372604, 0.02260173112154007, 0.005938330665230751, 9.640411008149385e-06, 0.014651582576334476, -0.0149568235501647, -0.0299136471003294, -0.6384538412094116, -0.02206062152981758, -0.02113102376461029, -0.025224031880497932, -0.005685119424015284, -0.007908524945378304, 0.011682417243719101, -0.006573094055056572, -0.015123318880796432, -0.00020204893371555954, -0.020145926624536514, 0.023392584174871445, -0.005813459400087595, -0.03310480713844299, -0.021699881181120872, -0.0032657349947839975, -0.0025494585279375315, -0.01687151938676834, 0.0028009358793497086, -0.017260007560253143, -0.012383084744215012, 0.0036837076768279076, 0.005126666277647018, -0.00447109155356884, -0.011404925025999546, 0.012459395453333855, 0.0169408917427063, 0.0018609313992783427, 0.003430495969951153, 0.04717365652322769, -0.03021888993680477, 0.04159606620669365, 0.014485087245702744, 0.028387442231178284, 0.05336172878742218, 0.010579385794699192, -0.01816185750067234, 0.006063202396035194, 0.0037842984311282635, 0.015997419133782387, -0.02779083326458931, -0.011862787418067455, 0.020312421023845673, 0.007742029614746571, 0.007922399789094925, -0.01236920990049839, 0.02483554184436798, -0.015900297090411186, -0.007332728710025549, 0.021908000111579895, 0.011175993829965591, -0.006684090942144394, -0.019063707441091537, 0.012542642652988434, -0.014970698393881321, 0.006659810431301594, 0.04420449212193489, 0.0001455749588785693, 0.0005181297892704606, 0.001469840994104743, 0.014665457420051098, 0.022809850051999092, -0.01631653495132923, 0.00556024769321084, -0.012057031504809856, 0.007679593749344349, 0.0032293142285197973, 0.014748704619705677, 0.01167547982186079, -0.013451429083943367, 0.025529272854328156, 0.0065453448332846165, -0.006000766530632973, -0.011432674713432789, 0.015622804872691631, 0.013888479210436344, 0.04004210978746414, -0.022157743573188782, 0.0029483535327017307, 0.026944482699036598, 0.008664690889418125, -0.032744068652391434, -0.03288281336426735, -0.008151330053806305, 0.012750761583447456, -0.012681389227509499, -0.013680360279977322, 0.023961441591382027, -0.0004363996849860996, 0.012612015940248966, -0.008997681550681591, -0.0044225300662219524, 0.0018054329557344317, 0.0028876520227640867, 0.0455642007291317, 0.017676247283816338, -0.0007487950497306883, 0.018578095361590385, 0.005643495358526707, -0.0065557509660720825, -0.009705286473035812, -0.0032535947393625975, 0.007901587523519993, -0.00683324271813035, -0.010752818547189236, 0.004328876733779907, -0.041374072432518005, -0.004658398684114218, 0.04306677356362343, -0.020909029990434647, -0.01483195275068283, -0.02075640857219696, 0.00583427120000124, -0.01162691880017519, 0.01741262897849083, -0.028096074238419533, 0.02482166886329651, 1.7234860933967866e-05, 0.022088371217250824, 0.006358037702739239, 0.025224031880497932, -0.0024107126519083977, 0.015303689055144787, -0.00851900689303875, 0.02638949826359749, 0.032300081104040146, 0.01658015325665474, -0.0006070139352232218, -0.007929336279630661, -0.002710751025006175, 0.012612015940248966, 0.007797528058290482, 0.0020794563461095095, 0.004113820381462574, 0.029136670753359795, -0.023101216182112694, 0.02029854618012905, -0.004373969044536352, 0.03002464398741722, -0.031106863170862198, 0.0002603656321298331, 0.008220703341066837, 0.02093677781522274, 0.019202452152967453, -0.01824510470032692, -0.014048037119209766, -0.011391050182282925, -0.0050260755233466625, -0.0344645194709301, 0.027124851942062378, -0.0121819032356143, -0.00018448889022693038, 0.0032206426840275526, 0.002526912372559309, 0.013125375844538212, -0.00982321985065937, -0.02315671555697918, 0.012057031504809856, 0.012501019053161144, -0.006645935587584972, 0.007610220927745104, 0.005480468738824129, -0.01816185750067234, 0.006052796263247728, 0.012063968926668167, -0.02261560596525669, -0.015719927847385406, 0.031356606632471085, 0.00137185154017061, -0.02844293974339962, -0.003655958455055952, -0.02557089738547802, 0.005587996914982796, 0.03843265399336815, -0.005608809180557728, 7.29500679881312e-05, -0.011800351552665234, -0.019244076684117317, -0.005515155382454395, 0.01881396397948265, -0.0014308185782283545, 0.003812047652900219, -0.011737915687263012, -0.012501019053161144, 0.02762433886528015, 0.012001533061265945, -0.013173936866223812, -0.004256035201251507, 0.019937807694077492, 0.03010789304971695, -0.00019587039423640817, 0.005622683558613062, -0.000456994806881994, -0.00024367275182157755, 0.007970960810780525, -0.002143626334145665, 0.008845060132443905, 0.018938835710287094, 0.0028442940674722195, 0.017537500709295273, 0.020881280303001404, 0.015706053003668785, 0.03235557675361633, 0.00542150205001235, -3.6881516280118376e-05, -0.03010789304971695, 0.00458555668592453, -0.008047270588576794, 0.029719403013586998, -0.02140851505100727, 0.010211708955466747, -0.02908117137849331, -0.00421441113576293, -0.014623833820223808, 0.004814487881958485, 0.022185493260622025, 0.013118438422679901, 0.008907495997846127, -0.006295601837337017, -0.01408272422850132, 0.02566801942884922, -0.013042128644883633, -0.004093008581548929, -0.00704136211425066, -0.013819105923175812, -0.02009042724967003, -0.002561599016189575, 0.033215802162885666, 0.008782625198364258, -0.00136578141245991, 0.015719927847385406, 5.162328670849092e-05, -0.004696553573012352, 0.013930102810263634, 0.008512070402503014, -0.001488918554969132, 0.016247162595391273, -0.005705931223928928, 0.03660120815038681, -0.0459526926279068, -0.00426297215744853, -0.0029951801989227533, 0.0122304642572999, -0.015400811098515987, -0.012459395453333855, 0.005265412386506796, 0.010905439034104347, -0.002849496901035309, 0.010738943703472614, 0.03837715834379196, -0.008956057019531727, -0.005570653825998306, -0.012348398566246033, 0.002670861314982176, 0.019507694989442825, -0.03948712348937988, -0.006104825995862484, 0.010600198060274124, 0.024613548070192337, 0.01963256485760212, 0.012528767809271812, -0.00016465253429487348, 0.02844293974339962, 0.0075408476404845715, 0.042761530727148056, 0.022740477696061134, -0.002989977365359664, 0.027138726785779, -0.02410018816590309, -0.018175732344388962, -0.020728658884763718, -0.013132313266396523, 0.011800351552665234, 0.003494666190817952, 0.010565511882305145, 0.0025407869834452868, -0.0024003065191209316, 0.005435376428067684, 0.008602255024015903, -0.003985480405390263, -0.012022345326840878, -0.02389206923544407, 0.019785186275839806, -0.009739972651004791, 0.004804081749171019, -0.011682417243719101, -0.010052151046693325, -0.006472503300756216, -0.022018996998667717, 0.04770088940858841, -0.02121427096426487, 0.015539557673037052, 0.02787408046424389, -0.01759299822151661, -0.00676040118560195, 0.011987658217549324, 0.019063707441091537, -0.01723225973546505, 0.037489183247089386, 0.0028078730683773756, 0.0028217476792633533, 0.005914050154387951, -0.02583451382815838, 0.01676052249968052, -0.005334785673767328, 0.0035068064462393522, -0.004016697872430086, -0.01963256485760212, -0.00010449311957927421, -0.017273882403969765, -0.011959909461438656, -0.017482001334428787, -0.004713897127658129, 0.000895779172424227, -0.006697965320199728, 0.0037079881876707077, -0.019854558631777763, 0.006406598724424839, 0.019993305206298828, 0.0032535947393625975, 0.00023738581512589008, -0.021644383668899536, -0.00546312564983964, 0.0018297134665772319, 0.093070849776268, 0.00618113623932004, -0.032105837017297745, 0.0004292455851100385, -0.005990360397845507, 0.005029544234275818, -0.016441406682133675, -0.027388470247387886, 0.010496138595044613, 0.0027280941139906645, 0.03102361597120762, -0.008699377067387104, 0.03049638122320175, 0.0028859179001301527, -0.005830802489072084, -0.017828866839408875, -0.016066791489720345, -0.0014429589500650764, -0.008706314489245415, -0.002806138712912798, -0.012008470483124256, 0.013548551127314568, 0.010218646377325058, 0.01592804677784443, -0.04292802885174751, -0.008144392631947994, 0.03457551449537277, 0.007637970149517059, 0.008560631424188614, -0.023850444704294205, -0.005272349808365107, 0.02797120250761509, 0.022823724895715714, 0.016441406682133675, -0.026569867506623268, -0.005307036451995373, 0.013895416632294655, 0.007804465014487505, -0.002377760363742709, -0.004224817268550396, 0.015262065455317497, 0.016469156369566917, 0.016635650768876076, -0.009622038342058659, 0.00120448914822191, 0.0035120092798024416, -0.0028252163901925087, -0.005414564628154039, -0.03354879468679428, 0.008817311376333237, 0.03698969632387161, -0.009053179994225502, -0.022948596626520157, -0.022199368104338646, 0.02464129775762558, -0.00040192995220422745, -0.008269264362752438, -0.009802408516407013, -0.0025234436616301537, 0.024877166375517845, -0.0012556517031043768, -0.009857906959950924, -0.009275172837078571, -0.001600782503373921, -0.006618186365813017, -0.017828866839408875, -0.0350472517311573, -0.01658015325665474, -0.02780470810830593, 0.010197834111750126, -0.019202452152967453, -0.004880392458289862, -0.019521569833159447, -0.0026292377151548862, 0.008685502223670483, 0.013839918188750744, 0.026153629645705223, -0.010732007212936878, -0.0004791074607055634, -0.007284167688339949, -0.021755380555987358, -0.04570294916629791, -0.006455159746110439, -0.021436264738440514, -0.00917805079370737, -0.003732268698513508, 0.009934216737747192, 0.01731550693511963, -0.049060601741075516, -0.0006000766297802329, -0.005029544234275818, 0.010815254412591457, -0.007332728710025549, -0.010995624586939812, 0.000534605875145644, 0.00260669132694602, -0.0013111501466482878, 0.0021210801787674427, 0.008047270588576794, -0.019493820145726204, 0.015997419133782387, -0.03224458172917366, 0.0014863170217722654, -0.021380765363574028, 0.004068728070706129, -0.01542856078594923, 0.009400044567883015, 0.032744068652391434, -0.003947325050830841, -0.008324762806296349, 0.00959428958594799, -0.028401315212249756, 0.013777482323348522, 0.0002863805275410414, -0.007617157883942127, 0.018661342561244965, 0.01974356174468994, 0.01236920990049839, 0.006038921885192394, -0.0015175349544733763, -0.015317563898861408, -0.03837715834379196, -0.008928308263421059, -0.010697320103645325, -0.024849416688084602, -0.011911348439753056, 0.014637707732617855, -0.013347369618713856, 0.012161090970039368, 0.007367415353655815, 0.001878274604678154, 0.012549580074846745, 0.01658015325665474, -0.014401840046048164, -0.02261560596525669, -0.007200920023024082, -0.009462480433285236, 0.007471474818885326, -0.0029258073773235083, -0.004228285979479551, -0.01296581793576479, -0.010627946816384792, -0.011384113691747189, -0.03279956430196762, -0.013146188110113144, -0.02955290861427784, -0.012535705231130123, -0.007790590636432171, 0.020534414798021317, -0.004193599335849285, -0.008914433419704437, -0.02955290861427784, -0.034048281610012054, 0.006028515752404928, -0.004939359147101641, -0.038682397454977036, -0.0014108738396316767, -0.0005307036335580051, 0.005442313849925995, 0.00024193842546083033, 0.0372394397854805, -0.00369411357678473, 0.008359448984265327, 0.007943211123347282, -0.006885272450745106, -0.003316030604764819, -0.0027506405021995306, -0.03310480713844299, -0.04198455438017845, -0.003950793761759996, 0.01631653495132923, 0.0023326678201556206, 0.015262065455317497, -0.022768227383494377, -0.007929336279630661, 0.039792366325855255, -0.011973784305155277, -0.012299837544560432, -0.01972968876361847, -0.03751693293452263, -0.02566801942884922, -0.008373323827981949, -0.014748704619705677, 0.004061790648847818, -0.01218884065747261, 0.0019545848481357098, 0.05436070263385773, -0.0017967612948268652, -0.0028269507456570864, -0.004928953479975462, 0.02787408046424389, -0.01537306234240532, 0.012979692779481411, 0.011307802982628345, 0.023406459018588066, -0.01677439734339714, 0.010634884238243103, 0.014790329150855541, 0.008956057019531727, -0.0143602155148983, 0.011175993829965591, -0.010052151046693325, -0.01649690419435501, -0.009885655716061592, -0.012209651991724968, -0.004023635294288397, -0.023115091025829315, -0.02935866452753544, 0.01798148825764656, -0.025418275967240334, -0.013056003488600254, -0.014887451194226742, 0.003971605561673641, -0.031467605382204056, -0.02038179524242878, 0.0015175349544733763, -0.010655696503818035, 0.014596084132790565, -0.005442313849925995, -0.019937807694077492, 0.009573477320373058, -0.00833170022815466, 0.04301127418875694, 0.006441285368055105, 0.012612015940248966, -0.0014993244549259543, -0.02362845279276371, 0.0056192148476839066, 0.00426297215744853, 0.004623712040483952, -0.02065928652882576, 0.0169408917427063, 0.008095831610262394, -0.015345312654972076, 0.004772863816469908, -0.015275940299034119, 0.01171710342168808, -0.0338817834854126, -0.037183940410614014, 0.008782625198364258, -0.0007379555609077215, -0.019105330109596252, -0.006392724346369505, 0.0031963621731847525, -0.03679545223712921, 0.0031980962958186865, 0.0044329361990094185, 0.01584479957818985, -0.008741000667214394, -0.014720955863595009, -0.03141210600733757, 0.00512319803237915, 0.007235606200993061, 0.02509916014969349, 0.02966390550136566, -0.02759658917784691, -0.03318805620074272, 0.007443725597113371, -0.016538528725504875, -0.0005653901607729495, 0.0015305423876270652, 0.022671103477478027, 0.00022611269378103316, 8.200108277378604e-05, 0.01338205672800541, -0.0003681106027215719, -0.009011555463075638, 0.010759755969047546, -0.029136670753359795, 0.022351987659931183, 0.0230734683573246, 0.010100712068378925, 0.007284167688339949, 0.015803175047039986, 0.007762841414660215, 0.011613043956458569, 0.002377760363742709, -0.0001658448891248554, -0.02462742291390896, 0.011821162886917591, 0.008019521832466125, 0.010801379568874836, -0.0005454454221762717, -0.007554722484201193, -0.01873071677982807, -0.004582088440656662, 0.0014048037119209766, -0.0051474785432219505, 0.009982777759432793, -0.030135640874505043, -0.029969146475195885, 0.003791235852986574, -0.02827644534409046, 0.030080143362283707, -0.0004895133897662163, 0.009469417855143547, 0.01098174974322319, 0.03640696406364441, -0.011835037730634212, 0.030773872509598732, -0.006586968433111906, 0.002934478921815753, -0.02333708480000496, 0.01214027963578701, -0.00259455107152462, -0.01477645430713892, 0.008831186220049858, -0.022116120904684067, -0.02206062152981758, -0.0012842681026086211, 0.02529340423643589, 0.013846855610609055, 0.012799322605133057, 0.012910319492220879, 0.010745881125330925, -0.0013770544901490211, 0.014804203063249588, -0.014929074794054031, -0.016524653881788254, 0.018772339448332787, 0.025584770366549492, 0.006729183252900839, 0.003884889418259263, -0.01649690419435501, 0.017662372440099716, 0.025126909837126732, 0.013770544901490211, 0.003621271811425686, -0.03132885694503784, 0.00486651761457324, -0.001569564687088132, 0.019119204953312874, 0.009746910072863102, 5.587780469795689e-05, -0.023212213069200516, -0.02056216448545456, -0.03019114024937153, 0.001340633723884821, 0.014554460532963276, -0.01631653495132923, 0.018383851274847984, 0.01943832077085972, -0.004311533644795418, -0.0009053179528564215, -0.002532115438953042, 0.006201948504894972, 0.002317059086635709, 0.0010761490557342768, -0.03304930776357651, -0.0017464659176766872, -0.014887451194226742, 0.032855063676834106, -0.0022320770658552647, -0.017204510048031807, -0.015858672559261322, -0.016621775925159454, -0.03632371500134468, -0.008838123641908169, -0.017107388004660606, 0.02204674668610096, 0.04045834764838219, 0.02065928652882576, -0.003933450672775507, 0.018134107813239098, -0.020326295867562294, 0.006514126900583506, -0.002088128123432398, -0.00783221423625946, 0.0017308569513261318, 0.004210942424833775, -0.012473269365727901, 0.006271321326494217, -0.0025165064726024866, 0.006451691035181284, 0.020326295867562294, -0.0028373566456139088, 0.005296630319207907, 0.016052918508648872, -0.003749612020328641, 0.003132191952317953, -0.002157500945031643, -0.007936273701488972, 0.016094541177153587, 0.01246633194386959, 0.00747841177508235, -0.013056003488600254, -0.027998952195048332, -0.005341722629964352, 0.0012218323536217213, -0.021450139582157135, -0.02669473923742771, 0.012126404792070389, -0.005886300932615995, 0.008095831610262394, -0.014720955863595009, -0.001074414700269699, -0.010031339712440968, -0.032466575503349304, 0.046729668974876404, -0.0018453224329277873, -0.007991772145032883, 0.04295577481389046, 0.00973303522914648, -0.027013855054974556, -0.013888479210436344, 0.018480973318219185, 0.026167504489421844, -0.028692683205008507, 0.015983544290065765, -0.01612229086458683, 0.024669047445058823, 0.0024627423845231533, 0.0022025934886187315, -0.02279597520828247, 0.013964789919555187, -0.023656200617551804, 0.0007301510777324438, -0.02074253372848034, 0.02361457794904709, 0.030080143362283707, 0.0032969529274851084, 0.000355103169567883, -0.0010293222730979323, -0.017717869952321053, 3.246440610382706e-05, -0.016413656994700432, -0.030995866283774376, -0.008699377067387104, -0.007707342971116304, 0.002441930351778865, -0.0013423679629340768, -0.022768227383494377, -0.005962611176073551, 0.004304596222937107, -0.036656707525253296, 0.012209651991724968, 0.21577785909175873, -0.018328353762626648, -0.007409038953483105, 0.02011817693710327, -0.00718010775744915, -0.010059088468551636, 0.013312683440744877, -0.017024140805006027, -0.01083606667816639, -0.010204771533608437, -0.008865872398018837, 0.0320780873298645, -0.01092625129967928, 0.004023635294288397, 0.005664307624101639, -0.0034929318353533745, -0.03232783079147339, -0.0011403190437704325, -0.0036351464223116636, -0.06881804019212723, -0.0008368120761588216, -0.0073188538663089275, -0.008186017163097858, -0.016413656994700432, 0.019882308319211006, 0.0057961163111031055, -0.017301632091403008, 0.0016293989028781652, 0.018966585397720337, 0.009226611815392971, -0.02891467697918415, -0.0027887956239283085, -0.0024870228953659534, -0.0069581144489347935, -0.011814226396381855, 0.010072963312268257, 0.016455281525850296, 0.0014715752331539989, 0.009746910072863102, -0.017856616526842117, 0.00338366930373013, 0.00020063979900442064, 0.00020074818166904151, 0.013042128644883633, -0.006427410524338484, 0.03132885694503784, -0.01227208785712719, -0.034131526947021484, -0.016163915395736694, 0.012501019053161144, -0.030274387449026108, 0.024322181940078735, 0.050448063760995865, 0.022157743573188782, -0.004353157244622707, -0.02103390172123909, -0.019396698102355003, 0.004478028509765863, -0.010752818547189236, 0.010079900734126568, -0.013721983879804611, 0.01631653495132923, -0.005698993802070618, 0.010919313877820969, -0.021908000111579895, 0.005914050154387951, -0.012147216126322746, -0.004106882959604263, 0.009053179994225502, -0.0336875393986702, 0.009282110258936882, -0.007360477931797504, 0.0011810756986960769, -0.010267207399010658, -0.015678303316235542, 0.0022112650331109762, 0.009968903847038746, -0.023142840713262558, 0.014200657606124878, 0.007277230266481638, 0.029497409239411354, -0.01696864143013954, 0.010600198060274124, -0.00743678817525506, -0.020784158259630203, -0.028234820812940598, 4.501116927713156e-05, -0.002655252581462264, -0.01631653495132923, 0.006625123787671328, -0.011515921913087368, -0.014859701506793499, -0.005563716404139996, 0.005144009832292795, 0.007159295957535505, -0.0023933693300932646, 0.00027445703744888306, 0.013583238236606121, -0.005310505162924528, -0.0025841451715677977, -0.014929074794054031, -0.010995624586939812, 0.027013855054974556, 0.009302922524511814, -0.01759299822151661, 0.005112791899591684, 0.004925484769046307, 0.010197834111750126, 0.008512070402503014, -0.00902543030679226, 0.019049832597374916, -0.0003936919092666358, -0.0016146571142598987, -0.016413656994700432, 0.008324762806296349, 0.015303689055144787, -0.028775930404663086, -0.00971916038542986, -0.0010267207399010658, 0.014623833820223808, 0.006264383904635906, -0.013028253801167011, 0.0003936919092666358, -0.006319882348179817, -0.013812169432640076, -0.011231492273509502, -0.03585197776556015, 0.014568335376679897, -0.0059660798870027065, -0.01925795152783394, 0.03671220317482948, -0.03180059418082237, -0.0121333422139287, 0.0010804848279803991, -0.007402101531624794, 0.01843935064971447, 0.005931393709033728, -0.018397726118564606, 0.015539557673037052, 0.0028338879346847534, -0.0027506405021995306, 0.004436404909938574, -0.00321023678407073, -0.007568596862256527, -0.00833170022815466, 0.009282110258936882, 0.01613616570830345, -0.010558574460446835, -0.01097481232136488, -0.02380882203578949, -0.04234529286623001, -0.0005294028669595718, -0.006850586272776127, -0.012348398566246033, 0.01805086061358452, -0.002377760363742709, -0.0261397548019886, -0.027860205620527267, 0.00978159625083208, 0.02891467697918415, -0.043316517025232315, 0.022018996998667717, 0.019660314545035362, 0.002291044220328331, -0.019785186275839806, -0.018383851274847984, -0.17848291993141174, 0.025432150810956955, 0.00768653117120266, -0.0041311634704470634, 0.045730698853731155, 0.016455281525850296, 0.0075408476404845715, -0.00783221423625946, 0.001822776161134243, -0.011051123030483723, 0.028179321438074112, 0.011363301426172256, -0.039875615388154984, -0.03085712157189846, -0.016274912282824516, 0.004571682307869196, -0.018369976431131363, 0.025348903611302376, 0.037572428584098816, 0.020548289641737938, -0.0011576623655855656, -0.007610220927745104, 0.018772339448332787, -0.00833863765001297, -0.005823865532875061, 0.012174965813755989, -0.0026223002932965755, 0.025459900498390198, -0.001012846129015088, -0.03449226915836334, -0.03343779593706131, 0.014665457420051098, -0.005542904604226351, -0.001334563596174121, 0.020867405459284782, 0.021172646433115005, -0.01032964326441288, -0.021366890519857407, -0.009844032116234303, 0.0011082340497523546, 0.02129751816391945, 0.0031356606632471085, 0.007575534284114838, 0.013708109967410564, -0.0018938835710287094, 0.041540566831827164, -0.0027887956239283085, -0.006711840163916349, 0.012105592526495457, -0.02251848392188549, 0.014485087245702744, -0.00576836708933115, 0.02880368009209633, 0.00848432071506977, 0.040264103561639786, 0.0169408917427063, 0.012979692779481411, -0.0006863593589514494, -0.03513050079345703, -0.014346341602504253, 0.00484223710373044, -0.008213765919208527, 0.01232064887881279, -0.014290843158960342, 0.009323734790086746, -0.011918285861611366, -0.010801379568874836, 0.004505777731537819, -0.023850444704294205, 0.0031027086079120636, 0.00037743261782452464, 0.008303950540721416, 0.023461956530809402, 0.0007431585108861327, -0.0016215944197028875, 0.008692439645528793, -0.013839918188750744, 0.003028132487088442, -0.015317563898861408, -0.014117410406470299, -0.030912619084119797, 0.032105837017297745, -0.02194962464272976, -0.012292900122702122, 0.009191925637423992, 0.013173936866223812, -0.0019372416427358985, -0.0261397548019886, -0.01631653495132923, 0.012563454918563366, 0.007755903992801905, -0.02686123549938202, -0.003087099641561508, -0.010725069791078568, 0.011189868673682213, 0.012265150435268879, 0.009441668167710304, -0.015109444968402386, -0.01157835777848959, -4.514666215982288e-05, 0.015178817324340343, -0.003749612020328641, -0.006118700839579105, 0.01752362586557865, 0.024502551183104515, 0.015192692168056965, -0.010308830998837948, 0.011890536174178123, 0.021602759137749672, 0.005397221073508263, -0.008609192445874214, 0.02009042724967003, 0.005362534895539284, -0.004876923747360706, 0.02269885316491127, 0.029330914840102196, 0.00034101176424883306, -0.015581181272864342, 0.01343755517154932, -0.017121262848377228, 0.05827334150671959, -0.0035432272125035524, -0.015914171934127808, 0.007207856979221106, -0.008144392631947994, -0.023753322660923004, -0.12065356224775314, -0.0054388451389968395, -0.007658781949430704, 0.005983423441648483, 0.014207595027983189, 0.005008732434362173, 0.008678565733134747, 0.012001533061265945, -0.00451965257525444, -0.0036837076768279076, -0.02361457794904709, -0.035713233053684235, -0.006427410524338484, 0.009864844381809235, 0.008172142319381237, -0.03837715834379196, -0.010066025890409946, -0.024058565497398376, 0.00678468169644475, 0.038321658968925476, 0.014720955863595009, -0.014498962089419365, 0.01891108602285385, -0.030968118458986282, 0.024974288418889046, -0.006233165971934795, -0.022365862503647804, 0.009302922524511814, 0.0273329708725214, 0.0285261869430542, -0.02308734320104122, 0.0004366164794191718, 0.011495109647512436, 0.004054853226989508, -0.001984068425372243, -0.004408655688166618, -0.04928259551525116, 0.0009460746077820659, 0.01953544281423092, -0.01972968876361847, 0.01487357635051012, -0.009053179994225502, 0.012806260026991367, -0.00032908827415667474, -0.005310505162924528, -0.005640026647597551, -0.02844293974339962, 0.012563454918563366, 0.005900175776332617, -0.020506665110588074, -0.022116120904684067, -0.0024679452180862427, -0.031994838267564774, 0.009441668167710304, 0.041179828345775604, -0.0033090931829065084, 0.022379737347364426, 0.012119467370212078, -0.01658015325665474, -0.008165204897522926, -0.017995363101363182, 0.023572953417897224, -0.005622683558613062, 0.03352104499936104, 0.018397726118564606, 0.0004461552598513663, -0.009559602476656437, -0.03143985569477081, 0.028942424803972244, 0.0029483535327017307, -0.01842547580599785, 0.022546233609318733, -0.017648497596383095, 0.007332728710025549, -0.027166476473212242, 0.011259241960942745, -0.02724972367286682, -0.014235344715416431, 0.018009237945079803, -0.0032397201284766197, -0.005959142930805683, -0.02472454495728016, 0.00474511506035924, -0.004210942424833775, 0.030274387449026108, 0.011182931251823902, 0.013943977653980255, -0.009795471094548702, -0.0013128845021128654, 0.003144332207739353, -0.016455281525850296, 0.02103390172123909, -0.003701050765812397, -0.029996896162629128, 0.00843575969338417, 0.025792891159653664, 0.02863718383014202, 0.01101643592119217, -0.008213765919208527, -0.011356364004313946, -0.027110977098345757, 0.0054388451389968395, -0.04659092426300049, 0.03826615959405899, -0.0022199368104338646, 0.008442697115242481, -0.0069581144489347935, -0.005130134988576174, 0.006652873009443283, -0.009670599363744259, -0.01107193436473608, 0.018550345674157143, -0.01873071677982807, 0.043871499598026276, -0.01542856078594923, -0.02020142413675785, -0.017773369327187538, -0.013902354054152966, -0.004706959705799818, -0.006243572104722261, 0.009968903847038746, 0.008310887962579727, 0.005376409273594618, -0.0012148950481787324, 0.036379214376211166, 0.01116905640810728, -0.021422389894723892, 0.005608809180557728, 0.0016458750469610095, 0.02120039612054825, -0.006257446948438883, -0.02064541168510914, 0.020395668223500252, -0.03243882581591606, -0.0034998690243810415, 0.007853026501834393, 0.016163915395736694, 0.022199368104338646, -0.02602875791490078, 0.0015062617603689432, 0.030551880598068237, 0.05474919080734253, -0.022310364991426468, -0.0008320427150465548, -0.00046740073594264686, -0.02325383760035038, 0.005289692897349596, 0.031273357570171356, -0.019507694989442825, 0.009885655716061592, 0.01780111715197563, -0.017537500709295273, 0.001933773048222065, 0.025917761027812958, 0.010614072903990746, -0.027915704995393753, -0.01152979675680399, -0.02780470810830593, 0.02047891728579998, -0.008616129867732525, -0.011342489160597324, -0.02539052627980709, 0.02131139300763607, -0.017093513160943985, 0.009094803594052792, -0.01241777092218399, 0.03094036877155304, -0.010156210511922836, -0.015386936254799366, -0.009455543011426926, -0.021838627755641937, -0.02382269687950611, -0.0019112267764285207, -0.00642047356814146, -0.0014308185782283545, 0.012168028391897678, 0.008033395744860172, 0.008019521832466125, 0.002539052627980709, -0.00523766316473484, -0.028886927291750908, 0.005827334243804216, -0.0013250247575342655, -0.016163915395736694, -0.03518599644303322, -0.0033992782700806856, 0.013132313266396523, -0.005948736798018217, 0.008616129867732525, -0.004235222935676575, 0.007936273701488972, 0.009961966425180435, 0.013146188110113144, -0.006666747387498617, -0.004373969044536352, -0.01843935064971447, 0.02212999388575554, 0.012951944023370743, -0.027846332639455795, 0.0030541473533958197, 0.028553936630487442, 0.020603789016604424, -0.024599675089120865, 0.02530727908015251, -0.011689354665577412, -0.009358420968055725, 0.0016545465914532542, 0.007651844527572393, -0.007894650101661682, -0.026084257289767265, -0.0022632949985563755, 0.03299380838871002, 0.0115852952003479, -0.0035362897906452417, 0.016330409795045853, 0.020798033103346825, -0.002551192883402109, 0.021547261625528336, 0.02333708480000496, -0.0028269507456570864, 0.0032449231948703527, 0.04181805998086929, -0.0019424447091296315, 0.027485592290759087, 0.01974356174468994, 0.016899269074201584, 0.040153104811906815, 0.02342033199965954, 0.01092625129967928, 0.02521015703678131, 0.0006915623089298606, 0.0004522253875620663, 0.012813197448849678, 0.00016389376833103597, -0.05233500897884369, 0.00912255235016346, 0.00542150205001235, -0.042289797216653824, -0.01909145526587963, 0.01551180798560381, -0.018120232969522476, 0.02214386872947216, 0.003919575829058886, -0.017995363101363182, 0.01102337334305048, 0.013083752244710922, 0.02214386872947216, 0.006704902742058039, 0.0013631798792630434, 0.013104564510285854, -0.031467605382204056, 0.0013319620629772544, -0.016732772812247276, 0.02278210036456585, -0.004103414248675108, -0.011085809208452702, 0.011300865560770035, 0.004256035201251507, 0.02798507735133171, -0.00048344326205551624, -0.015359187498688698, 0.02687511034309864, 0.011828100308775902, 0.026902858167886734, -0.0013978664064779878, -0.0037079881876707077, -0.007159295957535505, 0.029719403013586998, 0.014929074794054031, 0.0005805654800496995, -0.041179828345775604, 0.010294957086443901, 0.01888333633542061, -0.002285841153934598, -0.011002562008798122, 0.019244076684117317, -0.023642325773835182, 0.0027541089802980423, -0.02020142413675785, -0.0038189850747585297, 0.0032969529274851084, -0.02212999388575554, 0.009504104033112526, -0.021103274077177048, -0.020909029990434647, 0.029580658301711082, -0.018758466467261314, -0.00958735216408968, -0.0020673160906881094, -0.023323209956288338], "a0c3e794-d4d9-4f13-ad96-69923bf15366": [0.0047865076921880245, -0.029341360554099083, 0.007308858446776867, 0.001732874778099358, -0.01014898531138897, 0.03437282145023346, -0.01829862780869007, -0.01808677613735199, -0.019702140241861343, -0.019185753539204597, 0.020946765318512917, 0.007911309599876404, 0.018854737281799316, -0.0007907171966508031, -0.011122176423668861, -0.00027908882475458086, 0.03818613663315773, -0.005822591483592987, 0.04443574324250221, -0.0211188942193985, 0.015398917719721794, -0.0037570446729660034, -0.004045029636472464, 0.022668054327368736, -0.0016517755575478077, 0.019503530114889145, 0.021383708342909813, -0.009553154930472374, 0.021238060668110847, -0.019384363666176796, -0.00190500367898494, 0.0027126853819936514, 0.008593205362558365, 0.005091043654829264, -0.0339491181075573, 0.013485638424754143, 0.003872900502756238, -0.02588554099202156, 0.016630301252007484, -0.01055944710969925, 0.00574314733967185, -0.007613394409418106, -0.013810034841299057, 0.010632270947098732, -0.013796794228255749, 0.014816327020525932, 0.01396892312914133, -0.027620069682598114, -0.023144718259572983, 0.0026746185030788183, 0.008917601779103279, -0.0005929344333708286, -0.006590551231056452, 0.014419106766581535, -0.013373092748224735, -0.008566724136471748, 0.011592220515012741, 0.03198949620127678, -0.02957969158887863, 0.039112985134124756, 0.007070526015013456, -0.004094682168215513, 0.008467418141663074, 0.022535646334290504, -0.0187488105148077, -0.01657733879983425, -0.01837807148694992, -0.013485638424754143, -0.008672649040818214, -0.021714724600315094, 0.0339491181075573, 0.01015560608357191, -0.00362463784404099, 0.01693483628332615, 0.03368430584669113, -0.02017880603671074, -0.03699447587132454, -0.008030476048588753, -0.012015921995043755, 0.011618701741099358, -0.00479974877089262, -0.03699447587132454, -0.005839142482727766, 0.008824917487800121, 0.026838870719075203, -0.014710402116179466, 0.010526345111429691, 0.022085463628172874, -0.014961974695324898, -0.02780544012784958, 0.009129452519118786, 0.030533021315932274, 0.02215166762471199, 0.01616687700152397, -0.0115855997428298, 0.0228137020021677, -0.004323083907365799, 0.01095004752278328, 0.0031314222142100334, -0.026057669892907143, -0.021767687052488327, -0.0011775934835895896, -0.013757072389125824, -0.0052400012500584126, -0.022456202656030655, 0.02272101677954197, -0.010956667363643646, -0.015306232497096062, -4.931638250127435e-05, -0.016087433323264122, -0.014339663088321686, 0.02227083407342434, -0.01611391454935074, -0.04303222894668579, -0.014803086407482624, -0.03876872733235359, 0.016497895121574402, -0.009705422446131706, -0.028970619663596153, -0.015412158332765102, 0.010890464298427105, 0.0067494395188987255, 0.0012164879590272903, -0.03116857446730137, 0.0020787876565009356, 0.016511134803295135, 0.0056008100509643555, -0.032916344702243805, 0.009619357995688915, -0.011823932640254498, 0.027620069682598114, 0.007130109239369631, 0.010936806909739971, -0.01531947311013937, -0.0016319145215675235, 0.02272101677954197, -0.022337036207318306, 0.00516717741265893, -0.006041062995791435, -0.028652843087911606, 0.022323796525597572, 0.010532965883612633, 0.004534934647381306, -0.04146982729434967, -0.00670640729367733, 0.015372436493635178, 0.017994092777371407, 0.012724298983812332, -0.02280046045780182, 0.004809678997844458, 0.014551513828337193, -0.014842809177935123, 0.030956722795963287, 0.0017279095482081175, 0.037100400775671005, -0.016418449580669403, 0.018179461359977722, -0.016630301252007484, 0.012088745832443237, -0.009089730679988861, 0.031036168336868286, 0.009533293545246124, 0.007361821364611387, -0.018550200387835503, -0.001454820390790701, 0.02452174946665764, 0.014405866153538227, -0.022164907306432724, -0.032836899161338806, -0.006845434661954641, 0.01208212599158287, 0.03318115696310997, -0.02436286211013794, 0.0059847901575267315, -0.02690507285296917, 0.008990425616502762, 0.03413448855280876, 0.018894458189606667, -0.020112602040171623, 0.007831865921616554, -0.028149697929620743, -0.010903704911470413, 0.03466411679983139, 0.014127811416983604, -0.0072029330767691135, -0.007441265508532524, -0.0078053842298686504, -0.005335996393114328, 0.02399212308228016, 0.011559118516743183, 0.017398260533809662, 0.012009302154183388, -0.0013877893798053265, -0.023700827732682228, -0.6376714110374451, -0.016630301252007484, -0.011929857544600964, -0.001454820390790701, 0.002909640781581402, -0.008248947560787201, 0.02424369566142559, 0.007639875635504723, -0.01218143105506897, -0.013088418170809746, -0.012015921995043755, 0.017504187300801277, 0.006944739725440741, -0.0337107852101326, -0.018881218507885933, -0.010579307563602924, 0.0014233737019822001, -0.018311869353055954, -0.0016286043683066964, -0.027514144778251648, -0.007487607654184103, -0.002007619012147188, -0.0009839484700933099, -0.0008813331369310617, -0.01400864589959383, 0.0042635006830096245, 0.027990810573101044, 0.004879192914813757, 0.014617716893553734, 0.03453170880675316, -0.027699515223503113, 0.03495541214942932, 0.026110632345080376, 0.013770313002169132, 0.04742813482880592, 0.003174454439431429, -0.01494873408228159, -0.004654101096093655, 0.007262516301125288, 0.012525688856840134, -0.018920939415693283, -0.01714668795466423, 0.029632654041051865, -0.004028478637337685, 0.011108935810625553, -0.00037777330726385117, 0.021913334727287292, -0.001853695954196155, 0.018629644066095352, 0.022178148850798607, 0.023528698831796646, -0.01181069202721119, -0.016153637319803238, 0.009016906842589378, -0.014617716893553734, 0.009870931506156921, 0.04311167448759079, -0.0042800516821444035, -0.007580292411148548, -0.003219141624867916, 0.006223122123628855, 0.026653500273823738, -0.015412158332765102, 0.0029626034665852785, -0.021145375445485115, 0.019093068316578865, -0.015226788818836212, 0.01199606154114008, 0.025461839511990547, -0.018881218507885933, 0.011234722100198269, 0.0007054802845232189, 0.008229086175560951, -0.017120206728577614, 0.016272801905870438, 0.005236691329628229, 0.031804125756025314, -0.017464464530348778, 0.01179083064198494, 0.024230454117059708, 0.007454506121575832, -0.014776605181396008, -0.035458557307720184, -0.018391313031315804, 0.010817640461027622, -0.018815014511346817, -0.008301910012960434, 0.027593588456511497, -0.009420747868716717, 0.00996361579746008, -0.0025389015208929777, 0.004385977052152157, 0.012227773666381836, 0.016458172351121902, 0.04782535880804062, 0.025832578539848328, 0.0021003037691116333, -0.011439952068030834, 0.010215189307928085, -0.00816288311034441, -0.019053347408771515, -0.014670680277049541, 0.006951360031962395, -0.006633583456277847, 0.0018106637289747596, 0.010109263472259045, -0.034319858998060226, -0.010466761887073517, 0.056670136749744415, -0.012353559955954552, -0.005431991536170244, -0.010327734984457493, -0.009526673704385757, -0.016961319372057915, 0.01829862780869007, -0.022257592529058456, 0.03177764639258385, 0.010923565365374088, 0.014061608351767063, 0.003149628173559904, 0.027328776195645332, -0.009705422446131706, 0.015478361397981644, -0.018920939415693283, 0.03360486030578613, 0.03924539312720299, 0.01513410359621048, -0.007269136607646942, -0.0057563879527151585, -0.010228429920971394, -6.97204886819236e-05, -0.0044356295838952065, 0.01524002943187952, 0.005355857312679291, 0.010288013145327568, -0.011658423580229282, 0.029500247910618782, 0.009089730679988861, 0.018073536455631256, -0.01575641520321369, -0.0029923950787633657, -0.00479974877089262, 0.023356569930911064, 0.022098705172538757, -0.011625322513282299, -0.03445226326584816, 0.003439268097281456, -0.007004322949796915, -0.04504481330513954, 0.0019612766336649656, -0.012764020822942257, -0.005806040484458208, -0.007845106534659863, -0.017729278653860092, 0.008043716661632061, -0.011075833812355995, -0.01494873408228159, 0.006792471744120121, 0.0007898896583355963, -0.011142036877572536, 0.013770313002169132, 0.005650462582707405, -0.029791543260216713, 0.017239373177289963, 0.02219138853251934, -0.024998415261507034, -0.0029890849255025387, 0.03879521042108536, -0.013624665327370167, -0.02891765721142292, 0.005832522176206112, -0.007818625308573246, 0.007421404588967562, 0.032174866646528244, -0.007454506121575832, 0.0028417822904884815, -0.0010294633684679866, -0.014617716893553734, 0.006775920744985342, 0.01570345275104046, -0.015531324781477451, 0.020615747198462486, 0.010493243113160133, -0.0023469114676117897, 0.026560815051198006, -0.008255567401647568, -0.03487596660852432, 0.008248947560787201, 0.0077193197794258595, 0.018073536455631256, 0.00516717741265893, 0.010638890787959099, -0.0023568421602249146, 0.005425370763987303, 0.005177108105272055, -0.0012611753772944212, 0.008301910012960434, 0.021595558151602745, 0.0059516881592571735, 0.005163867492228746, 0.0083482526242733, 0.021754447370767593, 0.025051377713680267, 0.0004377701843623072, 0.013280407525599003, -0.013472397811710835, 0.006223122123628855, -0.004683892708271742, 0.03831854462623596, -0.021754447370767593, 0.0028732288628816605, -0.023939160630106926, -0.004796438384801149, -0.019702140241861343, 0.014697161503136158, 0.028520436957478523, 0.003012255998328328, 0.004899053834378719, -0.0023982191924005747, 0.003002325538545847, 0.014405866153538227, -0.018483998253941536, -0.004846090916544199, -0.027673033997416496, -0.003043702570721507, -0.00988417211920023, 0.00889774039387703, 0.037259288132190704, 0.014021886512637138, -0.0007319616852328181, 0.008944083005189896, 0.000818439875729382, 0.005567708518356085, 0.008824917487800121, 0.001458130544051528, 0.019251957535743713, 0.021754447370767593, -0.00785834714770317, 0.04541555047035217, -0.04027816653251648, -0.005511435680091381, -0.008990425616502762, 0.007255895994603634, -0.017001040279865265, -0.014366144314408302, -9.977063746191561e-05, 0.0044356295838952065, -0.009798107668757439, 0.009341304190456867, 0.014207256026566029, -0.003119836561381817, -0.017371779307723045, -0.013419435359537601, -0.008990425616502762, 0.017133448272943497, -0.04573332890868187, -0.004283362068235874, 0.016219839453697205, 0.014591235667467117, 0.019582973793148994, 0.013584943488240242, 0.0027325465343892574, 0.021423429250717163, 0.020615747198462486, 0.059371236711740494, -0.019410844892263412, 0.007931170985102654, 0.015650490298867226, -0.011069213040173054, -0.03514077886939049, -0.026428408920764923, -0.009447229094803333, 0.020205287262797356, 0.0007973375613801181, -0.012399902567267418, 0.010076161473989487, 0.010804399847984314, -0.006610412150621414, 0.002434631111100316, -0.005441921763122082, -0.013505499809980392, -0.01808677613735199, 0.025912022218108177, 0.010585928335785866, 0.0031347323674708605, -0.02001991681754589, -0.014842809177935123, -0.00969880260527134, -0.01870908960700035, 0.04737517237663269, -0.02399212308228016, 0.01599474810063839, 0.013287028297781944, -0.006454834248870611, 0.00613374775275588, -0.005978169851005077, 0.021608799695968628, -0.021079171448946, 0.03929835557937622, 0.0046474807895720005, 0.003242312930524349, 0.014670680277049541, -0.014816327020525932, 0.022058982402086258, 0.014723642729222775, 0.0016997730126604438, 0.004488592501729727, -0.014220496639609337, 0.00555777782574296, -0.013095038011670113, -0.014750123955309391, -0.03651781007647514, -0.0057100458070635796, -0.003515402087941766, 0.00137620372697711, -0.0020489960443228483, -0.014445587992668152, -0.0035915360786020756, 0.023555180057883263, -0.0115855997428298, -0.016140395775437355, 0.004227088764309883, -0.0007468574331142008, 0.0007452023564837873, 0.09951699525117874, 0.019040105864405632, -0.025369154289364815, 0.00482953991740942, -0.009718663059175014, 0.01550484262406826, -0.022906387224793434, -0.026348965242505074, 0.01849723793566227, 0.0005577639094553888, 0.019331401214003563, -0.020072879269719124, 0.022668054327368736, -0.002494214102625847, -0.002719305921345949, -0.024866007268428802, -0.007070526015013456, -0.004141024313867092, -0.013187723234295845, 0.013929201290011406, 0.0041774362325668335, 0.0010981493396684527, 0.01571669429540634, 0.024256937205791473, -0.019503530114889145, -0.0137173505499959, 0.033207640051841736, 0.011539258062839508, 0.016352247446775436, -0.025448597967624664, -0.013955682516098022, 0.02543535828590393, 0.02580609731376171, 0.022628331556916237, -0.009354544803500175, 0.007580292411148548, 0.001805698499083519, 0.03138042613863945, -0.010532965883612633, 0.0035385731607675552, 0.009381026029586792, 0.013982163742184639, 0.00967894122004509, -0.028043773025274277, 0.00354850385338068, 0.003207556204870343, -0.0115855997428298, -0.0033515486866235733, -0.03598818555474281, 0.0009227102855220437, 0.04017224162817001, -0.0036842208355665207, -0.03498189151287079, -0.013651147484779358, 0.018152980133891106, 0.009182415902614594, -0.0017030831659212708, -0.008474038913846016, 0.005196969024837017, 0.030824316665530205, -0.0062429835088551044, 0.00014502689009532332, 0.009162554517388344, 0.0009624323574826121, -0.004683892708271742, -0.015518084168434143, -0.0339491181075573, -0.01915927231311798, -0.035220224410295486, 0.02309175580739975, -0.020496580749750137, -0.0063124969601631165, -0.014141052030026913, 0.009056628681719303, 0.0002761924406513572, 0.0022161598317325115, 0.016842152923345566, -0.00200927397236228, -0.009255239740014076, -0.010671992786228657, -0.01947704888880253, -0.02661377750337124, 0.004217158537358046, -0.022006019949913025, -0.016630301252007484, -0.0016898425528779626, 0.01792788878083229, 0.013929201290011406, -0.02358166128396988, 0.004978497978299856, -0.02099972777068615, 0.019040105864405632, 0.007070526015013456, -0.010771297849714756, 0.004131094086915255, -0.006726268213242292, 0.00871237087994814, -0.005580949131399393, -0.0010815985733643174, -0.019146030768752098, 0.006613722536712885, -0.026971276849508286, -0.014167534187436104, -0.023409532383084297, 0.011651803739368916, -0.003047012723982334, 0.015451880171895027, 0.01751742698252201, -0.023250645026564598, -0.01427345909178257, 0.012002681382000446, -0.02276073954999447, 0.01062565017491579, -0.008487279526889324, -0.0016517755575478077, 0.017729278653860092, 0.01755714975297451, 0.010102643631398678, 0.010453521274030209, -0.0023618072737008333, -0.0047004432417452335, -0.04094019904732704, 0.006971220951527357, -0.019424086436629295, -0.02588554099202156, -0.0034955409355461597, 0.017451222985982895, 0.0007489263080060482, 0.014670680277049541, 0.008864639326930046, 0.0006272774771787226, 0.014101330190896988, 0.022257592529058456, -0.013300268910825253, -0.031486351042985916, 0.006487936247140169, -0.006259534042328596, 0.004316463600844145, -0.01841779425740242, 0.00537240831181407, -0.023118237033486366, -0.024045085534453392, -0.01624632067978382, -0.03151283040642738, -0.010771297849714756, -0.02031121216714382, -0.020483341068029404, 0.0020854079630225897, 0.009089730679988861, -0.020602507516741753, -0.015147344209253788, -0.03688855096697807, -0.012916289269924164, -0.0016964628593996167, -0.0002054375217994675, -0.027090443298220634, -0.0017941129626706243, -0.01513410359621048, 0.012512448243796825, 0.006838814355432987, 0.03286338225007057, -0.01677594892680645, 0.0062429835088551044, 0.004508453421294689, -0.0018106637289747596, 0.0002509523765183985, -0.02727581188082695, -0.029765062034130096, -0.02862636186182499, -0.01759687066078186, 0.026878591626882553, 0.01179083064198494, 0.017689555883407593, -0.010738195851445198, -0.0016848772065714002, 0.03572336956858635, -0.013538600876927376, -0.01449855137616396, -0.02477332390844822, -0.045256663113832474, -0.027964327484369278, 0.005398889537900686, -0.01820594258606434, -0.007401543203741312, -0.012115227058529854, 0.002125130034983158, 0.055557917803525925, 0.017001040279865265, -0.00030929414788261056, -0.0046143787913024426, 0.007454506121575832, -0.02817617915570736, 0.01445882860571146, 0.00889774039387703, 0.019463807344436646, 0.004683892708271742, 0.024336380884051323, 0.00039846188155934215, 0.01150615606456995, -0.0037371835205703974, 0.01513410359621048, -0.00660379184409976, -0.005213520023971796, -0.014975215308368206, -0.027964327484369278, 0.011062593199312687, -0.03010931983590126, -0.02420397289097309, 0.037020958960056305, -0.015981508418917656, -0.00910959206521511, 0.0038298682775348425, 0.011128796264529228, -0.032386716455221176, -0.02264157310128212, 0.0032340374309569597, 0.007063905708491802, 0.010082782246172428, -0.008480659686028957, -0.022125186398625374, 0.0006752749904990196, -0.020324451848864555, 0.039351318031549454, 0.012168190442025661, 0.026600537821650505, -0.008030476048588753, -0.030294688418507576, 0.007818625308573246, -0.00022074705339036882, 0.005819281563162804, -0.017954370006918907, 0.030956722795963287, 0.017120206728577614, -0.007514089345932007, 0.005753078032284975, -0.011545877903699875, 0.011075833812355995, -0.04115205258131027, -0.031036168336868286, 0.009791486896574497, -0.011175138875842094, -0.017054002732038498, -0.0015292991884052753, -0.0008229913655668497, -0.03288986161351204, 0.026282761245965958, 0.007825245149433613, 0.022098705172538757, -0.006044372916221619, -0.011598840355873108, -0.01870908960700035, 0.01771603710949421, 0.013770313002169132, 0.02252240665256977, 0.02997691184282303, -0.02973858080804348, -0.03453170880675316, -0.021132133901119232, -0.017279094085097313, -0.003720632754266262, 0.005676943808794022, 0.018854737281799316, 0.0008002339745871723, 0.000973190413787961, 0.009606117382645607, -6.682408275082707e-05, 0.001757701043970883, 0.009136073291301727, -0.030903760343790054, 0.023806752637028694, 0.016762707382440567, 0.010751436464488506, -0.0038530395831912756, 0.016789190471172333, 0.012538929469883442, 0.00035336081054992974, -0.005839142482727766, 0.014723642729222775, -0.012671336531639099, 0.004895743448287249, 0.0021896783728152514, 0.018920939415693283, -0.0005122490110807121, -0.004601138178259134, -0.01583586074411869, -0.008672649040818214, 0.006640203762799501, 0.009142693132162094, 0.004101302474737167, -0.03972205892205238, -0.0378153994679451, 0.008076818659901619, -0.029314877465367317, 0.02453499101102352, -0.007322099059820175, 0.010969907976686954, 0.0015044729225337505, 0.03516726195812225, -0.024548230692744255, 0.030691910535097122, -0.01505465991795063, 0.006739508826285601, -0.02420397289097309, 0.00881829671561718, -0.0052565522491931915, -0.010764677077531815, 0.02403184399008751, -0.01437938492745161, -0.017318816855549812, 0.007123488932847977, 0.035670407116413116, 0.011089074425399303, 0.013459157198667526, 0.021754447370767593, -0.002095338422805071, 0.001014567562378943, 0.0252632275223732, -0.012433003634214401, -0.040675386786460876, 0.021476391702890396, 0.020787876099348068, -0.005435301456600428, 0.0012644855305552483, -0.03225431218743324, 0.022999070584774017, 0.02170148305594921, 0.018656127154827118, 0.01486929040402174, -0.04335000365972519, 0.002838471904397011, -0.017451222985982895, 0.009533293545246124, 0.002893089782446623, 0.0006508624646812677, -0.009731903672218323, -0.019291678443551064, -0.01396892312914133, -0.007269136607646942, 0.013068556785583496, -0.021688243374228477, 0.018470756709575653, 0.011122176423668861, -0.01091032475233078, -0.0014597856206819415, -0.005332686007022858, -0.0021714724134653807, 0.011909997090697289, -0.0031099061015993357, -0.025938503444194794, -0.027620069682598114, -0.018854737281799316, 0.039351318031549454, -0.008758713491261005, -0.008368113078176975, -0.023184441030025482, -0.01792788878083229, -0.040251683443784714, -0.011029491201043129, 0.0001703703892417252, 0.023475736379623413, 0.030162282288074493, 0.00978486705571413, 0.001732874778099358, 0.02156907692551613, -0.03116857446730137, 0.008169502951204777, -0.004955326672643423, -0.027302294969558716, 0.0024677328765392303, 0.005233380943536758, -0.015332713723182678, -2.031682470260421e-06, -0.02054954506456852, 0.009592876769602299, 0.014776605181396008, -0.015120862983167171, 0.0064680748619139194, 0.011155277490615845, -0.005574328824877739, 0.009837829507887363, -0.0024098048452287912, 0.0010410489048808813, 0.016087433323264122, 0.018722329288721085, 0.006415112409740686, -0.010777918621897697, -0.019251957535743713, -0.005335996393114328, -0.011764349415898323, -0.026190076023340225, -0.027911365032196045, 0.004908984061330557, -0.009745144285261631, 0.005276413168758154, -0.011757728643715382, -0.007540570572018623, -0.025607487186789513, -0.019265197217464447, 0.05651124566793442, -0.006703097373247147, -0.002234365791082382, 0.030585983768105507, 0.011598840355873108, -0.02350221760571003, -0.012664715759456158, 0.009897412732243538, 0.01800733245909214, -0.012717679142951965, 0.01652437634766102, -0.02242972142994404, 0.030003393068909645, -0.009672321379184723, 7.344442565226927e-05, -0.008891120553016663, 0.0014771639835089445, -0.01179083064198494, 0.0024644227232784033, -0.02756710723042488, 0.01722613163292408, 0.036941513419151306, 0.0010716679971665144, -0.01333337090909481, -0.0029659136198461056, -0.021092412993311882, 0.016140395775437355, -0.009844450280070305, -0.012519068084657192, 0.007090387400239706, 0.009553154930472374, 0.002156576607376337, 0.003291965462267399, -0.011863654479384422, -0.0021102342288941145, 0.013174482621252537, -0.03953668847680092, 0.005994720384478569, 0.20846135914325714, -0.019781583920121193, 0.0026431719306856394, 0.013757072389125824, 0.005749767646193504, 0.01095004752278328, 0.01804705522954464, -0.010473382659256458, -0.00446211127564311, -0.01953001134097576, -0.0008482314296998084, 0.0209202840924263, 0.0020556163508445024, 0.0027954396791756153, 0.00881829671561718, -0.010301253758370876, -0.029632654041051865, 0.0006864467868581414, -0.00996361579746008, -0.07324747741222382, -0.0015814343933016062, -0.01722613163292408, -0.010804399847984314, -0.001688187476247549, 0.012406522408127785, 0.0017841823864728212, -0.024190733209252357, -0.00263489643111825, 0.03482300415635109, 0.008189364336431026, -0.03461115434765816, 0.003915932960808277, -0.008268808014690876, -0.013479017652571201, -0.014975215308368206, 0.011764349415898323, 0.018589923158288002, 0.004207227844744921, 0.008579964749515057, -0.01751742698252201, 0.006590551231056452, 0.0024793182965368032, 0.00354850385338068, -0.009467090480029583, -0.006249603815376759, 0.040463536977767944, -0.01693483628332615, -0.011744488030672073, -0.02580609731376171, 0.003694151295349002, -0.028493955731391907, 0.008692510426044464, 0.04499185085296631, 0.010195327922701836, 0.011949718929827213, -0.03204245865345001, -0.0022889836691319942, 0.006957980338484049, -0.014803086407482624, -0.012135088443756104, -0.0188282560557127, 0.014630957506597042, -0.008182743564248085, 0.013280407525599003, -0.017398260533809662, 0.018483998253941536, -0.01132078655064106, 0.008149642497301102, 0.017385020852088928, -0.025276469066739082, 0.0083482526242733, -0.011188379488885403, -0.005408820230513811, -0.0041774362325668335, -0.015292991884052753, -0.007136729545891285, 0.016749467700719833, -0.022456202656030655, 0.003257208736613393, -0.0034160970244556665, 0.018113257363438606, -0.01747770607471466, 0.01960945501923561, -0.013267166912555695, -0.01206226460635662, -0.03482300415635109, 0.0033449281472712755, -0.006047683302313089, -0.013770313002169132, 0.007871587760746479, -0.019172513857483864, -0.022588610649108887, -0.005382338538765907, -0.01742474175989628, 0.0020307900849729776, -0.0017345298547297716, 0.009381026029586792, 0.030003393068909645, 0.010572687722742558, -0.000901194172911346, -0.004270120989531279, -0.012088745832443237, 0.03625299781560898, 0.011737868189811707, -0.023290365934371948, -0.010678612627089024, 0.006494556553661823, 0.005081112962216139, 0.012154949828982353, -0.02346249483525753, 0.026878591626882553, -0.0044356295838952065, 0.0019232096383348107, -0.016881873831152916, 0.007017563562840223, 0.030983204022049904, -0.026322484016418457, -0.018060294911265373, 0.011989440768957138, 0.01275740098208189, 0.014525032602250576, -0.024296658113598824, 0.000928503111936152, 0.005878864321857691, -0.015253270044922829, -0.01083088107407093, -0.034319858998060226, 0.015782898291945457, -0.010797779075801373, -0.019132791087031364, 0.020814357325434685, -0.026600537821650505, -0.00613043736666441, -0.005855693481862545, -0.010638890787959099, 0.010718335397541523, -0.013889479450881481, -0.02144991047680378, 0.01931815966963768, -0.015478361397981644, -0.004111232701689005, -0.007480987347662449, 0.0056405323557555676, 0.0011147002223879099, -0.010096022859215736, 0.0008482314296998084, 0.01359818410128355, -0.029870986938476562, -0.013015594333410263, -0.016643542796373367, -0.016881873831152916, -0.010188708081841469, -0.010539585724473, -0.011234722100198269, 0.003065218683332205, -0.007924550212919712, -0.02005963958799839, -0.02764655277132988, 0.0030519780702888966, 0.030374133959412575, -0.026190076023340225, 0.019040105864405632, 0.038530394434928894, -0.011386989615857601, -0.01866936683654785, -0.0045216940343379974, -0.16725634038448334, 0.009083110839128494, 0.01611391454935074, -0.013982163742184639, 0.031804125756025314, 0.022866664454340935, 0.021502872928977013, -0.0008862984250299633, 0.0012462795712053776, -0.005547847133129835, 0.024905730038881302, 0.024866007268428802, -0.041575752198696136, -0.03683558851480484, -0.011089074425399303, 0.007236034609377384, -0.01081101968884468, 0.013214204460382462, 0.025197025388479233, 0.017318816855549812, 0.004001997411251068, -0.0039192428812384605, 0.012068885378539562, -0.0028086805250495672, -0.0020192046649754047, 0.0012479346478357911, -0.0005966583848930895, 0.017490945756435394, 0.005468403454869986, -0.026587296277284622, -0.018020574003458023, 0.01109569426625967, -0.006461454555392265, -0.021079171448946, 0.007527329958975315, 0.01015560608357191, -0.019424086436629295, -0.01226749550551176, -0.0005143178859725595, 0.021423429250717163, 0.015491602011024952, -0.0007613394409418106, 0.02608415111899376, 0.007706079166382551, 0.010023199021816254, 0.030215244740247726, -0.01640520989894867, 0.006431662943214178, 0.006673305761069059, -0.014816327020525932, 0.02062898874282837, 0.0055544679053127766, 0.01644493080675602, 0.0062098815105855465, 0.04178760573267937, -0.008467418141663074, 0.008805056102573872, 0.0031628687866032124, -0.017292335629463196, -0.013915960676968098, 0.0029046754352748394, -0.0007174796774052083, 0.014141052030026913, -0.01697455905377865, 0.014961974695324898, -0.017292335629463196, -0.013167861849069595, 0.023316847160458565, -0.01931815966963768, 0.010711714625358582, 0.012002681382000446, 0.014617716893553734, 0.029923949390649796, 0.0033962358720600605, 0.004667341709136963, 0.0007352718384936452, -0.008540241979062557, 0.009089730679988861, -0.012068885378539562, -0.008599825203418732, -0.045918699353933334, 0.03270449489355087, -0.01273753959685564, -0.0024743531830608845, -0.0012694507604464889, 0.015862341970205307, -0.00401854794472456, -0.03196301683783531, -0.017212891951203346, 0.004885813221335411, 0.004276741296052933, -0.02062898874282837, -0.026269519701600075, -0.006434973329305649, 0.009612738154828548, 0.010678612627089024, 0.01648465357720852, -0.02287990413606167, -0.006481315474957228, -0.00034860242158174515, 0.012055644765496254, -0.010671992786228657, -0.006805712357163429, 0.023184441030025482, 0.028493955731391907, -0.003012255998328328, -0.009076490066945553, 0.00432639429345727, 0.02070843242108822, 0.014975215308368206, -0.004680582322180271, 0.022999070584774017, 0.005038080736994743, 0.005263172555714846, 0.018444275483489037, 0.039271872490644455, -0.006683235988020897, -0.016378728672862053, 0.014723642729222775, -0.008666029199957848, 0.06170159578323364, -0.016881873831152916, -0.022469444200396538, 0.0008622996392659843, -0.012247634120285511, -0.03437282145023346, -0.10661400109529495, -0.004442249890416861, 0.009314822033047676, 0.012068885378539562, 0.009381026029586792, 0.018272146582603455, -0.000663689395878464, 0.019516771659255028, -0.01359818410128355, -0.0003415683167986572, -0.009533293545246124, -0.04146982729434967, -0.0031628687866032124, 0.00918903574347496, 0.014842809177935123, -0.03196301683783531, 0.00035274014226160944, -0.029261915013194084, 0.005915276240557432, 0.030533021315932274, -0.0006161056808196008, -0.016828911378979683, 0.016881873831152916, -0.0378153994679451, 0.01624632067978382, -0.016948077827692032, -0.028335068374872208, 0.00407151086255908, 0.02029797062277794, 0.02197953872382641, -0.007169831544160843, -0.00918903574347496, 0.009526673704385757, -0.0029559831600636244, 0.00200927397236228, -0.006792471744120121, -0.05362477898597717, -5.398424036684446e-07, 0.018934180960059166, -0.045230183750391006, 0.007388302590698004, -0.005736527033150196, 0.030771354213356972, -0.014657438732683659, 0.002408149652183056, -0.017623351886868477, -0.027328776195645332, 0.001482129213400185, 0.021065931767225266, -0.03951020538806915, -0.017464464530348778, 0.005408820230513811, -0.03288986161351204, -0.013492259196937084, 0.016458172351121902, -0.00853362213820219, 0.028361549600958824, 0.003033772110939026, -0.034108005464076996, 0.003349893493577838, -0.015888823196291924, 0.014405866153538227, -0.006878536194562912, 0.026600537821650505, 0.020576026290655136, -0.004637550096958876, -0.012519068084657192, -0.022509165108203888, 0.02115861512720585, 0.007394922897219658, -0.011413470841944218, 0.0027292363811284304, -0.0271963682025671, 0.016603820025920868, -0.013174482621252537, 0.007507469039410353, -0.02391267940402031, -0.015253270044922829, 0.018020574003458023, -0.001895073102787137, -0.005193659104406834, -0.030003393068909645, -0.0018222493818029761, 0.010824260301887989, 0.008553482592105865, 0.009063249453902245, 0.0034028561785817146, -0.021423429250717163, -0.0018255595350638032, -0.00881829671561718, -0.005259862635284662, 0.019966954365372658, -0.00965907983481884, -0.03132746368646622, 0.004058270249515772, 0.03461115434765816, 0.02997691184282303, 0.013267166912555695, -0.007355201058089733, -0.01494873408228159, -0.02050982229411602, 0.020946765318512917, -0.05852383002638817, 0.028493955731391907, 0.012174810282886028, -0.0042800516821444035, 0.0017725968500599265, 0.007361821364611387, 0.0168553926050663, -0.01726585440337658, -0.01169152557849884, 0.01726585440337658, -0.002173127606511116, 0.038662802428007126, -0.004369426518678665, -0.019874269142746925, -0.01735853962600231, 0.005739837419241667, 0.0025306260213255882, -0.016948077827692032, -0.0007199622923508286, 0.01320758368819952, 0.015690213069319725, 0.005478333681821823, 0.034770041704177856, 0.004111232701689005, -0.013181102462112904, -0.002891434822231531, 0.0031065959483385086, 0.00464417040348053, -0.0011395264882594347, -0.016948077827692032, 0.012459484860301018, -0.033525414764881134, -0.010566066950559616, 0.009248618967831135, 0.005776249337941408, 0.008977185003459454, -0.029685618355870247, -0.01042041927576065, 0.007441265508532524, 0.03752410411834717, -0.007639875635504723, -0.009592876769602299, -0.012578651309013367, -0.01437938492745161, 0.006017891690135002, 0.021092412993311882, -0.013426055200397968, 0.015928544104099274, 0.018894458189606667, -0.007573672104626894, 0.002231055637821555, 0.023475736379623413, 0.01964917778968811, -0.01648465357720852, -0.008553482592105865, -0.02592526189982891, 0.023038793355226517, -0.007030804175883532, 0.0036544292233884335, -0.03839799016714096, 0.014260218478739262, -0.022787220776081085, 0.010188708081841469, 0.01074481662362814, 0.027673033997416496, -0.020814357325434685, -0.010526345111429691, 0.0027424769941717386, -0.026269519701600075, -0.02166176214814186, 0.00560743035748601, 0.001011257409118116, -0.007917930372059345, 0.01714668795466423, 0.024111289530992508, 0.01449855137616396, 0.012101986445486546, -0.0031761093996465206, -0.03503485396504402, 0.005395579617470503, -0.004978497978299856, -0.003714012447744608, -0.030771354213356972, -0.008930842392146587, 0.028599880635738373, -0.008672649040818214, 0.012982492335140705, 0.013862998224794865, 0.005375718232244253, 0.014167534187436104, 0.02584581822156906, -0.009917273186147213, -0.0018520408775657415, -0.015001696534454823, 0.0028351617511361837, 0.016789190471172333, -0.014366144314408302, 0.004429009277373552, 0.01644493080675602, 0.02891765721142292, -0.020205287262797356, 0.007361821364611387, 0.002070512156933546, -0.014392625540494919, 0.0042105382308363914, 0.007560431491583586, -0.01599474810063839, -0.03670318052172661, -0.005799420177936554, 0.02965913526713848, 0.01661706157028675, -0.007315478753298521, 0.025144062936306, 0.021833891049027443, -0.010751436464488506, -0.0024710430298000574, 0.007606774102896452, -0.009619357995688915, -0.009685561992228031, 0.03405504301190376, -0.0033482383005321026, 0.025739893317222595, 0.013479017652571201, 0.01800733245909214, 0.025792855769395828, 0.014816327020525932, 0.014048367738723755, 0.035908740013837814, 0.004336324520409107, -9.521914762444794e-05, 0.009063249453902245, 0.0027573728002607822, -0.05545199289917946, 0.0019215545617043972, 0.0030966654885560274, -0.04250260069966316, 0.0009582946076989174, -0.00023564283037558198, -0.021185096353292465, 0.04086075723171234, 0.014061608351767063, -0.024256937205791473, 0.015081141144037247, -3.6023975553689525e-05, 0.03288986161351204, 0.009381026029586792, 0.0008846432901918888, -0.00613043736666441, -0.0207216739654541, 0.01197620015591383, -0.010016579180955887, 0.015226788818836212, -0.02029797062277794, -0.009010287001729012, 0.014313180930912495, 0.011294305324554443, 0.03426689654588699, -0.004412458743900061, -0.02244296297430992, 0.024495268240571022, 0.0006574828294105828, 0.01780872233211994, -0.003694151295349002, 0.003932483494281769, 0.0023651174269616604, 0.038080211728811264, 0.012823604047298431, 0.008308530785143375, -0.0374976210296154, 0.005120835267007351, 0.006137057673186064, -0.0015127483056858182, -0.008017235435545444, 0.024468787014484406, -0.001850385800935328, 0.006137057673186064, -0.02029797062277794, 0.017398260533809662, 0.005173798184841871, -0.016193358227610588, 0.014551513828337193, -0.01324730645865202, -0.019662417471408844, 0.01964917778968811, -0.007355201058089733, -0.009347924031317234, -0.004505143500864506, -0.0252632275223732], "5af05e5b-2747-4c9f-99f3-cfc98be0b43d": [-0.011328505352139473, -0.016580263152718544, 0.007136488799005747, 0.01880706287920475, 0.0016189567977562547, 0.02452162094414234, -0.01654002070426941, -0.01672782376408577, -0.009349874220788479, -0.030075203627347946, 0.025272829458117485, 0.009188900701701641, 0.015627838671207428, -0.0038566552102565765, -0.01671440899372101, 1.2052048077748623e-05, 0.029726427048444748, 0.015305890701711178, 0.05202125012874603, -0.022576523944735527, 0.002265365794301033, -0.0033619971945881844, -0.00483926385641098, 0.027231339365243912, -0.013112627901136875, 0.03055812418460846, 0.020041191950440407, -0.011905327439308167, -0.0012936562998220325, -0.036567799746990204, -0.003397210268303752, 0.002498441841453314, -0.011315091513097286, -0.007015759125351906, -0.03010203316807747, 0.0038767769001424313, 0.00727734062820673, -0.02087288908660412, 0.018230240792036057, -0.0052987090311944485, 0.013105920515954494, -0.01175106130540371, -0.0014697209699079394, 0.016781480982899666, -0.026372814550995827, 0.008236474357545376, 0.014568096026778221, -0.025836236774921417, -0.024280160665512085, 0.0007478557527065277, 0.019196081906557083, -0.0030903546139597893, -0.02277774177491665, 0.0008811618899926543, 0.0057682148180902, -0.005553583614528179, 0.010054132901132107, 0.02729841135442257, -0.02271066978573799, 0.02684232033789158, 0.016969282180070877, -0.021396052092313766, -0.0020037838257849216, 0.015681495890021324, -0.022281406447291374, -0.01852536015212536, -0.021919216960668564, -0.01409859023988247, -0.006009675096720457, -0.005167917814105749, 0.043892089277505875, 0.016929039731621742, 0.002359266858547926, 0.016110757365822792, 0.04517987743020058, -0.02179848589003086, -0.023394806310534477, 0.0026208488270640373, -0.010590710677206516, -0.00513102812692523, -0.0020473808981478214, -0.038553137332201004, 0.004721887409687042, 0.008759638294577599, 0.02876058779656887, -0.019598515704274178, 0.02269725501537323, 0.021127764135599136, -0.008202938362956047, -0.026828905567526817, 0.021302150562405586, 0.02261676825582981, 0.011341920122504234, 0.012944946996867657, 0.0048426175490021706, 0.013253479264676571, -0.01482297107577324, 0.021208250895142555, 0.0004959155339747667, -0.02868010103702545, -0.02271066978573799, -0.003980739042162895, -0.023730168119072914, 0.0005084915901534259, -0.02811669372022152, 0.024011870846152306, -0.015855884179472923, -0.010617539286613464, 0.009336459450423717, -0.007485264912247658, -0.016861967742443085, 0.02069850079715252, -0.01527906209230423, -0.0634235367178917, -0.00322282244451344, -0.023542365059256554, 0.01225410308688879, -0.02795572020113468, -0.020939961075782776, -0.015601009130477905, 0.00698893005028367, 0.011147410608828068, -0.0037594004534184933, -0.02595696598291397, 0.004758777096867561, 0.0006216760375536978, -0.005234990268945694, -0.022938715294003487, 0.01510467380285263, 0.0077401394955813885, 0.023904554545879364, 0.0034374536480754614, 0.0035313547123223543, -0.007042587734758854, -0.009101706556975842, 0.011462650261819363, -0.026077697053551674, 0.0065194242633879185, -0.009893159382045269, -0.034582458436489105, 0.023032614961266518, 0.01333396602421999, 1.0853393177967519e-05, -0.03646048158407211, -0.01470224093645811, 0.019196081906557083, 0.013790057972073555, 0.022227749228477478, -0.025192342698574066, 0.015601009130477905, 0.0115364296361804, -0.010215106420218945, 0.02991423010826111, -0.0034743433352559805, 0.007726724725216627, -0.020376553758978844, 0.01415224839001894, -0.0059090666472911835, -0.002897521946579218, -0.017398545518517494, 0.018739990890026093, 0.011502893641591072, 0.021731413900852203, -0.010342543013393879, -0.0018478409620001912, 0.016888797283172607, 0.009383410215377808, -0.0313093326985836, -0.03361662104725838, -0.006080100778490305, 0.016848552972078323, 0.0268691498786211, -0.02713743783533573, 0.010550467297434807, -0.013763228431344032, 0.014380293898284435, 0.02658744528889656, 0.01818999834358692, -0.01044315192848444, -0.0028958451002836227, -0.02169117145240307, -0.019222911447286606, 0.031175188720226288, 0.01891437917947769, -0.016311975196003914, 0.004416708834469318, -0.006556313950568438, -0.01031571440398693, 0.0071297818794846535, -0.0024665824603289366, 0.01478272769600153, 0.010288885794579983, -0.00011580446152947843, -0.011771182529628277, -0.6456108093261719, -0.028009377419948578, -0.020041191950440407, -0.010107790119946003, -0.004047811031341553, 0.000653954572044313, 0.013126042671501637, -0.004919750615954399, 0.009343166835606098, -0.00908829178661108, -0.024266745895147324, 0.020591184496879578, 0.00900109764188528, -0.02063142880797386, -0.013233358040452003, -0.0018361032707616687, 0.004135005176067352, -0.038821425288915634, -0.0041853091679513454, -0.015896126627922058, 0.00737124215811491, -0.011462650261819363, -0.016419289633631706, 0.02359602227807045, -0.025447217747569084, -0.00231567001901567, 0.02017533779144287, 0.009732185862958431, 0.0065328385680913925, 0.046065229922533035, -0.014420537278056145, 0.044992074370384216, 0.034850750118494034, 0.02304602973163128, 0.04375794529914856, 0.00029176435782574117, -0.028519127517938614, 0.012462026439607143, 0.006640154402703047, -0.008524884469807148, -0.012441905215382576, -0.017747322097420692, 0.04966030642390251, 0.00029218356939963996, 0.015668081119656563, 0.004664876032620668, 0.013629084452986717, -0.0021714644972234964, 0.02568867802619934, 0.01835097186267376, 0.02639964409172535, -0.004463659133762121, -0.020846059545874596, 0.009993767365813255, -0.010798634961247444, 0.001705312286503613, 0.024789908900856972, -0.005191393196582794, 0.0014604985481128097, -0.0001701958681223914, 0.013199822045862675, 0.039465319365262985, -0.0014831355074420571, -0.009390116669237614, -0.008913904428482056, 0.014299807138741016, -0.026895977556705475, 0.016486363485455513, 0.018216827884316444, -0.033053211867809296, 0.009021219797432423, 0.012408369220793247, -0.0006795258959755301, -0.019504614174365997, 0.013776643201708794, 0.0059325420297682285, 0.03401905298233032, -0.01916925422847271, 0.009685235098004341, 0.0019953998271375895, 0.0031943165231496096, -0.020376553758978844, -0.014501024037599564, -0.031604450196027756, 0.010463273152709007, -0.0035347084049135447, -0.003963971044868231, 0.002325730863958597, -0.0024095710832625628, 0.007948063313961029, 0.001136036473326385, 0.0059325420297682285, 0.005349013023078442, 0.006864846218377352, 0.04947250336408615, 0.014983943663537502, 0.008907197043299675, -0.011060216464102268, 0.029619112610816956, -0.01781439408659935, -0.01647294871509075, -0.004493841901421547, -0.0022452441044151783, 0.009423653595149517, -0.013105920515954494, 0.0003783295105677098, -0.02477649413049221, -0.008732808753848076, 0.056287046521902084, 0.002624202286824584, 0.003638670314103365, -0.01352176908403635, -0.007652945350855589, -0.005536815617233515, 0.020014364272356033, -0.02368992380797863, 0.016660749912261963, -0.006727348081767559, 0.020027779042720795, -0.003967324271798134, 0.021543610841035843, -0.018122926354408264, 0.024387475103139877, -0.014809556305408478, 0.036567799746990204, 0.03192639723420143, 0.013226650655269623, -0.005463035777211189, -0.009034634567797184, -0.011697403155267239, -0.002654384821653366, -0.0014588218182325363, 0.009913280606269836, 0.0077401394955813885, 0.008477934636175632, -0.019920462742447853, 0.006210891529917717, 0.003873423207551241, 0.022831398993730545, -0.025004539638757706, -0.014433951117098331, -0.0005307092797011137, 0.021838730201125145, 0.012602878734469414, -0.014541267417371273, -0.030960557982325554, -0.0007147388532757759, -0.0015652989968657494, -0.022039946168661118, 0.010905950330197811, -0.008075500838458538, -0.0009406885365024209, -0.007297462318092585, -0.008913904428482056, 0.0012274225009605289, -0.015855884179472923, -0.019410712644457817, 0.004537438973784447, 0.004141712561249733, -0.0033854725770652294, 0.0009767399169504642, 0.01915583945810795, -0.010020595975220203, 0.01808268204331398, 0.005338952410966158, -0.02784840390086174, -0.004440183751285076, 0.0290288757532835, -0.002760023809969425, -0.033482473343610764, 0.018968036398291588, -0.0028036206495016813, 0.0026510313618928194, 0.025541119277477264, -0.018766820430755615, -0.013696156442165375, 0.005868823267519474, -0.004597803577780724, -0.005302062723785639, 0.005868823267519474, -0.015225403942167759, 0.025983795523643494, 0.006002967711538076, -0.01216020155698061, 0.026600860059261322, -0.0012265840778127313, -0.02694963663816452, -0.002324054017663002, 0.0044770739041268826, 0.008578542619943619, 0.01293153315782547, 0.012649829499423504, -0.011898620054125786, 0.0032446207478642464, 0.01455468125641346, 0.003103769151493907, 0.002795236650854349, 0.01274373009800911, 0.008263302966952324, 0.01112058199942112, 0.0025772517547011375, 0.011999228037893772, 0.034850750118494034, -0.0027181035839021206, 0.010825463570654392, -0.03375076502561569, 0.005784982815384865, -0.006210891529917717, 0.04120919853448868, -0.024977711960673332, -0.0018075975822284818, -0.010718148201704025, 0.0017908294685184956, -0.033589791506528854, 0.024347232654690742, 0.026654517278075218, 0.01519857533276081, 0.002624202286824584, 0.0008245696662925184, 0.0007046780083328485, 0.02631915733218193, -0.012220567092299461, -0.010557174682617188, -0.004862739238888025, -0.0022016470320522785, 0.0026057574432343245, 0.00985962338745594, 0.026198426261544228, 0.008511470630764961, -0.005999614018946886, 0.017479032278060913, -0.010034010745584965, -0.0056877280585467815, 0.0043596974574029446, 0.0043496363796293736, 0.010677904821932316, 0.016325389966368675, -0.017841221764683723, 0.04107505455613136, -0.032141029834747314, 0.00013225812290329486, -0.011690695770084858, 0.008672444149851799, -0.02397162839770317, -0.009530968964099884, 0.0076127019710838795, 0.009014512412250042, -0.008531591854989529, 0.01470224093645811, -0.004490488208830357, -0.012649829499423504, -0.002910936251282692, 0.00013058132026344538, -0.008954147808253765, 0.005161210894584656, -0.035843417048454285, 0.008109036833047867, 0.019370470196008682, 0.0169961117208004, 0.02622525580227375, 0.011811425909399986, 0.0017405252438038588, 0.011764475144445896, 0.013716278597712517, 0.062350377440452576, -0.012455319985747337, -0.0015426621539518237, 0.010087668895721436, -0.027110610157251358, -0.03876776993274689, -0.015211990103125572, -0.0052048079669475555, 0.017224157229065895, -0.00698222266510129, 0.01455468125641346, 0.009893159382045269, 0.021664341911673546, 0.0006023927708156407, 0.0024967649951577187, 0.010094376280903816, -0.020027779042720795, -0.03149713575839996, 0.018283899873495102, -0.0010027303360402584, 0.0032999555114656687, -0.0011393900495022535, -0.02758011594414711, -0.011187653988599777, -0.021369224414229393, 0.045260366052389145, -0.027687430381774902, 0.02378382533788681, -0.006301439367234707, -0.010288885794579983, 0.0025118563789874315, 0.008752930909395218, 0.038204360753297806, -0.042362842708826065, 0.02693622186779976, 0.0184582881629467, 0.0055569373071193695, 0.0011561581632122397, -0.017130255699157715, 0.01880706287920475, 0.010832170955836773, 0.0024514913093298674, -0.004269149620085955, -0.008283425122499466, 0.01924974098801613, -0.014219320379197598, -0.025889893993735313, -0.02846546843647957, -0.014755898155272007, -0.004171894863247871, 0.02026923932135105, -0.0015149947721511126, -0.0015149947721511126, 0.013790057972073555, 0.023461878299713135, -0.030584953725337982, -0.01396444533020258, -0.006160587538033724, -0.024789908900856972, -0.02542038820683956, 0.09304264932870865, 0.025259414687752724, -0.03605804964900017, 0.005684374365955591, -0.003839887212961912, -0.00030895162490196526, -0.010885829105973244, -0.022281406447291374, 0.014071761630475521, -0.0073779490776360035, 0.009430360049009323, -0.014501024037599564, 0.025460632517933846, -0.0034810504876077175, -0.00492645800113678, -0.023837482556700706, -0.013092505745589733, -0.012066300958395004, -0.005597180686891079, 0.00614717323333025, -0.0033334915060549974, 0.011100459843873978, 0.022670425474643707, 0.013447988778352737, -0.022576523944735527, -0.011053509078919888, 0.02792889066040516, -0.0045609138906002045, 0.007445021532475948, -0.009792550466954708, -0.015131503343582153, 0.01915583945810795, 0.030853241682052612, 0.026788663119077682, -0.017881466075778008, -0.0030115447007119656, -0.011362041346728802, 0.02288505621254444, -0.025661848485469818, -0.013199822045862675, 0.013079091906547546, 0.005050541367381811, 0.00136827421374619, -0.009014512412250042, 0.012851046398282051, -0.007089538499712944, -0.017250986769795418, -0.0045609138906002045, -0.03917020186781883, 0.00707612419500947, 0.05336269363760948, -0.000499688379932195, -0.021449711173772812, -0.011764475144445896, 0.006331621669232845, 0.002498441841453314, -0.010007182136178017, 0.01409859023988247, 0.0031490428373217583, 0.024803323671221733, -0.001514156349003315, -0.007009051740169525, 0.013736399821937084, 0.0031540733762085438, -0.01044315192848444, -0.012321175076067448, -0.032221514731645584, -0.012227273546159267, -0.01700952649116516, 0.0038868377450853586, -0.023166760802268982, 0.0012785650324076414, -0.010416322387754917, -0.003829826368018985, -0.0059358952566981316, -0.0036286094691604376, 0.029672769829630852, -0.006915150675922632, -0.01293153315782547, -0.008719394914805889, -0.005124321207404137, -0.01654002070426941, 0.008927318267524242, -0.01890096440911293, -0.010718148201704025, 0.014796141535043716, 0.01861926168203354, 0.004624632652848959, -0.02268384024500847, 0.014299807138741016, 0.0014294777065515518, 0.005084077827632427, 0.01698269695043564, -0.016244903206825256, -0.0026208488270640373, -0.010798634961247444, 0.009282801300287247, -0.0010085991816595197, 0.0013615669449791312, -0.012227273546159267, 0.007210268639028072, -0.0115364296361804, -0.019880220293998718, -0.018766820430755615, 0.002978008473291993, -0.013816886581480503, 0.013139456510543823, 0.027419142425060272, -0.02233506366610527, -0.028009377419948578, 0.0068950289860367775, -0.027097195386886597, 0.011878497898578644, -0.0038231192156672478, -0.0017807686235755682, 0.02387772686779499, 0.019316812977194786, 0.008377325721085072, 0.007116367109119892, -0.001016144873574376, 0.020403383299708366, -0.039840925484895706, 0.01474248431622982, -0.0038767769001424313, -0.0268691498786211, -0.009115120396018028, 0.0010194984497502446, -0.004906336311250925, 0.030182519927620888, 0.0033720580395311117, 0.0032664192840456963, 0.007062709424644709, 0.017747322097420692, -0.012918118387460709, -0.03452880308032036, -0.0025437157601118088, -0.008518178015947342, 0.019048523157835007, -0.010671197436749935, 0.011549844406545162, -0.014903456903994083, -0.006177355535328388, -0.00674076285213232, -0.03289223834872246, 0.0012760498793795705, -0.02107410505414009, -0.010771805420517921, -0.008887074887752533, 0.008994391188025475, -0.016566850244998932, -0.0049465796910226345, -0.03884825482964516, -0.017841221764683723, -0.008719394914805889, -0.00913524255156517, -0.012904703617095947, 0.016955869272351265, -0.004269149620085955, 0.022992372512817383, 0.017653420567512512, 0.021047277376055717, -0.024897225201129913, 0.0007348604849539697, 0.015010773204267025, -0.0010974699398502707, 0.007290755398571491, -0.017613176256418228, -0.039653122425079346, -0.03418002650141716, 0.00552004761993885, 0.033321499824523926, 0.0031876093707978725, 0.017143670469522476, -0.017479032278060913, -0.008813295513391495, 0.038123875856399536, -0.015359548851847649, -0.009450482204556465, -0.017130255699157715, -0.03707754984498024, -0.03879459947347641, -0.007216975558549166, -0.0013624053681269288, 0.0066736903972923756, -0.020309481769800186, 0.0008778082556091249, 0.04759448021650314, 0.012851046398282051, 0.012086422182619572, -0.0007512093870900571, 0.01718391478061676, -0.013414452783763409, 0.02696305140852928, -0.0029243507888168097, 0.02641305886209011, -0.00551669392734766, 0.025715505704283714, 0.0012777266092598438, 0.017224157229065895, 0.005047188140451908, 0.0061672949232161045, -0.017747322097420692, -0.005295355338603258, -0.03208737075328827, -0.02747279964387417, -0.0019467724487185478, -0.029672769829630852, -0.0036587920039892197, 0.018377801403403282, -0.012441905215382576, -0.026895977556705475, -0.0020926545839756727, 0.006901735905557871, -0.02994105964899063, -0.005758153740316629, -0.005442914552986622, 0.015292476862668991, 0.010557174682617188, -0.013347380794584751, -0.023032614961266518, 0.007793797180056572, -0.030450807884335518, 0.050035908818244934, 0.014970529824495316, 0.03718486428260803, 0.012596171349287033, -0.01455468125641346, -0.0035682443995028734, 0.003343552350997925, -0.00028568593552336097, -0.00045651060645468533, 0.020135093480348587, 0.011087045073509216, -0.009987059980630875, 0.007934648543596268, -0.005147796124219894, 0.01891437917947769, -0.019665587693452835, -0.026024039834737778, 0.005624009296298027, -0.017130255699157715, -0.015788810327649117, -0.0018981450702995062, -0.001609734375961125, -0.03823119029402733, -0.00014651098172180355, -0.00035715982085093856, 0.022361893206834793, -0.0017505860887467861, -0.014916871674358845, -0.026654517278075218, 0.0022888409439474344, 0.012146786786615849, 0.01690221019089222, 0.03171176835894585, -0.02469600737094879, -0.03541415557265282, -0.02258993871510029, -0.003373734885826707, -0.0021043922752141953, -0.008518178015947342, 0.013816886581480503, -0.019772903993725777, 0.016794895753264427, 0.00024355616187676787, 0.0045843892730772495, 0.0009515877463854849, -0.004215491935610771, -0.016781480982899666, 0.024186259135603905, 0.02721792459487915, 0.01719732955098152, -0.0035280012525618076, 0.019383884966373444, 0.009738893248140812, 0.011328505352139473, -0.012783973477780819, -0.006814542226493359, -0.013367502018809319, -0.0019115596078336239, -0.0015543997287750244, 0.027231339365243912, 0.0019903695210814476, -0.009510846808552742, -0.022831398993730545, -0.023207003250718117, -0.0007180924294516444, 0.021852143108844757, -0.010825463570654392, -0.045528654009103775, -0.03415319696068764, -0.0015359548851847649, -0.028626441955566406, 0.00921572931110859, -0.004641400650143623, 0.03047763742506504, -0.01647294871509075, 0.0332946740090847, -0.03388490900397301, 0.026386229321360588, -0.008444398641586304, 0.01523881871253252, -0.025527704507112503, 0.002743255579844117, 0.001557753304950893, -0.016700994223356247, 0.006643508095294237, -0.0019316811813041568, -0.02313993126153946, 0.016218073666095734, 0.026278913021087646, 0.023837482556700706, 0.012589463964104652, 0.021087519824504852, 0.011469357647001743, 0.0011712494306266308, 0.017774149775505066, -0.02017533779144287, -0.05440902337431908, 0.008236474357545376, -0.0019316811813041568, 0.006469119805842638, 0.008571835234761238, -0.01654002070426941, 0.021731413900852203, 0.01527906209230423, 0.023622851818799973, 0.005338952410966158, -0.015601009130477905, 0.004708473104983568, -0.021382637321949005, 0.010114497505128384, 0.007787089794874191, -0.010148033499717712, -0.015668081119656563, -0.005845347885042429, -0.01989363320171833, -0.00011947247548960149, 0.0010178216034546494, -0.013246772810816765, 0.005104199517518282, 0.009926695376634598, -0.01401810348033905, -0.01039620116353035, -0.004024336114525795, -0.003256358439102769, 0.002882430562749505, -0.013092505745589733, -0.031792253255844116, -0.02071191556751728, -0.022375307977199554, 0.039197031408548355, 0.012287639081478119, -0.014407122507691383, -0.01514491718262434, -0.023193588480353355, -0.04375794529914856, -0.0027097195852547884, -0.001859578536823392, 0.01397786010056734, 0.027231339365243912, 0.014085175469517708, 0.0017220804002135992, 0.020108265802264214, -0.03155079483985901, -0.0026376168243587017, -0.005684374365955591, -0.026735004037618637, -0.006677044089883566, 0.006076747085899115, -0.01388395857065916, 0.008873661048710346, -0.011757767759263515, 0.01770707778632641, 0.013830301351845264, -0.02269725501537323, -0.014205905608832836, 0.001088247518055141, -0.017385130748152733, 0.014930286444723606, 0.008135865442454815, -0.0008895458886399865, 0.005848701577633619, 0.01709001325070858, 0.011985814198851585, -0.024803323671221733, 0.0016625537537038326, -0.004292625002563, -0.026171598583459854, -0.028787415474653244, -0.032221514731645584, 0.00963157694786787, -0.016687579452991486, 0.015855884179472923, -0.022817984223365784, -0.016043685376644135, -0.022455794736742973, -0.023475293070077896, 0.04818471521139145, -0.004269149620085955, 0.011214482598006725, 0.025621606037020683, -0.006838017608970404, -0.027177682146430016, -0.015225403942167759, 0.021181421354413033, 0.00926268007606268, -0.017344888299703598, -0.0032312064431607723, -0.00020037838839925826, 0.02892156131565571, -0.00976572185754776, 0.007579165976494551, 0.003494465025141835, 0.013676035217940807, -0.013709571212530136, 0.003340198891237378, -0.0303703211247921, 0.01360225584357977, 0.020832644775509834, -0.0030937083065509796, -0.012394954450428486, 0.0011670574313029647, -0.012737022712826729, 0.024749666452407837, -0.015010773204267025, -0.019397299736738205, -0.01274373009800911, 0.010288885794579983, -0.00012984771456103772, 0.01907535269856453, -0.02550087496638298, -0.010389493778347969, 0.023944798856973648, -0.008149280212819576, 0.011804718524217606, 0.1979973316192627, -0.012783973477780819, -0.003779522143304348, 0.020403383299708366, -0.01888754963874817, 0.009886451996862888, 0.01890096440911293, -0.01225410308688879, -0.014179076999425888, -0.01409859023988247, -0.009524261578917503, 0.009685235098004341, -0.007102952804416418, 0.0056977891363203526, 0.019061937928199768, -0.005818518809974194, -0.04247015714645386, 0.0047118267975747585, -0.019008280709385872, -0.0613308809697628, 0.004074640106409788, -0.007384656462818384, -0.006465766578912735, -0.01022181287407875, 0.018283899873495102, 0.014004688709974289, -0.017304643988609314, -0.0020507345907390118, 0.024642350152134895, -0.005892298649996519, -0.039814095944166183, -0.010416322387754917, -0.012562635354697704, -0.007351120468229055, -0.029967887327075005, 0.026278913021087646, -0.0070023443549871445, -0.009356580674648285, 0.008310253731906414, -0.007726724725216627, -0.0036151951644569635, 0.004446891136467457, 0.013266894035041332, -0.002684567356482148, -0.0060499184764921665, 0.03248980641365051, -0.011362041346728802, -0.013367502018809319, -0.03356296196579933, 0.018216827884316444, -0.025165513157844543, 0.012576050125062466, 0.04874812066555023, 0.007304169703274965, 0.012193737551569939, -0.015386377461254597, -0.008652321994304657, 0.006750823464244604, -0.006345036439597607, -0.004859385546296835, -0.014272977598011494, 0.015761982649564743, -0.01334067340940237, 0.02088630385696888, -0.0123815406113863, 0.015855884179472923, -0.0031272443011403084, -0.006234366912394762, 0.01934364065527916, -0.027258168905973434, 0.00985291600227356, -0.008444398641586304, 0.0008270848775282502, 0.0034676361829042435, -0.007257218938320875, -0.002060795435681939, 0.023743581026792526, -0.022375307977199554, -0.0002580186119303107, -0.017049768939614296, 0.002962917322292924, -0.00732429139316082, 0.015869297087192535, -0.01510467380285263, -0.008015135303139687, -0.018780233338475227, 0.012515684589743614, -0.01691562496125698, -0.02016192302107811, 0.008685857988893986, -0.016218073666095734, -0.024119187146425247, 0.00034961418714374304, -0.010758391581475735, 0.01333396602421999, -0.015882711857557297, 0.02014850825071335, 0.016432704403996468, -0.0017489093588665128, -0.011133995838463306, -0.008236474357545376, -0.0011997551191598177, 0.02403870038688183, 0.004986823070794344, -0.022361893206834793, 0.002094331430271268, 0.003081970615312457, 0.012944946996867657, 0.0019685709848999977, -0.013159578666090965, 0.019571686163544655, -0.023743581026792526, 0.00047453626757487655, -0.017492447048425674, 0.0023056091740727425, 0.028250837698578835, -0.027244754135608673, -0.011127288453280926, 0.011871790513396263, 0.009349874220788479, 0.02186555787920952, -0.01800219528377056, 0.012871167622506618, 0.0018210120033472776, 0.0009222436347045004, -0.013273601420223713, -0.027794746682047844, 0.027325240895152092, -0.005003591068089008, -0.01035595778375864, 0.019289983436465263, -0.0329458974301815, -0.011851669289171696, 0.0017606469336897135, -0.02368992380797863, 0.015681495890021324, 0.0009918310679495335, -0.014621754176914692, 0.007062709424644709, -0.016929039731621742, -0.004684997722506523, -0.017170500010252, 0.00610357616096735, -0.00043932333937846124, 0.008182816207408905, -0.006935272365808487, 0.016929039731621742, -0.018377801403403282, -0.005620655603706837, -0.012394954450428486, -0.025339901447296143, -0.014259563758969307, -0.001956833293661475, 0.0016407553339377046, -0.0010236904490739107, -0.012495563365519047, -0.009423653595149517, -0.014031518250703812, 0.0032144382130354643, 0.030263006687164307, -0.02288505621254444, -0.00040390080539509654, 0.024347232654690742, -0.01048339530825615, -0.023193588480353355, -0.007813919335603714, -0.1704172044992447, 0.011710817925632, 0.01537296362221241, -0.020416798070073128, 0.03273126482963562, 0.0006778491078875959, 0.027982549741864204, 0.0004233936779201031, 0.010423029772937298, -0.009685235098004341, 0.011958984658122063, 0.015064430423080921, -0.0356287881731987, -0.022576523944735527, -0.012830924242734909, 0.009873037226498127, -0.012039471417665482, 0.0242399163544178, 0.036406826227903366, 0.001948449295014143, 0.017505861818790436, -0.0008794851019047201, 0.008176108822226524, -0.00975901447236538, 0.021717999130487442, -0.017572933807969093, 0.006174001842737198, 0.02242896519601345, 0.012716901488602161, -0.016110757365822792, -0.021047277376055717, -0.0001439957704860717, -0.0002477481903042644, -0.01691562496125698, 0.010570589452981949, 0.004782252479344606, -0.016110757365822792, -0.0067675914615392685, -0.022630183026194572, 0.02559477649629116, 0.019021693617105484, -0.004825849551707506, 0.011395578272640705, 0.011683988384902477, 0.001743878936395049, 0.029163021594285965, -0.014071761630475521, -0.011268140748143196, 0.023113101720809937, -0.020282652229070663, 0.016741236671805382, 0.007733432110399008, 0.004098115488886833, 0.007049295119941235, 0.04112871363759041, -0.01165715977549553, 0.018404629081487656, 0.003190963063389063, -0.013112627901136875, -0.018847307190299034, -0.0015326013090088964, -0.01581563986837864, 0.006975515745580196, -0.018149755895137787, 0.002639293670654297, -0.007968185469508171, -0.01152301486581564, 0.028706928715109825, -0.016311975196003914, 0.0009105060016736388, 0.007451728451997042, 0.025715505704283714, 0.0379629023373127, 0.0036889745388180017, -0.0007289916975423694, -0.006271256599575281, -0.003138981992378831, 0.009356580674648285, -0.005489864852279425, 0.010664490051567554, -0.03753364086151123, 0.041531145572662354, -0.018216827884316444, -0.026600860059261322, -0.004983469378203154, 0.024092357605695724, -0.015976613387465477, -0.024789908900856972, -0.021087519824504852, 0.006358450744301081, 0.001381688634864986, -0.014661997556686401, -0.022764327004551888, 0.006036503706127405, 0.015359548851847649, 0.013582133688032627, 0.006680397782474756, -0.03208737075328827, -0.011288261972367764, 9.290556772612035e-05, 0.008430983871221542, 0.00013697413669433445, -0.012904703617095947, 0.021181421354413033, 0.022093603387475014, -0.003021605545654893, -0.019196081906557083, 0.010624246671795845, 0.027003293856978416, 0.009463896974921227, 8.074871584540233e-05, 0.016741236671805382, 0.01523881871253252, 0.006422169506549835, 0.022294821217656136, 0.03611170873045921, -0.003725864225998521, -0.0029075827915221453, 0.015158331952989101, -0.022643595933914185, 0.07302828133106232, -0.005315477028489113, -0.01419249176979065, 0.01537296362221241, -0.015896126627922058, -0.04740667715668678, -0.11547160893678665, 0.00867915153503418, 0.018069269135594368, 0.015963198617100716, 0.013910788111388683, 0.004577681887894869, -0.0023642973974347115, 0.012622999958693981, -0.009785843081772327, -0.0015242171939462423, -0.011865084059536457, -0.04568962752819061, 0.0054294997826218605, 0.006720641162246466, 0.010275471024215221, -0.013951031491160393, 0.003980739042162895, -0.020778987556695938, 0.022308235988020897, 0.02449479140341282, 0.017304643988609314, -0.022455794736742973, 0.011449235491454601, -0.037399496883153915, 0.024025285616517067, -0.02258993871510029, -0.018699748441576958, 0.0013179699890315533, 0.016955869272351265, 0.016929039731621742, -0.013629084452986717, -0.010584003292024136, 0.01275043748319149, -0.0066267396323382854, 0.005365781020373106, -0.0036520848516374826, -0.02811669372022152, -0.012958361767232418, 0.01608392968773842, -0.04271161928772926, 0.0006099384045228362, -0.0014068407472223043, 0.028626441955566406, -0.019558273255825043, 0.003839887212961912, -0.005828579887747765, -0.023891141638159752, 0.00027688269619829953, 0.0034475144930183887, -0.03109470196068287, -0.013682741671800613, 0.008565127849578857, -0.029994716867804527, -0.01464858278632164, 0.020041191950440407, 0.001090762671083212, 0.031792253255844116, 0.0009021219448186457, -0.028706928715109825, 0.003425715956836939, -0.004695058334618807, 0.01040290854871273, -0.009235850535333157, 0.031228845939040184, -0.000272690667770803, 0.005120967514812946, -0.0053255376406013966, -0.03589707612991333, 0.019196081906557083, -0.004306039307266474, -0.009537676349282265, 0.025822822004556656, -0.023488707840442657, 0.009564504958689213, -0.006881614215672016, 0.004976761993020773, -0.017948538064956665, 0.0022335064131766558, 0.028599614277482033, -0.007787089794874191, -0.0012919794535264373, -0.018149755895137787, 0.009477310813963413, 0.0033033089712262154, 0.006831310223788023, 0.00015248460113070905, -0.0001935663603944704, 0.004108176100999117, -0.006697165779769421, -0.011335212737321854, -0.0021882327273488045, 0.01981314644217491, -0.011066923849284649, -0.03138982132077217, 0.006874907296150923, 0.04120919853448868, 0.027177682146430016, 0.008223059587180614, -0.009430360049009323, -0.001779091777279973, -0.020510699599981308, 0.024387475103139877, -0.058004096150398254, 0.02252286672592163, 0.003896898590028286, 0.008880367502570152, -0.0020037838257849216, 0.0005835287156514823, 0.017975367605686188, -0.014380293898284435, -0.01089253555983305, 0.016151001676917076, -0.004604510962963104, 0.022388722747564316, -0.0036453776992857456, -0.006495948880910873, -0.023274075239896774, -0.007579165976494551, 0.011918741278350353, -0.01737171597778797, 0.005050541367381811, -0.0012995251454412937, 0.010020595975220203, -0.0036654993891716003, 0.025876479223370552, -0.0043362220749258995, -0.005479804240167141, 0.001626502489671111, 0.0184582881629467, 0.013749814592301846, -0.009484018199145794, -0.018498530611395836, 0.014943700283765793, -0.019759489223361015, -0.017049768939614296, 0.00522157596424222, 0.010691318660974503, 0.0023559133987873793, -0.028814245015382767, -0.00904134102165699, 0.019907047972083092, 0.04509939253330231, 0.002535331528633833, -0.0009465573239140213, -0.005627362988889217, -0.02433381788432598, 0.0168217234313488, 0.03227517381310463, -0.010376079007983208, 0.019866805523633957, 0.01156996563076973, -0.019102180376648903, 0.01852536015212536, 0.0270435381680727, 0.01207300741225481, -0.02512527070939541, 0.005677667446434498, -0.015211990103125572, 0.015520522370934486, -0.005449621472507715, -0.005335598718374968, -0.03163127973675728, 0.01798878237605095, -0.012079714797437191, 0.005717910826206207, 0.00610357616096735, 0.03230200335383415, -0.013038848526775837, -0.010054132901132107, -0.010550467297434807, -0.02359602227807045, -0.04276527464389801, 0.004158480558544397, 0.009148657321929932, 0.003056818386539817, 0.003460928797721863, 0.023542365059256554, 0.021919216960668564, 0.01346811093389988, 0.006418815813958645, -0.04035067558288574, 0.021583855152130127, -0.0013515061000362039, 0.005634070374071598, -0.03383124992251396, -0.0033318146597594023, 0.04348965734243393, -0.01527906209230423, -0.0034475144930183887, 0.008960854262113571, -0.0036219023168087006, 0.006573081947863102, 0.01103338785469532, -0.0027549932710826397, 0.0010630954056978226, -0.013843715190887451, 0.005258465651422739, 0.012495563365519047, -0.010698026046156883, -0.003558183554559946, -0.0007461789646185935, 0.027821576222777367, -0.03267760947346687, 0.013186407275497913, 0.0001935663603944704, -0.017559519037604332, 0.0009155364241451025, -0.003839887212961912, -0.010872414335608482, -0.02776791714131832, -0.004235613625496626, 0.01455468125641346, 0.016526605933904648, 0.019759489223361015, 0.01800219528377056, 0.02523258700966835, -0.024977711960673332, 0.010905950330197811, 0.00967182032763958, -0.0077669681049883366, -0.006227659992873669, 0.045260366052389145, -0.002860632026568055, 0.023274075239896774, 0.014983943663537502, 0.021382637321949005, 0.019826561212539673, 0.0011603501625359058, 0.01981314644217491, 0.02694963663816452, 0.009638284333050251, 0.006583143025636673, 0.005603887606412172, 0.013488232158124447, -0.05355049669742584, 0.002506825840100646, 0.010858999565243721, -0.046521324664354324, 0.010248642414808273, 0.01574856787919998, -0.024830153211951256, 0.04947250336408615, 0.004118237178772688, 0.0022184152621775866, 0.001452952972613275, -0.01468882616609335, 0.02214726246893406, 0.019222911447286606, 0.011777889914810658, 0.003896898590028286, -0.019289983436465263, 0.020550942048430443, -0.010845585726201534, 0.021302150562405586, -0.025366730988025665, -0.003930434584617615, 0.013622377067804337, -0.0002446041617076844, 0.03782875835895538, -0.006375218741595745, -0.026506958529353142, 0.022536281496286392, -0.0030048375483602285, 0.029806913807988167, -0.008444398641586304, -0.0019165900303050876, 0.013790057972073555, 0.025930138304829597, 0.008672444149851799, 0.010060839354991913, -0.014581510797142982, -0.0009935079142451286, 0.008980976417660713, -0.008350497111678123, -0.012321175076067448, 0.016593677923083305, 0.0018126280046999454, -0.009517554193735123, -0.026345985010266304, 0.027714259922504425, 0.009624870494008064, -0.010523638688027859, 0.011462650261819363, -0.005939248949289322, -0.00698222266510129, 0.01175106130540371, -0.004316100385040045, -0.017787564545869827, 0.00454414589330554, -0.022039946168661118], "7321ed9b-9841-4fda-b805-2dc6cd5c6c63": [0.001666129450313747, -0.009844849817454815, -0.008001472800970078, 0.011046758852899075, -0.004929177463054657, 0.02884581685066223, -0.016448596492409706, -0.0225661788135767, -0.0049764434807002544, -0.016192009672522545, 0.02180992253124714, 0.007184444926679134, 0.026063868775963783, -0.008777987211942673, -0.009122353978455067, 0.010972484014928341, 0.03959547355771065, 0.0037947914097458124, 0.05501772090792656, -0.0312766432762146, -0.001606202800758183, -0.0023329188115894794, 0.0017133955843746662, 0.03935239091515541, -0.0038623143918812275, 0.0321679450571537, 0.029304971918463707, -0.015935422852635384, 0.011843530461192131, -0.012302686460316181, -0.010695639997720718, 0.0007419087341986597, 0.0010592667385935783, -0.013761183246970177, -0.026995686814188957, 0.001564000966027379, -0.008055491372942924, -0.027022695168852806, 0.023376455530524254, -0.009108849801123142, 0.007197949569672346, -0.013781439512968063, -0.017650505527853966, 0.01636756956577301, -0.019109003245830536, 0.02079707756638527, -0.00046506451326422393, -0.02868376113474369, -0.024173226207494736, 0.003350827842950821, 0.019541149958968163, 0.004172919783741236, -0.021850435063242912, -0.007164187729358673, -0.013666650280356407, 0.0008410830632783473, 0.004520663525909185, 0.020716048777103424, -0.008683455176651478, 0.031033560633659363, 0.010094685479998589, -0.004520663525909185, 0.0026587173342704773, 0.011208814568817616, -0.03681352734565735, -0.019000966101884842, -0.008068995550274849, -0.01646210253238678, -0.0074140229262411594, -0.005648297257721424, 0.052721939980983734, 0.018217699602246284, -0.0016264597652480006, 0.011917805299162865, 0.03230299428105354, -0.025942327454686165, -0.013713916763663292, -0.008291821926832199, -0.02041894756257534, 0.009581510908901691, 0.0037711584009230137, -0.03324831277132034, -0.00014401384396478534, 0.009311418980360031, 0.029277963563799858, -0.008656445890665054, 0.0014627164928242564, 0.024132711812853813, -0.007603087462484837, -0.018906433135271072, 0.010547089390456676, 0.02545616216957569, -0.0010052482830360532, 0.008804996497929096, -0.004311342258006334, 0.013139971531927586, -0.010060924105346203, 0.024956492707133293, 0.002915304619818926, -0.023065848276019096, -0.03292420506477356, -0.003247855231165886, -0.017609992995858192, -0.003683378454297781, -0.028791798278689384, 0.014611972495913506, -0.004497030284255743, -0.0092101339250803, 0.0117422454059124, -0.02329542674124241, -0.012025842443108559, 0.02722526527941227, -0.012289182282984257, -0.042593494057655334, -0.015651825815439224, -0.02592882327735424, 0.02833264134824276, -0.01348433829843998, -0.015435752458870411, -0.012971163727343082, -0.002182680182158947, 0.01362613681703806, 0.0017218359280377626, -0.0170022863894701, 0.0030739835929125547, -0.011512667872011662, -0.006684774998575449, -0.02944001741707325, 0.013963751494884491, -0.004432883579283953, 0.0303583312779665, -0.0030081486329436302, -0.004378865007311106, -0.013740926049649715, -0.01820419542491436, 0.015611312352120876, -0.020932123064994812, 0.00835934467613697, -0.010992741212248802, -0.028251614421606064, 0.01416632067412138, 0.009885364212095737, 0.0028781669680029154, -0.03978453949093819, -0.014395899139344692, 0.034274663776159286, 0.01956815831363201, 0.029088899493217468, -0.018690360710024834, 0.003754277480766177, 0.008845509961247444, -0.01497659645974636, 0.01030400674790144, -0.009838097728788853, 0.011519419960677624, -0.01356536615639925, 0.009527492336928844, -0.018973955884575844, -0.015570798888802528, -0.007731380872428417, 0.012795603834092617, 0.022971317172050476, 0.017420928925275803, 0.004041250329464674, 0.002918680664151907, 0.018028635531663895, 0.001585101941600442, -0.015219679102301598, -0.03014225699007511, -0.012518759816884995, 0.009777327068150043, 0.021580344066023827, -0.02995319291949272, 0.006651013158261776, -0.018244707956910133, 0.01968969963490963, 0.03262710198760033, 0.034328680485486984, -0.02411920763552189, -0.0034419838339090347, -0.03462578356266022, -0.010027161799371243, 0.03681352734565735, 0.018730873242020607, -0.0044463882222771645, -0.019203534349799156, -0.0028427173383533955, -0.016475606709718704, 0.014301367104053497, 0.005935269873589277, -0.0036800021771341562, 0.013882724568247795, -0.008777987211942673, -0.019581664353609085, -0.643899142742157, -0.025618217885494232, -0.016408083960413933, -0.023470986634492874, -0.011370869353413582, 0.00970305223017931, 0.011168300174176693, 0.01062136422842741, -0.004844773560762405, 0.005371452774852514, -0.02025689370930195, 0.01690775342285633, -0.005253287497907877, -0.014449916779994965, -0.01536822970956564, -0.005273544695228338, -0.0031752679497003555, -0.03205990791320801, 0.004277580417692661, -0.007157435640692711, -0.005101360846310854, 0.005040590185672045, -0.0004247617325745523, 0.021229224279522896, -0.014949587173759937, 0.003987231757491827, 0.021229224279522896, 0.005395086016505957, 0.005249911453574896, 0.05169559270143509, -0.02536163106560707, 0.036867544054985046, 0.031222624704241753, 0.03697558119893074, 0.04966990277171135, -0.008102756924927235, -0.019109003245830536, 0.01709681749343872, 0.010655125603079796, 0.009655785746872425, -0.016691679134964943, -0.020054323598742485, 0.044403109699487686, 0.0031989009585231543, 0.017839571461081505, 0.002417322713881731, 0.027495356276631355, -0.013052191585302353, 0.02602335624396801, 0.020310912281274796, 0.009034574031829834, 0.0069413622841238976, -0.022525664418935776, -0.00013061476056464016, -0.0054322234354913235, 0.00521615007892251, 0.023781592026352882, -0.01489556860178709, 0.003592222463339567, 0.0029423136729747057, 0.015422248281538486, 0.028818806633353233, 0.003467304864898324, 0.0014492118498310447, -0.01959516853094101, 0.018892928957939148, -0.020121848210692406, 0.01855531334877014, 0.027279283851385117, -0.024713410064578056, 0.0076976194977760315, 0.013700412586331367, 0.007272224873304367, -0.01773153431713581, 0.02725227363407612, -0.002275524428114295, 0.03532802313566208, -0.020027315244078636, 0.003298497525975108, 0.02981814742088318, 0.004861654248088598, -0.025510180741548538, -0.015530284494161606, -0.03160075470805168, 0.01296441163867712, -0.0065834904089570045, 0.00015308725414797664, 0.01950063556432724, -0.012896888889372349, 0.012674062512814999, -0.004048002418130636, 0.015597808174788952, 0.01754247024655342, 0.017069809138774872, 0.03892024606466293, 0.008467381820082664, 0.007211454212665558, -0.0001848441461334005, 0.03260009363293648, -0.0025557447224855423, -0.011627457104623318, -0.013349292799830437, 0.003111121244728565, -0.002756625646725297, -0.006144591141492128, 0.0019294690573588014, -0.03824501484632492, -0.008798244409263134, 0.05328913405537605, -0.01084419060498476, -0.003825176740065217, -0.01728588156402111, -0.012923898175358772, -0.010742905549705029, 0.020743058994412422, -0.025118548423051834, 0.020972637459635735, -0.004382241051644087, 0.03146570920944214, -0.0004975599586032331, 0.022012490779161453, -0.021485811099410057, 0.013166980817914009, -0.010601107031106949, 0.026063868775963783, 0.028386659920215607, 0.013018430210649967, -0.021445298567414284, -0.00970305223017931, 0.002753249369561672, -0.01043230015784502, 0.006492334417998791, 0.016894249245524406, 0.006205361802130938, 0.02447032742202282, -0.009318171069025993, 0.02225557342171669, 0.0007195417420007288, 0.024429813027381897, -0.01905498467385769, -0.01190430112183094, 0.0011478905798867345, 0.015854395925998688, 0.012545769102871418, -0.0035955985076725483, -0.023538509383797646, -0.009115601889789104, -0.006046682596206665, -0.03308625891804695, 0.007873179391026497, -0.019325075671076775, 0.006914352998137474, 0.0038555620703846216, 0.005621287971735001, 0.014409403316676617, -0.012559274211525917, -0.021728893741965294, 0.006434939801692963, -0.0019767351914197206, -0.011370869353413582, 0.011316850781440735, 0.018784891813993454, -0.015840889886021614, 0.015125147067010403, 0.009554501622915268, -0.028197595849633217, -0.014044779352843761, 0.032275982201099396, 0.0061682239174842834, -0.03176280856132507, 0.008291821926832199, -0.01785307563841343, 2.2723064830643125e-05, 0.03721866384148598, -0.013518099673092365, -0.01029050163924694, 0.002976075280457735, -0.022863280028104782, -0.007731380872428417, 0.010418795049190521, -0.005320810712873936, 0.013855715282261372, -0.001054202439263463, -0.011472153477370739, 0.01451744046062231, 0.0012677438789978623, -0.02098614163696766, 0.0012533952249214053, 0.0024848454631865025, 0.024240748956799507, 0.0060196733102202415, 0.007508554961532354, -0.005729324650019407, 0.002273836173117161, 0.01994628831744194, -0.014841550029814243, -0.0007579454104416072, 0.024686399847269058, 0.016259532421827316, 0.006350535899400711, 0.003230974543839693, 0.0005866058636456728, 0.036894556134939194, 0.0042944615706801414, 0.011701731942594051, -0.026414988562464714, -0.00039690849371254444, -0.0007613215711899102, 0.02488896995782852, -0.02086460031569004, -0.0045240395702421665, -0.017299387603998184, -0.0033845892176032066, -0.002844405360519886, 0.0009470097720623016, 0.03165477141737938, 0.02507803402841091, 0.004044626373797655, -0.009048079140484333, -0.0048278928734362125, 0.03073645941913128, -0.025685740634799004, -0.013936742208898067, -0.016759203746914864, -0.010628116317093372, -0.016664670780301094, 0.006407930515706539, 0.03341037034988403, 0.014031275175511837, -0.008744225837290287, 0.02241762913763523, 0.0018518177093937993, -0.003845433471724391, 0.014855055138468742, 0.0034099104814231396, 0.007501802872866392, 0.015273697674274445, -0.009351932443678379, 0.037245675921440125, -0.03657044470310211, -0.005236406810581684, -0.006438315846025944, 0.028386659920215607, -0.02251216024160385, -0.006968371104449034, 0.002665469655767083, 0.00833908747881651, -0.0014340191846713424, 0.013700412586331367, 0.0062121138907969, -0.013747678138315678, -0.0015521844616159797, 0.0012972851982340217, 0.0002268350071972236, 0.01968969963490963, -0.02590181492269039, 0.0014525880105793476, 0.01010143756866455, 0.019460123032331467, 0.024429813027381897, 0.0037475251592695713, -0.009405951015651226, 0.010108189657330513, 0.011600447818636894, 0.058393869549036026, -0.013038687407970428, -0.0013192301848903298, 0.02004081942141056, -0.024294767528772354, -0.03843407705426216, -0.01782606542110443, -0.0036529931239783764, 0.013605879619717598, 0.0004912296426482499, 0.010141951031982899, 0.016637662425637245, 0.006434939801692963, -0.0023329188115894794, 0.0017100194236263633, -0.0017640377627685666, -0.021674875169992447, -0.023511501029133797, 0.012079861015081406, 0.009439712390303612, -0.005607783328741789, -0.024713410064578056, -0.02371406927704811, -0.009284409694373608, -0.01905498467385769, 0.04788729548454285, -0.03603025898337364, 0.017934102565050125, 0.011735493317246437, -0.002986203646287322, 0.0052060214802622795, 0.00960851926356554, 0.02979113720357418, -0.02922394499182701, 0.03203289955854416, 0.021350765600800514, -0.0016821661265566945, 0.0035854701418429613, -0.012478246353566647, 0.02314687706530094, 0.016286542639136314, -0.005050718784332275, -0.008987308479845524, 0.0008592298836447299, 0.02178291231393814, -0.017420928925275803, -0.016948267817497253, -0.02463238313794136, -0.007110169623047113, 0.0012635237071663141, 0.00521615007892251, -0.0008604959584772587, -0.009676042944192886, 0.006286389194428921, 0.03341037034988403, -0.030277302488684654, -0.013518099673092365, -0.025064529851078987, -0.02472691424190998, -0.01801512949168682, 0.10944124311208725, 0.02364654652774334, -0.028467686846852303, 0.0017775424057617784, -0.0036462408024817705, 0.004969690926373005, -0.011890796013176441, -0.03146570920944214, 0.011620704084634781, 0.012194649316370487, 0.014490431174635887, -0.01263354904949665, 0.02852170541882515, -0.013470834121108055, 0.006151343230158091, -0.01236345712095499, -0.007022389676421881, -0.010594354942440987, -0.014733513817191124, 0.004301213659346104, -0.007562573533505201, 0.0053579481318593025, 0.007630096282809973, 0.016286542639136314, -0.035976242274045944, -0.003956846427172422, 0.017245369032025337, -0.00480425963178277, 0.015516780316829681, -0.018730873242020607, -0.01681322231888771, 0.02979113720357418, 0.023687060922384262, 0.027265777811408043, -0.01648911088705063, 0.0028106439858675003, 0.011451897211372852, 0.011256080120801926, 0.0012120374012738466, -0.003757653757929802, 0.007380261551588774, 0.007630096282809973, 0.00970305223017931, -0.015881404280662537, -0.003121249610558152, -0.0008946794550865889, -0.01103325467556715, -0.009797584265470505, -0.036732498556375504, 0.015935422852635384, 0.04653683677315712, -0.01196507178246975, -0.0029625706374645233, -0.020635021850466728, 0.024969996884465218, 0.006039930507540703, -0.0034943141508847475, -0.00254055205732584, 0.0031144972890615463, 0.030952533707022667, 0.0010398539016023278, -0.008055491372942924, 0.011404630728065968, -0.006286389194428921, -0.006975123658776283, -0.012491750530898571, -0.024686399847269058, -0.0052600400522351265, -0.023781592026352882, -0.001833248883485794, -0.02222856506705284, -0.0032495432533323765, -0.014233843423426151, -0.00024287171254400164, 0.007528812158852816, 0.0027481853030622005, 0.02228258177638054, -0.005648297257721424, 0.005121618043631315, -0.022620197385549545, -0.018798397853970528, -0.02232309617102146, 0.015273697674274445, -0.016975276172161102, -0.01773153431713581, 0.002376808784902096, 0.008967051282525063, 0.01829872652888298, -0.03070945106446743, 0.008987308479845524, 0.002635084092617035, 0.0018484415486454964, -0.006151343230158091, -0.008649693801999092, -0.0014610284706577659, -0.006330279167741537, 0.01074965763837099, 0.005526755936443806, -0.0008039454696699977, -0.015692340210080147, 0.022971317172050476, -0.037083618342876434, -0.008582170121371746, -0.011256080120801926, 0.01198532897979021, -0.009142611175775528, 0.008663197979331017, 0.02307935431599617, -0.017961112782359123, -0.02513205260038376, 0.018069148063659668, -0.02687414549291134, -0.004682718310505152, 0.0020510104950517416, -0.003673250088468194, 0.01250525563955307, 0.019230544567108154, 0.009027821943163872, 0.010331016033887863, -0.0009782391134649515, 0.010094685479998589, -0.03935239091515541, 0.019446616992354393, -0.00010756199480965734, -0.029575064778327942, -0.004233690910041332, 0.007582830265164375, -0.01117505319416523, 0.019932782277464867, 0.006927857641130686, -0.0030300936195999384, 0.011208814568817616, 0.020000306889414787, -0.022593189030885696, -0.0469689816236496, 0.002105028834193945, -0.00850114319473505, 0.007650353480130434, -0.011073768138885498, 0.009426207281649113, -0.015476266853511333, -0.00968954712152481, -0.010371529497206211, -0.01686723902821541, -0.017785552889108658, -0.025699244812130928, -0.0031938368920236826, -0.017137331888079643, 0.014598467387259007, -0.00869020726531744, -0.015233184210956097, -0.04877859726548195, -0.03287018463015556, 0.002876478945836425, -0.023795098066329956, -0.022660711780190468, 0.007407270837575197, -0.025253593921661377, 0.03443671762943268, -0.004216809757053852, 0.02557770349085331, -0.020526984706521034, 0.013808448798954487, 0.004672590177506208, -0.0017404047539457679, 0.009284409694373608, -0.014611972495913506, -0.03648941591382027, -0.03092552348971367, -0.00960851926356554, 0.028737779706716537, 0.011627457104623318, 0.01348433829843998, -0.012302686460316181, -0.00708316033706069, 0.04348479583859444, -0.016502615064382553, 0.0008499454706907272, -0.012809108942747116, -0.05045316740870476, -0.04894065484404564, -0.0054052141495049, 0.007711124140769243, 0.0030013963114470243, -0.01375443022698164, -0.0017522212583571672, 0.0469689816236496, 0.0069616190157830715, 0.007879931479692459, -0.012525511905550957, 0.011857034638524055, -0.03070945106446743, 0.0105740986764431, 0.0027920750435441732, 0.017056304961442947, -0.009581510908901691, 0.025847796350717545, -0.0002829634759109467, 0.0003287525032646954, -0.0050743515603244305, -0.006144591141492128, -0.007137178909033537, -0.0012711200397461653, -0.026820126920938492, -0.01690775342285633, -0.000825890398118645, -0.025685740634799004, -0.00768411485478282, 0.016219019889831543, -0.017974616959691048, -0.015773367136716843, -0.006100701168179512, 0.001946349861100316, -0.035571105778217316, -0.01648911088705063, 0.007096664980053902, 0.014463421888649464, 0.019811240956187248, -0.012106870301067829, -0.018055643886327744, 0.004483525641262531, -0.013950247317552567, 0.05725948512554169, 0.007062903605401516, 0.03052038513123989, 0.001564000966027379, -0.030412349849939346, -0.01435538474470377, 0.007022389676421881, 0.0044463882222771645, -0.01343707274645567, 0.019770728424191475, 0.013572118245065212, -0.0014593403320759535, 0.010972484014928341, -0.022053005173802376, 0.01712382771074772, -0.02981814742088318, -0.030601413920521736, -0.0024409557227045298, -0.00708316033706069, -0.025753263384103775, 0.002621579682454467, -0.0013698723632842302, -0.03416662663221359, 0.0016720377607271075, -0.0040682596154510975, 0.02013535238802433, -0.005655049346387386, -0.014341880567371845, -0.024929482489824295, 0.008386353962123394, 0.012721328996121883, 0.019095497205853462, 0.034490738064050674, -0.022849775850772858, -0.042917605489492416, -0.020270397886633873, -0.024456823244690895, -0.009142611175775528, -0.0014095421647652984, 0.016705185174942017, -0.033005230128765106, 0.00721820630133152, 0.003710387507453561, 0.004064883105456829, -0.00600616866722703, -0.004368736874312162, -0.01592191867530346, 0.028656750917434692, 0.012120374478399754, 0.006404554471373558, 0.0028258366510272026, 0.03205990791320801, 0.014679495245218277, 0.00796095933765173, -0.011202061548829079, -0.0020172488875687122, -0.020945627242326736, 0.0020442581735551357, -0.004746865481138229, 0.010628116317093372, 0.006391049828380346, -0.0049021681770682335, -0.02738731913268566, -0.01288338378071785, 0.004490278195589781, 0.008068995550274849, 0.006640885025262833, -0.04032472148537636, -0.02779245749115944, 0.010499822907149792, -0.028062550351023674, 0.018892928957939148, -0.007981215603649616, 0.011067016050219536, -0.009169620461761951, 0.033950552344322205, -0.039460428059101105, 0.02609087899327278, -0.015543789602816105, 0.005837361328303814, -0.027427833527326584, 0.004041250329464674, 0.00043510118848644197, -0.01782606542110443, 0.003072295570746064, -0.009817840531468391, -0.03978453949093819, 0.009331675246357918, 0.02583429031074047, 0.013713916763663292, 0.007096664980053902, 0.011593694798648357, -0.0007672298233956099, -0.001344551332294941, 0.0059960405342280865, -0.024038180708885193, -0.04105396941304207, 0.02307935431599617, 0.013869219459593296, 0.003234350588172674, 0.005330939311534166, -0.0060939486138522625, 0.015260192565619946, 0.021121187135577202, 0.021823426708579063, 0.0054119667038321495, -0.03073645941913128, 0.020175864920020103, -0.01261329185217619, 0.013349292799830437, 0.006137838587164879, -0.01740742288529873, -0.01902797445654869, -0.019109003245830536, -0.016421588137745857, -0.00474011292681098, 0.009439712390303612, -0.005979159846901894, 0.009858354926109314, 0.017555974423885345, -0.0016230836044996977, -0.016124486923217773, -0.0005292113637551665, -0.0015580926556140184, 0.00877123512327671, -0.010236483067274094, -0.03570615127682686, -0.020932123064994812, -0.00428095692768693, 0.031519725918769836, 0.004517287015914917, -0.01049307081848383, -0.008028482086956501, -0.012390466406941414, -0.03254607692360878, -0.011850282549858093, -0.003828552784398198, 0.008953547105193138, 0.03262710198760033, 0.016043459996581078, 0.004780626855790615, 0.0197572223842144, -0.017137331888079643, 0.01003391481935978, -0.017785552889108658, -0.023214399814605713, -0.004547672346234322, 0.00029625705792568624, -0.011451897211372852, 0.011202061548829079, -0.016988780349493027, 0.008575418032705784, 0.01196507178246975, -0.0057698385789990425, -0.008595675230026245, -0.0009453216916881502, -0.006779307033866644, 0.008055491372942924, -0.014152816496789455, 0.0007710279896855354, 0.007191197015345097, 0.01966269128024578, -0.0009309730376116931, -0.017677515745162964, -0.00883200578391552, -0.005273544695228338, -0.020081333816051483, -0.01956815831363201, -0.02868376113474369, 0.015462761744856834, -0.011357365176081657, 0.01010143756866455, -0.029467027634382248, -0.01994628831744194, -0.025469666346907616, -0.02102665603160858, 0.04745514690876007, 0.005918389186263084, -0.009885364212095737, 0.033383358269929886, -0.0035550848115235567, -0.02418673038482666, -0.011478906497359276, 0.02143179252743721, 0.009426207281649113, -0.0340045727789402, 0.0025456163566559553, -0.025537190958857536, 0.029521046206355095, -0.011769254691898823, -0.0012609915575012565, -0.019257552921772003, 0.005908260587602854, -0.025118548423051834, -0.011499162763357162, -0.016880745068192482, 0.027333300560712814, 0.018312230706214905, 0.0007845325744710863, 0.00046759663382545114, 0.004064883105456829, -0.008102756924927235, 0.01084419060498476, -0.01968969963490963, -0.020594507455825806, -0.011134538799524307, 0.0054119667038321495, -0.007940702140331268, 0.010864446870982647, -0.0303313210606575, -0.010040666908025742, 0.012059603817760944, -0.020689040422439575, 0.011418135836720467, 0.20386537909507751, -0.016543129459023476, 0.005452480632811785, 0.015435752458870411, -0.0026739099994301796, 0.009304665960371494, 0.016327055171132088, -0.006117581855505705, -0.011384374462068081, -0.012809108942747116, -0.018663350492715836, 0.014179824851453304, -0.008197289891541004, 0.007738133426755667, 0.008784739300608635, -0.005864370614290237, -0.041486117988824844, 0.00983134564012289, -0.01959516853094101, -0.06541626155376434, -0.007103417068719864, -0.02060801349580288, -0.005263416096568108, 0.0014618724817410111, 0.024983501061797142, 0.005624664016067982, -0.01408529281616211, 0.0010364777408540249, 0.028116567060351372, -0.001075303414836526, -0.028251614421606064, -0.012748338282108307, -0.006124333944171667, -0.013923238031566143, -0.007711124140769243, 0.005759709980338812, 0.010398538783192635, 0.0030841119587421417, -0.00038382591446861625, -0.006921105086803436, 0.0049561867490410805, 0.016948267817497253, 0.003173579927533865, 0.010425548069179058, -0.01068213488906622, 0.02976412884891033, -0.007130426354706287, -0.009858354926109314, -0.0202028751373291, 0.004267452284693718, -0.03476082906126976, 0.02272823452949524, 0.03657044470310211, 0.01639457978308201, 0.009885364212095737, -0.012032594531774521, -0.0170022863894701, 0.015719348564743996, -0.018852414563298225, 0.004162791650742292, -0.020918618887662888, 0.020999645814299583, -0.007940702140331268, 0.014679495245218277, -0.02098614163696766, 0.019716709852218628, -0.01343707274645567, -0.002896735677495599, 0.027616897597908974, -0.02237711474299431, 0.005621287971735001, -0.015314211137592793, -0.015908412635326385, -0.0011858722427859902, -0.011202061548829079, 0.002950754016637802, 0.01589490845799446, -0.01416632067412138, -0.0020999645348638296, -0.008595675230026245, 0.015489771030843258, 0.0031431945972144604, 0.015908412635326385, -0.007825912907719612, -0.01408529281616211, -0.03721866384148598, 0.005401838105171919, -0.01851480081677437, -0.017150836065411568, 0.0035550848115235567, -0.011816521175205708, -0.00800822488963604, 0.0035719654988497496, -0.012890136800706387, 0.017056304961442947, -0.01177600771188736, 0.011107529513537884, 0.009405951015651226, -0.004459892865270376, -5.819240982418705e-07, -0.0070561510510742664, -0.02456485852599144, 0.02830563299357891, 0.008116262033581734, -0.019635681062936783, 0.001369028352200985, 0.012498503550887108, 0.02995319291949272, 0.011877291835844517, -0.008777987211942673, 0.01851480081677437, -0.017961112782359123, -0.003477433230727911, -0.019460123032331467, 0.005574021954089403, 0.028089558705687523, -0.022120527923107147, -0.013774687424302101, -0.0028579100035130978, 0.008096004836261272, 0.013923238031566143, -0.011370869353413582, 0.0018129919189959764, 0.003463928820565343, 0.004081763792783022, -0.006630756426602602, -0.013821953907608986, 0.017704524099826813, 0.006968371104449034, -0.01721835881471634, 0.011755750514566898, -0.02944001741707325, -0.012579530477523804, -0.0040682596154510975, -0.019649187102913857, 0.014152816496789455, 0.0022839647717773914, -0.014774027280509472, 0.017596488818526268, -0.004473397042602301, 0.0056921872310340405, -0.0029102403204888105, 0.002856221981346607, -0.01076316274702549, 0.0031094332225620747, 0.006205361802130938, 0.019014470279216766, -0.01851480081677437, -0.0073600043542683125, -0.024321775883436203, -0.0367865189909935, 0.0034875618293881416, -0.006640885025262833, -0.0031043689232319593, 0.0020577628165483475, -0.026860641315579414, -0.014301367104053497, -0.014490431174635887, -0.009574757888913155, 0.025091538205742836, -0.02545616216957569, 0.015003605745732784, 0.02998020127415657, -0.010567345656454563, -0.011735493317246437, -0.005898131988942623, -0.17221060395240784, 0.016516121104359627, 0.011202061548829079, -0.01144514512270689, 0.03640839084982872, 0.012329695746302605, 0.02263370156288147, -0.005037214141339064, 0.0037238921504467726, -0.005060847382992506, 0.012950907461345196, 0.015152156352996826, -0.04713103920221329, -0.017461441457271576, -0.024416308850049973, 0.017177846282720566, -0.005297177471220493, 0.022660711780190468, 0.04877859726548195, 0.004844773560762405, 0.007468041498214006, -0.014638981781899929, 0.019797736778855324, -0.017056304961442947, 0.016894249245524406, -0.006043306551873684, 0.013639641925692558, 0.022647207602858543, 0.007184444926679134, -0.02380860224366188, -0.023579023778438568, 0.005330939311534166, 0.009176372550427914, -0.01356536615639925, 0.015597808174788952, 0.010560593567788601, -0.014449916779994965, -0.030250294134020805, -0.011343860067427158, 0.017420928925275803, 0.006725288461893797, 0.0025135427713394165, 0.0048819114454090595, 0.007785399444401264, -0.00970305223017931, 0.03549007698893547, -0.015273697674274445, 0.004334975033998489, 0.006201985292136669, -0.01043230015784502, 0.0027870109770447016, -0.0047738743014633656, -0.002179304137825966, 0.007380261551588774, 0.028953852131962776, -0.0002960460551548749, 0.017434433102607727, 0.004780626855790615, -0.019487131386995316, -0.019203534349799156, 0.0015277073252946138, -0.003229286288842559, 0.016543129459023476, -0.005003452766686678, 0.009844849817454815, -0.0069076004438102245, 0.004858278203755617, 0.01196507178246975, -0.015840889886021614, -0.0014770651469007134, -0.009952886961400509, 0.00627626059576869, 0.030871504917740822, 0.0005384957185015082, 0.003057102905586362, 0.004787378944456577, -0.009662537835538387, 0.005233030766248703, 0.008723968639969826, -0.01062136422842741, -0.03619231656193733, 0.04732010141015053, -0.01937909424304962, -0.015854395925998688, 0.004831268917769194, 0.03297822177410126, -0.01728588156402111, -0.014503935351967812, -0.01435538474470377, 0.005243159364908934, 0.020000306889414787, -0.02519957534968853, 0.005317434668540955, 0.005378205329179764, 0.015948927029967308, 0.015476266853511333, -0.0007317802519537508, -0.023579023778438568, 0.0039365896955132484, 0.004574681632220745, 0.0007153215701691806, -0.01712382771074772, -0.007670610211789608, 0.026482511311769485, 0.02595583349466324, 0.009919125586748123, -0.014058283530175686, 0.002476405119523406, 0.028116567060351372, 0.00634715985506773, -0.0036698738113045692, 0.015759862959384918, 0.014031275175511837, -0.0032259102445095778, 0.01667817495763302, 0.028116567060351372, -0.008345839567482471, -0.013605879619717598, 0.01643509231507778, -0.02719825506210327, 0.06217515841126442, -0.012869879603385925, -0.01931157149374485, 9.74335489445366e-05, -0.016570137813687325, -0.035787176340818405, -0.11559933423995972, 0.0026874144095927477, 0.020837590098381042, 0.010324263013899326, 0.0003684222465381026, -0.00237005646340549, -0.005759709980338812, 0.03262710198760033, -0.0038555620703846216, -0.008109509944915771, -0.01592191867530346, -0.03327532485127449, 0.012937402352690697, 0.005192516837269068, 0.01943311281502247, -0.024213740602135658, 0.004702975507825613, -0.022930802777409554, 0.0147065045312047, 0.03527400270104408, 0.01397725660353899, -0.017393918707966805, 0.01636756956577301, -0.04397096484899521, 0.030871504917740822, -0.01168147474527359, -0.02798152156174183, 0.0038825711235404015, 0.01832573674619198, 0.027184750884771347, -0.015948927029967308, -0.0030587909277528524, 0.010087932460010052, -0.002030753530561924, 0.006610499694943428, -0.008717216551303864, -0.0349498949944973, -0.006161471828818321, 0.021283242851495743, -0.028062550351023674, 0.00542209530249238, -0.012133878655731678, 0.02722526527941227, -0.015125147067010403, -0.0022620197851210833, -0.0027448090258985758, -0.02456485852599144, 0.003828552784398198, 0.009932629764080048, -0.023687060922384262, -0.019298067316412926, 0.014193329960107803, -0.023889629170298576, -0.01136411726474762, 0.029845155775547028, -0.00270260707475245, 0.0340585894882679, -0.006455196533352137, -0.01924404874444008, -0.003425103146582842, -0.014004265889525414, 0.0115059157833457, 0.012559274211525917, 0.03813697770237923, 0.014233843423426151, -0.008737473748624325, -0.016327055171132088, -0.020283902063965797, 0.023700565099716187, -0.0004397433949634433, -0.009189877659082413, 0.01198532897979021, -0.02623942866921425, 0.01627303846180439, -0.015206174924969673, 0.01615149714052677, -0.03438270092010498, 0.00681306840851903, 0.016381073743104935, -0.00796095933765173, -0.003102680901065469, -0.020878104493021965, -4.7529847506666556e-05, 0.008487638086080551, 0.007029141765087843, 0.006840077694505453, 0.006765802390873432, -0.005050718784332275, -0.001733652432449162, -0.008575418032705784, -0.0023751207627356052, 0.02510504238307476, -0.023916639387607574, -0.02887282520532608, 0.014963092282414436, 0.037245675921440125, 0.016772707924246788, 0.006306645926088095, -0.004790755454450846, -0.002476405119523406, -0.02507803402841091, 0.009925877675414085, -0.05677331984043121, 0.0184202678501606, 0.0034149745479226112, 0.005884627345949411, 0.007812408730387688, -0.002641836414113641, 0.0032664239406585693, -0.007062903605401516, 0.0009647345286794007, 0.005685434676706791, -0.0011909365421161056, 0.02510504238307476, 0.0027903870213776827, -0.019014470279216766, -0.012451237067580223, -0.015651825815439224, 0.009122353978455067, -0.0124242277815938, -0.006465325132012367, 0.008116262033581734, 0.013079200871288776, -0.0028579100035130978, 0.022768748924136162, -0.004838021472096443, -0.030493376776576042, -0.004868406802415848, 0.0009790831245481968, 0.015341220423579216, 0.012430979870259762, -0.034301672130823135, 0.0016247716266661882, -0.02719825506210327, 0.000649486668407917, -0.007954206317663193, 0.013065695762634277, 0.012863127514719963, -0.028629742562770844, -0.01321424636989832, 0.027549374848604202, 0.044403109699487686, 0.0016382762696594, -0.0046219476498663425, -0.004361984319984913, -0.030682440847158432, 0.013018430210649967, 0.028035540133714676, -0.009338428266346455, 0.015611312352120876, 0.02159384824335575, -0.014301367104053497, 0.0197572223842144, 0.02102665603160858, 0.01775854267179966, -0.021728893741965294, -0.0016475606244057417, -0.01215413585305214, 0.025429153814911842, -0.005030462052673101, 0.0019092122092843056, -0.03497690334916115, 0.02048647217452526, -0.017596488818526268, 0.005172260105609894, 0.008109509944915771, 0.022485151886940002, -0.017866579815745354, -0.012268925085663795, -0.011127786710858345, -0.025591207668185234, -0.01858232356607914, -0.0035010664723813534, 8.023628470255062e-05, 0.019176525995135307, 0.012289182282984257, 0.01924404874444008, 0.01615149714052677, 0.0011630832450464368, 0.013497843407094479, -0.022660711780190468, 0.021755903959274292, -0.008041986264288425, -0.0035787178203463554, -0.043700870126485825, -0.007846170105040073, 0.036678481847047806, -0.000599688442889601, -0.003764406079426408, 0.003389653516933322, -0.007069655694067478, 0.013680155389010906, 0.019176525995135307, -0.009385693818330765, 0.008474133908748627, -0.007751637604087591, 0.011215566657483578, 0.016056964173913002, -0.008730720728635788, 0.005249911453574896, 0.023876124992966652, 0.029926184564828873, -0.023403463885188103, 0.021701885387301445, -0.005634792614728212, -0.019811240956187248, -0.006100701168179512, 0.0007022389909252524, -0.012464741244912148, -0.01725887320935726, 0.0019649185705929995, 0.023957151919603348, 0.006401178427040577, -0.002562497043982148, 0.009027821943163872, 0.023984162136912346, -0.011438392102718353, 0.017245369032025337, 0.009986648336052895, -0.02295781299471855, 0.003831929061561823, 0.0441330187022686, 0.005526755936443806, 0.027630401775240898, 0.015044119209051132, 0.019824746996164322, 0.024551354348659515, 0.015611312352120876, 0.012403970584273338, 0.0358411967754364, 0.004648956935852766, -0.0017977992538362741, 0.018028635531663895, 0.0002121698489645496, -0.05010204762220383, 0.0009124042117036879, 0.01598944142460823, -0.03457176312804222, -0.010135198943316936, 0.023160381242632866, -0.020175864920020103, 0.02402467466890812, 0.006110829301178455, -0.005408590659499168, 0.006080443970859051, -0.0008406610577367246, 0.022431133314967155, 0.0053579481318593025, 0.01348433829843998, 0.007812408730387688, -0.009858354926109314, 0.022809261456131935, -0.016043459996581078, 0.020689040422439575, -0.016988780349493027, -0.012545769102871418, 0.01570584438741207, -0.004311342258006334, 0.030601413920521736, -0.009466721676290035, -0.013659898191690445, 0.024740418419241905, 0.0008794867899268866, 0.031897854059934616, -0.009095344692468643, -0.005297177471220493, 0.007758390158414841, 0.023957151919603348, 0.007859674282371998, 0.01933858171105385, -0.015719348564743996, 0.007130426354706287, 0.013599127531051636, -0.012403970584273338, -0.008886023424565792, 0.029710110276937485, 0.0014053219929337502, 0.0017522212583571672, -0.025307612493634224, 0.021107682958245277, -0.007380261551588774, -0.013011678121984005, 0.004645580891519785, -0.011053511872887611, -0.008271564729511738, 0.016853734850883484, -0.007609839551150799, -0.015395238995552063, -0.0056955632753670216, -0.02121572010219097], "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d": [-0.003503334242850542, -0.015407043509185314, -0.01589241437613964, 0.012557226233184338, -0.0037650875747203827, 0.003570939414203167, -0.006032460834830999, -0.023810885846614838, -0.019941790029406548, -0.023672208189964294, 0.032533686608076096, 0.015018747188150883, 0.03600061684846878, 0.01170436106622219, -0.006153803318738937, 0.02442106604576111, 0.03849680721759796, 0.016599668189883232, 0.03999452292919159, -0.021980345249176025, -0.009374583140015602, -0.002024688059464097, 0.0019241470145061612, 0.022992689162492752, -0.01048400066792965, 0.025211526080965996, 0.03641664981842041, -0.010893099009990692, 0.0063722203485667706, -0.0026019320357590914, -0.014117345213890076, 0.007114143576472998, 0.014755260199308395, -0.016447123140096664, -0.03367083892226219, 0.000215708147152327, -0.003447863506153226, -0.03472478687763214, 0.006798652932047844, -0.009471656754612923, 0.0071696145460009575, 0.0007531908922828734, -0.02650122530758381, 0.02155044674873352, -0.013777585700154305, 0.029205432161688805, -0.007710455916821957, -0.022174494341015816, -0.026556694880127907, 0.021938743069767952, 0.03993904963135719, -0.006635706871747971, -0.02356126718223095, -0.0052385334856808186, -0.02490643598139286, -0.01224520243704319, 0.008923881687223911, 0.01704343594610691, 0.002331511350348592, 0.02033008635044098, 0.0016190570313483477, 0.008043280802667141, 0.00565803237259388, 0.004968112800270319, -0.032145388424396515, -0.010948569513857365, -0.006500496529042721, -0.02241024561226368, -0.024656817317008972, 0.0005581759614869952, 0.03999452292919159, 0.019220668822526932, 0.00210962793789804, 0.0023367118556052446, 0.02275693789124489, -0.02781865932047367, -0.01601722463965416, 0.008618791587650776, -0.0020004194229841232, -0.006233542691916227, -0.00015687865379732102, -0.03428101912140846, -0.0058556473813951015, 0.020884795114398003, 0.031923506408929825, -0.013618106953799725, 0.013930130749940872, 0.03741512447595596, -0.008015546016395092, -0.024642949923872948, 0.002733675530180335, 0.013694379478693008, 0.013271413743495941, 0.013236744329333305, -0.009409252554178238, 0.017376260831952095, -0.03300518915057182, 0.02231317199766636, 0.007793662138283253, -0.0007081207586452365, -0.024989642202854156, 0.008050215430557728, -0.012272937223315239, -0.0065108975395560265, -0.025696896016597748, 0.0064727612771093845, 0.0030144969932734966, -0.002192834159359336, 0.01288311742246151, -0.026931123808026314, -0.014200551435351372, 0.025086715817451477, -0.01077522337436676, -0.0491749569773674, -0.019955657422542572, -0.036721739917993546, 0.022992689162492752, -0.005203864071518183, -0.026639901101589203, -0.018236059695482254, 0.0008255630964413285, 0.004964645951986313, -0.011433940380811691, -0.018236059695482254, 0.023505795747041702, -0.02487870119512081, -7.833098788978532e-05, -0.013403157703578472, 0.0034651979804039, -0.011281395331025124, 0.04102073237299919, -0.0019154796609655023, 0.0037061497569084167, -0.009991697035729885, -0.00800861231982708, 0.026140663772821426, -0.03480799123644829, -0.003373324405401945, -0.027042066678404808, -0.018402472138404846, 0.011829170398414135, 0.0018236059695482254, 0.002889687428250909, -0.027693849056959152, -0.01598948799073696, 0.02806827798485756, 0.009291376918554306, 0.021467240527272224, -0.014519508928060532, 0.011121916584670544, 0.020357821136713028, -0.01202331855893135, -0.006861057598143816, -0.01716824434697628, 0.011898509226739407, -0.01328528206795454, -0.00805714912712574, -0.00437180045992136, -0.01998339407145977, -0.012730572372674942, 0.01755654066801071, 0.014311493374407291, 0.010338390246033669, 0.0025221926625818014, 0.005852180533111095, 0.03186803311109543, -0.0011648889631032944, -0.00696159852668643, -0.018998784944415092, -0.014824599027633667, 0.008306767791509628, 0.039217930287122726, -0.02647348865866661, 0.012765241786837578, 0.0007068206905387342, 0.013091133907437325, 0.027929600328207016, 0.03369857370853424, -0.008556387387216091, 0.0067362478002905846, -0.04579123109579086, -0.010414662770926952, 0.030314849689602852, 0.020260747522115707, -0.007960074581205845, -0.01643325574696064, -0.011191255412995815, -0.0013633708003908396, -0.0002068241301458329, 0.0005508087342604995, -0.003352522850036621, 0.025072848424315453, -0.02033008635044098, -0.004767030943185091, -0.6439062356948853, -0.009991697035729885, -0.014179750345647335, -0.022174494341015816, -0.0006110466783866286, -0.003000629134476185, 0.008993220515549183, 0.004836369305849075, -0.011420072056353092, 0.012335342355072498, -0.013514098711311817, 0.012862316332757473, -0.011607286520302296, 0.0007453903090208769, -0.02378315106034279, -0.006656508427113295, 0.00664264103397727, -0.009679673239588737, 0.013306083157658577, 0.0071696145460009575, -0.0031791762448847294, 0.01136460155248642, 0.007419233676046133, 0.0030300982762128115, 0.00017703018966130912, 0.002012553857639432, 0.00880600605159998, -0.01528223417699337, 0.012016384862363338, 0.037664745002985, -0.018790768459439278, 0.029205432161688805, 0.011350734159350395, 0.020898662507534027, 0.05280829966068268, -0.015448646619915962, -0.012591895647346973, 0.02887260541319847, 0.01824992708861828, 0.01985858380794525, -0.03816398233175278, -0.01398560218513012, 0.014602716080844402, 0.019303875043988228, -0.0005022716941311955, 0.0016545930411666632, 0.001032278873026371, -0.024753890931606293, -0.003668013494461775, 0.017792291939258575, -0.007863000966608524, 0.003373324405401945, -0.01272363867610693, -0.01716824434697628, 0.0050339847803115845, 0.01694636046886444, 0.032339535653591156, -0.01456111203879118, 0.019553493708372116, 0.002794346772134304, 0.000874966848641634, 0.023907959461212158, -0.004409936722368002, -0.0008823340758681297, -0.01304259616881609, 0.014824599027633667, -0.008916947990655899, 0.012744440697133541, 0.013243678025901318, -0.013687445782124996, 0.008625725284218788, 0.020066600292921066, -0.005009715911000967, -0.017598144710063934, 0.01809738203883171, -0.006885326001793146, 0.03367083892226219, -0.01736239343881607, -0.0004407336818985641, 0.017889367416501045, 0.013160471804440022, -0.02887260541319847, -0.03347669169306755, -0.023062027990818024, 0.019484154880046844, -0.0366385318338871, -0.002900088205933571, 0.02084319293498993, -0.010151175782084465, 0.002035088837146759, 0.0018738765502348542, 0.011212056502699852, 0.0023453792091459036, 0.007654984947293997, 0.0324227437376976, -0.0024389864411205053, -0.00880600605159998, 0.019872451201081276, 0.008632659912109375, -0.006337550934404135, -0.012252136133611202, -0.021092811599373817, 0.007384564261883497, -0.01424215454608202, 0.003629877232015133, -0.0031687754672020674, -0.03949528560042381, -0.002751010237261653, 0.04354466125369072, -0.009755945764482021, -0.0066149053163826466, -0.01170436106622219, -0.009346847422420979, 0.008521717973053455, 0.011246725916862488, -0.022077420726418495, 0.03741512447595596, -0.0023991165217012167, 0.03156294301152229, -0.0022188362199813128, 0.017792291939258575, -0.011621154844760895, 0.00717654824256897, -0.0030786353163421154, 0.03331027925014496, 0.03156294301152229, 0.012668168172240257, -0.0023055095225572586, -0.017223715782165527, -0.012605763040482998, 0.0039210994727909565, 0.00173259899020195, 0.011343800462782383, -0.0022067020181566477, 0.01147554349154234, 0.0010556806810200214, 0.015906281769275665, -0.005980456713587046, 0.03577873483300209, -0.019290007650852203, -0.02103734016418457, 0.0214533731341362, 0.00543614849448204, 0.009651937521994114, -0.01301486138254404, -0.020163673907518387, -0.028054410591721535, 0.000522206537425518, -0.029427314177155495, -0.0067362478002905846, -0.009631135500967503, -0.016793817281723022, 0.010858429595828056, 0.011808368377387524, 0.009825283661484718, -0.011551816016435623, -0.017085038125514984, 0.0069373301230371, 0.002080159028992057, 0.01424215454608202, 0.003945367876440287, 0.01315353810787201, 4.436589006218128e-05, 0.01435309648513794, 0.026944991201162338, -0.004919575992971659, -0.016807684674859047, 0.019456420093774796, -0.006105266511440277, -0.03907925263047218, 0.0030942363664507866, -0.039661698043346405, -0.007301358040422201, 0.0355568490922451, -0.023103632032871246, -0.006299414671957493, 0.004555548075586557, -0.019192932173609734, -0.02282627671957016, 0.011101114563643932, 0.002979827579110861, 0.014006403274834156, -0.012016384862363338, -0.009450855664908886, 0.032533686608076096, 0.004902241285890341, -0.008362239226698875, -0.020191408693790436, 0.012827646918594837, 0.023186838254332542, -0.015753736719489098, 0.0032502482645213604, 0.012175863608717918, 0.009950093924999237, 0.004704626277089119, -0.01953962631523609, 0.02340872213244438, 0.022465717047452927, 0.010608810931444168, 0.029871081933379173, 0.020565837621688843, -0.006521298084408045, 0.0366385318338871, 0.0012480953009799123, 0.008591056801378727, -0.018402472138404846, 0.011960913427174091, 0.009908489882946014, 0.02650122530758381, -0.016225239261984825, -0.005859114229679108, -0.015961753204464912, -0.002068024594336748, -0.0013616373762488365, 0.000349293346516788, 0.01601722463965416, 0.007440035231411457, 0.024476537480950356, -0.02669537253677845, -0.015559588558971882, 0.014741392806172371, -0.01349329762160778, -0.004798233043402433, -0.009915424510836601, -0.01331301685422659, -0.011579551734030247, -0.005065186880528927, 0.021273091435432434, 0.016072694212198257, -0.023894092068076134, 0.027347156777977943, -0.002017754130065441, -0.013132737018167973, 0.017126642167568207, 0.0028654190246015787, -0.00565803237259388, 0.010477066971361637, -0.010123440064489841, 0.047649506479501724, -0.027000462636351585, 0.005879915785044432, -0.0011579551501199603, 0.03159068152308464, -0.012813778594136238, -0.014075742103159428, 0.004867571871727705, 0.011690492741763592, 0.005779374856501818, 0.004035508260130882, 0.037331920117139816, -0.01077522337436676, 0.013846924528479576, -0.0024199183098971844, -0.007537109311670065, 0.01549024973064661, -0.03081408701837063, 0.018055779859423637, 0.005775908008217812, 0.0043371315114200115, 0.023935696110129356, 0.007530175149440765, 0.01496327668428421, 0.016835419461131096, -0.005370276980102062, 0.04737215116620064, 0.004988914355635643, 0.006316749379038811, 0.022715335711836815, -0.019747642800211906, -0.014041072688996792, -0.017833895981311798, -0.004555548075586557, 0.006337550934404135, 0.0037026829086244106, 0.011135783977806568, 0.01235614437609911, 0.010685083456337452, 0.012605763040482998, 0.0146720539778471, -0.004836369305849075, -0.015934016555547714, -0.01589241437613964, 0.02970466949045658, -0.006542099639773369, -0.015975620597600937, -0.016447123140096664, -0.03408687189221382, 0.00022968421399127692, -0.007620315533131361, 0.041963741183280945, -0.021813932806253433, 0.01328528206795454, 0.016641272231936455, 0.0031687754672020674, 0.009346847422420979, 0.013638908974826336, 0.010581075213849545, -0.023921826854348183, 0.03491893410682678, 0.006018592976033688, -0.0036541458684951067, 0.0036056088283658028, -0.01809738203883171, 0.021605918183922768, 0.00859799049794674, -0.014658186584711075, -0.01037305872887373, -0.007620315533131361, 0.009298310615122318, -0.00874360091984272, 0.0022552390582859516, -0.014866202138364315, 0.007904604077339172, -0.0006920862360857427, 0.00110681785736233, 0.014075742103159428, -0.012876183725893497, 0.014921673573553562, 0.0008649994269944727, 0.00040693109622225165, 0.003522402374073863, -0.027638377621769905, -0.005963122472167015, 0.008910014294087887, 0.092192642390728, 0.024448800832033157, -0.029565991833806038, 0.0012532958062365651, 0.019525758922100067, -0.0036853482015430927, -0.0282624252140522, -0.03655532747507095, 0.02180006541311741, -0.0010747488122433424, 0.015448646619915962, -0.02442106604576111, 0.023602869361639023, 0.003501600818708539, 0.004486209247261286, -0.018014175817370415, -0.023866357281804085, 0.0010955503676086664, -0.008403842337429523, -0.014713657088577747, -0.020926399156451225, 0.011565683409571648, -0.0008151622605510056, 0.003439196152612567, -0.03808077424764633, -0.0073706964030861855, 0.019387081265449524, -0.0038482940290123224, 0.011780633591115475, -0.009277508594095707, -0.010442397557199001, 0.028012806549668312, 0.00880600605159998, 0.023935696110129356, -0.0044376724399626255, -0.015254498459398746, 0.01761201210319996, -0.010449331253767014, -0.001715264399535954, 0.0003722617693711072, 0.01777842454612255, 0.02823469042778015, 0.015226763673126698, -0.006760516669601202, 0.018457943573594093, 0.0117945009842515, 0.0023523131385445595, 2.590718759165611e-05, -0.03181256353855133, -0.004770497791469097, 0.04945231229066849, -0.007162680383771658, -0.0018461410654708743, -0.004475808702409267, 0.0266676377505064, -0.00570656917989254, 0.006649574730545282, -0.0074747041799128056, -0.011128850281238556, 0.025266997516155243, -0.010241315700113773, -0.010449331253767014, 0.02069064788520336, -0.002674737712368369, -0.021883271634578705, -0.015545721165835857, -0.007225085515528917, -0.012390813790261745, -0.01682155206799507, 0.013930130749940872, -0.015642795711755753, -0.015864679589867592, -0.025946516543626785, 0.007883802056312561, 0.007668852340430021, 0.014838467352092266, 0.03117464855313301, -0.014588847756385803, 0.010303720831871033, -0.018360869958996773, -0.010282918810844421, -0.0366385318338871, 0.006289013661444187, -0.013132737018167973, -0.014588847756385803, 0.0030665008816868067, -0.005058253183960915, -0.0004138649383094162, -0.027250081300735474, 0.009811416268348694, 0.006424224004149437, 0.018887843936681747, -0.0017820028588175774, -0.011177387088537216, 0.004572882782667875, -0.003414927516132593, -0.005775908008217812, 0.0008927348535507917, 0.00022946753597352654, -0.012647366151213646, 0.003484266111627221, -0.031091442331671715, 0.0024077838752418756, -0.031230119988322258, -9.458222484681755e-05, -0.020787721499800682, 0.011537948623299599, 0.014165882021188736, -0.01636391691863537, -0.014228287152945995, 0.015143556520342827, -0.02848430909216404, -0.0024857898242771626, 0.0036853482015430927, 0.0060775307938456535, -0.005023583769798279, 0.016031092032790184, 0.026071324944496155, 0.0038170916959643364, -0.016225239261984825, 0.0019709505140781403, -0.03333801403641701, 0.004929976537823677, 0.002939957892522216, -0.023006558418273926, 0.003314386587589979, 0.006323683075606823, -0.03012070059776306, 0.002855018014088273, -2.3740354663459584e-05, 0.006479694973677397, 0.021938743069767952, 0.016419388353824615, -0.027887998148798943, -0.0293441079556942, -0.010137307457625866, -0.014658186584711075, -0.007856067270040512, -0.018014175817370415, 0.01851341500878334, -0.01797257363796234, -0.010386927053332329, -0.0030994368717074394, -0.02365834079682827, -0.001682328525930643, -0.021370166912674904, -0.006264745257794857, 0.004545147065073252, 0.005470817908644676, 0.007259754464030266, -0.014880070462822914, -0.024948040023446083, -0.025891045108437538, -0.004926509689539671, -0.024213049560785294, -0.03159068152308464, 0.008688130415976048, -0.013167406432330608, 0.034475166350603104, 0.006334084086120129, 0.035667791962623596, -0.012099591083824635, 0.021716859191656113, 0.008882278576493263, 0.011732096783816814, 0.0036714805755764246, -0.002655669581145048, -0.03294971585273743, -0.03525175899267197, -0.011732096783816814, 0.014089609496295452, 0.014477905817329884, 0.012945522554218769, -0.010830693878233433, -0.006011659279465675, 0.03081408701837063, -0.017001831904053688, -0.00552282202988863, -0.01944255270063877, -0.033393483608961105, -0.021397901698946953, 0.008577188476920128, -0.008279032073915005, -0.001763801439665258, -0.019955657422542572, 0.0019397481810301542, 0.052253592759370804, -0.00989462248980999, 0.017695218324661255, -0.02471228875219822, 0.019830849021673203, -0.001958816312253475, -0.0005027050501666963, -0.002045489614829421, 0.035501379519701004, -0.019678303971886635, 0.023256177082657814, -0.003449596930295229, -0.010532538406550884, -0.001656326581723988, 0.007606447674334049, -0.009832218289375305, -0.01453337725251913, -0.02030235156416893, -0.011232858523726463, 0.016571933403611183, -0.007863000966608524, -0.007883802056312561, 0.028650721535086632, -0.03369857370853424, -0.016225239261984825, 0.00019902353233192116, -0.004174185451120138, -0.02388022467494011, -0.006323683075606823, -0.00408404553309083, -0.0013685711892321706, 0.019733773544430733, -0.01777842454612255, -0.020094335079193115, 0.0007501572836190462, -0.018943313509225845, 0.05461110547184944, 0.0031618415378034115, 0.01435309648513794, 0.007155746687203646, -0.022021949291229248, -0.0012056254781782627, 0.020829325541853905, -0.0017716019647195935, -0.024323992431163788, 0.018402472138404846, 0.006330616772174835, -0.013229810632765293, -0.0005373744061216712, -0.013098067604005337, 0.011953979730606079, -0.027707716450095177, -0.028248557820916176, 0.02049649879336357, 0.006282079964876175, -0.006361819338053465, -0.007641117088496685, -0.006601037457585335, -0.04021640494465828, -0.008140355348587036, 0.010685083456337452, 0.020122069865465164, -0.012148127891123295, 0.00440300302579999, -0.03200671076774597, 0.009298310615122318, 0.005945787765085697, 0.020954133942723274, 0.022590525448322296, -0.01349329762160778, -0.03394819423556328, -0.0018773433985188603, -0.013403157703578472, -0.001087749726139009, -0.013749850913882256, 0.02551661618053913, -0.003482532687485218, -0.003513735020533204, 0.002673004288226366, -0.0018305398989468813, -0.014256022870540619, 0.0029347576200962067, -0.013451694510877132, 0.02020527608692646, 0.012439350597560406, 0.00859799049794674, 0.011648889631032944, 0.016932493075728416, 0.002662603510543704, 0.01978924497961998, -0.012682035565376282, 0.008604924194514751, 0.0024476535618305206, 0.006750115659087896, 0.0015913215465843678, 0.006590636912733316, -0.003498133970424533, -0.0064311581663787365, -0.02608519233763218, -0.008195825852453709, -0.00874360091984272, -0.007516307756304741, 0.005758573301136494, -0.04434898868203163, -0.024476537480950356, 0.005654565524309874, -0.025502748787403107, 0.023075897246599197, -0.004305928945541382, 0.017154376953840256, 0.003423594869673252, 0.019220668822526932, -0.041741855442523956, 0.016100430861115456, -0.015753736719489098, 0.014630450867116451, -0.026944991201162338, 0.004846770316362381, 0.017001831904053688, -0.027610642835497856, 0.013125802390277386, -0.03014843724668026, -0.04351692646741867, 0.00912496354430914, 0.01507421862334013, 0.004122181795537472, -0.0013191674370318651, 0.00282554910518229, 0.010269051417708397, 0.0024597879964858294, 0.009603400714695454, -0.022465717047452927, -0.010893099009990692, 0.02017754130065441, 0.028928076848387718, 0.010546405799686909, 0.02017754130065441, -0.030897293239831924, 0.017501071095466614, 0.013597305864095688, 0.005533222574740648, 0.0051969303749501705, -0.03184029832482338, 0.012543357908725739, -0.013950932770967484, 0.016391651704907417, 6.110467074904591e-05, -0.012321474961936474, 0.00399737199768424, -0.020038863644003868, -0.013943999074399471, 0.010074903257191181, 0.012536424212157726, -0.011281395331025124, 0.024323992431163788, 0.020468764007091522, -0.012328408658504486, 0.00962420180439949, 0.0002942558203358203, 0.00272154132835567, -0.006989333778619766, 0.0073914979584515095, -0.029843347147107124, -0.009118029847741127, 0.002674737712368369, 0.039273399859666824, 0.0025915312580764294, -0.016447123140096664, -0.00842464342713356, -0.024726156145334244, -0.017029568552970886, -0.015448646619915962, -0.03267236426472664, 0.008764402940869331, 0.03245047852396965, -0.0007900270284153521, 0.013479430228471756, 0.013694379478693008, -0.013666643761098385, -0.0031497073359787464, -0.005696168635040522, -0.0007804929628036916, -0.015240631066262722, 0.0023887157440185547, 0.01181530300527811, 0.012758308090269566, -0.038441337645053864, 0.0032034446485340595, 0.0038378932513296604, -0.015448646619915962, 0.005089455284178257, 0.009749011136591434, -0.003636811161413789, -0.0013243678258731961, -0.01998339407145977, 0.013729048892855644, 0.02662603370845318, -0.0043579330667853355, -0.01061574462801218, -0.01802804321050644, -0.0073498948477208614, -0.013340752571821213, 0.007578712422400713, -0.013188207522034645, -0.02321457304060459, 0.011662757955491543, -0.013299149461090565, 0.013340752571821213, -0.012619630433619022, -0.010927768424153328, -0.0077867284417152405, -0.037387389689683914, 0.03491893410682678, -0.0010435463627800345, -0.020191408693790436, 0.030703146010637283, 0.001404107315465808, -0.02992655336856842, -0.0057620401494205, 0.01317434012889862, 0.011288329027593136, -0.005137992557138205, 0.023394854739308357, -0.037664745002985, 0.019608965143561363, -0.01528223417699337, 0.012051054276525974, -0.005508954171091318, 0.0021477642003446817, -0.013375421985983849, -0.005099856294691563, -0.02951052039861679, 0.04265712574124336, -0.005450016353279352, -0.007904604077339172, 0.006080998107790947, 0.00853558536618948, 0.0014223086182028055, 0.015656663104891777, -0.018721429631114006, -0.016086561605334282, -0.0005178729188628495, -0.0023817820474505424, 0.0037997569888830185, 0.00221363571472466, -0.015947885811328888, 0.013146604411303997, 0.02691725641489029, -0.021564314141869545, 0.019941790029406548, 0.21278639137744904, -0.009312178008258343, 0.013735982589423656, 0.02429625578224659, -0.027541304007172585, 0.028983548283576965, 0.028220823034644127, -0.011489410884678364, -0.01739012822508812, 0.004763564094901085, -0.016100430861115456, 0.01130219642072916, -0.024282388389110565, 0.007758992724120617, -0.004929976537823677, 0.007904604077339172, -0.03095276467502117, -0.0012818978866562247, -0.024115975946187973, -0.073388010263443, 0.010629612021148205, -0.002166832098737359, -0.018665960058569908, -0.000534340797457844, 0.030425790697336197, 0.001437043072655797, -0.007155746687203646, -0.002009086776524782, 0.01165582425892353, 0.016294578090310097, -0.024629082530736923, -0.013521033339202404, -0.020579705014824867, -0.011357667855918407, -0.007863000966608524, 0.005432681646198034, 0.0024753890465945005, 0.005907651502639055, 0.012737506069242954, -0.012411614879965782, 0.011759831570088863, -0.0007856933516450226, 0.005973523017019033, 0.03206218406558037, -0.029177695512771606, 0.017334656789898872, -0.0032554487697780132, -0.009873821400105953, -0.0256691612303257, 0.0022188362199813128, -0.02561368979513645, 0.012806844897568226, 0.04590217396616936, 0.0032554487697780132, 0.002262172754853964, -0.0033871920313686132, 4.265951065463014e-05, 0.0053390744142234325, -0.018083514645695686, 0.008258230984210968, -0.014311493374407291, 0.014602716080844402, 0.002087092725560069, 0.01464431919157505, -0.027666114270687103, 0.027957335114479065, -0.011544882319867611, -0.005450016353279352, 1.8181076484324876e-06, -0.013527967035770416, -0.00426779268309474, -0.01549024973064661, -0.014505641534924507, 0.013978667557239532, -0.008861476555466652, -0.008799072355031967, 0.025169923901557922, -0.03414234146475792, 0.009998630732297897, 0.004902241285890341, 0.010442397557199001, -0.007238952908664942, -0.008715866133570671, -0.013756784610450268, -0.019678303971886635, -0.029260901734232903, 0.007440035231411457, -0.012279871851205826, -0.021397901698946953, 0.014436302706599236, -0.01684928685426712, -0.012959389947354794, 0.0008398641366511583, 0.00023250110098160803, 0.00232111057266593, -0.02576623484492302, 0.004933443386107683, 0.00962420180439949, 0.007308291736990213, -0.009485525079071522, -0.011593419127166271, -0.0203716903924942, 0.035279493778944016, -0.0031185050029307604, -0.01643325574696064, 0.016322312876582146, 0.013396223075687885, 0.0038621616549789906, 0.013943999074399471, -0.021536579355597496, 0.02375541441142559, -0.023644473403692245, -5.203105683904141e-05, -0.016641272231936455, -0.0020264214836061, 0.013791454024612904, -0.011059511452913284, -0.01157261710613966, -0.012106524780392647, 0.0038794963620603085, 0.00394883519038558, -0.010900032706558704, -0.0005469084717333317, -0.0015939217992126942, -0.026168398559093475, -0.010546405799686909, -0.03558458387851715, 0.020191408693790436, -0.013479430228471756, -0.020676780492067337, 0.027263950556516647, -0.03289424628019333, -0.003354256274178624, -0.0038448271807283163, -0.002922623185440898, 0.02295108698308468, 0.001357303699478507, -0.024767758324742317, 0.014256022870540619, 0.009866886772215366, 0.006032460834830999, -0.004527812823653221, 0.014179750345647335, 0.004746229387819767, 0.014796864241361618, -0.004936910700052977, 0.012903919443488121, -0.015088086016476154, 0.004891840275377035, -0.007058672606945038, -0.03575099632143974, -0.016003355383872986, 0.008237428963184357, -0.006829855032265186, 0.0015826541930437088, -0.009492458775639534, -0.023713812232017517, -0.0313410609960556, -0.0026140664704144, 0.03494666889309883, -0.03156294301152229, 0.021342430263757706, 0.021592048928141594, -0.0036506790202111006, 0.0025724631268531084, -0.014755260199308395, -0.17894913256168365, 0.025377938523888588, 0.02211902290582657, -0.022715335711836815, 0.029011283069849014, 0.013583437539637089, 0.02870619297027588, 0.0036714805755764246, -0.018333133310079575, -0.004160318057984114, 0.02062130905687809, 0.006150336470454931, -0.04709479957818985, -0.008771336637437344, -0.019414816051721573, 0.020385557785630226, -0.022021949291229248, 0.035695526748895645, 0.03930113464593887, 0.023644473403692245, -0.005886849947273731, -0.02867845818400383, 3.881338125211187e-05, -0.0007800596067681909, -0.0013443026691675186, -0.016516461968421936, -0.00084029755089432, 0.015517985448241234, 0.007315225433558226, -0.014477905817329884, -0.007037871051579714, 0.023089764639735222, 0.00442727142944932, -0.01655806414783001, 0.019872451201081276, 0.004302462097257376, -0.010698950849473476, -0.004877972882241011, -0.006361819338053465, 0.0043787346221506596, 0.0037754883524030447, 0.0045000771060585976, 0.012120393104851246, -0.0036818813532590866, -0.0172930546104908, 0.031091442331671715, -0.00042946613393723965, 0.006639173720031977, 0.013181273825466633, -0.018305398523807526, 0.013243678025901318, -0.001742999884299934, 0.027319420129060745, 0.005987390875816345, 0.03749833256006241, 0.01787549816071987, 0.017944836989045143, 0.007342961151152849, -0.013534900732338428, -0.027097536250948906, -0.0063722203485667706, -0.01770908571779728, 0.015947885811328888, 0.0011700893519446254, -0.006465827114880085, -0.015906281769275665, 0.0018530748784542084, 0.0030682343058288097, -0.029871081933379173, 0.011690492741763592, -0.021980345249176025, -0.004936910700052977, 0.02765224687755108, -0.025488881394267082, 0.0037720215041190386, 0.001077348948456347, -0.030203906819224358, 0.0044168708845973015, -0.003515468677505851, -0.011725162155926228, -0.03705456480383873, 0.04695612192153931, -0.015309969894587994, 0.002536060521379113, 0.018263794481754303, 0.015850810334086418, -0.00589725049212575, -0.032533686608076096, -0.01802804321050644, 0.005040918476879597, 0.025655293837189674, -0.03225633129477501, -0.0032329135574400425, -0.02630707621574402, 0.011128850281238556, 0.019775377586483955, 0.027347156777977943, -0.015268366783857346, 0.012598829343914986, -0.007107209879904985, -0.004690758418291807, -0.00962420180439949, -0.002310709794983268, 0.03095276467502117, 0.032117653638124466, 0.004288594238460064, -0.010962437838315964, -0.008563321083784103, 0.041769590228796005, 0.008133421652019024, -0.0074539026245474815, 0.009076426737010479, 0.029982024803757668, -0.0031514407601207495, 0.0031982443761080503, 0.020884795114398003, -0.0015471181832253933, -0.022299302741885185, 0.01662740297615528, -0.028276294469833374, 0.05774521082639694, -0.004669956862926483, -0.005876448936760426, -0.00017107139865402132, -0.009554862976074219, -0.03497440367937088, -0.11648889631032944, -0.026778578758239746, -0.0037269513122737408, 0.009804482571780682, -0.0018704095855355263, -0.003402793314307928, -0.004857170861214399, 0.011274461634457111, 0.01682155206799507, 0.0026296675205230713, -0.021411769092082977, -0.015018747188150883, 0.012640432454645634, -0.0053772106766700745, 0.019969524815678596, -0.027763187885284424, -0.0016095229657366872, -0.018624356016516685, 0.001407574163749814, 0.03175709396600723, -0.00448274239897728, -0.03622250258922577, 0.012272937223315239, -0.033421218395233154, 0.02890034206211567, -0.0015150491381064057, -0.028761664405465126, 0.025183791294693947, 0.024920303374528885, 0.01560119166970253, -0.026903389021754265, -0.009242839179933071, 0.013243678025901318, -0.0022552390582859516, -0.005290537606924772, -0.012238268740475178, -0.017320789396762848, -0.006105266511440277, 0.019220668822526932, -0.03686041757464409, 0.014027205295860767, -0.005758573301136494, 0.015323837287724018, -0.0037824222818017006, 0.0026088659651577473, 0.014588847756385803, -0.010830693878233433, 0.01697409711778164, -0.0010738821001723409, -0.02017754130065441, -0.031535208225250244, 0.017306922003626823, -0.012064921669661999, -0.013375421985983849, 0.03450290113687515, -0.02216062694787979, 0.03184029832482338, 0.01694636046886444, -0.0005854780902154744, -0.013437826186418533, 0.008799072355031967, 0.0007895936723798513, 0.0101858451962471, 0.03713776916265488, 0.014311493374407291, -0.0023557799868285656, -0.019775377586483955, -0.041519973427057266, 0.022854013368487358, -0.003657612716779113, -0.008202760480344296, 0.010428530164062977, -0.021051207557320595, 0.013250612653791904, -0.015545721165835857, 0.01130219642072916, -0.018527282401919365, -0.013319950550794601, 0.001469978946261108, 0.001087749726139009, -0.011017908342182636, -0.023547399789094925, 0.021980345249176025, -0.0014604448806494474, 0.01518516056239605, 0.011891575530171394, 0.016447123140096664, -0.009742077440023422, 0.012841514311730862, -0.018776901066303253, -0.006368753034621477, 0.02480936236679554, -0.013867726549506187, -0.03702683001756668, 0.006434625014662743, 0.04859251156449318, 0.004947311244904995, 0.005973523017019033, -0.00794620718806982, 0.011274461634457111, -0.011503279209136963, 0.00794620718806982, -0.05985310673713684, 0.04185279831290245, 0.002180699957534671, 0.005807110108435154, 0.00442727142944932, -0.0033369215670973063, 0.014782995916903019, 0.0007484238594770432, 0.0014015070628374815, 0.004708093125373125, -0.014602716080844402, 0.022257700562477112, -0.013423958793282509, -0.01618363708257675, -0.019927922636270523, -0.028109880164265633, -0.008445445448160172, -0.008195825852453709, 0.007259754464030266, -0.00045070110354572535, 0.018360869958996773, 0.006549033802002668, 0.009048691019415855, -0.0030717013869434595, -0.03530723229050636, -0.00112068559974432, -0.0028758198022842407, 0.023505795747041702, 0.010144242085516453, -0.018485678359866142, 0.006164204329252243, -0.029676934704184532, 0.007329093292355537, -0.014782995916903019, 0.01966443657875061, 0.019997261464595795, -0.014991012401878834, -0.0038448271807283163, 0.015337704680860043, 0.058521803468465805, 0.0038205585442483425, -0.007082941010594368, -0.007800595834851265, -0.017598144710063934, 0.007329093292355537, 0.043655600398778915, -0.016613535583019257, -0.0009074693080037832, 0.017598144710063934, -0.008528651669621468, 0.012376945465803146, 0.02627934142947197, -0.005346008576452732, -0.008896145969629288, -0.016031092032790184, -0.029482785612344742, 0.031951241195201874, -0.010047167539596558, 0.002061090897768736, -0.03394819423556328, 0.01131606474518776, -0.0007917605107650161, 0.012869250029325485, -0.00349640054628253, 0.021051207557320595, -0.026487356051802635, 0.0031635749619454145, -0.01851341500878334, -0.00717654824256897, -0.016252975910902023, -0.009922358207404613, -0.019331609830260277, 0.0015055150724947453, 0.0023037760984152555, 0.014096543192863464, 0.011496344581246376, -0.005391078535467386, 0.004715026821941137, -0.01293165422976017, 0.022964954376220703, -0.017015699297189713, -0.01320207491517067, -0.04077111557126045, 0.00047366952640004456, 0.01770908571779728, 0.012141194194555283, -0.009478590451180935, -0.0006153803551569581, -0.008181958459317684, -0.0022777740377932787, 0.020066600292921066, 0.0010106104891747236, 0.0045174118131399155, -0.010352257639169693, 0.003449596930295229, 0.016169767826795578, -0.013895461335778236, 0.004985447507351637, 0.016488727182149887, 0.03306065872311592, -0.0031982443761080503, 0.010137307457625866, -0.01109418086707592, -0.01707117073237896, -0.003598674898967147, -0.006153803318738937, 0.006126068066805601, -0.017445599660277367, -0.002920889761298895, 0.011558749713003635, -0.00032740834285505116, -0.006074063945561647, 0.03164615109562874, 0.02519765868782997, -0.004444606136530638, 0.007967008277773857, 0.0031341060530394316, -0.023810885846614838, -5.046010483056307e-05, 0.02275693789124489, 0.013735982589423656, 0.03392045944929123, 0.010061034932732582, 0.006438091862946749, 0.025946516543626785, 0.025974251329898834, 0.02388022467494011, 0.016960229724645615, 0.011052577756345272, -0.006368753034621477, 0.012078789062798023, 0.010442397557199001, -0.031035970896482468, -0.00019999861251562834, -0.01376371830701828, -0.02372767962515354, -0.002887954004108906, 0.012584961950778961, -0.02870619297027588, 0.03156294301152229, 0.02449040487408638, -0.01672447845339775, 0.012016384862363338, -0.011322998441755772, 0.014547244645655155, 0.005016650073230267, 0.0018773433985188603, 0.0002851551107596606, -0.02100960537791252, 0.002173766028136015, -0.021370166912674904, 0.026223869994282722, -0.00963807012885809, -0.014991012401878834, 0.01234227605164051, -0.002156431321054697, 0.039245665073394775, -0.022618262097239494, -0.020870927721261978, 0.037775687873363495, 0.007384564261883497, 0.04315636307001114, -0.00936764944344759, -0.018818505108356476, -0.019414816051721573, 0.014477905817329884, -0.0008901346591301262, 0.0024719221983104944, -0.015226763673126698, -0.005460417363792658, 0.023991165682673454, 0.008209694176912308, -0.011544882319867611, 0.027153007686138153, 0.0008064949652180076, 0.010830693878233433, -0.00010417045996291563, 0.013319950550794601, -0.005106789991259575, -0.020773854106664658, 0.01665513962507248, -0.01819445751607418, -0.00843851175159216, 0.007481638342142105, -0.0032658495474606752, -0.008993220515549183, -0.012633498758077621, -0.025891045108437538], "d90ad960-a3c2-473c-a61f-0725b4354690": [0.010001268237829208, -0.019403820857405663, 0.006232082843780518, 0.015471349470317364, -0.00934132095426321, 0.013811275362968445, -0.01973039284348488, -0.018505748361349106, -0.013471095822751522, -0.01797506771981716, 0.031078770756721497, 0.016206135973334312, 0.04117529094219208, 0.0023557408712804317, 0.0019594321493059397, 0.008606533519923687, 0.028221266344189644, -0.004398516844958067, 0.05021044984459877, -0.01111025270074606, 0.014818205498158932, 0.005010839551687241, 0.0020478786900639534, 0.011327967047691345, -0.0005561930011026561, 0.03004462644457817, 0.021268002688884735, -0.015158385038375854, 0.01768931746482849, 0.003779390826821327, -0.017770960927009583, 0.006517833098769188, 0.0018199586775153875, 0.006286511663347483, -0.03622227907180786, -0.0028030765242874622, 0.0015979917952790856, -0.011538878083229065, 0.014899848960340023, -0.008613336831331253, -0.0019186106510460377, 0.0019050034461542964, -0.015117563307285309, 0.013688811101019382, -0.011028609238564968, 0.025118831545114517, -0.007626817561686039, -0.01747160404920578, -0.03331034630537033, 0.01537609938532114, 0.041855648159980774, 0.002937447279691696, -0.03053448349237442, 0.009041963145136833, -0.013477899134159088, 0.0002846874704118818, 0.012913201935589314, 0.02080535888671875, -0.0011387498816475272, 0.014287525787949562, 0.012164807878434658, -0.001125142676755786, 0.005881698336452246, 0.018641820177435875, -0.03233063220977783, -0.013253381475806236, 0.0018250613939017057, -0.0326572023332119, -0.004537990316748619, -0.005085678771138191, 0.04857758805155754, 0.012593433260917664, -0.007429513614624739, 0.0012782233534380794, 0.013627578504383564, -0.04166514798998833, -0.025826403871178627, 0.008266353979706764, -0.012062754482030869, 0.0018726864363998175, 0.00802142545580864, -0.016070064157247543, 0.00022366781195160002, 0.011164681054651737, 0.031432557851076126, -0.030207911506295204, 0.0034579215571284294, 0.03657606616616249, -0.009470588527619839, -0.015226420946419239, 0.01698174513876438, 0.024179937317967415, 0.007565585430711508, 0.015117563307285309, -0.00409915903583169, 0.019199714064598083, -0.03080662712454796, 0.012518594041466713, -0.004395115189254284, -0.01641024462878704, -0.026506762951612473, 0.0006067946087568998, -0.010096518322825432, -0.0065858690068125725, -0.02378532849252224, 0.01384529285132885, 0.005310197360813618, -0.0007560482481494546, 0.013988167978823185, -0.027921907603740692, -0.02228854037821293, 0.022247718647122383, -0.005544920917600393, -0.033255916088819504, -0.021921146661043167, -0.032412271946668625, 0.020274680107831955, -0.030697770416736603, -0.028629479929804802, -0.00323000131174922, 0.009055569767951965, 0.012273665517568588, -0.00747713865712285, -0.025173259899020195, 0.01896839216351509, -0.016383029520511627, -0.02215246856212616, -0.018206389620900154, -0.008184711448848248, -0.009844785556197166, 0.03899814188480377, 0.007722067646682262, 0.005211545154452324, -0.00605178764089942, -0.007858139462769032, 0.025744760408997536, -0.02797633595764637, 0.008334389887750149, -0.018083926290273666, -0.027921907603740692, 0.010273411870002747, 0.007062119897454977, 0.006374957971274853, -0.03331034630537033, -0.014614097774028778, 0.01910446397960186, 0.0013360538287088275, 0.02129521779716015, -0.01932217739522457, 0.0022723970469087362, -0.0009661089279688895, -0.012933612801134586, 0.008123478852212429, -0.0275409072637558, 0.018124748021364212, -0.009803964756429195, -0.010321036912500858, 0.001979842782020569, -0.013171738013625145, -0.028874410316348076, 0.006789976730942726, 0.02164900302886963, 0.010559162124991417, 0.008035032078623772, 0.013756846077740192, 0.030588913708925247, 0.008769819512963295, -0.02023385837674141, -0.020002536475658417, -0.023907793685793877, 0.012573023326694965, 0.023254649713635445, -0.02264232747256756, -0.002789469435811043, -0.019131677225232124, 0.011593306437134743, 0.02841176651418209, 0.03154141455888748, -0.023349899798631668, -0.00011098346294602379, -0.035052064806222916, -0.004371302668005228, 0.031214842572808266, 0.024152722209692, 0.0013011854607611895, -0.010599983856081963, -0.012362111359834671, -0.011851843446493149, 0.009191641584038734, 0.008266353979706764, -0.001148104784078896, 0.03159584477543831, -0.013341828249394894, -0.009797160513699055, -0.6453063488006592, -0.015865957364439964, -0.004837348125874996, -0.00965428538620472, -0.002340432722121477, 0.0030820234678685665, 0.016423851251602173, 0.012491379864513874, -0.007851336151361465, 0.005698001477867365, -0.02024746499955654, 0.029718054458498955, -0.000492409395519644, -0.020056964829564095, -0.020642073825001717, -0.004357695579528809, 0.006905637681484222, -0.022193290293216705, 0.006470208056271076, -0.01484541967511177, -0.00225538806989789, 0.02613936923444271, 0.013988167978823185, 0.0013598663499578834, -0.008558908477425575, -0.0076132104732096195, 0.016165316104888916, 0.002996978582814336, -0.00040608891868032515, 0.03200405836105347, -0.032493915408849716, 0.03834499791264534, 0.015362491831183434, 0.027581728994846344, 0.049040231853723526, -0.004170597065240145, -0.01853296160697937, 0.01881871372461319, 0.006436190102249384, 0.024302400648593903, -0.028520623221993446, -0.011157877743244171, 0.022247718647122383, 0.012015129439532757, 0.012368915602564812, -0.0037113549187779427, 0.0016983445966616273, -0.01353232841938734, -0.003935873042792082, 0.004612830001860857, 0.0016813356196507812, -0.011879057623445988, -0.020995859056711197, 0.009661088697612286, -0.005908912513405085, 0.025608690455555916, 0.026887763291597366, -0.013253381475806236, -0.009300499223172665, 0.011130663566291332, 0.015063134953379631, 0.017022566869854927, -0.009314105845987797, 0.009538624435663223, -0.005578938871622086, -0.0005051661282777786, -0.0049189911223948, 0.016165316104888916, 0.012790737673640251, -0.012362111359834671, 0.018505748361349106, 0.008960319682955742, -0.019226927310228348, -0.025445403531193733, 0.025023581460118294, 0.011525271460413933, 0.03279327228665352, -0.03303820267319679, 0.008150693029165268, 0.019635142758488655, -0.003037800081074238, -0.027227941900491714, -0.028085194528102875, -0.007790103554725647, 0.01895478367805481, -0.01782538928091526, -0.008354800753295422, 0.02868391014635563, 0.00021718315838370472, -0.0023268256336450577, -0.012627451680600643, 0.003342260606586933, -0.006817190907895565, 0.00819831807166338, 0.03529699146747589, 0.001011182670481503, -0.010266607627272606, 0.014382775872945786, 0.013525525107979774, 0.003922265954315662, -0.02088700234889984, -0.02328186295926571, 0.0019271151395514607, -0.022383790463209152, -0.00307181803509593, -0.00010641230619512498, -0.0355147086083889, -0.01466852705925703, 0.04495808109641075, -0.02200279012322426, 0.001203383901156485, -0.013090095482766628, -0.00708253076300025, 0.002454392844811082, 0.012688684277236462, -0.02408468723297119, 0.028711123391985893, 0.015103955753147602, 0.029636410996317863, -0.008851462975144386, 0.021431289613246918, -0.009259677492082119, 0.01498149149119854, -0.009246070869266987, 0.0240030437707901, 0.026602013036608696, 0.015226420946419239, 0.012416540645062923, -0.01157969981431961, -0.010348251089453697, -0.00261087529361248, 0.010144143365323544, -0.0023115177173167467, 0.0007998463115654886, 0.018424104899168015, -0.01057957299053669, 0.007558781653642654, 0.0009933232795447111, 0.021485717967152596, -0.014015383087098598, -0.024316009134054184, 0.0016201033722609282, 0.004429133143275976, 0.02144489623606205, -0.01402898970991373, -0.026084940880537033, -0.02605772577226162, -0.003803203348070383, -0.02684694156050682, 0.001594589906744659, -0.0015699269715696573, -0.0047148833982646465, 0.004361097235232592, 0.012021932750940323, 0.008667766116559505, -0.007551977876573801, -0.02299611270427704, -0.006926048547029495, 0.006395368836820126, 0.0006505927303805947, 0.0159884225577116, 0.012511790730059147, -0.011994718573987484, 0.015920385718345642, 0.03165027126669884, -0.01568906381726265, -0.013729631900787354, 0.018410498276352882, -0.0025598483625799417, -0.01710421033203602, -0.0017502219416201115, -0.026574797928333282, -0.0019390214001759887, 0.040794286876916885, -0.03186798840761185, 0.004442740231752396, -0.0007700806600041687, -0.036031778901815414, -0.01295402366667986, 0.011804218403995037, 0.0021873521618545055, 0.007742478512227535, -0.016927316784858704, -0.014219489879906178, 0.029581982642412186, 0.01057957299053669, -0.010314232669770718, -0.01932217739522457, 0.028248479589819908, 0.026996619999408722, -0.005650376435369253, 0.012130790390074253, -0.012035539373755455, -0.007844531908631325, 0.0013513618614524603, -0.0269013699144125, 0.004497169051319361, 0.021349646151065826, 0.016954530030488968, 0.01710421033203602, 0.015893172472715378, 0.0090487664565444, 0.03894371539354324, 0.0030412019696086645, 0.006327332928776741, -0.033201489597558975, 0.0007662536227144301, 0.006119823548942804, 0.02152653969824314, -0.01263425499200821, -0.00504145585000515, -0.005374831147491932, -0.009252874180674553, -0.00666070869192481, 0.005592545960098505, 0.02671086974442005, 0.02684694156050682, 0.0031313495710492134, -0.015063134953379631, -0.010906144976615906, 0.008640551008284092, -0.0127158984541893, 0.002852402627468109, -0.015743492171168327, -0.017158638685941696, -0.018709855154156685, -0.004595820792019367, 0.022982506081461906, 0.01094016246497631, -0.03371855989098549, 0.027173513546586037, 0.0007011943380348384, 0.004901982378214598, 0.001180421793833375, 0.018083926290273666, 0.02344514988362789, 0.005072071682661772, 0.0011557588586583734, 0.046400442719459534, -0.03252113237977028, -0.008443247526884079, -0.00614363607019186, 0.02036993019282818, -0.015185599215328693, -0.01973039284348488, 0.015784313902258873, 0.019988929852843285, 0.0040549361146986485, 0.001740016508847475, 0.034698277711868286, -0.024533722549676895, 0.019907286390662193, -0.009463785216212273, -0.013586756773293018, 0.01068843062967062, -0.029554767534136772, 0.010736055672168732, -0.0016719807172194123, 0.017512423917651176, 0.024615366011857986, 0.005211545154452324, 0.006487217266112566, 0.003867837367579341, 0.019907286390662193, 0.04125693067908287, 0.016723208129405975, 0.0029663625173270702, 0.02408468723297119, -0.0008793632150627673, -0.016573529690504074, -0.035188134759664536, -0.005357822403311729, 0.011879057623445988, 0.004837348125874996, 0.0007216050871647894, -0.0003969465906266123, 0.014478025957942009, 0.00902155227959156, 0.00955223198980093, -0.008694980293512344, -0.018478533253073692, -0.01831524819135666, 0.025241296738386154, -0.008402425795793533, -0.013035666197538376, -0.007191387936472893, -0.026234619319438934, -0.019703179597854614, -0.020002536475658417, 0.05573495849967003, -0.019716786220669746, 0.030997127294540405, 0.012777130119502544, 0.005436063278466463, -0.011797414161264896, 0.00883785542100668, 0.012865576893091202, -0.030861055478453636, 0.03415399044752121, 0.02100946754217148, -0.0026414913590997458, 0.006966869812458754, -0.005242161452770233, 0.01767571084201336, 0.017920639365911484, 0.0025581475347280502, -0.009640677832067013, -0.01634220778942108, 0.007177780847996473, -0.009103194810450077, -0.007375084795057774, 0.0025802592281252146, -0.007558781653642654, -0.0018284631660208106, -0.008851462975144386, 0.006851208861917257, -0.03592292219400406, -0.0021091110538691282, 0.013443881645798683, -0.006939655635505915, 0.000594463141169399, -0.013716025277972221, -0.00013224466238170862, 0.0024322811514139175, 0.09840703755617142, 0.028792766854166985, -0.03282048925757408, 0.01068162638694048, 0.019567107781767845, -0.0012603639625012875, -0.010817698203027248, -0.027391228824853897, 0.022261327132582664, 0.003022492164745927, 0.010586376301944256, -0.014124239794909954, 0.025962475687265396, 0.01015775091946125, 0.005976948421448469, 0.00523535767570138, -0.011103448458015919, 0.0034698278177529573, -0.008368408307433128, -0.011484449729323387, -0.007980603724718094, 0.0016022439813241363, 0.017008960247039795, 0.002847299911081791, -0.03665770962834358, -0.007170977536588907, 0.03799121081829071, -0.01790703274309635, 0.015308063477277756, -0.022261327132582664, -0.005126500502228737, 0.03671213984489441, 0.00802142545580864, 0.01458688359707594, -0.008069050498306751, 0.0047148833982646465, 0.020329108461737633, 0.015389706939458847, -0.00747713865712285, 0.0016388132935389876, 0.015893172472715378, 0.0033592695835977793, 0.015076741576194763, -0.0043066684156656265, 0.016219744458794594, 0.013396256603300571, 0.002401665085926652, -0.01089934166520834, -0.021744253113865852, -0.016505494713783264, 0.04509415477514267, -0.003517452860251069, -0.011532074771821499, -0.008450050838291645, 0.018138354644179344, 0.003296336391940713, -0.003990301862359047, -0.012484576553106308, -0.00708253076300025, 0.028792766854166985, -0.011647735722362995, -0.008885480463504791, 0.017784567549824715, -0.013579953461885452, -0.008497675880789757, -0.012933612801134586, -0.018151961266994476, -0.020084179937839508, -0.012641058303415775, 0.0011897766962647438, -0.01484541967511177, -0.005102687980979681, -0.015865957364439964, 0.0033558676950633526, 0.004000507295131683, 0.013280595652759075, 0.023404328152537346, -0.014314739964902401, -0.002985072322189808, -0.011831432580947876, -0.010253001004457474, -0.041937291622161865, -0.008320783264935017, -0.01981203630566597, -0.018015889450907707, 0.012593433260917664, 0.0031687691807746887, 0.011511663906276226, -0.02315939962863922, 0.007919371128082275, 0.0032044879626482725, 0.008014622144401073, -0.01675042323768139, -0.014913455583155155, -0.00240676780231297, -0.006732146255671978, -0.004500570707023144, -0.0014840316725894809, -0.004653651267290115, -0.005184330977499485, 0.004034525249153376, -0.030697770416736603, 0.0018437711987644434, -0.03399070352315903, 0.001092825667001307, -0.008613336831331253, 0.005616358481347561, 0.023730900138616562, -0.004799928516149521, -0.009701910428702831, -0.011872253380715847, -0.02811240777373314, -0.005180928856134415, 0.012457362376153469, 0.004173998720943928, 0.0008381165098398924, 0.012777130119502544, 0.01861460506916046, -0.001090274308808148, -0.011300752870738506, -0.010062500834465027, -0.03352805972099304, 0.0006106216460466385, 0.008763016201555729, -0.026574797928333282, 0.007980603724718094, 0.0023013122845441103, -0.02642511948943138, 0.011314359493553638, -0.005262572318315506, -0.006813789252191782, 0.03339198976755142, 0.015729885548353195, -0.01669599488377571, -0.03842664137482643, -0.002692518290132284, -0.013654792681336403, 0.007572388742119074, 0.003144956659525633, 0.005813662428408861, -0.01612449437379837, -0.005966742988675833, -0.022342968732118607, -0.030371198430657387, -0.010321036912500858, -0.02065568044781685, -0.012021932750940323, 0.0014840316725894809, 0.01826081983745098, 0.005075473338365555, -0.018288033083081245, -0.02903769537806511, -0.02705105021595955, -0.009069177322089672, -0.024805866181850433, -0.03548749163746834, 0.013736436143517494, -0.017634889110922813, 0.041066430509090424, 0.0001649869082029909, 0.025731153786182404, -0.013947347179055214, 0.018696248531341553, -0.003464725101366639, 0.010559162124991417, -0.001956030260771513, -0.002165240468457341, -0.01661435142159462, -0.031922414898872375, -0.0015171992126852274, 0.019063642248511314, 0.016369422897696495, 0.002127820858731866, -0.021757861599326134, -0.006119823548942804, 0.041583504527807236, -0.011838235892355442, -7.165023998823017e-05, -0.01211037952452898, -0.034045133739709854, -0.018886748701334, 0.01107623428106308, -0.01988007128238678, 0.02038353681564331, -0.02528211660683155, 0.0037929979152977467, 0.04955730587244034, 0.004276052583009005, 0.00923246331512928, -0.02598969079554081, 0.018791498616337776, -0.0008980730781331658, 0.0033150461968034506, 0.002724835416302085, 0.036957066506147385, -0.005004035774618387, 0.02349957823753357, 0.0005999910645186901, -0.004970017820596695, -0.0019492267165333033, 0.017240282148122787, -0.008361604064702988, -0.011940289288759232, -0.024887509644031525, -0.012083165347576141, 0.014940669760107994, -0.009559035301208496, 0.0007126753916963935, 0.018696248531341553, -0.027663372457027435, -0.01015775091946125, 0.0006867367192171514, 0.0032946355640888214, -0.03181355819106102, -0.018219998106360435, -0.006194663234055042, 0.005405447445809841, 0.006868218071758747, -0.019580714404582977, -0.030588913708925247, 0.001973039237782359, -0.012559415772557259, 0.03864435479044914, 0.002675509313121438, 0.026602013036608696, 0.010144143365323544, -0.006943057291209698, 0.009178034961223602, 0.008817444555461407, 0.001911807106807828, -0.012484576553106308, 0.014219489879906178, 0.010531947948038578, -0.025894440710544586, -0.0017187553457915783, -0.011382395401597023, -0.00021771468163933605, -0.03758299723267555, -0.034181203693151474, 0.013913328759372234, -0.018560176715254784, -0.019362999126315117, -0.01760767586529255, -0.001387080643326044, -0.02386697195470333, -0.0050346520729362965, 0.00307862157933414, 0.022206896916031837, -0.01989367976784706, 0.008300372399389744, -0.02969083935022354, 0.008633747696876526, 0.005317000672221184, 0.0329565592110157, 0.021254396066069603, -0.024452080950140953, -0.029663626104593277, -0.0018845926970243454, -0.013620775192975998, -0.002173745073378086, -0.011967504397034645, 0.0299085546284914, -0.0013224466238170862, -0.005905510857701302, 0.0036365154664963484, -0.0016957932384684682, -0.01981203630566597, 0.0006977925659157336, -0.002631286159157753, 0.024465687572956085, 0.016178922727704048, 0.011178288608789444, 0.00564697477966547, 0.022601505741477013, 0.0051162950694561005, 0.019131677225232124, -0.01466852705925703, 0.009926429018378258, -0.017634889110922813, 0.00440532062202692, 0.003468126757070422, 0.005381634924560785, -0.01487263385206461, -0.024982759729027748, -0.0232138279825449, -0.02194836176931858, -0.011804218403995037, -0.0035310599487274885, 0.011219109408557415, -0.04294422268867493, -0.01249818317592144, 0.0017655299743637443, -0.03322870284318924, 0.018138354644179344, -0.003680738853290677, 0.008790230378508568, -0.006317127496004105, 0.017702925950288773, -0.0269013699144125, 0.008545300923287868, -0.010627198033034801, 0.01306288130581379, -0.030507270246744156, 0.009980857372283936, 0.009586249478161335, -0.013913328759372234, 0.0211047176271677, -0.016600744798779488, -0.03663049638271332, 0.016995351761579514, 0.013253381475806236, 0.01583874225616455, -0.0034545196685940027, 0.002536035841330886, 0.016641566529870033, 0.005922519601881504, -0.0007679545087739825, -0.031078770756721497, -0.016355816274881363, 0.023322684690356255, 0.02408468723297119, 0.009164427407085896, 0.02322743460536003, -0.025540653616189957, 0.025894440710544586, 0.021036680787801743, 0.0019492267165333033, 0.02087339572608471, -0.01988007128238678, 0.020070571452379227, -0.005905510857701302, 0.02179868333041668, 0.016791244968771935, -0.007796906866133213, -0.003189179813489318, -0.024452080950140953, -0.029990198090672493, -0.004929196555167437, 0.004731892608106136, -0.007395495660603046, 0.005908912513405085, 0.009661088697612286, -0.009715517982840538, -0.00440532062202692, 0.009422963485121727, -0.005194536410272121, 0.012681880034506321, -0.0037079532630741596, -0.02775862254202366, -0.006922646425664425, -0.006436190102249384, 0.02933705411851406, -0.002852402627468109, 0.004017516039311886, -0.0018335658824071288, -0.026098547503352165, -0.027091870084404945, -0.008347997441887856, -0.028302907943725586, 0.017553245648741722, 0.04376064985990524, 0.006793378386646509, 0.012988041155040264, 0.01832885481417179, -0.008035032078623772, 0.00021792729967273772, 0.0011753190774470568, -0.00023599930864293128, -0.002066588494926691, 0.026316262781620026, -0.00070544658228755, 0.0021516333799809217, -0.0100829117000103, 0.011919878423213959, -0.0026040717493742704, -0.009443374350667, 0.010096518322825432, -0.004898580256849527, 0.001052004168741405, 0.011538878083229065, -0.013158131390810013, 0.005820465739816427, 0.02876555174589157, -0.0019832446705549955, -0.006653904914855957, -0.026792513206601143, -0.00615724315866828, -0.016600744798779488, 0.0058544836938381195, -0.011015002615749836, -0.017158638685941696, 0.0014712749980390072, -0.01537609938532114, 0.0020410751458257437, -0.011089841835200787, -0.012328093871474266, -0.009463785216212273, -0.02486029453575611, 0.05412931367754936, 0.00902155227959156, -0.017294710502028465, 0.03886207193136215, 0.004725088831037283, -0.02578558214008808, -0.003095630556344986, 0.02208443358540535, 0.02705105021595955, -0.011749789118766785, -0.002090401016175747, -0.024479294195771217, 0.006742351688444614, -0.01076326984912157, 0.02846619486808777, -0.010926555842161179, -0.008654158562421799, -0.00973592884838581, -0.004452945664525032, -0.019771214574575424, 0.04073986038565636, 0.011253127828240395, 0.003289532847702503, 0.02088700234889984, 0.00011587353947106749, 0.002940849168226123, 0.013627578504383564, -0.01583874225616455, -0.031187627464532852, 0.009293695911765099, -0.010280215181410313, 0.010457108728587627, 0.0029833714943379164, -0.019703179597854614, 0.015811529010534286, 0.029010482132434845, -0.03614063560962677, 0.014927063137292862, 0.1981203556060791, -2.5553303203196265e-05, 0.016287779435515404, 0.021989183500409126, -0.0196759644895792, 0.015865957364439964, 0.017063388600945473, -0.017716532573103905, -0.018151961266994476, -0.0036127029452472925, -0.016314994543790817, 0.028221266344189644, -0.0036603279877454042, 0.0037147568073123693, -0.008075853809714317, -0.008463658392429352, -0.03053448349237442, -0.011239520274102688, -0.018628211691975594, -0.06444354355335236, 0.011021805927157402, -0.003167068352922797, -0.008409230038523674, -0.005898707080632448, 0.006405574269592762, 0.001932217855937779, -0.016927316784858704, -0.003986900206655264, 0.017838995903730392, 0.01605645753443241, -0.01817917637526989, -0.005395242013037205, -0.0043883114121854305, -0.007558781653642654, -0.012307683005928993, -0.002667004941031337, 0.00933451671153307, 0.0004851805861108005, 0.01548495702445507, -0.02314579300582409, -0.008790230378508568, -0.01044350117444992, -0.0021992584224790335, 0.017879817634820938, -0.032493915408849716, 0.037746284157037735, -0.016587138175964355, -0.022914471104741096, -0.018492141738533974, 0.010783680714666843, -0.020043358206748962, 0.01224645134061575, 0.05638810247182846, 0.01817917637526989, 0.009858393110334873, 0.0005893604247830808, -0.009041963145136833, 0.000982267432846129, -0.021744253113865852, 0.0043066684156656265, -0.013355434872210026, 0.020614858716726303, -0.005330607760697603, 0.002957858145236969, -0.023730900138616562, 0.013763650320470333, -0.0031024343334138393, -0.023962222039699554, 0.01853296160697937, -0.03306541591882706, 0.0069940839894115925, -0.020682895556092262, -0.0014355562161654234, 0.01582513563334942, -0.009919624775648117, -0.005272777285426855, 0.013069684617221355, -0.01068843062967062, 0.00747713865712285, 0.004262445494532585, 0.015430527739226818, -0.018941177055239677, 0.003908658865839243, -0.017798176035284996, -0.009041963145136833, -0.02280561253428459, 0.0006969420937821269, -0.009824374690651894, -0.03595013543963432, 0.0009550530812703073, -0.017634889110922813, -0.025622297078371048, 0.004429133143275976, -0.00553811714053154, 0.015498563647270203, -0.012763523496687412, 0.005793251562863588, -0.008667766116559505, 0.008654158562421799, -0.01068162638694048, -0.009280088357627392, -0.01760767586529255, 0.036957066506147385, 0.007184584625065327, -0.029364267364144325, 0.01292000524699688, 0.008511283434927464, 0.004554999526590109, -0.0050890808925032616, -0.02094143070280552, 0.017770960927009583, 0.00030382254044525325, 0.004435936454683542, -0.01641024462878704, 0.006153841502964497, 0.01767571084201336, -0.011103448458015919, -0.006378359626978636, 0.003901855321601033, 0.0064225830137729645, 0.01089934166520834, -0.01097418088465929, 0.0009159324690699577, 0.003304840764030814, -0.021567361429333687, -0.018900355324149132, -0.037446923553943634, 0.022492649033665657, -0.026044119149446487, -0.015716278925538063, 0.02974526770412922, -0.015743492171168327, -0.011416413821280003, 0.005895305424928665, -0.0060177696868777275, 0.008892283774912357, -0.004150186199694872, -0.028003551065921783, 0.020642073825001717, -0.011532074771821499, -0.005248964764177799, 0.009035158902406693, 0.01597481407225132, -0.0014857326168566942, 0.00525236688554287, -0.0007994211046025157, 0.010266607627272606, -0.01033464353531599, -0.006875021383166313, -0.011232716962695122, -0.024914724752306938, -0.01537609938532114, -0.0035548724699765444, -0.012600237503647804, -0.0012612143764272332, -0.010055696591734886, -0.002655098680406809, -0.023676471784710884, -0.004503972362726927, 0.023608436807990074, -0.03641277924180031, 0.02563590370118618, 0.02051960863173008, -0.008245944045484066, -0.004612830001860857, -0.0276905857026577, -0.17384517192840576, 0.013539131730794907, 0.01402898970991373, -0.019920893013477325, 0.028221266344189644, 0.016559923067688942, 0.03347363322973251, 0.00727983471006155, -0.010266607627272606, -0.010014875791966915, 0.01932217739522457, 0.024193543940782547, -0.055789388716220856, -0.0090487664565444, -0.02612576261162758, 0.02590804733335972, -0.015729885548353195, 0.0326572023332119, 0.03652163967490196, 0.01484541967511177, 0.010008071549236774, -0.006572261918336153, 0.0037998014595359564, -0.021989183500409126, -0.000204745345399715, -0.0014857326168566942, -0.002934045623987913, 0.008429639972746372, 0.0041399807669222355, -0.0069634681567549706, -0.016600744798779488, 0.02088700234889984, 0.0052829827181994915, -0.017417173832654953, 0.019349392503499985, 0.0195262860506773, -0.008865069597959518, -0.004269248805940151, -0.0031704700086265802, -0.0008151544025167823, 0.02584001049399376, -0.01924053579568863, 0.0033320551738142967, 0.017430782318115234, -0.009082784876227379, 0.045774511992931366, -0.010715644806623459, 0.0018556774593889713, 0.02386697195470333, -0.015947600826621056, 0.016519101336598396, -0.007864942774176598, 0.017920639365911484, 0.009953643195331097, 0.0370931401848793, 0.004653651267290115, 0.016015635803341866, -0.0009780151303857565, -0.00954542774707079, -0.032058488577604294, -0.005323804449290037, -0.0033507649786770344, 0.009028355590999126, 0.00708253076300025, 0.008769819512963295, -0.0036705334205180407, -0.008361604064702988, 0.004674062132835388, -0.02713269181549549, 0.012566219083964825, -0.01753963902592659, 0.020778145641088486, 0.019131677225232124, -0.003524256404489279, -0.0028166836127638817, -0.004037926904857159, -0.019199714064598083, 0.01604285091161728, -0.007300245575606823, -0.027636157348752022, -0.03878042846918106, 0.030017411336302757, -0.0017289607785642147, -0.015784313902258873, 0.006640297826379538, 0.012756719253957272, 0.006548449397087097, -0.03600456565618515, -0.02718712016940117, 0.0006169999833218753, 0.0027554514817893505, -0.028221266344189644, -0.005136705935001373, -0.028003551065921783, 0.012845166027545929, 0.0008342894725501537, 0.015321671031415462, -0.01036866195499897, -0.0008593776728957891, 0.011763396672904491, 0.0016974941827356815, -0.01861460506916046, -0.012661469168961048, 0.02513243816792965, 0.03586849570274353, -0.007926175370812416, -0.014328347519040108, 0.020846180617809296, 0.03309263288974762, -0.008436444215476513, -0.00027022985159419477, 0.015389706939458847, 0.00042501138523221016, 0.0022826024796813726, 0.012729505077004433, 0.014301133342087269, 0.003243608633056283, -0.018845926970243454, 0.021567361429333687, -0.015920385718345642, 0.06760040670633316, -0.006221877411007881, -0.01634220778942108, 0.008484069257974625, -0.011879057623445988, -0.03712035343050957, -0.11974307894706726, -0.017267495393753052, 0.0012578126043081284, 0.016600744798779488, 0.0018999007297679782, -0.005925921723246574, 0.006902236025780439, 0.02706465683877468, 0.0012629152042791247, 0.007626817561686039, -0.02925541065633297, -0.0374741405248642, 0.009361730888485909, -0.008613336831331253, 0.013069684617221355, -0.022356577217578888, -0.00930730253458023, -0.006497422698885202, -0.009456981904804707, 0.035895708948373795, -0.0037181584630161524, -0.037174783647060394, 0.009014748968183994, -0.01676402986049652, 0.018873142078518867, 0.008926302194595337, -0.025595081970095634, 0.025254903361201286, 0.01413784734904766, 0.012260057963430882, -0.018791498616337776, -0.007041709031909704, 0.010980984196066856, -0.00481353560462594, 0.004772713873535395, 0.003534461837261915, -0.021703433245420456, -0.010824501514434814, 0.019158892333507538, -0.029554767534136772, 0.011858646757900715, -0.008211925625801086, 0.028003551065921783, -0.004364498890936375, 0.008001014590263367, 0.011770199984312057, -0.01231448631733656, 0.010647608898580074, -0.002753750653937459, -0.01639663614332676, -0.03785514086484909, 0.022111646831035614, -0.021417681127786636, -0.008334389887750149, 0.038317784667015076, -0.02137686125934124, 0.030861055478453636, 0.025731153786182404, -0.01132116373628378, -0.01691371016204357, 0.009178034961223602, 0.007783299777656794, -0.003741971217095852, 0.02088700234889984, 0.010858519934117794, -0.01224645134061575, -0.015253635123372078, -0.03524256497621536, 0.02124078944325447, -0.028248479589819908, -0.008211925625801086, -0.0011089841136708856, -0.020968645811080933, 0.021050289273262024, -0.012178415432572365, 0.016641566529870033, -0.023608436807990074, -0.0013309511123225093, 0.014722955413162708, 0.009055569767951965, -0.008279961533844471, -0.021050289273262024, 0.004816937260329723, 0.012341701425611973, 0.01089934166520834, 0.014015383087098598, 0.008960319682955742, 0.002229874487966299, -0.00708253076300025, -0.013872507028281689, -0.008225533179938793, 0.0254317969083786, -0.018070317804813385, -0.05048259347677231, 0.012675076723098755, 0.0547008141875267, 0.007463531568646431, 0.009531821124255657, -0.022615112364292145, 0.013232970610260963, -0.01583874225616455, 0.010273411870002747, -0.05655138939619064, 0.0299085546284914, 0.001684737391769886, 0.015280849300324917, 0.002581960055977106, -0.0004033249570056796, 0.025826403871178627, -0.011171484366059303, -0.010640804655849934, 0.013811275362968445, -0.005881698336452246, 0.023023327812552452, -0.012988041155040264, -0.030779413878917694, -0.01775735430419445, -0.017417173832654953, -0.0024203748907893896, -0.00870178360491991, 0.00973592884838581, 0.002687415573745966, -0.00281498278491199, -0.004109364468604326, 0.022411005571484566, 0.004755705129355192, -0.009756338782608509, -0.002782665891572833, -0.003464725101366639, 0.01930857077240944, 0.00859292596578598, -0.027649763971567154, 0.006296716630458832, -0.03458942100405693, -0.0015758801018819213, -0.0033932875376194715, 0.014382775872945786, 0.01747160404920578, -0.033909060060977936, 0.009797160513699055, 0.02846619486808777, 0.054646383970975876, -0.0013428573729470372, -0.013477899134159088, 0.00024386595760006458, -0.022533468902111053, 0.0031687691807746887, 0.04005950316786766, -0.011960700154304504, -0.0005727767129428685, 0.015117563307285309, -0.0005145210307091475, 0.011811021715402603, 0.025105224922299385, 0.00020495796343311667, -0.016723208129405975, -0.009606660343706608, -0.03004462644457817, 0.03145977109670639, -0.0011370489373803139, -0.0007722067530266941, -0.018505748361349106, 0.006327332928776741, -0.013389453291893005, 0.0247922595590353, -0.00038610337651334703, 0.003864435711875558, -0.03820892795920372, -0.0009856692049652338, -0.019988929852843285, -0.014314739964902401, -0.023050542920827866, 0.0017757354071363807, -0.0069634681567549706, 0.014423597604036331, 0.004677463788539171, 0.0051196967251598835, 0.012749915942549706, -0.00028979015769436955, 0.01811113953590393, -0.024234365671873093, 0.00018699225620366633, -0.016668779775500298, -0.023744506761431694, -0.03741971030831337, -0.01033464353531599, 0.019988929852843285, 0.002185651334002614, -0.0028728132601827383, 0.0071573699824512005, -0.014042597264051437, 0.011695360764861107, 0.01385209709405899, -0.00026916677597910166, 0.004340686369687319, -0.004742098040878773, 0.0007594500202685595, 0.011858646757900715, -0.01669599488377571, -0.009824374690651894, 0.027595335617661476, 0.021485717967152596, 0.004779517650604248, 0.01627417281270027, -0.01129394955933094, -0.011668146587908268, -0.00830717571079731, 0.012994845397770405, -0.003243608633056283, -0.022424612194299698, 0.0028421971946954727, 0.014722955413162708, 0.006306922063231468, -0.003901855321601033, 0.01698174513876438, 0.020560430362820625, 0.01760767586529255, 0.018560176715254784, 0.0015146478544920683, -0.014927063137292862, 0.004422329366207123, 0.03464384749531746, 0.015212813392281532, 0.030697770416736603, 0.013539131730794907, 0.01100139506161213, 0.03630392253398895, 0.01619252935051918, 0.022533468902111053, 0.005313599016517401, 0.0012433549854904413, -0.004425731487572193, 0.0190364271402359, 0.006589271128177643, -0.03946078568696976, 0.0027316389605402946, -0.012273665517568588, -0.03254834562540054, -0.00033380082459189, 0.025513438507914543, -0.03203127160668373, 0.03978735953569412, 0.01100139506161213, -0.010994591750204563, 0.010892537422478199, 0.005194536410272121, 0.01959432102739811, 0.024683402851223946, 0.005480286665260792, 0.008286764845252037, -0.036031778901815414, -0.007130155805498362, -0.019553499296307564, 0.02186671830713749, -0.008300372399389744, 0.0018607801757752895, 0.022832827642560005, -0.0008836154593154788, 0.040794286876916885, -0.022669540718197823, -0.031187627464532852, 0.03309263288974762, 0.0051979380659759045, 0.03409956395626068, -0.004408722277730703, -0.006868218071758747, -0.012062754482030869, 0.02933705411851406, 0.012219236232340336, 0.012076361104846, -0.0291193388402462, -0.02051960863173008, 0.012790737673640251, -0.008137086406350136, -0.007939781993627548, 0.011198698543012142, -0.0072049954906105995, 0.015321671031415462, -0.017879817634820938, -0.0029799696058034897, -0.008225533179938793, -0.014382775872945786, 0.014913455583155155, -0.03243948891758919, -0.016791244968771935, 0.026860548183321953, -0.012307683005928993, -0.007946586236357689, -0.0011753190774470568, -0.023690078407526016], "27d3c00c-c824-410a-b23c-a46312a398b5": [0.0037169321440160275, -0.028397496789693832, -0.002240739995613694, 0.008157454431056976, -0.0017125534359365702, 0.027810433879494667, -0.019932858645915985, -0.01687466725707054, -0.01182318851351738, -0.023700987920165062, 0.023414282128214836, 0.014253359287977219, 0.010833372361958027, -0.0038159138057380915, -0.008526075631380081, -0.005583931226283312, 0.03735363110899925, -0.015099823474884033, 0.04873993620276451, -0.025503138080239296, 0.009474934078752995, 0.00969337671995163, -0.014307970181107521, 0.015099823474884033, 0.0017697238363325596, 0.02869785577058792, 0.014021264389157295, -0.016151076182723045, 0.007140332367271185, 0.00046333656064234674, -0.024793200194835663, 0.019359447062015533, 0.0029694498516619205, -6.266350101213902e-05, -0.042405109852552414, -0.0009539784514345229, 0.006696621421724558, -0.01834915205836296, 0.01621934026479721, 0.002111039822921157, -0.003952440340071917, -0.012171330861747265, -0.020110342651605606, -0.004126511514186859, -0.0073314690962433815, 0.0287797711789608, 0.01486772857606411, -0.025271043181419373, -0.03443196415901184, 0.028943603858351707, 0.020205911248922348, -0.0070038060657680035, -0.03126455098390579, 0.0031776526011526585, -0.006778537295758724, -0.002810737816616893, 0.014581022784113884, 0.014403538778424263, 0.016246644780039787, 0.00928379688411951, 0.005365488585084677, 0.011413609609007835, -0.0005823705578222871, 0.011522830463945866, -0.027496423572301865, -0.007877575233578682, -0.010027865879237652, -0.01830819435417652, -0.012437557801604271, -0.022758955135941505, 0.0347050204873085, 0.01912735216319561, -0.009386192075908184, 0.0095841558650136, 0.011809536255896091, -0.03039078414440155, -0.019236573949456215, 0.0006173554575070739, -0.010710498318076134, 0.011420436203479767, 0.0027783128898590803, -0.022813566029071808, 0.003839805955067277, 0.02099776454269886, 0.02251320891082287, -0.029271267354488373, 0.004024116322398186, 0.03817278891801834, -0.009031223133206367, -0.013946174643933773, 0.01934579573571682, 0.029680846258997917, 0.00985038187354803, 0.008184759877622128, -0.003034299938008189, 0.015850719064474106, -0.015441139228641987, 0.012942705303430557, -0.005116328131407499, -0.01843106746673584, -0.026417864486575127, -0.008239369839429855, -0.009447628632187843, -0.0022919373586773872, -0.025312000885605812, 0.004747706465423107, 0.004474653862416744, 0.008935654535889626, 0.012533126398921013, -0.021844228729605675, -0.026882054284214973, 0.029762761667370796, -0.009925471618771553, -0.036971356719732285, -0.01361168548464775, -0.027400854974985123, 0.03017234057188034, -0.02973545715212822, -0.019509626552462578, -0.01956423744559288, 0.009945950470864773, 0.018758730962872505, -0.01873142644762993, -0.02682744339108467, 0.008034580387175083, 0.0034660648088902235, -0.0083895493298769, -0.0258171483874321, -0.007590869441628456, -0.008655775338411331, 0.04303313046693802, -0.001146822003647685, -0.0005038678646087646, 0.0025888823438435793, 0.004641898442059755, 0.0156868863850832, -0.0330393947660923, 0.01504521258175373, -0.006013989448547363, -0.03222023695707321, 0.011830015107989311, -0.00418453523889184, -0.003928548190742731, -0.027537381276488304, -0.012287378311157227, 0.02535295858979225, 0.0016442901687696576, 0.010737803764641285, -0.01743442565202713, 0.008239369839429855, 0.010806066915392876, -0.021366385743021965, 0.016970235854387283, -0.030145036056637764, 0.012567257508635521, -0.005928660277277231, 0.0032254368998110294, -0.0083895493298769, 0.013768690638244152, -0.00678195059299469, 0.020984113216400146, 0.026240380480885506, 0.012178157456219196, -0.0006685528787784278, 0.015072518028318882, 0.043579235672950745, -0.0011621812591329217, -0.021284470334649086, -0.010341877117753029, -0.017598256468772888, 0.013058752752840519, 0.02943509817123413, -0.014116832986474037, 0.011843668296933174, -0.002389212604612112, 0.00901757087558508, 0.02469763159751892, 0.034186217933893204, -0.02107967995107174, 0.0069253030233085155, -0.03435004875063896, -0.015755150467157364, 0.004966149106621742, 0.016424128785729408, -0.013912043534219265, -0.013331806287169456, -0.025161821395158768, -0.010669540613889694, -0.007065242622047663, 0.01656065694987774, -0.00343534629791975, 0.0051231542602181435, -0.015809761360287666, -0.021120639517903328, -0.6426572203636169, -0.025120863690972328, -0.024137873202562332, -0.00897661317139864, -0.004078727215528488, -0.004501958843320608, 0.011700315400958061, 0.014758506789803505, -0.003346604062244296, 0.003000168362632394, -0.03435004875063896, 0.01586437039077282, -0.0047169881872832775, -0.016983887180685997, -0.02708684466779232, -0.006041294429451227, 0.0009036342962644994, -0.03429543972015381, -0.006290455348789692, -0.025666968896985054, -0.02326410450041294, 0.003959266468882561, 0.017338857054710388, 0.006932129617780447, -0.022936441004276276, -0.015031560324132442, 0.020315133035182953, -0.00560782290995121, 0.004140164237469435, 0.028670551255345345, -0.03112802654504776, 0.018813341856002808, 0.011952889151871204, 0.022636082023382187, 0.047019701451063156, -0.014621980488300323, -0.02135273441672325, 0.019031783565878868, 0.008293980732560158, 0.026718221604824066, -0.017762089148163795, -0.007058416493237019, 0.03751746192574501, -0.0021707701962441206, 0.014621980488300323, -0.0032663948368281126, 0.018321847543120384, -0.006740992423146963, 0.005092435982078314, 0.012055283412337303, -0.003655495122075081, 0.01486772857606411, -0.015468444675207138, 0.002404571743682027, -0.014703896827995777, 0.019987469539046288, 0.029243960976600647, 0.0005094142397865653, 0.01245803665369749, -0.008061885833740234, 0.0037613031454384327, 0.020233217626810074, -0.012853963300585747, 0.019919205456972122, -0.017065804451704025, 0.002650319365784526, -0.011229299008846283, 0.011666183359920979, 0.030336173251271248, -0.020533574745059013, 0.02368733659386635, 0.00897661317139864, -0.006652250420302153, -0.024683978408575058, 0.021639438346028328, 0.010533014312386513, 0.03495076671242714, -0.027632949873805046, 0.001547868363559246, 0.01106546726077795, -0.005280159879475832, -0.01230103150010109, -0.022403987124562263, -0.004990041255950928, 0.008375896140933037, -0.020110342651605606, -0.0030854973010718822, 0.02886168658733368, 0.016369519755244255, -0.0010939179919660091, -0.007420211564749479, 0.0015239763306453824, -0.009379365481436253, 0.015468444675207138, 0.023154882714152336, 0.0034626515116542578, -0.0039148954674601555, 0.002443823032081127, 0.0063211736269295216, -0.0033756159245967865, -0.01486772857606411, -0.021584829315543175, -0.004484893288463354, -0.024247094988822937, -0.004983214661478996, -0.005659020505845547, -0.036889441311359406, -0.02012399584054947, 0.046009406447410583, -0.03208371251821518, -0.005945725832134485, -0.02135273441672325, -0.020014774054288864, -0.004078727215528488, 0.025707926601171494, -0.023550808429718018, 0.016164729371666908, -0.0006694061448797584, 0.030063120648264885, -0.006044707726687193, 0.02547583170235157, -0.0005089875776320696, 0.025366609916090965, -0.00680242944508791, 0.014690243639051914, 0.03151030093431473, 0.011208820156753063, -0.008136975578963757, -0.014922338537871838, -0.024069609120488167, 0.00557710463181138, -0.0022697518579661846, 0.008703559637069702, 0.013912043534219265, 0.016669876873493195, -0.015168086625635624, 0.018103403970599174, 0.01960519514977932, 0.0352238193154335, -0.019250227138400078, -0.020642796531319618, -0.0005192270618863404, 0.013290847651660442, 0.013318153098225594, -0.008867391385138035, -0.0468558706343174, -0.015577665530145168, 0.0035599267575889826, -0.029162045568227768, 0.0033551370725035667, -0.012150852009654045, -0.012246420606970787, -0.006037881597876549, 0.009495412930846214, -0.004102619364857674, -0.006423568353056908, -0.028179055079817772, 0.0011587680783122778, 0.003955853171646595, -0.018185321241617203, 0.014785812236368656, 0.01373455859720707, -0.02891629748046398, 0.012205462902784348, 0.035196512937545776, -0.01306557934731245, -0.010792414657771587, 0.02264973521232605, -0.008041406981647015, -0.031455688178539276, 0.007638653740286827, -0.007788832765072584, 0.0002536405227147043, 0.04873993620276451, -0.03151030093431473, -0.0019676871597766876, -0.011529657058417797, -0.02921665646135807, -0.014826769940555096, 0.0018311607418581843, -0.0056317150592803955, 0.02686840109527111, -0.0056317150592803955, -0.0076250010170042515, 0.014198748394846916, 0.010765109211206436, -0.003792021656408906, 0.010765109211206436, 0.014144138433039188, 0.03789973631501198, 0.002897773403674364, 0.015932634472846985, -0.021011417731642723, -0.006754645146429539, 0.010614929720759392, -0.028370192274451256, 0.021816924214363098, 0.02394673600792885, 0.006102731451392174, 0.016014549881219864, 0.010014213621616364, 0.0020700821187347174, 0.029626235365867615, 0.008819607086479664, 0.001899424009025097, -0.035933755338191986, -0.0015103236073628068, -0.018144363537430763, 0.0287797711789608, -0.023700987920165062, 0.0034711845219135284, -0.031837962567806244, -0.009536371566355228, -0.02151656523346901, 0.021311776712536812, 0.02086123824119568, 0.027059538289904594, 0.005949139129370451, -0.025462178513407707, -0.010669540613889694, 0.0023243625182658434, -0.0005303198704496026, -0.0011135437525808811, -0.005150459706783295, -0.007816137745976448, 0.0038671111688017845, 0.0033295382745563984, 0.025202779099345207, 0.01612377166748047, -0.020287826657295227, 0.02043800614774227, -0.006996979471296072, -0.008840085938572884, 0.018198972567915916, 0.008259848691523075, 0.004679443314671516, 0.012417078949511051, -0.012601389549672604, 0.035278428345918655, -0.028206361457705498, -0.008096016943454742, -0.0004228052857797593, 0.012512647546827793, -0.026486126706004143, -0.022499555721879005, 0.002443823032081127, 0.011966541409492493, 0.006857039872556925, 0.017925919964909554, 0.03658908233046532, -0.010055171325802803, -0.005491775460541248, -0.0020137648098170757, -0.009707028977572918, 0.014403538778424263, -0.033367060124874115, -0.006293868646025658, 0.011543309316039085, 0.011058640666306019, 0.025011641904711723, 0.023004703223705292, -0.008532902225852013, 0.011529657058417797, 0.010526187717914581, 0.055102068930864334, 0.015632275491952896, 0.007966317236423492, 0.0313737727701664, -0.01304510049521923, -0.027004927396774292, -0.024588409811258316, -0.009420324116945267, 0.014376233331859112, 0.013031448237597942, -0.00018271076260134578, -0.00194038194604218, 0.01156378909945488, 0.002844869391992688, 0.016192033886909485, -0.0019745135214179754, -0.02943509817123413, -0.029462404549121857, 0.034541185945272446, -0.0033875619992613792, -0.004778425209224224, -0.013905216939747334, -0.01088798325508833, -0.011181514710187912, -0.02491607330739498, 0.054583266377449036, -0.021543871611356735, 0.01834915205836296, 0.019154658541083336, -0.017502687871456146, -0.003959266468882561, 0.009563676081597805, 0.019509626552462578, -0.023414282128214836, 0.02938048727810383, 0.01869046874344349, -0.011031335219740868, -8.004928531590849e-05, -0.015905329957604408, 0.015304612927138805, 0.021898839622735977, -0.008594338782131672, -0.007611348293721676, -0.019577890634536743, 0.020424354821443558, -0.009099486283957958, 0.000273906160145998, -0.02678648568689823, -0.0031640001107007265, -0.005959378555417061, -0.003505316097289324, 0.0037647162098437548, -0.011358998715877533, 0.011946062557399273, 0.01417144387960434, -0.0022919373586773872, -0.008184759877622128, -0.010512535460293293, -0.021325428038835526, -0.004747706465423107, 0.09322024881839752, 0.031319163739681244, -0.0143898855894804, 0.009331581182777882, 0.013154321350157261, 0.007597696036100388, -0.01890891045331955, -0.016069160774350166, 0.01930483803153038, 0.009201881475746632, 0.00516411243006587, -0.008014101535081863, 0.02095680683851242, -0.004307408817112446, 0.016096465289592743, -0.01232151035219431, -0.002341428305953741, -0.0061539290472865105, 0.011222472414374352, -0.0002749727573245764, 0.012526299804449081, 0.0024131047539412975, 0.023059314116835594, 0.01817166805267334, -0.03443196415901184, -0.010382834821939468, 0.043797679245471954, -0.011167862452566624, 0.025980979204177856, -0.011413609609007835, 0.006403089500963688, 0.024356314912438393, 0.02447918988764286, 0.02417883090674877, -0.01651969738304615, -0.00851924903690815, 0.009986908175051212, 0.018553942441940308, -0.005539559759199619, -0.002099093981087208, 0.028834382072091103, 0.009352060034871101, 0.0091950548812747, -0.012253247201442719, 0.006979913916438818, 0.016314908862113953, -0.005744349677115679, -0.0015256828628480434, -0.025120863690972328, 0.008253023028373718, 0.05302686616778374, -0.004686269909143448, -0.005542973056435585, 0.004263037815690041, 0.023796556517481804, 0.011973368003964424, 0.006539615802466869, -0.005345009732991457, -0.02299105003476143, 0.019400406628847122, -0.002389212604612112, -0.011051815003156662, 0.010935766622424126, -0.005382554605603218, -0.012983663938939571, -0.018376458436250687, -0.020929502323269844, -0.002546217991039157, -0.01445814874023199, 0.007454343140125275, -0.025284694507718086, -0.007058416493237019, -0.027591992169618607, 0.003409747499972582, 0.008990265429019928, 0.00224415329284966, 0.021243512630462646, -0.006317760795354843, 0.003638429334387183, -0.008082364685833454, -0.0050105201080441475, -0.021120639517903328, -0.0011118371039628983, -0.015468444675207138, -0.026445169001817703, 0.004976388532668352, 0.012068936601281166, 0.01982363685965538, -0.03658908233046532, 0.02426074631512165, -0.00721542164683342, 0.027441812679171562, 0.017803046852350235, -0.007461169268935919, -0.002198075642809272, -0.006618118844926357, -0.016355866566300392, -0.0009974961867555976, -0.009679723531007767, -0.005600996781140566, 0.01176175195723772, -0.03552417829632759, 0.003638429334387183, -0.030008509755134583, 0.004123098216950893, -0.008689907379448414, 0.013502463698387146, 0.023496199399232864, -0.01549575012177229, -0.015400181524455547, -0.000663433107547462, -0.02107967995107174, 0.006430394947528839, 0.0032049580477178097, 0.015250002034008503, -0.006737579125910997, 0.028534023091197014, 0.017844004556536674, 0.01847202517092228, -0.01757095195353031, -0.01165253110229969, -0.027032233774662018, 0.01030091941356659, 0.008648949675261974, -0.009317928925156593, 0.00388076389208436, 0.005723870825022459, -0.006051533855497837, 0.021666744723916054, -0.00910631287842989, 0.005758002400398254, 0.02095680683851242, 0.01310653705149889, -0.009365713223814964, -0.03227484971284866, 0.0033551370725035667, -0.019550584256649017, -0.001955741085112095, 0.006686381995677948, 0.0028858273290097713, -0.015427486971020699, 0.0024728348944336176, -0.01556401327252388, -0.03216562792658806, -0.004761359188705683, -0.02277260832488537, -0.012662826105952263, 0.003744237357750535, -0.011270256713032722, 0.0029728629160672426, -0.010533014312386513, -0.025107210502028465, -0.029353182762861252, -0.016765445470809937, -0.011816362850368023, -0.023182187229394913, 0.013877911493182182, -0.015918981283903122, 0.02708684466779232, -0.01874507963657379, 0.023700987920165062, -0.026281338185071945, -0.011522830463945866, -0.010826545767486095, -0.009904992766678333, 0.007952664978802204, -0.005068543832749128, -0.01900447905063629, -0.047975387424230576, -0.00987086072564125, 0.038500454276800156, 0.011079119518399239, 0.001128902891650796, -0.010928940959274769, -0.004959322512149811, 0.034104302525520325, -0.010983550921082497, 0.0016323440941050649, -0.020315133035182953, -0.043060436844825745, -0.018717773258686066, -0.010696846060454845, -0.013884738087654114, 0.015905329957604408, -0.011379477567970753, -0.007816137745976448, 0.06657028943300247, -0.003401214722543955, 0.010191697627305984, -0.025134515017271042, 0.018103403970599174, -0.028370192274451256, 0.012553605251014233, -0.012137199752032757, 0.017844004556536674, -0.011242951266467571, 0.010416966862976551, -0.004522438161075115, 0.01241025235503912, -0.00619488675147295, 0.010335050523281097, -4.007797542726621e-05, -0.009188229218125343, -0.009358886629343033, -0.013188453391194344, 0.01908639445900917, -0.010219003073871136, -0.014649285934865475, 0.020356090739369392, -0.028370192274451256, -0.014335275627672672, -0.020096691325306892, -0.009543197229504585, -0.03377663716673851, -0.017448076978325844, -3.1091760320123285e-05, 0.019414057955145836, 0.0067273396998643875, -0.01960519514977932, -0.027987917885184288, 0.002879001200199127, -0.019250227138400078, 0.0543375201523304, 0.00589111540466547, 0.026281338185071945, 0.004249385092407465, -0.021420996636152267, 0.0024352902546525, 0.005600996781140566, -0.002138345269486308, -0.0010811187094077468, 0.018840648233890533, 0.002802205039188266, -0.008956133387982845, 0.011720794253051281, -0.020028427243232727, -0.001471925526857376, -0.03921039029955864, -0.026663612574338913, 0.015727844089269638, -0.0035667528863996267, -0.02929857186973095, -0.01176175195723772, -0.0019062502542510629, -0.026363253593444824, -0.001897717360407114, 0.012109894305467606, 0.017188677564263344, -0.01864951103925705, -0.003805674146860838, -0.035059988498687744, 0.013645816594362259, 0.0058126128278672695, 0.029353182762861252, 0.024765893816947937, -0.018198972567915916, -0.02899821475148201, -0.007304164115339518, -0.007549911737442017, -0.006181234028190374, -0.013181626796722412, 0.02891629748046398, -0.022717997431755066, -0.0014377939514815807, 0.005140220280736685, -0.013051927089691162, -0.015973592177033424, -0.004672617185860872, -0.009973255917429924, 0.02826097048819065, 0.003431933233514428, 0.026308642700314522, 0.0022390333469957113, 0.007188116665929556, 0.004010464064776897, 0.03421352431178093, -0.002681037876754999, 0.0005448258016258478, -0.01926387846469879, -0.006570334546267986, 0.004167469218373299, 0.020642796531319618, -0.008027753792703152, -0.021420996636152267, -0.01956423744559288, -0.009536371566355228, -0.004682856611907482, -0.0034165738616138697, 0.012423905543982983, -0.04835766181349754, -0.02277260832488537, -0.008171106688678265, -0.024670325219631195, 0.02796061336994171, 0.010021040216088295, 0.01777574047446251, -0.005894528701901436, 0.03312131389975548, -0.03104611113667488, 0.011898278258740902, -0.020970460027456284, -0.00025918689789250493, -0.036015670746564865, 0.007857096381485462, 0.016492392867803574, -0.028506718575954437, 0.01613742485642433, -0.018622204661369324, -0.034759629517793655, -0.007270032539963722, 0.008396375924348831, 0.03082766756415367, -0.01051936112344265, 0.010765109211206436, 0.01549575012177229, -0.006942369043827057, 0.007372427266091108, -0.0050583044067025185, -0.016547003760933876, 0.015891676768660545, 0.014198748394846916, 0.011051815003156662, 0.013236237689852715, -0.022062670439481735, 0.013864259235560894, 0.006280215922743082, -0.003389268647879362, 0.01030091941356659, -0.043142352253198624, 0.01121564581990242, -0.005505428183823824, 0.01873142644762993, 0.0023602007422596216, -0.00658740010112524, -0.006730752997100353, -0.03404969349503517, -0.024028651416301727, -0.0011084239231422544, 0.005600996781140566, -0.01743442565202713, 0.009317928925156593, 0.02517547458410263, -0.009345234371721745, -0.0032578620593994856, 0.002582056215032935, -0.007618174888193607, 0.008000449277460575, -0.00518459128215909, -0.04398881644010544, -0.004068487789481878, -0.006659076549112797, 0.0298719834536314, 0.0001348198566120118, -0.02404230460524559, -0.015905329957604408, -0.025885410606861115, -0.026923011988401413, -0.02583080157637596, -0.01908639445900917, 0.011830015107989311, 0.056794993579387665, 0.02482050471007824, 0.005897941999137402, 0.01361168548464775, -0.004181121941655874, -0.0006339945830404758, -0.005068543832749128, -0.010266787372529507, 0.007700090762227774, 0.021106986328959465, -0.011645704507827759, 0.005317704286426306, -0.01028044056147337, -0.0033636698499321938, 0.00388076389208436, -0.004594114609062672, 0.0010239481925964355, 0.0013174799969419837, -0.007700090762227774, 0.004839861765503883, 0.001994992373511195, -0.0032646881882101297, 0.02030147984623909, 0.009454455226659775, 0.0035701661836355925, -0.021448303014039993, -0.02356446161866188, -0.008423680439591408, -0.00974116101861, -0.03090958297252655, -0.022444944828748703, -0.00020105650764890015, -0.01799418404698372, 0.023796556517481804, -0.016983887180685997, -0.009331581182777882, 0.009181402623653412, -0.02551678940653801, 0.05065130442380905, -0.0020052320323884487, -0.004365432541817427, 0.025666968896985054, -0.008314459584653378, -0.017188677564263344, 0.0005793840391561389, 0.01735251024365425, 0.011297562159597874, -0.01821262575685978, 0.003206664463505149, -0.014198748394846916, 0.02203536592423916, -0.008164280094206333, 0.013099711388349533, -0.005839918274432421, 0.01167300995439291, -0.014103180728852749, 0.0007329763029702008, -0.025803495198488235, 0.035196512937545776, 0.007597696036100388, -0.007925359532237053, -0.004443935118615627, 0.0054064467549324036, -0.008983438834547997, 0.008922002278268337, -0.008908350020647049, -0.0210387222468853, 0.0024216375313699245, -0.0022253808565437794, 0.011208820156753063, -0.003894416382536292, -0.01747538335621357, -0.003733997931703925, 0.02008303813636303, -0.030500004068017006, 0.013434200547635555, 0.20336976647377014, 0.0004364579217508435, 0.0036213635466992855, 0.016888318583369255, -0.015987245365977287, 0.008184759877622128, 0.02065644972026348, -0.012519474141299725, -0.014854075387120247, -0.008061885833740234, -0.001803855411708355, 0.031674131751060486, -0.009788945317268372, 0.0067580584436655045, -0.0034660648088902235, -0.002107626758515835, -0.025530442595481873, -0.004010464064776897, -0.02308661863207817, -0.061327673494815826, 0.005686325952410698, -0.0007709476631134748, 0.005188004579395056, -0.003191305324435234, 0.01560497097671032, 0.009611460380256176, -0.002780019538477063, -0.0017449784791097045, 0.03841853886842728, -0.009099486283957958, -0.03738093748688698, -0.00658740010112524, -0.0016425836365669966, -0.014212401583790779, -0.010212177410721779, 0.003955853171646595, 0.011597920209169388, 0.017311550676822662, 0.027987917885184288, -0.00853972788900137, 0.007290511392056942, -0.020192259922623634, -0.0026247205678373575, 0.008505596779286861, -0.022717997431755066, 0.02047896385192871, -0.008969786576926708, -0.021448303014039993, -0.027018580585718155, 0.007263205945491791, -0.028233665972948074, 0.014212401583790779, 0.04661012440919876, 0.016369519755244255, 0.013386416248977184, -0.003976332489401102, -0.004150403663516045, 0.022185545414686203, -0.02087489143013954, 0.015304612927138805, -0.02073836512863636, 0.025148168206214905, -0.006915063597261906, 0.0181307103484869, -0.028315581381320953, 0.007754701189696789, -0.0056146495044231415, -0.02535295858979225, 0.013468332588672638, -0.030226951465010643, 0.001201432547532022, -0.004846688359975815, -0.0005431192112155259, 0.006659076549112797, -0.0002952383947558701, -0.01167300995439291, 0.03120994195342064, -0.018799688667058945, 0.015536707825958729, -0.005928660277277231, 0.015727844089269638, -0.024943379685282707, -5.213069744058885e-05, -0.017065804451704025, -0.02034243755042553, -0.028588633984327316, 0.01825358346104622, -0.016574308276176453, -0.02591271698474884, -0.004249385092407465, -0.01432162243872881, -0.017925919964909554, -0.0003133708087261766, -0.0029114261269569397, -0.0009053408866748214, -0.012130373157560825, 0.01373455859720707, 0.003792021656408906, 0.0008404908585362136, -0.005935486406087875, -0.0024062783923000097, -0.02204901911318302, 0.025762537494301796, -0.001640023780055344, -0.027892349287867546, 0.028615940362215042, 0.0008157454431056976, 0.0012432438088580966, 0.005563451908528805, -0.022540513426065445, 0.01873142644762993, -0.0027561273891478777, 0.0077751800417900085, -0.024711284786462784, -0.0032834606245160103, 0.014581022784113884, -0.0021793032065033913, -0.014526411890983582, -0.010096129961311817, 0.010710498318076134, 0.0064815920777618885, -0.009113139472901821, 0.0052255489863455296, 0.0043859113939106464, -0.004778425209224224, -0.02664995938539505, -0.00491153821349144, 0.022595124319195747, 0.002054722746834159, -0.00914727058261633, 0.015577665530145168, -0.030199646949768066, 0.006450873799622059, 0.0009445922332815826, -0.015222696587443352, 0.016369519755244255, 0.008307632990181446, -0.026267684996128082, 0.021939797326922417, -0.01560497097671032, -0.016806403174996376, 0.014881380833685398, 0.011434088461101055, 0.007809311617165804, -0.004201600793749094, 6.634330929955468e-05, 0.015850719064474106, -0.015031560324132442, -0.012253247201442719, -0.003153760451823473, -0.028670551255345345, 0.003549687098711729, -0.012382946908473969, -0.0061061447486281395, 0.0015350690810009837, -0.005894528701901436, -0.01423970703035593, -0.030500004068017006, 0.0023738532327115536, 0.022526860237121582, -0.03298478573560715, 0.027018580585718155, 0.02400134690105915, -0.0007201769039966166, -0.008020928129553795, -0.014485454186797142, -0.174972265958786, 0.005532733630388975, 0.014007612131536007, -0.0011852200841531157, 0.036670997738838196, 0.040712181478738785, 0.03287556394934654, -2.671864967851434e-05, -0.0059081814251840115, -0.012068936601281166, 0.02282721921801567, 0.014744854532182217, -0.029025519266724586, -0.026322295889258385, -0.009249665774405003, 0.002785139251500368, -0.010082476772367954, 0.01847202517092228, 0.0432242676615715, 0.024274399504065514, 0.005413272883743048, -0.007836617529392242, 0.012649173848330975, -0.006976500619202852, -0.00830080732703209, 0.018854299560189247, 0.0002960916899610311, 0.02060183882713318, 0.008450985886156559, -0.007256379816681147, -0.022554166615009308, 0.023004703223705292, 0.005894528701901436, -0.020069384947419167, 0.014185096137225628, 0.013352285139262676, -0.009003917686641216, -0.004611180163919926, -0.0020222978200763464, 0.011700315400958061, 0.009577329270541668, 0.0011894864728674293, 0.025503138080239296, 0.003703279420733452, 6.67166241328232e-05, 0.039319612085819244, -0.007222248241305351, -0.011939235962927341, 0.008812781423330307, -0.015400181524455547, 0.0010137087665498257, -0.009952777065336704, 0.013181626796722412, 0.0071812900714576244, 0.0325205959379673, 0.009809424169361591, 0.025571400299668312, 0.007263205945491791, 0.0021144531201571226, -0.03186526894569397, -0.016792751848697662, -0.00969337671995163, 0.00830080732703209, -0.01739346794784069, 0.016642572358250618, -0.003652082057669759, -0.00787074863910675, 0.01669718325138092, -0.024683978408575058, 0.006338239647448063, -0.00797996949404478, 0.009352060034871101, 0.0298173725605011, -0.0028226838912814856, -0.009133618324995041, 0.010594450868666172, -0.01114738266915083, 0.019932858645915985, -0.013167974539101124, -0.01317480020225048, -0.03598836809396744, 0.02547583170235157, -0.008218890987336636, -0.020151300355792046, 0.0149359917268157, 0.0025888823438435793, -0.002989928936585784, -0.025530442595481873, -0.009980082511901855, 0.0005209336522966623, 0.0023550810292363167, -0.0258171483874321, -0.010376009158790112, -0.007590869441628456, 0.021926144137978554, 0.013679948635399342, -0.0026605587918311357, -0.024410925805568695, 0.0011178101412951946, -0.0009036342962644994, 0.006143689155578613, -0.018676815554499626, -0.015536707825958729, 0.020533574745059013, 0.03230215236544609, 0.00708572193980217, -0.0025769362691789865, 0.01747538335621357, 0.03437735512852669, 0.009140444919466972, -0.0028653484769165516, 0.01630125567317009, 0.00020276308350730687, 0.013823301531374454, 0.008321286179125309, 0.019359447062015533, -0.0020154714584350586, -0.017584605142474174, 0.02760564349591732, -0.020069384947419167, 0.06995614618062973, -0.02583080157637596, -0.015714192762970924, 0.001853346242569387, -0.016683530062437057, -0.028097139671444893, -0.10960341989994049, 0.0033636698499321938, 0.006048121023923159, 0.0010205350117757916, -0.011816362850368023, 0.009406670928001404, 0.0020359503105282784, 0.01682005636394024, 0.003969505894929171, 0.007358774542808533, -0.017966877669095993, -0.03361280634999275, 0.01604185625910759, -0.0027834326028823853, 0.009618286974728107, -0.02559870481491089, 0.0006877519190311432, -0.02573523297905922, -0.00793218519538641, 0.03546956554055214, 0.0002785992401186377, -0.01751634106040001, 0.01167300995439291, -0.019878247752785683, 0.02251320891082287, 0.004713574890047312, -0.028943603858351707, 0.014253359287977219, 0.028424803167581558, 0.009488587267696857, -0.02099776454269886, -0.0028738812543451786, 0.003549687098711729, 0.003897829679772258, -0.004447348415851593, -0.008485117927193642, -0.03500537574291229, 0.0012150852708145976, 0.03191987797617912, -0.028670551255345345, 0.00851924903690815, -0.0017594844102859497, 0.009311102330684662, -0.0063041080720722675, 0.014403538778424263, 0.010335050523281097, -0.030581921339035034, 0.012048457749187946, -0.008505596779286861, -0.01612377166748047, -0.034978073090314865, 0.004071900621056557, -0.035196512937545776, 0.0023789729457348585, 0.031018804758787155, -0.014922338537871838, 0.022936441004276276, 0.0031418143771588802, -0.000534586317371577, -0.023755598813295364, -0.005710218101739883, 0.006191473454236984, 0.00521530956029892, 0.02417883090674877, 0.01434892788529396, 0.0038705242332071066, -0.025312000885605812, -0.009577329270541668, 0.034186217933893204, 0.00580237340182066, -0.021625787019729614, 0.015427486971020699, -0.029489709064364433, 0.021366385743021965, -0.020629143342375755, 0.011358998715877533, -0.0313737727701664, 0.008109670132398605, 0.017338857054710388, -0.004559982568025589, -0.0014480334939435124, -0.030800363048911095, 0.0014821650693193078, -0.012485342100262642, 0.01873142644762993, 0.020397048443555832, 0.017939573153853416, -0.005044651683419943, 0.0023857993073761463, -0.012512647546827793, -0.005648781079798937, 0.010150739923119545, -0.018963521346449852, -0.034978073090314865, 0.009365713223814964, 0.04256894066929817, 0.023332366719841957, 0.012546778656542301, -0.006969674490392208, 0.010266787372529507, -0.004621419589966536, -0.0024199308827519417, -0.06613340228796005, 0.030581921339035034, 0.008355417288839817, 0.01643778197467327, -0.0037749558687210083, -0.009099486283957958, 0.015727844089269638, -0.012778873555362225, -0.008648949675261974, 0.011358998715877533, -0.012355642393231392, 0.016929278150200844, -0.015304612927138805, -0.014594675041735172, -0.013427374884486198, -0.015714192762970924, -0.010942593216896057, -0.010580798611044884, 0.013591205701231956, -0.02121620811522007, 0.00748847471550107, 0.023796556517481804, 0.0245201475918293, 0.01570053957402706, -0.02856132946908474, -0.0024745415430516005, 0.011475046165287495, 0.022595124319195747, 0.0071539850905537605, -0.023113925009965897, 0.01761190965771675, -0.028206361457705498, 0.002204901771619916, 0.006430394947528839, 0.021325428038835526, 0.02143464982509613, -0.022158239036798477, 0.01291540078818798, 0.01986459642648697, 0.05144315958023071, -0.007611348293721676, -0.006013989448547363, -0.005874049849808216, -0.010676367208361626, 0.012758394703269005, 0.026404211297631264, -0.008853739127516747, 0.0010205350117757916, 0.013993958942592144, -0.006665903143584728, 0.011679836548864841, 0.030936889350414276, 0.0009838435798883438, -0.023182187229394913, -0.013475158251821995, -0.011058640666306019, 0.027769476175308228, -0.010785588063299656, 0.004833035636693239, -0.03765399008989334, 0.012853963300585747, -0.021120639517903328, -0.008730865083634853, -0.005768241826444864, 0.015441139228641987, -0.026226727291941643, -0.0032715145498514175, -0.01899082586169243, 2.9038532375125214e-05, -0.0076250010170042515, -0.006546442396938801, -0.006426981650292873, 0.009556850418448448, 0.0017799633787944913, 0.0014062222326174378, 0.023482546210289, -0.014116832986474037, 0.005327944178134203, -0.025503138080239296, 0.005297225434333086, -0.0008626763592474163, -0.025066252797842026, -0.032547902315855026, -0.0018943041795864701, 0.03186526894569397, -0.0196871105581522, 0.012505820952355862, 0.0007820404716767371, -0.017065804451704025, 0.017379814758896828, 0.020328786224126816, -0.00651913695037365, 0.019973816350102425, 0.007884401828050613, 0.003832979593425989, 0.00841002818197012, -0.010089303366839886, -0.010683192871510983, 0.02751007489860058, 0.020724711939692497, -0.0020359503105282784, 0.0197417214512825, 0.006252910476177931, -0.017748435959219933, -0.0091950548812747, 0.0003475024423096329, -0.010867503471672535, -0.027933306992053986, 0.00645770039409399, 0.017011193558573723, 0.013243063353002071, -0.004662377759814262, 0.026745527982711792, 0.01948232203722, -0.003908068872988224, 0.0049798013642430305, 0.002384092891588807, -0.021502912044525146, -0.01549575012177229, 0.03112802654504776, 0.014649285934865475, 0.03383124992251396, 0.003399508073925972, 0.007099374197423458, 0.03287556394934654, 0.0247795470058918, 0.01934579573571682, 0.013427374884486198, 0.009550023823976517, -0.004590701311826706, 0.007037937641143799, 0.0011527950409799814, -0.019222920760512352, 0.0011954595101997256, -0.005041238386183977, -0.02826097048819065, -0.0012347109150141478, 0.014335275627672672, -0.0325205959379673, 0.05507476255297661, 0.006631771568208933, -0.008375896140933037, 0.00449854601174593, 0.012355642393231392, 0.02221284992992878, 0.01990555413067341, 0.0019711004570126534, 0.001572613837197423, -0.025680622085928917, 0.006143689155578613, -0.01582341268658638, 0.017489036545157433, -0.003993398044258356, -0.0076250010170042515, 0.018635857850313187, 0.008259848691523075, 0.05417368933558464, -0.021707702428102493, -0.02533930540084839, 0.040930625051259995, -0.00013940628559794277, 0.028807077556848526, -0.0047169881872832775, -0.010867503471672535, 0.003181065898388624, 0.022281114012002945, 0.009679723531007767, 0.014335275627672672, -0.017202330753207207, 0.012062110006809235, 0.01051936112344265, 0.0031640001107007265, -0.013638989999890327, 0.021707702428102493, -0.007945838384330273, 0.008020928129553795, -0.0181307103484869, 0.012765221297740936, -0.006839974317699671, -0.004297169391065836, 0.014376233331859112, -0.022322071716189384, -0.024752242490649223, 0.0010640529217198491, -0.0012074055848643184, -0.010635408572852612, -0.01369360089302063, -0.014116832986474037], "8547e0e0-3bfa-40d6-9e96-e645d4e7de70": [0.004606966860592365, -0.03073142282664776, -0.017027240246534348, 0.00558877969160676, -0.007470014970749617, 0.039602067321538925, -0.010127088986337185, -0.016134683042764664, -0.004208749160170555, -0.02554086036980152, 0.023261407390236855, 0.005358774680644274, 0.01634065806865692, 0.003190891118720174, -0.0057707238011062145, -0.001614326611161232, 0.03605930134654045, -0.003855159506201744, 0.02315155416727066, 0.0017919797683134675, -0.007861367426812649, -0.01062829326838255, 0.0011277113808318973, 0.0270376093685627, 0.0015216380124911666, 0.03702051565051079, 0.030072303488850594, -0.010580232366919518, 0.010676354169845581, -0.010037832893431187, -0.013628657907247543, 0.012969539500772953, -0.0016949999844655395, -0.0020854936446994543, -0.029550500214099884, -0.013367757201194763, 0.012420273385941982, -0.016986045986413956, 0.017425458878278732, -0.017809944227337837, 0.00016660348046571016, -0.0031823087483644485, -0.015928708016872406, -0.0003029544313903898, -0.019842227920889854, 0.014212253503501415, -0.0004162405093666166, -0.02495039999485016, -0.03023708239197731, 0.0062719290144741535, 0.008891240693628788, -0.004576070699840784, -0.03020961955189705, 0.019004596397280693, -0.023261407390236855, 0.0031651442404836416, 0.01013395469635725, 0.01842786744236946, -0.001488167094066739, 0.01686246134340763, 0.01708216778934002, 0.014816445298492908, 0.011356070637702942, 0.021668536588549614, -0.02783404476940632, -0.006663281004875898, 0.004181285854429007, -0.019526399672031403, -0.006059088744223118, -0.022753337398171425, 0.03570227697491646, 0.02029537223279476, -0.012667442671954632, 0.009639615193009377, 0.016999777406454086, -0.03570227697491646, -0.02814987301826477, -0.0003226936678402126, -0.028589285910129547, 0.02681790292263031, -0.0002503879659343511, -0.018592648208141327, 0.014528080821037292, 0.010621427558362484, 0.017260678112506866, -0.022437509149312973, -0.004950258415192366, 0.02836957946419716, -0.016409317031502724, -0.030401863157749176, 0.02628237009048462, 0.018743695691227913, 0.015461833216249943, 0.0014718607999384403, -0.016148414462804794, 0.02022671326994896, -0.010504708625376225, 0.01787860319018364, 0.002557518891990185, -0.02290438488125801, -0.008101671002805233, -0.009811260737478733, -0.019842227920889854, -0.0030964859761297703, -0.011630703695118427, 0.007943756878376007, -0.017260678112506866, -0.00999663770198822, 0.009536627680063248, -0.02206675335764885, -0.0004359797458164394, 0.015914976596832275, -0.02971528097987175, -0.0452595017850399, -0.018510257825255394, -0.02500532567501068, 0.02364589273929596, -0.006474470719695091, -0.030951129272580147, -0.013477610424160957, 0.011218754574656487, 0.020350297912955284, 0.010408586822450161, -0.01601109839975834, 0.008726460859179497, -0.0008899822714738548, -0.010593964718282223, -0.022973041981458664, 0.006567159667611122, -0.0031685770954936743, 0.025087716057896614, 0.0011671899119392037, 0.0173430684953928, -0.017947260290384293, 0.0011740557383745909, 0.023481113836169243, -0.019279230386018753, -0.006419544108211994, -0.01893593929708004, -0.03410940617322922, 0.018798623234033585, -0.0023875897750258446, -0.0031393973622471094, -0.019773568958044052, -0.009948576800525188, 0.019595058634877205, 0.023302601650357246, 0.010216344147920609, -0.01601109839975834, 0.014129863120615482, 0.011610106565058231, -0.01683499664068222, 0.023027969524264336, -0.010545903816819191, -0.001458129147067666, 0.005890876054763794, 0.0037350074853748083, 0.0054171341471374035, -0.0020322834607213736, -0.0024167695082724094, 0.018057113513350487, 0.031198298558592796, 5.2083702030358836e-05, -0.011513984762132168, 0.0038585923612117767, 0.034329112619161606, 0.010731280781328678, -0.020322835072875023, -0.027229852974414825, -0.007813306525349617, 0.015008688904345036, 0.02103688009083271, -0.024057842791080475, 0.004634430166333914, -0.024373671039938927, 0.008458693511784077, 0.022190339863300323, 0.034548819065093994, -0.024909205734729767, 0.0006646974361501634, -0.028973771259188652, -0.022011827677488327, 0.02547220140695572, 0.012447736226022243, -0.024332474917173386, -0.0037418734282255173, -0.015104809775948524, -1.0432831913931295e-05, 0.013608060777187347, -0.001553392386995256, 0.012530126608908176, -0.00017904778360389173, -0.010978450998663902, -0.01474778726696968, -0.6375877857208252, -0.025636982172727585, -0.02549966610968113, -0.006989407353103161, 0.0038517266511917114, 0.004589802585542202, 0.017480384558439255, 0.014912567101418972, -0.0014349569100886583, 0.002643341664224863, -0.019773568958044052, 0.01763143204152584, 0.004342632833868265, -0.008074207231402397, -0.01687619276344776, -0.00768285570666194, 0.0026948354206979275, -0.036471251398324966, -0.001343984855338931, -0.019292961806058884, -0.0200207382440567, 0.006124313920736313, 0.003209772054105997, 0.014171058312058449, -0.013408951461315155, 9.179015250992961e-06, 0.023192748427391052, -0.013120586983859539, -0.004452486056834459, 0.030429325997829437, -0.028863918036222458, 0.033038340508937836, 0.026927756145596504, 0.027408365160226822, 0.04729178547859192, -0.01813950389623642, -0.017315605655312538, 0.023865599185228348, 0.009667078033089638, 0.03150039538741112, -0.009124678559601307, -0.012825356796383858, 0.02525249682366848, 0.01089606061577797, 0.019938349723815918, 0.0069276150315999985, 0.0231240913271904, -0.017823675647377968, 0.019375352188944817, 0.009804395027458668, 0.0006574025028385222, 0.003190891118720174, -0.009344385005533695, 0.006498501170426607, -0.002547220326960087, 0.021393904462456703, 0.03460374474525452, -0.010964718647301197, 0.003262982238084078, -7.198385719675571e-05, 0.015187200158834457, 0.023275138810276985, -0.024346208199858665, -0.00905602052807808, -0.017823675647377968, 0.0063096908852458, -0.02186078019440174, 0.015667807310819626, 0.011479655280709267, -0.018757427111268044, 0.01922430284321308, 0.015887513756752014, 0.005437731742858887, -0.020158056169748306, 0.01077934168279171, 0.002801255788654089, 0.03133561462163925, -0.023192748427391052, 0.009474835358560085, 0.008850045502185822, 0.001965341856703162, -0.021668536588549614, -0.026186248287558556, -0.02338499203324318, -0.00031990441493690014, -0.01759023778140545, -0.008856911212205887, 0.026735514402389526, 0.008863776922225952, -0.004318602383136749, 0.011095169931650162, 0.021448830142617226, -0.009268860332667828, 0.002239974681288004, 0.026241173967719078, 0.005046379752457142, -0.008760789409279823, -0.0018348911544308066, 0.020954491570591927, -0.008877508342266083, -0.010463513433933258, -0.012571321800351143, -0.0019172809552401304, -0.0013499923516064882, 0.0022468403913080692, -0.012660576961934566, -0.02576056681573391, -0.01579139195382595, 0.03811904788017273, -0.01210444513708353, -0.004699655808508396, -0.015901245176792145, -0.010813671164214611, -0.006234167143702507, 0.028836455196142197, -0.02133897691965103, 0.018551452085375786, -0.004236212465912104, 0.015612880699336529, 0.0026484911795705557, 0.019855959340929985, -0.024112770333886147, 0.015173467807471752, 0.0017473518382757902, 0.01845533214509487, 0.030649032443761826, 0.00756613677367568, -0.02000700682401657, 0.006457306444644928, -0.007312101311981678, -0.014898835681378841, -0.007600465789437294, 0.025334885343909264, 0.0042053163051605225, 0.012482065707445145, -0.020638663321733475, 0.004363230429589748, 0.02127031795680523, 0.018592648208141327, -0.018771158531308174, -0.01706843450665474, 0.0008144582388922572, 0.015503027476370335, 0.009014825336635113, -0.011417862959206104, -0.05706871673464775, -0.009564091451466084, 0.012317285872995853, -0.027504485100507736, -0.0049056303687393665, -0.009811260737478733, -0.02393425814807415, -0.011740556918084621, 0.00395128084346652, 0.005674602463841438, 0.002042582258582115, -0.0018331746105104685, -0.012852820567786694, -0.007765245623886585, -0.021490024402737617, 0.006584323942661285, 0.030676495283842087, -0.02419515885412693, 0.018002187833189964, 0.024332474917173386, -0.020817173644900322, -0.02337126061320305, 0.02284945733845234, -0.00016381424211431295, -0.03284609690308571, 0.009673944674432278, -0.005372506100684404, -0.011053974740207195, 0.044572919607162476, -0.01631319522857666, -0.01713709346950054, -0.0031085012014955282, -0.029303330928087234, -0.027531949803233147, 0.024634571745991707, -0.006079685874283314, 0.0294681116938591, 0.0035496302880346775, -0.00513220252469182, 0.013745376840233803, -0.002078627934679389, -0.0036354530602693558, 0.006079685874283314, 0.001517346827313304, 0.038805630058050156, -0.002854465739801526, 0.022300193086266518, 0.010106490924954414, -0.007442551665008068, 0.012523260898888111, -0.016203342005610466, 0.02232765592634678, 0.02208048664033413, 0.01340208575129509, 0.0017301873303949833, 0.00014804430247750133, 0.009859321638941765, 0.029385721310973167, 0.007030602544546127, 0.015914976596832275, -0.038558460772037506, -0.012049518525600433, -0.012646845541894436, 0.02446979284286499, -0.02968781813979149, -0.01632692664861679, -0.023096628487110138, -0.000493910105433315, -0.025417275726795197, 0.015640344470739365, 0.023563504219055176, 0.019773568958044052, -0.004019939340651035, -0.015983635559678078, -0.00906975194811821, 0.008911837823688984, -0.007930025458335876, -0.0020185518078505993, -0.020405225455760956, -0.006323422770947218, 0.005980131682008505, 0.004092030227184296, 0.032241903245449066, 0.01867503859102726, -0.01763143204152584, 0.019292961806058884, -0.0178374070674181, -0.004534875974059105, 0.013134319335222244, 0.015887513756752014, -0.00047288354835473, 0.014637934044003487, -0.01679380238056183, 0.03523540124297142, -0.03897041082382202, 0.00709239486604929, 0.002554086036980152, 0.01365612167865038, -0.03504315763711929, -0.0179060660302639, 0.002511174650862813, 0.014239716343581676, 0.015736466273665428, 0.013807169161736965, 0.0132716353982687, -0.012935210019350052, -0.01944400928914547, 0.007202248089015484, -0.006175807677209377, 0.01760396920144558, -0.031939808279275894, -0.009811260737478733, 0.00507384305819869, 0.020927026867866516, 0.03136307746171951, 0.018482794985175133, -0.0046275644563138485, 0.004555473569780588, 0.014377032406628132, 0.0431448295712471, -0.01382090151309967, -0.002687969710677862, 0.027765387669205666, -0.019663715735077858, -0.03789934143424034, -0.01657409593462944, -0.019320424646139145, 0.015667807310819626, 0.00046773417852818966, 0.000590460782404989, 0.0067044757306575775, 0.00803987868130207, 0.007593600079417229, 0.018029650673270226, 0.01182981301099062, -0.025019057095050812, -0.03526286408305168, 0.02047388255596161, 0.01301759947091341, -0.001836607581935823, -0.00020758385653607547, -0.022300193086266518, -0.0021713164169341326, -0.01971864327788353, 0.04578130692243576, -0.027998825535178185, 0.009138409979641438, 0.01680753380060196, -0.036965589970350266, -0.005870278459042311, 0.00440785801038146, 0.03053917922079563, -0.026927756145596504, 0.05050499364733696, 0.00038877720362506807, 0.005372506100684404, 0.0025987138506025076, -0.02206675335764885, 0.007078663446009159, 0.02861674875020981, -0.0016237670788541436, -0.006611787248402834, -0.01684872806072235, 0.02788897231221199, -0.013896425254642963, -0.026364758610725403, -0.03548257052898407, -0.006594622507691383, 0.008094805292785168, 0.0005265227518975735, -0.00023472531756851822, -0.006687311455607414, 0.024922937154769897, 0.027408365160226822, -0.002191914012655616, -0.013745376840233803, -0.010587099008262157, -0.03476852551102638, 0.002518040593713522, 0.10490977019071579, 0.029523037374019623, -0.01263997983187437, 0.00922080036252737, 0.013429549522697926, 0.014157326892018318, -0.016175879165530205, -0.012015189975500107, 0.021091807633638382, 0.0027446127496659756, 0.004236212465912104, -0.01867503859102726, 0.03633393347263336, -0.011239351704716682, 0.01837294176220894, -0.010092759504914284, -0.016519170254468918, -0.003762470791116357, -0.006985974498093128, 0.004970855545252562, 0.0013268202310428023, -0.003276713890954852, 0.016766339540481567, 0.01434956956654787, -0.022149143740534782, -0.008163463324308395, 0.01735679991543293, -0.015159736387431622, 0.03504315763711929, -0.011987726204097271, -0.018853548914194107, 0.01947147399187088, 0.03182995319366455, 0.02025417797267437, -0.010690085589885712, 0.0016641038237139583, -0.00893930159509182, 0.02522503212094307, 0.0013886126689612865, -0.003276713890954852, 0.0266119297593832, 0.01712336204946041, 0.006755969487130642, -0.02522503212094307, -0.0005471202312037349, 0.012008324265480042, -0.0040714330971241, -0.012022055685520172, -0.030099766328930855, -0.004486815072596073, 0.03460374474525452, -0.00473398482427001, -0.035372719168663025, -0.0063405875116586685, 0.02129778265953064, 0.008856911212205887, 0.011871007271111012, -0.01576392911374569, -0.007291503716260195, 0.032983411103487015, -0.012406541965901852, -0.006615220103412867, 0.002190197352319956, -0.005465195048600435, -0.015063615515828133, -0.0467425212264061, -0.03210458531975746, -0.00441129133105278, -0.029330793768167496, 0.001325103803537786, -0.028506895527243614, -0.0057844556868076324, -0.02916601486504078, 0.01395135186612606, 0.012049518525600433, 0.0032132051419466734, 0.014610471203923225, -0.007133589591830969, 0.00830077938735485, 0.0007719759596511722, -0.011342339217662811, -0.02265721559524536, 0.012509528547525406, -0.0027068506460636854, -0.016519170254468918, -0.0016812683315947652, 0.001800562022253871, 0.013223574496805668, -0.023989183828234673, 0.014802713878452778, 0.0021335543133318424, 0.013354024849832058, 0.00933065265417099, -0.0007844202336855233, 0.008767656050622463, 0.007978086359798908, -0.00558877969160676, 0.0023223645985126495, -0.0005110746715217829, -0.006059088744223118, 0.010161417536437511, -0.026721782982349396, -0.002739463234320283, -0.016711411997675896, 0.011369802057743073, -0.0028218531515449286, 0.01036739256232977, 0.013731645420193672, -0.010813671164214611, -0.013992547057569027, 5.468520612339489e-05, -0.01999327540397644, -0.0064058126881718636, -0.008122268132865429, 0.007435685954988003, 0.009969174861907959, 0.025870420038700104, 0.02581549435853958, 0.012248627841472626, -0.004521144088357687, -0.014280911535024643, -0.029385721310973167, 0.017452921718358994, 0.02626863867044449, -0.020158056169748306, 0.005901174619793892, 0.011143229901790619, -0.003456941805779934, 0.010442916303873062, -0.0010890911798924208, 0.012804759666323662, 0.01342268381267786, 0.024524718523025513, -0.009680810384452343, -0.03106098249554634, 0.012420273385941982, -0.010847999714314938, 0.00987991876900196, -0.014857640489935875, 0.015475564636290073, -0.011630703695118427, -0.015626613050699234, -0.01921057142317295, -0.025060253217816353, -0.01763143204152584, -0.02791643515229225, -0.019855959340929985, -0.0035564962308853865, 0.003940982278436422, 0.000481894938275218, -0.01053217239677906, -0.02764180302619934, -0.04374902322888374, -0.016162145882844925, -0.025046521797776222, -0.04072805866599083, 0.013257903978228569, -0.020707320421934128, 0.0452595017850399, -0.0006054797559045255, 0.02475815638899803, -0.023824404925107956, 0.003638886148110032, -0.004191584885120392, -0.0036766480188816786, 0.012420273385941982, -0.009358116425573826, -0.025870420038700104, -0.0363064706325531, -0.013862095773220062, 0.03128068894147873, 0.010271270759403706, 0.027545681223273277, 0.007277772296220064, -0.020418956875801086, 0.03287355974316597, -0.004531443119049072, -0.0015285038389265537, -0.021490024402737617, -0.04188152030110359, -0.03081381320953369, -0.000716620241291821, -0.006677012424916029, 0.012845953926444054, -0.006100283470004797, 0.004661893472075462, 0.036114227026700974, 0.005245488602668047, 0.009639615193009377, -0.014171058312058449, 0.020171787589788437, -0.038503535091876984, 0.006872688420116901, -0.0030261112842708826, 0.023522308096289635, -0.011534581892192364, 0.013889559544622898, 0.006275361869484186, 0.010319331660866737, -0.011768019758164883, 0.005104739218950272, 0.006721640471369028, -0.010408586822450161, -0.013333427719771862, -0.01941654644906521, 0.022451240569353104, -0.02839704230427742, -0.02258855663239956, 0.0356748141348362, -0.03125322610139847, -0.011747422628104687, -0.006453873589634895, 0.002421919023618102, -0.02922094240784645, -0.013257903978228569, -0.00769658712670207, 0.011136364191770554, 0.017150824889540672, -0.015283321030437946, -0.008321377448737621, 0.010271270759403706, -0.018523989245295525, 0.051191575825214386, 0.02054254151880741, 0.0330658033490181, 0.009138409979641438, -0.015654075890779495, -0.014212253503501415, 0.010786207392811775, -0.016148414462804794, 2.1227730030659586e-05, 0.02685909904539585, 0.017411725595593452, -0.003010663203895092, 0.010758744552731514, -0.029385721310973167, 0.0014744354411959648, -0.0415244959294796, -0.03691066429018974, 0.010882329195737839, -0.0067731342278420925, -0.004462784621864557, 0.0046275644563138485, -0.006882987450808287, -0.019663715735077858, -0.0011723391944542527, 0.003704111324623227, 0.020597469061613083, -0.016889924183487892, -0.012646845541894436, -0.025389812886714935, -0.009859321638941765, 0.021160464733839035, 0.027998825535178185, 0.029550500214099884, -0.007586733903735876, -0.0271062683314085, -0.025307422503829002, -0.01761770062148571, -0.005087574478238821, -0.009831857867538929, 0.016217073425650597, -0.01969118043780327, 0.004768313840031624, 0.006979108788073063, -0.012997002340853214, 0.0014426809502765536, -0.00893243495374918, -0.015860050916671753, 0.022149143740534782, 0.011781752109527588, 0.013676718808710575, 0.011115767061710358, 0.01182294636964798, 0.030896201729774475, 0.02234138734638691, -0.003125665709376335, 0.00631312420591712, -0.012694906443357468, -0.005485792178660631, 0.006158642936497927, 0.006955078337341547, 0.008946167305111885, -0.01870250143110752, -0.024044111371040344, -0.003190891118720174, 0.004332334268838167, 0.0012126759393140674, -0.006735371891409159, -0.0499831885099411, -0.008808850310742855, -0.0011637569405138493, -0.026735514402389526, 0.004284273367375135, -0.011321742087602615, 0.021778389811515808, -0.020171787589788437, 0.03691066429018974, -0.025705641135573387, 0.00959842000156641, -0.028561823070049286, 0.01366985309869051, -0.029056161642074585, 0.008348840288817883, 0.007847635075449944, -0.0086715342476964, 0.005420567002147436, -0.017713822424411774, -0.036114227026700974, 0.014665396884083748, 0.016368120908737183, 0.021627342328429222, 0.010278136469423771, 0.000301237974781543, 0.0006162076024338603, 0.0018863847944885492, 0.019279230386018753, -0.00905602052807808, -0.022973041981458664, 0.012660576961934566, 0.0037865012418478727, 0.004311736673116684, 0.01632692664861679, -0.006024759262800217, 0.020611200481653214, 0.013216708786785603, 0.0032561165280640125, 0.0041160606779158115, -0.05338863655924797, -0.0019790735095739365, -0.01868877001106739, 0.0072846380062401295, 0.00787509884685278, -0.005269519053399563, -0.010683219879865646, -0.0266119297593832, -0.015022420324385166, 0.006759402342140675, 0.007744648028165102, -0.014390764757990837, 0.026598196476697922, 0.029605427756905556, -0.016395583748817444, -0.0197049118578434, -0.0059835645370185375, -0.012166237458586693, 0.012152506038546562, -0.000909721537027508, -0.04839031770825386, -0.02028164081275463, -0.013772840611636639, 0.032708778977394104, 0.009110947139561176, -0.016381852328777313, 0.00045142785529606044, -0.009660212323069572, -0.04133225232362747, -0.020817173644900322, -0.0063405875116586685, 0.01601109839975834, 0.03608676418662071, 0.022561093792319298, 0.0028887949883937836, 0.007112992461770773, -0.0026519240345805883, 0.0064847697503864765, 0.004462784621864557, -0.01537944283336401, 0.007806440349668264, 0.0008663809858262539, -0.0074837468564510345, -0.005921772215515375, -0.012722369283437729, -0.006893286015838385, 0.002897377125918865, -0.019773568958044052, -0.0002252848062198609, 0.011102035641670227, -0.004263675771653652, 0.028342116624116898, -0.0019670582842081785, 0.0027497620321810246, 0.01104710903018713, 0.013045063242316246, 0.002415053080767393, -0.025389812886714935, -0.014843909069895744, 0.004538308829069138, -0.01712336204946041, -0.014555544592440128, -0.02024044468998909, 0.0015619746409356594, -0.01607975736260414, 8.920205436879769e-05, -0.021709730848670006, -0.014610471203923225, -0.01654663309454918, -0.03372492268681526, 0.044820092618465424, -0.0024579644668847322, -0.0018091442761942744, 0.03284609690308571, 0.0002613303659018129, -0.0247444249689579, 0.0010127088753506541, 0.02048761583864689, 0.003614855697378516, -0.02099568583071232, -0.004751149099320173, -0.02050134725868702, 0.017480384558439255, 0.003144546877592802, 0.005169964395463467, -0.004479949362576008, 0.010559635236859322, -0.011342339217662811, -7.70795886637643e-05, -0.026982683688402176, 0.03364253044128418, 0.00803987868130207, -0.016436779871582985, -0.006646116264164448, 0.013724779710173607, 0.0024888606276363134, 0.006488202605396509, -0.011486520990729332, -0.015214662998914719, 0.013834632933139801, 0.007325832732021809, -0.006865822710096836, 0.0033676859457045794, -0.012214298360049725, 0.007847635075449944, 0.021956901997327805, -0.0258017610758543, 0.008980495855212212, 0.21278557181358337, -0.006096850614994764, 0.000861231645103544, 0.015049883164465427, -0.010504708625376225, 0.009886784479022026, 0.029385721310973167, -0.0021352709736675024, -0.0184004046022892, -0.007710319012403488, -0.019540131092071533, 0.016464242711663246, 0.008582278154790401, 0.004098895937204361, -0.0013765974435955286, 0.0008088797330856323, -0.03262639045715332, -0.00347925559617579, -0.029907524585723877, -0.05948548763990402, 0.00025081707281060517, -0.025073984637856483, 0.01014768611639738, -0.011630703695118427, 0.00637148367241025, 0.012804759666323662, -0.008493022993206978, -0.010030967183411121, 0.03152785822749138, -0.00768285570666194, -0.029550500214099884, -0.004891898483037949, -0.0012023772578686476, -0.02581549435853958, -0.011877872981131077, -0.00011543164146132767, 0.006471037864685059, 0.004198450595140457, 0.0081428661942482, -0.010003503412008286, -0.009632749482989311, -0.004256810061633587, 0.009989771991968155, 0.0033573873806744814, -0.02264348417520523, 0.018784891813993454, -0.006241032853722572, -0.007236577104777098, -0.016697680577635765, 0.01405433937907219, -0.02316528558731079, 0.009886784479022026, 0.04649535194039345, 0.001313088578172028, 0.0045623392798006535, -0.010758744552731514, -0.0020820607896894217, 0.0016211924375966191, -0.02416769601404667, 0.018757427111268044, -0.023893063887953758, 0.02445606142282486, -0.013498207554221153, 0.015063615515828133, -0.03366999328136444, -0.00651909876614809, -0.02784777618944645, -0.008513620123267174, 0.01182981301099062, -0.016175879165530205, 0.0010453214636072516, -0.013772840611636639, -0.014775250107049942, 0.0010624860879033804, -0.007524941582232714, -0.0036045568995177746, 0.029275868088006973, -0.020130591467022896, 0.002626177156344056, 0.0024613975547254086, 0.014026875607669353, -0.011129498481750488, 0.002389306202530861, -0.013470743782818317, 0.0006870114011690021, -0.029138552024960518, 0.010717549361288548, -0.014788982458412647, -0.019320424646139145, 0.013354024849832058, -0.027765387669205666, -0.022561093792319298, -0.006920749321579933, -0.006247898563742638, 0.0033247745595872402, -0.020913295447826385, 0.017823675647377968, 0.005183696281164885, -0.0013457012828439474, 0.006199838127940893, 0.0011663315817713737, -0.018235625699162483, 0.03765217214822769, 0.004655027762055397, -0.025636982172727585, 0.015571685507893562, 6.661993393208832e-05, 0.002131837885826826, 0.008115402422845364, -0.01474778726696968, 0.01975983753800392, -0.013113721273839474, -0.00933751929551363, -0.018757427111268044, -0.006931047886610031, 0.03342282399535179, -0.008197791874408722, -0.01786486990749836, -0.014788982458412647, 0.008994228206574917, 0.016450511291623116, -0.02209421806037426, 0.01818069815635681, 0.013347159139811993, -0.003293878398835659, -0.006670146714895964, -0.02998991310596466, 0.027202390134334564, 0.0013499923516064882, -0.008596010506153107, 0.014280911535024643, -0.027751656249165535, -0.010545903816819191, 0.005434298887848854, -0.0231240913271904, 0.010415453463792801, -0.0019773568492382765, -0.04553413763642311, 0.026433417573571205, -0.010786207392811775, 0.0017250379314646125, 0.01575019769370556, -0.0005591354565694928, 0.016656486317515373, 0.006498501170426607, -0.004936526529490948, 0.018482794985175133, -0.009447372518479824, -0.016175879165530205, -0.013628657907247543, -0.024552181363105774, 0.005121903959661722, -0.0068383594043552876, -0.01537944283336401, 0.002186764497309923, -0.021641073748469353, 0.0003902791067957878, -0.019045792520046234, 0.0020065365824848413, 0.03427418693900108, -0.022011827677488327, 0.03023708239197731, 0.01761770062148571, -0.021407635882496834, -0.010923524387180805, -0.02212168090045452, -0.17609462141990662, 0.016395583748817444, 0.025925345718860626, -0.011500253342092037, 0.036141689866781235, 0.025115178897976875, 0.032241903245449066, 0.0007076088804751635, -0.006810896098613739, -0.008444962091743946, 0.029083624482154846, 0.021133001893758774, -0.027394631877541542, -0.023851867765188217, -0.0202679093927145, 0.010085893794894218, -0.0022863189224153757, 0.011136364191770554, 0.03894294798374176, 0.008396901190280914, 0.004641296342015266, -0.02046015113592148, 0.011390400119125843, -0.0004964848048985004, 0.0016520885983482003, 0.01975983753800392, -0.007648526690900326, 0.00817032903432846, 0.007586733903735876, -0.009207068011164665, -0.01888101175427437, 0.024250086396932602, 0.020171787589788437, -0.009529761970043182, 0.014102400280535221, 0.006584323942661285, 0.005818784702569246, -0.015640344470739365, -0.017013508826494217, 0.022162875160574913, 0.016711411997675896, 0.007058065850287676, 0.019141914322972298, -0.004026805050671101, 0.014775250107049942, 0.031637709587812424, -0.014555544592440128, -0.004754582419991493, 0.016354389488697052, -0.01601109839975834, 0.0038620252162218094, 0.004775179550051689, 0.008177194744348526, 0.006168941501528025, 0.02731224335730076, -0.0038688911590725183, 0.022011827677488327, 0.008753923699259758, -0.0014486885629594326, -0.025925345718860626, -0.0016409315867349505, 0.0007483746740035713, 0.010065295733511448, -0.015873782336711884, 0.014088667929172516, -0.00427740765735507, -0.01513227354735136, 0.02473069354891777, -0.03103351965546608, 0.013511938974261284, -0.007133589591830969, 0.007229711394757032, 0.03347775340080261, -0.0037487391382455826, -0.007013437803834677, 0.004105762112885714, -0.014940029941499233, 0.03174756467342377, -0.0059046074748039246, -0.016999777406454086, -0.03339536115527153, 0.03883309289813042, -0.005942369345575571, -0.010182014666497707, 0.007154187187552452, 0.004517711233347654, -0.005321012809872627, -0.014308374375104904, -0.021654805168509483, -0.00986618734896183, -0.005897741764783859, -0.008644070476293564, -0.011596374213695526, -0.010223209857940674, 0.014473154209554195, 0.019553862512111664, 0.006824627984315157, -0.019924618303775787, 0.006422976963222027, -0.005516688339412212, 0.011170693673193455, -0.015434369444847107, -0.027779119089245796, 0.022547362372279167, 0.026996415108442307, 0.016889924183487892, 0.004400992300361395, 0.014637934044003487, 0.027737922966480255, 0.021105539053678513, -0.007188516203314066, 0.024401133880019188, 0.009385579265654087, 0.01601109839975834, 0.01654663309454918, 0.023247675970196724, -0.0035908252466470003, -0.02077597938477993, 0.013189245015382767, -0.006999706383794546, 0.06777939945459366, -0.039849236607551575, -0.0018520556623116136, 0.0037247089203447104, -0.017219483852386475, -0.03259892761707306, -0.11446699500083923, -0.012454602867364883, 0.005990430247038603, 0.007909427396953106, -0.018729964271187782, 0.0017567924223840237, 0.0015542506007477641, 0.006752536632120609, -0.003800232894718647, 0.0006642683292739093, -0.007497478276491165, -0.044078581035137177, 0.017288140952587128, -0.012008324265480042, 0.010841134004294872, -0.018977133557200432, 0.017246946692466736, -0.01943027786910534, 0.00644357455894351, 0.04465531185269356, 0.005235190037637949, -0.014459422789514065, 0.01654663309454918, -0.029330793768167496, 0.010065295733511448, -0.008479290641844273, -0.0266119297593832, 0.008369438350200653, 0.02021298184990883, 0.008733326569199562, -0.015420638024806976, 0.0008183202589862049, 0.01657409593462944, -0.01049784291535616, 0.006203270982950926, -0.003051858162507415, -0.04918675497174263, 0.013978814706206322, 0.035867057740688324, -0.01116382796317339, 0.011198156513273716, -0.0041297925636172295, 0.020075665786862373, -0.01632692664861679, 0.00012261929805390537, -0.013381488621234894, -0.024840546771883965, 0.0008985645254142582, 0.010635158978402615, -0.02286318875849247, -0.018194429576396942, 0.0034586582332849503, -0.03268131613731384, -0.006673579569905996, 0.012660576961934566, -0.010854865424335003, 0.03073142282664776, 0.006364617496728897, 0.0012461468577384949, -0.005214592441916466, -0.015297053381800652, 0.006028192583471537, -0.005523554515093565, 0.01894967071712017, 0.019361620768904686, -0.004936526529490948, -0.018867280334234238, -0.014020009897649288, 0.023783210664987564, 0.0064813364297151566, -0.0252387635409832, 0.008520485833287239, -0.03128068894147873, 0.011987726204097271, -0.010051564313471317, 0.006714774761348963, -0.03949221223592758, -0.020446419715881348, 0.016093488782644272, -0.018263088539242744, 0.001162898726761341, -0.026515807956457138, 0.02735343761742115, 0.003216637996956706, 0.011129498481750488, 0.027779119089245796, 0.016519170254468918, -0.008225255645811558, 0.007840769365429878, -0.023343797773122787, 0.0062067038379609585, 0.017974723130464554, -0.007119858171790838, -0.020913295447826385, 0.011857275851070881, 0.037734560668468475, 0.013662987388670444, 0.00378306838683784, -0.014898835681378841, 0.012468334287405014, -0.009824992157518864, 0.009680810384452343, -0.05651945248246193, 0.026488343253731728, 0.0021455695386976004, 0.01605229265987873, 0.002871630247682333, -0.0032801467459648848, 0.006419544108211994, -0.019787300378084183, -0.0072709061205387115, 0.013237305916845798, -0.00037011076346971095, 0.023467382416129112, -0.0046927896328270435, -0.011232485994696617, -0.017040971666574478, 0.002789240563288331, 0.00023923101252876222, -0.011905336752533913, 0.005029215011745691, -0.0023858733475208282, 2.415106791886501e-05, 0.00319260754622519, 0.02497786283493042, 0.018345478922128677, -0.013923888094723225, -0.005389670841395855, 0.002095792442560196, 0.011665033176541328, 0.010360526852309704, -0.016120951622724533, 0.012296688742935658, -0.02974274381995201, -0.00480607571080327, 0.0051287696696817875, 0.025485934689641, 0.03594944626092911, -0.0271062683314085, -0.003395149251446128, 0.026900293305516243, 0.04199137166142464, -0.0015018987469375134, -0.0034603746607899666, 0.009577822871506214, -0.023220213130116463, 0.013628657907247543, 0.009495432488620281, 0.00038191137718968093, 0.00266222283244133, 0.018070844933390617, -0.020405225455760956, 0.022217802703380585, 0.022959310561418533, -0.003051858162507415, -0.023577235639095306, -0.0017730987165123224, -0.018620111048221588, 0.01235848106443882, -0.0061174482107162476, -0.0044044251553714275, -0.03391716256737709, 0.019279230386018753, -0.028314653784036636, 0.00591490650549531, -0.0015079063596203923, 0.030841276049613953, -0.007641660515218973, -0.009165873751044273, -0.008424364030361176, -0.016642754897475243, -0.003082754323258996, 0.0018211595015600324, -0.004919361788779497, 0.005729529075324535, 0.008946167305111885, 0.0028802126180380583, 0.018496526405215263, -0.01039485540241003, 0.0056162429973483086, -0.02600773610174656, 0.0033333569299429655, -0.00756613677367568, -0.009680810384452343, -0.0447651632130146, -0.002181615214794874, 0.03658110275864601, -0.022931847721338272, -0.0005814493633806705, 0.016464242711663246, -0.005818784702569246, 0.015338247641921043, 0.018482794985175133, -0.0033385062124580145, 0.0162857323884964, -0.020693589001893997, 0.00625133141875267, 0.021476292982697487, -0.011033376678824425, -0.008547949604690075, 0.029550500214099884, 0.031143371015787125, -0.01142472866922617, 0.0003016670816577971, 0.003046708879992366, -0.011857275851070881, 0.0034912708215415478, -0.0004883316578343511, -0.011555179953575134, -0.022794531658291817, -0.006642683409154415, 0.008973630145192146, 0.007538673467934132, -0.0022073620930314064, 0.038805630058050156, 0.02099568583071232, -0.005029215011745691, 0.009509164839982986, 0.019114449620246887, -0.01599736697971821, -0.013511938974261284, 0.04712700843811035, 0.0014495467767119408, 0.02342618629336357, 0.004744283389300108, 0.00513220252469182, 0.032461609691381454, 0.017027240246534348, 0.018002187833189964, 0.02419515885412693, 0.00551325548440218, -0.0024476659018546343, 0.01001723576337099, 0.0032372353598475456, -0.03759724646806717, 0.0019069822737947106, 0.009440505877137184, -0.024346208199858665, -0.0030140962917357683, 0.0005552734364755452, -0.021215392276644707, 0.041414640843868256, 0.0035667947959154844, -0.018194429576396942, 0.005441164597868919, 0.012303554452955723, 0.036169152706861496, 0.015434369444847107, -0.005729529075324535, 0.004764880985021591, -0.020446419715881348, 0.01870250143110752, -0.007895695976912975, 0.027737922966480255, -0.009687676094472408, 0.0026021467056125402, 0.007174784783273935, -0.005183696281164885, 0.03688320145010948, -0.0236870888620615, -0.02738090045750141, 0.043254684656858444, -0.00094576709670946, 0.026241173967719078, -0.0016752607189118862, -0.01247519999742508, 0.0026896861381828785, 0.022808263078331947, 0.005698632914572954, 0.011877872981131077, -0.012070116586983204, 0.019828496500849724, 0.014473154209554195, -0.009770065546035767, -0.022670947015285492, 0.022931847721338272, -0.005430865567177534, 0.000638092402368784, -0.02337126061320305, 0.025952810421586037, -0.002540354384109378, -0.005736394785344601, 0.0005441164248622954, -0.00973573699593544, -0.028506895527243614, 0.016381852328777313, -0.004963989835232496, -0.01967744715511799, -0.008081072941422462, -0.021778389811515808], "e55bef39-937d-47e6-ac42-68455994076e": [0.005482314620167017, -0.03799663111567497, -0.0059113940224051476, -0.004109260626137257, -0.022642191499471664, 0.043752897530794144, -0.011717168614268303, -0.025625942274928093, -0.005838780663907528, -0.010654372163116932, 0.01909073255956173, 0.017783692106604576, 0.011248481459915638, -0.016701091080904007, -0.016727495938539505, -0.0017361213685944676, 0.03158024325966835, -0.010925021953880787, 0.026272863149642944, 0.0017691274406388402, -0.007815846242010593, -0.008971060626208782, -0.004686867352575064, 0.01270075049251318, 0.011935008689761162, 0.027091413736343384, 0.030814502388238907, -0.011083451099693775, -0.0023450839798897505, -0.007076509762555361, -0.009816017001867294, 0.015908943489193916, -0.008759820833802223, -0.008627796545624733, -0.01641063764691353, 0.001472897594794631, 0.017163176089525223, -0.015935350209474564, 0.028570087626576424, -0.003769297618418932, 0.010390322655439377, 0.008647600188851357, -0.0068058595061302185, 0.009697195142507553, -0.017400819808244705, 0.015394048765301704, 0.014192626811563969, -0.02849087305366993, -0.020186536014080048, 0.005888289771974087, 0.021137112751603127, -0.005581332836300135, -0.026299268007278442, 0.005505418870598078, -0.03385106474161148, -0.011400310322642326, 0.00825812853872776, 0.02229892648756504, -0.011505929753184319, 0.01600136235356331, 0.017440427094697952, 0.0009967845398932695, 0.008238324895501137, 0.01946040242910385, -0.03007516637444496, -0.01623900607228279, -0.0001556444331072271, -0.02165200747549534, -0.0075716013088822365, -0.014496282674372196, 0.032847680151462555, 0.004006941802799702, 0.006337172817438841, 0.008786225691437721, 0.017638465389609337, -0.02970549836754799, -0.023817207664251328, -0.007182129193097353, -0.02917739935219288, 0.015116797760128975, -0.002346734283491969, -0.03691403195261955, -0.0062942649237811565, 0.023619171231985092, 0.026220053434371948, -0.0004554842889774591, 0.012179254554212093, 0.025097845122218132, -0.021031493321061134, -0.018615445122122765, 0.0295734740793705, 0.020344965159893036, 0.016833115369081497, 0.017097163945436478, -0.012608333490788937, 0.009327526204288006, -0.019777260720729828, 0.023170288652181625, 0.002782414900138974, -0.021308744326233864, -0.013129830360412598, -0.006531909108161926, -0.00901066791266203, 0.0016024465439841151, -0.006878472864627838, 0.011835990473628044, -0.01625220850110054, -0.0050664376467466354, -0.00021144538186490536, -0.022800620645284653, 0.006132535170763731, 0.028041990473866463, -0.02740827202796936, -0.03577862307429314, -0.02632567286491394, -0.0014819742646068335, 0.03321734815835953, -0.006290964316576719, -0.03142181411385536, -0.010225292295217514, -0.002171801868826151, 0.027065008878707886, 0.011156064458191395, -0.008086496964097023, 0.009241710416972637, 0.014192626811563969, 0.014694320037961006, -0.027989180758595467, -0.0072151352651417255, -0.003138880943879485, 0.03583143278956413, 0.007875257171690464, 0.03208193928003311, 0.0010471187997609377, -0.0015397350070998073, 0.024226482957601547, -0.017110366374254227, 0.003412831574678421, -0.023341920226812363, -0.029494259506464005, 0.007195331621915102, -0.0022823724430054426, -0.0035943652037531137, -0.02767232246696949, -0.003289058804512024, 0.03176507726311684, 0.02592959813773632, 0.012733756564557552, -0.0161333866417408, 0.010542151518166065, 0.004096058197319508, -0.015631692484021187, 0.0127733638510108, -0.0021239430643618107, 0.017242390662431717, -0.0010892015416175127, 0.01910393498837948, 0.012786566279828548, -0.002919390331953764, 0.009367133490741253, 0.012212260626256466, 0.028702111914753914, 0.0023945930879563093, -0.00466706370934844, 0.009961243718862534, 0.020476989448070526, 0.03456399589776993, -0.02740827202796936, -0.03812865540385246, -0.0038155061192810535, -0.0009439747082069516, 0.02232533134520054, -0.021282339468598366, 0.010918420739471912, -0.02567875199019909, 0.008304337039589882, 0.030154380947351456, 0.006399884354323149, -0.027249842882156372, -0.0017938819946721196, -0.04055790603160858, -0.018602242693305016, 0.03818146511912346, 0.026787757873535156, -0.007168926764279604, -0.017149973660707474, -0.016714293509721756, -0.001391207450069487, 0.012469707988202572, 0.004488830920308828, 0.013862566091120243, 0.01001405343413353, -0.014931963756680489, -0.009360532276332378, -0.6337172985076904, -0.019724451005458832, -0.018589040264487267, -0.015433656051754951, 0.0038518127985298634, 0.0051324497908353806, 0.004660462494939566, 0.018100550398230553, -0.002968899440020323, -0.00453503942117095, -0.014760332182049751, 0.012199058197438717, 0.012304677627980709, -0.010443132370710373, -0.014813141897320747, -0.00031892152037471533, -0.006340473424643278, -0.03731010481715202, -0.013268455862998962, -0.006621025502681732, -0.027091413736343384, -0.002386341569945216, -0.005878387950360775, 0.008429760113358498, -0.020767442882061005, -0.003878217888996005, -0.00103226606734097, -0.01586933620274067, 0.011083451099693775, 0.034458376467227936, -0.028385253623127937, 0.027645915746688843, 0.020767442882061005, 0.027355462312698364, 0.043198395520448685, 0.004290794022381306, -0.023539956659078598, 0.007848852314054966, 0.0161069817841053, 0.015222417190670967, 0.003232948249205947, -0.021599197760224342, 0.029124589636921883, 0.0042016776278615, 0.002189955208450556, 0.006198547314852476, 0.027619510889053345, -0.01035071536898613, 0.01786290667951107, 0.003558058524504304, -0.006050019524991512, 0.002473807893693447, -0.02175762690603733, 0.002069483045488596, -0.002074433956295252, 0.0036867824383080006, 0.04309277608990669, -0.023157086223363876, 0.009301121346652508, -0.011974615976214409, 0.010377120226621628, 0.01868145726621151, -0.01584293134510517, -0.01989608258008957, -0.01626541092991829, 0.019935689866542816, -0.009083281271159649, 0.012225463055074215, 0.016687888652086258, -0.005809075199067593, 0.008707011118531227, 0.015169607475399971, 0.0009761556866578758, -0.01033751294016838, 0.010198887437582016, 0.007677220739424229, 0.030840907245874405, -0.02364557608962059, 0.005597835872322321, 0.01667468622326851, 0.004901407286524773, -0.011802984401583672, -0.01637103036046028, -0.0201469287276268, -0.0026734948623925447, -0.0004641484119929373, 0.0006366053130477667, 0.02000170201063156, 0.0024375012144446373, 0.006215050350874662, -0.00375939579680562, 0.026365280151367188, -0.005172057077288628, 0.008284533396363258, 0.013387277722358704, 0.007155724335461855, -0.0025216666981577873, 0.002782414900138974, 0.02756670117378235, -0.014879154041409492, -0.007848852314054966, -0.008310938253998756, -0.011802984401583672, -0.008581588044762611, 0.012812971137464046, -0.010806200094521046, -0.02740827202796936, -0.007056706119328737, 0.027698727324604988, -0.014496282674372196, 0.00967739149928093, -0.007842251099646091, -0.008832435123622417, -0.0013004406355321407, 0.016899127513170242, -0.023671980947256088, 0.025691954419016838, 0.01666148379445076, 0.021572792902588844, 0.000517370761372149, 0.0147735346108675, -0.011578543111681938, 0.025625942274928093, -0.006452694069594145, 0.035937052220106125, 0.03535614535212517, 0.009182299487292767, -0.022536570206284523, -0.0001480117643950507, -0.012324481271207333, -0.011070248670876026, -0.0005008677253499627, 0.02486020140349865, 0.002937543671578169, 0.0006564090144820511, -0.009954642504453659, 0.02390962466597557, 0.005053235217928886, 0.011895401403307915, -0.01920955441892147, -0.0033171139657497406, 0.006891675293445587, 0.013420283794403076, 0.005162155255675316, -0.023830410093069077, -0.03194991499185562, -0.013255253434181213, 0.0029474454931914806, -0.04127083718776703, 0.009037072770297527, -0.01771767996251583, -0.00825812853872776, -0.014509485103189945, 0.0019440598553046584, 0.005290879402309656, -0.004792486783117056, -0.008858839981257915, -0.019433997571468353, 0.007036902476102114, -0.03007516637444496, 0.023407932370901108, 0.028702111914753914, -0.015776919201016426, 0.018219372257590294, 0.016159791499376297, -0.03831348940730095, -0.006984092760831118, 0.03065607324242592, -0.02027895301580429, -0.01963203400373459, 0.001618124428205192, -0.006089627277106047, -0.004072953946888447, 0.04256467893719673, -0.005795872770249844, 0.002838525455445051, 0.014377460815012455, -0.0221801046282053, -0.01588253863155842, 0.006564915180206299, -0.019315175712108612, 0.030708882957696915, 0.005733161233365536, -0.011426715180277824, 0.0060533201321959496, -0.016278613358736038, -0.007776239421218634, 0.004891505464911461, -0.000715407426469028, 0.026154041290283203, 0.008112901821732521, 0.02174442447721958, -0.0058585843071341515, 0.0023714888375252485, -0.002897936385124922, 0.006122633349150419, 0.030972931534051895, 0.02389642223715782, -0.002118992153555155, 0.0026734948623925447, -0.0014662963803857565, 0.0037659970112144947, 0.018589040264487267, -0.010845807380974293, 0.00375939579680562, -0.03585783764719963, -0.010733586736023426, -0.00772342924028635, 0.013486295938491821, -0.02364557608962059, -0.0012393794022500515, -0.019037922844290733, -0.00383200915530324, -0.012469707988202572, 0.01370413601398468, 0.04380570724606514, 0.007961072959005833, 0.002990353386849165, -0.014403865672647953, -0.00540640065446496, 0.016040969640016556, -0.0016437042504549026, 0.0009002416045404971, -0.01242349948734045, -0.006023614667356014, 0.001514980336651206, -0.006977491546422243, 0.03884159028530121, 0.021150315180420876, -0.009644385427236557, 0.015367643907666206, -0.017836501821875572, 0.011855794116854668, 0.013123229146003723, 0.020344965159893036, -0.006472497712820768, 0.010139476507902145, -0.0033831261098384857, 0.03725729510188103, -0.022087687626481056, 0.009340728633105755, 0.006703540682792664, 0.0047363764606416225, -0.04351525381207466, -0.020371370017528534, 0.010865611024200916, 0.010667574591934681, 0.018377801403403282, 0.013783350586891174, 0.003495346987619996, -0.02016013115644455, -0.008845637552440166, -0.003993739373981953, -0.00457134610041976, 0.012694149278104305, -0.0268801748752594, -0.008442962542176247, 0.014667914249002934, 0.015275226905941963, 0.03704605624079704, 0.003845211584120989, 0.004478929098695517, 0.009835820645093918, 0.021123910322785378, 0.060255952179431915, -0.01854943297803402, -0.007697024382650852, 0.008343944326043129, -0.009023870341479778, -0.027645915746688843, -0.015063988044857979, -0.021308744326233864, 0.017691275104880333, 0.007472583092749119, -0.007393368519842625, 0.011954812332987785, -0.005313983652740717, -0.005267775151878595, 0.02229892648756504, 0.00685206800699234, -0.01586933620274067, -0.032557226717472076, 0.02041097730398178, 0.011769978329539299, 0.0015570631949231029, 0.009525562636554241, -0.0174536295235157, 0.008060092106461525, -0.014733927324414253, 0.048690613359212875, -0.021150315180420876, 0.017968526110053062, 0.011974615976214409, -0.0241868756711483, -0.0031850894447416067, 0.008277932181954384, 0.02619364857673645, -0.02686697244644165, 0.020609013736248016, 0.015605288557708263, 0.011783180758357048, 0.009901832789182663, -0.014483080245554447, 0.02027895301580429, 0.0261804461479187, -0.011096653528511524, -0.021546388044953346, 0.003201592480763793, 0.017136771231889725, -0.02714422345161438, -0.015750514343380928, -0.030444834381341934, -0.00866740383207798, 0.00041154492646455765, 0.002325280336663127, -0.009452949278056622, -0.028411658480763435, 0.014351055957376957, 0.030999336391687393, -0.011895401403307915, -0.002645439701154828, -0.018734266981482506, -0.0308937169611454, 0.0009629531996324658, 0.10049699991941452, 0.023975636810064316, -0.01531483419239521, 0.0161069817841053, 0.010720384307205677, 0.0026107830926775932, -0.027593106031417847, -0.026800960302352905, 0.005185259506106377, 0.018219372257590294, 0.0097368024289608, -0.03065607324242592, 0.037574153393507004, -0.005455909762531519, 0.019539617002010345, -0.01371733844280243, -0.009683992713689804, -0.0036009664181619883, -0.011096653528511524, -0.0006267034914344549, -0.0007232463685795665, -0.0011882198741659522, -0.0015694404719397426, -0.005026830360293388, -0.01518280990421772, -0.017902513965964317, 0.015803324058651924, 0.0068190619349479675, 0.01596175506711006, -0.02524307183921337, -0.01116266567260027, 0.0403466671705246, 0.034590400755405426, 0.024107661098241806, -0.007274546194821596, 0.0030431633349508047, -0.016833115369081497, 0.04148207604885101, 0.002043078187853098, 0.007353761233389378, 0.011433316394686699, 0.012786566279828548, 0.01116266567260027, -0.009875427931547165, 0.0031157766934484243, -0.0056044370867311954, -0.010746789164841175, 0.0042115794494748116, -0.018232574686408043, -0.0001657525572227314, 0.030022356659173965, -0.004558143671602011, -0.02996954694390297, -0.01638423278927803, 0.015935350209474564, 0.011637954041361809, -0.010271500796079636, -0.0013070418499410152, -0.00872681476175785, 0.001459695165976882, -0.012185855768620968, -0.002444102428853512, -0.0053337872959673405, -0.00927471648901701, -0.019513212144374847, -0.043039966374635696, -0.03773258253931999, -0.020529799163341522, -0.03749493882060051, 0.006380080711096525, -0.025969205424189568, -0.005620940122753382, -0.014087007381021976, 0.011525733396410942, 0.011208874173462391, 0.014628306962549686, 0.016463447362184525, -0.009769808501005173, 0.007399969734251499, -0.025031832978129387, -0.00429739523679018, -0.007010497618466616, 0.014865951612591743, -0.0013161186361685395, -0.01910393498837948, 0.0006621850770898163, 0.02042417973279953, 0.020991886034607887, -0.01975085586309433, 0.005271075759083033, -0.0005404750118032098, 0.015380846336483955, 0.0021107406355440617, -0.005472412798553705, 0.021691614761948586, -0.009901832789182663, 0.0020282254554331303, -0.018483420833945274, -0.0020232745446264744, -0.015697704628109932, 0.01959242671728134, -0.024913011118769646, -0.008878643624484539, -0.004818891640752554, 0.017928918823599815, 0.000231661630095914, 0.01852302812039852, 0.0131034255027771, -0.00825812853872776, -0.024081256240606308, 0.011637954041361809, -0.026550114154815674, 0.00044516989146359265, 0.0055153206922113895, -0.005261173937469721, 0.007835649885237217, 0.028728516772389412, 0.009208704344928265, -0.0009827568428590894, -0.005594535265117884, 0.0018202868523076177, -0.04148207604885101, 0.017638465389609337, 0.02456974796950817, -0.026365280151367188, 0.013532504439353943, 6.776566442567855e-05, -1.4865641787764616e-05, 0.02067502588033676, 0.0043006958439946175, 0.014153019525110722, 0.01784970425069332, 0.008581588044762611, -0.024147268384695053, -0.037415724247694016, 0.006416387390345335, -0.007637613452970982, 0.007690423168241978, -0.021929258480668068, 0.003756095189601183, -0.010066863149404526, -0.015776919201016426, -0.011248481459915638, -0.030022356659173965, -0.017625262960791588, -0.02699899673461914, -0.010971230454742908, -0.015143202617764473, 0.018641849979758263, 0.015196012333035469, 0.0009679041104391217, -0.024807391688227654, -0.04549562186002731, -0.013004407286643982, -0.01907753013074398, -0.025982407853007317, 0.013611719012260437, -0.025031832978129387, 0.030840907245874405, 0.011875597760081291, 0.01880027912557125, -0.024688569828867912, -0.0011205574264749885, 0.02309107407927513, -0.020991886034607887, 0.024147268384695053, 0.0020133727230131626, -0.026022017002105713, -0.02178403176367283, -0.01116266567260027, 0.021440768614411354, 0.013327866792678833, 0.036465149372816086, -0.006706841289997101, -0.008211920037865639, 0.030682478100061417, -0.022787418216466904, 0.0056044370867311954, -0.022747810930013657, -0.04647260159254074, -0.024688569828867912, 0.012918590568006039, 0.0006844641757197678, 0.023196693509817123, -0.007848852314054966, 0.007617809809744358, 0.04055790603160858, 0.008211920037865639, -0.008106300607323647, -0.019526414573192596, 0.008733415976166725, -0.03173867240548134, 0.01869465969502926, -0.001063621835783124, 0.019922487437725067, -0.004894806072115898, 0.023830410093069077, -0.006924681831151247, 0.00751879159361124, 0.000663835380692035, 0.015631692484021187, 0.0006572341662831604, -0.01155213825404644, 0.0006007111514918506, -0.011710567399859428, 0.0016453545540571213, -0.024688569828867912, -0.014654711820185184, 0.02204808034002781, -0.016463447362184525, -0.024239685386419296, -0.011228677816689014, 0.012542321346700191, -0.03279487043619156, -0.011868996545672417, -0.009162495844066143, 0.025718359276652336, 0.012548922561109066, -0.007426374591886997, -0.013110026717185974, -0.00014728975656908005, -0.004511935170739889, 0.048056893050670624, 0.027223438024520874, 0.03192351013422012, 0.024648962542414665, -0.014852749183773994, -0.016753900796175003, 0.018364598974585533, -0.011393709108233452, -0.003307212144136429, 0.031104957684874535, 0.016595471650362015, 0.01357211172580719, -0.008786225691437721, -0.012680946849286556, -0.0045548430643975735, -0.0322139635682106, -0.02607482671737671, 0.017691275104880333, 0.005152253434062004, -0.010113071650266647, 0.008495772257447243, -0.007947870530188084, -0.028728516772389412, 0.009967844933271408, 0.009235109202563763, -0.0026173843070864677, -0.024107661098241806, -0.007267944980412722, -0.023619171231985092, 0.008508974686264992, 0.014496282674372196, 0.01932837814092636, 0.011129659600555897, 0.0007030300912447274, -0.0309201218187809, -0.020450584590435028, -0.02541470341384411, -0.022906240075826645, 0.003561359131708741, 0.01491876132786274, -0.016040969640016556, 0.0010553703177720308, 0.012298076413571835, -0.002175102476030588, 0.002046378795057535, 0.0032874085009098053, -0.01532803662121296, 0.020741038024425507, -0.0041851745918393135, -0.00540640065446496, 0.018179764971137047, 0.018615445122122765, 0.009393538348376751, 0.020793847739696503, -0.0033748745918273926, 0.0036999848671257496, -0.01976405829191208, 0.0011411862215027213, 0.011486126109957695, 0.004356806166470051, -0.008152509108185768, -0.009518961422145367, -0.010416727513074875, -0.009096483699977398, -0.013479694724082947, 0.009287918917834759, -0.005465811584144831, -0.031236981973052025, -0.009571771137416363, -0.001977065810933709, -0.028438063338398933, 0.010139476507902145, -0.012304677627980709, 0.03907923400402069, -0.013598516583442688, 0.04240624979138374, -0.03585783764719963, 0.019433997571468353, -0.00994144007563591, 0.011690763756632805, -0.040927574038505554, -0.004191775806248188, -0.0039178249426186085, -0.00825812853872776, 0.008574986830353737, -0.023751195520162582, -0.0308937169611454, 0.016582269221544266, 0.021031493321061134, 0.0001283112505916506, 0.00500042550265789, 0.013215646147727966, -0.01798172853887081, -0.001818636548705399, 0.014535889960825443, -0.010806200094521046, -0.02806839533150196, 0.019407592713832855, 0.014351055957376957, 0.005300781223922968, 0.009241710416972637, -0.01303081214427948, 0.04517875984311104, 0.02324950322508812, 0.015618490986526012, 0.016463447362184525, -0.05389237403869629, 0.010660973377525806, -0.030392024666070938, 0.010634568519890308, -0.0030052061192691326, -0.010911819525063038, -0.01693873479962349, -0.022206509485840797, -0.014153019525110722, -0.007914864458143711, 0.009545366279780865, -0.00714912312105298, 0.0214803759008646, 0.015486465767025948, -0.010819402523338795, -0.01654266193509102, -0.008291134610772133, -0.007498987950384617, 0.02780434675514698, -0.004700069781392813, -0.029098184779286385, -0.023460742086172104, -0.02002810686826706, 0.034590400755405426, -0.009756606072187424, -0.0090700788423419, 0.004762781318277121, -0.005931197665631771, -0.03102574311196804, -0.012713952921330929, -0.010027255862951279, 0.0201733335852623, 0.021005088463425636, 0.008145907893776894, 0.013638123869895935, 0.0208466574549675, -0.027117818593978882, 0.020859859883785248, -0.0063074673525989056, -0.017783692106604576, -0.012212260626256466, -0.008304337039589882, -0.008297735825181007, 0.001973765203729272, -0.02809480018913746, -0.007815846242010593, 0.013420283794403076, -0.0075980061665177345, 0.0010908518452197313, 0.02016013115644455, -0.018364598974585533, 0.027989180758595467, -0.005832179449498653, -0.00994144007563591, -0.006964289117604494, 0.004320499487221241, 0.002343433676287532, -0.014245436526834965, -0.01572410948574543, -0.01249611284583807, -0.028834136202931404, 0.0016618575900793076, -0.0194736048579216, 0.014271841384470463, -0.006858669221401215, 0.0021420964039862156, -0.013473093509674072, -0.01693873479962349, -0.02604842185974121, -0.026378482580184937, 0.03979216516017914, 0.0049773212522268295, -0.015116797760128975, 0.028411658480763435, -0.0014894006308168173, -0.008561784401535988, -0.0045812479220330715, 0.025058237835764885, 0.01637103036046028, -0.026827365159988403, 0.008621195331215858, -0.020490191876888275, 0.009301121346652508, -0.010647770948708057, 0.00661112368106842, -0.011380506679415703, 0.02336832508444786, -0.03049764409661293, -0.012245266698300838, -0.03239879757165909, 0.015116797760128975, 0.011915205046534538, -0.02417367324233055, -0.006904877722263336, -0.009320924989879131, -0.0040432484820485115, 0.0008664103806950152, -0.026431292295455933, -0.01691232994198799, 0.00024630807456560433, 0.02030535787343979, 0.011116457171738148, 0.002444102428853512, 0.006990693975239992, -0.00031933409627527, 0.030840907245874405, -0.03052404895424843, -0.002501863054931164, 0.20321200788021088, -0.021440768614411354, 0.008000681176781654, 0.016991544514894485, -0.008581588044762611, 0.013770148158073425, 0.027329057455062866, 0.004871701821684837, -0.01033751294016838, -0.0029788012616336346, -0.035673003643751144, 0.030207190662622452, -0.00893805455416441, 0.007023700047284365, -0.006416387390345335, 0.004409616347402334, -0.04692148417234421, 0.001037216978147626, -0.019169947132468224, -0.06527288258075714, -0.00852217711508274, -0.01841740868985653, -0.026167243719100952, -0.01573731191456318, 0.0036009664181619883, 0.01478673703968525, -0.007631012238562107, -0.02001490443944931, 0.026391685009002686, -0.00685206800699234, -0.03171226754784584, -0.014139817096292973, -0.017123568803071976, -0.02326270565390587, -0.005413001868873835, -0.008792826905846596, 0.013136431574821472, -0.00685206800699234, 0.003848512191325426, 0.0027758136857300997, 0.005825578235089779, 0.007829048670828342, 0.0011700665345415473, -0.012377290986478329, -0.012529118917882442, 0.022206509485840797, -0.00772342924028635, -0.00914269220083952, -0.01600136235356331, 0.017810096964240074, -0.007419773377478123, 0.015433656051754951, 0.05093502625823021, -0.0050796400755643845, -0.008878643624484539, -0.021823639050126076, 0.01255552377551794, -0.0053337872959673405, -0.019315175712108612, 0.01336747407913208, -0.03279487043619156, 0.028517277911305428, -0.003081120317801833, 0.024015244096517563, -0.01720278337597847, 0.01404740009456873, -0.024266090244054794, -0.0020991885103285313, 0.025639144703745842, -0.02604842185974121, 0.007947870530188084, 0.003874917048960924, -0.016067374497652054, -0.01639743521809578, -0.020107321441173553, -0.0052347686141729355, 0.026035219430923462, -0.011070248670876026, 0.0027197033632546663, 0.0033006109297275543, 0.01349949836730957, -0.0006312418263405561, 0.014720724895596504, -0.019843272864818573, -0.002122292760759592, -0.023407932370901108, 0.0008853888721205294, -0.033402182161808014, -0.0014291645493358374, 0.013598516583442688, -0.021533185616135597, -0.01841740868985653, -0.0007178828818723559, -0.019315175712108612, -0.001171716838143766, -0.023315515369176865, 0.024015244096517563, -0.006977491546422243, 0.008495772257447243, 0.011987818405032158, -1.806633235901245e-06, -0.01986967772245407, 0.028147609904408455, 0.025599537417292595, -0.025348691269755363, 0.009195501916110516, -2.7719974241335876e-05, 0.003845211584120989, 0.01733480766415596, -0.010132875293493271, 0.02297225221991539, -0.014707522466778755, -0.005271075759083033, -0.007261343766003847, 0.01679350808262825, 0.031210577115416527, -0.0013169437879696488, -0.014337853528559208, 0.00967739149928093, 0.013275057077407837, 0.019367985427379608, -0.044941116124391556, -0.011842591688036919, 0.012746958993375301, -0.0016321521252393723, -0.005984007380902767, -0.013255253434181213, 0.02338152751326561, 0.011585144326090813, -0.030550453811883926, 0.016965139657258987, -0.02793637104332447, -0.002439151518046856, 0.007921465672552586, -0.02188965119421482, 0.015486465767025948, 0.009096483699977398, -0.04367368295788765, 0.015420453622937202, -0.01586933620274067, 0.0031372306402772665, -0.00859479047358036, 0.002420998178422451, 0.020384572446346283, -0.011004236526787281, -0.01457549724727869, 0.008581588044762611, -0.021810436621308327, -0.012337683700025082, -0.01188880018889904, -0.019684843719005585, -0.014747129753232002, 0.00044021898065693676, -0.01054875273257494, 0.014760332182049751, -0.017149973660707474, -0.010660973377525806, -0.010080065578222275, -0.016687888652086258, 0.03290048986673355, -0.031791482120752335, 0.024820594117045403, 0.03736291453242302, -0.020741038024425507, -0.02258937992155552, -0.005696854554116726, -0.166456401348114, 0.007578202523291111, 0.0288869459182024, -0.010779795236885548, 0.03160664811730385, 0.020622216165065765, 0.01721598580479622, -0.0019655136857181787, -0.0066375285387039185, -0.018760671839118004, 0.018509825691580772, 0.016846317797899246, -0.03905282914638519, -0.02016013115644455, -0.01774408482015133, 0.021427566185593605, -0.01798172853887081, 0.0046076527796685696, 0.039026424288749695, 0.008733415976166725, 0.01641063764691353, -0.011723769828677177, 0.025229869410395622, -0.011664358898997307, 0.012443303130567074, 0.012284873984754086, -0.008502373471856117, 0.008621195331215858, 0.006644129753112793, -0.006419687997549772, -0.002594280056655407, 0.02270820364356041, 0.02689337730407715, -0.002911138813942671, 0.014113412238657475, 0.008819232694804668, 0.004303996451199055, -0.012205659411847591, -0.012449904344975948, 0.028543682768940926, 0.015816526487469673, 0.012779965065419674, 0.02714422345161438, 0.008343944326043129, -0.006264559458941221, 0.02607482671737671, -0.01531483419239521, -0.0025959303602576256, -0.0036438743118196726, -0.010443132370710373, 0.0038122055120766163, 0.0053469897247850895, -0.009241710416972637, -0.00020340015180408955, 0.028675707057118416, -0.0029292921535670757, 0.014747129753232002, 0.01008666679263115, -0.017361212521791458, -0.04945635423064232, -0.009710397571325302, -0.00860799290239811, 0.02111070789396763, -0.013849363662302494, 0.013057217001914978, -0.013783350586891174, -0.011928407475352287, 0.01600136235356331, -0.026774555444717407, 0.0018021335126832128, 0.005290879402309656, 0.0030184085480868816, 0.02875492163002491, -0.004548241849988699, -0.008918250910937786, 0.003706586081534624, -0.024134065955877304, 0.027117818593978882, -0.004350204952061176, -0.02862289734184742, -0.03443197160959244, 0.04810970276594162, -0.008343944326043129, -0.008436361327767372, -0.009822618216276169, 0.015354441478848457, -0.0064229886047542095, -0.0255203228443861, -0.01784970425069332, 0.004323800094425678, 0.004828793928027153, -0.00082350242882967, -0.0032114943023771048, -0.01639743521809578, 0.0027147524524480104, 0.012984602712094784, 0.005224866792559624, -0.0154468584805727, 0.0053205848671495914, -0.0043138982728123665, 0.010984432883560658, -0.023170288652181625, -0.01323544979095459, 0.026972591876983643, 0.031078552827239037, 0.02377760037779808, -0.0012699100188910961, 0.015605288557708263, 0.018034538254141808, 0.030392024666070938, -0.00847596861422062, 0.02512424997985363, 0.011750174686312675, 0.005122547969222069, 0.0007921466021798551, 0.027487486600875854, -0.02486020140349865, -0.017691275104880333, 0.016965139657258987, -0.002774163382127881, 0.057457033544778824, -0.027329057455062866, -0.007736631669104099, 0.005241370294243097, -0.013354271650314331, -0.04327761009335518, -0.11121738702058792, 0.014549092389643192, 0.000757490168325603, 0.02272140607237816, -0.019275566563010216, 0.0017575753154233098, -0.0047099716030061245, 0.013433486223220825, -0.0043535055592656136, 0.004650560673326254, -0.006858669221401215, -0.025493917986750603, 0.015486465767025948, -0.013453289866447449, 0.0064361910335719585, -0.02324950322508812, 0.026220053434371948, -0.013387277722358704, 0.00947935413569212, 0.0248469989746809, 0.010231893509626389, -0.018734266981482506, 0.024688569828867912, -0.030048761516809464, -0.008581588044762611, 0.005148952826857567, -0.041033193469047546, 0.004637358244508505, 0.016476649791002274, -0.005165455862879753, 0.006706841289997101, -0.012958197854459286, 0.009875427931547165, -0.0007702800794504583, 0.0020496794022619724, 0.0038056042976677418, -0.027883561328053474, 0.010304506868124008, 0.04377930238842964, -0.005188560113310814, 0.012073634192347527, 0.00866740383207798, 0.017638465389609337, -0.009195501916110516, 0.0013862565392628312, -0.012133045122027397, -0.028834136202931404, 0.015354441478848457, 0.018430611118674278, -0.024266090244054794, -0.012212260626256466, 0.014535889960825443, -0.03575221821665764, -0.02796277590095997, 0.03308532387018204, 0.01707075908780098, 0.03250441700220108, -0.0017542747082188725, -0.015248822048306465, 0.0030613166745752096, -0.01639743521809578, 0.009928237646818161, 0.003848512191325426, 0.0443602092564106, 0.021942460909485817, -0.01255552377551794, -0.016476649791002274, -0.006640829145908356, 0.019645236432552338, 0.011301291175186634, -0.022866632789373398, 0.01759885624051094, -0.04084835946559906, 0.024160470813512802, -0.028834136202931404, 0.015248822048306465, -0.03118417225778103, -0.012694149278104305, 0.014337853528559208, -0.009169097058475018, 0.009802814573049545, -0.018470218405127525, 0.006413086783140898, 0.022008473053574562, 0.0050664376467466354, 0.02648410201072693, 0.0036108682397753, -0.010865611024200916, -0.0039310273714363575, -0.022602582350373268, 0.008581588044762611, 0.02796277590095997, -0.01416622195392847, -0.02174442447721958, 0.009697195142507553, 0.04142926633358002, 0.014522687532007694, -0.002968899440020323, -0.02322309836745262, 0.0014869251754134893, -0.002742807613685727, 0.013453289866447449, -0.05893570929765701, 0.030999336391687393, 0.009743403643369675, 0.0008664103806950152, 0.006984092760831118, -0.007512190379202366, 0.008674005046486855, -0.012284873984754086, -0.019566021859645844, 0.02256297506392002, 0.0011906953295692801, 0.019367985427379608, -0.006951086688786745, -0.0006522831972688437, -0.008376950398087502, 0.012746958993375301, -0.006201847922056913, -0.015156405046582222, -0.012271671555936337, 0.0036570767406374216, 0.0019424095517024398, -0.00477598374709487, 0.02537509612739086, 0.018509825691580772, -0.017031151801347733, 0.0048684012144804, -0.018747469410300255, 0.0005903967539779842, 0.00979621335864067, -0.029995951801538467, 0.019169947132468224, -0.026259660720825195, -0.0011205574264749885, 0.002180053386837244, 0.0022345136385411024, 0.020820252597332, -0.023077871650457382, -0.021823639050126076, 0.014707522466778755, 0.03440556675195694, -0.009967844933271408, -0.007129319477826357, 0.021718019619584084, -0.036755602806806564, 0.02471497468650341, 0.02030535787343979, -0.01787610910832882, -0.005653946194797754, 0.014126614667475224, -0.012872382067143917, 0.009221906773746014, 0.019433997571468353, -0.006555013358592987, -0.01088541466742754, -0.004901407286524773, -0.019513212144374847, 0.03316453844308853, -0.016833115369081497, -0.008792826905846596, -0.03261003643274307, 0.026708543300628662, -0.036623578518629074, 0.014760332182049751, 0.006723344326019287, 0.020318560302257538, -0.007617809809744358, -0.019301973283290863, -0.00880603026598692, -0.015895741060376167, -0.010627967305481434, -0.005614338908344507, 0.003449138253927231, -0.007347160018980503, 0.005924596451222897, 0.02459615282714367, 0.020490191876888275, -0.0035679603461176157, 0.004680266138166189, -0.040505096316337585, 0.007168926764279604, 0.005459210369735956, -0.010179083794355392, -0.026840567588806152, -0.008152509108185768, 0.028860541060566902, 0.0022295627277344465, 0.0059113940224051476, 0.007353761233389378, -0.01014607772231102, -0.002861629705876112, 0.007538595236837864, -0.005063137039542198, 0.009644385427236557, -0.00799407996237278, 0.003034911584109068, 0.012258469127118587, -0.004808989819139242, -0.010792997665703297, 0.024002041667699814, 0.03292689472436905, -0.009188900701701641, -0.00063866819255054, 0.0019968696869909763, -0.020080916583538055, -0.001538909855298698, -0.01370413601398468, -0.04121802747249603, -0.02631247043609619, 0.010951426811516285, 0.02285343036055565, 0.017836501821875572, -0.008971060626208782, 0.023962434381246567, 0.020622216165065765, -0.01458869967609644, -0.0075980061665177345, 0.016608674079179764, -0.013459891080856323, -0.01922275684773922, 0.059991903603076935, -0.01215284876525402, 0.038498323410749435, 0.020384572446346283, 0.018892696127295494, 0.033930279314517975, 0.011618150398135185, 0.009281317703425884, 0.021691614761948586, 0.006726644933223724, -0.004627456422895193, -0.00042330333963036537, -0.0066771358251571655, -0.028860541060566902, 0.013941780664026737, 0.01264133956283331, -0.030048761516809464, -0.004640658851712942, 0.006244755815714598, -0.02459615282714367, 0.05048614367842674, 0.011855794116854668, -0.024648962542414665, -0.005667149089276791, 0.007578202523291111, 0.03385106474161148, 0.026932984590530396, 0.007155724335461855, -0.00818551518023014, -0.02323630079627037, 0.01551287155598402, -0.01416622195392847, 0.034854449331760406, -0.02904537506401539, 0.01262813713401556, -0.009426544420421124, -0.008119503036141396, 0.027989180758595467, -0.012674345634877682, -0.015684502199292183, 0.034748829901218414, -7.132413884392008e-05, 0.01235088612884283, -0.01054875273257494, 0.0005413001636043191, -0.005185259506106377, 0.025441108271479607, 0.003990438766777515, 0.007314153481274843, -0.016437042504549026, 0.008773023262619972, 0.0042874934151768684, -0.017295200377702713, -0.007122718263417482, 0.009835820645093918, 0.010515746660530567, -0.004891505464911461, -0.014707522466778755, 0.009683992713689804, 0.005888289771974087, -0.0044261193834245205, 0.010245095938444138, -0.023553159087896347, -0.023209895938634872, 0.021942460909485817, 0.0068190619349479675, -0.020595811307430267, 0.002074433956295252, -0.02901897020637989], "c315e6be-d862-411c-9881-e6f482a97b77": [-0.0014490364119410515, -0.022383272647857666, -0.002096762415021658, 0.007739323657006025, -0.017361726611852646, 0.03023611567914486, -0.013715764507651329, -0.00978266540914774, 0.0020950930193066597, -0.02021973393857479, 0.019284872338175774, -0.00022787266061641276, 0.020660454407334328, -0.0016852561384439468, -0.005869599059224129, 0.008173367008566856, 0.03499055653810501, -0.02326471358537674, 0.04741086810827255, -0.015812527388334274, 0.005475621670484543, -0.0015742412069812417, -0.001549200271256268, 0.020206378772854805, -0.010256773792207241, 0.03581857681274414, 0.01573239639401436, -0.01969888247549534, 0.006066588219255209, -0.009729244746267796, -0.013969512656331062, 0.01566562056541443, 0.0024823930580168962, -0.020794006064534187, -0.04065315052866936, 0.006357063073664904, 0.0015258287312462926, -0.01972559280693531, 0.024707073345780373, -1.3524722817237489e-05, -0.0012111474061384797, -0.005505670793354511, -0.008380372077226639, 0.0018597081070765853, -0.03093058429658413, 0.017829157412052155, 0.002809594850987196, -0.03215926140546799, -0.01963210664689541, 0.014517074450850487, 0.023932473734021187, 0.004397191107273102, -0.03349477797746658, 0.0017211481463164091, -0.014477008953690529, -0.003963148221373558, 0.019832434132695198, 0.03264004737138748, -0.011739198118448257, 0.029995722696185112, 0.02355852723121643, -0.001816303702071309, 0.0006627505645155907, 0.01824316941201687, -0.03501726686954498, -0.013068038038909435, 0.0021001012064516544, -0.023772209882736206, -0.013689054176211357, -0.012754191644489765, 0.04073328152298927, 0.011458739638328552, -0.006260238122195005, 0.005769435316324234, 0.021915841847658157, -0.029862171038985252, -0.026483310386538506, -0.010750915855169296, -0.031731896102428436, 0.013742474839091301, 0.001136859180405736, -0.03734106943011284, -0.0026560104452073574, 0.004921381827443838, 0.018643824383616447, -0.0076658702455461025, 0.01014325488358736, 0.021421700716018677, -0.029087569564580917, -0.03149150311946869, 0.019765658304095268, 0.023077741265296936, 0.007605771999806166, 0.002370543545112014, -0.013108103536069393, 0.023798922076821327, -0.012460377998650074, 0.020834071561694145, -0.010597331449389458, -0.02868691459298134, -0.022743862122297287, -0.008260175585746765, -0.005448911339044571, -0.0023538495879620314, -0.017361726611852646, 0.004724393133074045, -0.01820310391485691, -0.009528917260468006, 0.008667508140206337, -0.03162505477666855, -0.008647475391626358, 0.026870612055063248, -0.021715514361858368, -0.04081341251730919, -0.008306918665766716, -0.01698778197169304, 0.0374746210873127, -0.003562492784112692, -0.03640620782971382, -0.007532318588346243, 0.0015575472498312593, 0.015906013548374176, -0.0032085806597024202, -0.020433416590094566, 0.000815500330645591, 0.0037594817113131285, 0.009074840694665909, -0.0238256324082613, 0.004420562647283077, -0.010677462443709373, 0.03637949377298355, 0.002899742219597101, 0.016213182359933853, -0.006761057302355766, 0.000890623196028173, 0.022182945162057877, -0.026750415563583374, 0.00481454050168395, -0.013642311096191406, -0.02283734828233719, 0.01744185760617256, 0.00019396304560359567, 0.010503845289349556, -0.030316246673464775, -0.005448911339044571, 0.0206871647387743, 0.017375081777572632, 0.013889381662011147, -0.024667007848620415, -0.011271767318248749, 0.01525160949677229, -0.013341819867491722, 0.013201589696109295, 0.00034848658833652735, 0.023972539231181145, -0.0007203447166830301, 0.019485199823975563, -0.0051484196446835995, 0.002310445299372077, -0.000770843995269388, 0.007532318588346243, 0.009455463849008083, 0.0036159134469926357, -0.009902861900627613, 0.002378890523687005, 0.026189496740698814, 0.023304779082536697, -0.026456600055098534, -0.040759991854429245, -0.013228300027549267, 0.0043203989043831825, 0.01183268427848816, -0.020246444270014763, 0.0007637490634806454, -0.01995263062417507, 0.012086433358490467, 0.03050321899354458, 0.033227674663066864, -0.017588764429092407, 0.011285122483968735, -0.05141742154955864, -0.017174754291772842, 0.03453648090362549, 0.019311582669615746, -0.008286885917186737, -0.012260050512850285, -0.009575660340487957, -0.00894128903746605, 0.010744238272309303, 0.011872749775648117, 0.0046175518073141575, 0.004874638747423887, -0.016333378851413727, -0.02801915630698204, -0.6372020840644836, -0.03106413595378399, -0.025655290111899376, -0.006477259565144777, -0.01358221285045147, 0.0051217093132436275, 0.015652265399694443, 0.02032657526433468, 0.0004578320658765733, -5.810283710161457e-06, -0.01400957815349102, 0.018950993195176125, -0.0039664870128035545, -0.017829157412052155, -0.015505357645452023, -0.0014774161390960217, 0.002363865962252021, -0.023184582591056824, 0.0002562524168752134, -0.017321661114692688, -0.004226912744343281, 0.00038354392745532095, 0.0013622278347611427, 0.015358450822532177, -0.013348497450351715, -0.001631000661291182, 0.014931085519492626, -0.00031426394707523286, 0.006453888025134802, 0.040065523236989975, -0.028259549289941788, 0.030743611976504326, 0.01869724504649639, 0.013715764507651329, 0.05128386989235878, 0.0047878301702439785, -0.011091472581028938, 0.011472094804048538, 0.010310194455087185, 0.02369207888841629, -0.013608923181891441, -0.015385161153972149, 0.034750163555145264, 0.007104952819645405, 0.01338188536465168, 0.008500568568706512, 0.03082374297082424, -0.02924783155322075, 0.01685423031449318, 0.019338293001055717, 0.0015249940333887935, 0.0018947654170915484, -0.018523627892136574, 7.533153257099912e-05, -0.0007725133909843862, 0.0022419998422265053, 0.03362832963466644, -0.00545892771333456, -0.0031685151625424623, -0.009368655271828175, 0.0002508268808014691, 0.032533206045627594, -0.008166689425706863, -0.0012712456518784165, -0.00976263266056776, 0.021782290190458298, -0.01609298586845398, 0.014650626108050346, 0.026977453380823135, 0.002924783155322075, 0.0192581620067358, 0.017949353903532028, 0.00847385823726654, -0.013007939793169498, 0.001542522688396275, 0.01007647905498743, 0.02669699490070343, -0.020179668441414833, 0.010957920923829079, 0.01889757253229618, 0.003893033368512988, -0.015772461891174316, -0.027912314981222153, -0.024974176660180092, 0.01471740286797285, -0.012961196713149548, -0.019124610349535942, 0.033788591623306274, 0.0051417420618236065, 0.004069989547133446, -0.0022803961765021086, 0.008634120225906372, 0.0037394489627331495, 0.022650375962257385, 0.03819580003619194, 0.008086558431386948, -0.023144517093896866, -0.005622528493404388, 0.018456852063536644, -0.00041484509711153805, 0.0008150829817168415, -0.028767045587301254, -0.0014348465483635664, -0.007478897925466299, 0.009548950009047985, -0.0123401815071702, -0.02914099022746086, -0.016827519983053207, 0.047624554485082626, -0.01685423031449318, -0.002352180192247033, -0.01511805783957243, -0.01014325488358736, -0.011472094804048538, 0.018029484897851944, -0.022890768945217133, 0.014396877959370613, 0.005475621670484543, 0.020206378772854805, -0.008153334259986877, 0.023945828899741173, -0.013288398273289204, 0.009655791334807873, -0.018657179549336433, 0.03264004737138748, 0.042148932814598083, 0.010296839289367199, -0.012914453633129597, -0.0051417420618236065, 0.005472282879054546, -0.00011195392289664596, -0.0012002963339909911, 0.012039690278470516, 0.008861158043146133, 0.010116544552147388, -0.02954164706170559, 0.0227305069565773, 0.005422201007604599, 0.02322464808821678, -0.022316496819257736, -0.001472407951951027, 0.0022036037407815456, 0.02425299771130085, 0.016774099320173264, -0.0022954207379370928, -0.03135795146226883, -0.00513840327039361, -0.006109992507845163, -0.04265642911195755, -0.004350448027253151, -0.009074840694665909, 0.008413759991526604, -0.011331865563988686, 0.007111630402505398, 0.0025324749294668436, -0.0008806068217381835, -0.008400404825806618, -0.005018206778913736, 0.0041634757071733475, -0.026282982900738716, 0.01869724504649639, 0.021915841847658157, -0.024439970031380653, 0.014330102130770683, 0.03167847543954849, -0.02570871077477932, -0.009081518277525902, 0.03135795146226883, -0.01358221285045147, -0.02405267022550106, -2.911010778916534e-05, -0.0031284496653825045, 0.008099913597106934, 0.025601869449019432, -0.004447272978723049, 0.0021218033507466316, 0.009909539483487606, -0.030690191313624382, -0.010450423695147038, 0.012560541741549969, -0.007986394688487053, 0.007298602722585201, -0.001370574813336134, -0.0010225055739283562, 0.002171885222196579, -0.008266853168606758, -0.017361726611852646, -0.001838005962781608, 0.005218534264713526, 0.02606930024921894, 0.005028223153203726, 0.018817441537976265, -0.006467243190854788, -0.002959840465337038, 0.0011635696282610297, 0.013475371524691582, 0.01893763802945614, 0.021995972841978073, -0.005826194770634174, 0.008901223540306091, 0.006437194067984819, 0.016400154680013657, 0.03584528714418411, 0.007759356405586004, 0.006500631105154753, -0.03905053064227104, -0.0021685464307665825, -0.0010709180496633053, 0.024279708042740822, -0.01770896092057228, 0.005565769039094448, -0.024132801219820976, 0.003672672901302576, -0.012393602170050144, 0.01705455780029297, 0.03806224837899208, 0.011852717027068138, -0.006099976133555174, -0.014543784782290459, 0.009181682951748371, 0.013435306027531624, -0.0184034314006567, 0.0021618688479065895, -0.010644074529409409, -0.005108354147523642, -0.006166751962155104, 0.0003587116370908916, 0.033655039966106415, 0.017588764429092407, -0.015318385325372219, 0.017161399126052856, -0.011058084666728973, 0.0008351157885044813, 0.023652013391256332, 0.007305280305445194, 0.011338543146848679, 0.007832810282707214, -0.018723955377936363, 0.04663626849651337, -0.02844652161002159, 0.00022912470740266144, 0.00404661800712347, 0.021261438727378845, -0.031865447759628296, -0.018910927698016167, 0.014196550473570824, 0.004527403973042965, -0.007759356405586004, 0.02144841104745865, 0.020727230235934258, -0.013508759438991547, 0.001754536060616374, -0.006480598356574774, -7.76791202952154e-05, 0.008013105019927025, -0.025548448786139488, -0.0049647861160337925, 0.01338188536465168, 0.02494746632874012, 0.02954164706170559, 0.007892908528447151, -0.0019582025706768036, 0.03231952339410782, 0.017268240451812744, 0.06212827190756798, -0.004016568884253502, -0.006951368413865566, 0.009428753517568111, -0.012881065718829632, -0.020233089104294777, -0.019805723801255226, -0.004664294887334108, 0.008714251220226288, 0.013128136284649372, 0.005291988141834736, 0.006453888025134802, 0.011391963809728622, -0.0007387080695480108, 0.009642436169087887, -0.005869599059224129, -0.019618751481175423, -0.027338042855262756, 0.021955907344818115, 0.0035391212441027164, -0.001069248653948307, -0.019137965515255928, -0.01362895593047142, -0.0007086589466780424, -0.01768225058913231, 0.04596851021051407, -0.020860781893134117, 0.016199827194213867, 0.010964598506689072, -0.011351898312568665, 0.0062268502078950405, 0.013488726690411568, 0.029862171038985252, -0.0238256324082613, 0.031998999416828156, 0.0027311332523822784, -0.003173523349687457, 0.01265402790158987, -0.022823993116617203, 0.015211543999612331, 0.021595317870378494, 0.005672610364854336, -0.0033354549668729305, -0.008861158043146133, 0.0086074098944664, -0.017401792109012604, -0.019805723801255226, -0.023585237562656403, -0.0005016537616029382, 0.004290349781513214, -0.0015517043648287654, -0.013261687941849232, -0.020834071561694145, 0.013395240530371666, 0.024079380556941032, -0.01595943421125412, -0.015131413005292416, -0.008553989231586456, -0.03496384620666504, -0.005231889430433512, 0.10427720099687576, 0.01880408637225628, -0.015598843805491924, 0.0028045866638422012, 0.014223260805010796, 0.005983118433505297, -0.020273154601454735, -0.035952128469944, 0.023905763402581215, 0.01471740286797285, 0.00578279048204422, -0.021435055881738663, 0.039664868265390396, -0.01209311094135046, 0.0021351585164666176, -0.007552351336926222, -0.004206879995763302, 0.013335142284631729, -0.008680863305926323, 0.01023006346076727, -0.0059430524706840515, 0.0031418048311024904, 0.014623915776610374, 0.01768225058913231, -0.030690191313624382, -0.014730758033692837, 0.039077240973711014, -0.0016769091598689556, 0.018884217366576195, -0.0245868768543005, -0.02510772831737995, 0.029327962547540665, 0.031144266948103905, 0.019071189686655998, -0.024146156385540962, 0.00507162744179368, -0.0014840937219560146, 0.024306418374180794, -0.0034857005812227726, -0.009001387283205986, 0.011358575895428658, 0.016440220177173615, 0.01813632622361183, -0.021194662898778915, 0.0047878301702439785, 0.011011341586709023, -0.015465292148292065, -0.010977953672409058, -0.022690441459417343, 0.008647475391626358, 0.047864947468042374, -0.01491773035377264, -0.005318698473274708, -0.016707323491573334, 0.017722316086292267, 0.007358701433986425, -0.01091785542666912, -0.019551975652575493, -0.006270254496484995, 0.03619252145290375, 0.007064887322485447, 0.004714376758784056, 0.01813632622361183, -0.0046108742244541645, -0.016640547662973404, -0.023184582591056824, -0.021221373230218887, -0.023652013391256332, -0.027965735644102097, 0.019418423995375633, -0.016560416668653488, 0.0009674154571257532, -0.013528792187571526, 0.0012787579325959086, 0.016506996005773544, 0.003317091381177306, 0.01817639172077179, -0.01258725207298994, 0.014904375188052654, -0.009595693089067936, -0.01204636786133051, -0.018350010737776756, 0.009735922329127789, -0.007185083813965321, -0.018296590074896812, -0.007165051065385342, 0.018283234909176826, 0.011512160301208496, -0.02465365268290043, -0.0034456350840628147, -0.006256899330765009, 0.017735671252012253, -0.01161232404410839, -0.005746063776314259, 0.001273749745450914, -0.0023672047536820173, -0.0011702472111210227, -0.009028097614645958, -0.008119946345686913, -0.017201464623212814, 0.01873731054365635, -0.042709849774837494, -0.006073265802115202, -0.004226912744343281, 0.015438581816852093, -0.004293688572943211, 0.015385161153972149, 0.029354672878980637, -0.012233340181410313, -0.018683889880776405, 0.02214287966489792, -0.024506745859980583, -0.00018081653979606926, 0.0031418048311024904, 0.008994709700345993, 0.013341819867491722, 0.018977703526616096, 0.014877664856612682, 0.00500485161319375, -0.01638679951429367, 0.0017445196863263845, -0.028499942272901535, 0.007492253091186285, 0.0060766045935451984, -0.025828907266259193, 0.0105572659522295, 0.004998174030333757, -0.012280083261430264, 0.026443244889378548, 0.013969512656331062, 0.008614087477326393, 0.004827895667403936, 0.002742819022387266, -0.01790928840637207, -0.02494746632874012, 0.014223260805010796, -0.014303391799330711, -0.0019615413621068, -0.0191646758466959, 0.009662468917667866, -0.019645461812615395, -0.01781580224633217, -0.018256524577736855, -0.036299362778663635, -0.02095426805317402, -0.026242917403578758, -0.01292113121598959, -0.028927307575941086, 0.018496917560696602, 0.00029381384956650436, -0.014396877959370613, -0.027431529015302658, -0.031010715290904045, 0.0019081205828115344, -0.008133301511406898, -0.045514434576034546, 0.0044839996844530106, -0.012820967473089695, 0.03181202709674835, -0.00424694549292326, 0.0206871647387743, -0.02250346913933754, 0.010971276089549065, 0.021021045744419098, -0.006200139876455069, 0.008447147905826569, -0.02183571085333824, -0.03552476316690445, -0.039103951305150986, -0.013027972541749477, 0.021889131516218185, 0.02395918406546116, 0.02032657526433468, -0.017201464623212814, -0.0022419998422265053, 0.04206880182027817, -0.017762381583452225, 0.0011343550868332386, -0.02046012692153454, -0.043003663420677185, -0.031117556616663933, 0.00777271157130599, -0.007779389154165983, -0.0008714251453056931, -0.0078461654484272, -0.0027161086909472942, 0.049948353320360184, 0.008961321786046028, 0.0002856755454558879, -0.027805473655462265, 0.020900847390294075, -0.02259695529937744, 0.02174222469329834, -0.0013330134097486734, 0.027484949678182602, -0.01274083647876978, 0.03370846062898636, -0.0057794516906142235, 0.0036559789441525936, 0.004083344712853432, 0.02200932800769806, 0.00534540880471468, -0.0022036037407815456, -0.008006427437067032, -0.017001137137413025, -0.0072051165625452995, -0.008006427437067032, -0.013916091993451118, 0.0294348057359457, -0.009622403420507908, -0.007725968491286039, -0.004450611770153046, -0.004771136213093996, -0.029888881370425224, -0.02938138321042061, 0.007759356405586004, 0.011826006695628166, 0.008400404825806618, -0.013248332776129246, -0.01652035117149353, -0.006490614730864763, 0.0020516887307167053, 0.049681250005960464, 0.01062404178082943, 0.021061111241579056, 0.004834573250263929, -0.023932473734021187, 0.0015500349691137671, 0.0025324749294668436, 0.006958045996725559, -0.009175005368888378, 0.038970399647951126, 0.016547061502933502, 0.0025391525123268366, -0.00138392997905612, -0.020794006064534187, -0.0013037988683208823, -0.046743109822273254, -0.028526652604341507, 0.004016568884253502, -0.014423588290810585, -0.009148295037448406, 0.010296839289367199, 0.005395490676164627, -0.016640547662973404, 0.009034775197505951, 0.0036426237784326077, 0.015906013548374176, -0.02158196270465851, -0.005699320696294308, -0.02266373112797737, 0.01649364084005356, 0.011291800066828728, 0.026883967220783234, 0.02297089993953705, -0.008774349465966225, -0.04121406748890877, -0.0206871647387743, -0.027778763324022293, -0.014490364119410515, 0.009028097614645958, 0.011919493786990643, -0.0007416295120492578, 0.010069801472127438, 0.009876151569187641, 0.002769529353827238, 0.0008597393753007054, 0.0004432248533703387, -0.02940809540450573, 0.027484949678182602, 0.004884655121713877, 0.01351543702185154, 0.0016084638191387057, 0.01394280232489109, 0.014931085519492626, 0.00818004459142685, -0.009836086072027683, -0.00018780714890453964, -0.0233982652425766, 0.004600857850164175, 0.002070052083581686, 0.0026777125895023346, 0.0020450111478567123, -0.007438832428306341, -0.017949353903532028, -0.015158123336732388, -0.003509072121232748, 0.012887743301689625, -0.0041768308728933334, -0.0461287721991539, -0.017628829926252365, -0.0001531671587144956, -0.024733783677220345, 0.01605292037129402, -0.005625867284834385, 0.014436943456530571, -0.007425477262586355, 0.029327962547540665, -0.021101176738739014, 0.020940912887454033, -0.009248458780348301, 0.010250096209347248, -0.039237502962350845, -0.0019031123956665397, 0.006033200304955244, -0.018029484897851944, 0.0218757763504982, -0.009128262288868427, -0.03285373002290726, 0.012106466107070446, 0.022476758807897568, 0.00423692911863327, 0.008326951414346695, 0.004594180267304182, 0.005392151884734631, -0.004287010990083218, 0.006099976133555174, -0.015398516319692135, -0.03218597173690796, 0.02692403271794319, 0.015331740491092205, 0.010770948603749275, -0.0008480536052957177, -0.008834447711706161, 0.03971828892827034, 0.013074715621769428, 0.021101176738739014, 0.014623915776610374, -0.04142775014042854, 0.01589265838265419, -0.023091096431016922, 0.00920171570032835, 0.005408845841884613, -0.00770593574270606, -0.018350010737776756, -0.023051030933856964, -0.01718810945749283, -0.008106591179966927, 0.015852592885494232, -0.01734837144613266, 0.013996222987771034, 0.009822730906307697, -0.008387049660086632, -0.00854063406586647, -0.003365504089742899, -0.016239892691373825, 0.01204636786133051, -0.010109866969287395, -0.04142775014042854, -0.020513547584414482, -0.012800934724509716, 0.03787527605891228, -0.001136859180405736, -0.019271517172455788, -0.009662468917667866, -0.009388688020408154, -0.042736560106277466, -0.010497167706489563, -0.0009907870553433895, 0.020633744075894356, 0.040065523236989975, 0.018456852063536644, 0.013128136284649372, 0.019017769023776054, -0.02021973393857479, 0.009328589774668217, -0.010931210592389107, -0.01609298586845398, -0.003709399839863181, 0.011986269615590572, -0.002178562805056572, 0.01091785542666912, -0.02180900052189827, 0.004160136915743351, 0.02046012692153454, -0.003632607404142618, -0.0020750602707266808, 0.007892908528447151, -0.0048078629188239574, 0.011391963809728622, -0.01674738898873329, -0.003462329041212797, 0.02071387507021427, -0.0019097899785265326, 0.0006710975430905819, -0.00982940848916769, -0.013161524198949337, -0.01595943421125412, -0.009388688020408154, -0.011358575895428658, -0.022823993116617203, 0.013555502519011497, -0.009121584706008434, 0.008574021980166435, -0.02454681135714054, -0.005018206778913736, -0.02617614157497883, -0.012306793592870235, 0.04057301953434944, -0.00035266007762402296, -0.008801059797406197, 0.024159511551260948, 0.017895933240652084, -0.02510772831737995, -0.005158436018973589, 0.021528542041778564, 0.02207610383629799, -0.021635383367538452, 0.015932723879814148, -0.030049143359065056, 0.018790731206536293, -0.020860781893134117, 0.00014753294817637652, -0.015745751559734344, 0.022196300327777863, -0.014116419479250908, -0.009802698157727718, -0.026723705232143402, 0.025454962626099586, 0.02514779381453991, -0.010256773792207241, 0.0031701845582574606, -0.009622403420507908, -0.012193274684250355, 0.0019198063528165221, -0.012807612307369709, -0.014223260805010796, -0.005555752664804459, 0.010583976283669472, 0.009909539483487606, 0.017762381583452225, -0.012326826341450214, -0.00894128903746605, 0.015652265399694443, -0.028660204261541367, 0.006737685762345791, 0.20385338366031647, -0.010944565758109093, 0.014062998816370964, 0.02597581408917904, 0.0038396127056330442, 0.0131014259532094, 0.007485575508326292, -0.009989670477807522, -0.01826987974345684, -0.010750915855169296, -0.007812777534127235, 0.015986144542694092, -0.007191761396825314, 0.004417223855853081, -0.0006811139173805714, -0.005168452393263578, -0.04303037375211716, -0.00418016966432333, -0.015572133474051952, -0.0636240541934967, 0.016173116862773895, -0.016667257994413376, -0.01768225058913231, -0.01349540427327156, 0.003919743932783604, 0.017935998737812042, -0.024827269837260246, -0.015398516319692135, 0.039504606276750565, -0.0027111005038022995, -0.02366536855697632, -0.008013105019927025, -0.006430516485124826, -0.021528542041778564, -0.01167909987270832, -0.0029631792567670345, 0.01323497761040926, 0.0030750290025025606, 0.009669146500527859, -0.01009651180356741, 0.006791106425225735, 0.009221748448908329, -0.001007481012493372, -0.008734283968806267, -0.015077992342412472, 0.026977453380823135, -0.004934736993163824, -0.016667257994413376, -0.021955907344818115, 0.008139979094266891, -0.02293083444237709, 0.0156923308968544, 0.04754441976547241, 0.016573771834373474, 0.004477322101593018, -0.022823993116617203, -0.011231701821088791, 0.004844589624553919, -0.0054388949647545815, -0.010303516872227192, -0.023051030933856964, 0.02346504107117653, -0.011558903381228447, 0.018857507035136223, -0.02600252442061901, 0.017361726611852646, -0.0045107100158929825, -0.008300241082906723, 0.01187942735850811, -0.035177528858184814, -0.0008192564710043371, -0.012613962404429913, -0.011278444901108742, -0.0010517199989408255, -0.0023154534865170717, -0.0009966299403458834, 0.015077992342412472, -0.02147512137889862, 0.014517074450850487, -0.01658712700009346, 0.028045866638422012, -0.016734033823013306, 0.018657179549336433, -0.015305030159652233, -0.0022653713822364807, -0.027070939540863037, 0.013755830004811287, -0.016547061502933502, -0.01485095452517271, 0.0018764020642265677, -0.01889757253229618, -0.016560416668653488, 0.011078117415308952, -0.017468567937612534, 0.006463904399424791, 0.00046993521391414106, 0.02095426805317402, 0.0034723454155027866, -0.008974676951766014, 0.008841125294566154, -0.00840708240866661, -0.03410911560058594, 0.030022433027625084, 0.011151570826768875, -0.03293386101722717, 0.00489133270457387, 0.005382135510444641, 0.012306793592870235, 0.02118130773305893, -0.0013121459633111954, 0.015104702673852444, -0.005509009584784508, 4.288263153284788e-05, -0.01768225058913231, 0.006079943384975195, 0.026483310386538506, -0.019244806841015816, -0.016239892691373825, -0.0019431778928264976, 0.025428252294659615, 0.0145037192851305, -0.023304779082536697, -0.007091597653925419, 0.009028097614645958, -0.008934611454606056, -0.0030817065853625536, -0.019244806841015816, 0.010644074529409409, 0.0145037192851305, -0.01714804396033287, 0.014249971136450768, -0.031731896102428436, -0.00038688271888531744, -0.0009540602914057672, -0.019779013469815254, 0.013862671330571175, -0.007919618859887123, -0.03154492378234863, 0.025989169254899025, -0.01638679951429367, -0.001781246392056346, 0.013742474839091301, 0.0030666820239275694, 0.001871393877081573, -0.02214287966489792, -0.007305280305445194, 0.011772586032748222, -0.016266603022813797, -0.00045115448301658034, -0.01741514727473259, -0.040359336882829666, -0.008760994300246239, -0.0022954207379370928, -0.007245182059705257, 0.007018144242465496, -0.014116419479250908, -0.02759179100394249, -0.014303391799330711, -0.011238379403948784, 0.03653975948691368, -0.026376469060778618, 0.01880408637225628, 0.035311080515384674, -0.01331510953605175, -0.01757540926337242, -0.006150058005005121, -0.16923677921295166, 0.009589015506207943, 0.01929822750389576, -0.013061360456049442, 0.03288044035434723, 0.021955907344818115, 0.023905763402581215, 0.007438832428306341, -0.001096793683245778, -0.005876276642084122, 0.021221373230218887, 0.01007647905498743, -0.045380882918834686, -0.026189496740698814, -0.022677086293697357, 0.023571882396936417, -0.011772586032748222, 0.015585488639771938, 0.05042913928627968, 0.019511910155415535, 0.008961321786046028, 0.0012804273283109069, 0.01761547476053238, -0.015839237719774246, 0.017922643572092056, 0.005218534264713526, -0.0010809344239532948, 0.006310319993644953, -0.001378087094053626, -0.016907650977373123, -0.0043337540701031685, 0.004817879293113947, 0.0062335277907550335, -0.025027597323060036, 0.02409273572266102, 0.013228300027549267, -0.0043404316529631615, -0.003769498085603118, 0.003899710951372981, 0.019378358498215675, 0.016306668519973755, 0.00031342924921773374, 0.0309572946280241, 0.012019657529890537, -0.0016877602320164442, 0.03215926140546799, -0.011625679209828377, 0.0019381697056815028, 0.013268365524709225, -0.014062998816370964, 6.265455158427358e-05, -0.007064887322485447, 0.01602621003985405, 0.001439020037651062, 0.034215956926345825, 0.007872875779867172, 0.01698778197169304, -0.006009828764945269, -0.010831046849489212, -0.025615224614739418, 0.005348747596144676, 0.0010600669775158167, 0.024853980168700218, -0.014864309690892696, 0.0039030497428029776, -0.0021902485750615597, -0.003716077422723174, 0.02445332519710064, -0.019137965515255928, 0.002206942532211542, -0.0014239954762160778, 0.00212347274646163, 0.015678975731134415, -0.0021401667036116123, 0.00018227726104669273, -0.000726187601685524, -0.022289786487817764, 0.013455338776111603, -0.01518483366817236, -0.025895683094859123, -0.04652942717075348, 0.02844652161002159, -0.003051657462492585, -0.006470581982284784, -0.0034923781640827656, 0.023104451596736908, -0.0011134876403957605, -0.009195038117468357, -0.014557139948010445, 0.004874638747423887, -0.007779389154165983, -0.008460503071546555, -0.004226912744343281, -0.008400404825806618, 0.014049643650650978, 0.0113185103982687, 0.007732646074146032, -0.012820967473089695, 0.0017912627663463354, -0.0005396325141191483, 0.012240017764270306, -0.022850703448057175, -0.01080433651804924, 0.021061111241579056, 0.02472042851150036, 0.006951368413865566, -0.012934486381709576, -0.0005271120462566614, 0.01774902641773224, 0.02669699490070343, 0.0026242919266223907, 0.015011216513812542, 0.010857757180929184, 0.001472407951951027, 0.008567344397306442, 0.03453648090362549, -0.015211543999612331, -0.009161650203168392, 0.02398589439690113, -0.013208267278969288, 0.07008795440196991, -0.015144768171012402, -0.02214287966489792, -0.012874388135969639, -0.020032761618494987, -0.029915591701865196, -0.11688448488712311, 0.002036664169281721, 0.019538620486855507, 0.018056195229291916, -0.005372119136154652, 0.0018680550856515765, -0.004731070715934038, 0.01254050899296999, -0.002238661050796509, 0.0039931973442435265, -0.006660893559455872, -0.03413582593202591, 0.016734033823013306, 0.0019365003099665046, 0.008206754922866821, -0.028339680284261703, 0.012313471175730228, -0.018149681389331818, 0.0011084794532507658, 0.021929197013378143, 0.00024915748508647084, -0.021501831710338593, 0.022249720990657806, -0.02306438609957695, 0.0067009590566158295, -0.0060632494278252125, -0.0413743294775486, 0.0008092400967143476, 0.01956533081829548, 0.01893763802945614, -0.01665390282869339, -0.005923019722104073, 0.003939776681363583, -0.006296964827924967, -0.004276994615793228, 0.011846039444208145, -0.04805191978812218, -0.002966518048197031, 0.020767295733094215, -0.039771709591150284, 0.017294950783252716, -0.005221873056143522, 0.01860375888645649, -0.015879303216934204, -0.006367079447954893, -0.0025608546566218138, -0.023184582591056824, 0.007185083813965321, 0.019672172144055367, -0.022249720990657806, -0.01952526532113552, 0.02158196270465851, -0.03621923178434372, -0.0183099452406168, 0.02801915630698204, 0.001658545690588653, 0.039664868265390396, -0.005719353444874287, -0.011652389541268349, -0.0009415398235432804, -0.01744185760617256, 0.004500693641602993, 0.0034523126669228077, 0.03902382031083107, 0.010570621117949486, -0.007024821825325489, -0.010503845289349556, -0.013301754370331764, 0.01932493783533573, -0.001453209901228547, -0.017107978463172913, 0.009622403420507908, -0.02914099022746086, 0.032266102731227875, -0.01518483366817236, 0.023745499551296234, -0.025094373151659966, -0.00982940848916769, 0.014383522793650627, -0.010530555620789528, 0.003489039372652769, -0.02095426805317402, 0.009969637729227543, -0.003575847949832678, -0.0009707542485557497, 0.020299864932894707, 0.008934611454606056, -0.011805973947048187, 0.0024089396465569735, -0.017388436943292618, 0.016373444348573685, 0.014797533862292767, -0.016867585480213165, -0.02131485939025879, 0.018910927698016167, 0.027484949678182602, 0.018256524577736855, 0.005078305024653673, -0.008914578706026077, 0.0037928696256130934, -0.01463727094233036, 0.010330227203667164, -0.06100643798708916, 0.03181202709674835, 0.005622528493404388, -0.002549168886616826, 0.008634120225906372, -0.00982940848916769, 0.015558778308331966, -0.010790981352329254, -0.012019657529890537, 0.01665390282869339, -0.008039815351366997, 0.030583349987864494, -0.011785941198468208, -0.013154846616089344, -0.009568982757627964, -0.0004974802723154426, -0.007078242488205433, -0.008587377145886421, -0.0010917854961007833, -0.007899586111307144, 0.009956282563507557, -0.01511805783957243, 0.014610560610890388, 0.007699258159846067, -0.027137715369462967, -0.0018179730977863073, 0.0004160971730016172, 0.007365379016846418, 0.01414312981069088, -0.03397556394338608, 0.027912314981222153, -0.03229281306266785, 0.0009373663342557847, 0.003749465337023139, 0.002110117580741644, 0.016613837331533432, -0.014623915776610374, -0.013301754370331764, 0.018443496897816658, 0.0424160361289978, -0.027912314981222153, -0.009595693089067936, 0.002283734967932105, -0.027484949678182602, 0.01952526532113552, 0.02355852723121643, -0.0022236364893615246, 0.01236021425575018, 0.011906138621270657, -0.005862921476364136, -0.002946485299617052, 0.02914099022746086, 0.011018019169569016, -0.022757217288017273, -0.008947966620326042, -0.015024571679532528, 0.03082374297082424, -0.004587502684444189, -0.00231712288223207, -0.049280595034360886, 0.027698632329702377, -0.03178531676530838, 0.02180900052189827, 0.00241227843798697, 0.020526902750134468, -0.019618751481175423, -0.016907650977373123, -0.004550775978714228, -0.024239642545580864, -0.014517074450850487, 0.003215258242562413, 0.0032019030768424273, -0.0024857318494468927, 0.00913493987172842, 0.018817441537976265, 0.014557139948010445, -0.014730758033692837, -0.0036993834655731916, -0.03488371521234512, 0.0027194474823772907, -0.012560541741549969, -0.011198313906788826, -0.03848961368203163, -0.021034400910139084, 0.039638157933950424, -0.006256899330765009, 0.007585739251226187, 0.01183268427848816, -0.0100097032263875, 0.024667007848620415, 0.01136525347828865, -0.019338293001055717, 0.007291925139725208, -0.0045040324330329895, 0.006737685762345791, 0.014169840142130852, -0.006984756328165531, -0.01041035819798708, 0.03320096433162689, 0.034483060240745544, -0.017722316086292267, 0.0016760744620114565, 0.0031768621411174536, -0.008420437574386597, -0.00036872801138088107, -0.010216708295047283, -0.03181202709674835, -0.02494746632874012, 0.007044854573905468, 0.02259695529937744, 0.016173116862773895, -0.0018329976592212915, 0.017361726611852646, 0.026149431243538857, -0.00931523460894823, -0.0033404631540179253, 0.007886230945587158, -0.006534019019454718, -0.005485638044774532, 0.03974499925971031, -0.0009131600381806493, 0.03694041445851326, 0.021728869527578354, 0.011171603575348854, 0.03285373002290726, 0.00013292572111822665, 0.016693968325853348, 0.031170977279543877, 0.014557139948010445, 0.0008947966853156686, 0.01191281620413065, -0.005101676564663649, -0.03440292924642563, 0.0021067787893116474, 0.021929197013378143, -0.03328109532594681, -0.0054055070504546165, 0.0005751072312705219, -0.017655540257692337, 0.03488371521234512, 0.00591634213924408, -0.020072827115654945, -0.0011251734104007483, -0.009235103614628315, 0.022944189608097076, 0.01615976169705391, -0.0027912314981222153, 0.005642561241984367, -0.01909790001809597, 0.0019615413621068, -0.015745751559734344, 0.031865447759628296, -0.009702534414827824, -0.008440470322966576, 0.006323675159364939, 0.013221622444689274, 0.021822355687618256, -0.022329851984977722, -0.017107978463172913, 0.01434345729649067, 0.0012119821039959788, 0.015011216513812542, -0.005211856681853533, 0.0007478898041881621, -0.006453888025134802, 0.026523375883698463, -0.00036893668584525585, 0.0023805599194020033, -0.0352843701839447, 0.006627505179494619, 0.010550588369369507, -0.013522114604711533, -0.006460565607994795, 0.018350010737776756, -0.000661498517729342, 0.0076925805769860744, -0.02940809540450573, 0.007806099485605955, -0.0013129806611686945, -0.005742724984884262, 0.012907776050269604, -0.01972559280693531, -0.0272979773581028, 0.018002774566411972, -0.005415523424744606, -0.015505357645452023, -0.0016785785555839539, -0.013916091993451118], "88434af3-c6aa-4172-9365-434929f65f44": [0.006823821924626827, -0.014820168726146221, 0.0009373382199555635, 0.01603359542787075, -0.004321981221437454, 0.01768331043422222, -0.022209802642464638, -0.0194693673402071, -0.0030693565495312214, -0.02369591034948826, 0.01715158484876156, 0.011323045007884502, 0.023177817463874817, -0.008562158793210983, -0.0006544324569404125, 0.007416901644319296, 0.042101822793483734, -0.004185641184449196, 0.03449404612183571, -0.004611704032868147, 0.014547488652169704, 0.006394350901246071, 0.013095466420054436, 0.00996646098792553, -0.0012040535220876336, 0.02681809850037098, 0.005412701983004808, -0.02516838349401951, 0.013552205637097359, -0.004724184516817331, -0.0019309166818857193, 0.0043356153182685375, -0.013395414687693119, -0.0036027871537953615, -0.03921141475439072, 0.016306275501847267, 0.011922941543161869, -0.013102283701300621, 0.02162354066967964, -0.0023450497537851334, 0.005047992337495089, 0.005671748425811529, -0.006186432205140591, 0.012652361765503883, -0.028195133432745934, 0.0047991713508963585, -0.018378645181655884, -0.03572110831737518, -0.027881551533937454, 0.01202519703656435, 0.03454858064651489, 0.0001415593724232167, -0.030512914061546326, 0.006813596468418837, -0.01862405799329281, 0.001842295634560287, 0.003481785301119089, 0.02418673411011696, -0.006407984532415867, 0.0030182290356606245, 0.02602732554078102, 0.0017357799224555492, -0.0012585895601660013, -0.003064243821427226, -0.02107818052172661, -0.01391350757330656, -0.022782430052757263, -0.02289150282740593, -0.014697463251650333, -0.00882120430469513, 0.05172743275761604, 0.02619093284010887, -0.01667439378798008, -0.010914024896919727, 0.016156302765011787, -0.026599952951073647, -0.03293976932764053, 0.0010199943790212274, -0.01299321185797453, 0.018392279744148254, 0.0028665505815297365, -0.013190904632210732, -0.005869441200047731, 0.009543807245790958, 0.023668641224503517, -0.01899217627942562, -0.0064625209197402, 0.029858483001589775, -0.005872849840670824, -0.022864235565066338, 0.034575849771499634, 0.01275461632758379, 0.0037254933267831802, 0.006244376767426729, -0.0168516356498003, 0.01606086455285549, -0.018774032592773438, 0.018446816131472588, -0.0020382844377309084, -0.017137950286269188, -0.023995857685804367, -0.013620375655591488, -0.01604722999036312, -0.008466720581054688, -0.02651814930140972, 0.006131896283477545, -0.013381781056523323, 0.004093611612915993, 0.024159466847777367, -0.012740982696413994, -0.0064045763574540615, 0.010191422887146473, -0.01340904925018549, -0.045074038207530975, -0.002004199428483844, -0.010205056518316269, 0.032503481954336166, 0.006615903228521347, -0.022455215454101562, -0.020737329497933388, -0.002147356513887644, 0.01847408339381218, -0.012256975285708904, -0.01391350757330656, 0.01495650876313448, 0.01128214318305254, 0.0013148298021405935, -0.03283069655299187, -0.011466202326118946, -0.022537019103765488, 0.04109290614724159, 0.01039593294262886, 0.023668641224503517, -0.0007490184507332742, 0.008391733281314373, 0.023109646514058113, -0.024241270497441292, 0.0076077776029706, -0.012734165415167809, -0.02256428636610508, 0.023982223123311996, 0.0035312087275087833, 0.010607260279357433, -0.02257792092859745, -0.002420036820694804, 0.022646090015769005, 0.0170152448117733, 0.0165244210511446, -0.017615141347050667, 0.0027864507865160704, 0.016224471852183342, -0.01569274626672268, 0.0215962715446949, -0.015651844441890717, 0.017928723245859146, 0.0011887152213603258, 0.010123252868652344, 0.007151038385927677, 0.0009807966416701674, -0.01039593294262886, 0.012216073460876942, 0.02222343720495701, 0.0007030036649666727, -0.006615903228521347, 0.00892345979809761, 0.029149513691663742, 0.019360294565558434, -0.02942219376564026, -0.03274889290332794, -0.0165244210511446, 0.016742564737796783, 0.023300522938370705, -0.0337032712996006, 0.003180132945999503, -0.020846402272582054, 0.013197721913456917, 0.02631364017724991, 0.03253074735403061, -0.012543288990855217, 0.010205056518316269, -0.04084749519824982, -0.0006182171637192369, 0.021378127858042717, 0.016619859263300896, -0.0062716444954276085, -0.010205056518316269, -0.014370246790349483, -0.018528619781136513, 0.013838520273566246, 0.0026126170996576548, 0.008439452387392521, 0.014792900532484055, -0.025604670867323875, -0.016974342986941338, -0.6391624212265015, -0.024745728820562363, -0.021664442494511604, -0.011016280390322208, 0.012100184336304665, 0.0022035969886928797, 0.014165736734867096, 0.014029396697878838, 0.009066617116332054, 0.0046287463046610355, -0.01585635356605053, 0.013272709213197231, 0.006765877362340689, -0.02177351340651512, -0.026559051126241684, -0.0026040959637612104, -0.0035346171353012323, -0.0369754359126091, -0.009796036407351494, -0.02189622074365616, -0.0015542771434411407, -0.0002018472587224096, 0.004158372990787029, 0.005289996042847633, -0.009680147282779217, 0.003365896176546812, 0.021337226033210754, -0.0010165858548134565, 0.021309956908226013, 0.03318518027663231, -0.03266708925366402, 0.03874785825610161, 0.0157063789665699, 0.01732882671058178, 0.05298176407814026, -0.012325145304203033, -0.0016267078462988138, 0.0227415282279253, 0.0004891201388090849, 0.03122188337147236, -0.012236524373292923, -0.015392797067761421, 0.01931939274072647, 0.0004891201388090849, 0.00515706418082118, 0.002871663309633732, 0.036893632262945175, -0.018419547006487846, 0.01334087923169136, 0.01561094168573618, 0.010041448287665844, -0.0011231015669181943, -0.0024524175096303225, 0.0040493011474609375, -0.01226379256695509, 0.010975378565490246, 0.031140079721808434, -0.0025887577794492245, 0.002701238263398409, -0.014356612227857113, 0.0006616755272261798, 0.01948300004005432, -0.01878766529262066, 0.005051400978118181, -0.011357130482792854, 0.03269435465335846, -0.0016164822736755013, 0.005317263770848513, 0.01619720458984375, -0.012079733423888683, 0.03209445998072624, 0.013613559305667877, -0.0021541735623031855, -0.015638209879398346, 0.007819104939699173, 0.008214491419494152, 0.03348512947559357, -0.02651814930140972, 0.012740982696413994, -0.0036982251331210136, -0.01413846854120493, -0.028167864307761192, -0.03299430385231972, -0.01801052689552307, 0.012713714502751827, -0.01764240860939026, -0.01095492672175169, 0.024295806884765625, 0.01720612123608589, -0.009959644638001919, -0.004611704032868147, 0.001504001789726317, 0.00031123889493755996, 0.011043548583984375, 0.01715158484876156, 0.011963844299316406, -0.015624575316905975, -0.008616694249212742, 0.014002128504216671, -0.0029568758327513933, -0.013334061950445175, -0.01915578357875347, 0.004775312263518572, -0.023954955860972404, 0.016647126525640488, -0.007894092239439487, -0.032148994505405426, -0.021541735157370567, 0.03962043300271034, -0.0222507044672966, -0.009884657338261604, -0.01079813577234745, -0.009557440876960754, -0.00792135950177908, 0.01037548203021288, -0.022359777241945267, 0.015910889953374863, 0.0075668757781386375, 0.003347149584442377, -0.016415348276495934, 0.01783328503370285, -0.004587844479829073, 0.005341123323887587, -0.013047747313976288, 0.02942219376564026, 0.03896600008010864, -0.0035073491744697094, -0.007600960787385702, -0.011336679570376873, 0.004686690866947174, 0.0016795395640656352, -0.013456768356263638, 0.011132169514894485, 0.002781338058412075, 0.009257492609322071, -0.03844790905714035, 0.013306793756783009, 0.013818069361150265, 0.020560087636113167, -0.017751481384038925, 0.0005913751665502787, 0.004826439544558525, 0.014233906753361225, 0.008412184193730354, -0.01911488175392151, -0.03648461028933525, -0.01961934007704258, -0.0023842474911361933, -0.03255801647901535, 0.012372864410281181, -0.006728384178131819, 0.004775312263518572, -0.00933929719030857, 0.007621411699801683, 0.009646061807870865, -0.010777684859931469, -0.009618794545531273, -0.005538816563785076, -0.004829848185181618, -0.01786055415868759, 0.013961226679384708, 0.02336869388818741, -0.007989529520273209, -0.0004271279613021761, 0.03285796567797661, -0.023668641224503517, -0.004581027198582888, 0.040165793150663376, -0.011507104150950909, -0.022155266255140305, -0.000469521211925894, -0.017137950286269188, 0.01747880131006241, 0.030185697600245476, -0.015815451741218567, 0.011445751413702965, 0.010859489440917969, -0.02811332978308201, -0.007335097528994083, 0.013770350255072117, -0.004928694572299719, 0.018569521605968475, -0.005453604273498058, -0.006302321329712868, 0.01184795517474413, -0.011657078750431538, -0.014111200347542763, 0.010559541173279285, 0.008637145161628723, 0.0211054477840662, 0.0001741531741572544, 0.025577403604984283, -0.014751998707652092, 0.0027881551068276167, 0.007048783358186483, 0.013306793756783009, 0.01633354462683201, 0.02107818052172661, -0.0001888523402158171, 0.02289150282740593, -0.006936302874237299, 0.014861071482300758, 0.022127998992800713, -0.004304938483983278, 0.012243340723216534, -0.03659368306398392, -0.013579473830759525, -0.0104709193110466, 0.007655496709048748, -0.02895863726735115, 0.013906690292060375, -0.01621083728969097, 0.0034323621075600386, -0.014056664891541004, 0.017601506784558296, 0.03790254890918732, 0.008044065907597542, 0.00022368297504726797, -0.00948245357722044, -0.0104709193110466, 0.016578955575823784, -0.021718978881835938, -0.014342978596687317, -0.022946039214730263, 0.0003319029347039759, 0.01037548203021288, 0.015270091593265533, 0.037384454160928726, 0.01039593294262886, -0.01686527021229267, 0.01584271900355816, -0.015597307123243809, -0.009557440876960754, 0.011425300501286983, 0.014165736734867096, 0.0134158656001091, 0.020491916686296463, -0.013933958485722542, 0.03626646846532822, -0.01801052689552307, -0.0062716444954276085, 0.004148147534579039, 0.009952827356755733, -0.03719358146190643, -0.018719496205449104, 0.018433181568980217, 0.016633491963148117, -0.005941019859164953, -0.0038379738107323647, 0.024404877796769142, -0.011084450408816338, 0.004035667050629854, -0.010430017486214638, 0.003461334388703108, 0.004332206677645445, -0.042129091918468475, -0.012884140014648438, 0.021664442494511604, 0.0281405970454216, 0.024963872507214546, 0.004857115913182497, -0.009959644638001919, 0.025877350941300392, 0.026204567402601242, 0.042619913816452026, 0.0030829906463623047, -0.008214491419494152, 0.006776102818548679, -0.02615003101527691, -0.030512914061546326, -0.011316228657960892, -0.0209418386220932, 0.010914024896919727, 0.002200188348069787, 0.0030812863260507584, 0.0029108610469847918, 0.0012023493181914091, 0.012618276290595531, 0.01914215087890625, 0.007539607584476471, -0.018542254343628883, -0.029694873839616776, 0.023395961150527, -0.0025205875281244516, 3.214111347915605e-05, -0.02109181322157383, -0.019087614491581917, -0.013150002807378769, -0.013770350255072117, 0.051100268959999084, -0.0122706089168787, 0.018024161458015442, 0.002573419362306595, -0.013954409398138523, -0.003613012610003352, 0.003342036623507738, 0.02747252956032753, -0.03220353275537491, 0.018569521605968475, 0.0015900664729997516, -0.0058319480158388615, 0.009618794545531273, -0.006844273302704096, 0.032312605530023575, 0.03160363435745239, -0.004516265820711851, -0.019755680114030838, -0.016129033640027046, 0.007375999353826046, -0.011677529662847519, -0.02222343720495701, -0.0287950299680233, -0.017874186858534813, -0.014547488652169704, 0.010600442998111248, -0.008562158793210983, -0.025918252766132355, 0.010266409255564213, 0.027049876749515533, -0.016142668202519417, -0.02762250415980816, -0.02747252956032753, -0.006217108573764563, 0.008371282368898392, 0.09576528519392014, 0.013906690292060375, -0.02942219376564026, -0.001070269849151373, 0.008739400655031204, -0.004458321258425713, -0.014165736734867096, -0.020491916686296463, 0.016115399077534676, -0.003118779743090272, 0.015665477141737938, -0.006786328740417957, 0.037875279784202576, -0.0056751566007733345, 0.0071169533766806126, -0.012468302622437477, -0.012161537073552608, -0.005194557830691338, -0.01716521941125393, -0.0055285911075770855, -0.00011663469922496006, 0.003156273392960429, 0.019401196390390396, 0.02598642371594906, -0.024091295897960663, -0.0015142272459343076, 0.028222400695085526, -0.005716058891266584, 0.01829684153199196, -0.0299402866512537, -0.01961934007704258, 0.02944946102797985, 0.03484852984547615, 0.01682436838746071, -0.023014208301901817, 0.0075805094093084335, -0.002706350991502404, 0.014056664891541004, 0.004696916323155165, -0.012107000686228275, 0.01573364809155464, 0.014342978596687317, 0.016224471852183342, -0.013804434798657894, 0.0022496117744594812, 6.80635348544456e-05, -0.009134787134826183, -0.0021746247075498104, -0.02174624614417553, 0.007894092239439487, 0.043437957763671875, -0.011084450408816338, -0.02357320301234722, 0.0009075137786567211, 0.025086577981710434, 0.010041448287665844, -0.009489270858466625, -0.012822786346077919, -0.011677529662847519, 0.03283069655299187, -0.0082622105255723, -0.013020480051636696, 0.013347695581614971, -0.018910372629761696, -0.009468819946050644, -0.02173261158168316, -0.01072314940392971, -0.019905654713511467, -0.02876776084303856, 0.011248058639466763, -0.005828539375215769, -0.004158372990787029, -0.027717942371964455, 0.014043030329048634, 0.023791348561644554, 0.006987430155277252, 0.008957544341683388, -0.014861071482300758, 0.011902490630745888, -0.021637173369526863, -0.009291578084230423, -0.020001092925667763, 0.0066977073438465595, -0.011445751413702965, -0.017765115946531296, -0.01184795517474413, 0.021214520558714867, -0.005518365651369095, -0.022809699177742004, -0.00359597010537982, 0.010832221247255802, 0.005375208333134651, 0.005402476526796818, -0.004598069936037064, -0.003930003382265568, -0.01495650876313448, -0.01981021650135517, -0.0052422769367694855, 0.017574239522218704, -0.025604670867323875, 0.007041966076940298, -0.04379244148731232, -0.006547733210027218, -0.0065443250350654125, 0.02565920725464821, -0.004666239954531193, 0.03531208634376526, 0.03692089766263962, -0.027077144011855125, -0.015747280791401863, 0.007594143506139517, -0.022796064615249634, 0.009346113540232182, 0.009209773503243923, 0.01293185818940401, 0.02420036867260933, 0.017901455983519554, 0.029858483001589775, -0.002871663309633732, -0.0029807353857904673, -0.008214491419494152, -0.0229051373898983, 0.00527636194601655, 0.00033957205596379936, -0.019046712666749954, -0.0001476307661505416, 0.013211355544626713, 0.0022615413181483746, 0.024445779621601105, 0.004673056770116091, 0.015829086303710938, 0.01832410879433155, 0.00890300888568163, -0.028004257008433342, -0.020832767710089684, 0.0025683066342025995, -0.021664442494511604, -0.0022854008711874485, -0.015556405298411846, 0.0021269056014716625, -0.018910372629761696, -0.02124178782105446, -0.0369754359126091, -0.01786055415868759, -0.0005061626434326172, -0.027077144011855125, -0.013388598337769508, -0.02009653113782406, 0.006237559486180544, 0.0015670590801164508, -0.016442615538835526, -0.03749352693557739, -0.02518201619386673, 0.001711068325676024, -0.015065581537783146, -0.03692089766263962, -0.0043356153182685375, -0.019673876464366913, 0.04362883418798447, 0.005784228909760714, 0.02418673411011696, -0.031821779906749725, 0.01004826556891203, 0.011016280390322208, -0.003156273392960429, 0.02205982804298401, -0.007498705759644508, -0.02256428636610508, -0.039320483803749084, 0.0036914083175361156, 0.025141114369034767, 0.010177788324654102, 0.018883103504776955, -0.00809178501367569, 0.0019104656530544162, 0.04202001914381981, 0.0027830423787236214, 0.0035618850961327553, -0.022196168079972267, -0.04630109667778015, -0.0152973597869277, 0.02501840889453888, -0.008603060618042946, 0.0029261994641274214, -0.009727866388857365, -0.008432635106146336, 0.059935107827186584, 0.007396450266242027, 0.004519674461334944, -0.006704524625092745, 0.021637173369526863, -0.025468330830335617, 0.016074497252702713, -0.006128487642854452, 0.04223816469311714, -0.006275053136050701, 0.030812863260507584, 0.0045128571800887585, 0.0010608964366838336, 0.00016254295769613236, 0.03075832687318325, -0.00186956359539181, -0.018883103504776955, -0.007089685183018446, -0.016933441162109375, 0.007757751736789942, -0.010777684859931469, -0.007907725870609283, 0.02830420434474945, -0.016810733824968338, -0.005664931144565344, -0.01600632816553116, -0.01046410296112299, -0.026272738352417946, -0.021228153258562088, -0.0020485101267695427, 0.010743600316345692, 0.001946254982613027, -0.014806535094976425, -0.033948685973882675, -0.0002771538565866649, -0.00392318656668067, 0.043437957763671875, 0.012495569884777069, 0.02109181322157383, 0.02681809850037098, -0.01154118962585926, -0.008780302479863167, 0.016074497252702713, 0.0018934231484308839, -0.009427918121218681, 0.022986941039562225, 0.011636627838015556, -0.00687835831195116, 0.003347149584442377, -0.007198757492005825, -0.004393559880554676, -0.0598805733025074, -0.024145832285284996, 0.011677529662847519, -0.012795518152415752, -0.0031375265680253506, -0.004448095802217722, -0.002328007249161601, -0.011336679570376873, 0.0009927264181897044, 0.0021422437857836485, 0.01944209821522236, -0.01927849091589451, -0.004615112207829952, -0.023395961150527, 0.0074578034691512585, 0.013395414687693119, 0.013920323923230171, 0.01765604317188263, -0.02013743296265602, -0.028004257008433342, -0.009502905420958996, -0.034603118896484375, -0.0063807168044149876, 0.0011827503331005573, 0.008071334101259708, -0.00841900147497654, 0.005964879412204027, 0.00027928416966460645, -0.005702424794435501, 0.0025205875281244516, 0.00982330460101366, -0.006605677772313356, 0.027895184233784676, -0.001332724466919899, 0.011091267690062523, 0.009046165272593498, 0.019237589091062546, 0.013047747313976288, 0.009162054397165775, -0.007785019930452108, -0.007062417455017567, -0.01717885211110115, 0.01086630579084158, 0.0007110988372005522, 0.010920842178165913, -0.0071646724827587605, -0.024991139769554138, -0.014574756845831871, -0.012127451598644257, -0.00212349696084857, 0.0070078810676932335, -0.013947592116892338, -0.04008398950099945, -0.005855807568877935, -0.0019598889630287886, -0.03307610750198364, 0.021350860595703125, -0.0006301468820311129, 0.014520220458507538, -0.014724730513989925, 0.03806615620851517, -0.041120175272226334, 0.017042512074112892, -0.011132169514894485, 0.01503831334412098, -0.02456848695874214, 0.013443133793771267, 0.012529655359685421, -0.007130587473511696, 0.0065443250350654125, -0.005300221499055624, -0.04796444624662399, 0.0023723177146166563, 0.01670166291296482, 0.018760398030281067, 0.01348403561860323, -0.005739918444305658, 0.01600632816553116, -0.012154719792306423, -0.0015184879302978516, -0.012740982696413994, -0.026259103789925575, 0.01961934007704258, 0.0032159220427274704, 0.007948627695441246, 0.002157582202926278, -0.0075805094093084335, 0.02077823132276535, 0.005722875706851482, 0.011173071339726448, -4.6387587644858286e-05, -0.040792956948280334, -0.0007788428338244557, -0.018705861642956734, 0.01960570737719536, -0.002963692881166935, -0.003831156762316823, -0.009932376444339752, -0.020682793110609055, -0.02223706990480423, -0.004690099507570267, 0.015433699823915958, -0.021296324208378792, 0.012788701802492142, 0.013804434798657894, -0.006029640790075064, -0.0035857446491718292, 0.0017996893730014563, -0.014724730513989925, 0.017751481384038925, -0.022973306477069855, -0.05066398158669472, -0.0286314208060503, -0.022836966440081596, 0.041801873594522476, -0.0055524506606161594, -0.0026040959637612104, 0.005327489227056503, -0.018705861642956734, -0.04125651344656944, -0.013109100982546806, -0.0015687632840126753, 0.016647126525640488, 0.047828108072280884, 0.01993292197585106, 0.012018379755318165, 0.019251221790909767, -0.007491888478398323, -0.0009433030500076711, 0.004744635429233313, -0.00012483639875426888, 0.0003915517299901694, 0.006585226859897375, 0.00011727379023795947, -0.0010370368836447597, -0.012693263590335846, -0.0014034509658813477, 0.01087994035333395, -0.017301559448242188, -0.01030731201171875, 0.002379134763032198, -0.014997411519289017, 0.004332206677645445, -0.0034511086996644735, -0.007750934921205044, 0.023627739399671555, -0.015011045150458813, 0.0019479591865092516, -0.01963297463953495, -0.0065511418506503105, -0.011643444187939167, 0.00170680764131248, -0.02778611332178116, -0.023682275786995888, -0.00018139624444302171, -0.010804953053593636, 0.00824857596307993, -0.023641373962163925, -0.01964660920202732, -0.009012080729007721, -0.009836938232183456, 0.04324708133935928, -0.003014820395037532, -0.003732310375198722, 0.024732094258069992, 0.005917160306125879, -0.02222343720495701, -0.004516265820711851, 0.01119352225214243, -0.00179798505268991, -0.024936605244874954, 0.0194693673402071, -0.025959154590964317, 0.023682275786995888, -0.003178428625687957, 0.013388598337769508, -0.010389115661382675, 0.010341396555304527, -0.005385433789342642, -0.0038481992669403553, -0.03242167457938194, 0.03122188337147236, 0.02503204345703125, -0.005917160306125879, 0.000126327620819211, -0.0012594417203217745, 0.0033829386811703444, 0.00011663469922496006, -0.015024678781628609, -0.028904100880026817, 0.0008516995585523546, 0.0006425027386285365, 0.015079215168952942, 0.030376574024558067, -0.004557168111205101, -0.019878387451171875, 0.022373409941792488, -0.03880239278078079, 0.002581940731033683, 0.1996019035577774, -0.009884657338261604, 0.015120116993784904, 0.02827693708240986, -0.004993456415832043, 0.00040412056841887534, 0.004720775876194239, 0.00980285368859768, -0.0032244434114545584, -0.008146321401000023, -0.009830120950937271, 0.011050364933907986, -0.0003071912797167897, 0.003417023690417409, -0.0009697189670987427, -0.006145529914647341, -0.03386688232421875, 0.002885297406464815, -0.018201403319835663, -0.07733210176229477, 0.016619859263300896, -0.01348403561860323, -0.010525455698370934, -0.013504487462341785, -0.002537630032747984, 0.012904590927064419, -0.008650779724121094, -0.013865788467228413, 0.03643007576465607, -0.01832410879433155, -0.033457860350608826, -0.0004797467263415456, 0.004700324963778257, -0.013559022918343544, -0.018228672444820404, 0.007723666727542877, 0.02354593575000763, 0.015651844441890717, 0.016415348276495934, -0.007041966076940298, 0.013783983886241913, -0.002125201281160116, -0.0035005321260541677, -0.01572001352906227, -0.004618520848453045, 0.03144002705812454, -0.018910372629761696, -0.018610423430800438, -0.0060944026336073875, 0.011895674280822277, -0.029040440917015076, 0.01588362269103527, 0.046028416603803635, 0.016319910064339638, 0.014779266901314259, -0.017383363097906113, 0.013961226679384708, 0.014261174947023392, 0.0035550680477172136, -0.01348403561860323, -0.011179888620972633, 0.029013173654675484, -0.013122734613716602, 0.0009143308270722628, -0.007028332445770502, 0.016974342986941338, -0.0062580108642578125, -0.0007775646517984569, 0.0235595703125, -0.02238704450428486, 0.00989147461950779, -0.012018379755318165, -0.009502905420958996, 0.0016761311562731862, -0.006694299168884754, -0.005422927439212799, 0.014056664891541004, -0.007253293413668871, 0.016265373677015305, -0.0029688056092709303, 0.035093940794467926, -0.02320508472621441, 0.01833774335682392, -0.009359748102724552, -0.01813323423266411, -0.03531208634376526, 0.016156302765011787, -0.01079813577234745, -0.028549617156386375, 0.008691681548953056, -0.008862106129527092, -0.012959126383066177, -0.004598069936037064, -0.006742017809301615, -0.00040752909262664616, -0.002960284473374486, 0.02500477433204651, 0.012318328022956848, -0.014588390477001667, 0.0007272892398759723, -0.004393559880554676, -0.030785594135522842, 0.02651814930140972, 0.007355548441410065, -0.01963297463953495, 0.004829848185181618, 0.00874621793627739, 0.017451532185077667, 0.013511303812265396, -0.013647643849253654, 0.018719496205449104, -0.016251740977168083, 0.0028154230676591396, -0.00667043961584568, 0.006673847790807486, 0.030785594135522842, -0.014111200347542763, -0.016919806599617004, 0.001571319648064673, 0.010300494730472565, 0.0011878631776198745, -0.027677040547132492, -0.00824857596307993, 0.0049150604754686356, -0.006960161961615086, -0.012107000686228275, -0.03757533058524132, 0.008528073318302631, 0.014574756845831871, -0.016606224700808525, 0.014751998707652092, -0.019223954528570175, -0.005664931144565344, 0.015051946975290775, -0.016756199300289154, 0.005671748425811529, -0.009782401844859123, -0.01900581084191799, 0.03678455948829651, -0.016960708424448967, -0.01242739986628294, 0.0026211384683847427, 0.006980613339692354, 0.010784502141177654, -0.0028154230676591396, -0.0016181865939870477, 0.01600632816553116, -0.012577374465763569, 0.0037868462968617678, -0.01446568500250578, -0.04103837162256241, -0.009768768213689327, -0.005351348780095577, 0.007941811345517635, 0.014329344965517521, -0.012570557184517384, -0.01848771795630455, -0.029204050078988075, 0.004765086341649294, 0.02195075713098049, -0.04428326338529587, 0.02047828398644924, 0.0297766774892807, -0.010982194915413857, -0.014492953196167946, -0.0016573843313381076, -0.17429718375205994, 0.00974150002002716, 0.020505551248788834, -0.010430017486214638, 0.04022033140063286, 0.031140079721808434, 0.025127479806542397, 0.007430535741150379, -0.004996864590793848, -0.002534221624955535, 0.01528372522443533, 0.008603060618042946, -0.043410688638687134, -0.04240177199244499, -0.016892539337277412, 0.018542254343628883, -0.006874949671328068, 0.015556405298411846, 0.04695552960038185, 0.012059281580150127, 0.011548006907105446, -0.005133204627782106, 0.013299976475536823, -0.006953345146030188, 0.014792900532484055, 0.018242305144667625, -0.012591008096933365, 0.011963844299316406, 0.01981021650135517, -0.017737846821546555, 0.010191422887146473, 0.008725766092538834, -0.0014298667665570974, -0.0337032712996006, 0.02439124323427677, 0.006949936505407095, 0.001993973972275853, 0.0023365283850580454, -0.015174653381109238, 0.025741010904312134, 0.025727376341819763, 0.006237559486180544, 0.02601369097828865, 0.008016797713935375, -0.012904590927064419, 0.024268537759780884, -0.004311755765229464, 0.007689581718295813, 0.017696944996714592, -0.015406431630253792, 0.017696944996714592, -0.011997928842902184, 0.008964361622929573, -5.8849927881965414e-05, 0.042265430092811584, -0.003984539303928614, 0.02958580106496811, -0.019046712666749954, -0.001782646868377924, -0.020860034972429276, -0.002420036820694804, 0.0015423473669216037, 0.014029396697878838, -0.02321871928870678, -0.0010319241555407643, -0.004765086341649294, 0.0017996893730014563, 0.02158263884484768, -0.01683800294995308, -0.0026807873509824276, -0.013681729324162006, 0.016292642802000046, 0.02406402863562107, -0.004925285931676626, -0.004713959060609341, 0.007055600173771381, -0.015597307123243809, 0.014547488652169704, -0.01798325963318348, -0.008793936111032963, -0.031140079721808434, 0.02456848695874214, -0.01751970313489437, -0.02714531496167183, 0.011309411376714706, 0.014179370366036892, 0.0029926651623100042, -0.014506586827337742, -0.012161537073552608, -0.001221096026711166, -0.003994764760136604, -0.0005952097708359361, -0.012447850778698921, -0.0158699881285429, 0.02304147742688656, 0.00625460222363472, 0.01751970313489437, -0.013449951075017452, 0.0032909091096371412, -0.017710579559206963, 0.01211381796747446, -0.01334087923169136, -0.013388598337769508, 0.021323591470718384, 0.010607260279357433, 0.012529655359685421, -0.005477463360875845, 0.01618357002735138, 0.022809699177742004, 0.008950727991759777, -0.005596761126071215, 0.007757751736789942, 0.00518774101510644, 0.002132018329575658, 0.006609086412936449, 0.04038393869996071, -0.022986941039562225, -0.01228424347937107, 0.01616993546485901, -0.0026603362057358027, 0.0667521134018898, -0.005866033025085926, -0.006472746375948191, 0.0046628313139081, -0.020246505737304688, -0.028358740732073784, -0.12150629609823227, -0.011418483220040798, 0.016115399077534676, 0.027417995035648346, 0.0030659481417387724, 0.010430017486214638, -0.009871023707091808, 0.023327792063355446, -0.0004030554264318198, 0.01176615059375763, -0.009018898010253906, -0.042919863015413284, 0.003169907256960869, 0.002789859427139163, 0.008125870488584042, -0.015092848800122738, 0.01666076108813286, -0.009005263447761536, -0.0025274045765399933, 0.03122188337147236, 0.00833038054406643, -0.011357130482792854, 0.011875222437083721, -0.02058735489845276, -0.007362365256994963, 0.017369728535413742, -0.03629373386502266, 0.008228125050663948, 0.011575274169445038, 0.016401713714003563, -0.002709759399294853, 0.0036061955615878105, -0.0033284027595072985, 0.00400158204138279, -0.013783983886241913, 0.015897255390882492, -0.03858424723148346, -0.003684591269120574, 0.012195621617138386, -0.023136915639042854, 0.015092848800122738, -0.01193657610565424, 0.012720531783998013, -0.02467755787074566, 0.004400376696139574, -0.0020672567188739777, -0.022850601002573967, -0.003151160664856434, 0.01716521941125393, -0.014901973307132721, -0.015024678781628609, 0.028167864307761192, -0.024295806884765625, -0.015474601648747921, 0.021364493295550346, 0.0005704981158487499, 0.025222918018698692, 0.006377308163791895, -0.02242794632911682, 0.010914024896919727, -0.009993729181587696, -0.002065552631393075, 0.00682723056524992, 0.02550923265516758, 0.008500805124640465, -0.0010873123537749052, -0.021800782531499863, -0.024241270497441292, 0.026081861928105354, -0.005024132784456015, -0.0072805616073310375, 0.015924524515867233, -0.027567967772483826, 0.019060345366597176, -0.02779974602162838, 0.011677529662847519, -0.012591008096933365, -0.0038175228983163834, 0.015420065261423588, -0.020573722198605537, -0.0049150604754686356, -0.01601996272802353, -0.005678565241396427, 0.0010285156313329935, 0.012120635248720646, 0.016142668202519417, 0.0004326667985878885, -0.011888856999576092, 0.0010992420138791203, -0.013729448430240154, 0.007041966076940298, 0.006121670361608267, -0.003476672573015094, -0.010089167393743992, 0.020001092925667763, 0.027254385873675346, 0.016606224700808525, 0.007873640395700932, -0.012434217147529125, 0.01783328503370285, -0.01391350757330656, -0.0020877078641206026, -0.049164239317178726, 0.029313120990991592, -0.009673330001533031, 0.001508262357674539, -0.0056444802321493626, -0.016892539337277412, 0.012413766235113144, -0.016892539337277412, -0.023477764800190926, 0.02373681217432022, -0.005133204627782106, 0.021050911396741867, -0.01863769255578518, -0.015065581537783146, -0.013490852899849415, 0.001913874177262187, -0.004424236249178648, 0.0038447908591479063, -0.008357647806406021, -0.0032022881787270308, 0.0065681845881044865, -0.019687511026859283, 0.02015106752514839, -0.0022257522214204073, -0.019755680114030838, 0.009127969853579998, 0.004894609563052654, 0.01717885211110115, 0.009959644638001919, -0.03659368306398392, 0.02583644911646843, -0.027445262297987938, 0.008637145161628723, 0.014765633270144463, 0.0037289017345756292, 0.025304723531007767, -0.014438416808843613, -0.0055456338450312614, 0.02958580106496811, 0.046710118651390076, -0.009005263447761536, -0.0014699166640639305, 0.004690099507570267, -0.025563769042491913, 0.014193004928529263, 0.02205982804298401, -0.013150002807378769, 0.004410602152347565, 0.010654978454113007, 0.0032380775082856417, 0.005245685577392578, 0.0279769878834486, -0.010839037597179413, -0.010273226536810398, -0.011009463109076023, -0.029394926503300667, 0.0235595703125, -0.00034085026709362864, 0.004843482282012701, -0.046546511352062225, 0.02242794632911682, -0.01978294923901558, 0.01600632816553116, 0.002728506224229932, 0.01382488664239645, -0.026599952951073647, -0.010634527541697025, -0.009516539052128792, -0.012775067239999771, -0.013477219268679619, 0.0050786687061190605, -0.023027842864394188, 0.0071646724827587605, 0.011350313201546669, 0.006571592763066292, 0.0016241514822468162, -0.002972214249894023, 0.012236524373292923, -0.03356693312525749, 0.0122706089168787, -0.007048783358186483, -0.011588908731937408, -0.037875279784202576, -0.006724975537508726, 0.030349306762218475, -0.004383334424346685, 0.0006395202944986522, 0.009087068028748035, -0.005893300753086805, 0.00662953732535243, 0.019196685403585434, -0.013286342844367027, -0.0007784167537465692, -0.01786055415868759, 0.011950209736824036, 0.016306275501847267, -0.01832410879433155, -0.011977477930486202, 0.0346849225461483, 0.01637444645166397, -0.006275053136050701, -0.009993729181587696, 0.004100428428500891, -0.024145832285284996, -0.0008133539231494069, -0.0035005321260541677, -0.028222400695085526, -0.030540183186531067, -0.0111253522336483, 0.02015106752514839, 0.010654978454113007, 0.0008751330315135419, 0.018569521605968475, 0.016756199300289154, -0.008930277079343796, 0.017124317586421967, 0.013286342844367027, -0.00638412544503808, -0.015992693603038788, 0.04172006994485855, -4.327200429088407e-07, 0.031794510781764984, 0.021978024393320084, 0.008521256037056446, 0.0206146240234375, 0.012379680760204792, 0.019183052703738213, 0.010668613016605377, 0.01348403561860323, -0.01145938504487276, 0.00042393250623717904, -0.013886239379644394, -0.03553023189306259, 0.013715813867747784, 0.005238868296146393, -0.03962043300271034, 0.007757751736789942, 0.011977477930486202, -0.01686527021229267, 0.03258528560400009, 0.011738882400095463, -0.014765633270144463, 0.0006292947800830007, -0.0031852456741034985, 0.026218201965093613, 0.017792383208870888, 0.016415348276495934, 0.015488235279917717, -0.02336869388818741, 0.00687835831195116, -0.02373681217432022, 0.04041120782494545, -0.015624575316905975, -0.02582281455397606, 0.013627192936837673, -1.2462337508623023e-05, 0.03373054042458534, -0.025113847106695175, -0.014015762135386467, 0.045401252806186676, -0.0029534674249589443, 0.02830420434474945, -0.004840073641389608, -0.014861071482300758, 0.004468546714633703, 0.029067710041999817, 0.007982713170349598, 0.009346113540232182, -0.0363210029900074, -0.006643171422183514, 0.015501869842410088, -0.023804981261491776, -0.015201921574771404, 0.025972789153456688, -0.0033198813907802105, -0.0004004990332759917, -0.020669158548116684, 0.013702180236577988, 0.0010395932476967573, -0.013661278411746025, 0.017383363097906113, -0.02420036867260933, -0.035557497292757034, 0.0152155552059412, -0.005743326619267464, -0.017137950286269188, 0.006612495053559542, -0.03236714005470276], "743f653f-7bc9-4e47-8a7b-ee3da4505e28": [0.016276715323328972, -0.00823011714965105, -0.0052373469807207584, 0.00772191071882844, -0.005078532733023167, 0.012267532758414745, -0.013975669629871845, -0.025607945397496223, -0.010277057997882366, -0.02423861250281334, 0.014737979508936405, 0.007129003293812275, 0.0289112851023674, 0.008046598173677921, -0.0035574433859437704, -0.005318518728017807, 0.04161643981933594, -0.002361041260883212, 0.02347630262374878, -0.011731092818081379, 0.0007530450820922852, -0.0032045224215835333, 0.012768680229783058, 0.017758982256054878, -0.0075313332490623, 0.029306557029485703, 0.009324171580374241, -0.016982557252049446, 0.010397051461040974, -0.007093711290508509, -0.005925543140619993, -0.017603697255253792, -0.015288536436855793, 0.002611615229398012, -0.029899463057518005, -0.004217405337840319, 0.006137295626103878, -0.005999656394124031, 0.018394241109490395, -0.011293470859527588, 0.008406577631831169, -0.0029663005843758583, -0.006289051380008459, 0.008865374140441418, -0.03371100872755051, 0.006116120144724846, -0.016897855326533318, -0.0289112851023674, -0.036844950169324875, 0.009571216069161892, 0.036252040416002274, 0.0029292439576238394, -0.03611087426543236, 0.013566281646490097, -0.015796741470694542, 0.008399519138038158, 0.005699673667550087, 0.020483532920479774, 0.016474351286888123, -0.00691725080832839, 0.011526398360729218, 0.0076866187155246735, -0.014356824569404125, 0.0012466933112591505, -0.024831518530845642, -0.011237003840506077, -0.016686102375388145, -0.024873869493603706, -0.019156549125909805, -0.00713253254070878, 0.034190982580184937, 0.028459547087550163, -0.007679560221731663, -0.015839092433452606, 0.017264893278479576, -0.02604556642472744, -0.022883394733071327, 0.005816137418150902, 0.006610209587961435, 0.016968440264463425, 0.0090841855853796, -0.022417539730668068, -0.007270171772688627, 0.0321299247443676, 0.033400438725948334, -0.02529737539589405, -0.004266814328730106, 0.014116838574409485, -0.01173815131187439, -0.03125467896461487, 0.022855160757899284, 0.020102377980947495, 0.008251291699707508, 0.01007942296564579, -0.014363883063197136, 0.02662435732781887, -0.03870837017893791, 0.023504536598920822, -0.01007942296564579, -0.023716287687420845, -0.013559223152697086, -0.015726158395409584, -0.009733560495078564, -0.012323999777436256, -0.02831837721168995, 0.01155463233590126, 0.004856192506849766, 0.011695800349116325, 0.020187079906463623, -0.00021252459555398673, -0.004880896769464016, 0.017053140327334404, -0.022375188767910004, -0.037042584270238876, -0.007383106742054224, -0.005547917447984219, 0.04209641367197037, -0.0007711322978138924, -0.01702490635216236, -0.020088260993361473, 0.0025322078727185726, 0.025509126484394073, -0.013192185200750828, -0.007030185777693987, 0.02577734738588333, 0.02149994485080242, 0.009910020977258682, -0.03565913438796997, -0.013940378092229366, -0.029137155041098595, 0.03670378029346466, 0.01919890008866787, 0.03932951018214226, 0.001912831561639905, 0.009945312514901161, 0.029250089079141617, -0.029645361006259918, -0.0006140824989415705, -0.01636141538619995, -0.02919362112879753, 0.02689257636666298, 0.00658197607845068, 0.00048526632599532604, -0.03546149656176567, -0.00765132624655962, 0.013721566647291183, 0.007270171772688627, 0.02272810973227024, -0.015584989450871944, 0.008766557089984417, 0.03258166462182999, -0.010241766460239887, 0.008427752181887627, -0.024775050580501556, 0.015189718455076218, 0.0019216546788811684, 0.01344628818333149, -0.0016384355258196592, 0.00784190371632576, -0.01254986971616745, 0.0024439776316285133, 0.027923107147216797, 0.009754735045135021, -0.017928384244441986, 0.00870303064584732, 0.035207394510507584, 0.012655745260417461, -0.015359120443463326, -0.019071849063038826, -0.01221106480807066, 0.009811202995479107, 0.012796914204955101, -0.03289223462343216, 0.0090841855853796, -0.015217951498925686, 0.014512109570205212, 0.024944454431533813, 0.030181800946593285, -0.004499742295593023, 0.001255516312085092, -0.03162171691656113, 0.0028568950947374105, 0.02452094852924347, 0.03071824088692665, -0.015373237431049347, -0.006430219858884811, -0.014610927551984787, -0.016883738338947296, 0.010531161911785603, 0.007083123549818993, 0.012140480801463127, 0.01259221974760294, -0.0327228307723999, -0.020935270935297012, -0.6261100172996521, -0.02529737539589405, 0.007863079197704792, -0.0057173194363713264, 0.012458110228180885, -0.0026892577297985554, 0.016559051349759102, -0.006352577358484268, 0.012719271704554558, 0.002350453520193696, -0.016671985387802124, 0.012232240289449692, 0.005996127147227526, -0.015486171469092369, -0.04040239006280899, -0.0013666864251717925, -0.0032521665561944246, -0.02765488624572754, -0.0017619578866288066, -0.017603697255253792, -0.011258178390562534, 0.0070690070278942585, -0.0026469072327017784, -0.002378687262535095, -0.004838546272367239, 0.000992590212263167, 0.01578262448310852, -0.014286240562796593, 0.015189718455076218, 0.034275684505701065, -0.03148055076599121, 0.012281649746000767, 0.011286412365734577, 0.014060371555387974, 0.04867485910654068, -0.007136061787605286, -0.006066711153835058, 0.024365663528442383, 0.010206473991274834, 0.026102034375071526, -0.040938831865787506, -0.01671433635056019, 0.00989590398967266, 0.0010808204533532262, -0.003740962129086256, -0.0010737620759755373, 0.039414212107658386, -0.0038821306079626083, 0.006052594631910324, 0.007086652796715498, 0.0177730992436409, -0.003208051435649395, -0.004478566814213991, 0.002398097887635231, -0.011851086281239986, 0.011653450317680836, 0.03772019222378731, -0.009973546490073204, 0.014596810564398766, 0.013156893663108349, 0.0009970017708837986, 0.019523587077856064, -0.0027316082268953323, -0.013460405170917511, -0.016813155263662338, 0.029250089079141617, 0.005837312899529934, 0.01358745712786913, 0.013876852579414845, -0.03162171691656113, 0.018676577135920525, 0.013629807159304619, -0.007291347254067659, -0.007270171772688627, 0.007961897179484367, 0.009119478054344654, 0.03148055076599121, -0.018860096111893654, -0.003331573912873864, 0.007623092737048864, -0.0013013960560783744, -0.024760935455560684, -0.035800300538539886, -0.011695800349116325, 0.02632790431380272, -0.007291347254067659, -0.01596614345908165, 0.012295766733586788, 0.02226225472986698, 0.003478036029264331, 0.005064415745437145, -0.005360869225114584, -0.004019769839942455, 0.011660508811473846, 0.02024354599416256, 0.018224839121103287, -0.0013658041134476662, -0.011702858842909336, 0.013291003182530403, -0.00993825402110815, 0.008067772723734379, -0.00101023621391505, 0.01302278321236372, -0.050143010914325714, 0.021937567740678787, -0.009472399018704891, -0.03709905222058296, -0.005329106468707323, 0.037889596074819565, -0.014180364087224007, -0.005678498186171055, -0.01235929224640131, -0.020031793043017387, -0.011484048329293728, 0.004030357580631971, -0.017660165205597878, 0.0002997622359544039, -0.005406748969107866, 0.020751751959323883, -0.026214968413114548, 0.023518653586506844, 0.012945140711963177, 0.007425457239151001, -0.012133422307670116, 0.024944454431533813, 0.03314633667469025, 0.0027721941005438566, -0.013248653151094913, -0.016587285324931145, -0.010185298509895802, -0.0010517045157030225, -0.012006371282041073, 0.005089120473712683, -0.009832377545535564, -0.006737261079251766, -0.03718375414609909, 0.005269109737128019, 0.007990130223333836, 0.01626259833574295, -0.023546885699033737, 2.0954681531293318e-05, 0.0016719630220904946, 0.0005673204432241619, -0.004746786784380674, -0.02481740154325962, -0.04133410379290581, -0.030266501009464264, 0.00912653561681509, -0.008371285162866116, 0.020991738885641098, 0.0008333346340805292, 0.01636141538619995, -0.02062470093369484, 0.0011566984467208385, 0.01406742911785841, -0.019932975992560387, -0.02821956016123295, -0.011279353871941566, -0.0086889136582613, -0.0025992628652602434, -0.0015846150927245617, 0.026751408353447914, -0.02624320238828659, -0.011822852306067944, 0.020864687860012054, -0.019749457016587257, 0.005833783652633429, 0.027019629254937172, 0.007446632254868746, -0.033231038600206375, 0.003928010351955891, -0.031226446852087975, 0.004933835007250309, 0.035037994384765625, -0.007005481049418449, 0.011434638872742653, -0.010389992967247963, -0.022177552804350853, -0.014893264509737492, 0.009175945073366165, -0.011328762397170067, 0.018591877073049545, -0.0022128145210444927, -0.00386095535941422, 0.026356138288974762, -0.010947608388960361, -0.001480503473430872, 0.01931183412671089, 0.014272123575210571, 0.018111903220415115, 0.010587628930807114, -0.0024122148752212524, -0.01117347739636898, 0.00262573198415339, 0.008710089139640331, -0.003559208009392023, 0.021655229851603508, 0.015090900473296642, 0.012860439717769623, 0.027993690222501755, -0.005473804194480181, 0.007877196185290813, 0.003405687166377902, -0.018605992197990417, 0.008964192122220993, -0.018478941172361374, -0.012105189263820648, -0.021161140874028206, 0.015345003455877304, -0.0210905559360981, 0.02195168286561966, -0.021147023886442184, 0.0074113402515649796, -0.02490210346877575, 0.019735340029001236, 0.03517916053533554, 0.010171182453632355, 0.004849134013056755, -0.008752440102398396, -0.003585676895454526, 0.007757202722132206, -0.018690694123506546, -0.012846322730183601, -0.008724206127226353, -0.010891140438616276, 0.015839092433452606, 0.026454955339431763, 0.043790433555841446, 0.022205786779522896, -0.018605992197990417, 0.02090703696012497, -0.019170666113495827, -0.021626995876431465, 0.007234879769384861, 0.0325251966714859, -0.0071113575249910355, 0.02168346382677555, -0.011829910799860954, 0.016784921288490295, -0.015754392370581627, -0.007467807736247778, 0.0036015585064888, 0.010206473991274834, -0.026751408353447914, -0.014667395502328873, 0.023349251598119736, 0.020384714007377625, 0.008766557089984417, 0.00015473378880415112, 0.025734996423125267, -0.007503099739551544, 0.004157409071922302, -0.009204179048538208, 0.0035345035139471292, 0.01795661821961403, -0.04915483295917511, -0.003938598092645407, 0.020582349970936775, 0.014568577520549297, 0.01778721623122692, 0.007870137691497803, -0.01891656406223774, 0.002657494740560651, 0.010806439444422722, 0.04808195307850838, 0.005120883230119944, -0.0010287646437063813, 0.010721738450229168, -0.006049065385013819, -0.02281281165778637, -0.03108527883887291, -0.0229963306337595, 0.005449099466204643, -0.016615519300103188, 0.020709402859210968, 0.004817371256649494, 0.00969826802611351, 0.0003696847124956548, 0.02679375931620598, -0.00784896221011877, -0.010001780465245247, -0.030210034921765327, 0.029786529019474983, -0.01941065303981304, 0.008801848627626896, -0.03224286064505577, -0.0218810997903347, -0.0021510531660169363, -0.02747136726975441, 0.0309158768504858, -0.0027492542285472155, 0.022939862683415413, -0.006518450099974871, -0.008392460644245148, -0.016389649361371994, 0.02766900323331356, 0.026765525341033936, -0.03371100872755051, 0.022022267803549767, -0.010827614925801754, 7.995865598786622e-05, 0.018408358097076416, -0.026285553351044655, 0.019890625029802322, 0.0161637794226408, -0.01633318141102791, -0.010241766460239887, -0.01739194430410862, -0.009055951610207558, -0.011194652877748013, -0.00465502729639411, -0.024168027564883232, -0.01586732640862465, -0.006130237132310867, -0.0006418750272132456, -0.0035980292595922947, -0.026299670338630676, 0.0033245154190808535, 0.023913923650979996, -0.00988884549587965, -0.008321876637637615, -0.037607256323099136, -0.012888673692941666, 0.009980604983866215, 0.09537336230278015, 0.029334791004657745, -0.016036728397011757, -0.007608975749462843, 0.013142776675522327, 0.001102878013625741, -0.014596810564398766, -0.025156205520033836, 0.024789167568087578, -0.01654493436217308, 0.00823011714965105, 0.006716086063534021, 0.01468151155859232, 0.01576850935816765, 0.02889716811478138, -0.009154769591987133, -0.018662460148334503, -0.009147711098194122, -0.032271090894937515, 0.0026345548685640097, 0.0015996142756193876, -0.009634742513298988, 0.010538219474256039, 0.026878461241722107, -0.02757018618285656, -0.002560441615059972, 0.013178069144487381, 0.011724034324288368, 0.00950063206255436, -0.0325251966714859, -0.006807845551520586, 0.013192185200750828, 0.03125467896461487, 0.030577072873711586, -0.010855848900973797, 0.018083669245243073, 0.002987475832924247, 0.0080818897113204, 0.008639505133032799, 0.0057702576741576195, 0.02783840522170067, 0.0063455188646912575, 0.016008494421839714, -0.012994550168514252, 0.009662975557148457, -0.0038327216170728207, -0.004831487778574228, 0.0024316255003213882, -0.0264126043766737, 0.006289051380008459, 0.04571032151579857, -0.013248653151094913, -0.02329278364777565, -0.00046100301551632583, 0.030266501009464264, 0.0012837500544264913, -0.020116494968533516, 0.0002984387974720448, -0.010524103417992592, 0.021514061838388443, -0.01283926423639059, -0.009782969020307064, 0.012020488269627094, -0.023518653586506844, -0.023052796721458435, -0.0214858278632164, -0.009041834622621536, -0.009472399018704891, -0.027626652270555496, 0.020935270935297012, 0.001978121930733323, -0.018182488158345222, -0.03128291293978691, 0.009853553026914597, 0.0014443290419876575, 0.005565563682466745, 0.019283602014183998, -0.020892921835184097, 0.010037072002887726, -0.014201539568603039, 0.003525680396705866, -0.03032296895980835, 0.010058247484266758, -0.01758958026766777, -0.0016084372764453292, -0.016107313334941864, 0.02556559443473816, -0.007905429229140282, -0.029871230944991112, -0.0007936310139484704, 0.013255711644887924, 0.017166076228022575, 0.003928010351955891, 0.008978309109807014, -0.004072708077728748, -0.01317101065069437, -0.022092852741479874, 0.001710784388706088, 0.009740618988871574, -0.012867498211562634, -0.01055939495563507, -0.037522558122873306, -0.010517044924199581, -0.00045526804751716554, 0.017448412254452705, -0.010192357003688812, 0.024492714554071426, 0.028967753052711487, -0.016573168337345123, -0.005420865956693888, 0.010495869442820549, -0.0032045224215835333, -0.011752268299460411, 0.00608788663521409, 0.027330199256539345, 0.018761279061436653, 0.01221812330186367, 0.02689257636666298, -0.012415759265422821, 0.006896075792610645, -0.014949731528759003, -0.010968783870339394, -0.0004654145159292966, 0.007097240537405014, -0.03032296895980835, 0.004782079253345728, 0.009288880042731762, -0.011639333330094814, 0.0177730992436409, -0.00988884549587965, 0.002523384988307953, 0.022699875757098198, 0.023151615634560585, -0.019509470090270042, -0.0177730992436409, 0.005103236995637417, -0.01874716207385063, 0.0007940721698105335, -0.005434982944279909, 0.0005611443193629384, -0.021316425874829292, -0.018902447074651718, -0.019354185089468956, -0.016093196347355843, -0.008251291699707508, -0.024845635518431664, -0.02642672136425972, 0.005082061979919672, -0.003793900366872549, -0.000398800679249689, -0.01805543713271618, -0.029984164983034134, -0.017448412254452705, 0.0026645532343536615, -0.008145416155457497, -0.027612535282969475, -0.005604384932667017, -0.0029468899592757225, 0.032073456794023514, 0.015090900473296642, 0.02634202130138874, -0.02662435732781887, 0.007573683746159077, 0.015189718455076218, -0.005720848683267832, 0.015147367492318153, -0.00041049119317904115, -0.007771319709718227, -0.03441685065627098, -0.005311460699886084, 0.016686102375388145, 0.011420521885156631, 0.017222542315721512, 0.004182113334536552, 0.002722785109654069, 0.025438543409109116, -0.0031921700574457645, -0.007510158233344555, -0.01891656406223774, -0.039781250059604645, -0.0069207800552248955, 0.01691197231411934, -0.006218467373400927, 0.006553742103278637, -0.021697580814361572, -0.00423152232542634, 0.05389808863401413, 0.015528522431850433, -0.0008770085987634957, -0.011688741855323315, 0.031311146914958954, -0.016968440264463425, -0.015726158395409584, -0.00927476305514574, 0.041221167892217636, 0.011688741855323315, 0.019947092980146408, 0.001723136636428535, -0.0037727251183241606, -0.008406577631831169, 0.019707106053829193, -0.012627512216567993, 0.0038574261125177145, -0.010566453449428082, -0.014123897068202496, 0.01843659020960331, -0.004309164825826883, -0.00515617523342371, 0.023645704612135887, -0.021824631839990616, -0.0160649623721838, -0.010989958420395851, -0.0020222370512783527, -0.02045529894530773, -0.018507175147533417, -0.005184408742934465, -0.001990474294871092, 0.0058655464090406895, -0.013820384629070759, -0.011109951883554459, 0.00823011714965105, 0.0020945859141647816, 0.0570320263504982, 0.025212673470377922, 0.030153566971421242, 0.027626652270555496, -0.006941955536603928, -0.006701969075948, 0.007616034243255854, 0.0036597903817892075, -0.03486859053373337, 0.012895732186734676, 0.021796397864818573, -0.007432515267282724, -0.0024104502517729998, -0.022756343707442284, -0.00803953967988491, -0.057173196226358414, -0.028840700164437294, 0.02632790431380272, 0.0007380459574051201, -0.0025974982418119907, -0.025410309433937073, -0.015726158395409584, -0.03286400064826012, 0.009345347061753273, -0.011540515348315239, 0.014582694508135319, -0.022121086716651917, -0.013573340140283108, -0.021556412801146507, 0.006380810867995024, 0.02614438533782959, 0.01986239105463028, 0.0329204685986042, -0.019382419064641, -0.022389305755496025, 0.0017901916289702058, -0.032468728721141815, -0.013079251162707806, -0.009006543084979057, 0.018874213099479675, -0.022276371717453003, 0.00629610987380147, -0.001988709671422839, 0.004171525593847036, -0.010446460917592049, 0.008667739108204842, 0.004806783515959978, 0.03167818486690521, 0.0005320283235050738, 0.017434295266866684, 0.0053961616940796375, 0.028544247150421143, 0.010714679956436157, 0.005106766242533922, 0.008611271157860756, 0.006776082329452038, -0.007771319709718227, 0.006225525867193937, 0.0048632510006427765, 0.0077430857345461845, -0.009394755586981773, -0.013248653151094913, -0.02766900323331356, -0.017095491290092468, 0.00036042052670381963, -0.007312522269785404, -0.016177896410226822, -0.035433266311883926, 0.005600855685770512, -0.004700907040387392, -0.010622921399772167, 0.016107313334941864, 0.010375875979661942, 0.009041834622621536, -0.01178050134330988, 0.02776782214641571, -0.04192700982093811, 0.023928040638566017, -0.007460749242454767, 0.017900150269269943, -0.010382934473454952, 0.015528522431850433, 0.015161484479904175, -0.02261517569422722, 0.001858128816820681, -0.011505222879350185, -0.03486859053373337, 0.0002708668471314013, 0.02368805557489395, 0.023716287687420845, -0.0040550618432462215, 0.00580202043056488, 0.018478941172361374, -0.014335649088025093, 0.010248824954032898, -0.009359464049339294, -0.010135889984667301, 0.017631931230425835, 0.0006740790558978915, 0.01173815131187439, 0.009401814080774784, -0.01672845333814621, 0.006553742103278637, 0.0007490747375413775, 0.005463216453790665, -0.00772896921262145, -0.038849540054798126, 0.006179646123200655, -0.008399519138038158, 0.01691197231411934, -0.002620438113808632, -0.01468151155859232, -0.019453004002571106, -0.01576850935816765, -0.016036728397011757, 0.0027069037314504385, 0.0050150067545473576, -0.034078046679496765, 0.0037303746212273836, 0.019241251051425934, 0.005837312899529934, -0.009677092544734478, -0.006941955536603928, 0.006289051380008459, 0.03489682450890541, -0.02967359498143196, -0.05502743646502495, -0.026299670338630676, -0.033993348479270935, 0.03868013620376587, -0.009662975557148457, 0.000730105210095644, 0.0036033231299370527, -0.027316082268953323, -0.03563090041279793, -0.0013490404235199094, -0.010665271431207657, 0.016700219362974167, 0.04788431525230408, 0.009599450044333935, 0.021909333765506744, 0.02367393858730793, -0.014272123575210571, -0.0008337757899425924, -0.0077430857345461845, -0.01320630218833685, -0.006754907313734293, 0.007061948534101248, 0.011025250889360905, 0.01197107881307602, -0.01958005502820015, 0.0030721770599484444, 0.014123897068202496, -0.0107429139316082, -0.02632790431380272, 0.0022869277745485306, 0.009486515074968338, 0.00946534052491188, 0.010291174985468388, -0.0037127286195755005, 0.024365663528442383, -0.0150626664981246, 0.0180695541203022, -0.020892921835184097, -0.003889189101755619, -0.004065649583935738, 0.0004698260163422674, -0.023631587624549866, -0.029617127031087875, 0.00789131224155426, -0.0004111529269721359, 0.023222198709845543, -0.040458858013153076, -0.02452094852924347, -0.01396861206740141, -0.021034089848399162, 0.0498042069375515, 0.006003185641020536, -0.003285694168880582, 0.03986595198512077, 0.008385402150452137, -0.023504536598920822, -0.010665271431207657, 0.011371113359928131, 0.006790199317038059, -0.029391257092356682, 0.017730748280882835, -0.032751064747571945, 0.007524274755269289, -3.5016375477425754e-05, 0.022502239793539047, -0.010277057997882366, 0.005512625444680452, -0.0033421614207327366, -0.0013296296820044518, -0.03402158245444298, 0.023702172562479973, 0.0154579384252429, -0.02062470093369484, 0.007383106742054224, 0.012048721313476562, -0.004704436287283897, 0.018944798037409782, -0.020582349970936775, -0.0363367423415184, -0.0031321735586971045, 0.0027492542285472155, 0.010877024382352829, 0.015810858458280563, -0.00012120629253331572, -0.027499601244926453, 0.01614966243505478, -0.034190982580184937, -0.0037727251183241606, 0.185551717877388, -0.014822680503129959, 0.009119478054344654, 0.032468728721141815, -0.007164295297116041, 0.007877196185290813, 0.010015896521508694, 0.008434810675680637, -0.012098130770027637, 0.005784374661743641, -0.01526030246168375, 0.016036728397011757, -0.002583381487056613, -0.0008986250031739473, 0.016206130385398865, -0.021274074912071228, -0.04288695380091667, 0.0004230639897286892, -0.017222542315721512, -0.07244761288166046, 0.009973546490073204, -0.017730748280882835, -0.014780329540371895, -0.0031639363151043653, 0.0017399003263562918, 0.008441869169473648, -0.006324343848973513, -0.0012987491209059954, 0.018648343160748482, -0.011688741855323315, -0.031113512814044952, 0.000278807565337047, 0.011342879384756088, 0.008251291699707508, -0.01778721623122692, 0.005734965670853853, 0.020991738885641098, 0.022036384791135788, 0.019565938040614128, 0.0021598762832581997, -0.0029239500872790813, -0.012429876253008842, -0.0003831398207694292, 0.0054385121911764145, -0.02766900323331356, 0.031113512814044952, -0.016784921288490295, -0.03156524896621704, -0.011512281373143196, 0.02281281165778637, -0.040261223912239075, 0.016770804300904274, 0.04201171174645424, 0.017363712191581726, 0.01178755983710289, -0.011540515348315239, 0.009754735045135021, 0.004365632310509682, 0.0033915704116225243, 0.013135718181729317, -0.0010375876445323229, 0.016855504363775253, 0.0018475411925464869, 0.010898198932409286, -0.010721738450229168, 0.009091244079172611, -0.011102893389761448, 0.0031939346808940172, 0.032073456794023514, -0.01662963628768921, 0.0070160687901079655, -0.026680825278162956, -0.01729312725365162, -0.003998594358563423, -0.02045529894530773, -0.015895560383796692, 0.029306557029485703, -0.005572622176259756, 0.011540515348315239, 0.016587285324931145, 0.015105017460882664, -0.018408358097076416, 0.02975829504430294, 0.0060137733817100525, -0.014003903605043888, -0.02556559443473816, 0.010474693961441517, -0.011844027787446976, -0.026850227266550064, 0.010157065466046333, 0.0010305291507393122, -0.011201711371541023, -0.0005390867590904236, -0.00022355337569024414, -0.0004786490462720394, 0.00030571778188459575, 0.033908646553754807, 0.012768680229783058, 0.008533628657460213, -0.015345003455877304, -0.016135545447468758, -0.032355792820453644, 0.013672158122062683, -0.013848618604242802, -0.02793722413480282, -0.0025375017430633307, 0.015909677371382713, 0.02168346382677555, 0.01569792442023754, -0.012952199205756187, 0.03376747667789459, -0.006490216590464115, -0.006211408879607916, -0.01578262448310852, 0.007976014167070389, 0.026836110278964043, -0.019227134063839912, -0.019932975992560387, -0.0037268453743308783, -0.008533628657460213, 0.004333869554102421, -0.0363367423415184, -0.01487914752215147, -0.011709917336702347, -0.008561862632632256, -0.0150626664981246, -0.0429716557264328, -0.0016772568924352527, -0.0028692474588751793, -0.017321361228823662, 0.008879491128027439, -0.043310459703207016, -0.00596789363771677, 0.018987147137522697, -0.022205786779522896, -0.007820728234946728, -0.012034604325890541, -0.015796741470694542, 0.03690141439437866, -0.005650264676660299, -0.008554804138839245, 0.012239298783242702, 0.008350109681487083, 0.006553742103278637, -0.002883364213630557, -0.0011999312555417418, 0.020271779969334602, -0.0033721597865223885, 0.010841731913387775, -0.011533456854522228, -0.04057179391384125, 0.0034974466543644667, 0.006454924587160349, 0.002482798881828785, 0.022883394733071327, -0.010495869442820549, -0.014582694508135319, -0.037607256323099136, 0.01160404086112976, 0.018422475084662437, -0.04779961332678795, 0.019636522978544235, 0.03201698884367943, -0.001027882331982255, -0.012945140711963177, -0.006102003622800112, -0.18182487785816193, 0.017702516168355942, 0.014554460532963276, -0.009853553026914597, 0.039216578006744385, 0.038087230175733566, 0.01749076321721077, 0.006102003622800112, -0.0037480206228792667, 0.0014416821068152785, 0.011964020319283009, 0.005046769976615906, -0.047771383076906204, -0.028967753052711487, -0.005946718156337738, 0.012323999777436256, -0.00444680405780673, 0.006521979346871376, 0.03308986872434616, 0.014723862521350384, 0.007044302299618721, -0.008159532211720943, 0.0068784295581281185, 0.014081546105444431, 0.004831487778574228, 0.043028123676776886, -0.022078735753893852, -0.010340584442019463, 0.018295422196388245, -0.011095834895968437, -0.0033121632877737284, 0.02007414400577545, -0.014554460532963276, -0.011491106823086739, 0.022304603829979897, 0.003691553371027112, -0.006666677072644234, 0.002673376351594925, -0.01949535310268402, 0.023546885699033737, 0.01863422617316246, 0.011187594383955002, 0.026299670338630676, -0.02195168286561966, -0.016502583399415016, 0.012429876253008842, -0.0026592593640089035, 0.007630151230841875, 0.005851429421454668, -0.02461976557970047, 0.004249168559908867, -0.009493573568761349, 0.02243165671825409, 0.009415931068360806, 0.04088236391544342, -0.00627140561118722, 0.02622908540070057, -0.004023299086838961, -0.005547917447984219, -0.012338116765022278, 0.003878601361066103, -0.014166247099637985, 0.008717147633433342, -0.010495869442820549, -0.023024562746286392, -0.024944454431533813, -0.016799038276076317, 0.013700392097234726, -0.009020660072565079, 0.01862010918557644, -0.004171525593847036, 0.019636522978544235, 0.024309195578098297, -0.0032998109236359596, -0.012288708239793777, 0.00011183183232787997, -0.018323656171560287, 0.018591877073049545, -0.01130758784711361, 0.0028851288370788097, -0.016488466411828995, 0.031057044863700867, -0.01921301707625389, -0.022657524794340134, 0.02195168286561966, -0.0016287302132695913, 0.015076783485710621, -0.009994721971452236, 0.006161999888718128, 0.008357168175280094, 0.018478941172361374, -0.008364226669073105, -0.0025745583698153496, -0.028572481125593185, 0.025438543409109116, 0.018605992197990417, 0.017758982256054878, -0.018281305208802223, -0.0014946202281862497, -0.01691197231411934, -0.0034798006527125835, -0.022756343707442284, -0.02062470093369484, 0.043875135481357574, 0.012761621735990047, 0.020003560930490494, -0.01259221974760294, 0.022699875757098198, 0.022022267803549767, 0.012309882789850235, -0.022459890693426132, 0.017039023339748383, 0.01178050134330988, 0.013538047671318054, 0.006959601305425167, 0.037409622222185135, -0.0038044878747314215, -0.027061980217695236, 0.01921301707625389, -0.007679560221731663, 0.05505567044019699, -0.013883911073207855, 0.007488982751965523, 0.001228164997883141, -0.007114886771887541, -0.03831309825181961, -0.1212918758392334, -0.00741839874535799, -0.0024916219990700483, 0.010721738450229168, -0.012020488269627094, 0.009063010104000568, 0.0026416133623570204, 0.02443624660372734, 0.005636147689074278, 0.003458625404164195, -0.001875774934887886, -0.02908068709075451, 0.0063455188646912575, -0.003878601361066103, 0.012225181795656681, -0.005904367659240961, 0.0069631305523216724, -0.010834673419594765, 0.012309882789850235, 0.033315740525722504, 0.007383106742054224, -0.009415931068360806, 0.016502583399415016, -0.011025250889360905, -0.009994721971452236, 0.023448068648576736, -0.026807876303792, 0.010629978962242603, 0.012260474264621735, 0.013333354145288467, -0.011102893389761448, -0.006539625581353903, 0.003243343671783805, -0.0025869107339531183, -0.010806439444422722, 0.007806611713021994, -0.04554092139005661, -0.00841363612562418, 0.025904398411512375, -0.013686275109648705, 0.011851086281239986, -0.01235929224640131, 0.01682727225124836, -0.0080818897113204, 0.023349251598119736, -0.01027000043541193, -0.030859408900141716, -0.003620969131588936, 0.024831518530845642, -0.024280961602926254, -0.015232068486511707, 0.012479284778237343, -0.02803604118525982, -0.01710960827767849, 0.046359699219465256, -0.009401814080774784, 0.012013429775834084, 0.02365982159972191, -0.024111559614539146, 0.0074113402515649796, 0.005883192643523216, 0.006839608307927847, 0.008526570163667202, 0.005713790189474821, 0.009204179048538208, -0.008357168175280094, -0.029052453115582466, -0.02100585587322712, 0.03221462666988373, -0.007174883037805557, -0.009684151038527489, 0.010135889984667301, -0.02159876376390457, -0.009338288567960262, -0.02786663919687271, -0.0033968642819672823, -0.01854952611029148, -0.01094054989516735, 0.003656261134892702, -0.010827614925801754, -0.00180519069544971, -0.013319237157702446, -0.014349766075611115, -0.0005682027549482882, 0.019241251051425934, 0.017518997192382812, 0.015161484479904175, -0.0013049253029748797, 0.006585505325347185, -0.019565938040614128, 0.006320814602077007, -0.00015727040590718389, -0.004048003349453211, -0.005847900174558163, 0.004616206046193838, 0.03825663402676582, 0.006331401877105236, 0.0013261005515232682, -0.00046717911027371883, 0.014653278514742851, -0.014752096496522427, -0.015641456469893456, -0.058895450085401535, 0.023928040638566017, -0.0010437637101858854, 0.002138701034709811, 0.0012590455589815974, -0.014497993513941765, 0.00423152232542634, -0.0107429139316082, -0.017081374302506447, -0.00110552494879812, -0.021895216777920723, 0.016897855326533318, -0.02661024034023285, -0.009281821548938751, -0.016615519300103188, -0.0007680442649871111, -0.004930305760353804, -0.022092852741479874, 0.004065649583935738, -0.002643377985805273, 0.00013013961142860353, -0.010326467454433441, 0.018097786232829094, -0.01402507908642292, -0.001710784388706088, 0.0035450910218060017, -0.007097240537405014, 0.023405717685818672, 0.00017050493624992669, -0.01949535310268402, 0.016036728397011757, -0.030633538961410522, 0.02214931882917881, 0.015472054481506348, -0.007968955673277378, 0.037014350295066833, -0.0018845979357138276, -0.0005284991348162293, 0.016841387376189232, 0.04545621946454048, -0.01902949810028076, -0.002983946818858385, 0.006846666801720858, -0.03317457064986229, 0.007630151230841875, 0.017998969182372093, -0.013298061676323414, -0.010453518480062485, 0.01050998643040657, -0.012740446254611015, 0.010107656009495258, 0.03210169076919556, -0.015740275382995605, -0.009408872574567795, -0.01444152556359768, -0.04057179391384125, 0.03410628065466881, 0.003931539598852396, 0.004132704343646765, -0.03557443246245384, 0.018309539183974266, -0.013658041134476662, 0.019170666113495827, -0.015937911346554756, 0.012881615199148655, -0.020483532920479774, -0.005357339978218079, -0.007284288760274649, -0.0096912095323205, -0.015726158395409584, 0.003571560140699148, -0.010114714503288269, 0.007153708022087812, 0.006521979346871376, 0.0090347770601511, 0.015952028334140778, -0.001477856538258493, -0.00434445682913065, -0.03749432414770126, 0.005502037703990936, 0.0012061074376106262, -0.008575979620218277, -0.03966831788420677, 0.008103065192699432, 0.023433951660990715, -0.0035556787624955177, 0.0018298951908946037, 0.01463916152715683, 0.003218639176338911, -0.007178412284702063, 0.011709917336702347, -0.02073763497173786, 0.0048209005035459995, -0.020667051896452904, -0.00931711308658123, 0.037127286195755005, -0.015754392370581627, -0.007700735237449408, 0.035800300538539886, 0.022968096658587456, -0.009486515074968338, 0.0053714569658041, -0.011462872847914696, -0.023631587624549866, 0.002158111659809947, -0.009761793538928032, -0.015274419449269772, -0.041023533791303635, 0.008237175643444061, 0.022219903767108917, 0.00033395146601833403, 0.004817371256649494, 0.031508784741163254, 0.018676577135920525, 0.0047785500064492226, 0.013051017187535763, 0.00803953967988491, -0.006829020567238331, -0.018888330087065697, 0.03478388860821724, 0.01588144339621067, 0.034445084631443024, 0.03162171691656113, -0.003733903868123889, 0.0177730992436409, 0.009479456581175327, 0.02073763497173786, 0.01097584143280983, 0.006320814602077007, -0.001582850469276309, -0.020596466958522797, -0.004397395066916943, -0.039414212107658386, 0.004079766105860472, -0.006776082329452038, -0.02463388256728649, -0.002013414166867733, 0.008159532211720943, -0.017900150269269943, 0.05293814465403557, 0.014201539568603039, -0.017039023339748383, -0.007139591034501791, 0.0074960412457585335, 0.02500092051923275, 0.019438887014985085, 0.015119134448468685, 0.020554115995764732, -0.022361071780323982, 0.0029151272028684616, -0.03119821287691593, 0.03577207028865814, -0.023151615634560585, -0.028967753052711487, 0.011420521885156631, -0.009091244079172611, 0.030661772936582565, -0.013926261104643345, -0.0071113575249910355, 0.03805899620056152, 0.005798491183668375, 0.03145231679081917, 0.001690491451881826, 0.00110552494879812, 0.018662460148334503, 0.01154757384210825, 0.0028021924663335085, 0.004796195775270462, -0.04322575777769089, -0.006906663067638874, 0.021909333765506744, -0.013065134175121784, -0.0027263143565505743, 0.023349251598119736, 0.0017513702623546124, -0.003453331533819437, -0.0033174569252878428, 0.029532426968216896, 0.009020660072565079, -0.012563985772430897, 0.013058075681328773, -0.03469919040799141, -0.015246185474097729, 0.01283926423639059, 0.008879491128027439, -0.007136061787605286, 0.0045773847959935665, -0.03947068005800247], "b3cf7695-1a41-4b75-bc07-fb9c11b286e8": [0.0051981727592647076, -0.03076179139316082, -0.007086876314133406, 0.008178729563951492, -0.014539964497089386, 0.03076179139316082, -0.0009570674155838788, -0.006357843521982431, -0.006205255165696144, -0.017428968101739883, 0.023003526031970978, 0.0037367166951298714, 0.006785090547055006, -0.00016858881281223148, -0.004994722083210945, -0.00979277491569519, 0.04937077313661575, -0.007683665957301855, 0.017076320946216583, 0.0021820119582116604, -0.0028449231758713722, 0.0019819517619907856, -0.008165166713297367, 0.026299431920051575, 0.006910552270710468, 0.03922535106539726, 0.03483080863952637, -0.015638599172234535, 0.009134950116276741, -0.014119499363005161, -0.00990128144621849, -0.002371899550780654, 0.0035027479752898216, 0.012118897400796413, -0.04063594713807106, 0.0021633622236549854, 0.003475621109828353, -0.010131859220564365, 0.01915151998400688, -0.02252880670130253, 0.024061471223831177, -0.011813720688223839, -0.014933302998542786, -0.005055757239460945, -0.023464681580662727, 0.014811232686042786, 0.005048975348472595, -0.03976788744330406, -0.04961491748690605, 0.016913559287786484, 0.02910705655813217, -0.005350761115550995, -0.03773337975144386, 0.017645983025431633, -0.013807540759444237, -0.0022379609290510416, 0.011189804412424564, 0.014797668904066086, 0.003902868367731571, -0.0009265497210435569, 0.012084988877177238, 0.0031263637356460094, 0.0028703545685857534, -0.0020277283620089293, -0.02975809946656227, -0.014607781544327736, -0.014445020817220211, -0.006493477616459131, -0.009684267453849316, -0.012525799684226513, 0.028211871162056923, 0.02125384658575058, -0.015964120626449585, 2.7153289920534007e-05, 0.026068855077028275, -0.017754489555954933, -0.01879887282848358, -0.011556016281247139, 0.009216330014169216, 0.00978599302470684, -0.0026296041905879974, -0.017103446647524834, -0.005594902206212282, 0.022854328155517578, 0.028374632820487022, -0.012356257066130638, -0.0041470094583928585, 0.02052142284810543, -0.02190489135682583, -0.03881844878196716, 0.009887718595564365, 0.0077989548444747925, 0.008741610683500767, 0.007425961550325155, 0.001167300040833652, 0.016059065237641335, -0.036132898181676865, -0.0002740230702329427, -0.007181819994002581, -0.013170060701668262, -0.028184743598103523, -0.012383383698761463, -0.016615165397524834, -0.004506439436227083, -0.03271491825580597, 0.007052967790514231, 0.015625037252902985, 0.012464764527976513, 0.011366128921508789, -0.0031467087101191282, -0.0042080446146428585, 0.01483835931867361, -0.024292048066854477, -0.035508979111909866, 8.916875958675519e-05, -0.012519017793238163, 0.036783941090106964, -0.0036451637279242277, -0.005906860344111919, -0.02223041281104088, -0.0031297544483095407, 0.028157617896795273, -0.02106395922601223, 0.00382487871684134, 0.014363639988005161, 0.024658260866999626, -0.014797668904066086, -0.023722385987639427, -0.02221684902906418, -0.012512235902249813, 0.037407856434583664, 0.010803247801959515, 0.025336431339383125, 0.0038384420331567526, -0.004130055196583271, 0.029459703713655472, -0.027547264471650124, 0.008605977520346642, -0.018405532464385033, -0.029215563088655472, 0.01917864754796028, -0.0017751099076122046, -0.0016733844531700015, -0.026692770421504974, -0.028944294899702072, 0.024644697085022926, 0.028835788369178772, 0.014350077137351036, -0.01950416900217533, 0.027425194159150124, 0.024739641696214676, -0.00539145153015852, -0.004408104810863733, -0.017632419243454933, 0.016723671928048134, 0.004536957014352083, 0.017388278618454933, 0.002933085197582841, 0.0013224314898252487, 0.009114604443311691, 0.025906093418598175, 0.018324153497815132, 0.017740927636623383, -0.014200879260897636, 0.0015055373078212142, 0.03374573960900307, -0.0022227021399885416, -0.018595421686768532, -0.025485627353191376, -0.01063370518386364, 0.00042300851782783866, 0.012152805924415588, -0.027398066595196724, -0.0011410210281610489, -0.012403729371726513, 0.004401323385536671, 0.036431290209293365, 0.028130490332841873, -0.014336513355374336, 0.013597307726740837, -0.02948683127760887, -0.005343979690223932, 0.012125679291784763, 0.03257928416132927, -0.015258824452757835, -0.0035671740770339966, -0.02001957781612873, -0.007826081477105618, 0.0042046536691486835, 0.008009187877178192, 0.00978599302470684, 0.024414120241999626, -0.009311273694038391, -0.025282176211476326, -0.6414945721626282, -0.023735949769616127, -0.004442013334482908, -0.007229291833937168, 0.0077650463208556175, -0.0051744370721280575, 0.009209548123180866, 0.004808225203305483, 0.008287237025797367, 0.001073203980922699, -0.01909726671874523, 0.018324153497815132, 0.005289725959300995, -0.01977543719112873, -0.03474942967295647, -0.0073784892447292805, 0.0073784892447292805, -0.023369736969470978, -0.01058623380959034, -0.025065163150429726, -0.00990806333720684, 0.017211955040693283, -0.007073312997817993, 0.0016242171404883265, -0.01005047932267189, -0.003618036862462759, 0.022813638672232628, -0.013170060701668262, 0.012213841080665588, 0.02118602953851223, -0.034939318895339966, 0.026597827672958374, 0.02095545269548893, 0.016981376335024834, 0.05460624769330025, -0.0020599414128810167, -0.0032925151754170656, 0.036105770617723465, -0.00014114413352217525, 0.010593014769256115, -0.013170060701668262, -0.009731738828122616, 0.017103446647524834, 0.010857501067221165, 0.0037740159314125776, 0.0071886018849909306, 0.03081604465842247, -0.005065929610282183, 0.005672892089933157, 0.01069474034011364, 0.007934588938951492, 0.013088680803775787, -0.015747107565402985, -0.0008341490756720304, 0.004126664251089096, -0.007887116633355618, 0.035915881395339966, -0.005530476104468107, 0.012037517502903938, 0.008612758480012417, -0.0014512838097289205, 0.03084317035973072, 0.010552325285971165, -0.006093357224017382, -0.00017876137280836701, 0.01993819698691368, 0.0057169729843735695, 0.022691568359732628, 0.017768053337931633, -0.013081898912787437, 0.014187316410243511, 0.01504181046038866, -0.011135551147162914, -0.017062757164239883, 0.02026371844112873, 0.010470944456756115, 0.014092371799051762, -0.016655854880809784, 0.018364842981100082, 0.014512837864458561, 0.01509606372565031, -0.02157936803996563, -0.026801276952028275, -0.04161250963807106, 0.03805889934301376, -0.008667012676596642, 0.002007383154705167, 0.017469659447669983, -0.0024007216561585665, -0.003302687779068947, -0.0067410096526145935, 0.007100439630448818, -0.001664059585891664, 0.003760452615097165, 0.017944376915693283, 0.0003227665147278458, -0.0031534903682768345, 0.0013198882807046175, 0.014255133457481861, -0.0028890040703117847, 0.001031666062772274, -0.013868575915694237, 0.0027737151831388474, -0.03154846653342247, 0.012044298462569714, -0.013610871508717537, -0.026733459904789925, -0.008049877360463142, 0.037055209279060364, -0.02975809946656227, 0.006751182023435831, -0.003957121632993221, -0.017279772087931633, -0.004781098570674658, 0.02031797356903553, -0.01523169782012701, 0.016208263114094734, -0.005761053878813982, 0.016696544364094734, -0.02038579061627388, 0.013454892672598362, -0.0011732340790331364, 0.011813720688223839, -0.0015716588823124766, 0.023003526031970978, 0.03770625218749046, -0.0004280947905499488, -0.013197188265621662, -0.01482479553669691, -0.003821487771347165, -0.00548300426453352, -0.0008536464883945882, -0.00285509554669261, -0.0008163471356965601, 0.0066799744963645935, -0.03200962394475937, 0.005455877631902695, 0.014038118533790112, 0.00752090523019433, -0.025200797244906425, -0.018188519403338432, 0.02030440978705883, 0.015801360830664635, -0.007208947092294693, -0.028917167335748672, -0.025729769840836525, -0.006907161325216293, -0.004184308927506208, -0.013610871508717537, 0.027316687628626823, -0.01919221132993698, -0.006893598008900881, -0.023532498627901077, -0.002432934707030654, 0.011895101517438889, -0.018608983606100082, -0.018391970545053482, -0.01523169782012701, 1.7179423593916e-05, -0.026760587468743324, -0.0017149223713204265, 0.02259662374854088, -0.01129831187427044, 0.00495403166860342, 0.029215563088655472, -0.007012277841567993, -0.012051080353558064, 0.015977684408426285, -0.008633104152977467, -0.02959533780813217, 0.011542453430593014, -0.008592413738369942, -0.004577647428959608, 0.03925247862935066, -0.03344734385609627, 0.013746505603194237, -0.009799555875360966, -0.010613360442221165, -0.016425276175141335, 0.007622630801051855, -0.008890808559954166, 0.027303123846650124, -0.0021192810963839293, -0.017659546807408333, 0.016221826896071434, -0.007229291833937168, 0.00534737017005682, 0.0014563699951395392, 0.017035629600286484, 0.04125986248254776, 0.006869861856102943, 0.008734829723834991, 0.012356257066130638, 0.003278951859101653, -0.0002140473952749744, -0.0014351772842928767, 0.013943174853920937, 0.013705815188586712, 0.0077040111646056175, 0.025187233462929726, 0.01543514896184206, 0.014322950504720211, 0.02217615768313408, -0.02061636745929718, -0.0009316360228694975, -0.018446223810315132, -0.00933161936700344, -0.01548940222710371, 0.016601601615548134, -0.02073843777179718, -0.012600398622453213, -0.03263353928923607, 0.007812518626451492, -0.016181135550141335, 0.03160272166132927, 0.015814924612641335, 0.01509606372565031, 0.008524596691131592, -0.008850118145346642, -0.00041283597238361835, -0.004777707625180483, -0.013631216250360012, -0.011684868484735489, -0.007507341913878918, -0.02062993124127388, 0.0018361451802775264, 0.012742813676595688, 0.038031771779060364, 0.02106395922601223, -0.0007307281484827399, 0.027031855657696724, 0.008226201869547367, -0.014417894184589386, 0.028673026710748672, 0.011467854492366314, -0.002519401488825679, 0.012627525255084038, -0.016113318502902985, 0.029459703713655472, -0.016086192801594734, -0.0061950827948749065, -0.004842133726924658, 0.012559708207845688, -0.03062615729868412, -0.009101041592657566, 0.022555934265255928, 0.01110842451453209, 0.0058424342423677444, 0.013109025545418262, 0.026923349127173424, -0.004621728323400021, -0.003041592426598072, -0.0014733242569491267, -0.00246175704523921, 0.02216259576380253, -0.024129288271069527, 0.0022718694526702166, 0.02052142284810543, 0.015543656423687935, 0.027316687628626823, -0.006839344277977943, -0.012207060120999813, -3.796162491198629e-05, 0.013658343814313412, 0.047336265444755554, -0.00030581228202208877, 0.004872651305049658, 0.01528595108538866, -0.01981612667441368, -0.02244742587208748, -0.025865403935313225, -0.006181519478559494, 0.010952445678412914, -0.015014683827757835, 0.011128769256174564, 0.00038274217513389885, 0.011867974884808064, -0.0036655087023973465, 0.01934140734374523, -0.005018457770347595, -0.027113236486911774, -0.038004644215106964, 0.035400472581386566, -0.02000601403415203, 0.0019565203692764044, -0.01996532455086708, -0.015475839376449585, -0.014404330402612686, -0.02204052358865738, 0.03393562510609627, -0.01947704143822193, 0.007988842204213142, 0.00236342241987586, -0.011494981124997139, 6.520101123896893e-06, 0.011060952208936214, 0.023749513551592827, -0.025363557040691376, 0.035807374864816666, -0.02151155099272728, 0.0004077496996615082, 0.01051841676235199, -0.024481937289237976, 0.0046285102143883705, 0.00965714082121849, -0.0010299707064405084, 0.002707593608647585, -0.010091169737279415, -0.00032785278744995594, -0.017049193382263184, -0.00519478227943182, -0.03317607566714287, -0.0024821022525429726, -0.007439524866640568, 0.0052354722283780575, -0.0025092288851737976, -0.025567008182406425, 0.01991107128560543, 0.02929694391787052, -0.01142038218677044, -0.00479466188699007, -0.02237960882484913, 0.0016081106150522828, 0.0037367166951298714, 0.1044924333691597, 0.008660230785608292, -0.02117246761918068, -0.0008163471356965601, 0.0018530994420871139, 0.01510962750762701, -0.022935708984732628, -0.008314363658428192, 0.01912439428269863, -0.014024555683135986, 0.00251431530341506, -0.006585030350834131, 0.026950474828481674, 0.0007701467839069664, 0.013644780032336712, -0.01091853715479374, -0.0022684785071760416, -0.009379090741276741, -0.018446223810315132, 0.00011210997763555497, 0.0008099892875179648, 0.018080011010169983, 0.008131258189678192, 0.02153867855668068, -0.023613879457116127, -0.01951773278415203, 0.024671824648976326, -0.008131258189678192, 0.018568294122815132, -0.03089742362499237, -0.00031768024200573564, 0.03160272166132927, 0.01996532455086708, 0.024726077914237976, -0.005276162642985582, 0.011535671539604664, 0.007371707819402218, 0.03108731284737587, -9.84935904853046e-05, 0.018256336450576782, 0.018269900232553482, 0.0017479831585660577, 0.006283245049417019, -0.015882741659879684, 0.00022633923799730837, -0.0024295439943671227, -0.014214443042874336, -0.005479613319039345, -0.011739122681319714, 0.0014190706424415112, 0.03295906260609627, -0.02198627032339573, -0.02191845327615738, -0.01070152223110199, 0.013902484439313412, -0.009731738828122616, -0.01128474809229374, 0.003451885189861059, -0.02975809946656227, 0.01984325423836708, -0.006608766503632069, -0.013014081865549088, 0.00020133171346969903, -0.012532581575214863, -0.027194615453481674, -0.03125007450580597, -0.01471628900617361, -0.01024714857339859, -0.006510431878268719, 0.027520138770341873, -0.0061984737403690815, -0.011257621459662914, -0.03195536881685257, 0.011922228150069714, -0.006283245049417019, 0.006985150743275881, 0.027669334784150124, -0.028510266914963722, 0.00369602651335299, -0.012559708207845688, -0.002883917884901166, -0.03008362092077732, 0.012722468934953213, -0.009691049344837666, -0.001909048529341817, -0.007473433390259743, 0.001408050418831408, -0.0012834366643801332, -0.03344734385609627, 0.01965336687862873, 0.02129453793168068, 0.024183541536331177, 0.008924717083573341, -0.006476523354649544, -0.010606578551232815, -0.017347587272524834, -0.004570865537971258, -0.016398150473833084, 0.0056830644607543945, -0.015787797048687935, -0.007331017404794693, -0.04882824048399925, 0.006422269623726606, -0.004326724447309971, -0.009318055585026741, 0.000760398106649518, 0.024414120241999626, 0.006540949456393719, -0.015204571187496185, -0.012688560411334038, 0.014241569675505161, -0.007459869608283043, 0.003448494477197528, 0.007439524866640568, 0.01940922439098358, 0.005215127021074295, 0.02228466607630253, 0.016045501455664635, 0.0019293936202302575, -0.013644780032336712, -0.009623232297599316, -0.022813638672232628, 0.00958932377398014, 0.0007697229157201946, -0.026692770421504974, 0.007371707819402218, 0.013332821428775787, -0.00032064723200164735, 0.02143017202615738, -0.002126062987372279, 0.02081981860101223, 0.008714484050869942, 0.022366046905517578, -0.018500477075576782, -0.018147828057408333, -0.0029805570375174284, -0.006174737587571144, -0.00939265452325344, -0.006818999070674181, -0.0036790722515434027, -0.014038118533790112, -0.02975809946656227, -0.01943635195493698, -0.009189203381538391, -0.0038621779531240463, -0.02193201705813408, -0.026828404515981674, 0.009148512966930866, -0.0008968798210844398, 0.0028635726775974035, -0.02081981860101223, -0.015964120626449585, -0.02027728222310543, 0.005696627777069807, -0.009155294857919216, -0.028917167335748672, 0.007242855615913868, -0.009568978101015091, 0.01934140734374523, 0.005594902206212282, 0.022800074890255928, -0.026421502232551575, 0.005886515602469444, 0.016384586691856384, -0.015950558707118034, 0.0029805570375174284, 0.013461674563586712, -0.009738520719110966, -0.037516362965106964, -0.009223111905157566, 0.028076237067580223, 0.02149798907339573, 0.024807458743453026, 0.0013605785788968205, 0.002146407961845398, 0.015801360830664635, -0.018066449090838432, -0.018934505060315132, -0.008151602931320667, -0.03922535106539726, 0.002721157157793641, 0.023261230438947678, -0.013875357806682587, 0.011996827088296413, -0.023288358002901077, 0.00372654409147799, 0.058756645768880844, 0.008789082989096642, 0.006188300903886557, -0.008422871120274067, 0.024509062990546227, -0.02091476321220398, -0.0015614863950759172, -0.016059065237641335, 0.028808660805225372, 0.005455877631902695, 0.023179849609732628, 0.0036655087023973465, 0.006466350983828306, 0.00489299651235342, 0.01997888833284378, -0.016913559287786484, -0.007676884066313505, -0.014987556263804436, -0.013637998141348362, 0.02172856591641903, -0.0013351471861824393, -0.0009587628301233053, 0.027289560064673424, -0.011915446259081364, -0.01886668987572193, -0.02159293182194233, -0.0041131009347736835, -0.023817330598831177, -0.006530777085572481, -0.010220021940767765, 0.001648800796829164, 0.0071614752523601055, -0.0035943009424954653, -0.009284147061407566, 0.00984024628996849, -0.012668215669691563, 0.03955087438225746, 0.02178281918168068, 0.024183541536331177, 0.009101041592657566, -0.02155224233865738, -0.005998413544148207, 0.018364842981100082, 0.008104131557047367, -0.009568978101015091, -0.0003079315647482872, 0.008870463818311691, 0.009026442654430866, 0.007819299586117268, -0.027330249547958374, -0.005815307609736919, -0.057671576738357544, -0.026109544560313225, 0.011725558899343014, 0.006429051514714956, -0.00965714082121849, -0.015977684408426285, -0.007120784837752581, -0.02062993124127388, 0.016479531303048134, -0.012207060120999813, 0.03257928416132927, -0.01003691554069519, -0.014133062213659286, -0.028510266914963722, 0.003760452615097165, 0.028076237067580223, 0.013387075625360012, 0.029242688789963722, -0.009758866392076015, -0.04196515679359436, -0.0026601217687129974, -0.00985381007194519, -0.012674996629357338, 0.0034315402153879404, 0.00023693563707638532, -0.0052965073846280575, 0.00939943641424179, 0.008965407498180866, -0.004770925734192133, -0.011603488586843014, -0.00034417127608321607, 0.005530476104468107, 0.02145729772746563, 0.0030738054774701595, 0.0037638433277606964, 0.008151602931320667, 0.024834584444761276, 0.012159587815403938, 0.025187233462929726, 0.005628810729831457, 0.00040563041693530977, -0.012905574403703213, 0.012519017793238163, -0.0017064452404156327, 0.0022667832672595978, 0.0010740517172962427, -0.023356175050139427, -0.006629111710935831, -0.01897519640624523, -0.0023498591035604477, 0.00037553661968559027, -0.0011723863426595926, -0.03309469670057297, -0.012674996629357338, -0.012390165589749813, -0.008382180705666542, 0.013515927828848362, -0.004316552076488733, 0.02141660824418068, -0.024142852053046227, 0.026163797825574875, -0.04994043707847595, 0.011311875656247139, -0.025553444400429726, 0.018337717279791832, -0.017022065818309784, 0.0052625988610088825, 0.006900379434227943, -0.023573188111186028, 0.018174955621361732, -0.015082500874996185, -0.02978522516787052, 0.006924115587025881, 0.027859222143888474, 0.011969700455665588, -0.003470534924417734, 0.007086876314133406, -0.009243456646800041, -0.012824194505810738, 0.004547129850834608, -0.009019660763442516, -0.013855013065040112, 0.011623833328485489, 0.023505371063947678, 0.00946047157049179, -0.0021667531691491604, -0.022488117218017578, 0.018093574792146683, 0.008090567775070667, 0.010335310362279415, 0.0008536464883945882, -0.04239918664097786, 0.017645983025431633, 0.007358144503086805, 0.016710108146071434, -0.00524903554469347, 0.006432442460209131, -0.016154009848833084, -0.024224231019616127, -0.014417894184589386, 0.007439524866640568, 0.010016570799052715, -0.025784023106098175, 0.006663020234555006, 0.009799555875360966, -0.007147911470383406, 0.00041389561374671757, -0.007364925928413868, 0.00969783030450344, 0.02086050808429718, 0.008802646771073341, -0.04356563836336136, -0.02164718508720398, -0.019070139154791832, 0.04001202806830406, -0.004920123144984245, -0.006120484322309494, 0.0027923649176955223, -0.025594135746359825, -0.03944236785173416, -0.0051066200248897076, -0.010674395598471165, 0.02224397473037243, 0.024712514132261276, 0.023098468780517578, 0.00778539152815938, 0.03059902973473072, -0.01004369743168354, -0.007724355906248093, 0.0028618774376809597, 0.005632201675325632, -0.004428450018167496, 0.02012808434665203, -0.007866771891713142, 0.012892011553049088, -0.015936994925141335, -0.00542196910828352, 0.009358745999634266, -0.00545926857739687, -0.02113177627325058, 0.013102243654429913, -0.0025024472270160913, 0.02166074886918068, 0.016181135550141335, -0.0007591265020892024, 0.011515325866639614, 0.0036994172260165215, 0.010796465910971165, -0.03057190217077732, -0.0012681778753176332, -0.0035027479752898216, -0.013210751116275787, -0.03171122819185257, -0.028591645881533623, 0.0018836171366274357, -0.01038278266787529, 0.015652162954211235, -0.01904301345348358, -0.016845742240548134, -0.017293334007263184, -0.034885063767433167, 0.04066307097673416, 0.0071614752523601055, -0.0008413546602241695, 0.03290480747818947, 0.0022227021399885416, -0.01982969045639038, -0.002270173979923129, 0.01965336687862873, 0.01555721927434206, -0.03070753626525402, 0.022610187530517578, -0.026597827672958374, 0.0021938798017799854, -0.015584345906972885, 0.011976482346653938, -0.018608983606100082, 0.02152511477470398, -0.00385539629496634, 0.008117694407701492, -0.02118602953851223, 0.026028163731098175, 0.03371861204504967, -0.0008540702983736992, -0.005503349471837282, 0.006412097252905369, -0.014241569675505161, -0.0011774726444855332, -0.017008503898978233, -0.028293251991271973, 0.005442314315587282, 0.003302687779068947, 0.008599195629358292, 0.007073312997817993, -0.01097957231104374, -0.0057169729843735695, 0.017062757164239883, -0.02964959107339382, -0.004011375363916159, 0.1967235505580902, -0.024169977754354477, -0.01031496562063694, 0.03469517454504967, -0.018690364435315132, 0.009094259701669216, 0.02187776379287243, 0.014499274082481861, -0.015394458547234535, 0.007921025156974792, -0.017130574211478233, 0.01521813403815031, -0.017551038414239883, 0.0003835899115074426, 0.008728047832846642, -0.008836555294692516, -0.04972342401742935, 0.0038723505567759275, -0.0077311377972364426, -0.05335841327905655, 0.018676800653338432, -0.00765653932467103, -0.0012410511262714863, -0.013061554171144962, 0.00536093395203352, 0.006456178147345781, -0.0019107438856735826, -0.004014766309410334, 0.026964038610458374, -0.011793375946581364, -0.036051515489816666, -0.01478410605341196, -0.01089819148182869, -0.0052625988610088825, -0.026095980778336525, 0.006683364976197481, 0.011691650375723839, 0.014092371799051762, 0.02011452242732048, 0.0009206157410517335, 0.001193579169921577, -0.006690146867185831, -0.002721157157793641, 0.0028703545685857534, -0.011413601227104664, 0.027425194159150124, -0.004367414861917496, -0.03087029792368412, -0.025173669680953026, 0.00778539152815938, -0.03165697306394577, 0.009446907788515091, 0.04231780767440796, 0.03249790519475937, 0.004964204505085945, -0.016452403739094734, -0.0006768984021618962, 0.027913477271795273, -0.008687357418239117, -0.00389269576407969, -0.00739205302670598, 0.018039321526885033, -0.003550219815224409, 0.010932100005447865, -0.025689078494906425, 0.026435066014528275, -9.081119787879288e-05, 0.0006574010476469994, 0.03076179139316082, -0.01524526160210371, 0.0023854628670960665, -0.01873105578124523, -0.026543572545051575, -0.0026652079541236162, -0.008185511454939842, -0.008870463818311691, 0.029025675728917122, -0.01521813403815031, -0.0025431374087929726, 0.006998714059591293, 0.012112115509808064, -0.016248952597379684, 0.009128168225288391, -0.01056588813662529, -0.007744701113551855, -0.024726077914237976, -0.012274877168238163, -0.02199983410537243, -0.026326559484004974, 0.015136754140257835, -0.00538466963917017, -0.02071131207048893, 0.009738520719110966, -0.016682982444763184, 0.005815307609736919, -0.023885147646069527, 0.02007383108139038, 0.012613961473107338, 0.00958932377398014, -0.0068325623869895935, -0.01478410605341196, -0.01963980309665203, 0.007846427150070667, 0.0020124693401157856, -0.023966526612639427, 0.005442314315587282, 0.022433863952755928, 0.01966692879796028, 0.008253328502178192, 0.001114741899073124, 0.027248870581388474, -0.0027550654485821724, -0.011779812164604664, -0.024346303194761276, -0.0005666958168148994, 0.03100593201816082, -0.037380728870630264, -0.03143996000289917, 0.017117010429501534, -0.006924115587025881, 0.010593014769256115, -0.02176925726234913, -0.006181519478559494, -0.003263693070039153, -0.0027771061286330223, -0.00764297554269433, -0.0035807376261800528, 0.017157699912786484, 0.009358745999634266, -0.008321145549416542, 0.011277967132627964, -0.04334862530231476, 0.008829773403704166, 0.007175038568675518, -0.01950416900217533, 0.01557078305631876, 0.017374714836478233, -0.03249790519475937, 0.02973097190260887, -0.014594217762351036, -0.023668132722377777, -0.003007683902978897, 0.0027313295286148787, 0.012580052949488163, 0.0013571876334026456, -0.0033637231681495905, 0.018486913293600082, -0.02265087701380253, 0.0015106236096471548, -0.005343979690223932, -0.037299349904060364, -0.003919822629541159, 0.01030818372964859, 0.010803247801959515, 0.02006026729941368, 0.006412097252905369, -0.01097279042005539, -0.02035866305232048, 0.0017191609367728233, 0.022908581420779228, -0.03314894810318947, 0.036187149584293365, 0.02964959107339382, -0.0031144956592470407, -0.02064349502325058, -0.008850118145346642, -0.17241793870925903, 0.012580052949488163, 0.007941370829939842, -0.001592851709574461, 0.03152134269475937, 0.027886349707841873, 0.023776639252901077, -0.003936776891350746, -0.006917333696037531, -0.006527386140078306, 0.022786511108279228, -0.0010435340227559209, -0.03398988023400307, -0.019083702936768532, -0.006937678903341293, -0.005798353347927332, -0.015896303579211235, -0.00028779837884940207, 0.04134124144911766, 0.01024714857339859, -0.007425961550325155, -0.02160649560391903, 0.027370940893888474, 0.002782192314043641, 0.0018293635221198201, 0.01950416900217533, -0.02004670538008213, 0.00375706166960299, 0.00047641442506574094, -0.006330716889351606, -0.024590443819761276, 0.023993654176592827, -0.0023583362344652414, -0.01536733191460371, 0.027655772864818573, 0.0032925151754170656, -0.004516612272709608, -0.00067011674400419, -0.023858020082116127, 0.0025821321178227663, 0.024698950350284576, 0.0034654485061764717, 0.016560910269618034, 0.004072410520166159, -0.012207060120999813, 0.02197270840406418, 0.0015640294877812266, 0.00116645242087543, 0.012966610491275787, -0.02263731323182583, -0.003046678612008691, -0.01044381782412529, 0.006893598008900881, 0.007907462306320667, 0.025024471804499626, 0.010070824064314365, 0.023044215515255928, 0.00545926857739687, -0.0011079602409154177, -0.01988394372165203, 0.0009138340246863663, -0.009351964108645916, 0.0066494569182395935, -0.009318055585026741, -0.015936994925141335, -0.013475237414240837, 0.0003619732160586864, 0.0062900264747440815, -0.024251358583569527, 0.018486913293600082, -0.002309168688952923, 0.008083785884082317, 0.03407125920057297, -0.0010130164446309209, -0.02176925726234913, -0.009630014188587666, -0.009826683439314365, 0.026760587468743324, -0.005252426490187645, -0.0011333916336297989, -0.03350159898400307, 0.03062615729868412, -0.026516446843743324, -0.005832261871546507, 0.004465749487280846, 0.009128168225288391, 0.00959610566496849, -0.024604007601737976, -0.027750715613365173, -0.013943174853920937, 0.015326641499996185, -0.017700236290693283, -0.011739122681319714, -0.012240968644618988, 0.028401758521795273, 0.012946264818310738, 0.0028364460449665785, -0.02251524291932583, 0.006018758751451969, -0.02214903198182583, -0.003041592426598072, -0.014933302998542786, -0.015584345906972885, 0.024305611848831177, 0.026190925389528275, 0.023708822205662727, -0.014146625995635986, 0.017781617119908333, 0.03314894810318947, 0.005818698555231094, -0.025214359164237976, 0.02129453793168068, 0.005272771697491407, 0.0061035300604999065, 0.009026442654430866, 0.04161250963807106, -0.014445020817220211, -0.012559708207845688, 0.025390684604644775, -0.0001583103003213182, 0.06065552309155464, -0.0023990264162421227, 0.00021203407959546894, -0.00564915593713522, -0.00990128144621849, -0.05390094965696335, -0.12792998552322388, -0.004845524672418833, 0.0034993570297956467, 0.003916431684046984, 0.02062993124127388, 0.017985068261623383, -0.003980857785791159, 0.016547348350286484, 0.006425660569220781, 0.005252426490187645, -0.02033153548836708, -0.037896137684583664, 0.013129371218383312, -0.023437554016709328, 0.005313461646437645, -0.015801360830664635, 0.0031636629719287157, -0.0006222209776751697, -0.007019059266895056, 0.026136670261621475, -0.0028228824958205223, -0.010084387846291065, 0.018134266138076782, -0.010525197722017765, 0.0027279388159513474, 0.007690447848290205, -0.03458666801452637, 0.017618855461478233, 0.023071343079209328, 0.004581038374453783, -0.022935708984732628, -0.001577592920511961, 0.006073012016713619, 0.006510431878268719, 0.01036921888589859, -0.015082500874996185, -0.04980480298399925, -0.010470944456756115, 0.035888753831386566, -0.012471546418964863, 0.0016742321895435452, 0.006557903718203306, 0.014092371799051762, -0.024007217958569527, 0.00970461219549179, -0.01542158517986536, -0.02975809946656227, 0.017985068261623383, 0.0041164918802678585, -0.018541166558861732, -0.02252880670130253, 0.02197270840406418, -0.05132390558719635, -0.015638599172234535, 0.04069019854068756, 0.0017615464748814702, 0.018107138574123383, 0.018473349511623383, -0.023315483704209328, -0.0012249444844201207, 0.01031496562063694, 0.0013504059752449393, 0.011440727859735489, 0.017089882865548134, -0.0023498591035604477, -0.006778309121727943, -0.01968049257993698, -0.028998548164963722, 0.038275912404060364, 0.004747190047055483, -0.00963679514825344, 0.005638983566313982, -0.02118602953851223, -0.009067133069038391, -0.029459703713655472, -0.01045059971511364, -0.03325745463371277, 0.003953731153160334, 0.006127265747636557, 0.004286034498363733, 0.006334107834845781, -0.02026371844112873, -0.012322348542511463, 0.01003013364970684, 0.003479012055322528, 0.018676800653338432, 0.0017157701076939702, -0.017740927636623383, 0.006008585914969444, -0.03352872282266617, 0.0030297243501991034, 0.01999245025217533, -0.003970685414969921, -0.01496042963117361, -0.006930897012352943, 0.024346303194761276, 0.022854328155517578, 0.016588037833571434, -0.016140446066856384, 0.0041131009347736835, -0.011311875656247139, -0.0006747791194356978, -0.056912023574113846, 0.03247077763080597, 0.009195985272526741, 0.004709890577942133, 0.002782192314043641, -0.008992534130811691, 0.01075577549636364, -0.027886349707841873, -0.02210834063589573, 0.002929694252088666, -0.018486913293600082, 0.03160272166132927, -0.024441245943307877, -0.01957198604941368, -0.012552926316857338, 0.00385539629496634, -0.010484508238732815, -0.013515927828848362, 0.007290327455848455, -0.013210751116275787, 0.011759467422962189, -0.010220021940767765, 0.028890041634440422, -0.0035061389207839966, -0.01017254963517189, 0.00011814992467407137, -0.0071886018849909306, 0.023790203034877777, 0.0008527987520210445, -0.012668215669691563, 0.012491891160607338, -0.028076237067580223, 0.012607179582118988, 0.02029084600508213, -0.0033077741973102093, 0.03206387534737587, -0.0033976316917687654, -0.0022871282417327166, -0.004123273305594921, 0.057834334671497345, -0.023885147646069527, -0.01129831187427044, 0.00933161936700344, -0.01940922439098358, 0.018432660028338432, 0.036214277148246765, -0.02246098965406418, -0.001400421024300158, 0.013821104541420937, -0.01011829636991024, 0.006388361100107431, 0.03141283243894577, -0.007364925928413868, -0.02027728222310543, -0.003312860382720828, -0.026326559484004974, 0.03162984922528267, -0.004967594984918833, 0.006147610954940319, -0.04220930114388466, 0.013929611071944237, -0.017971504479646683, -0.000523038615938276, -0.0017717190785333514, 0.010009788908064365, -0.02240673638880253, -0.0038520055823028088, -0.0026296041905879974, -0.008585631847381592, -0.014295822940766811, -0.0023769857361912727, -0.013543054461479187, 0.0004844676877837628, 0.00536093395203352, 0.02141660824418068, 0.024197105318307877, -0.00764975743368268, 0.00027910934295505285, -0.037434983998537064, 0.004920123144984245, -0.0023990264162421227, -0.026991166174411774, -0.03306756913661957, 0.002451584441587329, 0.028645901009440422, -0.0018463177839294076, 0.012023953720927238, 0.01909726671874523, -0.005598293151706457, -0.006937678903341293, 0.01531307864934206, -0.017686672508716583, 0.017279772087931633, -0.005306680221110582, 0.005211736541241407, 0.013841449283063412, -0.023329047486186028, -0.007751483004540205, 0.03176548331975937, 0.036458417773246765, -0.0016318465350195765, 0.008924717083573341, 0.0014097458915784955, -0.023112032562494278, 0.0020836773328483105, 0.0006158631294965744, -0.013970301486551762, -0.022800074890255928, -0.00011645450285868719, 0.027506574988365173, 0.011657741852104664, 0.007269982248544693, 0.04307735711336136, 0.02164718508720398, -0.011847629211843014, 0.01915151998400688, 0.008592413738369942, 0.002751674735918641, -0.013583744876086712, 0.03260641172528267, 0.012254531495273113, 0.024671824648976326, 0.029079928994178772, 0.00958254188299179, 0.011942573823034763, 0.016411714255809784, 0.02020946517586708, 0.015394458547234535, -0.004323333501815796, 0.0025821321178227663, -0.002292214659973979, -0.0017140746349468827, -0.03846580162644386, 0.003200962208211422, -0.0009206157410517335, -0.014336513355374336, -0.024793894961476326, 0.012674996629357338, -0.028645901009440422, 0.03469517454504967, 0.0062595088966190815, -0.023329047486186028, 0.002804232994094491, 0.013007299974560738, 0.04364702105522156, 0.004896387457847595, 0.01942278817296028, 0.008531378582119942, -0.02087407186627388, -0.002624517772346735, -0.028645901009440422, 0.026706334203481674, -0.013027645647525787, -0.017144137993454933, 0.026055291295051575, -0.0020989361219108105, 0.04199228435754776, -0.012369820848107338, -0.004553911276161671, 0.048122942447662354, 0.0009841942228376865, 0.015543656423687935, -0.0035637833643704653, 0.00035964202834293246, 0.009385872632265091, 0.02197270840406418, 0.014607781544327736, 0.002816100837662816, -0.03181973472237587, 0.00777860963717103, 0.03138570860028267, -0.01947704143822193, -0.003223002888262272, 0.01091853715479374, -0.012159587815403938, -0.0025855230633169413, -0.0020006014965474606, 0.023423992097377777, -0.0022260930854827166, -0.013692252337932587, 0.0051710461266338825, -0.03944236785173416, -0.02090119943022728, 0.025553444400429726, -0.008117694407701492, -0.011976482346653938, -0.0077379196882247925, -0.04079870507121086], "faeda718-1ed2-4c16-a6de-2901b1130c6d": [-0.002477135043591261, -0.020664868876338005, -0.008583868853747845, 0.014743588864803314, -0.009272697381675243, 0.024453427642583847, -0.005020503420382738, -0.01931370422244072, -0.007212833967059851, -0.02217499352991581, 0.02948717772960663, 0.019989287480711937, 0.003227229928597808, -0.007762572728097439, -0.016955789178609848, 0.003791871014982462, 0.032136522233486176, -0.004195895511657, 0.01647890917956829, 0.004765504039824009, 0.002871224656701088, 0.01278307568281889, 0.002824861090630293, 0.02041318081319332, 0.01074970606714487, 0.021049022674560547, 0.028745362535119057, -0.014120994135737419, 0.009372048079967499, 0.0022916810121387243, -0.00866997241973877, 0.012107493355870247, -0.003513690084218979, 0.00796789675951004, -0.036772869527339935, 0.00518608745187521, 0.008451401256024837, -0.008616985753178596, 0.02413550764322281, -0.01556488499045372, 0.012524764984846115, -0.010743082500994205, -0.01064373180270195, 0.0071929641999304295, -0.020121753215789795, 0.01702202297747135, 0.004083298612385988, -0.04048194736242294, -0.023923559114336967, 0.020982790738344193, 0.03383209928870201, 0.0015167484525591135, -0.036746375262737274, 0.01180944312363863, -0.01916799135506153, -0.004182648845016956, 0.006954523269087076, 0.01143853459507227, 0.0019870067480951548, -0.008106986992061138, 0.012551258318126202, -0.0037653776817023754, 0.01529995072633028, 0.006096798460930586, -0.027076277881860733, -0.018479160964488983, -0.014491901732981205, -0.012696972116827965, -0.011670351959764957, -0.012948660179972649, 0.03732923045754433, 0.015591378323733807, -0.022969797253608704, -0.0021674931049346924, 0.0321895070374012, -0.015088004060089588, -0.03126223757863045, -0.0020068767480552197, -0.016055013984441757, 0.006232577376067638, -0.01788306050002575, -0.008146727457642555, 0.0013420573668554425, 0.028215494006872177, 0.010054253973066807, -0.014160733669996262, 0.0008974646334536374, 0.030096527189016342, -0.023923559114336967, -0.017936047166585922, 0.019552145153284073, 0.015180730260908604, 0.005828552879393101, 0.0019307080656290054, -0.0005513943615369499, 0.0006043812027201056, -0.03436196967959404, 0.00806062389165163, -0.003314989386126399, -0.018903056159615517, -0.01948591135442257, 0.0003891221422236413, -0.033752620220184326, -0.005080113653093576, -0.04101181775331497, 0.00994165614247322, 0.0059842015616595745, 0.009908540174365044, 0.018399681895971298, -0.015988780185580254, 0.0023628820199519396, 0.017220724374055862, -0.014041513204574585, -0.042151033878326416, -0.005080113653093576, -0.00443102465942502, 0.02540719136595726, -0.01862487569451332, -0.0005927903112024069, -0.0171942301094532, -0.01789630576968193, 0.019923053681850433, -0.005719267297536135, -0.003629598766565323, 0.003841546131297946, 0.013485151343047619, -0.01735319197177887, -0.021433178335428238, -0.01576358638703823, -0.011657105758786201, 0.047661665827035904, 0.007994390092790127, 0.0010067500406876206, 0.0031841781456023455, -0.01755189150571823, 0.01323346421122551, -0.024983296170830727, 0.02204252779483795, -0.008809062652289867, -0.025287970900535583, 0.013067880645394325, -0.006689589004963636, 0.007318807765841484, -0.02204252779483795, -0.03913078457117081, 0.026149006560444832, 0.017975786700844765, 0.011491521261632442, -0.03112976998090744, 0.014081253670156002, 0.03168613091111183, -0.011074250563979149, 0.007835429161787033, -0.020068766549229622, 0.02396330051124096, 0.008040753193199635, 0.003091451246291399, 0.006947899702936411, 0.005444398149847984, 0.008895166218280792, 0.017114751040935516, 0.023751351982355118, 0.0212874636054039, -0.0027238549664616585, 0.014372681267559528, 0.03600456193089485, 0.008544128388166428, -0.02542043849825859, -0.029248736798763275, -0.019777338951826096, 0.0018661303911358118, 0.023724859580397606, -0.03216301277279854, -0.0017998968251049519, -0.009133607149124146, 0.001037383102811873, 0.03544819727540016, 0.021684866398572922, -0.02863938920199871, 0.014346187934279442, -0.025327710434794426, -0.0007852815906517208, -0.0011392171727493405, 0.010511265136301517, -0.013187101110816002, 0.002384407911449671, -0.010100617073476315, -0.024758102372288704, 0.009153476916253567, 0.0052490090020000935, 0.007881793193519115, 0.01845266856253147, -0.0049012829549610615, -0.022810835391283035, -0.6417766213417053, -0.028347961604595184, -0.010292693972587585, -0.021552398800849915, 0.007146600633859634, -0.008683218620717525, 0.0021757723297923803, 0.006686277221888304, 0.0007082850788719952, -0.0044906348921358585, -0.043740637600421906, 0.010339058004319668, 0.02163187973201275, -0.028718868270516396, -0.015273457393050194, -0.007113483734428883, 0.01573709212243557, -0.03719676285982132, -0.00929919071495533, -0.01736643724143505, -0.014081253670156002, 0.010696719400584698, -0.00456349179148674, 0.010113864205777645, -0.005951084662228823, -0.0072989375330507755, 0.01898253709077835, -0.015617872588336468, 0.015697352588176727, 0.021910060197114944, -0.036587417125701904, 0.03457391634583473, 0.02024097368121147, 0.016955789178609848, 0.03987259790301323, 0.004576738458126783, -0.021433178335428238, 0.03277236223220825, 0.002096292097121477, 0.025725113227963448, -0.018015526235103607, -0.01642592065036297, 0.02556615136563778, 0.012571129016578197, -0.005957708228379488, 0.0009529352537356317, 0.016399428248405457, -0.00603056512773037, 0.010961653664708138, 0.019989287480711937, 0.0007442995556630194, 0.0013909046538174152, -0.013511644676327705, -0.005808682646602392, -0.004464141558855772, -0.0032553791534155607, 0.027659133076667786, -0.00042720642522908747, 0.0035501185338944197, 0.0030633017886430025, 0.015445664525032043, 0.023936806246638298, -0.004222389310598373, -0.007563871797174215, -0.0018661303911358118, 0.011027886532247066, 0.003560053650289774, 0.01878383569419384, 0.012233337387442589, -0.013372554443776608, 0.02304927632212639, 0.019591884687542915, -0.005033750087022781, -0.024811089038848877, 0.030891329050064087, 0.014253460802137852, 0.021419931203126907, -0.024241480976343155, 0.0007749325595796108, 0.01822747476398945, 0.005192710552364588, -0.022095514461398125, -0.03022899478673935, -0.040190521627664566, 0.026890823617577553, -0.013617618940770626, -0.008570621721446514, 0.01594904065132141, 0.005139723885804415, 0.0016111312434077263, -0.009769449010491371, 0.017498904839158058, 0.0029308348894119263, 0.0030235617887228727, 0.016160987317562103, 0.0056364755146205425, -0.013723592273890972, -0.0013205314753577113, -0.006321992725133896, -0.0021757723297923803, -0.012372427619993687, -0.015379431657493114, 0.007630105596035719, -0.006202772259712219, -0.006875042803585529, -0.013551385141909122, -0.03950169309973717, -0.021393438801169395, 0.04011103883385658, -0.022148501127958298, 0.0023827520199120045, -0.014200474135577679, -0.011206717230379581, 0.002650998067110777, 0.014306447468698025, -0.019273964688181877, 0.03155366703867912, 0.005911344662308693, 0.008544128388166428, -0.013551385141909122, 0.013094373978674412, -0.009650228545069695, 0.011643858626484871, 0.02308901771903038, 0.00428862264379859, 0.03112976998090744, -0.007822182960808277, -0.01896928995847702, -0.023287717252969742, -0.0038349227979779243, -0.0072459508664906025, -0.01010724063962698, 0.00042285985546186566, -0.0001961134112207219, 0.024029534310102463, -0.027473678812384605, 0.013697098940610886, 0.019817080348730087, 0.01912824995815754, -0.026175500825047493, -0.017989033833146095, 0.020651621744036674, 0.01018672063946724, -0.014253460802137852, -0.0212874636054039, -0.03706429526209831, -0.011597495526075363, -0.005394722800701857, -0.014584628865122795, 0.019552145153284073, -0.010319188237190247, -0.011365678161382675, -0.02078408934175968, 0.0038978445809334517, 0.019936298951506615, -0.011690222658216953, -0.006302122492343187, -0.01626696065068245, 0.01593579351902008, -0.024824336171150208, 0.005914656445384026, 0.02898380346596241, -0.016147740185260773, 0.0072989375330507755, 0.0246918685734272, -0.013173853978514671, -0.029089776799082756, 0.02810952067375183, -0.0015689072897657752, -0.030626395717263222, 0.018571889027953148, 0.0013536482583731413, -0.0019389872904866934, 0.03780611231923103, -0.02985808625817299, 0.015591378323733807, 0.0007790721720084548, -0.030626395717263222, -0.010173473507165909, -0.006573680322617292, -0.012014767155051231, 0.03502430394291878, -0.007053873501718044, -0.015167484059929848, 0.019565392285585403, -0.01376333273947239, 0.007722832262516022, -0.003795182565227151, 0.013279827311635017, 0.03367313742637634, 0.0019638249650597572, 0.022280966863036156, 0.032825350761413574, 0.0025946993846446276, -0.012736712582409382, -0.00033075379906222224, 0.012127364054322243, 0.012730089016258717, 0.01118684746325016, 0.018677862361073494, 0.008120234124362469, 0.017498904839158058, 0.020426427945494652, 0.00023305931244976819, -0.0013428853126242757, -0.019976040348410606, -0.001879377057775855, 0.005504008382558823, 0.009279320947825909, -0.013538138940930367, -0.010418538004159927, -0.034785863012075424, -0.004305181093513966, -0.01593579351902008, 0.01590929925441742, 0.02417524717748165, 0.00948464497923851, 0.014982029795646667, -0.013081126846373081, -0.00849776528775692, -0.002248629229143262, -0.009398541413247585, -0.008418284356594086, -0.017061764374375343, -0.012577751651406288, 0.014081253670156002, 0.003970701713114977, 0.030149513855576515, 0.009862176142632961, -0.0038481694646179676, 0.019366690889000893, -0.00015213018923532218, -0.011226587928831577, 0.019552145153284073, 0.02451966144144535, 0.007769195828586817, -0.0048482962884008884, -0.013299698010087013, 0.0328783355653286, -0.020505908876657486, -0.003967389930039644, -0.0058053708635270596, 0.011617365293204784, -0.03523625060915947, -0.002028402639552951, 0.014558135531842709, 0.013067880645394325, -0.0030633017886430025, 0.00554043659940362, 0.016757089644670486, -0.008345427922904491, 0.0023380445782095194, 0.001390076708048582, -0.004931088071316481, 0.031050290912389755, -0.027685625478625298, 0.011564378626644611, 0.022797590121626854, 0.001103616552427411, 0.029831591993570328, -0.014902549795806408, -0.0016450758557766676, -0.006156408693641424, 0.007544002030044794, 0.040852855890989304, 0.000156166308443062, 0.00671277055516839, 0.01842617429792881, -0.03597806766629219, -0.028374454006552696, -0.02274460345506668, -0.005027126986533403, 0.007133353967219591, -0.0111073674634099, 0.01341891847550869, -0.008146727457642555, -0.0009247860289178789, -0.0018744096159934998, 0.0164391677826643, 0.0045138169080019, -0.03367313742637634, -0.021910060197114944, 0.020704608410596848, -0.007928156293928623, 0.0020168116316199303, -0.003427586518228054, -0.021565645933151245, -0.017445918172597885, -0.015962285920977592, 0.030652888119220734, -0.03044094145298004, -0.0001709653588477522, 0.010703342035412788, -0.014968783594667912, -0.002521842485293746, 0.011385547928512096, 0.023380445316433907, -0.010259578004479408, 0.025155503302812576, -0.0032586909364908934, -0.0005915484507568181, 0.012206844054162502, -0.020996036008000374, 0.011928663589060307, 0.01947266422212124, 0.0016210662433877587, -0.016770336776971817, -0.0037322607822716236, 0.005159594118595123, -0.007948026992380619, -0.005649722181260586, -0.029301725327968597, -0.006732640787959099, -0.019949546083807945, -0.001128454227000475, -0.003353073727339506, -0.026360955089330673, 0.016306700184941292, 0.031421199440956116, -0.011200093664228916, -0.005580177064985037, -0.023685118183493614, 0.0031659638043493032, 0.007722832262516022, 0.09537632018327713, 0.007623482029885054, -0.033752620220184326, 0.0025582709349691868, 0.004066740162670612, 0.0038647279143333435, -0.028321467339992523, -0.0041594672948122025, 0.02289031632244587, 0.0017286958172917366, 0.005050308536738157, -0.016955789178609848, 0.040190521627664566, -0.011935286223888397, 0.0039011563640087843, -0.014187227003276348, -0.01645241491496563, -0.009550878778100014, 0.010173473507165909, -0.0222147349268198, -0.011166977696120739, 0.025354204699397087, 0.0026659006252884865, 0.01773734577000141, -0.01878383569419384, -0.024546155706048012, 0.02414875477552414, -0.015962285920977592, 0.01682332344353199, -0.032666388899087906, 0.026599396020174026, 0.02972561866044998, 0.020505908876657486, 0.011465027928352356, 0.00014447193825617433, 0.00021629394905176014, -0.005278814118355513, 0.04273388907313347, -0.007093613501638174, 0.017419423907995224, 0.007086990401148796, 0.011471651494503021, 0.002816581865772605, -0.009438281878829002, 0.01645241491496563, 0.003048399230465293, -0.0028811595402657986, -0.003414339618757367, -0.007252574432641268, -0.0003094348940066993, 0.021009283140301704, -0.020095260813832283, -0.02131395787000656, -0.007371794432401657, 0.026347707957029343, 0.0025913878343999386, 0.0019091821741312742, 0.0035501185338944197, -0.020492661744356155, 0.030149513855576515, -0.008239454589784145, -0.008663348853588104, 0.0059842015616595745, -0.010955030098557472, -0.012657232582569122, -0.03494482487440109, -0.03059990145266056, -0.009146854281425476, -0.0008717991877347231, 0.0269967969506979, -0.016227221116423607, -0.008570621721446514, -0.03878637030720711, -0.0027437249664217234, 0.020678116008639336, 0.00956412497907877, 0.022307461127638817, -0.01593579351902008, 0.007027380168437958, -0.00965685211122036, 0.0006283908733166754, -0.026215240359306335, 0.02200278639793396, -0.01522047072649002, -0.01679682917892933, 0.006090175360441208, -0.0037786243483424187, -0.002463888144120574, -0.014253460802137852, 0.004626413807272911, 0.011067626997828484, 0.026784850284457207, 0.02004227414727211, -0.0218040868639946, 0.0010771232191473246, -0.008789192885160446, 0.007603612262755632, -0.012498271651566029, 0.006762445904314518, -0.02752666547894478, 0.004573427140712738, -0.037673644721508026, 0.010603992268443108, -0.019790586084127426, 0.017472412437200546, 0.008265947923064232, 0.016372933983802795, 0.020863570272922516, -0.010551005601882935, -0.036401960998773575, 0.014518395066261292, -0.01682332344353199, 0.01573709212243557, 0.007279067765921354, 0.010113864205777645, 0.006166344042867422, 0.01828046143054962, 0.014187227003276348, 0.0019671365153044462, -0.015631118789315224, -0.007835429161787033, -0.03671988099813461, 0.004417777992784977, 0.003238820703700185, -0.01969785988330841, 0.0013875929871574044, 0.017247216776013374, 0.012696972116827965, 0.015856312587857246, 0.016240468248724937, 0.03285184130072594, 0.01522047072649002, 0.013339437544345856, -0.0160947535187006, -0.022307461127638817, -0.0049642049707472324, 0.0008353706798516214, -0.006517381872981787, -0.005802059546113014, 0.002290025120601058, -9.7487514722161e-05, -0.01732669770717621, -0.02165837213397026, -0.016319947317242622, -0.0018777212826535106, -0.02073110267519951, -0.01610800065100193, 0.0037322607822716236, -0.0076565989293158054, 0.0030848279129713774, -0.012789699248969555, -0.02237369492650032, -0.03237496316432953, -0.004652907140552998, -0.025884073227643967, -0.030811849981546402, 0.019419677555561066, -0.011306067928671837, 0.025804592296481133, -0.017419423907995224, 0.017498904839158058, -0.014876056462526321, 0.0020979477558285, 0.0157503392547369, -0.01809500716626644, 0.008252700790762901, 0.009001140482723713, -0.004364791326224804, -0.028241988271474838, -0.002510251710191369, 0.025552906095981598, 0.014505148865282536, 0.012239960953593254, -0.0058682928793132305, 0.00029329044627957046, 0.022757848724722862, -0.020161494612693787, -0.019247470423579216, -0.0040435586124658585, -0.03007003292441368, -0.009968149475753307, 0.010617238469421864, -0.009961526840925217, 0.011802819557487965, -0.007464521564543247, 0.0045999204739928246, 0.06522680073976517, -0.0077095855958759785, 0.008292441256344318, -0.009974773041903973, 0.026758356019854546, -0.02289031632244587, 0.018306953832507133, -0.00315271713770926, 0.03793857991695404, -0.005964331794530153, 0.0225591491907835, -0.011478275060653687, 0.00019973555754404515, -0.0036163520999252796, 0.02863938920199871, -0.009014386683702469, -0.00104897387791425, -0.01665111631155014, -0.015670858323574066, 0.00492115318775177, -0.008491141721606255, -0.0076565989293158054, 0.014385928399860859, -0.0010315875988453627, -0.024930309504270554, -0.028374454006552696, -0.013564632274210453, -0.02951367199420929, -0.017644619569182396, 0.0006205256213434041, 0.016147740185260773, 0.013094373978674412, -0.005911344662308693, -0.02038668841123581, 0.010584121569991112, -0.02645368129014969, 0.04559518024325371, 0.01947266422212124, 0.006888289470225573, 0.022678369656205177, -0.017843319103121758, -0.0041594672948122025, 0.011067626997828484, 0.0003709079173859209, -0.011061003431677818, 0.006454459857195616, 0.001485287444666028, -0.0011582592269405723, 0.0012915543047711253, 0.005484138149768114, -0.0021178179886192083, -0.04530375078320503, -0.02485083043575287, 0.018916303291916847, -0.006295499391853809, -0.011835936456918716, -0.004941022954881191, -0.014054760336875916, -0.02988458052277565, 0.005729202646762133, 0.013842812739312649, 0.03976662456989288, -0.014412421733140945, -0.006550498306751251, -0.027632638812065125, 0.009246204048395157, 0.020863570272922516, 0.021552398800849915, 0.02377784624695778, -0.013617618940770626, -0.02718225121498108, -0.005212580785155296, -0.014505148865282536, -0.010213213972747326, -0.0205986350774765, 0.005149658769369125, 0.0020681426394730806, -0.0011963435681536794, 0.007351924665272236, 0.0068353028036653996, -0.015896053984761238, 0.009345554746687412, -0.011928663589060307, 0.023287717252969742, -0.009928409941494465, -0.0059312148950994015, 0.003372943727299571, 0.02776510640978813, 0.0212874636054039, 0.014505148865282536, -0.006269006058573723, 0.004040246829390526, -0.02681134268641472, 0.014054760336875916, -0.01251151878386736, 0.005292060784995556, 0.011749832890927792, -0.028162507340312004, -0.00232314202003181, -0.010385421104729176, -0.0012849309714511037, 0.00044086709385737777, -0.003202392254024744, -0.04027000069618225, -0.006086863577365875, -0.0034838849678635597, -0.005315242800861597, 0.024056026712059975, -0.02274460345506668, 0.030520422384142876, -0.027606146410107613, 0.03883935511112213, -0.03770013898611069, 0.011915416456758976, -0.007835429161787033, 0.006302122492343187, -0.03539521247148514, -0.010630485601723194, 0.023857327178120613, -0.022280966863036156, 0.014491901732981205, -0.00832555815577507, -0.03160665184259415, 0.021883565932512283, 0.03589858487248421, 0.018161240965127945, -0.00299541256390512, 0.0019605131819844246, -0.014611122198402882, -0.013206970877945423, 0.00886204931885004, -1.7256945284316316e-05, -0.012663855217397213, 0.008080493658781052, 0.021049022674560547, 0.0019389872904866934, -0.001614442910067737, -0.020479414612054825, 0.026943810284137726, 0.015246964059770107, 0.010259578004479408, -0.009067373350262642, -0.045144788920879364, 0.019764091819524765, -0.00035000292700715363, 0.019062016159296036, -0.010815939866006374, 0.00679556280374527, -0.014306447468698025, -0.03274586796760559, -0.02114175073802471, -0.0006292187608778477, 0.0061001102440059185, -0.009060749784111977, -0.006298811174929142, 0.023181743919849396, -0.011729962192475796, -0.0020714544225484133, -0.002377784578129649, 0.0035004434175789356, -0.009319061413407326, 0.0018280460499227047, -0.037117283791303635, -0.010782822966575623, -0.026692122220993042, 0.04048194736242294, -0.0024705114774405956, -0.016227221116423607, -0.00016403153131250292, -0.029195750132203102, -0.04241596907377243, -0.0067260172218084335, 0.0019323639571666718, 0.01751215197145939, 0.03327573835849762, 0.01792280003428459, 0.02024097368121147, 0.001912493840791285, -0.013829566538333893, -0.004225700628012419, 0.017618125304579735, 0.003401092952117324, -0.008683218620717525, 0.009504514746367931, -0.014107747003436089, 0.005106606986373663, -0.00895477645099163, 0.0030053474474698305, 0.013491774909198284, -0.012988399714231491, -0.015326444059610367, 0.0019191172905266285, 0.002634439617395401, 0.02344667911529541, -0.008544128388166428, 0.010060876607894897, 0.026904068887233734, 0.0040501817129552364, 0.012948660179972649, -0.015790078788995743, -0.008458024822175503, -0.010358927771449089, -0.014796576462686062, -0.02609601989388466, -0.0269967969506979, -0.003339827060699463, -0.0051264772191643715, 0.011398795060813427, -0.012352557852864265, -0.018744096159934998, -1.1561764949874487e-06, -0.017657864838838577, 0.049675166606903076, -0.010041006840765476, 0.012445284985005856, 0.03436196967959404, -0.016399428248405457, -0.011398795060813427, 0.009868799708783627, 0.029460685327649117, 0.014849563129246235, -0.004209142178297043, 0.012120740488171577, -0.02539394423365593, 0.011597495526075363, -0.006974393501877785, 0.0034044047351926565, -0.024744855239987373, -0.0013536482583731413, -0.006583615206182003, 0.014412421733140945, -0.02810952067375183, 0.03632248193025589, 0.022241227328777313, -0.013332814909517765, -0.0016202382976189256, -0.007557248696684837, 0.0035964820999652147, 0.007491014897823334, -0.01735319197177887, -0.01715449057519436, 0.0054046581499278545, 0.0090276338160038, 0.02412226051092148, -0.002543368376791477, -0.011590871959924698, 0.007312184199690819, 0.02556615136563778, -0.04156817868351936, 0.0034408331848680973, 0.20368142426013947, -0.024214986711740494, -0.006083551794290543, 0.024228233844041824, -0.028400948271155357, 0.0032802168279886246, 0.014876056462526321, 0.017233971506357193, -0.011233210563659668, -0.013306320644915104, -0.010968276299536228, 0.024254728108644485, -0.01612124778330326, 0.008173220790922642, -0.007491014897823334, -0.002162525663152337, -0.048588935285806656, -0.0034176514018326998, -0.020492661744356155, -0.04906581714749336, 0.023473171517252922, -0.02149941213428974, -0.0031295353546738625, -0.006682965438812971, -0.009100490249693394, 0.016518648713827133, -0.0053649176843464375, -0.005331801250576973, 0.045515697449445724, -0.014544888399541378, -0.030096527189016342, -0.018373187631368637, -0.012259830720722675, -0.025327710434794426, -0.023473171517252922, 0.010670226067304611, 0.01592254638671875, 0.012372427619993687, 0.036746375262737274, -0.0007865234510973096, 0.0025864203926175833, -0.008424907922744751, -0.012147233821451664, -0.007908286526799202, -0.009524385444819927, 0.025645632296800613, -0.011882299557328224, -0.015167484059929848, -0.02417524717748165, 0.01233931165188551, -0.03626949340105057, 0.002352947136387229, 0.03616352006793022, 0.029805099591612816, 0.009782696142792702, -0.01932695135474205, -0.007113483734428883, 0.027420692145824432, -0.01843942143023014, 0.001804864383302629, -0.014107747003436089, 0.024188494309782982, -0.0019555457402020693, 0.01732669770717621, -0.0218040868639946, 0.018465915694832802, 0.005272191017866135, -0.019936298951506615, 0.0240030400454998, -0.02683783695101738, 0.010855679400265217, -0.018836822360754013, -0.021380191668868065, 0.009822435677051544, -0.008444778621196747, -0.01181606575846672, 0.02502303756773472, -0.023671872913837433, 0.002970574889332056, 0.016558388248085976, 0.015551638789474964, -0.019777338951826096, -0.008193090558052063, -0.026957057416439056, -0.001236083684489131, -0.023711612448096275, -0.010709965601563454, -0.022572394460439682, -0.014120994135737419, 0.018465915694832802, -0.008729582652449608, -0.02078408934175968, 0.010060876607894897, -0.007166470400989056, 0.009756202809512615, -0.0109020434319973, 0.006464394740760326, -0.002987133339047432, 0.014452161267399788, 0.01224658451974392, -0.007265821099281311, -0.01306125707924366, 0.02773861214518547, 0.004361479543149471, -0.006338551174849272, 0.017843319103121758, 0.01663786917924881, 0.00203171418979764, 0.0035103783011436462, -0.011253081262111664, 0.014743588864803314, -0.00044086709385737777, -0.00032371649285778403, -0.026228487491607666, 0.006659783888608217, 0.027261730283498764, -0.024387193843722343, -0.005537125281989574, 0.018571889027953148, 0.007815559394657612, -0.00832555815577507, -0.023526158183813095, 0.004185960628092289, 0.010855679400265217, -0.009815813042223454, -0.0020482726395130157, -0.019207730889320374, 0.03271937742829323, -0.0009438281413167715, -0.0035070667508989573, 0.014028267003595829, -0.009100490249693394, 0.014597875066101551, 0.004679400473833084, -0.020333701744675636, 0.0033050542697310448, 0.011610741727054119, -0.020095260813832283, 0.021247724071145058, -0.020797336474061012, -0.024387193843722343, 0.00042555059189908206, 0.011789572425186634, 0.013710346072912216, 0.010120486840605736, -0.0074711451306939125, 0.022598888725042343, -0.02377784624695778, -0.004179337061941624, -0.004825114272534847, -0.03340820595622063, -0.009120360016822815, -0.014677355997264385, 0.010968276299536228, 0.01899578422307968, 0.016955789178609848, -0.019022276625037193, -0.022413434460759163, 0.0008183983736671507, 0.008749452419579029, -0.029619645327329636, 0.02413550764322281, 0.028215494006872177, -0.0036527805496007204, -0.01916799135506153, -0.01288904994726181, -0.16722647845745087, 0.011822689324617386, 0.008941530250012875, -0.01117360033094883, 0.015962285920977592, 0.024824336171150208, 0.02058538794517517, -0.0036329105496406555, -0.011855806224048138, -0.0017088257009163499, 0.01806851290166378, 0.014293201267719269, -0.04000506550073624, -0.021062269806861877, -0.007000886835157871, -0.0005008912412449718, -0.021406684070825577, 0.012041260488331318, 0.029089776799082756, 0.008815686218440533, 0.013988526538014412, -0.024426935240626335, 0.022426681593060493, -0.01331294421106577, -0.0042058308608829975, 0.021737853065133095, -0.01279632281512022, 0.012133987620472908, 0.013803073205053806, -0.005301996134221554, -0.014637615531682968, 0.03221600130200386, 0.0018926238408312201, -0.042124539613723755, 0.023579144850373268, 0.008537504822015762, 0.001414914266206324, -0.010670226067304611, -0.0205986350774765, 0.014094500802457333, 0.028215494006872177, -0.006934653036296368, 0.012710219249129295, 0.005109918769448996, -0.006752511020749807, 0.035342223942279816, 0.003755442565307021, 0.005166217219084501, 0.015061510726809502, -0.01626696065068245, -0.0021608697716146708, -0.009835682809352875, 0.0177108533680439, 0.004460829775780439, 0.0269967969506979, 0.007616858929395676, 0.02702328935265541, 0.016174234449863434, 0.008742828853428364, -0.024599142372608185, -0.002039993414655328, -0.014306447468698025, 0.009974773041903973, -0.0033000868279486895, 0.005046996753662825, -0.01316060684621334, -0.01019996777176857, 0.00974957924336195, -0.014372681267559528, 0.014319694600999355, -0.005080113653093576, 0.009517761878669262, 0.024638881906867027, -0.02112850360572338, -0.010835809633135796, 0.005030438303947449, -0.016174234449863434, 0.017565138638019562, 0.004878101404756308, -0.00622595427557826, -0.0325339213013649, 0.031951066106557846, -0.012273077853024006, -0.021724605932831764, -0.0007741046720184386, 0.0056364755146205425, -0.0017204165924340487, -0.0232479777187109, -0.0340440459549427, -0.003008659230545163, 0.018320200964808464, -0.012167103588581085, 0.003369632177054882, -0.014332940801978111, 0.03388508781790733, 0.022453175857663155, 0.0019555457402020693, -0.023499665781855583, 0.01914149709045887, -0.011200093664228916, 0.005825241096317768, -0.005252320785075426, -0.023142004385590553, 0.018651368096470833, 0.0325339213013649, 0.017406178638339043, -0.017657864838838577, 0.016213973984122276, 0.04853595048189163, 0.002318174345418811, -0.012869179248809814, 0.021949799731373787, -0.0006383258732967079, -0.0039276499301195145, 0.002463888144120574, 0.02985808625817299, -0.019923053681850433, -0.017816826701164246, 0.01772409863770008, 0.0007173921912908554, 0.06872393935918808, 0.0014985341113060713, -0.006404784508049488, 0.01001451350748539, -0.015154236927628517, -0.04379362612962723, -0.115829236805439, -0.013438788242638111, 0.011074250563979149, 0.011789572425186634, 0.0085971150547266, 0.02073110267519951, -0.008193090558052063, 0.010570875369012356, -0.004603232257068157, 0.016240468248724937, -0.032639894634485245, -0.042866356670856476, 0.00764997536316514, -0.01288904994726181, 0.017260463908314705, -0.02020123414695263, 0.0009819124825298786, 0.001879377057775855, -0.0060934871435165405, 0.022453175857663155, -0.0017932734917849302, -0.013266581110656261, 0.004573427140712738, -0.02004227414727211, 0.0027950559742748737, 0.0032553791534155607, -0.027632638812065125, 0.017763840034604073, 0.03393807262182236, 0.00044293690007179976, -0.00850438792258501, -0.0028513544239103794, 0.005606670398265123, -0.0007815559511072934, -0.00042762039811350405, -0.004798620939254761, -0.02948717772960663, -0.005934526678174734, 0.021260971203446388, -0.019989287480711937, 0.003609728766605258, -0.0036163520999252796, 0.015697352588176727, -0.030467435717582703, 0.004126350395381451, -0.009179970249533653, -0.02504952996969223, 0.018174488097429276, -0.008365297690033913, -0.018174488097429276, -0.026705369353294373, 0.018850069493055344, -0.04548920691013336, -0.015167484059929848, 0.030202500522136688, -0.008828932419419289, 0.02436070144176483, 0.011776326224207878, -0.023009536787867546, -0.016399428248405457, -0.009319061413407326, 0.0008018399821594357, 0.010405291803181171, 0.015962285920977592, 0.007378417998552322, -0.010961653664708138, -0.012392298318445683, -0.037488192319869995, 0.035686638206243515, -0.0016078195767477155, -0.01683656871318817, -6.876905536046252e-05, -0.02453290857374668, 0.004464141558855772, -0.017392931506037712, 0.004699270706623793, -0.03989909216761589, 0.006057058461010456, -0.015604625456035137, 0.0007558904471807182, -0.0016955790342763066, -0.023142004385590553, -0.0007124246913008392, 0.003858104581013322, 0.0013718624832108617, 0.024585895240306854, 0.01732669770717621, -0.02450641430914402, 0.007318807765841484, -0.03764715418219566, -0.008166597224771976, 0.020095260813832283, -0.0037653776817023754, -0.029116271063685417, 0.013577878475189209, 0.03144768998026848, 0.03698481619358063, 0.017578385770320892, -0.02914276346564293, 0.015803325921297073, -0.002957328222692013, -0.008517635054886341, -0.04917179048061371, 0.03237496316432953, -0.007775819394737482, 0.00500063318759203, 0.00011332147551001981, -0.015816573053598404, 0.01645241491496563, -0.033169765025377274, -0.015207224525511265, 0.012908919714391232, -0.017989033833146095, 0.025844333693385124, -0.016134493052959442, -0.025115763768553734, -0.016863062977790833, -0.008246077224612236, 0.0016376245766878128, -0.014173980802297592, -0.00639816140756011, -0.005586800165474415, 0.019115004688501358, -0.002427459694445133, 0.03136821091175079, 0.0072989375330507755, -0.017578385770320892, 0.00778244249522686, -0.004593296907842159, 0.00884217955172062, -0.0028728803154081106, -0.006639913655817509, 0.00012315301864873618, -0.027235237881541252, 0.015193977393209934, 0.02021448127925396, 0.0014985341113060713, 0.029063284397125244, -0.007159847300499678, -3.937791916541755e-05, 0.012928789481520653, 0.056430988013744354, -0.007981142960488796, -0.009954903274774551, 0.006524004973471165, -0.014902549795806408, 0.010994769632816315, 0.03295781835913658, -0.019048770889639854, 0.01135905459523201, 0.013094373978674412, -0.01340567134320736, 0.010021137073636055, 0.03452092781662941, -0.002662588842213154, -0.011259703896939754, -0.003114632796496153, -0.020068766549229622, 0.027155756950378418, -0.005719267297536135, 0.010988146997988224, -0.03364664688706398, 0.018214227631688118, -0.014279954135417938, 0.007252574432641268, -0.00122035329695791, -0.006547186989337206, -0.027261730283498764, -0.005391411483287811, -0.011286197230219841, -0.008352051489055157, -0.016677608713507652, -0.007219457533210516, -0.004934399854391813, 0.01331294421106577, 0.017141243442893028, 0.016399428248405457, 0.013452034443616867, -0.011690222658216953, 0.01858513616025448, -0.029619645327329636, 0.02271810919046402, -0.02004227414727211, -0.018015526235103607, -0.02201603353023529, 0.017962539568543434, 0.03221600130200386, 0.004447583109140396, 0.010822562500834465, 0.01522047072649002, -0.009060749784111977, -0.0018810329493135214, 0.016306700184941292, -0.013206970877945423, 0.003344794502481818, 0.0030500551220029593, 0.012816192582249641, 0.012306194752454758, -0.011657105758786201, -0.00071573635796085, 0.027049783617258072, 0.024731609970331192, 0.002816581865772605, 0.013266581110656261, 0.007027380168437958, -0.02559264563024044, -0.00653062853962183, 0.0005745760863646865, -0.012273077853024006, -0.02361888624727726, -0.007762572728097439, 0.02306252345442772, 0.009968149475753307, 0.00859049241989851, 0.03232197463512421, 0.013617618940770626, -0.028215494006872177, 0.011564378626644611, 0.01934019848704338, 0.0004893004079349339, -0.01296852994710207, 0.029460685327649117, 0.011465027928352356, 0.01718098483979702, 0.019711105152964592, 0.012677102349698544, 0.018863316625356674, 0.022333955392241478, 0.02755315788090229, 0.014849563129246235, 0.003003691788762808, 0.0015954007394611835, -0.0018727537244558334, 0.0017899618251249194, -0.026572901755571365, 0.006232577376067638, -0.007086990401148796, -0.021737853065133095, -0.016876310110092163, 0.017790332436561584, -0.044297002255916595, 0.03483884781599045, 0.013657358475029469, -0.008246077224612236, 0.01843942143023014, 0.016770336776971817, 0.037090789526700974, 0.01752539910376072, 0.008789192885160446, 0.003709078999236226, -0.009411788545548916, 0.003772001015022397, -0.0023628820199519396, 0.028321467339992523, -0.01262411568313837, -0.012710219249129295, 0.01092191319912672, 0.0074777682311832905, 0.053410738706588745, -0.012041260488331318, -0.017286958172917366, 0.04956919327378273, -0.00786192249506712, 0.021565645933151245, -0.0077029624953866005, -0.010239707306027412, 0.003811741014942527, 0.03412352874875069, 0.01858513616025448, 0.007908286526799202, -0.02379109337925911, 0.011637235060334206, 0.026043033227324486, -0.03290482982993126, -0.005543748382478952, 0.015551638789474964, -0.00857724528759718, -0.003642845433205366, -0.015154236927628517, 0.01985681988298893, 0.010590745136141777, -0.023512911051511765, 0.0020350259728729725, -0.03205703943967819, -0.022850576788187027, 0.0160947535187006, -0.01967136561870575, -0.020148247480392456, -0.008106986992061138, -0.028718868270516396], "159d48c8-fd13-4c95-803f-2911e9c61799": [-0.0026001862715929747, -0.0071047344245016575, -0.001965953968465328, 0.001985929673537612, -0.014182833954691887, 0.0027966152410954237, 0.011086582206189632, -0.024130793288350105, -0.012764550745487213, -0.03707512840628624, 0.022186480462551117, 0.03137535974383354, 0.001057053916156292, 0.0014815401518717408, 0.01691286265850067, 0.020202215760946274, 0.036142922937870026, -0.015021818690001965, 0.007477616425603628, -0.01934991404414177, 0.02458357997238636, 0.006871683057397604, -0.036063019186258316, 0.013177384622395039, -0.01057386863976717, 0.027540002018213272, 0.03827367722988129, -0.01950971968472004, 0.01632690615952015, -0.016446761786937714, -0.017125938087701797, -0.013390460051596165, -0.00661532673984766, -0.005776342004537582, -0.006445532198995352, 0.0023305127397179604, 0.013876538723707199, -0.009408612735569477, 0.00926212314516306, -0.01992255449295044, 0.00498063862323761, 0.0204019732773304, -0.00036122946767136455, 0.011286339722573757, -0.023078734055161476, -0.0013983076205477118, 0.011432829312980175, -0.009781494736671448, -0.024197380989789963, 0.0326538123190403, 0.01208537258207798, -0.001208537258207798, -0.01804482750594616, 0.00671520596370101, -0.0016371851088479161, -0.005763025023043156, 0.012970968149602413, 0.012398327700793743, -0.005876221228390932, 0.004258179571479559, 0.01920342445373535, 0.012871088460087776, 0.0004910723073408008, -0.004321436397731304, -0.028525475412607193, -0.023984305560588837, -0.010320842266082764, -5.5141594202723354e-05, -3.937942165066488e-05, -0.01114650908857584, 0.023491567000746727, 0.021107785403728485, -0.0026051802560687065, 0.007177979219704866, 0.021374130621552467, -0.0367555133998394, -0.025768810883164406, -0.0026218267157673836, -0.013437069952487946, 0.018817225471138954, -0.004348070826381445, -0.01360353548079729, 0.005043895449489355, 0.01391648966819048, 0.009734884835779667, -0.00638893386349082, 0.01134626753628254, 0.017578724771738052, -0.04123009741306305, -0.02310536801815033, 0.015541190281510353, 0.016060560941696167, 0.0134703628718853, 0.018830543383955956, -0.00731115136295557, 0.022253066301345825, -0.04040443152189255, 0.02948431484401226, 0.005476704798638821, -0.02465016581118107, -0.010181010700762272, 0.003151186043396592, -0.01665983721613884, -0.0005152097437530756, -0.03030998259782791, 0.024050891399383545, 0.016286954283714294, 0.008622896857559681, 0.00926878210157156, -0.0038353579584509134, -0.012724598869681358, 0.0011685856152325869, -0.015501238405704498, -0.0269407257437706, -0.0036189532838761806, -0.0026900775264948606, 0.029510948807001114, -0.02507631666958332, -0.012997602112591267, -0.020308753475546837, 0.019949188455939293, 0.019882602617144585, -0.015621094033122063, -0.0025785458274185658, -0.004248191602528095, 0.009122292511165142, -0.003177820472046733, -0.04008481651544571, -0.014808743260800838, -0.0027100532315671444, 0.05047224462032318, 0.0024703433737158775, -0.01494191586971283, -0.00022410375822801143, -0.021174373105168343, 0.01895039714872837, -0.026887457817792892, 0.008509700186550617, -0.008802679367363453, -0.009821446612477303, 0.02000245824456215, -0.0018494282849133015, -0.003945224918425083, -0.02442377246916294, -0.023717960342764854, 0.02873855084180832, -0.004747587256133556, 0.017578724771738052, -0.0014199480647221208, 0.006978220771998167, 0.035477060824632645, -0.010720358230173588, 0.00545339984819293, 0.0009696597699075937, 0.013809951953589916, 0.00025885336799547076, 0.011772418394684792, 0.002743346383795142, -0.01318404357880354, 0.004927369765937328, 0.02180028147995472, 0.02261263132095337, 0.010487306863069534, -0.012711281888186932, 0.007464298978447914, 0.03281361982226372, 0.03310659900307655, -0.018497612327337265, -0.024024255573749542, -0.01436927542090416, -0.006358970422297716, 0.0002673847193364054, -0.01847097836434841, -0.005852916277945042, -0.002959751058369875, 0.007577495649456978, 0.02956421859562397, 0.021587206050753593, -0.023904401808977127, 0.0013417094014585018, -0.03086930513381958, 0.0016529993154108524, 0.022426189854741096, 0.013490338809788227, -0.023238541558384895, -0.0004015972663182765, -0.0022406214848160744, -0.00024366342404391617, 0.00035207386827096343, 0.007950377650558949, 0.012238521128892899, 0.008749410510063171, 0.005579913035035133, -0.007191296201199293, -0.6468970775604248, -0.010280890390276909, -0.019323280081152916, -0.02343829907476902, -0.02948431484401226, -0.009248806163668633, 0.010960068553686142, 0.015288162976503372, -0.018164681270718575, -0.0010395750869065523, -0.024450408294796944, -0.00792374275624752, 0.021134421229362488, -0.021427400410175323, -0.03150853142142296, -0.009541784413158894, -0.005929490085691214, -0.03691532090306282, -0.01739228330552578, -0.02620827965438366, -0.024770021438598633, 0.011292998678982258, 0.0036455877125263214, 0.006595350801944733, -0.02375791221857071, -0.013530290685594082, 0.028205862268805504, -0.02375791221857071, 0.010993361473083496, 0.038912903517484665, -0.012072055600583553, 0.030256712809205055, 0.04991292208433151, 0.006518776994198561, 0.04075067862868309, -0.0001229761546710506, -0.018191315233707428, 0.02124095894396305, 0.016353540122509003, 0.011992152780294418, -0.018484294414520264, -0.0102009866386652, 0.005802976433187723, -0.002222310286015272, -0.0013808287912979722, 0.002340500708669424, 0.006721864454448223, 0.002120766555890441, 0.005476704798638821, 0.010267573408782482, 0.0003760032413993031, 0.0027832980267703533, -0.005440082401037216, -0.012025445699691772, 0.007730643730610609, -0.003134539583697915, 0.033772457391023636, 0.016353540122509003, 2.389035580563359e-05, -0.0014157864497974515, -0.004740928765386343, 0.018550880253314972, 0.0016804661136120558, -0.014529081992805004, 0.003196131670847535, 0.009148926474153996, 0.010846871882677078, 0.017778482288122177, 0.007371078711003065, -0.02342498116195202, 0.007544202264398336, 0.010347476229071617, -0.004141653887927532, -0.020708270370960236, 0.022399555891752243, 0.011645904742181301, 0.02702062949538231, -0.028312399983406067, -0.00824335590004921, 0.024357186630368233, 0.022892292588949203, 0.0024969778023660183, -0.03944559022784233, -0.011825687251985073, 0.02662111259996891, -0.0017761836061254144, -0.026767602190375328, 0.03217439353466034, -0.00416495930403471, 0.011133192107081413, -0.0001683379232417792, 0.0102143045514822, -0.004944016225636005, -0.004171617794781923, 0.019722795113921165, 0.011133192107081413, -0.015954023227095604, 0.008709458634257317, 0.0026234914548695087, -0.027753077447414398, -0.0028115971945226192, -0.012884405441582203, 0.020961297675967216, -0.01229178998619318, 0.009668298065662384, -0.019656209275126457, -0.035157449543476105, -0.019749430939555168, 0.038673192262649536, -0.018883811309933662, 0.0033725847024470568, -0.009288758039474487, -0.011139851063489914, 0.014595667831599712, 0.011745783500373363, -0.02262594923377037, 0.02785961516201496, -0.0017212501261383295, 0.023012148216366768, -0.013064187951385975, 0.021254274994134903, -0.00026884127873927355, -0.006911634933203459, -0.006525435484945774, 0.01993587054312229, 0.02809932455420494, 0.008542994037270546, -0.002523612231016159, -0.011566001921892166, -0.012265155091881752, -0.0004919046186842024, 0.0028665305580943823, 0.008443114347755909, 0.010493965819478035, 0.0008772715809755027, -0.01253815833479166, 0.03587657958269119, -0.0031312103383243084, 0.02130754478275776, -0.03774098679423332, -0.013570242561399937, 0.012158617377281189, 0.025822080671787262, -0.014236102811992168, -0.006665266118943691, -0.05438750609755516, -0.008855948224663734, -0.018830543383955956, -0.017618676647543907, 0.01683296076953411, -0.00651544751599431, -0.013277263380587101, -0.007351102773100138, 0.007297833915799856, 0.005020590033382177, -0.0019093557493761182, -0.02719375304877758, -0.011665880680084229, 3.1862477044342086e-05, -0.017365649342536926, 0.01721915975213051, 0.025116268545389175, 0.00012505697668530047, 0.009475198574364185, 0.012884405441582203, 0.0003986841475125402, -0.01109989918768406, 0.015194942243397236, 0.0016663165297359228, -0.03774098679423332, 0.006448861677199602, -0.016286954283714294, -0.00882265530526638, 0.03896617144346237, -0.038433484733104706, -0.0014632290694862604, 0.008922534063458443, -0.014529081992805004, -0.01428937166929245, -0.0006579536711797118, -0.02579544670879841, 0.022825706750154495, 0.010933433659374714, 0.002763322088867426, 0.01780511625111103, 0.0012942668981850147, 0.007830522954463959, -0.018164681270718575, -0.001563940430060029, 0.023291809484362602, -0.0006063494365662336, 0.015008501708507538, -0.007524226792156696, -0.002177364658564329, -0.010121083818376064, 0.0024104160256683826, 0.007231248077005148, 0.017032718285918236, -0.0006696062628179789, 0.009168902412056923, 0.01506177056580782, 0.017205841839313507, 0.024770021438598633, -0.02563563920557499, -0.0009088999358937144, -0.04434632882475853, 0.0038353579584509134, -0.017605358734726906, 0.029297873377799988, -0.01813804730772972, 0.0018494282849133015, -0.02302546612918377, -0.003262717742472887, 0.0012002140283584595, 0.008622896857559681, 0.018018191680312157, 0.016939498484134674, 0.016433443874120712, -0.03257390856742859, 0.00731115136295557, 0.019909236580133438, 0.005330215208232403, -0.002132419031113386, -0.0017861714586615562, -0.024303918704390526, -0.008103525266051292, 0.014608984813094139, 0.02759326994419098, 0.012871088460087776, -0.01575426571071148, 0.012704623863101006, -0.03217439353466034, 0.0007744792965240777, 0.0013475357554852962, 0.008409821428358555, -0.002445373684167862, 0.00926212314516306, -0.019323280081152916, 0.03137535974383354, -0.01779180020093918, -0.005346862133592367, 0.007297833915799856, 0.022000038996338844, -0.02793951705098152, -0.0020125641021877527, 0.009501833468675613, 0.01828453689813614, 0.00244037969969213, 0.00813016016036272, 0.013543607667088509, -0.015328114852309227, 0.009821446612477303, -0.01887049339711666, -0.020055726170539856, 0.006721864454448223, -0.014409227296710014, -0.004671013448387384, 0.019576307386159897, -0.003161174012348056, 0.031162284314632416, 0.0009804799919947982, -0.017911653965711594, -0.01094675064086914, 0.007271199487149715, 0.03715503215789795, -0.0015572818228974938, 0.005373496562242508, 0.004158300347626209, -0.025675591081380844, -0.01240498572587967, -0.015700997784733772, -0.00614256551489234, 0.0027283644303679466, -0.005483363289386034, 0.014995184727013111, -0.01115316804498434, 0.0021007906179875135, 0.002407086780294776, 0.019749430939555168, 0.00931539200246334, -0.036702245473861694, -0.018657417967915535, 0.025249440222978592, -0.010434038005769253, -0.012005469761788845, 0.005559937562793493, -0.039898376911878586, -0.010960068553686142, -0.024929827079176903, 0.04690323397517204, -0.01147278118878603, 0.014768791384994984, 0.027912883087992668, -0.00066586077446118, 0.00696490379050374, 0.018604150041937828, 0.015075087547302246, -0.01012774184346199, 0.010347476229071617, 0.01592738926410675, -0.0022522739600390196, 0.002701730001717806, -0.0073777372017502785, 0.022173164412379265, 0.005543291103094816, -0.00349243963137269, -0.033692553639411926, -0.020774856209754944, 0.013410435989499092, -0.010960068553686142, 0.0021623829379677773, -0.039472226053476334, 0.007604130078107119, 0.013297239318490028, 0.004617744591087103, -0.0014815401518717408, -0.009401953779160976, 0.025249440222978592, 0.02646130695939064, -0.011406195349991322, 0.007277857977896929, -0.022026674821972847, -0.025249440222978592, 0.002010899595916271, 0.09034398943185806, 0.019895920529961586, -0.031135650351643562, 0.008729434572160244, -0.007723984774202108, -0.0025502466596663, -0.025023046880960464, -0.015820851549506187, 0.01602061092853546, -0.001343374140560627, -0.002104120096191764, -0.001578090013936162, 0.03046978823840618, -0.005180396605283022, 0.004447950050234795, -0.012731257826089859, -0.0061658709309995174, -0.01944313384592533, -0.006122589576989412, 0.0029963734559714794, 0.006155882962048054, 0.024770021438598633, 0.01665983721613884, 0.026581162586808205, -0.025023046880960464, -0.03518408164381981, 0.01568767987191677, 0.007164661772549152, 0.006705217994749546, -0.030576325953006744, 0.002874853787943721, 0.019469769671559334, 0.011645904742181301, 0.02221311442553997, 0.006382275372743607, 0.012125324457883835, 0.009015754796564579, 0.032227661460638046, -0.0005385148688219488, 0.018763955682516098, 0.004830820020288229, 0.006971562281250954, 0.006085967179387808, 0.0035556964576244354, 0.023638056591153145, 0.0030979171860963106, -0.0136767802760005, 0.02417074516415596, -0.0041316659189760685, -0.013137432746589184, 0.037527911365032196, 0.0023038783110678196, -0.014009710401296616, -0.01396975852549076, 0.018257902935147285, -0.008682824671268463, -0.017019400373101234, 0.011013337410986423, -0.011732466518878937, -0.0030929232016205788, -0.00040596697363071144, -0.022519411519169807, 0.015820851549506187, -0.0058961971662938595, -0.005689780227839947, -0.024610213935375214, -0.022812390699982643, 0.0026484611444175243, -0.026967361569404602, 0.02924460545182228, -0.028312399983406067, -0.03004363738000393, -0.015021818690001965, 0.00882265530526638, 0.019656209275126457, 0.007830522954463959, 0.01904361881315708, 0.0003081686736550182, -0.003032995853573084, 0.009861397556960583, -0.028765184804797173, -0.011366243474185467, 0.01322399452328682, -0.03901943936944008, 0.007131368853151798, -0.002705059479922056, 0.001267632469534874, 0.01077362708747387, -0.01033415924757719, 0.019243376329541206, -0.012997602112591267, 0.00718463771045208, 0.0036289412528276443, -0.007870473898947239, 0.02140076458454132, -0.008463090285658836, -0.009235489182174206, -0.004204910714179277, -0.002114107832312584, -0.013650145381689072, -0.006944927852600813, -0.027406828477978706, -0.004454608540982008, -0.018550880253314972, 0.016846276819705963, -0.01993587054312229, -0.0104074040427804, 0.02213321253657341, -0.01191890798509121, -0.016886228695511818, -0.0042848140001297, -0.011645904742181301, 0.003117893123999238, 0.02711385115981102, -0.03030998259782791, 0.0010004558134824038, 0.024024255573749542, -0.009934642352163792, 0.014382592402398586, -0.024224014952778816, -0.015714313834905624, -0.04623737186193466, -0.011912249028682709, 0.007810547016561031, -0.01779180020093918, 0.010673748329281807, -0.010760310105979443, -0.008662848733365536, 0.01486201211810112, -0.01404966227710247, 0.017512138932943344, 0.022319652140140533, 0.004864112939685583, -0.008503042161464691, -0.027140485122799873, -0.0023454944603145123, -0.017099304124712944, -0.008409821428358555, -0.003845345927402377, -0.0017112621571868658, -0.012571451254189014, -0.008223380893468857, -0.013743366114795208, 0.021707061678171158, -0.016220368444919586, -0.023970987647771835, -0.029138067737221718, 0.001589742605574429, 0.010600503534078598, 0.0030845999717712402, 0.007111392915248871, -0.007510909345000982, -0.023891083896160126, 0.004651037510484457, -0.019323280081152916, -0.019376548007130623, -0.012098690494894981, -0.016140464693307877, 0.03177487477660179, -0.010960068553686142, 0.04019135609269142, -0.02434386871755123, -0.011972176842391491, 0.008549652062356472, -0.0010029528057202697, 0.005416777450591326, 0.004651037510484457, -0.021933453157544136, -0.03382572531700134, -0.016193734481930733, 0.03292015567421913, 0.028312399983406067, 0.008722775615751743, -0.020029092207551003, 0.0063789463602006435, 0.02670101635158062, -0.011179802007973194, -0.00869614165276289, -0.010687065310776234, -0.02172037772834301, -0.026394721120595932, 0.013303898274898529, -0.006468837149441242, 0.02964412048459053, -0.027220388874411583, -0.016673153266310692, 0.03457149118185043, -0.008489725179970264, 0.02335839532315731, -0.006904975976794958, 0.028285766020417213, -0.017259111627936363, 0.020322071388363838, 0.0035323912743479013, 0.01747218705713749, -0.010593844577670097, 0.02644798904657364, -0.03046978823840618, -0.01278452668339014, 0.008556311018764973, 0.015780899673700333, -0.014755474403500557, -0.0060193813405931, -0.0220533087849617, -0.01600729301571846, 0.0021523949690163136, -0.018737321719527245, -0.009774835780262947, -0.003958542365580797, 0.0032810289412736893, -0.022585997357964516, -0.01392980758100748, -0.009288758039474487, -0.006355640944093466, -0.014635619707405567, 0.01311079878360033, -0.0072845169343054295, 0.026834188029170036, -0.028871722519397736, -0.019230058416724205, 0.011013337410986423, -0.010014546103775501, 0.046583618968725204, 0.029830561950802803, 0.03928578644990921, 0.012877747416496277, -0.00033105764305219054, 0.001841105055063963, 0.010107766836881638, -0.017339013516902924, 0.0029181349091231823, 0.028924992308020592, 0.026647748425602913, -0.02515622042119503, 0.007550861220806837, 0.010267573408782482, -0.016366858035326004, -0.04557150974869728, -0.03403880074620247, 0.026115059852600098, 0.0015647727996110916, 0.006402251310646534, -0.02458357997238636, 0.009455222636461258, -0.0326538123190403, 0.01102665439248085, 0.008669506758451462, 0.011306315660476685, -0.0004765065968967974, -0.007570836693048477, -0.01985596865415573, 0.012484889477491379, 0.030389884486794472, 0.01683296076953411, 0.010001229122281075, -0.023558154702186584, -0.024397138506174088, -0.005653157830238342, -0.01779180020093918, -0.012098690494894981, -0.02033538743853569, 0.013164067640900612, -0.012584768235683441, -0.004204910714179277, 0.014329323545098305, -0.012558134272694588, -0.010440696962177753, 0.0029680742882192135, -0.019456451758742332, 0.026088424026966095, 0.006345652975142002, -0.02229301817715168, -0.00359231885522604, 0.02490319311618805, 0.016393491998314857, 0.0083698695525527, 0.0017944948049262166, -0.00971490889787674, -0.02197340503334999, -0.007743960712105036, -0.00016167931607924402, 0.01626032032072544, 0.007237906567752361, -0.03371918946504593, -0.010387428104877472, -0.013690097257494926, 0.0012218544725328684, -0.004920711275190115, 0.0037121737841516733, -0.043494027107954025, -0.016300272196531296, -0.002049186499789357, -0.036063019186258316, 0.008516359142959118, -0.005962783005088568, 0.026847505941987038, -0.013836586847901344, 0.042348746210336685, -0.038247041404247284, 0.014182833954691887, -0.011692514643073082, 0.011852321214973927, -0.03704849258065224, 0.0007145518320612609, 0.004744257777929306, -0.0257155429571867, 0.009328708983957767, -0.019909236580133438, -0.030496422201395035, -0.0042348746210336685, 0.014955232851207256, 0.005842928308993578, -0.0076773748733103275, -0.008542994037270546, 0.006105943117290735, -0.007417689077556133, -0.0010487306863069534, -0.010041180066764355, -0.03587657958269119, 0.022253066301345825, 0.02449035830795765, -0.010394086129963398, 0.011512733064591885, -0.00996127724647522, 0.0449322834610939, -0.010367452166974545, -0.007098075933754444, 0.02213321253657341, -0.03608965501189232, 0.026834188029170036, -0.006931610405445099, 0.026607796549797058, 5.649412560160272e-05, 0.009075682610273361, -0.02881845459342003, -0.01853756420314312, -0.008542994037270546, -0.001127801719121635, 0.006865024566650391, -0.005097164306789637, -0.000881433195900172, 0.03158843517303467, -0.017458869144320488, -0.020561780780553818, 0.001812805887311697, 0.009681615978479385, 0.004178276285529137, 0.011399536393582821, -0.048954084515571594, -0.013157408684492111, 0.0029797269962728024, 0.032946791499853134, -0.012791185639798641, -0.00971490889787674, -0.01315074972808361, -0.03339957445859909, -0.0408305823802948, -0.01681964285671711, 0.007011513691395521, 0.030336616560816765, 0.03158843517303467, 0.025848714634776115, 0.021027883514761925, 0.02138744853436947, -0.02385113202035427, 0.012198569253087044, -0.0020674976985901594, -0.008509700186550617, -0.024224014952778816, 0.014222785830497742, -0.0023188600316643715, -0.0024487029295414686, -0.02595525234937668, 0.0037354789674282074, 0.017818434163928032, 0.004374705255031586, -0.02418406307697296, 0.01506177056580782, 0.008796020410954952, 0.025009730830788612, -0.018670735880732536, 0.006325677502900362, 0.024690117686986923, -0.012012127786874771, -0.006209151819348335, -0.010760310105979443, -0.020601732656359673, 0.004371375776827335, -0.01195885892957449, -0.03526398539543152, -0.028605379164218903, 0.005123798735439777, -0.002769980812445283, 0.00869614165276289, -0.016446761786937714, -0.029031530022621155, -0.0083765285089612, -0.03201458603143692, 0.044452864676713943, -0.008929193019866943, -0.01229178998619318, 0.02311868593096733, 0.007271199487149715, -0.02286565862596035, -0.0012917699059471488, 0.03174824267625809, 0.011819028295576572, -0.02221311442553997, 0.03126882016658783, -0.026514574885368347, 0.0017145915189757943, -0.00792374275624752, 0.006585362832993269, -0.004890747368335724, 0.012924357317388058, -0.0015314797637984157, -0.009108975529670715, -0.012578110210597515, 0.024437090381979942, 0.03070949949324131, -0.024929827079176903, -0.005566596053540707, -0.0030762767419219017, 0.006858366075903177, 0.030496422201395035, -0.005776342004537582, -0.014382592402398586, -0.012331741861999035, 0.025169536471366882, 0.0027583283372223377, -0.0014440855011343956, -0.0003508254012558609, -0.007943718694150448, 0.02743346430361271, -0.03366592153906822, 0.010287548415362835, 0.1845233291387558, -0.033186499029397964, 0.01977606490254402, 0.02817922830581665, -0.017032718285918236, 0.008136818185448647, 0.02310536801815033, 0.012824478559195995, -0.016060560941696167, -0.006555399391800165, -0.019549671560525894, 0.023651374503970146, 0.001533144386485219, 0.010627137497067451, 0.0002505301090423018, 0.0027167119551450014, -0.05071195587515831, -0.006731852423399687, -0.005416777450591326, -0.026887457817792892, 0.005420106463134289, -0.009894691407680511, -0.009621688164770603, -0.01229178998619318, 0.002007570117712021, -0.003519074060022831, -0.02833903394639492, -0.002774974796921015, 0.03896617144346237, 0.006602009292691946, -0.0153147978708148, -0.005553278606384993, -0.0012443272862583399, -0.009015754796564579, -0.03699522465467453, 0.008070232346653938, 0.027753077447414398, 0.012844454497098923, 0.014142883010208607, -0.009921325370669365, 0.01167253963649273, -0.011752442456781864, -0.01286443043500185, -0.00485745444893837, -0.01618041656911373, 0.024623531848192215, -0.006678583566099405, -0.01640680991113186, -0.00832325965166092, 0.009748201817274094, -0.01391648966819048, -0.0008864271221682429, 0.04237537831068039, 0.025182854384183884, 0.0033209805842489004, -0.02342498116195202, 0.008416480384767056, 0.028472205623984337, -0.025782128795981407, 0.006332335993647575, -0.013783317990601063, 0.025928618386387825, -0.020228849723935127, 0.04141654074192047, -0.016859594732522964, 0.014648936688899994, -0.003241077298298478, -0.01416951697319746, 0.016273636370897293, -0.031162284314632416, -0.013410435989499092, -0.017032718285918236, -0.005137115716934204, 0.01261140312999487, -0.0016646519070491195, -0.014768791384994984, 0.041523076593875885, -0.023877767845988274, 0.004378034733235836, 0.01044735498726368, -0.0009721567039377987, -0.018164681270718575, 0.0009130615508183837, -0.01618041656911373, 0.019230058416724205, -0.035157449543476105, 0.002640137914568186, -0.023478250950574875, -0.016779690980911255, 0.016619885340332985, -0.01861746795475483, -0.01404966227710247, 0.011312974616885185, -0.009328708983957767, 0.012318423949182034, -0.00347912241704762, 0.008995778858661652, 0.005996076390147209, 0.003565684426575899, 0.004194922745227814, -0.016193734481930733, -0.0016055568121373653, 0.02302546612918377, -0.00141911581158638, -0.02108115144073963, -0.01122641284018755, 0.0059860884211957455, -0.005370167084038258, -0.002120766555890441, 0.007783912587910891, 0.006578704342246056, -0.006918293423950672, -0.0035623551812022924, -0.01829785294830799, -0.004045104142278433, 0.0269407257437706, -0.013084163889288902, -0.006292384117841721, 0.018231267109513283, 0.019895920529961586, 0.0037055150605738163, -0.022719169035553932, 0.005177067592740059, -0.004784209653735161, -0.010400745086371899, -0.0016172092873603106, -0.006418897770345211, 0.02825913019478321, -0.0043247658759355545, -0.008656189776957035, 0.011605952866375446, -0.03419860824942589, 0.003089593956246972, 0.0017895008204504848, -0.016886228695511818, 0.015368066728115082, -0.005663145799189806, -0.025036364793777466, 0.007138027343899012, -0.008762727491557598, -0.0053235567174851894, 0.006222468800842762, -0.005213689990341663, 0.008023622445762157, -0.006845048628747463, -0.0013641822151839733, 0.030576325953006744, -0.01209203153848648, 0.016393491998314857, -0.02825913019478321, -0.01664651930332184, -0.0019426487851887941, -0.00683839013800025, -0.009934642352163792, 0.010340817272663116, -0.01053391769528389, -0.004274826031178236, -0.026234913617372513, -0.003392560640349984, 0.008622896857559681, -0.03635599836707115, 0.012917699292302132, 0.0240775253623724, 0.01392980758100748, -0.016606567427515984, 0.004301460459828377, -0.16886228322982788, 0.024437090381979942, 0.0052336654625833035, -0.0031694972421973944, 0.02050851099193096, 0.02825913019478321, 0.013863220810890198, 0.009575078263878822, -7.506539986934513e-05, -0.011432829312980175, 0.03036325052380562, -0.0007432670681737363, -0.022799072787165642, -0.010227621532976627, -0.019070252776145935, 0.0075575197115540504, -0.01909688673913479, 0.010846871882677078, 0.037288203835487366, 0.01114650908857584, 0.008709458634257317, -0.005490022245794535, 0.034917738288640976, 0.01820463314652443, -0.001985929673537612, 0.01780511625111103, 0.017605358734726906, 0.027912883087992668, 0.0006829234771430492, -0.008043598383665085, -0.015807535499334335, 0.009441905654966831, 0.003459146711975336, -0.005539961624890566, 0.02442377246916294, -0.0019076911266893148, -0.006458849646151066, -0.0013125779805704951, -0.008156794123351574, 0.012298448011279106, 0.01310413982719183, -0.007078099995851517, 0.023145319893956184, -0.012358375824987888, -0.005490022245794535, 0.031162284314632416, 0.004378034733235836, 0.008056915365159512, 0.00283823162317276, -0.030496422201395035, -0.01196551788598299, -0.001298428513109684, 0.017858386039733887, -0.008809338323771954, 0.026567844673991203, 0.002250609453767538, 0.03992501273751259, 0.009275440126657486, 0.020188897848129272, -0.014316006563603878, 0.010114424861967564, -0.010014546103775501, 0.00021245119569357485, -0.01691286265850067, 0.009082340635359287, -0.033372942358255386, -0.02310536801815033, -0.00547337532043457, -0.027619903907179832, 0.01277786772698164, 0.011506074108183384, 0.00951515045017004, 0.04338748753070831, 0.0026501258835196495, -0.008196745999157429, -0.011885615065693855, -0.021041199564933777, 0.008636213839054108, -0.0031378688290715218, -0.0037254909984767437, -0.024357186630368233, 0.023571470752358437, -0.008469749242067337, -0.0014507441082969308, -0.0005097996327094734, -0.008969144895672798, -0.018763955682516098, -0.009408612735569477, -0.018883811309933662, -0.007817205041646957, 0.007577495649456978, -0.009228830225765705, -0.004051762633025646, -0.005979429464787245, 0.016380174085497856, 0.006871683057397604, 0.00042011652840301394, -0.019309962168335915, 0.017592040821909904, -0.023211905732750893, -0.009854739531874657, -0.0065320939756929874, -0.012391668744385242, 0.02783297933638096, 0.029937099665403366, 0.011945541948080063, -0.013197360560297966, 0.015021818690001965, 0.026501258835196495, 0.01221188623458147, -0.02343829907476902, 0.014995184727013111, 0.011792394332587719, -0.001987594412639737, 0.01740560121834278, 0.03361264988780022, -0.008835972286760807, -0.01944313384592533, 0.03030998259782791, 0.01167253963649273, 0.06360302120447159, -0.007544202264398336, -0.011166485026478767, 0.01624700240790844, -0.0007162165129557252, -0.03707512840628624, -0.10003892332315445, 0.008729434572160244, 0.0027100532315671444, 0.027326926589012146, -0.01355692557990551, 0.02849884144961834, -0.025502467527985573, 0.01599397510290146, 0.026168327778577805, 0.010174352675676346, -0.009781494736671448, -0.016100512817502022, 0.0036788806319236755, -0.0008231703541241586, 0.024157429113984108, -0.014116248115897179, -0.00046360556734725833, -0.015075087547302246, 0.0016588256694376469, 0.0253160260617733, 0.001135292579419911, -0.007151344791054726, -0.0026767603121697903, -0.019882602617144585, 0.008183429017663002, -0.0014723846688866615, -0.047089673578739166, 0.0050805178470909595, 0.03214775770902634, 0.017285745590925217, 0.000255316001130268, -0.026168327778577805, 0.0006558728637173772, 0.004587780684232712, 0.020801490172743797, 0.002843225374817848, -0.01634022407233715, -0.0015714314067736268, 0.02825913019478321, -0.03731483593583107, -0.0007074770401231945, -0.011013337410986423, 0.021334178745746613, -0.022319652140140533, 0.015780899673700333, -0.010300866328179836, -0.02221311442553997, 0.015008501708507538, 0.021920137107372284, -0.037448011338710785, -0.012797843664884567, 0.007843839935958385, -0.03252064064145088, -0.022719169035553932, 0.027992786839604378, 0.003502427600324154, 0.013124115765094757, -0.0074975923635065556, -0.021747013553977013, -0.004444620572030544, -0.020135629922151566, -0.010627137497067451, 0.006115931086242199, 0.024317234754562378, 0.014422544278204441, -0.010067814961075783, 0.0005509997718036175, -0.01523489411920309, 0.027087215334177017, -0.010114424861967564, -0.018391074612736702, 0.00906902365386486, -0.02702062949538231, 0.0044179861433804035, -0.02515622042119503, 0.0008739422773942351, -0.0359032116830349, -0.0051004933193326, -0.0027117179706692696, 0.0034957691095769405, 0.008409821428358555, -0.014062979258596897, -0.019656209275126457, 0.015274845995008945, -0.0060759796760976315, 0.01739228330552578, 0.005137115716934204, 0.002681754296645522, -0.0062590911984443665, -0.04253518581390381, 0.008975802920758724, 0.028765184804797173, -0.012697964906692505, -0.009288758039474487, 0.0257155429571867, 0.030736133456230164, 0.006978220771998167, 0.009861397556960583, -0.016446761786937714, -0.0034891103859990835, -0.021134421229362488, -0.002959751058369875, -0.07052797079086304, 0.03494437411427498, 0.009654981084167957, 0.012145300395786762, 0.007704009301960468, -0.008902558125555515, 0.001177741214632988, -0.028951626271009445, -0.026927409693598747, 0.015354749746620655, -0.009308733977377415, 0.030842671170830727, -0.02285234071314335, -0.02399762161076069, -0.02050851099193096, -0.009095657616853714, -0.014755474403500557, -0.017245793715119362, 0.010846871882677078, -0.0004138740769121796, -0.000957174866925925, -0.0017312379786744714, 0.040963754057884216, 0.024596896022558212, -0.027912883087992668, 0.0036056360695511103, 0.009461881592869759, 0.014715522527694702, -0.006139236502349377, -0.025089634582400322, 0.012125324457883835, -0.027912883087992668, 0.03329303860664368, 0.00416495930403471, 0.006775133311748505, 0.017046036198735237, -0.0028798477724194527, -0.0034891103859990835, 0.014595667831599712, 0.044133253395557404, -0.021440716460347176, 0.0032094488851726055, 0.009408612735569477, -0.03323977068066597, 0.004557816777378321, 0.03204122185707092, -0.023944353684782982, -0.007171320263296366, 0.02138744853436947, 0.011645904742181301, 0.026581162586808205, 0.029617486521601677, -0.0016721428837627172, -0.02556905336678028, 0.015820851549506187, -0.011093240231275558, 0.038353580981492996, -0.01796492375433445, 0.01927001029253006, -0.012970968149602413, 0.021187689155340195, -0.005273617338389158, 0.012265155091881752, -0.0033725847024470568, 0.008196745999157429, -0.034598127007484436, 0.001706268172711134, -0.008542994037270546, -0.02556905336678028, -0.03249400481581688, 0.013863220810890198, -0.005193714052438736, -0.0015531202079728246, 0.01852424629032612, 0.011173143982887268, 0.021134421229362488, -0.01135292649269104, 0.015447969548404217, -0.03241410106420517, -0.00033272229484282434, -0.0073044924065470695, -0.003519074060022831, -0.036063019186258316, 0.0008127663168124855, 0.018897129222750664, 0.006705217994749546, 0.023211905732750893, 0.011546025983989239, -0.00463106157258153, 0.006418897770345211, 0.008023622445762157, -0.013956441543996334, -0.0022522739600390196, 0.00626907916739583, -0.005916173104196787, 0.02652789279818535, -0.00943524669855833, -0.006671925075352192, 0.030682863667607307, 0.02506299875676632, -0.001703771180473268, 0.014995184727013111, -0.007051465567201376, -0.027180436998605728, -0.007024831138551235, -0.004810844082385302, -0.010400745086371899, -0.01780511625111103, 0.012744574807584286, 0.02130754478275776, 0.0030979171860963106, 0.002293890342116356, 0.029004894196987152, 0.012078714556992054, -0.03012354113161564, 0.0039019440300762653, 0.0021057846024632454, 1.0274023907186347e-06, -0.01895039714872837, 0.028924992308020592, 0.006558728404343128, 0.022359604015946388, 0.03249400481581688, -0.010993361473083496, 0.020295435562729836, 0.0020575097296386957, 0.02146735042333603, 0.025502467527985573, 0.018803907558321953, 0.01634022407233715, -0.01318404357880354, -0.009282099083065987, -0.045278530567884445, 0.012464913539588451, 0.01265801303088665, -0.015115039423108101, -0.008922534063458443, 0.020601732656359673, -0.023717960342764854, 0.047329384833574295, 0.015274845995008945, -0.012271814048290253, 0.018191315233707428, 0.003805394284427166, 0.026354769244790077, 0.03174824267625809, 0.0021573889534920454, -0.005190384574234486, -0.020788172259926796, -0.007610788568854332, -0.004011811222881079, 0.002132419031113386, -0.03558360040187836, -0.010434038005769253, 0.009874715469777584, -0.003330968553200364, 0.04834149032831192, -0.0071047344245016575, -0.009155585430562496, 0.018177999183535576, 0.0023421652149409056, 0.03198795020580292, -0.009588395245373249, -0.011199777945876122, -0.0016438437160104513, 0.028871722519397736, 0.02016226388514042, 0.007164661772549152, -0.04890081658959389, 0.00988137349486351, 0.015008501708507538, -0.013610194437205791, 0.002114107832312584, 0.013583559542894363, 0.0054300944320857525, 0.00881599634885788, -0.012424961663782597, 0.019136838614940643, -0.007437664549797773, 0.006355640944093466, 0.008423138409852982, -0.023944353684782982, -0.016859594732522964, -0.002260597189888358, -0.002189017366617918, -0.01847097836434841, 0.002546917414292693, -0.034092072397470474]}, "text_id_to_ref_doc_id": {"394c9dac-edf6-460f-8d10-7fe768e2faa0": "b8d37ed3-5853-4e84-abaf-383854262f57", "00f48ac0-7d0e-4932-94d5-dcac9fa2f464": "b8d37ed3-5853-4e84-abaf-383854262f57", "b2e27a96-7e05-480c-af42-4c8d46f176a5": "b8d37ed3-5853-4e84-abaf-383854262f57", "4a08a25c-d4af-497c-a9c9-1242f8a70288": "b8d37ed3-5853-4e84-abaf-383854262f57", "35942426-973e-40ba-8ddb-dc021eef99a7": "b8d37ed3-5853-4e84-abaf-383854262f57", "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d": "b8d37ed3-5853-4e84-abaf-383854262f57", "33597818-1347-4f76-82b5-9298ad6b85ec": "b8d37ed3-5853-4e84-abaf-383854262f57", "0bf97244-5c2a-46a2-93eb-5681b6e3603f": "b8d37ed3-5853-4e84-abaf-383854262f57", "05b25dd3-fcd6-4208-98cb-23898b8eb145": "b8d37ed3-5853-4e84-abaf-383854262f57", "6186a446-c6d5-421f-a96f-a3b0557e8f29": "b8d37ed3-5853-4e84-abaf-383854262f57", "44711054-f60b-48be-bac6-de1cf1a7a248": "b8d37ed3-5853-4e84-abaf-383854262f57", "c8cdc069-9aeb-4fbd-8742-e24d08c3110e": "b8d37ed3-5853-4e84-abaf-383854262f57", "7318107a-b5ef-494e-b40c-7110d5922133": "b8d37ed3-5853-4e84-abaf-383854262f57", "16b04150-d493-4e6a-873b-caa163919222": "b8d37ed3-5853-4e84-abaf-383854262f57", "454956ef-4506-409a-8b25-5347b1d44364": "b8d37ed3-5853-4e84-abaf-383854262f57", "1292df42-a044-42e6-8efa-55769e419713": "b8d37ed3-5853-4e84-abaf-383854262f57", "95c0e825-1aa3-401a-b550-3a338345ee07": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "7a31b6eb-af47-4d34-9f2a-26ba64b2132b": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "faa0d074-69af-4556-b6d5-0e11f5deacaa": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "636c1409-349f-4f40-9393-4ceec55a5fdc": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "f22be064-6012-4722-a832-a61abf306896": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "53f5faff-bf43-4d45-a7c4-147fbc37536f": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b3444ff9-4f43-490b-a0b9-dc866de39ee4": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "25bb1a78-5d33-4084-95c3-d35004d19e14": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "87ead4aa-923c-424d-834e-7c1ae7f2b7ea": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "7d6cf556-eaa4-4670-8729-534daa57c8f7": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "884f1a2d-bc91-4e73-89bb-970fbdd681b0": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "862dbfdd-c488-4f3a-91b5-c339bc5f16bb": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "53f6a2ac-8c4f-45b9-906b-04d3d023970b": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "c1056adb-88bc-4b55-813f-b36ca57ab40a": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b607bba1-a2e4-46bb-b3c9-860812bc7f98": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "959ecb33-6cbf-4d64-83df-89efff550a84": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "e82c6ebc-eedb-4585-b85a-b25eb370b24c": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "8f0fec39-2a1f-4177-801d-bf302b6f63a1": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "300c85a4-9959-45d3-ac1d-29dab974439d": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "9f9746bb-a323-4f71-86a3-cc9695cab68f": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "5fde48b8-41f2-449a-b8e7-acd042828b18": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "53760522-dbe6-4ac0-8639-cf27672ecb67": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ff57d127-4592-40df-a7f3-d3775d9dda96": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "679c948a-9f6c-4fb6-96a3-5140a1d414ea": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "c1b4432b-c5f5-4740-95c6-65ea65531886": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "9edd2eb0-12b6-4c60-a46d-cd8e72094039": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "aae7cfcc-6c08-453f-ab0c-5ff181a9179c": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "d93294c3-17e5-4aaa-884e-5512c0c0efb3": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "137b3a3c-65e3-438c-ae73-8ccc28f98989": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "678ed4e5-6404-4e3e-930d-8a207e7e7f9e": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "91a3813d-a46d-4d95-912d-81720be7f257": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "1ed6bef4-1638-404b-b411-c62b323fb53d": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "39ea826e-14f0-4873-b261-c728416c70d6": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ba61c6e8-8551-45a2-9553-eb9a23327a2a": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "239b1b79-9c6c-45a2-8a7d-23907d3d49cd": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "247ce3dd-5212-4993-aef1-f0b3f2b2b74b": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "045f61f9-9293-4f49-b6a3-d469a97bdd40": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "087ce84a-d71a-4509-b1c4-02eed6a01c55": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "3f258c1f-302b-4608-8d7f-e978d750bb94": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b0788e95-0eb3-4781-a5c4-6ab254dde2b4": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "caea2eb3-2440-402b-a754-d7241b778d0c": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ce5339e2-00c6-4d41-968b-ec5df76094a2": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "fe23a794-14f9-4bb1-a9af-04af7c6af177": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "7f149944-d172-468e-a92a-f912b0b26588": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "866fbd24-cf42-4960-93a6-a278757af43f": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "07cf6531-4e64-4af4-b460-1d18d4faca07": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "39984902-5d3c-42d9-85df-e181705d91db": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "49cf8419-286b-45b6-b988-2391c4f5e938": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "707c2bc5-7953-4801-bbb2-23cdba3b6e37": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "727f69f9-c74c-4dfc-875a-b00f9dd8a474": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "5f138b06-5f92-4c93-821f-3ab574291705": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "3d0dcede-eb5e-41a9-8833-7b47a735a513": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "d5cb66d8-0121-41b0-8622-71f33c008d06": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "8db11bd6-7d27-4424-b353-23f702906949": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "3df58f33-ab5b-458c-801a-0495b7bf7f36": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "f2c24cce-05fc-4cc0-912b-6a88b122e069": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "7264d468-2455-4b35-b331-6195c8c8b928": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ab546a42-b0aa-4a4e-a411-32be5422b8cb": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "43f99e98-de95-4dbb-bc53-9ec7f304c384": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "255e1ca5-3563-4b20-8349-2167ee5fd3f9": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "f38b34af-f8a3-406f-8721-ff6b81fba668": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "e5edb519-c22d-4cc9-972e-f77b5d9a847c": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "96cc4aa4-b416-414e-acdd-9a35ee84eef1": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "276cbe98-8f2b-4a17-a108-ba152936e64b": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "e2204911-729c-4071-a5a9-d0929f7624b9": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "4aecb527-1848-4012-913d-a9224fed74f7": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "c7cee09a-69d5-4164-a802-929633e929fc": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "d72026e6-8981-4646-a2aa-f11abe39ee29": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "88e6f3ff-27c3-4483-9ac0-09d2d26b375b": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "f63a4a3e-d832-4c72-9c51-acb38581be96": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "9c95fe58-257d-492e-91dd-12dfde2c9b30": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b049e56c-c3b5-451f-b328-61a3d402a490": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "9f9d7ac2-3a52-4209-a612-a3794d2d58f1": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "365f6410-d20c-4335-b1cf-2d7930998c5b": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "d926438b-e71f-4f0e-95d1-7001ae36c6a8": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "a0cb8359-3051-4858-b90b-781dbb3e58f9": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "9dd03b9a-253b-42c9-b15a-423846fbd0be": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "981a4157-1137-47cf-9800-5dd6a7c228b0": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "9abd9405-55a9-4d13-8ba2-40320a078460": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "9af733fa-f391-4c75-b19d-473c39a24b31": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "986d02bb-c253-43cd-9327-ef021633ec9c": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "eca36859-775c-49bf-a08a-4857f3a2db0b": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "283a69e0-0505-4ad0-a408-8fdd7b248630": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "0e54bae5-ac11-4559-a33e-b44322f831cf": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "9bc60d7e-bc1b-4217-ad63-2dc3da936675": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "90cca82e-664f-445b-bd5f-04c51061ca74": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "fc5915cc-ba5a-408a-a36a-ee6ea2d663de": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "5cf82a63-947d-4b5a-817e-482767927e49": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "c3564b7f-c9b5-4152-9176-c5e4f64076cf": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "0fbaad3b-553c-4cde-bc8f-51c1001280dd": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "065a0519-9216-4d9d-ac5c-74e8811f5f4c": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "a78b0967-45af-4804-a706-7989c942dae7": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "30900bf0-7814-4adf-bdf7-adf52c018283": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "7cbc4388-d621-4238-98da-22913b684ab8": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b36e4b7d-f46c-4934-810f-2b4d9c71aff0": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "32054d58-0f2d-4904-9802-5ba83f0494f7": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "7943ca32-20c1-4d02-8565-47383c9d26d1": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "940653d8-76b4-492d-9564-1cad868963e8": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "f13b02ca-0937-4928-8c7c-7aa944292c98": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "a0c3e794-d4d9-4f13-ad96-69923bf15366": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "5af05e5b-2747-4c9f-99f3-cfc98be0b43d": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "7321ed9b-9841-4fda-b805-2dc6cd5c6c63": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "d90ad960-a3c2-473c-a61f-0725b4354690": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "27d3c00c-c824-410a-b23c-a46312a398b5": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "8547e0e0-3bfa-40d6-9e96-e645d4e7de70": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "e55bef39-937d-47e6-ac42-68455994076e": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "c315e6be-d862-411c-9881-e6f482a97b77": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "88434af3-c6aa-4172-9365-434929f65f44": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "743f653f-7bc9-4e47-8a7b-ee3da4505e28": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "b3cf7695-1a41-4b75-bc07-fb9c11b286e8": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "faeda718-1ed2-4c16-a6de-2901b1130c6d": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "159d48c8-fd13-4c95-803f-2911e9c61799": "2e16a979-87c8-430c-96ce-5b741d967b01"}, "metadata_dict": {"394c9dac-edf6-460f-8d10-7fe768e2faa0": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "00f48ac0-7d0e-4932-94d5-dcac9fa2f464": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "b2e27a96-7e05-480c-af42-4c8d46f176a5": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "4a08a25c-d4af-497c-a9c9-1242f8a70288": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "35942426-973e-40ba-8ddb-dc021eef99a7": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "33597818-1347-4f76-82b5-9298ad6b85ec": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "0bf97244-5c2a-46a2-93eb-5681b6e3603f": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "05b25dd3-fcd6-4208-98cb-23898b8eb145": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "6186a446-c6d5-421f-a96f-a3b0557e8f29": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "44711054-f60b-48be-bac6-de1cf1a7a248": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "c8cdc069-9aeb-4fbd-8742-e24d08c3110e": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "7318107a-b5ef-494e-b40c-7110d5922133": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "16b04150-d493-4e6a-873b-caa163919222": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "454956ef-4506-409a-8b25-5347b1d44364": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "1292df42-a044-42e6-8efa-55769e419713": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "95c0e825-1aa3-401a-b550-3a338345ee07": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7a31b6eb-af47-4d34-9f2a-26ba64b2132b": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "faa0d074-69af-4556-b6d5-0e11f5deacaa": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "636c1409-349f-4f40-9393-4ceec55a5fdc": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f22be064-6012-4722-a832-a61abf306896": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "53f5faff-bf43-4d45-a7c4-147fbc37536f": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b3444ff9-4f43-490b-a0b9-dc866de39ee4": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "25bb1a78-5d33-4084-95c3-d35004d19e14": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "87ead4aa-923c-424d-834e-7c1ae7f2b7ea": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7d6cf556-eaa4-4670-8729-534daa57c8f7": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "884f1a2d-bc91-4e73-89bb-970fbdd681b0": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "862dbfdd-c488-4f3a-91b5-c339bc5f16bb": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "53f6a2ac-8c4f-45b9-906b-04d3d023970b": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c1056adb-88bc-4b55-813f-b36ca57ab40a": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b607bba1-a2e4-46bb-b3c9-860812bc7f98": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "959ecb33-6cbf-4d64-83df-89efff550a84": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "e82c6ebc-eedb-4585-b85a-b25eb370b24c": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "8f0fec39-2a1f-4177-801d-bf302b6f63a1": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "300c85a4-9959-45d3-ac1d-29dab974439d": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9f9746bb-a323-4f71-86a3-cc9695cab68f": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5fde48b8-41f2-449a-b8e7-acd042828b18": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "53760522-dbe6-4ac0-8639-cf27672ecb67": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ff57d127-4592-40df-a7f3-d3775d9dda96": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "679c948a-9f6c-4fb6-96a3-5140a1d414ea": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c1b4432b-c5f5-4740-95c6-65ea65531886": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9edd2eb0-12b6-4c60-a46d-cd8e72094039": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "aae7cfcc-6c08-453f-ab0c-5ff181a9179c": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d93294c3-17e5-4aaa-884e-5512c0c0efb3": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "137b3a3c-65e3-438c-ae73-8ccc28f98989": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "678ed4e5-6404-4e3e-930d-8a207e7e7f9e": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "91a3813d-a46d-4d95-912d-81720be7f257": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "1ed6bef4-1638-404b-b411-c62b323fb53d": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "39ea826e-14f0-4873-b261-c728416c70d6": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ba61c6e8-8551-45a2-9553-eb9a23327a2a": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "239b1b79-9c6c-45a2-8a7d-23907d3d49cd": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "247ce3dd-5212-4993-aef1-f0b3f2b2b74b": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "045f61f9-9293-4f49-b6a3-d469a97bdd40": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "087ce84a-d71a-4509-b1c4-02eed6a01c55": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "3f258c1f-302b-4608-8d7f-e978d750bb94": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b0788e95-0eb3-4781-a5c4-6ab254dde2b4": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "caea2eb3-2440-402b-a754-d7241b778d0c": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ce5339e2-00c6-4d41-968b-ec5df76094a2": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "fe23a794-14f9-4bb1-a9af-04af7c6af177": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7f149944-d172-468e-a92a-f912b0b26588": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "866fbd24-cf42-4960-93a6-a278757af43f": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "07cf6531-4e64-4af4-b460-1d18d4faca07": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "39984902-5d3c-42d9-85df-e181705d91db": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "49cf8419-286b-45b6-b988-2391c4f5e938": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "707c2bc5-7953-4801-bbb2-23cdba3b6e37": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "727f69f9-c74c-4dfc-875a-b00f9dd8a474": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5f138b06-5f92-4c93-821f-3ab574291705": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "3d0dcede-eb5e-41a9-8833-7b47a735a513": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d5cb66d8-0121-41b0-8622-71f33c008d06": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "8db11bd6-7d27-4424-b353-23f702906949": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "3df58f33-ab5b-458c-801a-0495b7bf7f36": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f2c24cce-05fc-4cc0-912b-6a88b122e069": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7264d468-2455-4b35-b331-6195c8c8b928": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ab546a42-b0aa-4a4e-a411-32be5422b8cb": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "43f99e98-de95-4dbb-bc53-9ec7f304c384": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "255e1ca5-3563-4b20-8349-2167ee5fd3f9": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f38b34af-f8a3-406f-8721-ff6b81fba668": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "e5edb519-c22d-4cc9-972e-f77b5d9a847c": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "96cc4aa4-b416-414e-acdd-9a35ee84eef1": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "276cbe98-8f2b-4a17-a108-ba152936e64b": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "e2204911-729c-4071-a5a9-d0929f7624b9": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "4aecb527-1848-4012-913d-a9224fed74f7": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c7cee09a-69d5-4164-a802-929633e929fc": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d72026e6-8981-4646-a2aa-f11abe39ee29": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "88e6f3ff-27c3-4483-9ac0-09d2d26b375b": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f63a4a3e-d832-4c72-9c51-acb38581be96": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9c95fe58-257d-492e-91dd-12dfde2c9b30": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b049e56c-c3b5-451f-b328-61a3d402a490": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9f9d7ac2-3a52-4209-a612-a3794d2d58f1": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "365f6410-d20c-4335-b1cf-2d7930998c5b": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d926438b-e71f-4f0e-95d1-7001ae36c6a8": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "a0cb8359-3051-4858-b90b-781dbb3e58f9": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9dd03b9a-253b-42c9-b15a-423846fbd0be": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "981a4157-1137-47cf-9800-5dd6a7c228b0": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9abd9405-55a9-4d13-8ba2-40320a078460": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9af733fa-f391-4c75-b19d-473c39a24b31": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "986d02bb-c253-43cd-9327-ef021633ec9c": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "eca36859-775c-49bf-a08a-4857f3a2db0b": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "283a69e0-0505-4ad0-a408-8fdd7b248630": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "0e54bae5-ac11-4559-a33e-b44322f831cf": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9bc60d7e-bc1b-4217-ad63-2dc3da936675": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "90cca82e-664f-445b-bd5f-04c51061ca74": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "fc5915cc-ba5a-408a-a36a-ee6ea2d663de": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5cf82a63-947d-4b5a-817e-482767927e49": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c3564b7f-c9b5-4152-9176-c5e4f64076cf": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "0fbaad3b-553c-4cde-bc8f-51c1001280dd": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "065a0519-9216-4d9d-ac5c-74e8811f5f4c": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "a78b0967-45af-4804-a706-7989c942dae7": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "30900bf0-7814-4adf-bdf7-adf52c018283": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7cbc4388-d621-4238-98da-22913b684ab8": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b36e4b7d-f46c-4934-810f-2b4d9c71aff0": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "32054d58-0f2d-4904-9802-5ba83f0494f7": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7943ca32-20c1-4d02-8565-47383c9d26d1": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "940653d8-76b4-492d-9564-1cad868963e8": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f13b02ca-0937-4928-8c7c-7aa944292c98": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "a0c3e794-d4d9-4f13-ad96-69923bf15366": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5af05e5b-2747-4c9f-99f3-cfc98be0b43d": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7321ed9b-9841-4fda-b805-2dc6cd5c6c63": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d90ad960-a3c2-473c-a61f-0725b4354690": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "27d3c00c-c824-410a-b23c-a46312a398b5": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "8547e0e0-3bfa-40d6-9e96-e645d4e7de70": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "e55bef39-937d-47e6-ac42-68455994076e": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c315e6be-d862-411c-9881-e6f482a97b77": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "88434af3-c6aa-4172-9365-434929f65f44": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "743f653f-7bc9-4e47-8a7b-ee3da4505e28": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b3cf7695-1a41-4b75-bc07-fb9c11b286e8": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "faeda718-1ed2-4c16-a6de-2901b1130c6d": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "159d48c8-fd13-4c95-803f-2911e9c61799": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\sources.txt", "file_name": "sources.txt", "file_type": "text/plain", "file_size": 1808, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14", "_node_type": "TextNode", "document_id": "2e16a979-87c8-430c-96ce-5b741d967b01", "doc_id": "2e16a979-87c8-430c-96ce-5b741d967b01", "ref_doc_id": "2e16a979-87c8-430c-96ce-5b741d967b01"}}} \ No newline at end of file diff --git a/examples/data/research_agent_storage/docstore.json b/examples/data/research_agent_storage/docstore.json new file mode 100644 index 00000000..8ac73570 --- /dev/null +++ b/examples/data/research_agent_storage/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"b8d37ed3-5853-4e84-abaf-383854262f57": {"doc_hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368"}, "6aa6b25f-c497-42bb-b323-a12de8fde12d": {"doc_hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357"}, "2e16a979-87c8-430c-96ce-5b741d967b01": {"doc_hash": "46d438ed0c99e6e9fd3ca514fb940cd296d800f00dba6e80a4a70031791c4dc2"}, "394c9dac-edf6-460f-8d10-7fe768e2faa0": {"doc_hash": "8c10fcb7fe37bee8e4f986967dbc88cc479ef2ce326188f27acf3722ba69a608", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "00f48ac0-7d0e-4932-94d5-dcac9fa2f464": {"doc_hash": "2042523bbc5c6589936b29dd13c83886cab9421852a99e0a21b001f8064e0067", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "b2e27a96-7e05-480c-af42-4c8d46f176a5": {"doc_hash": "1642f6e36d10c97050aeff64667a8e878e1d8df84511e810e33e179b6e4ee327", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "4a08a25c-d4af-497c-a9c9-1242f8a70288": {"doc_hash": "9f46683081999242f9d2ee678cf631e175597d5f393d583cd02cbc90b94a312c", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "35942426-973e-40ba-8ddb-dc021eef99a7": {"doc_hash": "a66733c7a1b548ecb8aa634d7bc3caa68270c71494ca206de8171e3c2f52e2e6", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d": {"doc_hash": "e2eada9846f62542ea2925f792663760f02895f0c90be08cb3872e8cdd1ec8f8", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "33597818-1347-4f76-82b5-9298ad6b85ec": {"doc_hash": "47b1208fbc02a4c0dc7b36a44b88b41f1386a5c08a95e1103126b2bad83a49ce", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "0bf97244-5c2a-46a2-93eb-5681b6e3603f": {"doc_hash": "f9aa01cfa9390133a9e82fac01155d9f3735e9535109e15b6c056da8307078a7", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "05b25dd3-fcd6-4208-98cb-23898b8eb145": {"doc_hash": "5812008ded3141223d21bd4df080ec7cb448efe02160d25521c2681ac667ad5a", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "6186a446-c6d5-421f-a96f-a3b0557e8f29": {"doc_hash": "81f35d1cff14076167193ec419b74993b08f41b2479e5a33e253a825dd10a313", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "44711054-f60b-48be-bac6-de1cf1a7a248": {"doc_hash": "4ce9dd8e6ecbfe28e04dec66ca9b834f2bf03e0cd6839fabd6509f230b77467f", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "c8cdc069-9aeb-4fbd-8742-e24d08c3110e": {"doc_hash": "ff272d29036e6fbef5ad81cc3f5a37f0d6c30e99da46d5dea8c41f4d2d8fc8fb", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "7318107a-b5ef-494e-b40c-7110d5922133": {"doc_hash": "f3d14c78d348ff9dd8549d72b375086b3612de4e68a533e501450fb30fcff779", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "16b04150-d493-4e6a-873b-caa163919222": {"doc_hash": "86b5d2a42ad051ab0a062f477faa27ef51cd9bf9390a6979670ce4e3c98bb40e", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "454956ef-4506-409a-8b25-5347b1d44364": {"doc_hash": "dcd487014c95854cea6d05fe0b60596444eb05f51c423031bb13faf620ad2bea", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "1292df42-a044-42e6-8efa-55769e419713": {"doc_hash": "b029806d9fccdc6523a55198dc62007347e559d2844b1e2558a16ac663602667", "ref_doc_id": "b8d37ed3-5853-4e84-abaf-383854262f57"}, "95c0e825-1aa3-401a-b550-3a338345ee07": {"doc_hash": "e3363450fb9b4ad1ef497ed3e250ee096b059b4bb7ab359a0f6c26a6cf614799", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7a31b6eb-af47-4d34-9f2a-26ba64b2132b": {"doc_hash": "8a18c45dae1385c94628f337fc8957b3234a28f22640affdc41fca6eae858817", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "faa0d074-69af-4556-b6d5-0e11f5deacaa": {"doc_hash": "a0fdf422db5a965503f7466b183b79c8f2bc15e67ec33c5916a24aac8ef7eee3", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "636c1409-349f-4f40-9393-4ceec55a5fdc": {"doc_hash": "5b8483a6d92e981069c94c96a2ae36f2dbfc920b6d1ed2b58d3983cfdadd2d8d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f22be064-6012-4722-a832-a61abf306896": {"doc_hash": "41e62b31daac48df1d8b1b544d9e78076d729505cb373ee8b7ea68cf4fb6d642", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "53f5faff-bf43-4d45-a7c4-147fbc37536f": {"doc_hash": "f852215298819b1cf32a3fe1b27b2034910675feee510d82586949b6a269b6c0", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b3444ff9-4f43-490b-a0b9-dc866de39ee4": {"doc_hash": "f03cb99dc1ddd00f619519ded524e850fc3cacc1ea993efc5f6e1780981a2e41", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "25bb1a78-5d33-4084-95c3-d35004d19e14": {"doc_hash": "2a53b1307c9fdfb8506c226899e0f6538db7590011141ad91072eb1b66665775", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba": {"doc_hash": "19a326da91a7aa5f23819c9dfc3168f9ee4e304006229660deffb660f4b92761", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "87ead4aa-923c-424d-834e-7c1ae7f2b7ea": {"doc_hash": "1831ef173ec71b9c8b72baee27f758c2e5a97914fccefa47c22d249efca748e5", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7d6cf556-eaa4-4670-8729-534daa57c8f7": {"doc_hash": "224520867bdad0bf4d073e8b007832811bc4929f94c14e6ec44e314d19386b6b", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a": {"doc_hash": "5edac92d5f9dfed99fdd0db6e061201b799c0791b308dfbc8ce693320a18aede", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41": {"doc_hash": "2388978ed6dba8321597da5c57f32b158491e70ec60b286c4af4bdff2fc58270", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "884f1a2d-bc91-4e73-89bb-970fbdd681b0": {"doc_hash": "d2d94882a6af909d41212bb32721049802f83312c750ab2f3c0e738b097588f0", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "862dbfdd-c488-4f3a-91b5-c339bc5f16bb": {"doc_hash": "ca82a409fd4f4906dff8442e4b383ba81f5095b999e5d5d8ebe9d1d16f07fe49", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "53f6a2ac-8c4f-45b9-906b-04d3d023970b": {"doc_hash": "94ce3149f9b92b8b87358e692f125acbc1a61007f10fa0e6a37a601810aa87d1", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c1056adb-88bc-4b55-813f-b36ca57ab40a": {"doc_hash": "994894354d176abf84c55c23ea92b7996772b4c1992490817144e8e4178eddbb", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7": {"doc_hash": "3bd9ddb9bf5b18d029a51ec1b4fc963aaa5f0262bacebfcab01177d07c1a7c56", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b607bba1-a2e4-46bb-b3c9-860812bc7f98": {"doc_hash": "ccaf2b926b2f2bb8abd48122e68e00368f72d7b4a56de7742b98f6965e3987ff", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6": {"doc_hash": "5117115dd72854deac72bc21ff40c1bf6a35b7b6b4c50cb80d1192a442d41f3b", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "959ecb33-6cbf-4d64-83df-89efff550a84": {"doc_hash": "c1abd4eac5f8a37c2b2460df7e8f9f62059f44c4f64a350fc09e08ca935df016", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "e82c6ebc-eedb-4585-b85a-b25eb370b24c": {"doc_hash": "38f119a348396d62cefa7bab021dbbc1efe2e30d5c81d3299eac076f02724b27", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "8f0fec39-2a1f-4177-801d-bf302b6f63a1": {"doc_hash": "08872bd991698ebad216919f08699f07ffaecf1e3e7b42e0896c4746a01748bb", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490": {"doc_hash": "1a3db0d61d9d28029fccab604ffe23a8937a96f067d9e1761de4a9f679ac3db5", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "300c85a4-9959-45d3-ac1d-29dab974439d": {"doc_hash": "3f7a74d55088e840bab26b813e359e80c6b14e191a367b88efc490d869a32763", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1": {"doc_hash": "76c55852d97cb615fe539302c29b69ea546ac22e9090243d2df162923ec8710e", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9f9746bb-a323-4f71-86a3-cc9695cab68f": {"doc_hash": "26736c802cca09b7db3eccb98dfa7ca64386ad5bf41678e657a57da2dd07bf49", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5fde48b8-41f2-449a-b8e7-acd042828b18": {"doc_hash": "a8d74b2dba7a094bdb985b31286f30ef4a758df8df346c68fbf4ab378bdbf794", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "53760522-dbe6-4ac0-8639-cf27672ecb67": {"doc_hash": "980fe9a8d274e3082c0fab4cafd0577879a9fa17d254f94ae87d5117bde0296b", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ff57d127-4592-40df-a7f3-d3775d9dda96": {"doc_hash": "96bd5a93e15dc9ec144200539fb3dbb171ab975dc77934ab7588a28e146339af", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "679c948a-9f6c-4fb6-96a3-5140a1d414ea": {"doc_hash": "246cc02a3c307941ce5a866ce5acf7d560b8e1bd72964968361de8dc7386a5ed", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c1b4432b-c5f5-4740-95c6-65ea65531886": {"doc_hash": "d01691a8dc354f7822936328019694a70abfbc12dcbf2408d6fcfc78f1c0d89c", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9edd2eb0-12b6-4c60-a46d-cd8e72094039": {"doc_hash": "f9194f6a7764ada08aa335a6c750b154395a39b65354eca99149faed4a786d0f", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b": {"doc_hash": "d88550d0a5df81418f823c711c97ade082c36b5261389583aa7a3dea5f09336d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "aae7cfcc-6c08-453f-ab0c-5ff181a9179c": {"doc_hash": "20de62dbdb840e0c25dd9679cec41ee8f624e86f5dd2c82eeda1c9736378c3ed", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff": {"doc_hash": "84ce867c2a9d6b68a713ed73a3b054b7db4e01767db6f4ff982d4f39c4d2b6dc", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5": {"doc_hash": "45164788d73b270bc383ce80cd89099d3200b7e89d1ade56dc1362bbd49aae50", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d93294c3-17e5-4aaa-884e-5512c0c0efb3": {"doc_hash": "94e75ac72f811b487109e2871bc039fa2abf2b8a48b0e52325fba9cbc9e6f7ce", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "137b3a3c-65e3-438c-ae73-8ccc28f98989": {"doc_hash": "b8dfa37181f0219e770f816d93e40663d077cfb821b2d4a92b6b32800319827a", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "678ed4e5-6404-4e3e-930d-8a207e7e7f9e": {"doc_hash": "829e3485bb33eb124fe567ee2780c2a9f480c58efe1d6a14af6a98a0e72e7325", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "91a3813d-a46d-4d95-912d-81720be7f257": {"doc_hash": "d94ddf47b416d53e8bbd9ffa0434789ca64f7926693f339b2cf736d284bfb4e6", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "1ed6bef4-1638-404b-b411-c62b323fb53d": {"doc_hash": "e1e57703989586c2952fe6e739de3b8c0d64156a8136666f52e0fcd485a7fc1d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "39ea826e-14f0-4873-b261-c728416c70d6": {"doc_hash": "e7032dce2826b6f5b35c5417cbdbba2d8e501686ab23d0329c8843c658130b98", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ba61c6e8-8551-45a2-9553-eb9a23327a2a": {"doc_hash": "4bad212b1a7d41e0363baf8c21d1786fef98ad2184716304d440821fb3789afd", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "239b1b79-9c6c-45a2-8a7d-23907d3d49cd": {"doc_hash": "e4d22d09f26609bf164d0895e842885553ef0b456877ec3ac6c648f5b3ab6d76", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "247ce3dd-5212-4993-aef1-f0b3f2b2b74b": {"doc_hash": "ad6141fa638063db9539b4bc5e62574b7bebbf0ccffa594bb168a2ed95e93e2a", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "045f61f9-9293-4f49-b6a3-d469a97bdd40": {"doc_hash": "a8cf5f1226b2a06ededf56b119014def8d5836197ef1c6c2af06f3a57b753b29", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984": {"doc_hash": "d0b011146ff6b3502b486114bf2daab5d37973f6e48487343c4bb635bdc7c83b", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "087ce84a-d71a-4509-b1c4-02eed6a01c55": {"doc_hash": "1a71b34c61d689c31a168f2a2c1a908da2de9cb143ffb6c5f1859b49b92e5268", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "3f258c1f-302b-4608-8d7f-e978d750bb94": {"doc_hash": "e40b4df77ad147215bd63893f984cdc4211df945ab0c3d8fb02fa354d5057813", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b0788e95-0eb3-4781-a5c4-6ab254dde2b4": {"doc_hash": "e2f7aea1dcaa3873bba1bbcd8a6c8c4541003ff617ac6b00df46eccf778eecc2", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "caea2eb3-2440-402b-a754-d7241b778d0c": {"doc_hash": "461012afa94e4cf655cb3ba38d283343524d7943d1b32fb3df790d6dda6c6114", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ce5339e2-00c6-4d41-968b-ec5df76094a2": {"doc_hash": "78c483a70f3beecd18fc5f7c0008823abbb7cdc8cec30d6ee717a50040797861", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "fe23a794-14f9-4bb1-a9af-04af7c6af177": {"doc_hash": "1c9f3df78860e6b9dcf12df207d358ba32dabaf1da30bb7e90d292f7ecec944d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7f149944-d172-468e-a92a-f912b0b26588": {"doc_hash": "ce4ce297d0ec8a679197476c2d8c1a5fb57725695739b331c03e45a921928fb5", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "866fbd24-cf42-4960-93a6-a278757af43f": {"doc_hash": "217b7d530330c9c7de64e56c25c765c62e2176d60971d14aece64fcb44e9348e", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "07cf6531-4e64-4af4-b460-1d18d4faca07": {"doc_hash": "c9119f70daef71d57bf4a62bbf61c154c1932c1da6d244fce6d494d7f6262d83", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "39984902-5d3c-42d9-85df-e181705d91db": {"doc_hash": "52d0e712681012c989da470122dbccee2f3f4d1cf02fdfa68dc8ac9831c2502f", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "49cf8419-286b-45b6-b988-2391c4f5e938": {"doc_hash": "1fbe453d8618283afac5743fe7bb7996565beafa213a06ddc0563c1877181591", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "707c2bc5-7953-4801-bbb2-23cdba3b6e37": {"doc_hash": "16e758f0ee5843e4abe30753ea45ac3c3e750600e6a3e36036ec728d491fab01", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "727f69f9-c74c-4dfc-875a-b00f9dd8a474": {"doc_hash": "43e26382b95b2068a5cbca35e415bcea6ea33dd18a32df997a156fca1e85a1fd", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5f138b06-5f92-4c93-821f-3ab574291705": {"doc_hash": "e7af233270668e329816bfa2638584c9a6ab62fc40fc60dc0d2b97a052512729", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "3d0dcede-eb5e-41a9-8833-7b47a735a513": {"doc_hash": "585b0244f520b6cc8482ebdd7b862d0aaefd981c417ccfe6e59933d9f80dcfa1", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d5cb66d8-0121-41b0-8622-71f33c008d06": {"doc_hash": "bf6facc0540463c5d4aa252db17fc9e6244ab3a08e9403c5b2f279dcb15ea148", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "8db11bd6-7d27-4424-b353-23f702906949": {"doc_hash": "adf2d96d6aa31ae046343928093d2cc69c795da89cd1881da2ccae7022cebed9", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "3df58f33-ab5b-458c-801a-0495b7bf7f36": {"doc_hash": "2d1da41b1e40e8a44408b4a3f5ca1fe22e674d1a8616a36b7ce7f02b325cda6c", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f2c24cce-05fc-4cc0-912b-6a88b122e069": {"doc_hash": "4c86fbb184ccb43fc85ff892a7bf5941a7ee1ffc42855d6517d3600963785695", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7264d468-2455-4b35-b331-6195c8c8b928": {"doc_hash": "0fefb03bf8ccc2d239781d1c06e413537d89fc7622be14e633565447f145e3b7", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ab546a42-b0aa-4a4e-a411-32be5422b8cb": {"doc_hash": "8b4ebe212b9a554c84f70d67601255355ab5654dfb860169968fbb32227c44b2", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "43f99e98-de95-4dbb-bc53-9ec7f304c384": {"doc_hash": "7c289ce11fa2b6f2d7a4ef5411cbb08278d6dd208c4094d9c0d79c808b6f106f", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "255e1ca5-3563-4b20-8349-2167ee5fd3f9": {"doc_hash": "ebde5ff4fe8e20bb8426286782d51d821687241c984a45f06882eb37e72de5c0", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f38b34af-f8a3-406f-8721-ff6b81fba668": {"doc_hash": "2f3d6026b6d95ab064f09a9adf5c9508834f7069564942ad41b48038b950a574", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "e5edb519-c22d-4cc9-972e-f77b5d9a847c": {"doc_hash": "4a27e2862796c742951afcaafdab4373d7c671f22ae54ff857ea9a6f5f73223f", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3": {"doc_hash": "813ffaa2b07d6ec9f59468064b2724c77e08ae35f9e5994ba8b1657a8025899b", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "96cc4aa4-b416-414e-acdd-9a35ee84eef1": {"doc_hash": "76bec1bb6893ca1d9c07efd1fbc125292ef56eead2db9ae3e1bf7c9722c8b1c5", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "276cbe98-8f2b-4a17-a108-ba152936e64b": {"doc_hash": "cb6d2370c9fc49af96de0ad739b51589e8cc685675e80e3d20c6d481073ca1ac", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "e2204911-729c-4071-a5a9-d0929f7624b9": {"doc_hash": "7a78b1031a6e95423808ce5a88d33f1150ac916cc69515ff0b94afbe97146d04", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "4aecb527-1848-4012-913d-a9224fed74f7": {"doc_hash": "5a244303b1580b49e88a9629cd14dfb7064b41b420cfa48f260af31ed6d332fc", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c7cee09a-69d5-4164-a802-929633e929fc": {"doc_hash": "9cc39f03bc02c9e43aa079600f5facccb12860ad081224b7fb6363e7912f0987", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d72026e6-8981-4646-a2aa-f11abe39ee29": {"doc_hash": "f312e9fd6905205736c90cbc35e96d540c30a562810fe8060c7bd1aa627f75c9", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "88e6f3ff-27c3-4483-9ac0-09d2d26b375b": {"doc_hash": "5bf9f3ad91a24fb3f65eb0b910c89ac9085f164bf9bc957e137e8b47af40e62e", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f63a4a3e-d832-4c72-9c51-acb38581be96": {"doc_hash": "61d004aa150e6e66f65d72960e59a8dd88fc03d249838b29955c495d93f30fe0", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9c95fe58-257d-492e-91dd-12dfde2c9b30": {"doc_hash": "26a72a89f066e6decd81bb14177f4588f2c8b7892edbf6ced470646965a9639e", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b049e56c-c3b5-451f-b328-61a3d402a490": {"doc_hash": "718b315856a3cf50b68e42dc621650051cfe024da4fda0f015ebbe39563e167f", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9f9d7ac2-3a52-4209-a612-a3794d2d58f1": {"doc_hash": "46cfecb22997489540a009f0fd6f8e6ae635f1772d1fe029927b51d8e1bcd186", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "365f6410-d20c-4335-b1cf-2d7930998c5b": {"doc_hash": "cc4d4771d02b4d575e3b7c9924eebd850f6b7ef2c6075cc50fd3d59b844609e6", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d926438b-e71f-4f0e-95d1-7001ae36c6a8": {"doc_hash": "376afd036ab5527154a44f202023a3356424e2525d57aa711c052aeb65e3ae83", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "a0cb8359-3051-4858-b90b-781dbb3e58f9": {"doc_hash": "9c5f8bbbdfeafa238c3efc44c1cb1337ccc1437bb8339f2c61c070eeafd58995", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9dd03b9a-253b-42c9-b15a-423846fbd0be": {"doc_hash": "cf2cd9d910f26c1c6c5e4fd213c376a61bbd4fc3d8df88fd1788c3511d0d5713", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "981a4157-1137-47cf-9800-5dd6a7c228b0": {"doc_hash": "6cbc7c2a2b0617c9086f937d4c1530f4c0984c6ea9880ef4458e20e81efb820a", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9abd9405-55a9-4d13-8ba2-40320a078460": {"doc_hash": "94273a324299a0451cfd7a449907178988971ec4411297fbf8580c10258a41ea", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9af733fa-f391-4c75-b19d-473c39a24b31": {"doc_hash": "fe9acc27344d954298e309300af8d9874712d3697a2941afe97f432dfa4f8eba", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "986d02bb-c253-43cd-9327-ef021633ec9c": {"doc_hash": "a3be46be21f2383c3fb698abc3154accb137f2b70ba29d65b7426337cab9fa20", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "eca36859-775c-49bf-a08a-4857f3a2db0b": {"doc_hash": "cb958023c89d940e0ada33fa84cc278c24eb5556078e2af327fbd50243047ea4", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71": {"doc_hash": "1858391f02d0dd2865ca9ef11fcc70d30c52e22624635905dfedb5cddd7ec792", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "283a69e0-0505-4ad0-a408-8fdd7b248630": {"doc_hash": "761ed96c27567209cfbc75d214d87428cf5cf613b2ba60c8b409e3eb97f13999", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046": {"doc_hash": "89dc954875c7e9b3bfa141d77d5a9dc722c69ed6c46707c2abb1ad8ad1e97bba", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "0e54bae5-ac11-4559-a33e-b44322f831cf": {"doc_hash": "4d7f1c28bc6c5cbfa2d0e0c1b5c865ac8dd58bb7f1208c552634d05d6b431c63", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "9bc60d7e-bc1b-4217-ad63-2dc3da936675": {"doc_hash": "8d3ad1fd09b6dbae70cb74bf58e310ef6cba1a1afe96016e422b76938752b259", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "90cca82e-664f-445b-bd5f-04c51061ca74": {"doc_hash": "0b3de5cbf70f3a39fc9d20f53d746cd1ac93a604d920630fa5943207b51f81a8", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "fc5915cc-ba5a-408a-a36a-ee6ea2d663de": {"doc_hash": "6d178720146e6fbc27b9d61f84d4bd60554da8eddf54c49dbfa058461cbc1213", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7": {"doc_hash": "6ba81a32bd70edfbd9f3ba48830e87ba0bd91753a768f06d85371f51ce21f38c", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5cf82a63-947d-4b5a-817e-482767927e49": {"doc_hash": "ea423b9982c68fe6d59a646e8f87e688e607df7c353e254c7e1336f6ad990fb9", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c3564b7f-c9b5-4152-9176-c5e4f64076cf": {"doc_hash": "5d1613cefd258a2476671277d9bbbf376145b5e91ce17e2fa2e4659600c1311d", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "0fbaad3b-553c-4cde-bc8f-51c1001280dd": {"doc_hash": "5a65e100fb55b40e3c1a86d7d51966f42bae7a20f181ae320ee43f8d338013d1", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "065a0519-9216-4d9d-ac5c-74e8811f5f4c": {"doc_hash": "7de2e5a3649cfd3254bcf010e7f95d85f3895bc7814486ed69772a2c23b1c95e", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "a78b0967-45af-4804-a706-7989c942dae7": {"doc_hash": "fc11d8a7f2c0d6566e25ec63e8fab561a69cb48e63ef942e31548dbcb2509d55", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "30900bf0-7814-4adf-bdf7-adf52c018283": {"doc_hash": "e83b1fdb7d259a2048a2eec79491d778a3b9d6799c434be7b72f678241042ff6", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7cbc4388-d621-4238-98da-22913b684ab8": {"doc_hash": "2a9a3af77f76b629a71e18400d0085cb8c21f99417658dc11b9333c7f13ff401", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b36e4b7d-f46c-4934-810f-2b4d9c71aff0": {"doc_hash": "0e128e6c8aab4a301d2ce57c75936f24d6ae245e000bbebd5c0f5ccc6ef19b25", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "32054d58-0f2d-4904-9802-5ba83f0494f7": {"doc_hash": "adf2834c13ca51ffb6805b4717c49788dc4d338c376f3727a8f75e5b448fea29", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7943ca32-20c1-4d02-8565-47383c9d26d1": {"doc_hash": "7e026d6bfc7b2728a0eeaf39865889b54362370fa178ad6173a47706dffdea0c", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "940653d8-76b4-492d-9564-1cad868963e8": {"doc_hash": "279e3c5ebdcfb24885e2c838cea0452d974bfa6d6b9afa89718a3236d1483504", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "f13b02ca-0937-4928-8c7c-7aa944292c98": {"doc_hash": "719de4ad155c499482f6e4585d1b8fb678db9e18ca9354cc18e7d93730353a09", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "a0c3e794-d4d9-4f13-ad96-69923bf15366": {"doc_hash": "e60a0e376a5c1bca17406b191379bb2f35cf624e9e1ebf131387e9c5f31b65d5", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5af05e5b-2747-4c9f-99f3-cfc98be0b43d": {"doc_hash": "b5983a7076f01cb824cca39ec1425077bd2bf14179cd0e0eddaad5b036f97d56", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "7321ed9b-9841-4fda-b805-2dc6cd5c6c63": {"doc_hash": "473badb12e0e379f97a4122d4104b9cff6946ff8da46e3d97a8c535e1b9bac66", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d": {"doc_hash": "d283f4ffb91b5ec2b28a2697062e0890915efa769f50263d848493a0676d5373", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "d90ad960-a3c2-473c-a61f-0725b4354690": {"doc_hash": "6973a90b5a7b7e633d44be07edec86970abccc05ab5847e5808a5e845c0ac337", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "27d3c00c-c824-410a-b23c-a46312a398b5": {"doc_hash": "682dad1211c3b51f771d03ce5bd828d81624d87b8308afbffb3b2cbe29655512", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "8547e0e0-3bfa-40d6-9e96-e645d4e7de70": {"doc_hash": "5440777c1d2ed2deea23418cc518d82531efd8937e03fef19a96e8b914a239cb", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "e55bef39-937d-47e6-ac42-68455994076e": {"doc_hash": "d3d0002f69359362a778008a5f65fe43f323a8449b43b5223ca5a2e607c39006", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "c315e6be-d862-411c-9881-e6f482a97b77": {"doc_hash": "ee5a072a6c197cf1fefd091ac02909d86f22549197ae11cd9806b8778ed36d64", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "88434af3-c6aa-4172-9365-434929f65f44": {"doc_hash": "da9e5b6254b3c324f0ce623b087f49f4ad42a41f342037467d48bef6218db93f", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "743f653f-7bc9-4e47-8a7b-ee3da4505e28": {"doc_hash": "d386a005905dc6ffc66bb4733ec17ca0c9a624770c2f90b8ef60b4e4cc6afcf0", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "b3cf7695-1a41-4b75-bc07-fb9c11b286e8": {"doc_hash": "1699ff02a321852dbd21c037082506e2da07e48dcbb215a731d7f7855b15674a", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "faeda718-1ed2-4c16-a6de-2901b1130c6d": {"doc_hash": "c4a2eb7ecce041f71863f19e49a84df52e3f312d1e98ade5c0ef1d191c36d8d2", "ref_doc_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d"}, "159d48c8-fd13-4c95-803f-2911e9c61799": {"doc_hash": "347a976db216851e7bc8a2ba7a4e32871589be9527ebec0782e5460b7b8d5e53", "ref_doc_id": "2e16a979-87c8-430c-96ce-5b741d967b01"}}, "docstore/data": {"394c9dac-edf6-460f-8d10-7fe768e2faa0": {"__data__": {"id_": "394c9dac-edf6-460f-8d10-7fe768e2faa0", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "00f48ac0-7d0e-4932-94d5-dcac9fa2f464", "node_type": "1", "metadata": {}, "hash": "5c6734de07db5ff69cbe720a1e83562ba9980fd128fb5817de13c1126cf5c44b", "class_name": "RelatedNodeInfo"}}, "text": "Abhimanyu. son of Arjuna and Subhadra; husband of Uttarai; father of Parikshit\r\nAgni. fire-god.\r\nAiravata. elephant vehicle of the god Indra.\r\nAmba. daughter of the king of Kashi; later reincarnated as Shikhandin.\r\nAmbalika. daughter of the king of Kashi; wife of Vichitravirya; mother of Pandu.\r\nAmbika. daughter of the king of Kashi; wife of Vichitravirya; mother of Dhritarashtra.\r\nAmravati. region of heaven associated with music, dancing, and other pleasures.\r\nAnga. ancient kingdom in eastern India.\r\nAngaraparna. gandharva whom the Pandavas encountered in their exile.\r\napsaras. celestial beings of great beauty associated with music and dancing.\r\nArjuna. one of the five Pandava brothers; son of Kunti and the storm-god Indra.\r\nashrams. hermitages; the secluded homes of holy people.\r\nAshwapati. king of Madra; father of Savitri.\r\nAshwasena. naga; son of Takshaka, king of the nagas.\r\nAshwatthama. son of Drona.\r\nAshwins. twin gods of healing and of the dawn; divine fathers of Nakula and Sahadeva.\r\nAstika. son of a rishi and a naga-woman.\r\nastras. celestial weapons imbued with the powers of gods or natural forces.\r\nasuras. supernatural beings of great power, often opposed to devas or humans.\r\navatar. earthly incarnation (\"descent\") of a god or goddess.\r\nAyodhya. capital of the kingdom of Kosala; home of Rama.\r\nBaka. asura who tormented the village of Ekachakra.\r\nBalarama. elder brother of Krishna; he used both a mace and a plow as weapons.\r\nBarbarika. son of Bhima and a naga-woman.\r\nBhagadatta. king who fought on the Kaurava side in the Kurukshetra War.\r\nBhagavad-Gita.", "start_char_idx": 0, "end_char_idx": 1589, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "00f48ac0-7d0e-4932-94d5-dcac9fa2f464": {"__data__": {"id_": "00f48ac0-7d0e-4932-94d5-dcac9fa2f464", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "394c9dac-edf6-460f-8d10-7fe768e2faa0", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "8c10fcb7fe37bee8e4f986967dbc88cc479ef2ce326188f27acf3722ba69a608", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b2e27a96-7e05-480c-af42-4c8d46f176a5", "node_type": "1", "metadata": {}, "hash": "ed6929bc1933cea085d44a43e08172982f3370e62679a3ef5e9a1f1f16ff81d1", "class_name": "RelatedNodeInfo"}}, "text": "Ashwins. twin gods of healing and of the dawn; divine fathers of Nakula and Sahadeva.\r\nAstika. son of a rishi and a naga-woman.\r\nastras. celestial weapons imbued with the powers of gods or natural forces.\r\nasuras. supernatural beings of great power, often opposed to devas or humans.\r\navatar. earthly incarnation (\"descent\") of a god or goddess.\r\nAyodhya. capital of the kingdom of Kosala; home of Rama.\r\nBaka. asura who tormented the village of Ekachakra.\r\nBalarama. elder brother of Krishna; he used both a mace and a plow as weapons.\r\nBarbarika. son of Bhima and a naga-woman.\r\nBhagadatta. king who fought on the Kaurava side in the Kurukshetra War.\r\nBhagavad-Gita. God-Song that Krishna recited to Arjuna before the battle of Kurukshetra.\r\nBharadwaja. rishi; father of Drona; guru to the young Drupada.\r\nBhima. one of the five Pandava brothers; son of Kunti and the wind-god Vayu.\r\nBhishma. son of Shantanu and the goddess Ganga; great-uncle to the Pandavas.\r\nBhudevi. goddess of the earth.\r\nBrahma. god of creation; one of the supreme divinities with Vishnu and Shiva.\r\nBrahmastra. Brahma-weapon; celestial weapon able to destroy the world.\r\nbrahmins. members of the priestly class.\r\nBrihannala. identity used by Arjuna when disguised as a dance-teacher in Virata's court.\r\nChedi. Indian kingdom to the south of the Yamuna river.\r\nChiranjivi. \"Immortals\" who will live until the end of the world-cycle.\r\nChitrangada. son of Shantanu and Satyavati; elder brother of Vichitravirya.\r\nChitrangada.", "start_char_idx": 921, "end_char_idx": 2419, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b2e27a96-7e05-480c-af42-4c8d46f176a5": {"__data__": {"id_": "b2e27a96-7e05-480c-af42-4c8d46f176a5", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "00f48ac0-7d0e-4932-94d5-dcac9fa2f464", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "2042523bbc5c6589936b29dd13c83886cab9421852a99e0a21b001f8064e0067", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4a08a25c-d4af-497c-a9c9-1242f8a70288", "node_type": "1", "metadata": {}, "hash": "20c26db7785eee5858fd8d57fb302393a23e478315cfe3524329db9413724edd", "class_name": "RelatedNodeInfo"}}, "text": "Bhishma. son of Shantanu and the goddess Ganga; great-uncle to the Pandavas.\r\nBhudevi. goddess of the earth.\r\nBrahma. god of creation; one of the supreme divinities with Vishnu and Shiva.\r\nBrahmastra. Brahma-weapon; celestial weapon able to destroy the world.\r\nbrahmins. members of the priestly class.\r\nBrihannala. identity used by Arjuna when disguised as a dance-teacher in Virata's court.\r\nChedi. Indian kingdom to the south of the Yamuna river.\r\nChiranjivi. \"Immortals\" who will live until the end of the world-cycle.\r\nChitrangada. son of Shantanu and Satyavati; elder brother of Vichitravirya.\r\nChitrangada. gandharva with the same name as the son of Shantanu and Satyavati.\r\nDamayanti. princess who married King Nala.\r\nDasharatha. king of Ayodhya; father of Rama whose story is told in the Ramayana.\r\ndevas. divine beings, gods.\r\nDevavrata. birth name of Bhishma, son of Shantanu and the goddess Ganga.\r\ndharma. that which is right and true; duty; justice.\r\nDhrishtadyumna. fire-born son of Drupada; brother of Draupadi.\r\nDhritarashtra. blind son of Vyasa and Ambika; husband of Gandhari.\r\nDraupadi. fire-born daughter of Drupada; wife of the five Pandavas.\r\nDrona. son of Bharadwaja; guru to the Kauravas and the Pandavas.\r\nDrupada. king of Panchala; father of Draupadi, Dhrishtadyumna, and Shikhandin.\r\nDuhshala. daughter of Gandhari and Dhritarashtra; wife of Jayadratha.\r\nDurjaya. son of Duryodhana; his story is told in Bhasa's play Urubhangam.\r\nDurvasa.", "start_char_idx": 1807, "end_char_idx": 3272, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4a08a25c-d4af-497c-a9c9-1242f8a70288": {"__data__": {"id_": "4a08a25c-d4af-497c-a9c9-1242f8a70288", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b2e27a96-7e05-480c-af42-4c8d46f176a5", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "1642f6e36d10c97050aeff64667a8e878e1d8df84511e810e33e179b6e4ee327", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "35942426-973e-40ba-8ddb-dc021eef99a7", "node_type": "1", "metadata": {}, "hash": "397ab1aec0b3bc5a024089311de938cfd8c24a42a2c417b896a33b889ac86e5c", "class_name": "RelatedNodeInfo"}}, "text": "dharma. that which is right and true; duty; justice.\r\nDhrishtadyumna. fire-born son of Drupada; brother of Draupadi.\r\nDhritarashtra. blind son of Vyasa and Ambika; husband of Gandhari.\r\nDraupadi. fire-born daughter of Drupada; wife of the five Pandavas.\r\nDrona. son of Bharadwaja; guru to the Kauravas and the Pandavas.\r\nDrupada. king of Panchala; father of Draupadi, Dhrishtadyumna, and Shikhandin.\r\nDuhshala. daughter of Gandhari and Dhritarashtra; wife of Jayadratha.\r\nDurjaya. son of Duryodhana; his story is told in Bhasa's play Urubhangam.\r\nDurvasa. rishi notorious for his bad temper.\r\nDuryodhana. eldest son of Dhritarashtra and Gandhari; leader of the Kaurava armies.\r\nDushasana. son of Dhritarashtra and Gandhari; younger brother of Duryodhana.\r\nDvapara Yuga. third age of the world; following the Treta Yuga, preceding the Kali Yuga.\r\nDwaraka. ancient city on the western coast of India; home to Krishna.\r\nEkachakra. village in western India visited by the Pandavas.\r\nEkalavya. forest-dweller who sought to study archery under Drona.\r\nGandhara. kingdom in northern India.\r\nGandhari. wife of Dhritarashtra; mother of one hundred sons, including Duryodhana.\r\ngandharvas. celestial musicians who are also messengers between gods and humans.\r\nGandiva. bow of Arjuna made by the god Brahma.\r\nGanesha. elephant-headed god; he wrote the Mahabharata as Vyasa dictated.\r\nGanga. goddess of the river Ganga; wife of Shantanu; mother of Bhishma.\r\nGanges. sacred river brought to earth by the goddess Ganga.\r\nGhatotkacha.", "start_char_idx": 2717, "end_char_idx": 4236, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "35942426-973e-40ba-8ddb-dc021eef99a7": {"__data__": {"id_": "35942426-973e-40ba-8ddb-dc021eef99a7", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a08a25c-d4af-497c-a9c9-1242f8a70288", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "9f46683081999242f9d2ee678cf631e175597d5f393d583cd02cbc90b94a312c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d", "node_type": "1", "metadata": {}, "hash": "d399c90ca97da1d9e355c2558c0b98009b5067519e4ceb7724f2cf1bd108e75b", "class_name": "RelatedNodeInfo"}}, "text": "Dwaraka. ancient city on the western coast of India; home to Krishna.\r\nEkachakra. village in western India visited by the Pandavas.\r\nEkalavya. forest-dweller who sought to study archery under Drona.\r\nGandhara. kingdom in northern India.\r\nGandhari. wife of Dhritarashtra; mother of one hundred sons, including Duryodhana.\r\ngandharvas. celestial musicians who are also messengers between gods and humans.\r\nGandiva. bow of Arjuna made by the god Brahma.\r\nGanesha. elephant-headed god; he wrote the Mahabharata as Vyasa dictated.\r\nGanga. goddess of the river Ganga; wife of Shantanu; mother of Bhishma.\r\nGanges. sacred river brought to earth by the goddess Ganga.\r\nGhatotkacha. rakshasa; son of Bhima and Hidimbi.\r\nGranthika. identity used by Nakula when disguised as a horse-trainer in Virata's court.\r\nguru. teacher, guide, expert.\r\nHanuman. monkey-son of Vayu, god of the wind; loyal follower of Rama.\r\nHastinapura. capital city of the Kuru Kingdom.\r\nHidimba. rakshasa; brother of Hidimbi.\r\nHidimbi. rakshasi; wife of Bhima; mother of Ghatotkacha.\r\nHiranyavarna. king of Dasharna; his daughter was betrothed to Shikhandin.\r\nIndra. god of storms and the sky; divine father of Arjuna.\r\nIndraloka. Indra's-Place; region of heaven (Svarga) that is also called Amravati.\r\nIndraprastha. capital city of the kingdom of the Pandavas.\r\nIravan. son of Arjuna and Ulupi.\r\nJaimini. disciple of Vyasa; a version of the Mahabharata is attributed to him.\r\nJanamejaya. king of Hastinapura; son of Parikshit.\r\nJara.", "start_char_idx": 3563, "end_char_idx": 5060, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d": {"__data__": {"id_": "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "35942426-973e-40ba-8ddb-dc021eef99a7", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "a66733c7a1b548ecb8aa634d7bc3caa68270c71494ca206de8171e3c2f52e2e6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "33597818-1347-4f76-82b5-9298ad6b85ec", "node_type": "1", "metadata": {}, "hash": "dea4d26f939791f614a0768ef27ff4bc3bb7ff823671daed5988045bea036773", "class_name": "RelatedNodeInfo"}}, "text": "capital city of the Kuru Kingdom.\r\nHidimba. rakshasa; brother of Hidimbi.\r\nHidimbi. rakshasi; wife of Bhima; mother of Ghatotkacha.\r\nHiranyavarna. king of Dasharna; his daughter was betrothed to Shikhandin.\r\nIndra. god of storms and the sky; divine father of Arjuna.\r\nIndraloka. Indra's-Place; region of heaven (Svarga) that is also called Amravati.\r\nIndraprastha. capital city of the kingdom of the Pandavas.\r\nIravan. son of Arjuna and Ulupi.\r\nJaimini. disciple of Vyasa; a version of the Mahabharata is attributed to him.\r\nJanamejaya. king of Hastinapura; son of Parikshit.\r\nJara. hunter who shot Krishna.\r\njaya. Sanskrit word meaning \"victory.\"\r\nJayadratha. king of Sindhu; husband of Duhshala.\r\nKali. goddess; manifestation of Shakti, divine energy.\r\nKali Yuga. fourth (and worst) age of the world; follows the Dvapara Yuga.\r\nKalpataru. wish-fulfilling tree in Amravati.\r\nKanka. identity used by Yudhishthira when disguised as a brahmin in Virata's court.\r\nkarma. action; chain of action and consequence.\r\nKarna. son of Kunti and the sun-god Surya.\r\nKashi. ancient kingdom of India with its capital at Varanasi (Benares).\r\nKashya. king of Kashi; father of Amba, Ambika, and Ambalika.\r\nKauravas. descendants of Kuru; more specifically, Duryodhana and his brothers.\r\nKhandava-prastha. forest wilderness given to the Pandavas as their kingdom.\r\nKichaka. general of the armies of King Virata; brother of Queen Sudeshna.\r\nKindama. rishi of the forest who was able to take the form of a deer.", "start_char_idx": 4478, "end_char_idx": 5968, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "33597818-1347-4f76-82b5-9298ad6b85ec": {"__data__": {"id_": "33597818-1347-4f76-82b5-9298ad6b85ec", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e2eada9846f62542ea2925f792663760f02895f0c90be08cb3872e8cdd1ec8f8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0bf97244-5c2a-46a2-93eb-5681b6e3603f", "node_type": "1", "metadata": {}, "hash": "5a839401c1fbad12129fd59e578c605c1c2cba1fcac2a4f6d1345f70936a62a6", "class_name": "RelatedNodeInfo"}}, "text": "Kalpataru. wish-fulfilling tree in Amravati.\r\nKanka. identity used by Yudhishthira when disguised as a brahmin in Virata's court.\r\nkarma. action; chain of action and consequence.\r\nKarna. son of Kunti and the sun-god Surya.\r\nKashi. ancient kingdom of India with its capital at Varanasi (Benares).\r\nKashya. king of Kashi; father of Amba, Ambika, and Ambalika.\r\nKauravas. descendants of Kuru; more specifically, Duryodhana and his brothers.\r\nKhandava-prastha. forest wilderness given to the Pandavas as their kingdom.\r\nKichaka. general of the armies of King Virata; brother of Queen Sudeshna.\r\nKindama. rishi of the forest who was able to take the form of a deer.\r\nKishkindha. legendary kingdom of the monkeys (vanaras) in the epic Ramayana.\r\nKripa. adopted son of King Shantanu; brother-in-law of Drona; Ashwatthama's uncle.\r\nKrishna. eighth avatar of the god Vishnu; brother of Balarama and of Subhadra.\r\nKritavarma. Yadava warrior who fought for the Kauravas during the war.\r\nkshatriyas. warriors; one of the four ancient Indian social classes.\r\nKubera. Lord of Wealth; chief of the yakshas.\r\nKunti. wife of Pandu; mother of Yudhishthira, Bhima, and Arjuna, and also Karna.\r\nKuru. ancient ancestor of both Dhritarashtra and Pandu.\r\nKurukshetra. \"Kuru-Field\" where the armies of the Kauravas and Pandavas fought.\r\nLakshmana. brother of Rama who accompanied him in exile; his story is told in the Ramayana.\r\nMadra. ancient kingdom located in north-west India.\r\nMadri. wife of Pandu; mother of Nakula and Sahadeva; sister of Shalya.\r\nMahabharata.", "start_char_idx": 5308, "end_char_idx": 6851, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0bf97244-5c2a-46a2-93eb-5681b6e3603f": {"__data__": {"id_": "0bf97244-5c2a-46a2-93eb-5681b6e3603f", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "33597818-1347-4f76-82b5-9298ad6b85ec", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "47b1208fbc02a4c0dc7b36a44b88b41f1386a5c08a95e1103126b2bad83a49ce", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "05b25dd3-fcd6-4208-98cb-23898b8eb145", "node_type": "1", "metadata": {}, "hash": "d2c5c0f9382b92d06799305355fc62b75a5ef346387dd32b90bd079228c7c69f", "class_name": "RelatedNodeInfo"}}, "text": "Yadava warrior who fought for the Kauravas during the war.\r\nkshatriyas. warriors; one of the four ancient Indian social classes.\r\nKubera. Lord of Wealth; chief of the yakshas.\r\nKunti. wife of Pandu; mother of Yudhishthira, Bhima, and Arjuna, and also Karna.\r\nKuru. ancient ancestor of both Dhritarashtra and Pandu.\r\nKurukshetra. \"Kuru-Field\" where the armies of the Kauravas and Pandavas fought.\r\nLakshmana. brother of Rama who accompanied him in exile; his story is told in the Ramayana.\r\nMadra. ancient kingdom located in north-west India.\r\nMadri. wife of Pandu; mother of Nakula and Sahadeva; sister of Shalya.\r\nMahabharata. one of two main epics of ancient India (the other being the Ramayana).\r\nMahabhisha. king who ascended to Indra's heaven; he was reborn as King Shantanu.\r\nMaitreya. wandering rishi who visited the Pandavas in the forest.\r\nMandavya. rishi wrongly accused of a crime who curses Yama.\r\nmantra. sacred words or sounds used in meditation and also used to control astras (weapons).\r\nMatsya. ancient kingdom of northern India.\r\nMatsyagandha. Fish-Smell; a nickname given to Satyavati when she was young.\r\nMayasura. asura; he built a palace for the Pandavas at Indraprastha.\r\nMeru. sacred mountain at the center of the world.\r\nMohini. female avatar of the god Vishnu; as Mohini, Krishna married Iravan.\r\nMoudgalya. rishi; husband of Nalayani, who was Draupadi in a previous lifetime.\r\nnagas. divine snake-beings with supernatural powers.\r\nNahusha. king who took Indra's place as king of heaven and then lost that place.\r\nNakula.", "start_char_idx": 6224, "end_char_idx": 7771, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05b25dd3-fcd6-4208-98cb-23898b8eb145": {"__data__": {"id_": "05b25dd3-fcd6-4208-98cb-23898b8eb145", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0bf97244-5c2a-46a2-93eb-5681b6e3603f", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "f9aa01cfa9390133a9e82fac01155d9f3735e9535109e15b6c056da8307078a7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6186a446-c6d5-421f-a96f-a3b0557e8f29", "node_type": "1", "metadata": {}, "hash": "8eb1ecf44ae177f8ba05e5dcb4631a5be5c56ba07ae8dcc9b559904860bc2bec", "class_name": "RelatedNodeInfo"}}, "text": "mantra. sacred words or sounds used in meditation and also used to control astras (weapons).\r\nMatsya. ancient kingdom of northern India.\r\nMatsyagandha. Fish-Smell; a nickname given to Satyavati when she was young.\r\nMayasura. asura; he built a palace for the Pandavas at Indraprastha.\r\nMeru. sacred mountain at the center of the world.\r\nMohini. female avatar of the god Vishnu; as Mohini, Krishna married Iravan.\r\nMoudgalya. rishi; husband of Nalayani, who was Draupadi in a previous lifetime.\r\nnagas. divine snake-beings with supernatural powers.\r\nNahusha. king who took Indra's place as king of heaven and then lost that place.\r\nNakula. one of the five Pandava brothers; twin of Sahadeva; son of Madri and the Ashwins.\r\nNala. king who lost his kingdom in a gambling match; husband of Damayanti.\r\nNalayani. wife of Moudgalya; Draupadi in a previous lifetime.\r\nNarada. a divine rishi who likes to tell stories, share wisdom, and sometimes stir up trouble.\r\nNaraka. a place in the afterlife for the expiation of wrongdoing before rebirth.\r\nNarayana-astra. a celestial weapon with the power of Narayana (Vishnu).\r\nPandavas. sons of Pandu: Yudhishthira, Bhima, Arjuna, Nakula, and Sahadeva.\r\nPandu. pale son of Vyasa and Ambalika; husband of Kunti and Madri.\r\nParashara. rishi; father of Satyavati's son, Vyasa.\r\nParashurama. Axe-Rama; brahmin-warrior regarded as the sixth avatar of Vishnu.\r\nParikshit. son of Abhimanyu and Uttarai; father of Janamejaya.\r\nPashupata. powerful astra (weapon) which Arjuna received from Shiva.\r\nPrabhasa.", "start_char_idx": 7134, "end_char_idx": 8666, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6186a446-c6d5-421f-a96f-a3b0557e8f29": {"__data__": {"id_": "6186a446-c6d5-421f-a96f-a3b0557e8f29", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "05b25dd3-fcd6-4208-98cb-23898b8eb145", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5812008ded3141223d21bd4df080ec7cb448efe02160d25521c2681ac667ad5a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "44711054-f60b-48be-bac6-de1cf1a7a248", "node_type": "1", "metadata": {}, "hash": "a08ece1efaa10038fb789989a032d05b22e44b4bd9c4e52b19cb7b3fd3199735", "class_name": "RelatedNodeInfo"}}, "text": "Naraka. a place in the afterlife for the expiation of wrongdoing before rebirth.\r\nNarayana-astra. a celestial weapon with the power of Narayana (Vishnu).\r\nPandavas. sons of Pandu: Yudhishthira, Bhima, Arjuna, Nakula, and Sahadeva.\r\nPandu. pale son of Vyasa and Ambalika; husband of Kunti and Madri.\r\nParashara. rishi; father of Satyavati's son, Vyasa.\r\nParashurama. Axe-Rama; brahmin-warrior regarded as the sixth avatar of Vishnu.\r\nParikshit. son of Abhimanyu and Uttarai; father of Janamejaya.\r\nPashupata. powerful astra (weapon) which Arjuna received from Shiva.\r\nPrabhasa. one of the Vasus, incarnated as Bhishma.\r\nPrativindhya. son of Yudhishthira and Draupadi; eldest of the Upapandavas.\r\nPurochana. Duryodhana's agent in Varanavati.\r\nPururavas. ancient ancestor of the Kurus and Pandavas; husband of the apsara Urvashi.\r\nrakshasas. shape-shifting supernatural beings, often hostile to both gods and humans.\r\nRama. hero of the epic Ramayana; considered to be the seventh avatar of Vishnu.\r\nRavana. king of the rakshasas; enemy of Rama; his story is told in the Ramayana.\r\nrishis. enlightened persons, sages.\r\nSahadeva. one of the five Pandava brothers; twin of Nakula; son of Madri and the Ashwins.\r\nSahasranama. \"Thousand-Names\" recitation of the thousand names of a deity.\r\nSairandhri. identity used by Draupadi disguised as a servant in Virata's court.\r\nSamanta Panchaka. five lakes created by the blood of kshatriyas killed by Parashurama.\r\nSamba. son of Krishna.\r\nsamshaptaka.", "start_char_idx": 8090, "end_char_idx": 9577, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "44711054-f60b-48be-bac6-de1cf1a7a248": {"__data__": {"id_": "44711054-f60b-48be-bac6-de1cf1a7a248", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6186a446-c6d5-421f-a96f-a3b0557e8f29", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "81f35d1cff14076167193ec419b74993b08f41b2479e5a33e253a825dd10a313", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c8cdc069-9aeb-4fbd-8742-e24d08c3110e", "node_type": "1", "metadata": {}, "hash": "4c1cf04367dd1cee175a7111b4937355f9633c41fd6609ed4689e544ae3c3740", "class_name": "RelatedNodeInfo"}}, "text": "rakshasas. shape-shifting supernatural beings, often hostile to both gods and humans.\r\nRama. hero of the epic Ramayana; considered to be the seventh avatar of Vishnu.\r\nRavana. king of the rakshasas; enemy of Rama; his story is told in the Ramayana.\r\nrishis. enlightened persons, sages.\r\nSahadeva. one of the five Pandava brothers; twin of Nakula; son of Madri and the Ashwins.\r\nSahasranama. \"Thousand-Names\" recitation of the thousand names of a deity.\r\nSairandhri. identity used by Draupadi disguised as a servant in Virata's court.\r\nSamanta Panchaka. five lakes created by the blood of kshatriyas killed by Parashurama.\r\nSamba. son of Krishna.\r\nsamshaptaka. oath sworn by warriors to be victorious or die in battle.\r\nSanjaya. charioteer and adviser to King Dhritarashtra.\r\nSaptarishis. Seven Rishis (Seven Sages).\r\nsari. a cloth drape worn as women's clothing.\r\nSarpa Satra. serpent sacrifice intended to kill all the snakes of the earth.\r\nSatyaki. Yadava warrior; he fought for the Pandavas during the war.\r\nSatyavan. son of a king who lost his kingdom; husband of Savitri.\r\nSatyavati. wife of Shantanu; mother of Chitrangada, Vichitravirya, and also of Vyasa.\r\nSavitri. princess of Madra; she chose Satyavan to be her husband.\r\nShachi. consort of the god Indra.\r\nShakti-spear. weapon given by Indra to Karna, powered by Shakti.\r\nShakuni. brother of Gandhari; maternal uncle of Duryodhana.\r\nShalva. lover of Amba; king of Shalva, a kingdom in western India.\r\nShalya. king of Madra; brother of Madri; uncle of Nakula and Sahadeva.\r\nShantanu.", "start_char_idx": 8918, "end_char_idx": 10461, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c8cdc069-9aeb-4fbd-8742-e24d08c3110e": {"__data__": {"id_": "c8cdc069-9aeb-4fbd-8742-e24d08c3110e", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "44711054-f60b-48be-bac6-de1cf1a7a248", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "4ce9dd8e6ecbfe28e04dec66ca9b834f2bf03e0cd6839fabd6509f230b77467f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7318107a-b5ef-494e-b40c-7110d5922133", "node_type": "1", "metadata": {}, "hash": "42d5216a82861e68f2fbdbea969768d2b5908d31941429d65d4ac4e0f67d2a7a", "class_name": "RelatedNodeInfo"}}, "text": "Satyaki. Yadava warrior; he fought for the Pandavas during the war.\r\nSatyavan. son of a king who lost his kingdom; husband of Savitri.\r\nSatyavati. wife of Shantanu; mother of Chitrangada, Vichitravirya, and also of Vyasa.\r\nSavitri. princess of Madra; she chose Satyavan to be her husband.\r\nShachi. consort of the god Indra.\r\nShakti-spear. weapon given by Indra to Karna, powered by Shakti.\r\nShakuni. brother of Gandhari; maternal uncle of Duryodhana.\r\nShalva. lover of Amba; king of Shalva, a kingdom in western India.\r\nShalya. king of Madra; brother of Madri; uncle of Nakula and Sahadeva.\r\nShantanu. king of Hastinapura; husband of Ganga and of Satyavati; father of Bhishma.\r\nShatanika. son of Nakula and Draupadi.\r\nShesha-Naga. cosmic naga on whom Vishnu rests; Balarama is his avatar.\r\nShikhandin. son of King Drupada; born as Drupada's daughter, he was Amba reborn.\r\nShikhandini. daughter born to King Drupada; later a man, Shikhandin.\r\nShishupala. king of Chedi; cousin of Krishna.\r\nShiva. god of destruction; one of the supreme divinities with Brahma and Vishnu.\r\nShrutakarma. son of Arjuna and Draupadi; youngest of the Upapandavas.\r\nShrutasena. son of Sahadeva and Draupadi.\r\nShurasena. Yadava ruler; father of Kunti and Vasudeva, Krishna's father.\r\nSindhu. kingdom of northern India on the Sindhu (Indus) river.\r\nSita. princess of Mithila who married Rama; her story is told in the Ramayana.\r\nSthuna. yaksha who exchanged gender with Shikhandini; he became Sthuni.", "start_char_idx": 9860, "end_char_idx": 11334, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7318107a-b5ef-494e-b40c-7110d5922133": {"__data__": {"id_": "7318107a-b5ef-494e-b40c-7110d5922133", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c8cdc069-9aeb-4fbd-8742-e24d08c3110e", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "ff272d29036e6fbef5ad81cc3f5a37f0d6c30e99da46d5dea8c41f4d2d8fc8fb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "16b04150-d493-4e6a-873b-caa163919222", "node_type": "1", "metadata": {}, "hash": "dd081c912f8b80187c78106984309a5e59df13594923d428b8f3471b86b92d4e", "class_name": "RelatedNodeInfo"}}, "text": "Shikhandini. daughter born to King Drupada; later a man, Shikhandin.\r\nShishupala. king of Chedi; cousin of Krishna.\r\nShiva. god of destruction; one of the supreme divinities with Brahma and Vishnu.\r\nShrutakarma. son of Arjuna and Draupadi; youngest of the Upapandavas.\r\nShrutasena. son of Sahadeva and Draupadi.\r\nShurasena. Yadava ruler; father of Kunti and Vasudeva, Krishna's father.\r\nSindhu. kingdom of northern India on the Sindhu (Indus) river.\r\nSita. princess of Mithila who married Rama; her story is told in the Ramayana.\r\nSthuna. yaksha who exchanged gender with Shikhandini; he became Sthuni.\r\nSthuni. yakshini; formerly the yaksha Sthuna.\r\nSubala. king of Gandhara; father of Gandhari and Shakuni.\r\nSubhadra. sister of Krishna; wife of Arjuna; mother of Abhimanyu.\r\nSudarshana-Chakra. supernatural discus used as a weapon by Krishna and Vishnu.\r\nSudeshna. wife of Virata; mother of Uttara and Uttarai.\r\nSughada. mother of Yuyutsu; maid of Gandhari.\r\nSugriva. brother of Vali; king of the monkeys of Kishkindha; ally of Rama.\r\nSunda. asura; brother of Upasunda; lover of the apsara Tilottama.\r\nsura. alcoholic beverage.\r\nSurya. sun-god; father of Karna.\r\nSusharman. king of Trigarta; ally of Duryodhana.\r\nSutasoma. son of Bhima and Draupadi.\r\nswayamvara. ceremony in which a woman chooses her groom from competing suitors.\r\nTakshaka. king of the nagas; he killed King Parikshit.\r\nTantipala. identity used by Sahadeva disguised as a cow-herd in Virata's court.", "start_char_idx": 10732, "end_char_idx": 12201, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "16b04150-d493-4e6a-873b-caa163919222": {"__data__": {"id_": "16b04150-d493-4e6a-873b-caa163919222", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7318107a-b5ef-494e-b40c-7110d5922133", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "f3d14c78d348ff9dd8549d72b375086b3612de4e68a533e501450fb30fcff779", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "454956ef-4506-409a-8b25-5347b1d44364", "node_type": "1", "metadata": {}, "hash": "c2a0fb3935867c4e704f88aa7bd63ba9fadb8a0f07728b1fbd37dd5b225ba7a3", "class_name": "RelatedNodeInfo"}}, "text": "wife of Virata; mother of Uttara and Uttarai.\r\nSughada. mother of Yuyutsu; maid of Gandhari.\r\nSugriva. brother of Vali; king of the monkeys of Kishkindha; ally of Rama.\r\nSunda. asura; brother of Upasunda; lover of the apsara Tilottama.\r\nsura. alcoholic beverage.\r\nSurya. sun-god; father of Karna.\r\nSusharman. king of Trigarta; ally of Duryodhana.\r\nSutasoma. son of Bhima and Draupadi.\r\nswayamvara. ceremony in which a woman chooses her groom from competing suitors.\r\nTakshaka. king of the nagas; he killed King Parikshit.\r\nTantipala. identity used by Sahadeva disguised as a cow-herd in Virata's court.\r\nTilottama. apsara created by Brahma to entrap Sunda and Upasunda.\r\nTreta Yuga. second age of the world; following the Satya Yuga, preceding the Treta Yuga.\r\nTrigarta. ancient kingdom in northern India.\r\nUluka. son of Shakuni; Ghandaran warrior.\r\nUlupi. naga princess; wife of Arjuna; mother of Iravan.\r\nUpapandavas. sons of the Pandavas with Draupadi.\r\nUparichara. king; father of Satyavati and her twin brother Matsya.\r\nUpasunda. asura; brother of Sunda; lover of the apsara Tilottama.\r\nUrvashi. apsara in Indra's heaven; wife of Pururavas.\r\nUttara. son of Virata and Sudeshna.\r\nUttarai. daughter of Virata and Sudeshna; wife of Abhimanyu (also spelled Uttaraa, Uttari).\r\nUttarayana. \"North-Journey\" which the sun begins after the winter solstice.\r\nVaikuntha. heavenly abode of VIshnu.\r\nVaishampayana.", "start_char_idx": 11599, "end_char_idx": 13005, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "454956ef-4506-409a-8b25-5347b1d44364": {"__data__": {"id_": "454956ef-4506-409a-8b25-5347b1d44364", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "16b04150-d493-4e6a-873b-caa163919222", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "86b5d2a42ad051ab0a062f477faa27ef51cd9bf9390a6979670ce4e3c98bb40e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1292df42-a044-42e6-8efa-55769e419713", "node_type": "1", "metadata": {}, "hash": "a0c85a199c19296174121536f07487e88b466ef4fc5cabd3bb4984175d400a46", "class_name": "RelatedNodeInfo"}}, "text": "Ulupi. naga princess; wife of Arjuna; mother of Iravan.\r\nUpapandavas. sons of the Pandavas with Draupadi.\r\nUparichara. king; father of Satyavati and her twin brother Matsya.\r\nUpasunda. asura; brother of Sunda; lover of the apsara Tilottama.\r\nUrvashi. apsara in Indra's heaven; wife of Pururavas.\r\nUttara. son of Virata and Sudeshna.\r\nUttarai. daughter of Virata and Sudeshna; wife of Abhimanyu (also spelled Uttaraa, Uttari).\r\nUttarayana. \"North-Journey\" which the sun begins after the winter solstice.\r\nVaikuntha. heavenly abode of VIshnu.\r\nVaishampayana. disciple of Vyasa; he recited the Mahabharata to Janamejaya.\r\nVali. king of the monkeys of Kishkindha; his story is told in the Ramayana.\r\nVallabha. identity used by Bhima while disguised as a cook in Virata's court.\r\nVaraha. boar; the boar incarnation of Vishnu.\r\nVaranavata. town in northern India where the Pandavas lived in the house of lacquer.\r\nVashishtha. rishi; owner of the wish-granting cow.\r\nVasuki. king of the nagas; he welcomed Bhima in the land of the nagas.\r\nVasus. eight gods representing the elements.\r\nVayu. wind-god; divine father of Bhima and of Hanuman.\r\nVedas. ancient holy scriptures.\r\nVichitravirya. son of Shantanu and Satyavati; elder brother of Chitrangada.\r\nVidura. son of Vyasa and Ambalika's servant; brother of Dhritarashtra and Pandu.\r\nVikarna. one of the hundred sons of Gandhari and Dhritarashtra.\r\nVirata. king of Matsya; husband of Sudeshna; father of Uttarai.\r\nVishnu.", "start_char_idx": 12449, "end_char_idx": 13912, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1292df42-a044-42e6-8efa-55769e419713": {"__data__": {"id_": "1292df42-a044-42e6-8efa-55769e419713", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b8d37ed3-5853-4e84-abaf-383854262f57", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "913b1a97cb5f7674d4140365fe02d225fa2af178b3c4c46d41cfd631b5f15368", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "454956ef-4506-409a-8b25-5347b1d44364", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "dcd487014c95854cea6d05fe0b60596444eb05f51c423031bb13faf620ad2bea", "class_name": "RelatedNodeInfo"}}, "text": "town in northern India where the Pandavas lived in the house of lacquer.\r\nVashishtha. rishi; owner of the wish-granting cow.\r\nVasuki. king of the nagas; he welcomed Bhima in the land of the nagas.\r\nVasus. eight gods representing the elements.\r\nVayu. wind-god; divine father of Bhima and of Hanuman.\r\nVedas. ancient holy scriptures.\r\nVichitravirya. son of Shantanu and Satyavati; elder brother of Chitrangada.\r\nVidura. son of Vyasa and Ambalika's servant; brother of Dhritarashtra and Pandu.\r\nVikarna. one of the hundred sons of Gandhari and Dhritarashtra.\r\nVirata. king of Matsya; husband of Sudeshna; father of Uttarai.\r\nVishnu. god of preservation; one of the supreme divinities with Brahma and Shiva.\r\nVishnu-astra. cosmic weapon imbued with the power of Vishnu; also called Vaishnavastra.\r\nVyasa. son of Satyavati and the rishi Parashara; composer of the Vedas.\r\nYadavas. descendants of Yadu; Krishna was a Yadava, as were Kritavarma and Satyaki.\r\nYadu. son of Yayati; ancestor of the Yadavas.\r\nyakshas. spirits of mountains, woods, and lakes.\r\nyakshinis. female yakshas.\r\nYama. god of death and of dharma; divine father of Yudhishthira.\r\nYudhishthira. one of the five Pandava brothers; son of Kunti and Yama, the god of dharma.\r\nYugas. four ages of the world in this order: Satya, Treta, Dvapara, and Kali .\r\nYuyutsu. son of Dhritarashtra and Sughada, the maid of Gandhari.", "start_char_idx": 13283, "end_char_idx": 14661, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95c0e825-1aa3-401a-b550-3a338345ee07": {"__data__": {"id_": "95c0e825-1aa3-401a-b550-3a338345ee07", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7a31b6eb-af47-4d34-9f2a-26ba64b2132b", "node_type": "1", "metadata": {}, "hash": "75c8a9ca7da411f16cbf1902741bf153c786618d3a7465d059a8e4d5baad5fb5", "class_name": "RelatedNodeInfo"}}, "text": "**CHAPTER 1: THE STORY BEGINS**\r\n\r\n~ 1. Vyasa Seeks a Scribe ~\r\nVyasa had composed a poem and needed a scribe to write it down.\r\n\"Will you be my scribe?\" he asked Ganesha, the elephant-headed god.\r\n\"I will,\" said Ganesha, \"provided you do not pause in your recitation.\"\r\n\"I agree,\" Vyasa replied, \"provided you understand each word's meaning before you write it down.\"\r\nVyasa recited, and Ganesha wrote.\r\nSometimes Vyasa said things that were confusing, and Ganesha would pause and think.\r\nOnce, when Ganesha's pen splintered, he broke off one of his own tusks to keep writing. \r\nThat was the first version of the Mahabharata.\r\nThis Mahabharata will begin with King Shantanu.\r\n\r\n~ 2. King Shantanu Gets Married ~\r\nKing Shantanu lived in a great palace in Hastinapura, but he had no queen.\r\nOne day he went hunting, and by the river he saw a beautiful woman. He loved the woman at first sight. \"Marry me!\" he said.\r\n\"I agree,\" the woman replied, \"under one condition: you must never question my actions.\"\r\nShantanu agreed, and they were soon married.\r\nA year later, their first child was born.\r\nOn that very day, the queen took the baby to the river and drowned him there.\r\nKing Shantanu was stunned, but said nothing.\r\nHe kept his promise to never question her actions.\r\n\r\n~ 3. The Story of Mahabhisha ~\r\nTo understand Shantanu's story, listen to the story of Mahabhisha:\r\nKing Mahabhisha had earned so much merit that he ascended to Indra's heaven. There he danced with the apsaras to the music of the gandharvas, drinking sura, and the wish-granting tree Kalpataru gave him everything he desired.\r\nOne day a breeze blew the goddess Ganga's garment aside. The devas looked away, but Mahabhisha could not resist: he stared directly at her naked breasts. \r\nIndra cursed Mahabhisha to return to earth, and he told Ganga to take human birth and break his heart.", "start_char_idx": 0, "end_char_idx": 1858, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7a31b6eb-af47-4d34-9f2a-26ba64b2132b": {"__data__": {"id_": "7a31b6eb-af47-4d34-9f2a-26ba64b2132b", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "95c0e825-1aa3-401a-b550-3a338345ee07", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e3363450fb9b4ad1ef497ed3e250ee096b059b4bb7ab359a0f6c26a6cf614799", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "faa0d074-69af-4556-b6d5-0e11f5deacaa", "node_type": "1", "metadata": {}, "hash": "a3b0b25b42ff3c970c12788c0bad38cd635ba65841b7028e6a059e26dc27aebb", "class_name": "RelatedNodeInfo"}}, "text": "A year later, their first child was born.\r\nOn that very day, the queen took the baby to the river and drowned him there.\r\nKing Shantanu was stunned, but said nothing.\r\nHe kept his promise to never question her actions.\r\n\r\n~ 3. The Story of Mahabhisha ~\r\nTo understand Shantanu's story, listen to the story of Mahabhisha:\r\nKing Mahabhisha had earned so much merit that he ascended to Indra's heaven. There he danced with the apsaras to the music of the gandharvas, drinking sura, and the wish-granting tree Kalpataru gave him everything he desired.\r\nOne day a breeze blew the goddess Ganga's garment aside. The devas looked away, but Mahabhisha could not resist: he stared directly at her naked breasts. \r\nIndra cursed Mahabhisha to return to earth, and he told Ganga to take human birth and break his heart.\r\nMahabhisha was reborn as Shantanu, king of Hastinapura.\r\n\r\n~ 4. King Shantanu Confronts the Queen ~\r\nKing Shantanu's queen drowned their first child in the river, and their second. One by one, she drowned seven children.\r\nShantanu said nothing.\r\nWhen she gave birth to their eighth child, Shantanu shouted, \"Stop! I forbid you to kill this child.\"\r\n\"The child will live, but I must leave you now,\" the queen replied. \"I am Ganga, goddess of this river, and I came to earth in order to marry you, bear your children, and drown them as soon as they were born. Our children were the eight Vasus, gods of the eight elements, cursed to be born as humans.\"\r\n\r\n~ 5. The Story of the Vasus ~\r\nPrabhasa, chief of the Vasus, had coveted the wish-granting cow of the rishi Vashishtha. Together with the other Vasus, Prabhasa stole the cow, but Vashishtha caught them and cursed them. \"You will be born on earth as humans.\"\r\nThe Vasus begged Ganga to be their mother on earth and drown them, making their lives as short as possible.\r\nGanga agreed.", "start_char_idx": 1051, "end_char_idx": 2895, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "faa0d074-69af-4556-b6d5-0e11f5deacaa": {"__data__": {"id_": "faa0d074-69af-4556-b6d5-0e11f5deacaa", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7a31b6eb-af47-4d34-9f2a-26ba64b2132b", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "8a18c45dae1385c94628f337fc8957b3234a28f22640affdc41fca6eae858817", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "636c1409-349f-4f40-9393-4ceec55a5fdc", "node_type": "1", "metadata": {}, "hash": "97a57ecd9f0cbb4b222f13a4c98e8b9bf5679878c06cad7bde3e3f6750d4a21f", "class_name": "RelatedNodeInfo"}}, "text": "I forbid you to kill this child.\"\r\n\"The child will live, but I must leave you now,\" the queen replied. \"I am Ganga, goddess of this river, and I came to earth in order to marry you, bear your children, and drown them as soon as they were born. Our children were the eight Vasus, gods of the eight elements, cursed to be born as humans.\"\r\n\r\n~ 5. The Story of the Vasus ~\r\nPrabhasa, chief of the Vasus, had coveted the wish-granting cow of the rishi Vashishtha. Together with the other Vasus, Prabhasa stole the cow, but Vashishtha caught them and cursed them. \"You will be born on earth as humans.\"\r\nThe Vasus begged Ganga to be their mother on earth and drown them, making their lives as short as possible.\r\nGanga agreed. She became the wife of King Shantanu, and she drowned their children as soon as they were born. But when the eighth child was born, Shantanu stopped her. \r\nThat eighth child was the incarnation of Prabhasa.\r\nShantanu named him Devavrata.\r\n\r\n~ 6. Devavrata Departs and Returns ~\r\n\"I will take Devavrata with me now,\" Ganga told Shantanu, cradling the infant in her arms, \"and return him to you later.\" She then disappeared into the river.\r\nKing Shantanu returned every day to the river, forever hoping that his wife and son would appear. \r\nThen, one day, it happened: Ganga emerged from the river, together with a handsome young man. \"Your son has learned the Vedas from the rishi Vashishtha,\" she said, \"and Parashurama has taught him the arts of war.\" \r\nShantanu embraced his son and proclaimed him to be the crown-prince, his heir.\r\nGanga then returned to heaven.\r\n\r\n~ 7. Shantanu Sees Satyavati ~\r\nKing Shantanu went hunting one day.\r\nAgain, he saw a beautiful woman by the river.\r\nAgain, he fell in love at first sight.\r\n\"Marry me!\" he said.\r\n\"You must ask my father's permission,\" she replied.", "start_char_idx": 2174, "end_char_idx": 3994, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "636c1409-349f-4f40-9393-4ceec55a5fdc": {"__data__": {"id_": "636c1409-349f-4f40-9393-4ceec55a5fdc", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "faa0d074-69af-4556-b6d5-0e11f5deacaa", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "a0fdf422db5a965503f7466b183b79c8f2bc15e67ec33c5916a24aac8ef7eee3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f22be064-6012-4722-a832-a61abf306896", "node_type": "1", "metadata": {}, "hash": "17c43d3aa01c22fa9935b06610e5747333cbf4eeae5e7c9b97ecc3fd446eecc2", "class_name": "RelatedNodeInfo"}}, "text": "She then disappeared into the river.\r\nKing Shantanu returned every day to the river, forever hoping that his wife and son would appear. \r\nThen, one day, it happened: Ganga emerged from the river, together with a handsome young man. \"Your son has learned the Vedas from the rishi Vashishtha,\" she said, \"and Parashurama has taught him the arts of war.\" \r\nShantanu embraced his son and proclaimed him to be the crown-prince, his heir.\r\nGanga then returned to heaven.\r\n\r\n~ 7. Shantanu Sees Satyavati ~\r\nKing Shantanu went hunting one day.\r\nAgain, he saw a beautiful woman by the river.\r\nAgain, he fell in love at first sight.\r\n\"Marry me!\" he said.\r\n\"You must ask my father's permission,\" she replied. \r\n\"Who are you?\" Shantanu asked. \"And who is your father?\"\r\n\"I am Satyavati,\" she said. \"My father is a fisherman.\"\r\n\"Let me marry your daughter!\" Shantanu said to the fisherman.\r\n\"I agree,\" he said, \"under one condition: when Satyavati bears you a son, that son must inherit the kingdom.\"\r\nBut Shantanu could not agree to this condition because he had named Devavrata as his heir.\r\n\r\n~ 8. The Story of Satyavati ~\r\nWho was Satyavati? This is her story:\r\nKing Uparichara, resting beneath a tree, thought of his wife and ejaculated. He wrapped the semen in a leaf and gave it to a parrot to take to his wife. \r\nBut a falcon attacked the parrot, and the leaf fell into a river.\r\nA fish ate the leaf... a fish who was actually an apsara cursed to live as a fish. \r\nA fisherman caught the fish and found twin babies inside. He took them to King Uparichara, who accepted the boy but gave the girl to the fisherman. \r\nShe became his daughter: Satyavati.\r\n\r\n~ 9.", "start_char_idx": 3297, "end_char_idx": 4950, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f22be064-6012-4722-a832-a61abf306896": {"__data__": {"id_": "f22be064-6012-4722-a832-a61abf306896", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "636c1409-349f-4f40-9393-4ceec55a5fdc", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5b8483a6d92e981069c94c96a2ae36f2dbfc920b6d1ed2b58d3983cfdadd2d8d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "53f5faff-bf43-4d45-a7c4-147fbc37536f", "node_type": "1", "metadata": {}, "hash": "ca518d5cea97792f821d7cac935906dfdb03ee42e923dce72151444004cdb29b", "class_name": "RelatedNodeInfo"}}, "text": "But Shantanu could not agree to this condition because he had named Devavrata as his heir.\r\n\r\n~ 8. The Story of Satyavati ~\r\nWho was Satyavati? This is her story:\r\nKing Uparichara, resting beneath a tree, thought of his wife and ejaculated. He wrapped the semen in a leaf and gave it to a parrot to take to his wife. \r\nBut a falcon attacked the parrot, and the leaf fell into a river.\r\nA fish ate the leaf... a fish who was actually an apsara cursed to live as a fish. \r\nA fisherman caught the fish and found twin babies inside. He took them to King Uparichara, who accepted the boy but gave the girl to the fisherman. \r\nShe became his daughter: Satyavati.\r\n\r\n~ 9. Devavrata Swears an Oath ~\r\nDevavrata saw that King Shantanu was troubled, and Shantanu told his son what had happened: to marry Satyavati, he had to promise that her son, not Devavrata, would inherit the kingdom.\r\nDevavrata did not hesitate. \"I renounce all claims to the throne!\" he said.\r\n\"But there is also the problem of your sons,\" Shantanu added.\r\nThen Devavrata swore a dreadful oath. \"I renounce all women, and I will never marry.\"\r\nHenceforth he was called Bhishma, meaning \"dreadful\" because of this dreadful oath. \r\nThe gods, in admiration and pity, gave Bhishma the boon of choosing the time of his own death.\r\n\r\n~ 10. King Shantanu Marries Satyavati ~\r\nShantanu then married Satyavati, and they had two sons: Chitrangada and Vichitravirya.\r\nWhen Shantanu died, Chitrangada became king of Hastinapura.\r\nChitrangada was a great warrior, but he died in battle before he could marry and have sons of his own.\r\nBhishma performed the funeral ritual, and then Vichitravirya became king. \r\nVichitravirya was still very young, so Bhishma and Satyavati ruled the kingdom in his stead.", "start_char_idx": 4286, "end_char_idx": 6039, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "53f5faff-bf43-4d45-a7c4-147fbc37536f": {"__data__": {"id_": "53f5faff-bf43-4d45-a7c4-147fbc37536f", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f22be064-6012-4722-a832-a61abf306896", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "41e62b31daac48df1d8b1b544d9e78076d729505cb373ee8b7ea68cf4fb6d642", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b3444ff9-4f43-490b-a0b9-dc866de39ee4", "node_type": "1", "metadata": {}, "hash": "a80c3f3f61796aefd99d3087bb1f0126bc8ca175dfe05440ebdf553037094f21", "class_name": "RelatedNodeInfo"}}, "text": "\"I renounce all women, and I will never marry.\"\r\nHenceforth he was called Bhishma, meaning \"dreadful\" because of this dreadful oath. \r\nThe gods, in admiration and pity, gave Bhishma the boon of choosing the time of his own death.\r\n\r\n~ 10. King Shantanu Marries Satyavati ~\r\nShantanu then married Satyavati, and they had two sons: Chitrangada and Vichitravirya.\r\nWhen Shantanu died, Chitrangada became king of Hastinapura.\r\nChitrangada was a great warrior, but he died in battle before he could marry and have sons of his own.\r\nBhishma performed the funeral ritual, and then Vichitravirya became king. \r\nVichitravirya was still very young, so Bhishma and Satyavati ruled the kingdom in his stead.\r\n\"He must marry as soon as possible and father sons to carry on the family line,\" Satyavati told Bhishma. \"Because he is too young to win brides for himself, you must do that for him!\"\r\n\r\n~ 11. Bhishma Goes to the Swayamvara ~\r\nBhishma went to the kingdom of Kashi, where King Kashya was holding a swayamvara for his three daughters: Amba, Ambika, and Ambalika. The king had invited many princes to the competition, but not Vichitravirya. \r\nBhishma, however, was determined that the princesses would marry his half-brother. So, before the competition even began, Bhishma rushed into the assembly, surprising everyone. He grabbed the three princesses and raced away in his chariot, fighting off the angry princes who pursued him.\r\nBhishma's rivals were disappointed, and none more so than Prince Shalva, who was secretly betrothed to the eldest of the three princesses, Amba.\r\n\r\n~ 12. Amba Pleads with Bhishma ~\r\nBhishma returned to Hastinapura with three brides for Vichitravirya, but Amba confessed that she was secretly betrothed to King Shalva.", "start_char_idx": 5344, "end_char_idx": 7087, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b3444ff9-4f43-490b-a0b9-dc866de39ee4": {"__data__": {"id_": "b3444ff9-4f43-490b-a0b9-dc866de39ee4", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "53f5faff-bf43-4d45-a7c4-147fbc37536f", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "f852215298819b1cf32a3fe1b27b2034910675feee510d82586949b6a269b6c0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "25bb1a78-5d33-4084-95c3-d35004d19e14", "node_type": "1", "metadata": {}, "hash": "f59fe9a7724ab4acc946aebf82e86924a93848c397fe377d9e3fdbacab1a7bcf", "class_name": "RelatedNodeInfo"}}, "text": "The king had invited many princes to the competition, but not Vichitravirya. \r\nBhishma, however, was determined that the princesses would marry his half-brother. So, before the competition even began, Bhishma rushed into the assembly, surprising everyone. He grabbed the three princesses and raced away in his chariot, fighting off the angry princes who pursued him.\r\nBhishma's rivals were disappointed, and none more so than Prince Shalva, who was secretly betrothed to the eldest of the three princesses, Amba.\r\n\r\n~ 12. Amba Pleads with Bhishma ~\r\nBhishma returned to Hastinapura with three brides for Vichitravirya, but Amba confessed that she was secretly betrothed to King Shalva. \r\n\"Let me go to Shalva,\" she begged.\r\nBhishma agreed, but when Amba went to Shalva, he rejected her. \"I cannot marry you,\" he said. \"You belong to Bhishma.\"\r\nThen, when Amba returned to Hastinapura, Bhishma also rejected her. \"I cannot let Vichitravirya marry you now,\" he said.\r\n\"Then you must marry me!\" insisted Amba.\r\n\"I cannot,\" Bhishma replied.\r\nWithout home or husband, Amba blamed Bhishma for her fate. \"Someday, somewhere, I will be the cause of Bhishma's death,\" she vowed.\r\n\r\n~ 13. Amba Goes to Parashurama ~\r\nAmba then sought an avenger who would fight Bhishma, but the kshatriya-warriors were all afraid of him, and no one would help her.\r\nThen Amba went to Parashurama, the brahmin-warrior who had been Bhishma's teacher.\r\n\"What Bhishma did to you was wrong,\" Parashurama said to Amba. \"I agree to fight him for you.\"\r\nParashurama challenged Bhishma, and Bhishma reluctantly agreed to fight his guru. They fought for many days and, to Parashurama's surprise, he could not defeat his former pupil.", "start_char_idx": 6402, "end_char_idx": 8098, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "25bb1a78-5d33-4084-95c3-d35004d19e14": {"__data__": {"id_": "25bb1a78-5d33-4084-95c3-d35004d19e14", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b3444ff9-4f43-490b-a0b9-dc866de39ee4", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "f03cb99dc1ddd00f619519ded524e850fc3cacc1ea993efc5f6e1780981a2e41", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba", "node_type": "1", "metadata": {}, "hash": "6994dcd970dd25a4601acce3d6c416e7b162046a2db07a95579131fb96f291c4", "class_name": "RelatedNodeInfo"}}, "text": "insisted Amba.\r\n\"I cannot,\" Bhishma replied.\r\nWithout home or husband, Amba blamed Bhishma for her fate. \"Someday, somewhere, I will be the cause of Bhishma's death,\" she vowed.\r\n\r\n~ 13. Amba Goes to Parashurama ~\r\nAmba then sought an avenger who would fight Bhishma, but the kshatriya-warriors were all afraid of him, and no one would help her.\r\nThen Amba went to Parashurama, the brahmin-warrior who had been Bhishma's teacher.\r\n\"What Bhishma did to you was wrong,\" Parashurama said to Amba. \"I agree to fight him for you.\"\r\nParashurama challenged Bhishma, and Bhishma reluctantly agreed to fight his guru. They fought for many days and, to Parashurama's surprise, he could not defeat his former pupil. \r\n\"No one can kill Bhishma unless he wishes to die,\" Parashurama told Amba. \"There is no way to defeat him.\"\r\n\r\n~ 14. Amba Prays to the Gods ~\r\nWhen Parashurama failed to defeat Bhishma, Amba despaired. She prayed to the gods to avenge her humiliation. She stood on one foot on top of a high mountain, through hot and cold, in sun and snow, not eating and not drinking until the gods answered her.\r\nYears passed.\r\nFinally Shiva appeared. \"You will bring about Bhishma's death, but not in this lifetime,\" he said. \"You must wait for your next lifetime.\"\r\nBut Amba didn't wait. She built a funeral pyre and threw herself into the flames.\r\nShe was reborn as Shikhandini, the daughter, and later the son, of King Drupada.\r\n\r\n~ 15. How the Sons of Satyavati Died ~\r\nChitrangada died unmarried. A gandharva had challenged him, shouting, \"My name is Chitrangada, and I forbid you to use my name!\" \"No!\" the king retorted; \"I am Chitrangada forever!\" Then they fought fiercely for days, weeks, months, years.", "start_char_idx": 7394, "end_char_idx": 9099, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba": {"__data__": {"id_": "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "25bb1a78-5d33-4084-95c3-d35004d19e14", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "2a53b1307c9fdfb8506c226899e0f6538db7590011141ad91072eb1b66665775", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "87ead4aa-923c-424d-834e-7c1ae7f2b7ea", "node_type": "1", "metadata": {}, "hash": "0bb8f3bf82515cb30dd7f008b0d9af2cd0925f40623d2f2290cd9ec5d8196fdc", "class_name": "RelatedNodeInfo"}}, "text": "Years passed.\r\nFinally Shiva appeared. \"You will bring about Bhishma's death, but not in this lifetime,\" he said. \"You must wait for your next lifetime.\"\r\nBut Amba didn't wait. She built a funeral pyre and threw herself into the flames.\r\nShe was reborn as Shikhandini, the daughter, and later the son, of King Drupada.\r\n\r\n~ 15. How the Sons of Satyavati Died ~\r\nChitrangada died unmarried. A gandharva had challenged him, shouting, \"My name is Chitrangada, and I forbid you to use my name!\" \"No!\" the king retorted; \"I am Chitrangada forever!\" Then they fought fiercely for days, weeks, months, years. After three years, the gandharva won. The king who would not surrender his name paid with his life.\r\nVichitravirya died married, but without sons. He was still a boy when he became king, and Bhishma ruled as his regent. \"You must not enter my palace,\" Bhishma told him, \"not ever!\" But Vichitravirya disobeyed him, and Bhishma's pet elephant crushed him to death.\r\n\r\n~ 16. Vichitravirya Leaves Two Widows ~\r\nWhen Vichitravirya died, he left behind two widows, the princesses of Kashi: Ambika and Ambalika. Both were childless.\r\n\"Who will be king of Hastinapura now?\" Satyavati wailed. In desperation, she turned to Bhishma for help. \"It is lawful for a dead man's brother to continue the family line,\" she told him. \"You are his half-brother! You must marry the princesses.\"\r\n\"You of all people know I cannot do that,\" Bhishma replied. \"Your father compelled me to renounce all offspring.\"\r\nSatyavati then said something that took Bhishma completely by surprise. \"Then I must summon my son. He is our only hope.\"\r\n\r\n~ 17.", "start_char_idx": 8498, "end_char_idx": 10121, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "87ead4aa-923c-424d-834e-7c1ae7f2b7ea": {"__data__": {"id_": "87ead4aa-923c-424d-834e-7c1ae7f2b7ea", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "19a326da91a7aa5f23819c9dfc3168f9ee4e304006229660deffb660f4b92761", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7d6cf556-eaa4-4670-8729-534daa57c8f7", "node_type": "1", "metadata": {}, "hash": "3335d1e0915aa502f5504b8ddaae92d5725ce2be7776b1b68d7d36e0ad0a2f4e", "class_name": "RelatedNodeInfo"}}, "text": "~ 16. Vichitravirya Leaves Two Widows ~\r\nWhen Vichitravirya died, he left behind two widows, the princesses of Kashi: Ambika and Ambalika. Both were childless.\r\n\"Who will be king of Hastinapura now?\" Satyavati wailed. In desperation, she turned to Bhishma for help. \"It is lawful for a dead man's brother to continue the family line,\" she told him. \"You are his half-brother! You must marry the princesses.\"\r\n\"You of all people know I cannot do that,\" Bhishma replied. \"Your father compelled me to renounce all offspring.\"\r\nSatyavati then said something that took Bhishma completely by surprise. \"Then I must summon my son. He is our only hope.\"\r\n\r\n~ 17. Another Story of Satyavati ~\r\nSatyavati, who had been born from a fish, became a beautiful young woman, but she smelled like a fish. People called her Matsyagandha, \"Fish-Smell,\" and no man would marry her.\r\nSatyavati worked ferrying people across the river, and one day a rishi named Parashara fell in love with her. \"Become my lover,\" he said, \"and I will use my powers to remove your fish-smell, replacing it with a scent no man can resist. I will also restore your virginity afterwards.\"\r\nSatyavati agreed, and the rishi kept his promise.\r\nTheir son was Vyasa.\r\nYes, the same Vyasa who composed the Mahabharata.\r\n\r\n~ 18. Satyavati Summons Vyasa ~\r\nTo continue the family line, Satyavati summoned Vyasa, who was living as a forest rishi.\r\n\"Mother, I will do what you want,\" he said, \"but give me time to make myself presentable.\"\r\n\"No,\" she said, \"come now! The widows await you.\"\r\nVyasa went to Ambika. Terrified by his appearance, she closed her eyes. \r\nAmbalika was also terrified, and the blood drained from her face.", "start_char_idx": 9467, "end_char_idx": 11146, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7d6cf556-eaa4-4670-8729-534daa57c8f7": {"__data__": {"id_": "7d6cf556-eaa4-4670-8729-534daa57c8f7", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "87ead4aa-923c-424d-834e-7c1ae7f2b7ea", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "1831ef173ec71b9c8b72baee27f758c2e5a97914fccefa47c22d249efca748e5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a", "node_type": "1", "metadata": {}, "hash": "8c974d36fa2cf3958cf8dd64aa04e2aa12c25a9237343bdb432038eea99870f7", "class_name": "RelatedNodeInfo"}}, "text": "\"Become my lover,\" he said, \"and I will use my powers to remove your fish-smell, replacing it with a scent no man can resist. I will also restore your virginity afterwards.\"\r\nSatyavati agreed, and the rishi kept his promise.\r\nTheir son was Vyasa.\r\nYes, the same Vyasa who composed the Mahabharata.\r\n\r\n~ 18. Satyavati Summons Vyasa ~\r\nTo continue the family line, Satyavati summoned Vyasa, who was living as a forest rishi.\r\n\"Mother, I will do what you want,\" he said, \"but give me time to make myself presentable.\"\r\n\"No,\" she said, \"come now! The widows await you.\"\r\nVyasa went to Ambika. Terrified by his appearance, she closed her eyes. \r\nAmbalika was also terrified, and the blood drained from her face.\r\nVyasa told Satyavati, \"Ambika's son will be blind, and Ambalika's son will be pale.\"\r\n\"Go to Ambalika again,\" Satyavati said.\r\nBut Ambalika had her maid take her place. She greeted Vyasa happily and showed no fear.\r\n\r\n~ 19. Three Sons are Born ~\r\nAll that Vyasa said came true.\r\nAmbika's son was born blind. They named him Dhritarashtra, which means \"Kingdom-Holder.\"\r\nAmbalika's son was born pale. They named him Pandu, which means \"Pale.\"\r\nAmbalika's maid had a beautiful boy, and they named him Vidura, which means \"Wise,\" and he grew up worthy of the name. But because he was the son of a maid, Vidura was not a royal prince like his brothers, and he could never be king.\r\nDhritarashtra was the eldest, but because he was blind, he was not allowed to become king.\r\nThus Pandu the Pale became king of Hastinapura.\r\n\r\n~ 20. The Story of Mandavya ~\r\nTo understand Vidura's story, listen to Mandavya's story:\r\nWhile the rishi Mandavya meditated, thieves hid in his ashram. The king's guards arrested Mandavya with the thieves. \"I'm innocent!\"", "start_char_idx": 10440, "end_char_idx": 12190, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a": {"__data__": {"id_": "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7d6cf556-eaa4-4670-8729-534daa57c8f7", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "224520867bdad0bf4d073e8b007832811bc4929f94c14e6ec44e314d19386b6b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41", "node_type": "1", "metadata": {}, "hash": "0a106113c2e2bf3cc9e191f7ef5fb15b6a3a0f4074f8a49864e6ae177aa7a2dd", "class_name": "RelatedNodeInfo"}}, "text": "They named him Dhritarashtra, which means \"Kingdom-Holder.\"\r\nAmbalika's son was born pale. They named him Pandu, which means \"Pale.\"\r\nAmbalika's maid had a beautiful boy, and they named him Vidura, which means \"Wise,\" and he grew up worthy of the name. But because he was the son of a maid, Vidura was not a royal prince like his brothers, and he could never be king.\r\nDhritarashtra was the eldest, but because he was blind, he was not allowed to become king.\r\nThus Pandu the Pale became king of Hastinapura.\r\n\r\n~ 20. The Story of Mandavya ~\r\nTo understand Vidura's story, listen to Mandavya's story:\r\nWhile the rishi Mandavya meditated, thieves hid in his ashram. The king's guards arrested Mandavya with the thieves. \"I'm innocent!\" Mandavya protested, but the king pierced him with a lance.\r\nMandavya complained to Yama, god of dharma.\r\n\"Actions have consequences,\" said Yama. \"That's karma. As a boy, you played with insects, piercing them with sticks. You, the impaler, have been impaled.\"\r\n\"That is not justice!\" replied Mandavya. \"I curse you to suffer unjustly in another life.\"\r\nYama was born as Vidura, having the qualities of a king but not allowed to rule.\r\n\r\n**CHAPTER 2: PANDAVAS AND KAURAVAS**\r\n\r\n~ 21. The Brothers Get Married ~\r\nKing Pandu married Kunti, daughter of Shurasena, ruler of the Yadavas. But Kunti bore no children, so after a while Pandu took a second wife, Madri, daughter of King Shalya of Madra. Like Kunti before her, Madri also did not bear any children, and Pandu had no son to succeed him.\r\nPrince Dhritarashtra, meanwhile, married a princess named Gandhari, daughter of King Subala of Gandhara. When she learned that her husband was blind, Gandhari blindfolded herself, vowing that she would share his blindness.\r\n\"Let us have children soon!\"", "start_char_idx": 11456, "end_char_idx": 13236, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41": {"__data__": {"id_": "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5edac92d5f9dfed99fdd0db6e061201b799c0791b308dfbc8ce693320a18aede", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "884f1a2d-bc91-4e73-89bb-970fbdd681b0", "node_type": "1", "metadata": {}, "hash": "0dcfcb6ad593cfb29260a47b031aa78812b70fcb61d615e95dab1705ecc2ce31", "class_name": "RelatedNodeInfo"}}, "text": "\"I curse you to suffer unjustly in another life.\"\r\nYama was born as Vidura, having the qualities of a king but not allowed to rule.\r\n\r\n**CHAPTER 2: PANDAVAS AND KAURAVAS**\r\n\r\n~ 21. The Brothers Get Married ~\r\nKing Pandu married Kunti, daughter of Shurasena, ruler of the Yadavas. But Kunti bore no children, so after a while Pandu took a second wife, Madri, daughter of King Shalya of Madra. Like Kunti before her, Madri also did not bear any children, and Pandu had no son to succeed him.\r\nPrince Dhritarashtra, meanwhile, married a princess named Gandhari, daughter of King Subala of Gandhara. When she learned that her husband was blind, Gandhari blindfolded herself, vowing that she would share his blindness.\r\n\"Let us have children soon!\" Dhritarashtra told her, hoping that their son would rule Hastinapura after Pandu.\r\n\r\n~ 22. Pandu Goes Hunting ~\r\nWhile hunting, Pandu shot a stag in the act of love. The stag was in fact a rishi named Kindama, and the doe was his wife. They had transformed into deer to make love in the forest.\r\nAs he was dying, Kindama cursed Pandu. \"You will die, just as I am dying, if you ever touch a woman again.\"\r\nPandu realized he would never be able to have a son, so he renounced the world and went to live in the wilderness. His devoted wives, Kunti and Madri, went into the wilderness with him.\r\nThus Dhritarashtra became king after all.\r\n\r\n~ 23. The Story of Kunti's Mantra ~\r\nBut Kunti had a secret.\r\nYears ago, the rishi Durvasa had visited her parents. Durvasa was notoriously bad-tempered, but Kunti's gracious hospitality pleased him, and he rewarded her with a mantra. \"It summons any god,\" he explained, \"and that god will give you a child.\"\r\nWondering if what Durvasa said was true, Kunti used the mantra to summon Surya, the sun-god.", "start_char_idx": 12493, "end_char_idx": 14276, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "884f1a2d-bc91-4e73-89bb-970fbdd681b0": {"__data__": {"id_": "884f1a2d-bc91-4e73-89bb-970fbdd681b0", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "2388978ed6dba8321597da5c57f32b158491e70ec60b286c4af4bdff2fc58270", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "862dbfdd-c488-4f3a-91b5-c339bc5f16bb", "node_type": "1", "metadata": {}, "hash": "2a4cc269eb1d357cbe472f4dc1557d54fa072a5fe18fb668c15ff0e46a8aea07", "class_name": "RelatedNodeInfo"}}, "text": "\"You will die, just as I am dying, if you ever touch a woman again.\"\r\nPandu realized he would never be able to have a son, so he renounced the world and went to live in the wilderness. His devoted wives, Kunti and Madri, went into the wilderness with him.\r\nThus Dhritarashtra became king after all.\r\n\r\n~ 23. The Story of Kunti's Mantra ~\r\nBut Kunti had a secret.\r\nYears ago, the rishi Durvasa had visited her parents. Durvasa was notoriously bad-tempered, but Kunti's gracious hospitality pleased him, and he rewarded her with a mantra. \"It summons any god,\" he explained, \"and that god will give you a child.\"\r\nWondering if what Durvasa said was true, Kunti used the mantra to summon Surya, the sun-god.\r\nSurya appeared! \r\n\"Forgive me,\" Kunti said. \"I didn't mean it.\"\r\n\"The mantra cannot be undone,\" Surya replied. \r\nKunti became pregnant, and when the baby was born, she put him in a basket and set him adrift in a river.\r\n\r\n~ 24. Kunti and Madri Have Sons ~\r\nKunti told Pandu about her mantra, and Pandu was delighted. \"Summon Yama, god of dharma,\" he exclaimed, \"and our son will be righteous.\"\r\nKunti summoned Yama, and she had a son. They named him Yudhishthira.\r\n\"Now summon Vayu, god of wind, so our son will be strong.\" Kunti had another son, and they named him Bhima. \r\n\"We need a warrior son,\" said Pandu. \"Summon Indra, king of the gods.\"\r\nKunti had a third son, and they named him Arjuna.\r\nKunti shared her mantra with Madri, and she summoned the twin Ashwin gods, who gave her twin sons, Nakula and Sahadeva.\r\n\r\n~ 25. Dhritarashtra Has a Son ~\r\nKing Dhritarashtra rejoiced when his wife Gandhari told him she was pregnant, but he despaired a year later when she still had not given birth.", "start_char_idx": 13572, "end_char_idx": 15275, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "862dbfdd-c488-4f3a-91b5-c339bc5f16bb": {"__data__": {"id_": "862dbfdd-c488-4f3a-91b5-c339bc5f16bb", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "884f1a2d-bc91-4e73-89bb-970fbdd681b0", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d2d94882a6af909d41212bb32721049802f83312c750ab2f3c0e738b097588f0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "53f6a2ac-8c4f-45b9-906b-04d3d023970b", "node_type": "1", "metadata": {}, "hash": "43ad8de41a4aa372d91c0430e9a7aac8e0d7a2ae41074fb87b80d9c4b6309da3", "class_name": "RelatedNodeInfo"}}, "text": "\"Summon Yama, god of dharma,\" he exclaimed, \"and our son will be righteous.\"\r\nKunti summoned Yama, and she had a son. They named him Yudhishthira.\r\n\"Now summon Vayu, god of wind, so our son will be strong.\" Kunti had another son, and they named him Bhima. \r\n\"We need a warrior son,\" said Pandu. \"Summon Indra, king of the gods.\"\r\nKunti had a third son, and they named him Arjuna.\r\nKunti shared her mantra with Madri, and she summoned the twin Ashwin gods, who gave her twin sons, Nakula and Sahadeva.\r\n\r\n~ 25. Dhritarashtra Has a Son ~\r\nKing Dhritarashtra rejoiced when his wife Gandhari told him she was pregnant, but he despaired a year later when she still had not given birth. Another year went by, and still Gandhari had not given birth, although her belly was big.\r\nWhile he waited for his wife's delivery, Dhritarashtra took his wife's maid, Sughada, into his bed. She gave birth to a son: Yuyutsu. \r\nBecause Yuyutsu's mother was a member of the servant class and not a kshatriya-warrior, Yuyutsu could not inherit the throne, much like his low-born uncle Vidura. Also like Vidura, Yuyutsu was a wise and righteous man.\r\n\r\n~ 26. Gandhari Has Sons ~\r\nPandu now had five sons by his two wives, but Dhritarashtra's wife Gandhari still had no children, although she had been pregnant for years. In frustration, she struck her belly, and a ball of flesh emerged.\r\nGandhari despaired, but Vyasa assured her, \"You will have many children.\" He divided the flesh into a hundred pieces, putting them into pots. \r\n\"These will be one hundred sons,\" Vyasa said.\r\n\"I'd like a daughter too,\" said Gandhari.\r\nVyasa brought another pot, and put a piece of flesh into that pot also.\r\nThe children grew in the pots: one hundred sons and one daughter.\r\n\r\n~ 27.", "start_char_idx": 14595, "end_char_idx": 16342, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "53f6a2ac-8c4f-45b9-906b-04d3d023970b": {"__data__": {"id_": "53f6a2ac-8c4f-45b9-906b-04d3d023970b", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "862dbfdd-c488-4f3a-91b5-c339bc5f16bb", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "ca82a409fd4f4906dff8442e4b383ba81f5095b999e5d5d8ebe9d1d16f07fe49", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c1056adb-88bc-4b55-813f-b36ca57ab40a", "node_type": "1", "metadata": {}, "hash": "38ce8cf0514a5a4c432b939e25924f7418022b8ce58004abd02d8dbb37248d8d", "class_name": "RelatedNodeInfo"}}, "text": "Also like Vidura, Yuyutsu was a wise and righteous man.\r\n\r\n~ 26. Gandhari Has Sons ~\r\nPandu now had five sons by his two wives, but Dhritarashtra's wife Gandhari still had no children, although she had been pregnant for years. In frustration, she struck her belly, and a ball of flesh emerged.\r\nGandhari despaired, but Vyasa assured her, \"You will have many children.\" He divided the flesh into a hundred pieces, putting them into pots. \r\n\"These will be one hundred sons,\" Vyasa said.\r\n\"I'd like a daughter too,\" said Gandhari.\r\nVyasa brought another pot, and put a piece of flesh into that pot also.\r\nThe children grew in the pots: one hundred sons and one daughter.\r\n\r\n~ 27. Pandu Cannot Resist ~\r\nOne day Pandu was seized with desire for his wife Madri. \"You are so beautiful. Come, let me embrace you!\"\r\n\"No!\" shrieked Madri.\r\nWhen Pandu touched her, he died, just as the curse foretold.\r\nStricken with grief and guilt, Madri leaped onto Pandu's funeral pyre.\r\nKunti then raised her sons and the sons of Madri together; they were the Pandavas, sons of Pandu.\r\nKunti brought the boys to Hastinapura.\r\nKing Dhritarashtra acknowledged his nephews, and the sons of Pandu grew up together with Dhritarashtra's sons, who were known as the Kauravas, descendants of Kuru, the ancient founder of their dynasty.\r\n\r\n~ 28. A Story about Pandu ~\r\nBefore his death, Pandu revealed a secret to his sons. \"Years of meditation have imbued my flesh with great wisdom. After I die, eat my flesh and you will receive this wisdom.\"\r\nBut the priests cremated Pandu's body before his sons could do as he had ordered.\r\nSahadeva, however, saw ants carrying away tiny bits of Pandu's body, which he took and put in his mouth. Instantly, he knew everything, past and future. \r\nThen a stranger, who was Krishna in disguise, told him, \"Never reveal your knowledge.", "start_char_idx": 15666, "end_char_idx": 17505, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c1056adb-88bc-4b55-813f-b36ca57ab40a": {"__data__": {"id_": "c1056adb-88bc-4b55-813f-b36ca57ab40a", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "53f6a2ac-8c4f-45b9-906b-04d3d023970b", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "94ce3149f9b92b8b87358e692f125acbc1a61007f10fa0e6a37a601810aa87d1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7", "node_type": "1", "metadata": {}, "hash": "331520532ca061fbf074a244308caab59ab59d225e63779e490bfe6ccc58e8d6", "class_name": "RelatedNodeInfo"}}, "text": "Kunti brought the boys to Hastinapura.\r\nKing Dhritarashtra acknowledged his nephews, and the sons of Pandu grew up together with Dhritarashtra's sons, who were known as the Kauravas, descendants of Kuru, the ancient founder of their dynasty.\r\n\r\n~ 28. A Story about Pandu ~\r\nBefore his death, Pandu revealed a secret to his sons. \"Years of meditation have imbued my flesh with great wisdom. After I die, eat my flesh and you will receive this wisdom.\"\r\nBut the priests cremated Pandu's body before his sons could do as he had ordered.\r\nSahadeva, however, saw ants carrying away tiny bits of Pandu's body, which he took and put in his mouth. Instantly, he knew everything, past and future. \r\nThen a stranger, who was Krishna in disguise, told him, \"Never reveal your knowledge. Answer every question with a question.\" \r\nSahadeva obeyed, keeping his knowledge to himself.\r\n\r\n~ 29. Duryodhana Plots against Bhima ~\r\nDuryodhana was the eldest son of Dhritarashtra, and he conceived a deep hatred for the Pandavas, his cousins. In particular, he hated Bhima, the strongest among the Pandavas, who liked to play tricks on him. \r\nDuryodhana decided to kill his cousin, so he put poison in Bhima's food and then, when Bhima was unconscious, he threw Bhima into the river.\r\nBhima sank deep into the waters, and when the nagas of the river bit him, their poison counteracted Duryodhana's poison. Bhima did not die! Amazed, the nagas took Bhima into the depths of the river to see their king, Vasuki.\r\n\r\n~ 30. Bhima Meets the Naga King ~\r\n\"You look familiar,\" Vasuki said. \"Who are you?\"\r\n\"I am Bhima, son of Pandu, King of Hastinapura, and of Kunti, daughter of Shurasena, ruler of the Yadavas.\"\r\n\"Of course!\" Vasuki exclaimed. \"Shurasena had a naga wife.", "start_char_idx": 16730, "end_char_idx": 18474, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7": {"__data__": {"id_": "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c1056adb-88bc-4b55-813f-b36ca57ab40a", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "994894354d176abf84c55c23ea92b7996772b4c1992490817144e8e4178eddbb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b607bba1-a2e4-46bb-b3c9-860812bc7f98", "node_type": "1", "metadata": {}, "hash": "43e2099922aeae13c7ccfbe8975096454d38f3c0f5202ea5c3185037f85c2c42", "class_name": "RelatedNodeInfo"}}, "text": "Duryodhana decided to kill his cousin, so he put poison in Bhima's food and then, when Bhima was unconscious, he threw Bhima into the river.\r\nBhima sank deep into the waters, and when the nagas of the river bit him, their poison counteracted Duryodhana's poison. Bhima did not die! Amazed, the nagas took Bhima into the depths of the river to see their king, Vasuki.\r\n\r\n~ 30. Bhima Meets the Naga King ~\r\n\"You look familiar,\" Vasuki said. \"Who are you?\"\r\n\"I am Bhima, son of Pandu, King of Hastinapura, and of Kunti, daughter of Shurasena, ruler of the Yadavas.\"\r\n\"Of course!\" Vasuki exclaimed. \"Shurasena had a naga wife. That makes us cousins! I know about Yadu also. He was once swimming in the ocean when the naga king of that time brought Yadu to his undersea palace and gave him five naga princesses to be his wives.\"\r\nThen Vasuki gave Bhima a potion endowing him with the strength of a thousand elephants, and Bhima emerged from the river more powerful than before. \r\n\r\n~ 31. Drona Comes to Hastinapura ~\r\nThe brahmin-warrior Drona came to Hastinapura seeking employment. As he approached the palace, he saw the young princes, both the Pandavas and the Kauravas, trying to retrieve a ball they had lost in a well.\r\n\"Help us, sir!\" said one of the boys; that boy was Arjuna.\r\nDrona plucked a blade of grass and threw it like a dart. It pierced the ball, and then he threw another blade of grass, and another, forming a chain so he could pull the ball out.\r\nThe boys, amazed by his abilities, ran to tell Bhishma, who engaged Drona to be their guru.\r\n\r\n~ 32. Drona Arranges an Archery Contest ~\r\nDrona trained the Pandavas and the Kauravas in warfare, and Arjuna was his best student.", "start_char_idx": 17852, "end_char_idx": 19541, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b607bba1-a2e4-46bb-b3c9-860812bc7f98": {"__data__": {"id_": "b607bba1-a2e4-46bb-b3c9-860812bc7f98", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "3bd9ddb9bf5b18d029a51ec1b4fc963aaa5f0262bacebfcab01177d07c1a7c56", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6", "node_type": "1", "metadata": {}, "hash": "ffb93b2f7dfd117de81c6d184bc8ddfbe6716b85b20e50d36c88273896bf657f", "class_name": "RelatedNodeInfo"}}, "text": "Drona Comes to Hastinapura ~\r\nThe brahmin-warrior Drona came to Hastinapura seeking employment. As he approached the palace, he saw the young princes, both the Pandavas and the Kauravas, trying to retrieve a ball they had lost in a well.\r\n\"Help us, sir!\" said one of the boys; that boy was Arjuna.\r\nDrona plucked a blade of grass and threw it like a dart. It pierced the ball, and then he threw another blade of grass, and another, forming a chain so he could pull the ball out.\r\nThe boys, amazed by his abilities, ran to tell Bhishma, who engaged Drona to be their guru.\r\n\r\n~ 32. Drona Arranges an Archery Contest ~\r\nDrona trained the Pandavas and the Kauravas in warfare, and Arjuna was his best student.\r\nOne day, Drona staged an archery contest. He mounted a stuffed bird high on a pole and summoned the princes. \"What do you see?\" Drona asked.\r\nYudhishthira went first. \"I see you, and a pole, and...\"\r\n\"Stop!\" Drona shouted. \"Next!\"\r\n\"I see a pole, and a bird...\" \r\nNone of the princes satisfied Drona. \r\nThen Arjuna said, \"I see an eye.\"\r\n\"Do you see the pole?\"\r\n\"No.\"\r\n\"The bird?\r\n\"No, only an eye.\"\r\n\"Shoot!\" said Drona, and Arjuna hit the target.\r\nThus Arjuna won the contest.\r\n\r\n~ 33. A Crocodile Attacks Drona ~\r\nOne day when Drona was bathing in the river, a crocodile seized him.\r\nDrona yelled for help, and Arjuna came running. When he saw his guru in the crocodile's jaws, Arjuna shot five arrows that sliced through the crocodile and killed it. \r\nDrona was free!\r\nIn gratitude, Drona taught Arjuna the mantra for a secret weapon. \"Use this weapon with care,\" Drona warned him.", "start_char_idx": 18835, "end_char_idx": 20428, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6": {"__data__": {"id_": "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b607bba1-a2e4-46bb-b3c9-860812bc7f98", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "ccaf2b926b2f2bb8abd48122e68e00368f72d7b4a56de7742b98f6965e3987ff", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "959ecb33-6cbf-4d64-83df-89efff550a84", "node_type": "1", "metadata": {}, "hash": "0ed9b8767a1ac2a842a05c372a8e16e630552d20a06602f33700fea348c7f96f", "class_name": "RelatedNodeInfo"}}, "text": "Drona shouted. \"Next!\"\r\n\"I see a pole, and a bird...\" \r\nNone of the princes satisfied Drona. \r\nThen Arjuna said, \"I see an eye.\"\r\n\"Do you see the pole?\"\r\n\"No.\"\r\n\"The bird?\r\n\"No, only an eye.\"\r\n\"Shoot!\" said Drona, and Arjuna hit the target.\r\nThus Arjuna won the contest.\r\n\r\n~ 33. A Crocodile Attacks Drona ~\r\nOne day when Drona was bathing in the river, a crocodile seized him.\r\nDrona yelled for help, and Arjuna came running. When he saw his guru in the crocodile's jaws, Arjuna shot five arrows that sliced through the crocodile and killed it. \r\nDrona was free!\r\nIn gratitude, Drona taught Arjuna the mantra for a secret weapon. \"Use this weapon with care,\" Drona warned him. \"If you launch it against an enemy who is inferior to you, it will destroy the universe. Use it only on an overwhelming enemy, and you will triumph, no matter how powerful your opponent might be.\"\r\n\r\n~ 34. Ekalavya Seeks a Guru ~\r\nEkalavya, a boy who lived in the forest, asked Drona to be his guru, but Drona refused. \r\nEkalavya then made a statue of Drona and trained himself under the gaze of this statue. \r\nHe became a remarkable archer.\r\nOne day Arjuna's hunting dog was barking. To silence the dog, Ekalavya shot arrows into the dog's mouth in a way that did not harm the dog but kept it from closing its mouth.\r\nWhen he saw this, Arjuna was dismayed. \"Look at this, Drona!\" he cried. \"You promised I would be the greatest archer, but even I cannot shoot like this.\"\r\n\r\n~ 35. Drona Demands Payment ~\r\n\"Who did this?\" Drona shouted, pointing to the arrows in the dog's mouth.\r\nEkalavya stepped forward. \"I did!\"\r\nDrona recognized the forest-boy. \"Who trained you?\"", "start_char_idx": 19751, "end_char_idx": 21398, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "959ecb33-6cbf-4d64-83df-89efff550a84": {"__data__": {"id_": "959ecb33-6cbf-4d64-83df-89efff550a84", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5117115dd72854deac72bc21ff40c1bf6a35b7b6b4c50cb80d1192a442d41f3b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e82c6ebc-eedb-4585-b85a-b25eb370b24c", "node_type": "1", "metadata": {}, "hash": "7fbff967f9c515c36f5543e7cd2b035550c30629ea95557dc2c59e6642d2772f", "class_name": "RelatedNodeInfo"}}, "text": "Ekalavya then made a statue of Drona and trained himself under the gaze of this statue. \r\nHe became a remarkable archer.\r\nOne day Arjuna's hunting dog was barking. To silence the dog, Ekalavya shot arrows into the dog's mouth in a way that did not harm the dog but kept it from closing its mouth.\r\nWhen he saw this, Arjuna was dismayed. \"Look at this, Drona!\" he cried. \"You promised I would be the greatest archer, but even I cannot shoot like this.\"\r\n\r\n~ 35. Drona Demands Payment ~\r\n\"Who did this?\" Drona shouted, pointing to the arrows in the dog's mouth.\r\nEkalavya stepped forward. \"I did!\"\r\nDrona recognized the forest-boy. \"Who trained you?\"\r\n\"You did,\" Ekalavya replied, proudly showing Drona the statue he had made, certain Drona would now accept him as his student.\r\nBut instead, Drona said, \"Since I was your guru, you must now pay the guru-fee.\"\r\n\"Anything!\" exclaimed Ekalavya.\r\n\"Give me the thumb of your right hand,\" said Drona.\r\nEkalavya did not hesitate; he cut off his thumb and presented it to Drona.\r\nDrona smiled; the boy would never again rival Arjuna as an archer.\r\n\r\n~ 36. The Princes Display Their Prowess ~\r\nWhen the princes completed their training, Drona organized a tournament, and the public thronged the stadium.\r\nYudhishthira, Duryodhana, Bhima, all the princes performed brilliantly, but Arjuna was the best.\r\nThen a stranger entered the stadium. \"I challenge you, Arjuna!\" he said. \"Fight me!\"\r\n\"But who are you?\" asked Drona. \r\n\"I am Karna!\" replied the stranger.\r\n\"I don't know you,\" Drona said. \"Who is your father?\"\r\nThe stranger hesitated. \"My father is a charioteer.\"\r\nDrona sneered at the stranger.\r\nBut Queen Kunti, sitting in the audience, fainted.", "start_char_idx": 20750, "end_char_idx": 22441, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e82c6ebc-eedb-4585-b85a-b25eb370b24c": {"__data__": {"id_": "e82c6ebc-eedb-4585-b85a-b25eb370b24c", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "959ecb33-6cbf-4d64-83df-89efff550a84", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "c1abd4eac5f8a37c2b2460df7e8f9f62059f44c4f64a350fc09e08ca935df016", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8f0fec39-2a1f-4177-801d-bf302b6f63a1", "node_type": "1", "metadata": {}, "hash": "7685c5cc8f2a12d977f384a1ededf6f0615e8cd7effe4512a0bbe85fd1c4e928", "class_name": "RelatedNodeInfo"}}, "text": "Drona smiled; the boy would never again rival Arjuna as an archer.\r\n\r\n~ 36. The Princes Display Their Prowess ~\r\nWhen the princes completed their training, Drona organized a tournament, and the public thronged the stadium.\r\nYudhishthira, Duryodhana, Bhima, all the princes performed brilliantly, but Arjuna was the best.\r\nThen a stranger entered the stadium. \"I challenge you, Arjuna!\" he said. \"Fight me!\"\r\n\"But who are you?\" asked Drona. \r\n\"I am Karna!\" replied the stranger.\r\n\"I don't know you,\" Drona said. \"Who is your father?\"\r\nThe stranger hesitated. \"My father is a charioteer.\"\r\nDrona sneered at the stranger.\r\nBut Queen Kunti, sitting in the audience, fainted. She had guessed Karna's identity: he was her first-born son, now a grown man.\r\n\r\n~ 37. Karna Becomes King of Anga ~\r\nKarna turned to leave, but Duryodhana badly wanted to humiliate Arjuna. \r\n\"Stop!\" he shouted. \"I make Karna king of Anga, and the king of Anga will fight Arjuna.\"\r\n\"I am your loyal friend forever,\" said Karna. Then he turned to face Arjuna. \"Now we will fight!\"\r\nArjuna was indignant. \"I won't fight a charioteer's son!\"\r\n\"He is a king!\" Duryodhana shouted, turning to his father for support, although Dhritarashtra only shook his head in confusion.\r\nThe crowd murmured, not sure what to think.\r\nThen the sun set.\r\nThe tournament was over, but Duryodhana had acquired a new ally in Karna.\r\n\r\n~ 38. The Story of Karna and the Two Curses ~\r\nA charioteer had found baby Karna in the river and adopted him, but Karna's life was cursed.\r\nFirst, practicing archery, Karna accidentally killed a brahmin's cow. \"You will die like my cow,\" swore the brahmin, \"struck down by an inescapable arrow.\"", "start_char_idx": 21771, "end_char_idx": 23447, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8f0fec39-2a1f-4177-801d-bf302b6f63a1": {"__data__": {"id_": "8f0fec39-2a1f-4177-801d-bf302b6f63a1", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e82c6ebc-eedb-4585-b85a-b25eb370b24c", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "38f119a348396d62cefa7bab021dbbc1efe2e30d5c81d3299eac076f02724b27", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490", "node_type": "1", "metadata": {}, "hash": "7c10af2ce3a4310a4f799f1a32171946518ded20294f125ad29255bb65c6db20", "class_name": "RelatedNodeInfo"}}, "text": "\"I am your loyal friend forever,\" said Karna. Then he turned to face Arjuna. \"Now we will fight!\"\r\nArjuna was indignant. \"I won't fight a charioteer's son!\"\r\n\"He is a king!\" Duryodhana shouted, turning to his father for support, although Dhritarashtra only shook his head in confusion.\r\nThe crowd murmured, not sure what to think.\r\nThen the sun set.\r\nThe tournament was over, but Duryodhana had acquired a new ally in Karna.\r\n\r\n~ 38. The Story of Karna and the Two Curses ~\r\nA charioteer had found baby Karna in the river and adopted him, but Karna's life was cursed.\r\nFirst, practicing archery, Karna accidentally killed a brahmin's cow. \"You will die like my cow,\" swore the brahmin, \"struck down by an inescapable arrow.\"\r\nAnother time, Karna saw a girl crying because she had spilled a pot of milk. Feeling sorry for her, Karna squeezed the milk back out of the earth. This caused the earth great pain, and the earth goddess, Bhudevi, cursed Karna. \"When you are in danger,\" she said, \"I will not help you; instead, I will help your opponent.\"\r\n\r\n~ 39. Karna Becomes Parashurama's Disciple ~\r\nKarna asked the brahmin-warrior Parashurama to teach him the Brahmastra weapon.\r\n\"I suspect you're a kshatriya,\" said Parashurama.\r\n\"No!\" Karna lied. \"I'm no kshatriya!\"\r\nSo Karna became Parashurama's disciple.\r\nOne day Parashurama fell asleep, his head resting on Karna's lap. An enormous centipede bit Karna's thigh and sucked his blood. Karna said nothing, not wanting to wake his guru.\r\nWhen Parashurama awoke and found himself covered with blood, he shouted, \"Only a kshatriya would bear such pain in silence. For your deceit, I curse you: when you want to use the Brahmastra, the sacred mantra will slip from your mind.\"\r\n\r\n~ 40.", "start_char_idx": 22723, "end_char_idx": 24455, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490": {"__data__": {"id_": "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8f0fec39-2a1f-4177-801d-bf302b6f63a1", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "08872bd991698ebad216919f08699f07ffaecf1e3e7b42e0896c4746a01748bb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "300c85a4-9959-45d3-ac1d-29dab974439d", "node_type": "1", "metadata": {}, "hash": "3c2ae15473e4ff949907b84c610852d9b3b1ae01358e8183c043c0b7ef04a30f", "class_name": "RelatedNodeInfo"}}, "text": "~ 39. Karna Becomes Parashurama's Disciple ~\r\nKarna asked the brahmin-warrior Parashurama to teach him the Brahmastra weapon.\r\n\"I suspect you're a kshatriya,\" said Parashurama.\r\n\"No!\" Karna lied. \"I'm no kshatriya!\"\r\nSo Karna became Parashurama's disciple.\r\nOne day Parashurama fell asleep, his head resting on Karna's lap. An enormous centipede bit Karna's thigh and sucked his blood. Karna said nothing, not wanting to wake his guru.\r\nWhen Parashurama awoke and found himself covered with blood, he shouted, \"Only a kshatriya would bear such pain in silence. For your deceit, I curse you: when you want to use the Brahmastra, the sacred mantra will slip from your mind.\"\r\n\r\n~ 40. The Story of Drona and Drupada ~\r\nWhen Drona had trained the Pandavas and Kauravas, he demanded the guru-fee: he wanted revenge on King Drupada.\r\nThis is why:\r\nYoung Drupada had studied with Bharadwaja, Drona's father. As boys, Drupada and Drona were best friends. \r\nTime passed. Drupada became king, while Drona was only a poor brahmin, so poor he didn't even have milk to give to his little boy, Ashwatthama.\r\nOut of love for his son, Drona went to ask his friend Drupada for help.\r\n\"Friend?\" King Drupada scoffed. \"Friends must be equals, but you are not my equal in any way.\"\r\nDrona vowed revenge that day.\r\n\r\n~ 41. Drona Gets Revenge ~\r\n\"For the guru-fee,\" Drona said to his pupils, the Pandavas and the Kauravas, \"you will attack King Drupada. Seize him, and bring him here.\"\r\nThe princes succeeded, and they brought Drupada in chains to Drona.\r\n\"I could kill you right now, Drupada,\" said Drona, \"but I will not kill you.", "start_char_idx": 23774, "end_char_idx": 25384, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "300c85a4-9959-45d3-ac1d-29dab974439d": {"__data__": {"id_": "300c85a4-9959-45d3-ac1d-29dab974439d", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "1a3db0d61d9d28029fccab604ffe23a8937a96f067d9e1761de4a9f679ac3db5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1", "node_type": "1", "metadata": {}, "hash": "9f0b3082ceebf61b59ed26419cb9de03def61d1c24cc8436e850bd3b4976f0b9", "class_name": "RelatedNodeInfo"}}, "text": "Time passed. Drupada became king, while Drona was only a poor brahmin, so poor he didn't even have milk to give to his little boy, Ashwatthama.\r\nOut of love for his son, Drona went to ask his friend Drupada for help.\r\n\"Friend?\" King Drupada scoffed. \"Friends must be equals, but you are not my equal in any way.\"\r\nDrona vowed revenge that day.\r\n\r\n~ 41. Drona Gets Revenge ~\r\n\"For the guru-fee,\" Drona said to his pupils, the Pandavas and the Kauravas, \"you will attack King Drupada. Seize him, and bring him here.\"\r\nThe princes succeeded, and they brought Drupada in chains to Drona.\r\n\"I could kill you right now, Drupada,\" said Drona, \"but I will not kill you. I want us to be friends.\" Drona then smiled a cold smile. \"Friends must be equals. So I will take half of your kingdom.\"\r\nDrupada stared at him in angry silence. \r\n\"That makes us equals,\" Drona continued, \"and now we can be friends.\" \r\nDrupada agreed, but he never forgave Drona.\r\n\r\n~ 42. Drupada Prays for Children ~\r\nEnraged at Drona and his patrons in Hastinapura, Drupada prayed to Shiva. \"Give me a son to kill Bhishma, then a son to kill Drona, and a daughter to divide and destroy Hastinapura.\"\r\nThe god Shiva appeared and said, \"Your prayers are granted.\"\r\nDrupada's wife had a daughter, Shikhandini. Trusting this would be the son who would kill Bhishma, Drupada raised Shikhandini as a boy: Shikhandin.\r\nDrupada then conducted a ritual and from the sacred fire a young man emerged, wearing supernatural armor. Drupada named him Dhrishtadyumna.\r\nThen, a young woman emerged from the fire, and Drupada named her Draupadi.\r\n\r\n~ 43.", "start_char_idx": 24723, "end_char_idx": 26323, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1": {"__data__": {"id_": "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "300c85a4-9959-45d3-ac1d-29dab974439d", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "3f7a74d55088e840bab26b813e359e80c6b14e191a367b88efc490d869a32763", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9f9746bb-a323-4f71-86a3-cc9695cab68f", "node_type": "1", "metadata": {}, "hash": "123221fe4a79b90cf4f434bc83ee342b0afb163e960f2de1b1a522f3205bb185", "class_name": "RelatedNodeInfo"}}, "text": "~ 42. Drupada Prays for Children ~\r\nEnraged at Drona and his patrons in Hastinapura, Drupada prayed to Shiva. \"Give me a son to kill Bhishma, then a son to kill Drona, and a daughter to divide and destroy Hastinapura.\"\r\nThe god Shiva appeared and said, \"Your prayers are granted.\"\r\nDrupada's wife had a daughter, Shikhandini. Trusting this would be the son who would kill Bhishma, Drupada raised Shikhandini as a boy: Shikhandin.\r\nDrupada then conducted a ritual and from the sacred fire a young man emerged, wearing supernatural armor. Drupada named him Dhrishtadyumna.\r\nThen, a young woman emerged from the fire, and Drupada named her Draupadi.\r\n\r\n~ 43. Shikhandin Gets Married ~\r\nThe girl born to King Drupada, Shikhandini, was Amba. As the gods promised, she was reborn as a warrior who would defeat Bhishma, but because she had cut short her life as a woman, she still had years of a woman's life left to live.\r\nDrupada, however, was confident, and he raised Shikhandini as a boy. He even arranged for Shikhandin to marry the daughter of King Hiranyavarna, but when the bride discovered her husband-to-be was a woman, she ran home to her father, who declared war on King Drupada. \r\nShikhandin resolved to go into the forest and commit suicide.\r\n\r\n~ 44. Shikhandin Meets a Helpful Yaksha ~\r\nShikhandin built a funeral pyre and was prepared to leap into the flames when a yaksha shouted, \"Wait! What are you doing, young warrior? Why end your life?\"\r\nShikhandin explained.\r\nThe yaksha, whose name was Sthuna, offered to trade genders. \"I will give you my manhood,\" said the yaksha, \"and instead of Sthuna, I will become Sthuni.", "start_char_idx": 25668, "end_char_idx": 27298, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9f9746bb-a323-4f71-86a3-cc9695cab68f": {"__data__": {"id_": "9f9746bb-a323-4f71-86a3-cc9695cab68f", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "76c55852d97cb615fe539302c29b69ea546ac22e9090243d2df162923ec8710e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5fde48b8-41f2-449a-b8e7-acd042828b18", "node_type": "1", "metadata": {}, "hash": "4ea202887d5874a937ed9386c7ab18191d66ca6e6a2bd3ccf58dfd4999936549", "class_name": "RelatedNodeInfo"}}, "text": "Drupada, however, was confident, and he raised Shikhandini as a boy. He even arranged for Shikhandin to marry the daughter of King Hiranyavarna, but when the bride discovered her husband-to-be was a woman, she ran home to her father, who declared war on King Drupada. \r\nShikhandin resolved to go into the forest and commit suicide.\r\n\r\n~ 44. Shikhandin Meets a Helpful Yaksha ~\r\nShikhandin built a funeral pyre and was prepared to leap into the flames when a yaksha shouted, \"Wait! What are you doing, young warrior? Why end your life?\"\r\nShikhandin explained.\r\nThe yaksha, whose name was Sthuna, offered to trade genders. \"I will give you my manhood,\" said the yaksha, \"and instead of Sthuna, I will become Sthuni. You can go prove to your father that you are his son and to your wife that you are her husband, and then come return my manhood to me.\"\r\nShikhandin was delighted. \"I will come back and return your manhood tomorrow,\" he promised.\r\n\r\n~ 45. Kubera Confronts Sthuni ~\r\nShikhandin went back home to prove his manhood, while Sthuni awaited his return.\r\nLater that day, however, Kubera, King of the Yakshas, paid a visit and noticed Sthuni had changed gender. \"When did you become a woman?\" he asked, and Sthuni explained.\r\nThis made Kubera angry. \"Gender is not a toy to play with. You will remain a woman, and Shikhandin will remain a man. Only when Shikhandin dies will his manhood return to you.\"\r\nThus the gods fulfilled their promise to Amba and Drupada: Shikhandin, a warrior born as a woman, would be able to defeat Bhishma in battle.\r\n\r\n**CHAPTER 3: THE CONFLICT INTENSIFIES**\r\n\r\n~ 46.", "start_char_idx": 26585, "end_char_idx": 28186, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5fde48b8-41f2-449a-b8e7-acd042828b18": {"__data__": {"id_": "5fde48b8-41f2-449a-b8e7-acd042828b18", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f9746bb-a323-4f71-86a3-cc9695cab68f", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "26736c802cca09b7db3eccb98dfa7ca64386ad5bf41678e657a57da2dd07bf49", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "53760522-dbe6-4ac0-8639-cf27672ecb67", "node_type": "1", "metadata": {}, "hash": "22e430ff360862a0952ce3c77339f1066b1b9670956c28a9084638c321e24b5b", "class_name": "RelatedNodeInfo"}}, "text": "~ 45. Kubera Confronts Sthuni ~\r\nShikhandin went back home to prove his manhood, while Sthuni awaited his return.\r\nLater that day, however, Kubera, King of the Yakshas, paid a visit and noticed Sthuni had changed gender. \"When did you become a woman?\" he asked, and Sthuni explained.\r\nThis made Kubera angry. \"Gender is not a toy to play with. You will remain a woman, and Shikhandin will remain a man. Only when Shikhandin dies will his manhood return to you.\"\r\nThus the gods fulfilled their promise to Amba and Drupada: Shikhandin, a warrior born as a woman, would be able to defeat Bhishma in battle.\r\n\r\n**CHAPTER 3: THE CONFLICT INTENSIFIES**\r\n\r\n~ 46. Kunti's Elephant Ritual ~\r\nKunti decided to perform an elephant ritual to bring blessings upon her sons, so she had the potters of Hastinapura make elephants of clay for her to use.\r\nGandhari was jealous and wanted to perform an even grander ritual for her sons, so she had the goldsmiths make golden elephants. \r\nKunti was dismayed, but Arjuna said, \"Don't worry! I'll ask my divine father Indra to send his heavenly elephant Airavata.\" Arjuna then lifted his bow, shooting arrows into the sky to create a bridge by which Airavata descended.\r\nKunti thus conducted the most grand elephant ritual ever seen in Hastinapura. \r\n\r\n~ 47. Queen Satyavati Departs ~\r\nThe aged Queen Satyavati was dismayed to see such strife among her great-grandsons, the sons of Pandu and the sons of Dhritarashtra. \r\n\"All my life I worked for the success of this family,\" she said, \"but now I see the sons of the sons of my son quarreling with each other like dogs fighting over scraps in the street. I cannot bear it. I am going to retire into the forest.\"\r\nThe widows of Vichitravirya, Ambika and Ambalika, departed together with her.", "start_char_idx": 27531, "end_char_idx": 29300, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "53760522-dbe6-4ac0-8639-cf27672ecb67": {"__data__": {"id_": "53760522-dbe6-4ac0-8639-cf27672ecb67", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5fde48b8-41f2-449a-b8e7-acd042828b18", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "a8d74b2dba7a094bdb985b31286f30ef4a758df8df346c68fbf4ab378bdbf794", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ff57d127-4592-40df-a7f3-d3775d9dda96", "node_type": "1", "metadata": {}, "hash": "a53c6be566ce20d91576f04ce96e437bc6c60e4dcf9e235a706c92db1c892927", "class_name": "RelatedNodeInfo"}}, "text": "I'll ask my divine father Indra to send his heavenly elephant Airavata.\" Arjuna then lifted his bow, shooting arrows into the sky to create a bridge by which Airavata descended.\r\nKunti thus conducted the most grand elephant ritual ever seen in Hastinapura. \r\n\r\n~ 47. Queen Satyavati Departs ~\r\nThe aged Queen Satyavati was dismayed to see such strife among her great-grandsons, the sons of Pandu and the sons of Dhritarashtra. \r\n\"All my life I worked for the success of this family,\" she said, \"but now I see the sons of the sons of my son quarreling with each other like dogs fighting over scraps in the street. I cannot bear it. I am going to retire into the forest.\"\r\nThe widows of Vichitravirya, Ambika and Ambalika, departed together with her. No one ever saw them again.\r\nKunti and Gandhari were then the elders among the ladies of Hastinapura.\r\n\r\n~ 48. The Kauravas and Pandavas Trade Insults ~\r\nThe young Kauravas often insulted their Pandava cousins. \"Pathetic Pandu had no sons!\" they would shout. \"Your mothers were whores!\"\r\nOne day, though, Bhima shouted back, \"Your mother's a widow!\"\r\nThe Kauravas ran to Bhishma to ask what this meant, and Bhishma launched an investigation. He learned that the astrologers of Gandhara predicted Gandhari's first husband would die, while her second husband would live a long life. Gandhari's father, King Subala, thus decided to cheat fate: he married Gandhari to a goat which he then sacrificed.\r\nDhritarashtra was her second husband.\r\nBhishma was furious when he learned of this deceit.\r\n\r\n~ 49. Bhishma Imprisons Subala ~\r\nBhishma vowed to kill Subala and his family. He locked them in prison, giving them only a handful of rice each day. \r\nSubala's sons fought over the rice, but Subala ordered them to give it all to Shakuni.", "start_char_idx": 28552, "end_char_idx": 30331, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ff57d127-4592-40df-a7f3-d3775d9dda96": {"__data__": {"id_": "ff57d127-4592-40df-a7f3-d3775d9dda96", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "53760522-dbe6-4ac0-8639-cf27672ecb67", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "980fe9a8d274e3082c0fab4cafd0577879a9fa17d254f94ae87d5117bde0296b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "679c948a-9f6c-4fb6-96a3-5140a1d414ea", "node_type": "1", "metadata": {}, "hash": "a01a687e9a9925cd03e9a890f2c2a070f24b9ba2ad2c0b7db03c9984c8039e61", "class_name": "RelatedNodeInfo"}}, "text": "One day, though, Bhima shouted back, \"Your mother's a widow!\"\r\nThe Kauravas ran to Bhishma to ask what this meant, and Bhishma launched an investigation. He learned that the astrologers of Gandhara predicted Gandhari's first husband would die, while her second husband would live a long life. Gandhari's father, King Subala, thus decided to cheat fate: he married Gandhari to a goat which he then sacrificed.\r\nDhritarashtra was her second husband.\r\nBhishma was furious when he learned of this deceit.\r\n\r\n~ 49. Bhishma Imprisons Subala ~\r\nBhishma vowed to kill Subala and his family. He locked them in prison, giving them only a handful of rice each day. \r\nSubala's sons fought over the rice, but Subala ordered them to give it all to Shakuni. \"He is the most clever,\" said Subala. \"He must live to avenge us.\" Subala then broke Shakuni's ankle. \"When you limp,\" he said, \"remember us.\"\r\nLater, as he was dying, Subala said, \"Make my knucklebones into dice. Those dice will do your bidding.\"\r\nShakuni alone survived. He then lived in Hastinapura with Gandhari, but he nursed hatred for Bhishma in his heart.\r\n\r\n~ 50. King Dhritarashtra Sends the Pandavas Away ~\r\nKing Dhritarashtra assigned his nephew Yudhishthira important public duties in Hastinapura, but he later regretted this decision. Yudhishthira and his brothers became wildly popular, and Dhritarashtra was worried that the Pandava brothers had eclipsed his own son Duryodhana in the public's esteem.\r\nAs a result, the king decided to send the Pandavas away. \"Take a long holiday!\" he said to Yudhishthira. \"Go with your mother and brothers to Varanavata.\"\r\nYudhishthira was surprised, but he did as his uncle commanded.", "start_char_idx": 29589, "end_char_idx": 31269, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "679c948a-9f6c-4fb6-96a3-5140a1d414ea": {"__data__": {"id_": "679c948a-9f6c-4fb6-96a3-5140a1d414ea", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ff57d127-4592-40df-a7f3-d3775d9dda96", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "96bd5a93e15dc9ec144200539fb3dbb171ab975dc77934ab7588a28e146339af", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c1b4432b-c5f5-4740-95c6-65ea65531886", "node_type": "1", "metadata": {}, "hash": "cd3162d495a9f72b9d9b8b142e3442544998a48c820a6fed5a8936d64448c479", "class_name": "RelatedNodeInfo"}}, "text": "Those dice will do your bidding.\"\r\nShakuni alone survived. He then lived in Hastinapura with Gandhari, but he nursed hatred for Bhishma in his heart.\r\n\r\n~ 50. King Dhritarashtra Sends the Pandavas Away ~\r\nKing Dhritarashtra assigned his nephew Yudhishthira important public duties in Hastinapura, but he later regretted this decision. Yudhishthira and his brothers became wildly popular, and Dhritarashtra was worried that the Pandava brothers had eclipsed his own son Duryodhana in the public's esteem.\r\nAs a result, the king decided to send the Pandavas away. \"Take a long holiday!\" he said to Yudhishthira. \"Go with your mother and brothers to Varanavata.\"\r\nYudhishthira was surprised, but he did as his uncle commanded.\r\nMeanwhile, Dhritarashtra, Duryodhana, and Shakuni hatched an evil plot, hoping to put an end to the Pandavas once and for all.\r\n\r\n~ 51. Duryodhana Plots against the Pandavas ~\r\nKing Dhritarashtra ordered a beautiful palace built for the Pandavas in Varanavata, and he put his son Duryodhana in charge.\r\nDuryodhana, meanwhile, turned the palace into a deadly trap, arranging for the building materials to be soaked in oil and resin so he could burn the Pandavas alive in their home.\r\nBut Vidura, Dhritarashtra's low-born brother, warned his nephews to beware. \"The wise jackal's den has more than one exit,\" he told Yudhishthira. \r\n\"I understand,\" said Yudhishthira, smiling. \r\nThe Pandavas pretended to be delighted with their new palace, but they secretly built a tunnel that would provide a safe escape.\r\n\r\n~ 52. The House in Varanavata Burns ~\r\nThe royal administrator in Varanavata, Purochana, was Duryodhana's agent. The Pandavas knew he planned to kill them in a fire.", "start_char_idx": 30546, "end_char_idx": 32245, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c1b4432b-c5f5-4740-95c6-65ea65531886": {"__data__": {"id_": "c1b4432b-c5f5-4740-95c6-65ea65531886", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "679c948a-9f6c-4fb6-96a3-5140a1d414ea", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "246cc02a3c307941ce5a866ce5acf7d560b8e1bd72964968361de8dc7386a5ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9edd2eb0-12b6-4c60-a46d-cd8e72094039", "node_type": "1", "metadata": {}, "hash": "3c9ef9bd5cef74bc232981b017e10518ce63ec764aca2256b9e7ee54236c48c6", "class_name": "RelatedNodeInfo"}}, "text": "Duryodhana, meanwhile, turned the palace into a deadly trap, arranging for the building materials to be soaked in oil and resin so he could burn the Pandavas alive in their home.\r\nBut Vidura, Dhritarashtra's low-born brother, warned his nephews to beware. \"The wise jackal's den has more than one exit,\" he told Yudhishthira. \r\n\"I understand,\" said Yudhishthira, smiling. \r\nThe Pandavas pretended to be delighted with their new palace, but they secretly built a tunnel that would provide a safe escape.\r\n\r\n~ 52. The House in Varanavata Burns ~\r\nThe royal administrator in Varanavata, Purochana, was Duryodhana's agent. The Pandavas knew he planned to kill them in a fire. \r\n\"We'll beat him to it,\" said Yudhishthira, and he ordered Bhima to set the palace on fire.\r\nThe Pandavas escaped through their tunnel, while Purochana died in the flames. \r\nA mother and her five sons also died in the fire. They had come to the palace seeking food and drink, and there they fell asleep, intoxicated.\r\nThe next day, when their charred remains were discovered, Duryodhana was delighted, thinking the Pandavas and their mother Kunti had died in the fire.\r\n\r\n~ 53. The Pandavas Escape ~\r\nWhen the Pandavas and Kunti emerged at the other end of the tunnel, they met a boatman who was waiting for them as Vidura had arranged, and they gave the watchword: \"The wise jackal's den has more than one exit.\"\r\nThis boatman took them across the river, and they then fled deep into the forest. Their plan was to hide in the forest, disguised as brahmins, keeping as far from Duryodhana and his spies as they could.\r\nMeanwhile, back in Hastinapura, King Dhritarashtra mourned his nephews in public, but privately he rejoiced with his son Duryodhana.\r\nVidura, meanwhile, kept silent.\r\n\r\n~ 54.", "start_char_idx": 31574, "end_char_idx": 33340, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9edd2eb0-12b6-4c60-a46d-cd8e72094039": {"__data__": {"id_": "9edd2eb0-12b6-4c60-a46d-cd8e72094039", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c1b4432b-c5f5-4740-95c6-65ea65531886", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d01691a8dc354f7822936328019694a70abfbc12dcbf2408d6fcfc78f1c0d89c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b", "node_type": "1", "metadata": {}, "hash": "595de3f770dff6d02293333dcf7d5aa9f3c82bf27ff896004e9e648d4f9a8ae1", "class_name": "RelatedNodeInfo"}}, "text": "The next day, when their charred remains were discovered, Duryodhana was delighted, thinking the Pandavas and their mother Kunti had died in the fire.\r\n\r\n~ 53. The Pandavas Escape ~\r\nWhen the Pandavas and Kunti emerged at the other end of the tunnel, they met a boatman who was waiting for them as Vidura had arranged, and they gave the watchword: \"The wise jackal's den has more than one exit.\"\r\nThis boatman took them across the river, and they then fled deep into the forest. Their plan was to hide in the forest, disguised as brahmins, keeping as far from Duryodhana and his spies as they could.\r\nMeanwhile, back in Hastinapura, King Dhritarashtra mourned his nephews in public, but privately he rejoiced with his son Duryodhana.\r\nVidura, meanwhile, kept silent.\r\n\r\n~ 54. Bhima Fights a Rakshasa ~\r\nAs they wandered the forest, Bhima would stand watch over his mother and brothers while they slept.\r\nOne night, a rakshasa named Hidimba approached them. \"I smell humans!\" he said to his sister, Hidimbi. \"Lure that big one in my direction. I'll kill him, and we will enjoy a feast!!\"\r\nBut when Hidimbi saw Bhima, she fell in love. While Bhima and her brother fought, she used supernatural powers to protect Bhima, and he killed her brother.\r\nBhima then married Hidimbi, and she bore their son: Ghatotkacha. \r\n\"If you ever need me,\" Ghatotkacha told Bhima, \"call, and I will come.\"\r\n\r\n~ 55. Bhima Fights Baka ~\r\nIn their wanderings, the Pandavas met their grandfather Vyasa. \"Go to the village of Ekachakra,\" he advised them. \r\nThe villagers there told the Pandavas that a deadly rakshasa named Baka demanded a cartload of food daily. He ate the food, and the driver too!\r\nBhima agreed to drive the cart, being eager to eat the food himself.", "start_char_idx": 32565, "end_char_idx": 34308, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b": {"__data__": {"id_": "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9edd2eb0-12b6-4c60-a46d-cd8e72094039", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "f9194f6a7764ada08aa335a6c750b154395a39b65354eca99149faed4a786d0f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aae7cfcc-6c08-453f-ab0c-5ff181a9179c", "node_type": "1", "metadata": {}, "hash": "bba6088082ccedff86c21e052f3800682ff9bb85e8bfda8c9cd0d3b404b5519f", "class_name": "RelatedNodeInfo"}}, "text": "I'll kill him, and we will enjoy a feast!!\"\r\nBut when Hidimbi saw Bhima, she fell in love. While Bhima and her brother fought, she used supernatural powers to protect Bhima, and he killed her brother.\r\nBhima then married Hidimbi, and she bore their son: Ghatotkacha. \r\n\"If you ever need me,\" Ghatotkacha told Bhima, \"call, and I will come.\"\r\n\r\n~ 55. Bhima Fights Baka ~\r\nIn their wanderings, the Pandavas met their grandfather Vyasa. \"Go to the village of Ekachakra,\" he advised them. \r\nThe villagers there told the Pandavas that a deadly rakshasa named Baka demanded a cartload of food daily. He ate the food, and the driver too!\r\nBhima agreed to drive the cart, being eager to eat the food himself. \r\nAs Bhima sat on the cart eating, Baka attacked. \"That's my food!\" he shrieked. \r\nBhima just laughed.\r\nThey wrestled, and Bhima finally killed Baka.\r\nThe villagers wanted to honor their saviors, but the Pandavas decided to move on before their identity was discovered.\r\n\r\n~ 56. The Pandavas Meet a Gandharva ~\r\nOne day in the forest, a gandharva named Angaraparna attacked the Pandavas, but Arjuna incinerated Angaraparna's chariot with a fire-arrow and captured him.\r\nAngaraparna's wife begged for mercy, and the Pandavas freed him. Angaraparna then rewarded the Pandavas with great hospitality, telling them many stories, and also giving them advice. \"Find a priest, get a wife, and make yourselves the kings you were born to be.\"\r\nSo the Pandavas found a priest, and the priest told them to seek a wife at the swayamvara of King Drupada.\r\nBecause they were still hiding from the Kauravas, they went disguised as brahmins.\r\n\r\n**CHAPTER 4: DRAUPADI AND THE PANDAVAS**\r\n\r\n~ 57.", "start_char_idx": 33608, "end_char_idx": 35287, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "aae7cfcc-6c08-453f-ab0c-5ff181a9179c": {"__data__": {"id_": "aae7cfcc-6c08-453f-ab0c-5ff181a9179c", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d88550d0a5df81418f823c711c97ade082c36b5261389583aa7a3dea5f09336d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff", "node_type": "1", "metadata": {}, "hash": "f80895d21883b3936586b54736b9c5d30c6fb1f3be71e7dbb08bfef68e86ebf4", "class_name": "RelatedNodeInfo"}}, "text": "~ 56. The Pandavas Meet a Gandharva ~\r\nOne day in the forest, a gandharva named Angaraparna attacked the Pandavas, but Arjuna incinerated Angaraparna's chariot with a fire-arrow and captured him.\r\nAngaraparna's wife begged for mercy, and the Pandavas freed him. Angaraparna then rewarded the Pandavas with great hospitality, telling them many stories, and also giving them advice. \"Find a priest, get a wife, and make yourselves the kings you were born to be.\"\r\nSo the Pandavas found a priest, and the priest told them to seek a wife at the swayamvara of King Drupada.\r\nBecause they were still hiding from the Kauravas, they went disguised as brahmins.\r\n\r\n**CHAPTER 4: DRAUPADI AND THE PANDAVAS**\r\n\r\n~ 57. Drupada Holds a Swayamvara ~\r\nKings and princes thronged the stadium, eager to compete for Draupadi, King Drupada's fire-born daughter. Drupada had put a revolving fish-shaped target high on a pole, and the archer had to shoot by looking at the target reflected in a pan of oil below.\r\nMany princes tried and failed.\r\nThen it was Karna's turn. He nocked an arrow confidently, but before he could shoot, Draupadi exclaimed, \"I recognize this so-called king! He's just a charioteer. Send him away!\"\r\n\"He is King of Anga,\" Duryodhana protested. \"Let him compete!\"\r\n\"No, my friend,\" Karna said to Duryodhana. \"I do not want her.\"\r\n\r\n~ 58. Krishna Recognizes the Pandavas ~\r\nThe Pandavas attended Draupadi's swayamvara disguised as brahmins.\r\nOne of the princes in the audience was Krishna, who recognized the Pandavas despite their disguises. \"Look, Balarama,\" Krishna said to his brother, pointing at the brahmins. \"Those are the Pandavas!\"\r\n\"Then they did not die in the fire after all!\" Balarama exclaimed.", "start_char_idx": 34582, "end_char_idx": 36293, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff": {"__data__": {"id_": "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "aae7cfcc-6c08-453f-ab0c-5ff181a9179c", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "20de62dbdb840e0c25dd9679cec41ee8f624e86f5dd2c82eeda1c9736378c3ed", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5", "node_type": "1", "metadata": {}, "hash": "7bb50245af73f778ea83e5b40ed3cb80268faffe8cc8b0b6b74af9b705d8131e", "class_name": "RelatedNodeInfo"}}, "text": "Then it was Karna's turn. He nocked an arrow confidently, but before he could shoot, Draupadi exclaimed, \"I recognize this so-called king! He's just a charioteer. Send him away!\"\r\n\"He is King of Anga,\" Duryodhana protested. \"Let him compete!\"\r\n\"No, my friend,\" Karna said to Duryodhana. \"I do not want her.\"\r\n\r\n~ 58. Krishna Recognizes the Pandavas ~\r\nThe Pandavas attended Draupadi's swayamvara disguised as brahmins.\r\nOne of the princes in the audience was Krishna, who recognized the Pandavas despite their disguises. \"Look, Balarama,\" Krishna said to his brother, pointing at the brahmins. \"Those are the Pandavas!\"\r\n\"Then they did not die in the fire after all!\" Balarama exclaimed.\r\n\"Now we will see something momentous,\" Krishna murmured. \"Arjuna will surely be able to pass Drupada's test. And then things will get... interesting. Very interesting.\"\r\nJust as Krishna foretold, Arjuna stood up and approached the target, while the crowd murmured in surprise that a brahmin had entered the competition.\r\n\r\n~ 59. Arjuna Competes in the Swayamvara ~\r\nWhen Arjuna approached the target, the kings and princes shouted, \"Brahmins aren't allowed!\" \r\nBut Draupadi was intrigued and did not object, nor did King Drupada.\r\nArjuna nodded his thanks to Drupada and smiled at Draupadi. He then seized his bow, taking aim as he looked at the target reflected in the oil. \r\nArjuna shot not just one arrow, but five, hitting the target every time.\r\nDraupadi draped the victor's garland on the mysterious brahmin.\r\nThe kings and princes grew even more angry, but Bhima fought them off, and the five Pandavas fled with Draupadi, taking her to their humble home.\r\n\r\n~ 60.", "start_char_idx": 35606, "end_char_idx": 37265, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5": {"__data__": {"id_": "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "84ce867c2a9d6b68a713ed73a3b054b7db4e01767db6f4ff982d4f39c4d2b6dc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d93294c3-17e5-4aaa-884e-5512c0c0efb3", "node_type": "1", "metadata": {}, "hash": "2a9d36f8fbaa25268b671ae8558ef0b697df98c12c519e11e9ad075d4a2b8d15", "class_name": "RelatedNodeInfo"}}, "text": "~ 59. Arjuna Competes in the Swayamvara ~\r\nWhen Arjuna approached the target, the kings and princes shouted, \"Brahmins aren't allowed!\" \r\nBut Draupadi was intrigued and did not object, nor did King Drupada.\r\nArjuna nodded his thanks to Drupada and smiled at Draupadi. He then seized his bow, taking aim as he looked at the target reflected in the oil. \r\nArjuna shot not just one arrow, but five, hitting the target every time.\r\nDraupadi draped the victor's garland on the mysterious brahmin.\r\nThe kings and princes grew even more angry, but Bhima fought them off, and the five Pandavas fled with Draupadi, taking her to their humble home.\r\n\r\n~ 60. The Pandavas Must Share the Alms ~\r\nEach day, the Pandavas would bring home the alms they had begged and give them to their mother, Kunti. So, after Arjuna won the wedding contest for Draupadi, Bhima decided to play a little joke. \"Mother, come see what alms we have brought home today!\" he shouted to her inside the house.\r\n\"Of course you must share the alms equally!\" Kunti shouted back.\r\nThen she came outside and saw Draupadi, who gave Kunti a shy and confused smile.\r\n\"I cannot take back my words, dear,\" she said to her new daughter-in-law. \"All five of my sons will be your husbands.\"\r\n\r\n~ 61. King Drupada Receives the Pandavas ~\r\n\"We must go explain this to my father,\" said Draupadi, and she then led the five Pandavas back to the palace.\r\nKing Drupada had already guessed who these five brahmins must be. \"If you are who I think you are,\" he said to Yudhishthira, smiling, \"I know you cannot lie to me. Tell me truthfully: who are you?\"\r\n\"I am Yudhishthira, son of Pandu, once a prince of Hastinapura, and these are my brothers: Arjuna, Bhima, Nakula, and Sahadeva.", "start_char_idx": 36618, "end_char_idx": 38342, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d93294c3-17e5-4aaa-884e-5512c0c0efb3": {"__data__": {"id_": "d93294c3-17e5-4aaa-884e-5512c0c0efb3", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "45164788d73b270bc383ce80cd89099d3200b7e89d1ade56dc1362bbd49aae50", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "137b3a3c-65e3-438c-ae73-8ccc28f98989", "node_type": "1", "metadata": {}, "hash": "58bc24f556e2ae25b534731437be6a2594a99e4b71c5d1509fff4757e5a34da2", "class_name": "RelatedNodeInfo"}}, "text": "Then she came outside and saw Draupadi, who gave Kunti a shy and confused smile.\r\n\"I cannot take back my words, dear,\" she said to her new daughter-in-law. \"All five of my sons will be your husbands.\"\r\n\r\n~ 61. King Drupada Receives the Pandavas ~\r\n\"We must go explain this to my father,\" said Draupadi, and she then led the five Pandavas back to the palace.\r\nKing Drupada had already guessed who these five brahmins must be. \"If you are who I think you are,\" he said to Yudhishthira, smiling, \"I know you cannot lie to me. Tell me truthfully: who are you?\"\r\n\"I am Yudhishthira, son of Pandu, once a prince of Hastinapura, and these are my brothers: Arjuna, Bhima, Nakula, and Sahadeva. The lovely Draupadi will be our wife.\"\r\nKing Drupada stared at Yudhishthira in confusion.\r\n\"We will all marry Draupadi,\" Yudhishthira repeated.\r\n\r\n~ 62. The Story of Nalayani ~\r\n\"Impossible!\" Drupada shouted. \"A woman cannot have five husbands.\"\r\nVyasa then appeared, as if he knew he was needed. \"I can explain,\" he said, smiling at his grandsons. \"This is Draupadi's fate. In a past life, she was Nalayani, married to the rishi Moudgalya. Because of her devotion, Moudgalya offered to grant her a boon. She asked him to make love to her in five different forms, and he did. Later, when Moudgalya renounced the world, Nalayani despaired. 'I want my husband, husband, husband, husband, husband,' she sighed, thinking of Moudgalya's five forms. The gods are granting her wish now.\" \r\n\r\n~ 63. Shiva Fulfills a Woman's Prayer ~\r\nHere is another story about Draupadi's past life:\r\nShe was a woman without a husband, so she prayed to Shiva.", "start_char_idx": 37657, "end_char_idx": 39278, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "137b3a3c-65e3-438c-ae73-8ccc28f98989": {"__data__": {"id_": "137b3a3c-65e3-438c-ae73-8ccc28f98989", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d93294c3-17e5-4aaa-884e-5512c0c0efb3", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "94e75ac72f811b487109e2871bc039fa2abf2b8a48b0e52325fba9cbc9e6f7ce", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "678ed4e5-6404-4e3e-930d-8a207e7e7f9e", "node_type": "1", "metadata": {}, "hash": "f78e529371a8e346660ef546dd174097ce8461a0accaa8ed66937576d23ced2c", "class_name": "RelatedNodeInfo"}}, "text": "Vyasa then appeared, as if he knew he was needed. \"I can explain,\" he said, smiling at his grandsons. \"This is Draupadi's fate. In a past life, she was Nalayani, married to the rishi Moudgalya. Because of her devotion, Moudgalya offered to grant her a boon. She asked him to make love to her in five different forms, and he did. Later, when Moudgalya renounced the world, Nalayani despaired. 'I want my husband, husband, husband, husband, husband,' she sighed, thinking of Moudgalya's five forms. The gods are granting her wish now.\" \r\n\r\n~ 63. Shiva Fulfills a Woman's Prayer ~\r\nHere is another story about Draupadi's past life:\r\nShe was a woman without a husband, so she prayed to Shiva. \"Give me a husband who always tells the truth,\" she said. \"Give me a husband who is powerful and strong. A skilled and fearless husband. A handsome husband. A wise husband.\"\r\nShiva then appeared. \"I will grant your prayer,\" he said, \"but you will have five husbands, not one. There is no way that one husband alone could have all the qualities that you desire. God has all those qualities, but you will not find them in one man alone.\"\r\n\r\n~ 64. Draupadi Marries the Pandavas ~\r\nReassured by Vyasa, Drupada gave his approval. Draupadi married Yudhishthira first. Next she married Bhima, and then Arjuna, who had actually won her at the swayamvara. Finally, she also married Nakula and Sahadeva.\r\nDraupadi agreed that she would spend a year with each of the Pandavas in turn. If any brother violated this arrangement, in thought or in deed, he would go into exile, completing a pilgrimage to redeem himself.\r\nMeanwhile, news of these events reached King Dhritarashtra and his son Duryodhana in Hastinapura. The Pandavas were not dead after all!", "start_char_idx": 38590, "end_char_idx": 40321, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "678ed4e5-6404-4e3e-930d-8a207e7e7f9e": {"__data__": {"id_": "678ed4e5-6404-4e3e-930d-8a207e7e7f9e", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "137b3a3c-65e3-438c-ae73-8ccc28f98989", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "b8dfa37181f0219e770f816d93e40663d077cfb821b2d4a92b6b32800319827a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "91a3813d-a46d-4d95-912d-81720be7f257", "node_type": "1", "metadata": {}, "hash": "c828d23268eff8b21404c3cd21768837eb9a343f20fae1faff9921241ec62241", "class_name": "RelatedNodeInfo"}}, "text": "God has all those qualities, but you will not find them in one man alone.\"\r\n\r\n~ 64. Draupadi Marries the Pandavas ~\r\nReassured by Vyasa, Drupada gave his approval. Draupadi married Yudhishthira first. Next she married Bhima, and then Arjuna, who had actually won her at the swayamvara. Finally, she also married Nakula and Sahadeva.\r\nDraupadi agreed that she would spend a year with each of the Pandavas in turn. If any brother violated this arrangement, in thought or in deed, he would go into exile, completing a pilgrimage to redeem himself.\r\nMeanwhile, news of these events reached King Dhritarashtra and his son Duryodhana in Hastinapura. The Pandavas were not dead after all! Even worse: they were now Drupada's allies by marriage.\r\n\r\n~ 65. King Dhritarashtra Deliberates ~\r\nKing Dhritarashtra was concerned about this new alliance of the Pandavas with King Drupada.\r\n\"Drupada has never forgiven Drona for making him divide his kingdom,\" Dhritarashtra said, \"and now my nephews have become his sons-in-law.\"\r\n\"This is indeed a dangerous alliance,\" Drona observed. \"Drupada's own son Dhrishtadyumna is a formidable warrior.\"\r\nBut Bhishma urged Dhritarashtra to make peace with his nephews. \"You never should have sent them away to Varanavata. Let Vidura go congratulate them on their marriage and invite them back home to Hastinapura.\"\r\n\"Yes,\" King Dhritarashtra decided at last. \"It is time for the Pandavas to come home.\"\r\n\r\n~ 66. The Pandavas Go to Khandavaprastha ~\r\nCautiously, the Pandavas accepted their uncle's invitation to leave the safety of Drupada's kingdom and return to Hastinapura.\r\n\"I have decided to divide the kingdom between my own sons and you, who are my brother's sons,\" King Dhritarashtra told them. \"Your half will be the land called Khandavaprastha.", "start_char_idx": 39640, "end_char_idx": 41420, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "91a3813d-a46d-4d95-912d-81720be7f257": {"__data__": {"id_": "91a3813d-a46d-4d95-912d-81720be7f257", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "678ed4e5-6404-4e3e-930d-8a207e7e7f9e", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "829e3485bb33eb124fe567ee2780c2a9f480c58efe1d6a14af6a98a0e72e7325", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1ed6bef4-1638-404b-b411-c62b323fb53d", "node_type": "1", "metadata": {}, "hash": "4fc005a93b364d060be5cb43156d3f20189fec74de1bc61e30771552e91ea261", "class_name": "RelatedNodeInfo"}}, "text": "\"Drupada's own son Dhrishtadyumna is a formidable warrior.\"\r\nBut Bhishma urged Dhritarashtra to make peace with his nephews. \"You never should have sent them away to Varanavata. Let Vidura go congratulate them on their marriage and invite them back home to Hastinapura.\"\r\n\"Yes,\" King Dhritarashtra decided at last. \"It is time for the Pandavas to come home.\"\r\n\r\n~ 66. The Pandavas Go to Khandavaprastha ~\r\nCautiously, the Pandavas accepted their uncle's invitation to leave the safety of Drupada's kingdom and return to Hastinapura.\r\n\"I have decided to divide the kingdom between my own sons and you, who are my brother's sons,\" King Dhritarashtra told them. \"Your half will be the land called Khandavaprastha. That will be your kingdom.\"\r\nKhandavaprastha, however, was a wilderness.\r\n\"Our uncle is sending us into this barren desert to die!\" shouted Bhima.\r\n\"Do not worry,\" said Yudhishthira confidently. \"We will make it a great kingdom.\" \r\nThe Pandavas cleared the land and built a beautiful capital city. They called their kingdom Indraprastha.\r\n\r\n~ 67. Khandava Forest Burns ~\r\nA brahmin approached Arjuna and Krishna in Khandava Forest. \"Feed me!\" he said. Then he revealed himself as Agni, the fire-god. \"Drive Indra's rain away so I can eat the fat of the animals.\"\r\nIn exchange, Agni offered weapons: the Gandiva bow for Arjuna, and the Sudarshana-Chakra discus for Krishna.\r\nAs the fire raged, Arjuna and Krishna kept Indra's rain away, shooting their arrows into the sky. Agni thus consumed the forest's trees and animals. Only a few birds escaped, plus the naga Ashwasena, and also Mayasura, architect of the asuras, who built a splendid palace for the Pandavas.\r\n\r\n~ 68.", "start_char_idx": 40710, "end_char_idx": 42393, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1ed6bef4-1638-404b-b411-c62b323fb53d": {"__data__": {"id_": "1ed6bef4-1638-404b-b411-c62b323fb53d", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "91a3813d-a46d-4d95-912d-81720be7f257", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d94ddf47b416d53e8bbd9ffa0434789ca64f7926693f339b2cf736d284bfb4e6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "39ea826e-14f0-4873-b261-c728416c70d6", "node_type": "1", "metadata": {}, "hash": "e860862e44cb3dac73710c8c9e7ff79f183b0de94dacfe1d4b2e03fe839522ea", "class_name": "RelatedNodeInfo"}}, "text": "They called their kingdom Indraprastha.\r\n\r\n~ 67. Khandava Forest Burns ~\r\nA brahmin approached Arjuna and Krishna in Khandava Forest. \"Feed me!\" he said. Then he revealed himself as Agni, the fire-god. \"Drive Indra's rain away so I can eat the fat of the animals.\"\r\nIn exchange, Agni offered weapons: the Gandiva bow for Arjuna, and the Sudarshana-Chakra discus for Krishna.\r\nAs the fire raged, Arjuna and Krishna kept Indra's rain away, shooting their arrows into the sky. Agni thus consumed the forest's trees and animals. Only a few birds escaped, plus the naga Ashwasena, and also Mayasura, architect of the asuras, who built a splendid palace for the Pandavas.\r\n\r\n~ 68. The Story of Sunda and Upasunda ~\r\nThe rishi Narada visited Yudhishthira's court at Indraprastha, and he told the Pandavas this story as a warning:\r\nThe twin asura brothers, Sunda and Upasunda, tormented the world. No creature, mortal or immortal, could defeat them.\r\nThe god Brahma then created a perfectly beautiful apsara: Tilottama.\r\nDressed in a sari of red silk, she danced before the brothers. They were captivated. \r\n\"She's mine!\" shouted Sunda.\r\n\"No!\" shouted Upasunda. \"She's mine! I saw her first!\"\r\n\"No!\" shouted Sunda. \"I saw her first!\"\r\nBecause the brothers were equally strong, they killed each other as they fought.\r\nThe Pandava brothers heeded Narada's warning.\r\n\r\n~ 69. Draupadi Becomes a Mother ~\r\nThe five Pandava brothers had agreed to share Draupadi as their wife, and each brother was her husband for one year at a time. As the year ended and Draupadi's time with one husband ended and another husband began, she would walk through fire and thus regain her virginity, year after year.", "start_char_idx": 41719, "end_char_idx": 43402, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "39ea826e-14f0-4873-b261-c728416c70d6": {"__data__": {"id_": "39ea826e-14f0-4873-b261-c728416c70d6", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1ed6bef4-1638-404b-b411-c62b323fb53d", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e1e57703989586c2952fe6e739de3b8c0d64156a8136666f52e0fcd485a7fc1d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ba61c6e8-8551-45a2-9553-eb9a23327a2a", "node_type": "1", "metadata": {}, "hash": "739fe58962d78d49debe0fa78f227268515f31c6a1658c8478e2eb8973b950fe", "class_name": "RelatedNodeInfo"}}, "text": "The god Brahma then created a perfectly beautiful apsara: Tilottama.\r\nDressed in a sari of red silk, she danced before the brothers. They were captivated. \r\n\"She's mine!\" shouted Sunda.\r\n\"No!\" shouted Upasunda. \"She's mine! I saw her first!\"\r\n\"No!\" shouted Sunda. \"I saw her first!\"\r\nBecause the brothers were equally strong, they killed each other as they fought.\r\nThe Pandava brothers heeded Narada's warning.\r\n\r\n~ 69. Draupadi Becomes a Mother ~\r\nThe five Pandava brothers had agreed to share Draupadi as their wife, and each brother was her husband for one year at a time. As the year ended and Draupadi's time with one husband ended and another husband began, she would walk through fire and thus regain her virginity, year after year.\r\nOver time, Draupadi had five sons, one with each of the Pandavas; they were known as the Upapandavas.\r\nHer son with Yudhishthira was Prativindhya.\r\nHer son with Bhima was Sutasoma.\r\nHer son with Arjuna was Shrutakarma.\r\nHer son with Nakula was Shatanika.\r\nHer son with Sahadeva was Shrutasena.\r\n\r\n~ 70. Arjuna Violates the Agreement ~\r\n\r\nThen the unthinkable happened: rushing to see Yudhishthira, Arjuna walked in on Yudhishthira with Draupadi. Because he violated their brotherly agreement, Arjuna went into self-imposed exile.\r\nIt wasn't really Arjuna's fault. To ensure Draupadi's privacy when she was with each husband, the current husband would leave his shoes outside the door as a sign that he was inside. A dog, however, had stolen Yudhishthira's shoes, which is why Arjuna walked in unsuspecting.\r\nIn her rage, Draupadi cursed all dogs. \"You will copulate in public for all to see!\" she decreed. \"That will be the shame of dogs henceforth and forever.\"\r\n\r\n~ 71.", "start_char_idx": 42662, "end_char_idx": 44375, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ba61c6e8-8551-45a2-9553-eb9a23327a2a": {"__data__": {"id_": "ba61c6e8-8551-45a2-9553-eb9a23327a2a", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "39ea826e-14f0-4873-b261-c728416c70d6", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e7032dce2826b6f5b35c5417cbdbba2d8e501686ab23d0329c8843c658130b98", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "239b1b79-9c6c-45a2-8a7d-23907d3d49cd", "node_type": "1", "metadata": {}, "hash": "e41ea200645d2338dabdc86b9e76af13f78f5d488c3fdff63cee9a2f86304d88", "class_name": "RelatedNodeInfo"}}, "text": "Her son with Sahadeva was Shrutasena.\r\n\r\n~ 70. Arjuna Violates the Agreement ~\r\n\r\nThen the unthinkable happened: rushing to see Yudhishthira, Arjuna walked in on Yudhishthira with Draupadi. Because he violated their brotherly agreement, Arjuna went into self-imposed exile.\r\nIt wasn't really Arjuna's fault. To ensure Draupadi's privacy when she was with each husband, the current husband would leave his shoes outside the door as a sign that he was inside. A dog, however, had stolen Yudhishthira's shoes, which is why Arjuna walked in unsuspecting.\r\nIn her rage, Draupadi cursed all dogs. \"You will copulate in public for all to see!\" she decreed. \"That will be the shame of dogs henceforth and forever.\"\r\n\r\n~ 71. Arjuna Comes to a Deadly Lake ~\r\nIn his exile, Arjuna came to a lake infested with deadly crocodiles. Unafraid, he jumped into the water. A crocodile seized him, but Arjuna wrestled with the crocodile and finally dragged it ashore. \r\nThen, to Arjuna's surprise, the crocodile turned into a beautiful apsara! \r\nShe urged Arjuna to wrestle with the other crocodiles in the lake; they all turned into apsaras.\r\n\"A rishi cursed us to become crocodiles,\" they said, \"but we knew a kshatriya would free us.\"\r\nThe apsaras returned to heaven, and the people of the land were able to safely bathe in the waters of the lake.\r\n\r\n~ 72. Arjuna Meets Ulupi ~\r\nAfter a long day's walk, Arjuna reached a river. Eager to wash the dust off his body, he jumped into the water, but something grabbed him, pulling him down. Arjuna struggled, but he could not break free.\r\nThen, to his surprise, he saw that it was a beautiful woman who had seized him. \"Marry me, Arjuna!\" she said. \"I am Ulupi, princess of the nagas.\"", "start_char_idx": 43660, "end_char_idx": 45373, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "239b1b79-9c6c-45a2-8a7d-23907d3d49cd": {"__data__": {"id_": "239b1b79-9c6c-45a2-8a7d-23907d3d49cd", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba61c6e8-8551-45a2-9553-eb9a23327a2a", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "4bad212b1a7d41e0363baf8c21d1786fef98ad2184716304d440821fb3789afd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "247ce3dd-5212-4993-aef1-f0b3f2b2b74b", "node_type": "1", "metadata": {}, "hash": "a7e738706e4b58ae468165bc66a8e4305f596e16492e032a21ea2e1fccb56f42", "class_name": "RelatedNodeInfo"}}, "text": "She urged Arjuna to wrestle with the other crocodiles in the lake; they all turned into apsaras.\r\n\"A rishi cursed us to become crocodiles,\" they said, \"but we knew a kshatriya would free us.\"\r\nThe apsaras returned to heaven, and the people of the land were able to safely bathe in the waters of the lake.\r\n\r\n~ 72. Arjuna Meets Ulupi ~\r\nAfter a long day's walk, Arjuna reached a river. Eager to wash the dust off his body, he jumped into the water, but something grabbed him, pulling him down. Arjuna struggled, but he could not break free.\r\nThen, to his surprise, he saw that it was a beautiful woman who had seized him. \"Marry me, Arjuna!\" she said. \"I am Ulupi, princess of the nagas.\"\r\nArjuna made love to Ulupi, and she finally let him go.\r\nArjuna then continued his journey, forgetting all about her.\r\nBut many years later, he would meet their son, Iravan, at the battle of Kurukshetra.\r\n\r\n~ 73. Arjuna Elopes with Subhadra ~\r\nArjuna came to Dwaraka, the home of his good friend Krishna.\r\nKrishna's sister Subhadra was deeply in love with Arjuna, but her brother Balarama had arranged for her to marry Duryodhana. \r\nKrishna didn't hesitate: he urged Arjuna to elope with Subhadra. Arjuna entered the city disguised as a beggar. Even in this disguise, Subhadra recognized him immediately, and the two fled the city on his chariot. Subhadra drove the chariot while Arjuna shot arrows at their pursuers. \r\nKrishna was able to soothe his brother Balarama's anger, but not so Duryodhana: the incident only added to his hatred for the Pandavas.\r\n\r\n**CHAPTER 5: THE GAME**\r\n\r\n~ 74.", "start_char_idx": 44686, "end_char_idx": 46265, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "247ce3dd-5212-4993-aef1-f0b3f2b2b74b": {"__data__": {"id_": "247ce3dd-5212-4993-aef1-f0b3f2b2b74b", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "239b1b79-9c6c-45a2-8a7d-23907d3d49cd", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e4d22d09f26609bf164d0895e842885553ef0b456877ec3ac6c648f5b3ab6d76", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "045f61f9-9293-4f49-b6a3-d469a97bdd40", "node_type": "1", "metadata": {}, "hash": "5105b2e03b2ecb77f668ee634bf6e15fd6ce7821281a036e3016c84014458df4", "class_name": "RelatedNodeInfo"}}, "text": "~ 73. Arjuna Elopes with Subhadra ~\r\nArjuna came to Dwaraka, the home of his good friend Krishna.\r\nKrishna's sister Subhadra was deeply in love with Arjuna, but her brother Balarama had arranged for her to marry Duryodhana. \r\nKrishna didn't hesitate: he urged Arjuna to elope with Subhadra. Arjuna entered the city disguised as a beggar. Even in this disguise, Subhadra recognized him immediately, and the two fled the city on his chariot. Subhadra drove the chariot while Arjuna shot arrows at their pursuers. \r\nKrishna was able to soothe his brother Balarama's anger, but not so Duryodhana: the incident only added to his hatred for the Pandavas.\r\n\r\n**CHAPTER 5: THE GAME**\r\n\r\n~ 74. Duryodhana Visits Indraprastha ~\r\nAfter Arjuna returned, the Pandavas organized a grand coronation ceremony for Yudhishthira and invited the royal families from neighboring kingdoms as their guests. Their cousin Duryodhana was one of those guests.\r\nSeeing the splendid palace of Indraprastha, built by the magic of the divine Mayasura, Duryodhana raged with jealousy.\r\nMistaking a shimmering marble floor for a pool, he tucked up his garment to stay dry. The Pandavas laughed.\r\nNext, Duryodhana got drenched falling into a pool that he thought was a floor, and the Pandavas laughed even louder. \"He sees no better than his father,\" Draupadi joked.\r\nDuryodhana vowed revenge.\r\n\r\n~ 75. Shishupala Insults Krishna ~\r\nFrom among the many illustrious guests at Yudhishthira's coronation, the Pandavas chose Krishna as guest-of-honor. \r\nThis enraged Shishupala, King of Chedi. \"Krishna isn't even a king! He deserves only contempt, not honor!\"", "start_char_idx": 45581, "end_char_idx": 47203, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "045f61f9-9293-4f49-b6a3-d469a97bdd40": {"__data__": {"id_": "045f61f9-9293-4f49-b6a3-d469a97bdd40", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "247ce3dd-5212-4993-aef1-f0b3f2b2b74b", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "ad6141fa638063db9539b4bc5e62574b7bebbf0ccffa594bb168a2ed95e93e2a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984", "node_type": "1", "metadata": {}, "hash": "5714a68ba7018a29a6fb2acccb6ee035427080a647474e986a612ba6b401d15e", "class_name": "RelatedNodeInfo"}}, "text": "Their cousin Duryodhana was one of those guests.\r\nSeeing the splendid palace of Indraprastha, built by the magic of the divine Mayasura, Duryodhana raged with jealousy.\r\nMistaking a shimmering marble floor for a pool, he tucked up his garment to stay dry. The Pandavas laughed.\r\nNext, Duryodhana got drenched falling into a pool that he thought was a floor, and the Pandavas laughed even louder. \"He sees no better than his father,\" Draupadi joked.\r\nDuryodhana vowed revenge.\r\n\r\n~ 75. Shishupala Insults Krishna ~\r\nFrom among the many illustrious guests at Yudhishthira's coronation, the Pandavas chose Krishna as guest-of-honor. \r\nThis enraged Shishupala, King of Chedi. \"Krishna isn't even a king! He deserves only contempt, not honor!\"\r\nShishupala went on insulting Krishna, who was his cousin, and Krishna bore his insults patiently, having promised Shishupala's mother long ago that he would accept one hundred insults from her son without complaint.\r\nAfter the hundredth insult, Krishna said, \"Be warned, Shishupala. One more insult, and you will die.\" \r\nBut Shishupala would not stop. \"Peasant! Coward! Thief!\" he shouted.\r\nKrishna let loose his Sudarshana-Chakra and severed Shishupala's head.\r\n\r\n~ 76. King Yudhishthira Makes a Vow ~\r\nVyasa left his forest ashram to visit his grandsons. \"I have seen alarming omens,\" he told the Pandavas. \"The next thirteen years are filled with danger, and your actions will lead to terrible consequences. All the kshatriyas might perish. Your fate will be their doom, King Yudhishthira.\"\r\nYudhishthira then took a vow. \"For the next thirteen years, I will speak no harsh word to anyone. Harsh words lead to conflict; with soft words, I will create no discord. By this vow I seek to avert my fate.\"", "start_char_idx": 46465, "end_char_idx": 48208, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984": {"__data__": {"id_": "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "045f61f9-9293-4f49-b6a3-d469a97bdd40", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "a8cf5f1226b2a06ededf56b119014def8d5836197ef1c6c2af06f3a57b753b29", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "087ce84a-d71a-4509-b1c4-02eed6a01c55", "node_type": "1", "metadata": {}, "hash": "1e1321a121997110dd180f16aaef998ffed0af619dcc14f7d5fbf4c8a07c7120", "class_name": "RelatedNodeInfo"}}, "text": "But Shishupala would not stop. \"Peasant! Coward! Thief!\" he shouted.\r\nKrishna let loose his Sudarshana-Chakra and severed Shishupala's head.\r\n\r\n~ 76. King Yudhishthira Makes a Vow ~\r\nVyasa left his forest ashram to visit his grandsons. \"I have seen alarming omens,\" he told the Pandavas. \"The next thirteen years are filled with danger, and your actions will lead to terrible consequences. All the kshatriyas might perish. Your fate will be their doom, King Yudhishthira.\"\r\nYudhishthira then took a vow. \"For the next thirteen years, I will speak no harsh word to anyone. Harsh words lead to conflict; with soft words, I will create no discord. By this vow I seek to avert my fate.\"\r\nMeanwhile, Duryodhana returned to Hastinapura, where he plotted revenge with his uncle Shakuni.\r\n\r\n~ 77. Duryodhana Plots with Shakuni ~\r\nKing Dhritarashtra had a lavish new palace built for Duryodhana, hoping to calm his jealousy of Yudhishthira's palace, but to no avail. Duryodhana was still determined to get revenge.\r\nRebuffed by his father, Duryodhana plotted with Shakuni, his mother's brother. \"I want the Pandavas to lose everything!\" Duryodhana snarled. \"What do you advise?\"\r\n\"You cannot wage war against them,\" Shakuni replied, \"but you could challenge Yudhishthira to a game of dice. Royal honor will require him to accept your invitation, but he has absolutely no skill at dice. I will compete for you against him, and I will surely win.\"\r\n\r\n~ 78. Duryodhana Extends an Invitation ~\r\nDuryodhana sent Vidura to Indraprastha as his messenger, and Yudhishthira received his uncle happily; Vidura had always been a friend to them.\r\n\"What news from Hastinapura?\" Yudhishthira asked.", "start_char_idx": 47526, "end_char_idx": 49201, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "087ce84a-d71a-4509-b1c4-02eed6a01c55": {"__data__": {"id_": "087ce84a-d71a-4509-b1c4-02eed6a01c55", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d0b011146ff6b3502b486114bf2daab5d37973f6e48487343c4bb635bdc7c83b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3f258c1f-302b-4608-8d7f-e978d750bb94", "node_type": "1", "metadata": {}, "hash": "1e9ee101a3fc8ef75bd5722b6181c80470c45b03397a82ce3d87f818cf970fc2", "class_name": "RelatedNodeInfo"}}, "text": "Duryodhana was still determined to get revenge.\r\nRebuffed by his father, Duryodhana plotted with Shakuni, his mother's brother. \"I want the Pandavas to lose everything!\" Duryodhana snarled. \"What do you advise?\"\r\n\"You cannot wage war against them,\" Shakuni replied, \"but you could challenge Yudhishthira to a game of dice. Royal honor will require him to accept your invitation, but he has absolutely no skill at dice. I will compete for you against him, and I will surely win.\"\r\n\r\n~ 78. Duryodhana Extends an Invitation ~\r\nDuryodhana sent Vidura to Indraprastha as his messenger, and Yudhishthira received his uncle happily; Vidura had always been a friend to them.\r\n\"What news from Hastinapura?\" Yudhishthira asked.\r\n\"King Dhritarashtra has built a new palace to rival your palace here,\" said Vidura. \"And your cousin Duryodhana invites you there for a game of dice.\"\r\nBefore Yudhishthira could reply, Bhima shouted, \"It's a trick.\"\r\nDraupadi added, \"I do not think we should go, husband.\"\r\n\"But Duryodhana knows I cannot refuse,\" Yudhishthira said, hesitantly. \"You may tell our cousin that we accept his invitation.\"\r\nVidura then returned to Hastinapura, full of foreboding.\r\n\r\n~ 79. The Pandavas Enter the Gambling Hall ~\r\nWhen the Pandavas arrived at Hastinapura, King Dhritarashtra greeted them warmly, ushering them into the new palace, while Draupadi went to the women's quarters to greet Queen Kunti and the other royal ladies.\r\n\"I cannot see the splendor myself,\" said Dhritarashtra, \"but everyone tells me the palace is exceedingly beautiful. Tell me what you think, Yudhishthira!\"\r\n\"It is indeed very beautiful,\" said Yudhishthira.\r\nThen Yudhishthira saw Duryodhana, accompanied by his uncle Shakuni.\r\n\"Are you ready for our little gambling match?\" Duryodhana asked, smiling.", "start_char_idx": 48484, "end_char_idx": 50272, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3f258c1f-302b-4608-8d7f-e978d750bb94": {"__data__": {"id_": "3f258c1f-302b-4608-8d7f-e978d750bb94", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "087ce84a-d71a-4509-b1c4-02eed6a01c55", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "1a71b34c61d689c31a168f2a2c1a908da2de9cb143ffb6c5f1859b49b92e5268", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b0788e95-0eb3-4781-a5c4-6ab254dde2b4", "node_type": "1", "metadata": {}, "hash": "341f9c5ec1816ce77cdf9eb6ff951accd28853100faef94251f4dc127fbbd6c4", "class_name": "RelatedNodeInfo"}}, "text": "\"You may tell our cousin that we accept his invitation.\"\r\nVidura then returned to Hastinapura, full of foreboding.\r\n\r\n~ 79. The Pandavas Enter the Gambling Hall ~\r\nWhen the Pandavas arrived at Hastinapura, King Dhritarashtra greeted them warmly, ushering them into the new palace, while Draupadi went to the women's quarters to greet Queen Kunti and the other royal ladies.\r\n\"I cannot see the splendor myself,\" said Dhritarashtra, \"but everyone tells me the palace is exceedingly beautiful. Tell me what you think, Yudhishthira!\"\r\n\"It is indeed very beautiful,\" said Yudhishthira.\r\nThen Yudhishthira saw Duryodhana, accompanied by his uncle Shakuni.\r\n\"Are you ready for our little gambling match?\" Duryodhana asked, smiling. \"Shakuni is going to play in my stead.\"\r\nHiding his surprise, Yudhishthira replied calmly, \"I am ready.\"\r\n\r\n~ 80. The Game Begins ~\r\nYudhishthira faced Shakuni, who played for his nephew, Duryodhana.\r\nThen the game began.\r\nFirst, they bet a few pearls. Shakuni won.\r\nThen a golden chariot. \"I have won!\" said Shakuni.\r\nElephants and armies. \"I have won!\" said Shakuni.\r\nEnormous herds of cattle. \"I have won!\" said Shakuni.\r\nThe wealth of entire kingdoms. \"I have won!\" said Shakuni.\r\nVidura begged King Dhritarashtra to stop the match, but the king did nothing.\r\nYudhishthira staked his brothers one by one. He lost.\r\nYudhishthira staked himself. He lost.\r\nYudhishthira staked his wife Draupadi. He lost.\r\nYudhishthira had nothing left. Shakuni had won it all.\r\n\r\n~ 81. Duryodhana Summons Draupadi ~\r\nShakuni's success in the gambling match thrilled Duryodhana. He had taken everything from his cousin Yudhishthira.\r\nEverything.\r\n\"Bring Draupadi here!\"", "start_char_idx": 49548, "end_char_idx": 51226, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b0788e95-0eb3-4781-a5c4-6ab254dde2b4": {"__data__": {"id_": "b0788e95-0eb3-4781-a5c4-6ab254dde2b4", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3f258c1f-302b-4608-8d7f-e978d750bb94", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e40b4df77ad147215bd63893f984cdc4211df945ab0c3d8fb02fa354d5057813", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "caea2eb3-2440-402b-a754-d7241b778d0c", "node_type": "1", "metadata": {}, "hash": "d2fbb7ae9d09f901e2e5766a7ecfe400eb449c9239044debb5c5d1e45e577a69", "class_name": "RelatedNodeInfo"}}, "text": "said Shakuni.\r\nElephants and armies. \"I have won!\" said Shakuni.\r\nEnormous herds of cattle. \"I have won!\" said Shakuni.\r\nThe wealth of entire kingdoms. \"I have won!\" said Shakuni.\r\nVidura begged King Dhritarashtra to stop the match, but the king did nothing.\r\nYudhishthira staked his brothers one by one. He lost.\r\nYudhishthira staked himself. He lost.\r\nYudhishthira staked his wife Draupadi. He lost.\r\nYudhishthira had nothing left. Shakuni had won it all.\r\n\r\n~ 81. Duryodhana Summons Draupadi ~\r\nShakuni's success in the gambling match thrilled Duryodhana. He had taken everything from his cousin Yudhishthira.\r\nEverything.\r\n\"Bring Draupadi here!\" he commanded his brother Dushasana. \"She is my slave now, a queen no longer.\"\r\nBut when Dushasana told Draupadi what had happened, she refused to come. \"Ask Duryodhana whether my husband had lost himself already when he staked me,\" she said angrily. \"If he had lost himself, he could not stake me afterwards.\"\r\nWhen Dushasana returned to the assembly hall and repeated Draupadi's words, Duryodhana howled in rage. \"She is my slave!\" he shouted. \"Bring her here now. No excuses!\"\r\n\r\n~ 82. Dushasana Brings Draupadi into the Assembly ~\r\nDushasana returned to fetch Draupadi. \"You are Duryodhana's slave!\" he shouted. \"Come with me!\"\r\n\"But I have my period,\" Draupadi tried to explain. \"I'm barely dressed. I can't go out like this.\"\r\n\"Silence, slave!\" Dushasana commanded.\r\nGrabbing Draupadi by the hair, he dragged her before the assembly.\r\nEveryone stared in shock, but said nothing.\r\n\"Husbands, you must help me!\" Draupadi moaned. \"Mothers, fathers! Uncles and grandfathers!", "start_char_idx": 50577, "end_char_idx": 52202, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "caea2eb3-2440-402b-a754-d7241b778d0c": {"__data__": {"id_": "caea2eb3-2440-402b-a754-d7241b778d0c", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b0788e95-0eb3-4781-a5c4-6ab254dde2b4", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e2f7aea1dcaa3873bba1bbcd8a6c8c4541003ff617ac6b00df46eccf778eecc2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ce5339e2-00c6-4d41-968b-ec5df76094a2", "node_type": "1", "metadata": {}, "hash": "cc3c1e55a996b731cbaffc3cdb7d39a725c064022a5d37272b94298294710a2b", "class_name": "RelatedNodeInfo"}}, "text": "When Dushasana returned to the assembly hall and repeated Draupadi's words, Duryodhana howled in rage. \"She is my slave!\" he shouted. \"Bring her here now. No excuses!\"\r\n\r\n~ 82. Dushasana Brings Draupadi into the Assembly ~\r\nDushasana returned to fetch Draupadi. \"You are Duryodhana's slave!\" he shouted. \"Come with me!\"\r\n\"But I have my period,\" Draupadi tried to explain. \"I'm barely dressed. I can't go out like this.\"\r\n\"Silence, slave!\" Dushasana commanded.\r\nGrabbing Draupadi by the hair, he dragged her before the assembly.\r\nEveryone stared in shock, but said nothing.\r\n\"Husbands, you must help me!\" Draupadi moaned. \"Mothers, fathers! Uncles and grandfathers! Do you say nothing? Is there no justice in this assembly?\" \r\n\"This whore has quite a tongue,\" Shakuni joked, and Duryodhana laughed, while Yudhishthira and his brothers wept silently, bowing their heads in shame.\r\n\r\n~ 83. Duryodhana Seeks to Disrobe Draupadi ~\r\n\"Strip off your clothes, slaves!\" Duryodhana commanded. \"Now!\"\r\nThe Pandavas stripped until they stood in only their loincloths.\r\n\"You too, whore!\" Duryodhana ordered Draupadi. \"Strip!\" \r\nAt a nod from Duryodhana, Dushasana reached for Draupadi's sari and began to pull, but Draupadi closed her eyes and prayed. \"Lord Vishnu, save me,\" she murmured. \"Save me, God! Save me!\"\r\nDushasana pulled off her sari, but there was another sari underneath, and another, an unending stream of cloth. Dushasana pulled and pulled until he became so entangled in the heap of cloth that he could pull no more.\r\nGod had heard Draupadi's prayer.\r\n\r\n~ 84.", "start_char_idx": 51538, "end_char_idx": 53101, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce5339e2-00c6-4d41-968b-ec5df76094a2": {"__data__": {"id_": "ce5339e2-00c6-4d41-968b-ec5df76094a2", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "caea2eb3-2440-402b-a754-d7241b778d0c", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "461012afa94e4cf655cb3ba38d283343524d7943d1b32fb3df790d6dda6c6114", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fe23a794-14f9-4bb1-a9af-04af7c6af177", "node_type": "1", "metadata": {}, "hash": "3a53c8c237fba8ba437daf552a4b4ff6a6167158142333ff271486d7d1184366", "class_name": "RelatedNodeInfo"}}, "text": "Duryodhana Seeks to Disrobe Draupadi ~\r\n\"Strip off your clothes, slaves!\" Duryodhana commanded. \"Now!\"\r\nThe Pandavas stripped until they stood in only their loincloths.\r\n\"You too, whore!\" Duryodhana ordered Draupadi. \"Strip!\" \r\nAt a nod from Duryodhana, Dushasana reached for Draupadi's sari and began to pull, but Draupadi closed her eyes and prayed. \"Lord Vishnu, save me,\" she murmured. \"Save me, God! Save me!\"\r\nDushasana pulled off her sari, but there was another sari underneath, and another, an unending stream of cloth. Dushasana pulled and pulled until he became so entangled in the heap of cloth that he could pull no more.\r\nGod had heard Draupadi's prayer.\r\n\r\n~ 84. Bhima Makes a Vow ~\r\nDespite the miracle, Duryodhana continued to taunt Draupadi, baring his thigh. \"Come, slave! Sit on your master's thigh.\"\r\nBhima shouted, \"I'll smash your thigh someday, Duryodhana! As for you, Dushasana: I'll rip you open and drink your blood!\"\r\n\"My hair will stay unbound,\" Draupadi vowed, \"until I wash it in Dushasana's blood.\"\r\n\"Death to you all!\" Bhima added. \"Death to Duryodhana and his ninety-nine brothers!\"\r\nAs Bhima spoke, the dice-board burst into flames.\r\nVidura could stay silent no longer. \"Draupadi has God's protection. You all saw it. Brother, you must do something,\" he said to Dhritarashtra, \"before it's too late!\"\r\n\r\n~ 85. King Dhritarashtra Grants Draupadi a Boon ~\r\n\"Enough!\" shouted King Dhritarashtra, intervening at last. Then he turned his blind eyes towards Draupadi. \"You have been steadfast throughout this ordeal. Make a request, and I will grant it.\"\r\nDraupadi replied immediately.", "start_char_idx": 52425, "end_char_idx": 54038, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fe23a794-14f9-4bb1-a9af-04af7c6af177": {"__data__": {"id_": "fe23a794-14f9-4bb1-a9af-04af7c6af177", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ce5339e2-00c6-4d41-968b-ec5df76094a2", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "78c483a70f3beecd18fc5f7c0008823abbb7cdc8cec30d6ee717a50040797861", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7f149944-d172-468e-a92a-f912b0b26588", "node_type": "1", "metadata": {}, "hash": "1a8de95085f7810ca24dddc82c29d8a8cdbc0af51b797d521111492d184dbdc9", "class_name": "RelatedNodeInfo"}}, "text": "\"My hair will stay unbound,\" Draupadi vowed, \"until I wash it in Dushasana's blood.\"\r\n\"Death to you all!\" Bhima added. \"Death to Duryodhana and his ninety-nine brothers!\"\r\nAs Bhima spoke, the dice-board burst into flames.\r\nVidura could stay silent no longer. \"Draupadi has God's protection. You all saw it. Brother, you must do something,\" he said to Dhritarashtra, \"before it's too late!\"\r\n\r\n~ 85. King Dhritarashtra Grants Draupadi a Boon ~\r\n\"Enough!\" shouted King Dhritarashtra, intervening at last. Then he turned his blind eyes towards Draupadi. \"You have been steadfast throughout this ordeal. Make a request, and I will grant it.\"\r\nDraupadi replied immediately. \"Free Yudhishthira from slavery!\"\r\n\"Done!\" agreed Dhritarashtra. \"Make another request.\"\r\n\"Free Yudhishthira's brothers,\" Draupadi said.\r\n\"Done! You may make a third request.\"\r\n\"That is all,\" Draupadi said. \"I ask for nothing more.\"\r\n\"Then I restore everything!\" proclaimed Dhritarashtra. \"Wealth, kingdoms, power, everything you lost is yours again. Return to your home in peace.\"\r\nSo Draupadi and her husbands mounted their chariots and began the journey to Indraprastha.\r\n\r\n~ 86. Duryodhana Demands a Rematch ~\r\n\"Summon Yudhishthira to play another game,\" Duryodhana shouted at his father. \"Quickly, before they gather their armies and attack us.\"\r\n\"My own nephews... attack us?\" Dhritarashtra exclaimed. \"It's unthinkable!\"\r\n\"Jackals howled the night you were born, my son,\" moaned Gandhari, \"an omen that you would bring destruction upon us. Now I realize the prophecies were true. Calm your rage, I beg you.\"\r\nBut Duryodhana refused to listen to his mother and father. \"Send a messenger on the swiftest horse,\" he commanded.", "start_char_idx": 53370, "end_char_idx": 55069, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7f149944-d172-468e-a92a-f912b0b26588": {"__data__": {"id_": "7f149944-d172-468e-a92a-f912b0b26588", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fe23a794-14f9-4bb1-a9af-04af7c6af177", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "1c9f3df78860e6b9dcf12df207d358ba32dabaf1da30bb7e90d292f7ecec944d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "866fbd24-cf42-4960-93a6-a278757af43f", "node_type": "1", "metadata": {}, "hash": "c10b218e1cd4618bc34ffd346f8f5ae29dcb85e62fd435041481fbcdaa875729", "class_name": "RelatedNodeInfo"}}, "text": "Return to your home in peace.\"\r\nSo Draupadi and her husbands mounted their chariots and began the journey to Indraprastha.\r\n\r\n~ 86. Duryodhana Demands a Rematch ~\r\n\"Summon Yudhishthira to play another game,\" Duryodhana shouted at his father. \"Quickly, before they gather their armies and attack us.\"\r\n\"My own nephews... attack us?\" Dhritarashtra exclaimed. \"It's unthinkable!\"\r\n\"Jackals howled the night you were born, my son,\" moaned Gandhari, \"an omen that you would bring destruction upon us. Now I realize the prophecies were true. Calm your rage, I beg you.\"\r\nBut Duryodhana refused to listen to his mother and father. \"Send a messenger on the swiftest horse,\" he commanded. \"Bring Yudhishthira back here for another game of dice. With Shakuni's help I'll finish him once and for all.\"\r\n\r\n~ 87. Yudhishthira Gambles Again ~\r\nDuryodhana's messenger overtook the Pandavas. \"Duryodhana challenges you again!\" he said. \"The losers will be exiled into the wilderness for twelve years, followed by one year in disguise. If they are discovered in that year, another thirteen years of exile will follow.\"\r\nAgain, Yudhishthira's sense of royal duty meant he could not refuse the challenge.\r\nAgain, Shakuni won.\r\nThe Pandavas had to go into exile.\r\n\"Let Kunti stay here with us,\" Vidura said, and the Pandavas tearfully bid their mother farewell.\r\nAs they left Hastinapura, the Kauravas mocked their cousins, but the people pitied the princes and their noble wife.\r\n\r\n**CHAPTER 6: THE PANDAVAS IN EXILE**\r\n\r\n~ 88. The Exile Begins ~\r\nMany faithful followers accompanied the Pandavas and Draupadi into the wilderness.\r\n\"Please go home,\" Yudhishthira told them. \"The forest is dangerous, and I cannot keep you safe.", "start_char_idx": 54390, "end_char_idx": 56098, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "866fbd24-cf42-4960-93a6-a278757af43f": {"__data__": {"id_": "866fbd24-cf42-4960-93a6-a278757af43f", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7f149944-d172-468e-a92a-f912b0b26588", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "ce4ce297d0ec8a679197476c2d8c1a5fb57725695739b331c03e45a921928fb5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "07cf6531-4e64-4af4-b460-1d18d4faca07", "node_type": "1", "metadata": {}, "hash": "a23621329bddb03930dafd14b9ed97a2eb1813be785e9ab9a3cac56e365a29bd", "class_name": "RelatedNodeInfo"}}, "text": "\"The losers will be exiled into the wilderness for twelve years, followed by one year in disguise. If they are discovered in that year, another thirteen years of exile will follow.\"\r\nAgain, Yudhishthira's sense of royal duty meant he could not refuse the challenge.\r\nAgain, Shakuni won.\r\nThe Pandavas had to go into exile.\r\n\"Let Kunti stay here with us,\" Vidura said, and the Pandavas tearfully bid their mother farewell.\r\nAs they left Hastinapura, the Kauravas mocked their cousins, but the people pitied the princes and their noble wife.\r\n\r\n**CHAPTER 6: THE PANDAVAS IN EXILE**\r\n\r\n~ 88. The Exile Begins ~\r\nMany faithful followers accompanied the Pandavas and Draupadi into the wilderness.\r\n\"Please go home,\" Yudhishthira told them. \"The forest is dangerous, and I cannot keep you safe. Return to Hastinapura, and we too shall return when our years of exile are complete.\" \r\nYudhishthira was worried how they would feed themselves in the wilderness; they could not feed all these followers too. \r\nThe family priest then urged Yudhishthira to pray to Surya, the sun-god, source of the world's bounty. Surya appeared and gave Yudhishthira a copper bowl.\r\n\"Let Draupadi cook with this bowl,\" Surya said, \"and it will always be full.\"\r\n\r\n~ 89. The Story of Kurukshetra ~\r\nDuring their exile, the forest rishis told the Pandavas many stories, including this story about their ancestor, King Kuru.\r\nKing Kuru took his plow and went into the field. He ran out of seed, so he cut off his flesh for seed, watering the field with his blood.\r\n\"King Kuru, what do you want?\" Indra asked. \"I will grant you a boon!\"\r\n\"I need nothing,\" replied Kuru, \"but please bless this land so that anyone who dies here in the act of renunciation or in the act of war will ascend to heaven!\"\r\nIndra agreed. That field was Kuru-kshetra, Kuru-Field.", "start_char_idx": 55310, "end_char_idx": 57132, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "07cf6531-4e64-4af4-b460-1d18d4faca07": {"__data__": {"id_": "07cf6531-4e64-4af4-b460-1d18d4faca07", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "866fbd24-cf42-4960-93a6-a278757af43f", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "217b7d530330c9c7de64e56c25c765c62e2176d60971d14aece64fcb44e9348e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "39984902-5d3c-42d9-85df-e181705d91db", "node_type": "1", "metadata": {}, "hash": "88241ec999f86c2d16c9c10b8a307056b51ee3c8b88ce394a38716d9c619c4d6", "class_name": "RelatedNodeInfo"}}, "text": "\"Let Draupadi cook with this bowl,\" Surya said, \"and it will always be full.\"\r\n\r\n~ 89. The Story of Kurukshetra ~\r\nDuring their exile, the forest rishis told the Pandavas many stories, including this story about their ancestor, King Kuru.\r\nKing Kuru took his plow and went into the field. He ran out of seed, so he cut off his flesh for seed, watering the field with his blood.\r\n\"King Kuru, what do you want?\" Indra asked. \"I will grant you a boon!\"\r\n\"I need nothing,\" replied Kuru, \"but please bless this land so that anyone who dies here in the act of renunciation or in the act of war will ascend to heaven!\"\r\nIndra agreed. That field was Kuru-kshetra, Kuru-Field.\r\n\r\n~ 90. The Story of Rama ~\r\n\"Has any king suffered more than I?\" Yudhishthira asked the rishis.\r\n\"Listen to Rama's story,\" the rishi Maitreya told him. \"Rama was blameless, but his father, King Dasharatha, exiled him at the behest of a jealous queen. For fourteen years, Rama lived as a forest hermit with his brother, Lakshmana, and his wife, Sita. Then the king of the rakshasas, Ravana, kidnapped Sita, and Rama had to wage a war to rescue her. He had no human allies, but with an army of monkeys, including the monkey-god Hanuman, he defeated Ravana. Only after all those hardships did Rama become king.\"\r\n\r\n~ 91. The Story of Nala ~\r\n\"There was also King Nala,\" Maitreya continued. \"He lost his kingdom in a gambling match with his own brother, who then exiled Nala to the forest. Nala's loyal wife, Damayanti, accompanied him. Feeling ashamed, Nala abandoned her in the forest to live out his exile alone. Damayanti spent years searching for Nala but couldn't find him anywhere.", "start_char_idx": 56465, "end_char_idx": 58119, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "39984902-5d3c-42d9-85df-e181705d91db": {"__data__": {"id_": "39984902-5d3c-42d9-85df-e181705d91db", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "07cf6531-4e64-4af4-b460-1d18d4faca07", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "c9119f70daef71d57bf4a62bbf61c154c1932c1da6d244fce6d494d7f6262d83", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "49cf8419-286b-45b6-b988-2391c4f5e938", "node_type": "1", "metadata": {}, "hash": "8741ca0f5dcbd9609167f78c559e4a6fe6714aac745c7661de3bb427f5649c36", "class_name": "RelatedNodeInfo"}}, "text": "For fourteen years, Rama lived as a forest hermit with his brother, Lakshmana, and his wife, Sita. Then the king of the rakshasas, Ravana, kidnapped Sita, and Rama had to wage a war to rescue her. He had no human allies, but with an army of monkeys, including the monkey-god Hanuman, he defeated Ravana. Only after all those hardships did Rama become king.\"\r\n\r\n~ 91. The Story of Nala ~\r\n\"There was also King Nala,\" Maitreya continued. \"He lost his kingdom in a gambling match with his own brother, who then exiled Nala to the forest. Nala's loyal wife, Damayanti, accompanied him. Feeling ashamed, Nala abandoned her in the forest to live out his exile alone. Damayanti spent years searching for Nala but couldn't find him anywhere. Damayanti's father organized a swayamvara for her to choose a new husband, and Nala arrived, serving as charioteer to one of the kings seeking a bride. Damayanti recognized him, and together they won back Nala's kingdom and ruled again as king and queen.\"\r\n\r\n~ 92. The Story of Savitri ~\r\nMaitreya then told another story. \"King Ashwapati's daughter Savitri chose to marry Satyavan, a prince living in poverty in the forest, supporting his blind father, a king who had lost his kingdom. Even worse: the royal astrologer predicted Satyavan would die in one year. But Savitri loved him, and when Yama took Satyavan to the land of the dead, she followed. 'You cannot follow!' Yama said, but Savitri persisted. Impressed, Yama granted her a wish. 'I want to bear Satyavan's children,' she said. Thus Yama had to restore Satyavan's life, thanks to Savitri.\"\r\n\"I like that story,\" said Draupadi, smiling.\r\n\r\n~ 93.", "start_char_idx": 57386, "end_char_idx": 59027, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "49cf8419-286b-45b6-b988-2391c4f5e938": {"__data__": {"id_": "49cf8419-286b-45b6-b988-2391c4f5e938", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "39984902-5d3c-42d9-85df-e181705d91db", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "52d0e712681012c989da470122dbccee2f3f4d1cf02fdfa68dc8ac9831c2502f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "707c2bc5-7953-4801-bbb2-23cdba3b6e37", "node_type": "1", "metadata": {}, "hash": "62d9c4ff157ec39c21f1517900318e5cb995420d5e17605e4b8ab77627f88355", "class_name": "RelatedNodeInfo"}}, "text": "~ 92. The Story of Savitri ~\r\nMaitreya then told another story. \"King Ashwapati's daughter Savitri chose to marry Satyavan, a prince living in poverty in the forest, supporting his blind father, a king who had lost his kingdom. Even worse: the royal astrologer predicted Satyavan would die in one year. But Savitri loved him, and when Yama took Satyavan to the land of the dead, she followed. 'You cannot follow!' Yama said, but Savitri persisted. Impressed, Yama granted her a wish. 'I want to bear Satyavan's children,' she said. Thus Yama had to restore Satyavan's life, thanks to Savitri.\"\r\n\"I like that story,\" said Draupadi, smiling.\r\n\r\n~ 93. The Rishi Maitreya Curses Duryodhana ~\r\nAfter visiting the Pandavas in their forest exile, the rishi Maitreya went to Hastinapura. \"You must make peace between your sons and your nephews,\" he said to King Dhritarashtra. \"If not, it will lead to the annihilation of your family line.\"\r\nBut Duryodhana just laughed at Maitreya and slapped his thigh as he had done when taunting Draupadi. \r\n\"I curse you, Duryodhana!\" said Maitreya. \"One day Bhima will crush that thigh.\"\r\n\"Take back your curse!\" begged Duryodhana, truly alarmed.\r\n\"The only solution is to make peace with the Pandavas,\" Maitreya replied.\r\nBut Duryodhana would never make peace with his cousins.\r\n\r\n~ 94. Jayadratha Comes to the Forest ~\r\nDraupadi was surprised to see Jayadratha, King of Sindhu, approach their forest camp in his chariot; he was the husband of Duryodhana's sister, Duhshala.\r\n\"Perhaps he brings a message from Hastinapura,\" Draupadi thought. \r\n\"My husbands are hunting,\" she explained, \"but they will return soon.\"\r\n\"I came to see you!\" Jayadratha replied.", "start_char_idx": 58379, "end_char_idx": 60066, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "707c2bc5-7953-4801-bbb2-23cdba3b6e37": {"__data__": {"id_": "707c2bc5-7953-4801-bbb2-23cdba3b6e37", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "49cf8419-286b-45b6-b988-2391c4f5e938", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "1fbe453d8618283afac5743fe7bb7996565beafa213a06ddc0563c1877181591", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "727f69f9-c74c-4dfc-875a-b00f9dd8a474", "node_type": "1", "metadata": {}, "hash": "f16135e37d3a85f7c738c658c2523e206e08a188b9cebf12a29c5ed2dcab5225", "class_name": "RelatedNodeInfo"}}, "text": "\"I curse you, Duryodhana!\" said Maitreya. \"One day Bhima will crush that thigh.\"\r\n\"Take back your curse!\" begged Duryodhana, truly alarmed.\r\n\"The only solution is to make peace with the Pandavas,\" Maitreya replied.\r\nBut Duryodhana would never make peace with his cousins.\r\n\r\n~ 94. Jayadratha Comes to the Forest ~\r\nDraupadi was surprised to see Jayadratha, King of Sindhu, approach their forest camp in his chariot; he was the husband of Duryodhana's sister, Duhshala.\r\n\"Perhaps he brings a message from Hastinapura,\" Draupadi thought. \r\n\"My husbands are hunting,\" she explained, \"but they will return soon.\"\r\n\"I came to see you!\" Jayadratha replied. \"Leave this wretched wilderness and come with me. I'll be your new husband.\"\r\n\"How dare you!\" Draupadi screamed as Jayadratha grabbed her.\r\n\"You're a whore for the taking,\" Jayadratha shouted at her angrily. \"And I'm going to take you!\" \r\nHe then threw her in his chariot and rode away.\r\n\r\n~ 95. The Pandavas Stop Jayadratha ~\r\nThe rishis heard Draupadi screaming, and they ran to find the Pandavas.\r\nArjuna quickly caught up with Jayadratha and used fire-arrows to incinerate his chariot wheels. Bhima then jumped on Jayadratha and began pummeling him with his mighty fists, while the twins kicked him from left and right.\r\n\"Stop!\" Yudhishthira shouted. \"Don't kill him. He is married to the only sister in our family.\"\r\n\"Then I'll humiliate him for everyone to see,\" said Bhima, and he pulled out all of Jayadratha's hair, leaving just five tufts sticking out, one for each of the Pandavas to whom Jayadratha owed his life.\r\n\r\n~ 96. Bhima Searches for Lotuses ~\r\nA golden lotus blown by the wind landed at Draupadi's feet. \"How lovely!\" she said.", "start_char_idx": 59416, "end_char_idx": 61115, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "727f69f9-c74c-4dfc-875a-b00f9dd8a474": {"__data__": {"id_": "727f69f9-c74c-4dfc-875a-b00f9dd8a474", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "707c2bc5-7953-4801-bbb2-23cdba3b6e37", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "16e758f0ee5843e4abe30753ea45ac3c3e750600e6a3e36036ec728d491fab01", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5f138b06-5f92-4c93-821f-3ab574291705", "node_type": "1", "metadata": {}, "hash": "fe07fe978efbfcb2505f5f7ef186dde3672b5a715b02aa3ae7234b3abfdd1f70", "class_name": "RelatedNodeInfo"}}, "text": "Arjuna quickly caught up with Jayadratha and used fire-arrows to incinerate his chariot wheels. Bhima then jumped on Jayadratha and began pummeling him with his mighty fists, while the twins kicked him from left and right.\r\n\"Stop!\" Yudhishthira shouted. \"Don't kill him. He is married to the only sister in our family.\"\r\n\"Then I'll humiliate him for everyone to see,\" said Bhima, and he pulled out all of Jayadratha's hair, leaving just five tufts sticking out, one for each of the Pandavas to whom Jayadratha owed his life.\r\n\r\n~ 96. Bhima Searches for Lotuses ~\r\nA golden lotus blown by the wind landed at Draupadi's feet. \"How lovely!\" she said.\r\n\"I'll bring you more,\" Bhima said eagerly, racing off to gather more lotuses.\r\nHe soon found his path blocked by a monkey's tail.\r\n\"Move your tail!\" Bhima shouted at the sleeping monkey.\r\nThe monkey didn't move.\r\n\"I said: MOVE YOUR TAIL.\" \r\n\"I'm old,\" the monkey replied. \"You move it.\"\r\nBut Bhima couldn't move the tail: it was too heavy!\r\nThen the monkey rose up tall as a mountain.\r\n\"Lord Hanuman!\" Bhima exclaimed, happily saluting his brother, for they were both sons of the wind-god, Vayu.\r\n\r\n~ 97. A Python Captures Bhima ~\r\nOne day, a python grabbed Bhima. As Bhima struggled, the snake said, \"I was King Nahusha. I took Indraloka from Indra. I also took Indra's queen, Shachi. But she tricked me: she said the Saptarishis must carry me to her on a palanquin, and when the rishis walked slowly, I kicked one in the head. He cursed me to live as a python until someone named Yudhishthira freed me.\"\r\n\"Yudhishthira's my brother!\" Bhima shouted.\r\n\"You're jussssst ssssssaying that...\" hissed the python. \r\n\"Help!\" Bhima yelled.", "start_char_idx": 60468, "end_char_idx": 62149, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5f138b06-5f92-4c93-821f-3ab574291705": {"__data__": {"id_": "5f138b06-5f92-4c93-821f-3ab574291705", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "727f69f9-c74c-4dfc-875a-b00f9dd8a474", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "43e26382b95b2068a5cbca35e415bcea6ea33dd18a32df997a156fca1e85a1fd", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3d0dcede-eb5e-41a9-8833-7b47a735a513", "node_type": "1", "metadata": {}, "hash": "1835261c5635ca929264856fb950f37ccbe2e0609282126200ed41347afeb63e", "class_name": "RelatedNodeInfo"}}, "text": "\"Lord Hanuman!\" Bhima exclaimed, happily saluting his brother, for they were both sons of the wind-god, Vayu.\r\n\r\n~ 97. A Python Captures Bhima ~\r\nOne day, a python grabbed Bhima. As Bhima struggled, the snake said, \"I was King Nahusha. I took Indraloka from Indra. I also took Indra's queen, Shachi. But she tricked me: she said the Saptarishis must carry me to her on a palanquin, and when the rishis walked slowly, I kicked one in the head. He cursed me to live as a python until someone named Yudhishthira freed me.\"\r\n\"Yudhishthira's my brother!\" Bhima shouted.\r\n\"You're jussssst ssssssaying that...\" hissed the python. \r\n\"Help!\" Bhima yelled.\r\nHis brothers came running and, at Yudhishthira's touch, Nahusha shed his snake-body and ascended to heaven.\r\n\r\n~ 98. Vyasa Advises Yudhishthira ~\r\nYudhishthira apologized for the suffering he had brought upon his family. \"I gambled because I wanted to depose Duryodhana so that we could rule the whole kingdom,\" he confessed. \"But I realize anger about this serves no purpose now. I must practice patience, certain that someday we'll regain our kingdom.\"\r\nDraupadi and the others, however, did not share Yudhishthira's equanimity.\r\nThen Vyasa arrived, and he taught Yudhishthira a mantra that controlled a great weapon. \"Teach this mantra to Arjuna,\" he said, \"and send Arjuna out to search for more weapons. You must be prepared for the war that is coming.\"\r\n\r\n~ 99. Arjuna Encounters a Hunter ~\r\nArjuna ascended a sacred mountain and meditated deeply, praying to Shiva.\r\nAs he prayed, a boar attacked.\r\nArjuna emerged from meditation, grabbed his bow, and shot the boar. \r\nTo Arjuna's surprise, another arrow struck the boar.", "start_char_idx": 61503, "end_char_idx": 63178, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3d0dcede-eb5e-41a9-8833-7b47a735a513": {"__data__": {"id_": "3d0dcede-eb5e-41a9-8833-7b47a735a513", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5f138b06-5f92-4c93-821f-3ab574291705", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e7af233270668e329816bfa2638584c9a6ab62fc40fc60dc0d2b97a052512729", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d5cb66d8-0121-41b0-8622-71f33c008d06", "node_type": "1", "metadata": {}, "hash": "9583c3927d5d6aae8f2ef0b75fd57bf6d9c696f2681b2520b0ff6574b1191736", "class_name": "RelatedNodeInfo"}}, "text": "\"But I realize anger about this serves no purpose now. I must practice patience, certain that someday we'll regain our kingdom.\"\r\nDraupadi and the others, however, did not share Yudhishthira's equanimity.\r\nThen Vyasa arrived, and he taught Yudhishthira a mantra that controlled a great weapon. \"Teach this mantra to Arjuna,\" he said, \"and send Arjuna out to search for more weapons. You must be prepared for the war that is coming.\"\r\n\r\n~ 99. Arjuna Encounters a Hunter ~\r\nArjuna ascended a sacred mountain and meditated deeply, praying to Shiva.\r\nAs he prayed, a boar attacked.\r\nArjuna emerged from meditation, grabbed his bow, and shot the boar. \r\nTo Arjuna's surprise, another arrow struck the boar. \"The boar is mine!\" shouted a hunter emerging from the trees.\r\n\"No!\" protested Arjuna. \"It's mine!\" \r\nThey fought, and Arjuna could not overcome this hunter. He appealed to Shiva for help, throwing a garland on the Shiva-statue he had made. \r\nThe garland appeared around the hunter's neck! \r\n\"You are Shiva!\" Arjuna shouted, bowing down.\r\nShiva was pleased and rewarded Arjuna with the Pashupata weapon.\r\n\r\n~ 100. Arjuna Visits Indra's Heaven ~\r\nIndra, king of the gods, took his son Arjuna to heaven, and there Arjuna acquired many weapons. He also learned music and dancing from the gandharvas and apsaras.\r\nThe apsara Urvashi fell in love with Arjuna, but Arjuna rebuffed her. \"You're like a mother to me,\" he said, \"as you were once married to Pururavas, my ancestor.\"\r\n\"Because you've failed me as a man,\" Urvashi said angrily, \"I curse you to be a eunuch.\"\r\n\"Don't worry,\" Indra told Arjuna. \"Her curse will last only one year, thus keeping you safe in the year of exile you must spend in disguise.\"\r\n\r\n~ 101.", "start_char_idx": 62477, "end_char_idx": 64194, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d5cb66d8-0121-41b0-8622-71f33c008d06": {"__data__": {"id_": "d5cb66d8-0121-41b0-8622-71f33c008d06", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3d0dcede-eb5e-41a9-8833-7b47a735a513", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "585b0244f520b6cc8482ebdd7b862d0aaefd981c417ccfe6e59933d9f80dcfa1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8db11bd6-7d27-4424-b353-23f702906949", "node_type": "1", "metadata": {}, "hash": "2e690f09b46a85e28bcb0258b2525c2c1225637672b403fa1906d17801632390", "class_name": "RelatedNodeInfo"}}, "text": "Shiva was pleased and rewarded Arjuna with the Pashupata weapon.\r\n\r\n~ 100. Arjuna Visits Indra's Heaven ~\r\nIndra, king of the gods, took his son Arjuna to heaven, and there Arjuna acquired many weapons. He also learned music and dancing from the gandharvas and apsaras.\r\nThe apsara Urvashi fell in love with Arjuna, but Arjuna rebuffed her. \"You're like a mother to me,\" he said, \"as you were once married to Pururavas, my ancestor.\"\r\n\"Because you've failed me as a man,\" Urvashi said angrily, \"I curse you to be a eunuch.\"\r\n\"Don't worry,\" Indra told Arjuna. \"Her curse will last only one year, thus keeping you safe in the year of exile you must spend in disguise.\"\r\n\r\n~ 101. The Pandavas Are Reunited ~\r\nAfter years spent acquiring weapons, Arjuna joyfully rejoined his brothers. Their long exile was easier to bear when they were all together.\r\nDuryodhana, meanwhile, was troubled when he heard about Arjuna's newly acquired weapons.\r\n\"Fear not,\" said Shakuni. \"They are beggars, nothing like the princes they once were. Take your most magnificent army now, before they enter their year of disguise, and show them your might and power!\"\r\n\"I like this plan,\" Duryodhana said, smiling.\r\nDuryodhana then marched an army into the forest and set up camp with music and merriment, sending a messenger to his cousins with an invitation. \r\n\r\n~ 102. Duryodhana Fights the Gandharvas ~\r\nOn his way to the Pandavas, Duryodhana's messenger met a gandharva, sent by the gods to cause trouble. And trouble there was: the messenger fought with the gandharva, and soon Duryodhana himself and his whole army were fighting with an army of gandharvas. \r\nThen the gandharvas took Duryodhana prisoner, while Duryodhana's soldiers all fled in fear.", "start_char_idx": 63518, "end_char_idx": 65247, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8db11bd6-7d27-4424-b353-23f702906949": {"__data__": {"id_": "8db11bd6-7d27-4424-b353-23f702906949", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d5cb66d8-0121-41b0-8622-71f33c008d06", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "bf6facc0540463c5d4aa252db17fc9e6244ab3a08e9403c5b2f279dcb15ea148", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3df58f33-ab5b-458c-801a-0495b7bf7f36", "node_type": "1", "metadata": {}, "hash": "9859b6094dbbd53a43eae70762d44eec73e98cd78ab0f50e6b09b1a22ae26c5f", "class_name": "RelatedNodeInfo"}}, "text": "\"They are beggars, nothing like the princes they once were. Take your most magnificent army now, before they enter their year of disguise, and show them your might and power!\"\r\n\"I like this plan,\" Duryodhana said, smiling.\r\nDuryodhana then marched an army into the forest and set up camp with music and merriment, sending a messenger to his cousins with an invitation. \r\n\r\n~ 102. Duryodhana Fights the Gandharvas ~\r\nOn his way to the Pandavas, Duryodhana's messenger met a gandharva, sent by the gods to cause trouble. And trouble there was: the messenger fought with the gandharva, and soon Duryodhana himself and his whole army were fighting with an army of gandharvas. \r\nThen the gandharvas took Duryodhana prisoner, while Duryodhana's soldiers all fled in fear.\r\nWhen Yudhishthira learned the news, he sent Bhima and Arjuna to rescue Duryodhana. \"He's still our cousin after all,\" Yudhishthira said. So Bhima and Arjuna rescued Duryodhana, and they taunted him for needing their help.\r\nThe incident made Duryodhana hate the Pandavas even more.\r\n\r\n~ 103. The Pandavas Look for Water ~\r\nTracking a deer deep into the forest, the Pandavas grew tired and thirsty. \"We'll rest here,\" Yudhishthira said, \"and you look for water, Nakula.\"\r\nNakula found a lake, and began to drink when a voice shouted, \"Stop!\" \r\nNakula saw no one, just a crane. \r\n\"Stop!\" It was the crane who spoke. \"You must answer my questions before you drink.\"\r\nBut Nakula was so thirsty that he could not resist. He drank. He died.\r\nWhen Nakula did not return, Yudhishthira sent Sahadeva. Then Arjuna. Then Bhima. \r\nThen Yudhishthira himself came to the lake, and he saw his brothers lying there, dead.\r\n\r\n~ 104.", "start_char_idx": 64482, "end_char_idx": 66163, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3df58f33-ab5b-458c-801a-0495b7bf7f36": {"__data__": {"id_": "3df58f33-ab5b-458c-801a-0495b7bf7f36", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8db11bd6-7d27-4424-b353-23f702906949", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "adf2d96d6aa31ae046343928093d2cc69c795da89cd1881da2ccae7022cebed9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f2c24cce-05fc-4cc0-912b-6a88b122e069", "node_type": "1", "metadata": {}, "hash": "528f97b668750ba1944269e767212b53cf0d1e8aab289d2ac0e3c77c9a71fa43", "class_name": "RelatedNodeInfo"}}, "text": "~ 103. The Pandavas Look for Water ~\r\nTracking a deer deep into the forest, the Pandavas grew tired and thirsty. \"We'll rest here,\" Yudhishthira said, \"and you look for water, Nakula.\"\r\nNakula found a lake, and began to drink when a voice shouted, \"Stop!\" \r\nNakula saw no one, just a crane. \r\n\"Stop!\" It was the crane who spoke. \"You must answer my questions before you drink.\"\r\nBut Nakula was so thirsty that he could not resist. He drank. He died.\r\nWhen Nakula did not return, Yudhishthira sent Sahadeva. Then Arjuna. Then Bhima. \r\nThen Yudhishthira himself came to the lake, and he saw his brothers lying there, dead.\r\n\r\n~ 104. Yudhishthira Answers the Questions ~\r\nYudhishthira wept when he saw his dead brothers. Then he bent down to drink, and the crane said, \"Stop! Answer my questions first.\"\r\nUnlike his brothers, Yudhishthira obeyed. \"Ask your questions!\" he said, and the crane transformed into a mighty yaksha.\r\n\"What is faster than wind?\" the yaksha asked.\r\n\"The mind,\" replied Yudhishthira.\r\n\"What is more numerous than the grasses?\"\r\n\"Our thoughts.\"\r\n\"Who journeys always alone?\" \r\n\"The sun.\"\r\n\"What enemy is invincible?\" \r\n\"Anger.\"\r\nThe questions went on and on; Yudhishthira answered them all.\r\n\"You have answered well,\" said the yaksha. \"You may revive one of your brothers. Choose which one.\"\r\n\r\n~ 105. The Yaksha Revives the Pandavas ~\r\nYudhishthira answered the yaksha instantly. \"Let Nakula live!\"\r\n\"You surprise me,\" said the yaksha. \"He is Madri's son.\"\r\n\"And I am Kunti's son,\" said Yudhishthira. \"The sons of both mothers must survive this exile.\"\r\n\"You are indeed righteous!\" said the yaksha. \"I will revive all four.\"", "start_char_idx": 65533, "end_char_idx": 67178, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f2c24cce-05fc-4cc0-912b-6a88b122e069": {"__data__": {"id_": "f2c24cce-05fc-4cc0-912b-6a88b122e069", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3df58f33-ab5b-458c-801a-0495b7bf7f36", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "2d1da41b1e40e8a44408b4a3f5ca1fe22e674d1a8616a36b7ce7f02b325cda6c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7264d468-2455-4b35-b331-6195c8c8b928", "node_type": "1", "metadata": {}, "hash": "bf7247fd7cdeea288ff0173322a96e50ddc8645a0692cacd58a8ea27c6ec613f", "class_name": "RelatedNodeInfo"}}, "text": "\"What is faster than wind?\" the yaksha asked.\r\n\"The mind,\" replied Yudhishthira.\r\n\"What is more numerous than the grasses?\"\r\n\"Our thoughts.\"\r\n\"Who journeys always alone?\" \r\n\"The sun.\"\r\n\"What enemy is invincible?\" \r\n\"Anger.\"\r\nThe questions went on and on; Yudhishthira answered them all.\r\n\"You have answered well,\" said the yaksha. \"You may revive one of your brothers. Choose which one.\"\r\n\r\n~ 105. The Yaksha Revives the Pandavas ~\r\nYudhishthira answered the yaksha instantly. \"Let Nakula live!\"\r\n\"You surprise me,\" said the yaksha. \"He is Madri's son.\"\r\n\"And I am Kunti's son,\" said Yudhishthira. \"The sons of both mothers must survive this exile.\"\r\n\"You are indeed righteous!\" said the yaksha. \"I will revive all four.\"\r\nThe four Pandavas arose, amazed to see a mighty yaksha standing there.\r\nThen the yaksha transformed. Before them stood Yama, the god of dharma, Yudhishthira's father. \"I used the deer to lure you, my son,\" Yama explained. \"I was testing you, and you have done well. I give all five of you my blessing.\"\r\n\r\n~ 106. The Pandavas Go to King Virata ~\r\nAfter twelve years of exile in the forest, the Pandavas and Draupadi had to spend a thirteenth year in disguise. If they were discovered, the exile would begin again. They decided to hide together in the court of King Virata in Matsya.\r\nYudhishthira became Kanka, playing dice with the king; during his time in exile Yudhishthira had become very skilled at dice.\r\nBhima became Vallabha, a cook.\r\nArjuna became Brihannala, a eunuch who taught the ladies dancing and music. \r\nNakula became Granthika, a trainer of horses. \r\nSahadeva became Tantipala, a herder of cattle.\r\nDraupadi became Sairandhri, maid to Queen Sudeshna.\r\n\r\n~ 107.", "start_char_idx": 66457, "end_char_idx": 68158, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7264d468-2455-4b35-b331-6195c8c8b928": {"__data__": {"id_": "7264d468-2455-4b35-b331-6195c8c8b928", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f2c24cce-05fc-4cc0-912b-6a88b122e069", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "4c86fbb184ccb43fc85ff892a7bf5941a7ee1ffc42855d6517d3600963785695", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ab546a42-b0aa-4a4e-a411-32be5422b8cb", "node_type": "1", "metadata": {}, "hash": "fbff25609923e2dbc3a7c1ef34504a3b2fc9b0369f686b08b08a90a1a7cfa443", "class_name": "RelatedNodeInfo"}}, "text": "~ 106. The Pandavas Go to King Virata ~\r\nAfter twelve years of exile in the forest, the Pandavas and Draupadi had to spend a thirteenth year in disguise. If they were discovered, the exile would begin again. They decided to hide together in the court of King Virata in Matsya.\r\nYudhishthira became Kanka, playing dice with the king; during his time in exile Yudhishthira had become very skilled at dice.\r\nBhima became Vallabha, a cook.\r\nArjuna became Brihannala, a eunuch who taught the ladies dancing and music. \r\nNakula became Granthika, a trainer of horses. \r\nSahadeva became Tantipala, a herder of cattle.\r\nDraupadi became Sairandhri, maid to Queen Sudeshna.\r\n\r\n~ 107. Kichaka Pursues Draupadi ~\r\nBefore joining the court of King Virata as servants, the Pandavas tied their weapons and armor in a bundle and hid the bundle in a tree that stood in the cremation grounds. \r\nThen they entered Virata's court and, thanks to the blessing of Yama, no one recognized them as the Pandavas.\r\nThe year of disguise was almost complete when disaster struck: Queen Sudeshna's brother, a general named Kichaka, became obsessed with Draupadi. \r\n\"I'm married to five powerful gandharvas,\" Draupadi told him, \"and they watch over me. You must leave me alone, for your own good.\"\r\nBut Kichaka ignored her warnings.\r\n\r\n~ 108. Draupadi Seeks Protection ~\r\nDraupadi appealed to Queen Sudeshna. \"Dear Sairandhri,\" she said, \"my brother Kichaka is harmless, I assure you.\"\r\nDraupadi, however, knew she was in serious danger. She threw herself on the king's mercy, but he ignored her, and Yudhishthira, who was playing dice with the king at the time, said nothing.\r\nDraupadi felt betrayed once again, as she had at the dice game in Hastinapura years ago.", "start_char_idx": 67486, "end_char_idx": 69220, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ab546a42-b0aa-4a4e-a411-32be5422b8cb": {"__data__": {"id_": "ab546a42-b0aa-4a4e-a411-32be5422b8cb", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7264d468-2455-4b35-b331-6195c8c8b928", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "0fefb03bf8ccc2d239781d1c06e413537d89fc7622be14e633565447f145e3b7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "43f99e98-de95-4dbb-bc53-9ec7f304c384", "node_type": "1", "metadata": {}, "hash": "56ede2cbf214041d2b5a681004ace0c2df6ab0ff3ac52c332fe9ec5d0c27c34e", "class_name": "RelatedNodeInfo"}}, "text": "\"I'm married to five powerful gandharvas,\" Draupadi told him, \"and they watch over me. You must leave me alone, for your own good.\"\r\nBut Kichaka ignored her warnings.\r\n\r\n~ 108. Draupadi Seeks Protection ~\r\nDraupadi appealed to Queen Sudeshna. \"Dear Sairandhri,\" she said, \"my brother Kichaka is harmless, I assure you.\"\r\nDraupadi, however, knew she was in serious danger. She threw herself on the king's mercy, but he ignored her, and Yudhishthira, who was playing dice with the king at the time, said nothing.\r\nDraupadi felt betrayed once again, as she had at the dice game in Hastinapura years ago.\r\nBut this time, Bhima came to her aid. \"I will protect you, Draupadi,\" he said, and he told Draupadi to invite Kichaka to the dancing hall that night. \"I'll do the rest,\" Bhima promised.\r\n\r\n~ 109. Bhima Kills Kichaka ~\r\n\"Come to the dancing hall tonight,\" Draupadi told Kichaka. \"I'll show you my special dance.\"\r\nThe hall was dark when Kichaka arrived. \"Sairandhri,\" he cooed, \"where are you?\"\r\n\"HERE!\" boomed a voice. It was Bhima, who grabbed Kichaka and squeezed him to death, crushing him into a big ball of flesh.\r\nSuspicion fell on Draupadi, and King Virata threatened to throw her on Kichaka's funeral pyre. \r\n\"I warned him about my powerful gandharva husbands,\" Draupadi protested, \"but he didn't listen!\"\r\nNow King Virata was afraid too, and he spared Draupadi.\r\nThus Draupadi and the Pandavas remained in the king's service.\r\n\r\n~ 110. Duryodhana Searches for the Pandavas ~\r\nThe thirteenth year was almost over. Duryodhana sent his spies everywhere, but he could not find the Pandavas.\r\nThen he heard about the mysterious gandharvas who had killed his friend Kichaka in the court of King Virata.", "start_char_idx": 68620, "end_char_idx": 70327, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "43f99e98-de95-4dbb-bc53-9ec7f304c384": {"__data__": {"id_": "43f99e98-de95-4dbb-bc53-9ec7f304c384", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ab546a42-b0aa-4a4e-a411-32be5422b8cb", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "8b4ebe212b9a554c84f70d67601255355ab5654dfb860169968fbb32227c44b2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "255e1ca5-3563-4b20-8349-2167ee5fd3f9", "node_type": "1", "metadata": {}, "hash": "08e052d389bdb7b70e4170fff78cb6249c10eda46ad9b86887b4ab58bba6d773", "class_name": "RelatedNodeInfo"}}, "text": "\"HERE!\" boomed a voice. It was Bhima, who grabbed Kichaka and squeezed him to death, crushing him into a big ball of flesh.\r\nSuspicion fell on Draupadi, and King Virata threatened to throw her on Kichaka's funeral pyre. \r\n\"I warned him about my powerful gandharva husbands,\" Draupadi protested, \"but he didn't listen!\"\r\nNow King Virata was afraid too, and he spared Draupadi.\r\nThus Draupadi and the Pandavas remained in the king's service.\r\n\r\n~ 110. Duryodhana Searches for the Pandavas ~\r\nThe thirteenth year was almost over. Duryodhana sent his spies everywhere, but he could not find the Pandavas.\r\nThen he heard about the mysterious gandharvas who had killed his friend Kichaka in the court of King Virata. \"That must be the Pandavas! I'm sure of it!\"\r\nDrona and Bhishma both urged restraint. \"If you find the Pandavas, make peace with them,\" they advised. Even Dushasana tried to persuade his brother to set aside his obsession with the Pandavas.\r\nBut Duryodhana did not listen. He was determined to find the Pandavas and thus condemn them to another thirteen years of exile.\r\n\r\n~ 111. Duryodhana Attacks Virata ~\r\nDuryodhana was allied with Susharman, king of Trigarta and an enemy of King Virata. \r\n\"We should attack Virata now,\" said Susharman, \"and steal his cattle! Without Kichaka to lead his army, Virata will be defenseless.\"\r\nThis plan delighted Duryodhana, and he launched an attack immediately. \r\nVirata commanded his young son, Prince Uttara, to defend the kingdom, but Uttara did not even have a charioteer.\r\n\"I will be your charioteer,\" said Brihannala, and Uttara burst out laughing. \"You are the dancing teacher!\" he scoffed. \"I need a warrior to escort me.\"\r\n\"Trust me,\" said Brihannala. \"I will carry you to victory.\"\r\n\r\n~ 112.", "start_char_idx": 69617, "end_char_idx": 71367, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "255e1ca5-3563-4b20-8349-2167ee5fd3f9": {"__data__": {"id_": "255e1ca5-3563-4b20-8349-2167ee5fd3f9", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "43f99e98-de95-4dbb-bc53-9ec7f304c384", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "7c289ce11fa2b6f2d7a4ef5411cbb08278d6dd208c4094d9c0d79c808b6f106f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f38b34af-f8a3-406f-8721-ff6b81fba668", "node_type": "1", "metadata": {}, "hash": "654e6a051dbb4e043c645b1d145dfde1d8551cf55072e4715ae112bb84cc0f95", "class_name": "RelatedNodeInfo"}}, "text": "~ 111. Duryodhana Attacks Virata ~\r\nDuryodhana was allied with Susharman, king of Trigarta and an enemy of King Virata. \r\n\"We should attack Virata now,\" said Susharman, \"and steal his cattle! Without Kichaka to lead his army, Virata will be defenseless.\"\r\nThis plan delighted Duryodhana, and he launched an attack immediately. \r\nVirata commanded his young son, Prince Uttara, to defend the kingdom, but Uttara did not even have a charioteer.\r\n\"I will be your charioteer,\" said Brihannala, and Uttara burst out laughing. \"You are the dancing teacher!\" he scoffed. \"I need a warrior to escort me.\"\r\n\"Trust me,\" said Brihannala. \"I will carry you to victory.\"\r\n\r\n~ 112. Prince Uttara and Arjuna Ride into Battle ~\r\nBrihannala then drove straight to the cremation grounds. \r\n\"Fool!\" Uttara shouted. \"What are you doing?\"\r\n\"Preparing for victory,\" he replied, opening the bundle of weapons. \"Behold, the Gandiva bow! And I am Prince Arjuna.\"\r\n\"Forgive me,\" said Uttara, astonished. \"I will drive the chariot.\"\r\nArjuna then blew his conch, and Drona recognized the sound.\r\n\"It's Arjuna,\" he exclaimed. Then he turned to Duryodhana. \"Sire, you should return to Hastinapura. Now is not the time for you to fight the Pandavas.\"\r\n\"Now is exactly the time!\" replied Duryodhana.\r\nAnd so the Kauravas prepared to face Arjuna and Virata's army in battle.\r\n\r\n~ 113. Arjuna Faces the Kauravas in Battle ~\r\nThe thirteenth year of exile had ended at midnight, and Duryodhana had not found the Pandavas in time, which only made him more determined to defeat them in battle. He sent Karna against Arjuna; they fought fiercely, and Karna finally left the field drenched in his own blood.", "start_char_idx": 70701, "end_char_idx": 72367, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f38b34af-f8a3-406f-8721-ff6b81fba668": {"__data__": {"id_": "f38b34af-f8a3-406f-8721-ff6b81fba668", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "255e1ca5-3563-4b20-8349-2167ee5fd3f9", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "ebde5ff4fe8e20bb8426286782d51d821687241c984a45f06882eb37e72de5c0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e5edb519-c22d-4cc9-972e-f77b5d9a847c", "node_type": "1", "metadata": {}, "hash": "d1420a6dc5e43c4dabbeb6d9353f95ce49860a3b04f0c50b48bba52a9d2ef26c", "class_name": "RelatedNodeInfo"}}, "text": "\"I will drive the chariot.\"\r\nArjuna then blew his conch, and Drona recognized the sound.\r\n\"It's Arjuna,\" he exclaimed. Then he turned to Duryodhana. \"Sire, you should return to Hastinapura. Now is not the time for you to fight the Pandavas.\"\r\n\"Now is exactly the time!\" replied Duryodhana.\r\nAnd so the Kauravas prepared to face Arjuna and Virata's army in battle.\r\n\r\n~ 113. Arjuna Faces the Kauravas in Battle ~\r\nThe thirteenth year of exile had ended at midnight, and Duryodhana had not found the Pandavas in time, which only made him more determined to defeat them in battle. He sent Karna against Arjuna; they fought fiercely, and Karna finally left the field drenched in his own blood.\r\nArjuna then used a mantra to put the Kauravas to sleep and commanded Prince Uttara to strip their clothes to take as trophies.\r\nBack at the palace, Arjuna resumed his identity as Brihannala.\r\n\"Take the trophies to your father and tell him you won the battle,\" he said, and Uttara smiled gratefully.\r\n\r\n~ 114. King Virata Boasts about Prince Uttara ~\r\n\"What say you, Kanka?\" King Virata asked his dicing partner. \"Isn't my son Uttara a remarkable warrior?\"\r\n\"Indeed, my lord!\" replied Yudhishthira. \"Although his eunuch charioteer is even more remarkable.\"\r\nEnraged, Virata threw the dice at Yudhishthira, striking him in the forehead and drawing blood. Draupadi rushed to catch every drop, knowing that death awaited anyone who spilled Yudhishthira's blood to the ground.\r\nUttara was shocked, aware as he was now of Yudhishthira's identity. \"Take care with that old brahmin,\" he warned his father. \"He might curse you.\"\r\nThe king apologized, and Yudhishthira said soothingly, \"It is already forgotten, sire.\"", "start_char_idx": 71678, "end_char_idx": 73377, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e5edb519-c22d-4cc9-972e-f77b5d9a847c": {"__data__": {"id_": "e5edb519-c22d-4cc9-972e-f77b5d9a847c", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f38b34af-f8a3-406f-8721-ff6b81fba668", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "2f3d6026b6d95ab064f09a9adf5c9508834f7069564942ad41b48038b950a574", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3", "node_type": "1", "metadata": {}, "hash": "5781dc431b545476f78c6ea90ce45ead2ed5a71939c4e4c54e4b8edae1023dff", "class_name": "RelatedNodeInfo"}}, "text": "King Virata Boasts about Prince Uttara ~\r\n\"What say you, Kanka?\" King Virata asked his dicing partner. \"Isn't my son Uttara a remarkable warrior?\"\r\n\"Indeed, my lord!\" replied Yudhishthira. \"Although his eunuch charioteer is even more remarkable.\"\r\nEnraged, Virata threw the dice at Yudhishthira, striking him in the forehead and drawing blood. Draupadi rushed to catch every drop, knowing that death awaited anyone who spilled Yudhishthira's blood to the ground.\r\nUttara was shocked, aware as he was now of Yudhishthira's identity. \"Take care with that old brahmin,\" he warned his father. \"He might curse you.\"\r\nThe king apologized, and Yudhishthira said soothingly, \"It is already forgotten, sire.\"\r\n\r\n**CHAPTER 7: THE RETURN OF THE PANDAVAS**\r\n\r\n~ 115. The Pandavas Reveal Themselves ~\r\nSoon after the cattle-raid, King Virata was surprised to see Kanka sitting on the royal throne, with the cook and the dancing teacher beside him, plus the cowherd and a stableboy, and even his wife's maid, dressed up in royal robes. \r\nSuddenly, it all made sense. \"King Yudhishthira!\" he exclaimed, bowing.\r\n\"Our exile is over,\" Yudhishthira said, smiling. \"We hid ourselves here for the thirteenth year.\"\r\nVirata then offered his daughter, Uttarai, Uttara's sister, in marriage to Arjuna, but Arjuna proposed instead that his son Abhimanyu marry the princess. Thus King Virata became an ally of the Pandavas by marriage.\r\n\r\n~ 116. Yudhishthira Hopes for Peace ~\r\nKrishna rejoiced at the wedding of Uttarai and Abhimanyu, the son of his sister Subhadra. Although he was young, Abhimanyu was an accomplished warrior. He had begun his training already in the womb, listening as his father discussed battle strategies and formations with Krishna.", "start_char_idx": 72678, "end_char_idx": 74410, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3": {"__data__": {"id_": "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e5edb519-c22d-4cc9-972e-f77b5d9a847c", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "4a27e2862796c742951afcaafdab4373d7c671f22ae54ff857ea9a6f5f73223f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "96cc4aa4-b416-414e-acdd-9a35ee84eef1", "node_type": "1", "metadata": {}, "hash": "96479563c5af43ee927509c07e7990a5aee791e87d0fbf365d713c89cd28318f", "class_name": "RelatedNodeInfo"}}, "text": "Suddenly, it all made sense. \"King Yudhishthira!\" he exclaimed, bowing.\r\n\"Our exile is over,\" Yudhishthira said, smiling. \"We hid ourselves here for the thirteenth year.\"\r\nVirata then offered his daughter, Uttarai, Uttara's sister, in marriage to Arjuna, but Arjuna proposed instead that his son Abhimanyu marry the princess. Thus King Virata became an ally of the Pandavas by marriage.\r\n\r\n~ 116. Yudhishthira Hopes for Peace ~\r\nKrishna rejoiced at the wedding of Uttarai and Abhimanyu, the son of his sister Subhadra. Although he was young, Abhimanyu was an accomplished warrior. He had begun his training already in the womb, listening as his father discussed battle strategies and formations with Krishna. Abhimanyu remembered everything, and he would use his knowledge in the coming war.\r\n\"I have sent word to Duryodhana,\" Yudhishthira told the guests, \"asking him to return our half of the kingdom. Let us all now hope for peace.\"\r\n\"Though we must also be ready for war,\" Krishna added, and then he went home to Dwaraka.\r\n\r\n~ 117. Dhritarashtra Sends an Envoy of Peace ~\r\nAlthough Duryodhana and Karna advocated for war, King Dhritarashtra decided to send his charioteer Sanjaya to Yudhishthira with an offer of peace.\r\n\"I too desire peace,\" Yudhishthira told Sanjaya. \"I only ask for Indraprastha, the city that my brothers and I built in the wilderness. Give us back what is ours, and there will be no war.\"\r\n\"You ask only for what is right,\" said Sanjaya. \"But I am afraid that Duryodhana will refuse.\"\r\n\"Then give us just five villages,\" said Yudhishthira, \"one for each son of Pandu. That will be enough. Take that message to the Kauravas in Hastinapura.\"\r\n\r\n~ 118.", "start_char_idx": 73702, "end_char_idx": 75377, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "96cc4aa4-b416-414e-acdd-9a35ee84eef1": {"__data__": {"id_": "96cc4aa4-b416-414e-acdd-9a35ee84eef1", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "813ffaa2b07d6ec9f59468064b2724c77e08ae35f9e5994ba8b1657a8025899b", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "276cbe98-8f2b-4a17-a108-ba152936e64b", "node_type": "1", "metadata": {}, "hash": "98977a0f62050f0eedb3e56a850bacb8cb2c671c5fe71068f5c1d124aae3c130", "class_name": "RelatedNodeInfo"}}, "text": "~ 117. Dhritarashtra Sends an Envoy of Peace ~\r\nAlthough Duryodhana and Karna advocated for war, King Dhritarashtra decided to send his charioteer Sanjaya to Yudhishthira with an offer of peace.\r\n\"I too desire peace,\" Yudhishthira told Sanjaya. \"I only ask for Indraprastha, the city that my brothers and I built in the wilderness. Give us back what is ours, and there will be no war.\"\r\n\"You ask only for what is right,\" said Sanjaya. \"But I am afraid that Duryodhana will refuse.\"\r\n\"Then give us just five villages,\" said Yudhishthira, \"one for each son of Pandu. That will be enough. Take that message to the Kauravas in Hastinapura.\"\r\n\r\n~ 118. Dhritarashtra Seeks Advice ~\r\nWhen Sanjaya returned from meeting with Yudhishthira, King Dhritarashtra was uncertain what to do and asked his brother Vidura for advice.\r\n\"You must disown Duryodhana,\" Vidura told him, \"as ill omens at his birth foretold. Although he is your son, he is no better than a viper. Yudhishthira is a worthy heir, righteous and true to his word. Let Yudhishthira rule the kingdom. That is the only way you will know peace.\"\r\n\"I realize you are right,\" Dhritarashtra admitted, \"but I am strapped to Time's wheel; it turns me, and I cannot escape.\"\r\nAnd so King Dhritarashtra rejected Vidura's advice.\r\n\r\n~ 119. Arjuna and Duryodhana Go to Dwaraka ~\r\nAs war loomed, Arjuna went to Dwaraka to ask Krishna for help, and Duryodhana did the same. Krishna was asleep when they arrived; Duryodhana sat at the head of Krishna's bed, and Arjuna sat reverently at Krishna's feet.\r\nWhen Krishna awoke, he saw Arjuna first, and then Duryodhana.", "start_char_idx": 74731, "end_char_idx": 76335, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "276cbe98-8f2b-4a17-a108-ba152936e64b": {"__data__": {"id_": "276cbe98-8f2b-4a17-a108-ba152936e64b", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "96cc4aa4-b416-414e-acdd-9a35ee84eef1", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "76bec1bb6893ca1d9c07efd1fbc125292ef56eead2db9ae3e1bf7c9722c8b1c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e2204911-729c-4071-a5a9-d0929f7624b9", "node_type": "1", "metadata": {}, "hash": "477070864103ea08687754bc7d32978fd6465206eecdcfec2f78ffa0abaf53ed", "class_name": "RelatedNodeInfo"}}, "text": "Yudhishthira is a worthy heir, righteous and true to his word. Let Yudhishthira rule the kingdom. That is the only way you will know peace.\"\r\n\"I realize you are right,\" Dhritarashtra admitted, \"but I am strapped to Time's wheel; it turns me, and I cannot escape.\"\r\nAnd so King Dhritarashtra rejected Vidura's advice.\r\n\r\n~ 119. Arjuna and Duryodhana Go to Dwaraka ~\r\nAs war loomed, Arjuna went to Dwaraka to ask Krishna for help, and Duryodhana did the same. Krishna was asleep when they arrived; Duryodhana sat at the head of Krishna's bed, and Arjuna sat reverently at Krishna's feet.\r\nWhen Krishna awoke, he saw Arjuna first, and then Duryodhana.\r\n\"I have my armies to offer,\" said Krishna, \"and I offer myself, but not as a warrior. Let Arjuna choose first, as I saw him first.\"\r\n\"I choose you,\" Arjuna said without hesitation.\r\nDuryodhana rejoiced because he also got what he wanted: armies of Yadava warriors who would fight on his side.\r\n\r\n~ 120. Whose Side Will Balarama Join? ~\r\nKrishna agreed to be Arjuna's charioteer, while Krishna's army would fight for Duryodhana. Everyone wondered whose side Krishna's brother Balarama would take. \r\nDuryodhana went to Balarama and said, \"You must help me defeat the Pandavas! They stopped me from marrying your sister, and your sister's son now plots against me. The Pandavas are your enemies too!\"\r\n\"Don't listen to him!\" countered Bhima. \"Your brother Krishna is on our side, as you should be.\"\r\nBalarama sighed, for he loved them both. \"I reject this war,\" he said. \"I will fight on neither side. Only fools reject the possibility of peace.\"\r\n\r\n~ 121.", "start_char_idx": 75687, "end_char_idx": 77290, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e2204911-729c-4071-a5a9-d0929f7624b9": {"__data__": {"id_": "e2204911-729c-4071-a5a9-d0929f7624b9", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "276cbe98-8f2b-4a17-a108-ba152936e64b", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "cb6d2370c9fc49af96de0ad739b51589e8cc685675e80e3d20c6d481073ca1ac", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4aecb527-1848-4012-913d-a9224fed74f7", "node_type": "1", "metadata": {}, "hash": "45f9e0dbc6c83240bc402d48fc1ec53e29b7b24406dcab9671c577bef54ddc5a", "class_name": "RelatedNodeInfo"}}, "text": "~ 120. Whose Side Will Balarama Join? ~\r\nKrishna agreed to be Arjuna's charioteer, while Krishna's army would fight for Duryodhana. Everyone wondered whose side Krishna's brother Balarama would take. \r\nDuryodhana went to Balarama and said, \"You must help me defeat the Pandavas! They stopped me from marrying your sister, and your sister's son now plots against me. The Pandavas are your enemies too!\"\r\n\"Don't listen to him!\" countered Bhima. \"Your brother Krishna is on our side, as you should be.\"\r\nBalarama sighed, for he loved them both. \"I reject this war,\" he said. \"I will fight on neither side. Only fools reject the possibility of peace.\"\r\n\r\n~ 121. King Shalya Makes an Alliance ~\r\nShalya, king of Madra, planned to ally himself with the Pandavas, as his sister Madri had been Pandu's wife.\r\nDuryodhana, however, learned about this and put up pavilions filled with food and drink along the Madra highway. Shalya assumed this was Yudhishthira's doing. \"I promise my host a boon of his choosing!\" Shalya proclaimed.\r\nTo Shalya's surprise, Duryodhana claimed the boon and asked Shalya to fight in his army.\r\n\"You are bound by your promise,\" Yudhishthira said later, \"but when Karna and Arjuna confront each other in battle, help Arjuna if you can.\"\r\nShalya agreed to do as Yudhishthira asked.\r\n\r\n~ 122. Duryodhana Insists on War ~\r\nDuryodhana rejected all proposals of peace. \"I will kill the Pandavas and rule the world,\" he declared, \"or the Pandavas will kill me. There is no other way.\"\r\n\"My guru Parusharama taught me the mantra of the Brahmastra,\" Karna added. \"With this weapon I can destroy the Pandavas myself.\"\r\n\"Your conceit deceives you,\" Bhishma said to Karna. \"You know nothing of what awaits you.\"", "start_char_idx": 76633, "end_char_idx": 78351, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4aecb527-1848-4012-913d-a9224fed74f7": {"__data__": {"id_": "4aecb527-1848-4012-913d-a9224fed74f7", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e2204911-729c-4071-a5a9-d0929f7624b9", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "7a78b1031a6e95423808ce5a88d33f1150ac916cc69515ff0b94afbe97146d04", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c7cee09a-69d5-4164-a802-929633e929fc", "node_type": "1", "metadata": {}, "hash": "22b72aae58edbfee697ffed49e8fb4ab650ed6cbb55a842a43d7803e83178280", "class_name": "RelatedNodeInfo"}}, "text": "Shalya proclaimed.\r\nTo Shalya's surprise, Duryodhana claimed the boon and asked Shalya to fight in his army.\r\n\"You are bound by your promise,\" Yudhishthira said later, \"but when Karna and Arjuna confront each other in battle, help Arjuna if you can.\"\r\nShalya agreed to do as Yudhishthira asked.\r\n\r\n~ 122. Duryodhana Insists on War ~\r\nDuryodhana rejected all proposals of peace. \"I will kill the Pandavas and rule the world,\" he declared, \"or the Pandavas will kill me. There is no other way.\"\r\n\"My guru Parusharama taught me the mantra of the Brahmastra,\" Karna added. \"With this weapon I can destroy the Pandavas myself.\"\r\n\"Your conceit deceives you,\" Bhishma said to Karna. \"You know nothing of what awaits you.\"\r\n\"I know that I will not fight so long as you are fighting!\" Karna shouted at Bhishma, and he then stormed out of the assembly.\r\nBhishma scoffed. \"With such allies, Duryodhana brings disaster upon us all.\" \r\n\r\n~ 123. Krishna Consoles the Pandavas ~\r\nAs Yudhishthira contemplated the coming war, he despaired. \"Is there no way to obtain peace?\" he asked Krishna.\r\n\"I myself will go to Hastinapura,\" Krishna offered. \"I have no hope of changing Duryodhana's mind, but this way you will know we tried every option.\"\r\nSahadeva, alone among his brothers, rejected peace. \"For what Duryodhana tried to do to Draupadi,\" he said, \"we must kill him, and Shakuni too.\"\r\nDraupadi agreed. \"I too hope Krishna's mission will fail,\" she admitted.\r\n\"The wrongs you have suffered will be avenged,\" Krishna promised her. \"The war is coming, and no one can stop it.\"\r\n\r\n~ 124. Dhritarashtra Learns of Krishna's Coming ~\r\nWhen he learned of Krishna's visit, King Dhritarashtra rejoiced.", "start_char_idx": 77637, "end_char_idx": 79319, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c7cee09a-69d5-4164-a802-929633e929fc": {"__data__": {"id_": "c7cee09a-69d5-4164-a802-929633e929fc", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4aecb527-1848-4012-913d-a9224fed74f7", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5a244303b1580b49e88a9629cd14dfb7064b41b420cfa48f260af31ed6d332fc", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d72026e6-8981-4646-a2aa-f11abe39ee29", "node_type": "1", "metadata": {}, "hash": "72ed8b90a17f93f273ed4dead073c2ecdd049ca12d7ad859423ed4bc0bebaafd", "class_name": "RelatedNodeInfo"}}, "text": "\"Is there no way to obtain peace?\" he asked Krishna.\r\n\"I myself will go to Hastinapura,\" Krishna offered. \"I have no hope of changing Duryodhana's mind, but this way you will know we tried every option.\"\r\nSahadeva, alone among his brothers, rejected peace. \"For what Duryodhana tried to do to Draupadi,\" he said, \"we must kill him, and Shakuni too.\"\r\nDraupadi agreed. \"I too hope Krishna's mission will fail,\" she admitted.\r\n\"The wrongs you have suffered will be avenged,\" Krishna promised her. \"The war is coming, and no one can stop it.\"\r\n\r\n~ 124. Dhritarashtra Learns of Krishna's Coming ~\r\nWhen he learned of Krishna's visit, King Dhritarashtra rejoiced. \"We must greet this emissary with gold and jewels and every honor!\" he exclaimed.\r\nVidura rebuked his brother's exuberance. \"Just give the Pandavas their five villages,\" he said. \"That will please Krishna more.\"\r\nBut, as before, Dhritarashtra ignored Vidura's advice.\r\nMeanwhile, Duryodhana had a plan of his own. \"I think we should capture Krishna and hold him prisoner.\"\r\nHis words shocked Dhritarashtra, and he rebuked his son. \"You must not say such things. You must not even think them!\"\r\nBut Duryodhana thought of nothing else as he eagerly awaited Krishna's arrival.\r\n\r\n~ 125. Krishna Comes to Hastinapura ~\r\nBhishma, Drona, and all the elders of Hastinapura escorted Krishna to the palace.\r\nThere Krishna visited Kunti, who hadn't seen her sons for thirteen years. \"Tell them they must act now,\" she said. \"The time has come for them to destroy their enemies.\"\r\nDuryodhana invited Krishna to a banquet, but Krishna refused.\r\n\"You hate the Pandavas,\" he said, \"so you hate me. I won't eat the food of hatred with you. I will go to Vidura's house instead.\"\r\nAt dinner, Vidura warned Krishna of Duryodhana's plans, but Krishna only smiled.", "start_char_idx": 78661, "end_char_idx": 80464, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d72026e6-8981-4646-a2aa-f11abe39ee29": {"__data__": {"id_": "d72026e6-8981-4646-a2aa-f11abe39ee29", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c7cee09a-69d5-4164-a802-929633e929fc", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "9cc39f03bc02c9e43aa079600f5facccb12860ad081224b7fb6363e7912f0987", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "88e6f3ff-27c3-4483-9ac0-09d2d26b375b", "node_type": "1", "metadata": {}, "hash": "a30cf1c0033ead10170e12abf449c097b140df7ce582a74ad39f4211c87e3976", "class_name": "RelatedNodeInfo"}}, "text": "\"You must not say such things. You must not even think them!\"\r\nBut Duryodhana thought of nothing else as he eagerly awaited Krishna's arrival.\r\n\r\n~ 125. Krishna Comes to Hastinapura ~\r\nBhishma, Drona, and all the elders of Hastinapura escorted Krishna to the palace.\r\nThere Krishna visited Kunti, who hadn't seen her sons for thirteen years. \"Tell them they must act now,\" she said. \"The time has come for them to destroy their enemies.\"\r\nDuryodhana invited Krishna to a banquet, but Krishna refused.\r\n\"You hate the Pandavas,\" he said, \"so you hate me. I won't eat the food of hatred with you. I will go to Vidura's house instead.\"\r\nAt dinner, Vidura warned Krishna of Duryodhana's plans, but Krishna only smiled. \"I fear nothing,\" he said, \"nor should you, my friend.\"\r\n\r\n~ 126. Krishna Addresses the Assembly ~\r\n\"Five villages for the Pandavas,\" Krishna announced to the assembly. \"That's all they ask.\"\r\n\"No! They lost their kingdom!\" Duryodhana shouted. \"I will give them not so much as a needlepoint of land.\"\r\nDuryodhana then summoned his allies to seize Krishna, but Krishna laughed and revealed himself in his divine form containing the sun and moon and stars, with all the world's armies around him.\r\nDhritarashtra even regained his sight at that moment; he too saw God.\r\nDuryodhana could not seize Krishna because Krishna was... everything.\r\nKrishna then put on mortal form again and left the assembly in stunned silence.\r\n\r\n~ 127. Krishna Speaks with Karna ~\r\nBefore leaving Hastinapura, Krishna sought out Karna. \"Because I love you,\" Krishna said, \"I tell you the truth: you are Kunti's first-born son, Yudhishthira's elder brother. Yudhishthira doesn't know this, but if you tell him, he will gladly make you king. Go to him, Karna. It is the right thing to do.\"", "start_char_idx": 79751, "end_char_idx": 81527, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "88e6f3ff-27c3-4483-9ac0-09d2d26b375b": {"__data__": {"id_": "88e6f3ff-27c3-4483-9ac0-09d2d26b375b", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d72026e6-8981-4646-a2aa-f11abe39ee29", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "f312e9fd6905205736c90cbc35e96d540c30a562810fe8060c7bd1aa627f75c9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f63a4a3e-d832-4c72-9c51-acb38581be96", "node_type": "1", "metadata": {}, "hash": "e9bf12a41e3395eaaf470001092acdd91286de524ded46b61670658e77fec67d", "class_name": "RelatedNodeInfo"}}, "text": "Duryodhana then summoned his allies to seize Krishna, but Krishna laughed and revealed himself in his divine form containing the sun and moon and stars, with all the world's armies around him.\r\nDhritarashtra even regained his sight at that moment; he too saw God.\r\nDuryodhana could not seize Krishna because Krishna was... everything.\r\nKrishna then put on mortal form again and left the assembly in stunned silence.\r\n\r\n~ 127. Krishna Speaks with Karna ~\r\nBefore leaving Hastinapura, Krishna sought out Karna. \"Because I love you,\" Krishna said, \"I tell you the truth: you are Kunti's first-born son, Yudhishthira's elder brother. Yudhishthira doesn't know this, but if you tell him, he will gladly make you king. Go to him, Karna. It is the right thing to do.\"\r\n\"It cannot be right for me to betray Duryodhana,\" Karna replied. \"Duryodhana is my friend, and the Pandavas are my enemies. The truth of my birth changes nothing.\"\r\n\"And your loyalty is Duryodhana's doom,\" Krishna said sadly.\r\nThus Krishna's mission failed: he could not stop the coming war.\r\n\r\n**CHAPTER 8: THE WAR**\r\n\r\n~ 128. The Armies Assemble ~\r\n\"It is war then,\" said Yudhishthira, and he appointed generals to lead his seven armies, including his brother Bhima, along with Draupadi's father Drupada and Drupada's sons Dhristadyumna and Shikhandin. \r\nDuryodhana had eleven armies to Yudhishthira's seven, and Bhishma was his supreme commander. Karna, however, had vowed that he wouldn't fight while Bhishma was in command, so he bided his time on the sidelines.\r\nThe armies marched to Kurukshetra, the battlefield where they would meet.\r\nDhritarashtra's charioteer Sanjaya, by a divine gift, could see what was happening on the battlefield, and thus he narrated to Dhritarashtra everything as it occurred.\r\n\r\n~ 129.", "start_char_idx": 80767, "end_char_idx": 82550, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f63a4a3e-d832-4c72-9c51-acb38581be96": {"__data__": {"id_": "f63a4a3e-d832-4c72-9c51-acb38581be96", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "88e6f3ff-27c3-4483-9ac0-09d2d26b375b", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5bf9f3ad91a24fb3f65eb0b910c89ac9085f164bf9bc957e137e8b47af40e62e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9c95fe58-257d-492e-91dd-12dfde2c9b30", "node_type": "1", "metadata": {}, "hash": "856e9678c75bad20433c37202cebcfbeb2346f3c91439059247c97e3a0bdb67a", "class_name": "RelatedNodeInfo"}}, "text": "**CHAPTER 8: THE WAR**\r\n\r\n~ 128. The Armies Assemble ~\r\n\"It is war then,\" said Yudhishthira, and he appointed generals to lead his seven armies, including his brother Bhima, along with Draupadi's father Drupada and Drupada's sons Dhristadyumna and Shikhandin. \r\nDuryodhana had eleven armies to Yudhishthira's seven, and Bhishma was his supreme commander. Karna, however, had vowed that he wouldn't fight while Bhishma was in command, so he bided his time on the sidelines.\r\nThe armies marched to Kurukshetra, the battlefield where they would meet.\r\nDhritarashtra's charioteer Sanjaya, by a divine gift, could see what was happening on the battlefield, and thus he narrated to Dhritarashtra everything as it occurred.\r\n\r\n~ 129. The Story of the Lakes at Kurukshetra ~\r\nThis was not the first time Kurukshetra tasted kshatriya blood. The brahmin-warrior Parashurama had dug five lakes there, the Samanta-Panchaka, filled with the blood of the kshatriyas he killed.\r\nShortly before the war began at Kurukshetra, there was a solar eclipse, and the great kings had all come to purify themselves by bathing in the Samanta-Panchaka. The Pandavas were in exile then, but the other kings who would later fight at Kurukshetra attended the ritual.\r\nAs Krishna watched the kings bathing, he had a vision of them all covered in blood. War was coming, and these kings would not survive.\r\n\r\n~ 130. The Story of Vishnu and Bhudevi ~\r\nLong ago, the earth-goddess Bhudevi took the form of a cow. She generously gave her milk to the people of the earth.\r\nThe kings of the earth, however, milked her so greedily that her udders became sore, and she groaned in pain.\r\nThe god Vishnu heard her cries. \"I will teach those greedy kings not to treat you this way,\" he promised.", "start_char_idx": 81824, "end_char_idx": 83576, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9c95fe58-257d-492e-91dd-12dfde2c9b30": {"__data__": {"id_": "9c95fe58-257d-492e-91dd-12dfde2c9b30", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f63a4a3e-d832-4c72-9c51-acb38581be96", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "61d004aa150e6e66f65d72960e59a8dd88fc03d249838b29955c495d93f30fe0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b049e56c-c3b5-451f-b328-61a3d402a490", "node_type": "1", "metadata": {}, "hash": "7724cc0f6dc1bd6019ca44098870b5b907259db31eaca49791b0fd3fe3d97fd7", "class_name": "RelatedNodeInfo"}}, "text": "Shortly before the war began at Kurukshetra, there was a solar eclipse, and the great kings had all come to purify themselves by bathing in the Samanta-Panchaka. The Pandavas were in exile then, but the other kings who would later fight at Kurukshetra attended the ritual.\r\nAs Krishna watched the kings bathing, he had a vision of them all covered in blood. War was coming, and these kings would not survive.\r\n\r\n~ 130. The Story of Vishnu and Bhudevi ~\r\nLong ago, the earth-goddess Bhudevi took the form of a cow. She generously gave her milk to the people of the earth.\r\nThe kings of the earth, however, milked her so greedily that her udders became sore, and she groaned in pain.\r\nThe god Vishnu heard her cries. \"I will teach those greedy kings not to treat you this way,\" he promised. \"I will come as Parashurama and spill the blood of kings on the earth, and you will drink their blood like a lioness. I will do the same as Rama, and again as Krishna. That is my promise.\"\r\n\r\n~ 131. Kali Demands a Sacrifice ~\r\n\"To win this war, \" Krishna said, \"we must sacrifice to the goddess Kali.\" Then he pointed to one of the soldiers. \"We must sacrifice you!'\r\n\"But who is he?\" asked Arjuna, surprised.\r\n\"I am Iravan, your son,\" said the soldier to Arjuna. \"My mother is Ulupi, the naga princess. I gladly offer myself, but I don't want to die a bachelor. Let me marry first!\"\r\nNo woman would marry this man fated to die, so Krishna became Mohini, a beautiful woman, and Mohini married Iravan. The next morning, they sacrificed Iravan to Kali, and Mohini wept for her dead husband.\r\n\r\n~ 132. Iravan Watches the Battle ~\r\nTo satisfy Kali, Iravan cut himself into thirty-two pieces, each marked with a sacred sign, and Yudhishthira offered this flesh to the goddess.\r\nWhen Iravan was done, only his head and spine remained.", "start_char_idx": 82788, "end_char_idx": 84605, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b049e56c-c3b5-451f-b328-61a3d402a490": {"__data__": {"id_": "b049e56c-c3b5-451f-b328-61a3d402a490", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9c95fe58-257d-492e-91dd-12dfde2c9b30", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "26a72a89f066e6decd81bb14177f4588f2c8b7892edbf6ced470646965a9639e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9f9d7ac2-3a52-4209-a612-a3794d2d58f1", "node_type": "1", "metadata": {}, "hash": "df602725ccafbd9ee5e3ce3e172d76d284d73a3da9315f72e38554886ca9fcfa", "class_name": "RelatedNodeInfo"}}, "text": "Then he pointed to one of the soldiers. \"We must sacrifice you!'\r\n\"But who is he?\" asked Arjuna, surprised.\r\n\"I am Iravan, your son,\" said the soldier to Arjuna. \"My mother is Ulupi, the naga princess. I gladly offer myself, but I don't want to die a bachelor. Let me marry first!\"\r\nNo woman would marry this man fated to die, so Krishna became Mohini, a beautiful woman, and Mohini married Iravan. The next morning, they sacrificed Iravan to Kali, and Mohini wept for her dead husband.\r\n\r\n~ 132. Iravan Watches the Battle ~\r\nTo satisfy Kali, Iravan cut himself into thirty-two pieces, each marked with a sacred sign, and Yudhishthira offered this flesh to the goddess.\r\nWhen Iravan was done, only his head and spine remained.\r\nKrishna then spoke to the dead warrior. \"Pray to Shesha-Naga, your grandfather, and he will restore your flesh.\"\r\nIravan's lips moved in prayer, and Shesha appeared, coiling around Iravan's spine and restoring flesh to his corpse.\r\nIravan's eyes were still open, and Krishna realized he wanted to watch the war, so they placed Iravan's corpse high in a tree where he could look down upon the battlefield.\r\n\r\n~ 133. Arjuna Arrives at Kurukshetra ~\r\nKrishna had said he would not fight, but he did agree to be Arjuna's charioteer, and so he drove Arjuna out onto the battlefield.\r\nWhen Arjuna saw the enemy lines filled with kinsmen and friends whom he loved, Drona and Bhishma and many others, he fell to his knees in despair.\r\n\"I cannot fight this war,\" he moaned.\r\nKrishna then lectured Arjuna about duty and about the yoga of action; this was the Bhagavad-Gita. \"Seek not the fruits of action,\" Krishna said, \"but you must act, Arjuna! You are a kshatriya, and now you must fight. This is your dharma.\"\r\n\r\n~ 134.", "start_char_idx": 83879, "end_char_idx": 85621, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9f9d7ac2-3a52-4209-a612-a3794d2d58f1": {"__data__": {"id_": "9f9d7ac2-3a52-4209-a612-a3794d2d58f1", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b049e56c-c3b5-451f-b328-61a3d402a490", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "718b315856a3cf50b68e42dc621650051cfe024da4fda0f015ebbe39563e167f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "365f6410-d20c-4335-b1cf-2d7930998c5b", "node_type": "1", "metadata": {}, "hash": "b1a9ed2df4b17f8dcf87b94d670aba5a6b3ff77e00f88fbe3773b65fb9492046", "class_name": "RelatedNodeInfo"}}, "text": "~ 133. Arjuna Arrives at Kurukshetra ~\r\nKrishna had said he would not fight, but he did agree to be Arjuna's charioteer, and so he drove Arjuna out onto the battlefield.\r\nWhen Arjuna saw the enemy lines filled with kinsmen and friends whom he loved, Drona and Bhishma and many others, he fell to his knees in despair.\r\n\"I cannot fight this war,\" he moaned.\r\nKrishna then lectured Arjuna about duty and about the yoga of action; this was the Bhagavad-Gita. \"Seek not the fruits of action,\" Krishna said, \"but you must act, Arjuna! You are a kshatriya, and now you must fight. This is your dharma.\"\r\n\r\n~ 134. Krishna Reveals Himself to Arjuna ~\r\nKrishna then revealed himself as God to Arjuna: he had mouths, eyes, faces, bodies beyond counting. He was the whole universe, birth and death without beginning or end. He was everything, stretching from earth to sky, horizon to horizon. Everywhere. \r\nArjuna prayed. \"I see all beings, all weapons, all war, all peace, all worship, all fear. I see!\"\r\n\"Now I am become Death, the destroyer of worlds,\" Krishna said. \"The warriors you see are already dead, slain by their own karma. You are that karma. Arise and fight, Arjuna. It is time.\"\r\nArjuna took up his bow, ready to fight.\r\n\r\n~ 135. Yuyutsu Chooses a Side ~\r\n\"Anyone fighting for the Kaurava side may come to us now!\" shouted Yudhishthira before the battle began.\r\n\"And I say the same!\" shouted Duryodhana. \"Anyone on the Pandava side may join me now.\"\r\nOf the warriors present at Kurukshetra, only one changed sides at that time: Yuyutsu, Duryodhana's brother. He was the son of Dhritarashtra and Gandhari's maid.", "start_char_idx": 85015, "end_char_idx": 86630, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "365f6410-d20c-4335-b1cf-2d7930998c5b": {"__data__": {"id_": "365f6410-d20c-4335-b1cf-2d7930998c5b", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9f9d7ac2-3a52-4209-a612-a3794d2d58f1", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "46cfecb22997489540a009f0fd6f8e6ae635f1772d1fe029927b51d8e1bcd186", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d926438b-e71f-4f0e-95d1-7001ae36c6a8", "node_type": "1", "metadata": {}, "hash": "0a3afc2d75635e7b547d1b4f74c2e841ca01f082d1168d5b8fb00dbe372657cd", "class_name": "RelatedNodeInfo"}}, "text": "I see!\"\r\n\"Now I am become Death, the destroyer of worlds,\" Krishna said. \"The warriors you see are already dead, slain by their own karma. You are that karma. Arise and fight, Arjuna. It is time.\"\r\nArjuna took up his bow, ready to fight.\r\n\r\n~ 135. Yuyutsu Chooses a Side ~\r\n\"Anyone fighting for the Kaurava side may come to us now!\" shouted Yudhishthira before the battle began.\r\n\"And I say the same!\" shouted Duryodhana. \"Anyone on the Pandava side may join me now.\"\r\nOf the warriors present at Kurukshetra, only one changed sides at that time: Yuyutsu, Duryodhana's brother. He was the son of Dhritarashtra and Gandhari's maid.\r\nAmong Duryodhana's other brothers, the hundred sons of Gandhari, none deserted him, although Vikarna pressed him one last time to make peace. \"The Pandavas are our cousins,\" he said to Duryodhana. \"We should not fight them.\"\r\nBut Duryodhana was eager for war.\r\n\r\n~ 136. The War Begins ~\r\nThe armies of warriors on both sides were ready to begin the great war, but then Yudhishthira stepped forward and, setting aside his armor and weapons, he walked to the Kaurava side. \r\n\"Is he surrendering already?\" Duryodhana wondered. \"Coward!\"\r\nBut Yudhishthira was not surrendering. Instead, he saluted Drona, his guru, then his great-uncle Bhishma, and all the Kaurava elders.\r\nHis purpose accomplished, Yudhishthira returned to the Pandava side, took up his weapons and armor again, and gave the signal. \"Begin!\"\r\nSo the war began, and it lasted eighteen days. \r\nMillions died, and their blood washed over Kurukshetra like a flood.\r\n\r\n~ 137. The Pandavas and Kauravas Clash ~\r\nOn the first day, Bhima and Arjuna attacked the Kaurava armies relentlessly.", "start_char_idx": 86001, "end_char_idx": 87678, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d926438b-e71f-4f0e-95d1-7001ae36c6a8": {"__data__": {"id_": "d926438b-e71f-4f0e-95d1-7001ae36c6a8", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "365f6410-d20c-4335-b1cf-2d7930998c5b", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "cc4d4771d02b4d575e3b7c9924eebd850f6b7ef2c6075cc50fd3d59b844609e6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a0cb8359-3051-4858-b90b-781dbb3e58f9", "node_type": "1", "metadata": {}, "hash": "e1d161caac0ff6f03c707eefd7e5d8d70fb668537855c92461ffbc3148bf8332", "class_name": "RelatedNodeInfo"}}, "text": "\"Is he surrendering already?\" Duryodhana wondered. \"Coward!\"\r\nBut Yudhishthira was not surrendering. Instead, he saluted Drona, his guru, then his great-uncle Bhishma, and all the Kaurava elders.\r\nHis purpose accomplished, Yudhishthira returned to the Pandava side, took up his weapons and armor again, and gave the signal. \"Begin!\"\r\nSo the war began, and it lasted eighteen days. \r\nMillions died, and their blood washed over Kurukshetra like a flood.\r\n\r\n~ 137. The Pandavas and Kauravas Clash ~\r\nOn the first day, Bhima and Arjuna attacked the Kaurava armies relentlessly.\r\n\"Those two will destroy us,\" Duryodhana shouted, \"and we don't even have Karna to help us.\"\r\nBhishma glared at Duryodhana. \"Do you want me to die?\"\r\n\"No, no,\" Duryodhana stammered, \"I just meant someone must stop Arjuna and Bhima!\"\r\nBhishma then shot an arrow that struck Krishna, drawing blood, but this only served to make Arjuna fight even more fiercely.\r\nElsewhere on the battlefield, Dhrishtadyumna chased down Drona, his father's mortal enemy, but Drona killed his charioteer and nearly killed Dhrishtadyumna too; Bhima barely rescued him in time.\r\n\r\n~ 138. Arjuna Attacks Bhishma ~\r\n\"I see you hesitating to kill Bhishma,\" Krishna said to Arjuna, \"but you must not hesitate. Kill him!\" \r\nKrishna then raced the chariot towards Bhishma, and Arjuna rained arrows down upon him, while Bhishma only smiled. \"Well done!\" he shouted, praising his great-nephew.\r\n\"I'll kill him myself then,\" said Krishna, leaping from the chariot and raising his discus.\r\n\"O God,\" Bhishma prayed, \"death at your hands is salvation.\"\r\n\"No!\" Arjuna pulled Krishna's arm back. \"You vowed not to fight; it is for me to do.\"", "start_char_idx": 87105, "end_char_idx": 88783, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a0cb8359-3051-4858-b90b-781dbb3e58f9": {"__data__": {"id_": "a0cb8359-3051-4858-b90b-781dbb3e58f9", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d926438b-e71f-4f0e-95d1-7001ae36c6a8", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "376afd036ab5527154a44f202023a3356424e2525d57aa711c052aeb65e3ae83", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9dd03b9a-253b-42c9-b15a-423846fbd0be", "node_type": "1", "metadata": {}, "hash": "7e9857ea57d7fe3092c5ca4cdb000876954cd5485e255f6fb3c588eef91c56d7", "class_name": "RelatedNodeInfo"}}, "text": "~ 138. Arjuna Attacks Bhishma ~\r\n\"I see you hesitating to kill Bhishma,\" Krishna said to Arjuna, \"but you must not hesitate. Kill him!\" \r\nKrishna then raced the chariot towards Bhishma, and Arjuna rained arrows down upon him, while Bhishma only smiled. \"Well done!\" he shouted, praising his great-nephew.\r\n\"I'll kill him myself then,\" said Krishna, leaping from the chariot and raising his discus.\r\n\"O God,\" Bhishma prayed, \"death at your hands is salvation.\"\r\n\"No!\" Arjuna pulled Krishna's arm back. \"You vowed not to fight; it is for me to do.\"\r\nBut Arjuna did not kill Bhishma that day, and the battle raged on and on.\r\n\r\n~ 139. Duryodhana Attacks with Elephants ~\r\nDuryodhana attacked with elephants, but Bhima killed them all. \"You elephants and you evil-minded Kauravas, meet your destroyer!\" he shouted. \"My mace will show you all the way to Yama's world!\"\r\nOn that day alone, Bhima killed eight of Duryodhana's brothers. \"Dhritarashtra may have sired one hundred sons,\" Bhima snarled, \"but I vow that I will kill them all.\"\r\nDuryodhana then landed a blow that knocked Bhima to the ground, whereupon Bhima's rakshasa son Ghatotkacha materialized out of nowhere, rescuing his father and joining the battle.\r\n\"We can't defeat the rakshasa!\" Duryodhana shouted, retreating.\r\nThus ended another day of battle.\r\n\r\n~ 140. Barbarika Joins the War ~\r\nBarbarika, a mighty warrior, was the son of Bhima and a naga princess, but he had an unexpected loyalty. \"I always join the losing side,\" he proclaimed.\r\nKrishna realized this shifting loyalty would prolong the war forever. \"If you help the losers,\" Krishna said, \"help me by beheading someone who threatens the whole world!\"\r\n\"Show him to me!\" said Barbarika. \r\nKrishna held up a mirror.", "start_char_idx": 88237, "end_char_idx": 89975, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9dd03b9a-253b-42c9-b15a-423846fbd0be": {"__data__": {"id_": "9dd03b9a-253b-42c9-b15a-423846fbd0be", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a0cb8359-3051-4858-b90b-781dbb3e58f9", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "9c5f8bbbdfeafa238c3efc44c1cb1337ccc1437bb8339f2c61c070eeafd58995", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "981a4157-1137-47cf-9800-5dd6a7c228b0", "node_type": "1", "metadata": {}, "hash": "b5bd9122b81abaf448981d47f433d8f775aeeb2d32880f108c7145f34115e4e6", "class_name": "RelatedNodeInfo"}}, "text": "Duryodhana then landed a blow that knocked Bhima to the ground, whereupon Bhima's rakshasa son Ghatotkacha materialized out of nowhere, rescuing his father and joining the battle.\r\n\"We can't defeat the rakshasa!\" Duryodhana shouted, retreating.\r\nThus ended another day of battle.\r\n\r\n~ 140. Barbarika Joins the War ~\r\nBarbarika, a mighty warrior, was the son of Bhima and a naga princess, but he had an unexpected loyalty. \"I always join the losing side,\" he proclaimed.\r\nKrishna realized this shifting loyalty would prolong the war forever. \"If you help the losers,\" Krishna said, \"help me by beheading someone who threatens the whole world!\"\r\n\"Show him to me!\" said Barbarika. \r\nKrishna held up a mirror.\r\nBarbarika was true to his word. \"Still, I wish I could see the war,\" he said as he beheaded himself.\r\nAfterwards, Krishna breathed life into the head so Barbarika could watch the war after all.\r\n\r\n~ 141. Shikhandin Confronts Bhishma ~\r\nOn the tenth day the Pandavas realized they could use Shikhandin against Bhishma: Shikhandin had been born a woman, and Bhishma would not fight a woman. So Shikhandin rode forward and, under Arjuna's protection, began shooting at Bhishma.\r\n\"I won't fight you, Shikhandin,\" Bhishma shouted.\r\n\"Fight or not,\" Shikhandin replied, \"I will slay you today. I was born for this!\"\r\nShikhandin continued firing, and Arjuna shot Bhishma too. The old warrior's body was pierced everywhere with arrows. When he fell, he didn't touch the ground. Instead, he rested on a bed of arrows.\r\nBoth sides stopped fighting when Bhishma fell.\r\n\r\n~ 142. Bhishma Lies on the Bed of Arrows ~\r\nBhishma lay on the bed of arrows but did not die; he had the power to choose the moment of his death, and he chose to wait.", "start_char_idx": 89270, "end_char_idx": 91003, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "981a4157-1137-47cf-9800-5dd6a7c228b0": {"__data__": {"id_": "981a4157-1137-47cf-9800-5dd6a7c228b0", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9dd03b9a-253b-42c9-b15a-423846fbd0be", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "cf2cd9d910f26c1c6c5e4fd213c376a61bbd4fc3d8df88fd1788c3511d0d5713", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9abd9405-55a9-4d13-8ba2-40320a078460", "node_type": "1", "metadata": {}, "hash": "0c4f741c9f06fb99c6e687bd9a862920cf1c59c455d9b70631f90c02a3afca94", "class_name": "RelatedNodeInfo"}}, "text": "So Shikhandin rode forward and, under Arjuna's protection, began shooting at Bhishma.\r\n\"I won't fight you, Shikhandin,\" Bhishma shouted.\r\n\"Fight or not,\" Shikhandin replied, \"I will slay you today. I was born for this!\"\r\nShikhandin continued firing, and Arjuna shot Bhishma too. The old warrior's body was pierced everywhere with arrows. When he fell, he didn't touch the ground. Instead, he rested on a bed of arrows.\r\nBoth sides stopped fighting when Bhishma fell.\r\n\r\n~ 142. Bhishma Lies on the Bed of Arrows ~\r\nBhishma lay on the bed of arrows but did not die; he had the power to choose the moment of his death, and he chose to wait.\r\n\"I'm thirsty,\" he said, and Arjuna shot an arrow into the ground. Water burst forth; thus Bhishma's mother, Ganga, quenched his thirst.\r\nBhishma urged Duryodhana to seek peace with the Pandavas. \r\nKarna was there too, and sought Bhishma's forgiveness. Again, Bhishma urged peace. \"Listen, Karna: you are Kunti's son,\" he said. \"End this war with your brothers.\"\r\nBut instead, Karna donned his armor, ready to fight now that Bhishma had left the battlefield.\r\n\r\n~ 143. Kunti Comes to Karna ~\r\nThe dawn before Karna joined the battle, Kunti came to see him.\r\n\"I know you are my mother,\" Karna said. \"Krishna told me. But my love is for the mother and father who raised me, the charioteer and his wife. And for Duryodhana, who accepted me as I am, while you rejected me.\"\r\nKunti wept, and Karna pitied her in that moment. \"I promise I will fight Arjuna only,\" he said. \"I will spare your other sons. That way, when this war is over, either Arjuna will be dead, or I will be, and you will still have five sons.\"\r\n\r\n~ 144.", "start_char_idx": 90366, "end_char_idx": 92022, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9abd9405-55a9-4d13-8ba2-40320a078460": {"__data__": {"id_": "9abd9405-55a9-4d13-8ba2-40320a078460", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "981a4157-1137-47cf-9800-5dd6a7c228b0", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "6cbc7c2a2b0617c9086f937d4c1530f4c0984c6ea9880ef4458e20e81efb820a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9af733fa-f391-4c75-b19d-473c39a24b31", "node_type": "1", "metadata": {}, "hash": "4b6f2100782d71eab1a03507616b807f62324a7675f3763e7a348ee3fa76e735", "class_name": "RelatedNodeInfo"}}, "text": "\"End this war with your brothers.\"\r\nBut instead, Karna donned his armor, ready to fight now that Bhishma had left the battlefield.\r\n\r\n~ 143. Kunti Comes to Karna ~\r\nThe dawn before Karna joined the battle, Kunti came to see him.\r\n\"I know you are my mother,\" Karna said. \"Krishna told me. But my love is for the mother and father who raised me, the charioteer and his wife. And for Duryodhana, who accepted me as I am, while you rejected me.\"\r\nKunti wept, and Karna pitied her in that moment. \"I promise I will fight Arjuna only,\" he said. \"I will spare your other sons. That way, when this war is over, either Arjuna will be dead, or I will be, and you will still have five sons.\"\r\n\r\n~ 144. Indra Visits Karna in Disguise ~\r\nKarna had another visitor that morning: the god Indra, who was worried for his son, Arjuna. Relying on Karna's generosity, Indra went to Karna disguised as an old man, begging Karna to give him a gift.\r\n\"What do you want?\" Karna asked.\r\n\"Your earrings and armor,\" said the old man.\r\nWithout hesitation, Karna cut off the earrings and armor that had been part of his body since birth, giving them to the old man.\r\nAstounded by Karna's complete generosity, Indra revealed himself. \"Take this divine Shakti-spear,\" he said. \"It never misses its mark, but you can use it only once.\"\r\n\r\n~ 145. Bhima Pursues the Sons of Gandhari ~\r\nBhima had vowed he would kill the hundred sons of Gandhari. Each day, he prowled the battlefield in search of the Kaurava brothers, killing them one by one.\r\nThen the day came when Bhima found himself face to face with Vikarna, the only one of Gandhari's sons who defied Duryodhana. Vikarna had even defended Draupadi in the gambling hall.", "start_char_idx": 91332, "end_char_idx": 93023, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9af733fa-f391-4c75-b19d-473c39a24b31": {"__data__": {"id_": "9af733fa-f391-4c75-b19d-473c39a24b31", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9abd9405-55a9-4d13-8ba2-40320a078460", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "94273a324299a0451cfd7a449907178988971ec4411297fbf8580c10258a41ea", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "986d02bb-c253-43cd-9327-ef021633ec9c", "node_type": "1", "metadata": {}, "hash": "aebae89f86d92a784ec470d8518aeaf6066f59f8924abee3efd3af94d0de9cff", "class_name": "RelatedNodeInfo"}}, "text": "\"What do you want?\" Karna asked.\r\n\"Your earrings and armor,\" said the old man.\r\nWithout hesitation, Karna cut off the earrings and armor that had been part of his body since birth, giving them to the old man.\r\nAstounded by Karna's complete generosity, Indra revealed himself. \"Take this divine Shakti-spear,\" he said. \"It never misses its mark, but you can use it only once.\"\r\n\r\n~ 145. Bhima Pursues the Sons of Gandhari ~\r\nBhima had vowed he would kill the hundred sons of Gandhari. Each day, he prowled the battlefield in search of the Kaurava brothers, killing them one by one.\r\nThen the day came when Bhima found himself face to face with Vikarna, the only one of Gandhari's sons who defied Duryodhana. Vikarna had even defended Draupadi in the gambling hall. But out of loyalty to his brothers, Vikarna was fighting on the Kaurava side.\r\nBhima killed Vikarna, and he wept when he did so.\r\nKrishna, however, did not weep. \"Dharma is what matters,\" Krishna told him. \"Not family. Not friends. Dharma.\"\r\n\r\n~ 146. Duryodhana Plans to Capture Yudhishthira ~\r\nDuryodhana wanted to capture Yudhishthira alive. \"Make that your priority!\" he told Drona, now commander-in-chief. Duryodhana hoped to compel Yudhishthira to accept an invitation to gamble again, sending the Pandavas into another exile as a way to end the war.\r\nDrona, however, failed to capture Yudhishthira. \"Under Arjuna's watchful protection, there is no way to capture him,\" Drona protested.\r\n\"The fault is yours!\" Duryodhana shouted. \"You favor the Pandavas, despite being my commander-in-chief.\"\r\nA band of Duryodhana's soldiers then took the samshaptaka oath, vowing to kill Arjuna or die trying. \"Victory or death!\" they cried as they rode into battle.\r\n\r\n~ 147.", "start_char_idx": 92260, "end_char_idx": 93990, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "986d02bb-c253-43cd-9327-ef021633ec9c": {"__data__": {"id_": "986d02bb-c253-43cd-9327-ef021633ec9c", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9af733fa-f391-4c75-b19d-473c39a24b31", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "fe9acc27344d954298e309300af8d9874712d3697a2941afe97f432dfa4f8eba", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "eca36859-775c-49bf-a08a-4857f3a2db0b", "node_type": "1", "metadata": {}, "hash": "321681fac7a6e6062ad382acf9cb79784bfa7884112e5f7bc4655eca05611669", "class_name": "RelatedNodeInfo"}}, "text": "\"Make that your priority!\" he told Drona, now commander-in-chief. Duryodhana hoped to compel Yudhishthira to accept an invitation to gamble again, sending the Pandavas into another exile as a way to end the war.\r\nDrona, however, failed to capture Yudhishthira. \"Under Arjuna's watchful protection, there is no way to capture him,\" Drona protested.\r\n\"The fault is yours!\" Duryodhana shouted. \"You favor the Pandavas, despite being my commander-in-chief.\"\r\nA band of Duryodhana's soldiers then took the samshaptaka oath, vowing to kill Arjuna or die trying. \"Victory or death!\" they cried as they rode into battle.\r\n\r\n~ 147. Abhimanyu Enters the Maze ~\r\nAs Arjuna battled the suicide squadron, Drona arranged his army in a maze formation. Only Arjuna knew the counterattack.\r\nOnly Arjuna... and his son. \"I learned this secret in the womb,\" said Abhimanyu. \"I can break the maze; I just don't know how to get out.\"\r\n\"Don't worry!\" Bhima assured him. \"We'll be with you.\"\r\nAbhimanyu broke through, but the Kaurava forces led by Jayadratha sealed the breach immediately, cutting Abhimanyu off from the Pandavas. He fought fiercely, even using his chariot wheel as a weapon, but the Kauravas overwhelmed him, and Abhimanyu died there, trapped inside the maze, alone.\r\n\r\n~ 148. Arjuna Vows to Avenge Abhimanyu ~\r\nWhen Arjuna learned Jayadratha had led the soldiers who killed his son, he vowed revenge. \"Either I kill Jayadratha before sunset tomorrow, or I kill myself.\"\r\nThe Kauravas made every effort to protect Jayadratha so Arjuna would have to kill himself at sunset.\r\nKrishna, however, intervened. As evening approached, he raised his divine discus and hid the sun from view. Thinking the sun had set, the Kauravas let down their guard, exposing Jayadratha.", "start_char_idx": 93368, "end_char_idx": 95126, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "eca36859-775c-49bf-a08a-4857f3a2db0b": {"__data__": {"id_": "eca36859-775c-49bf-a08a-4857f3a2db0b", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "986d02bb-c253-43cd-9327-ef021633ec9c", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "a3be46be21f2383c3fb698abc3154accb137f2b70ba29d65b7426337cab9fa20", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71", "node_type": "1", "metadata": {}, "hash": "4ae7cc5fb12176395975108fca022d2fe72cd52227e669991d99a1453bdff91b", "class_name": "RelatedNodeInfo"}}, "text": "He fought fiercely, even using his chariot wheel as a weapon, but the Kauravas overwhelmed him, and Abhimanyu died there, trapped inside the maze, alone.\r\n\r\n~ 148. Arjuna Vows to Avenge Abhimanyu ~\r\nWhen Arjuna learned Jayadratha had led the soldiers who killed his son, he vowed revenge. \"Either I kill Jayadratha before sunset tomorrow, or I kill myself.\"\r\nThe Kauravas made every effort to protect Jayadratha so Arjuna would have to kill himself at sunset.\r\nKrishna, however, intervened. As evening approached, he raised his divine discus and hid the sun from view. Thinking the sun had set, the Kauravas let down their guard, exposing Jayadratha. Krishna lowered his discus: the setting sun was still in the sky as Arjuna shot an arrow that decapitated Jayadratha.\r\nThus ended another day of the war.\r\n\r\n~ 149. Duryodhana Seeks Gandhari's Blessing ~\r\nThe war continued day after day after day.\r\nEach morning, Duryodhana would go to his mother and ask for her blessing. Gandhari's pious devotion gave her enormous power, so what she said always came true.\r\n\"Mother, please say 'May my sons win,'\" Duryodhana would ask her.\r\nGandhari, however, would only say, \"May the right side win.\"\r\nDhritarashtra protested. \"Whether he's right or not, Duryodhana is our son.\"\r\nBut Gandhari repeated, \"May the right side win,\" and all the while she grieved for her hundred sons as Bhima killed them, one by one by one.\r\nSoon, there would be none left.\r\n\r\n~ 150. Bhima Fights Karna ~\r\nThe next day, Bhima killed twelve more of Duryodhana's brothers. \"I will kill them all,\" he thought to himself, \"Duryodhana and all his brothers!\"\r\nThen when Bhima saw Karna, he turned his chariot to pursue him, but Karna shattered Bhima's bow, broke his mace, and killed Bhima's charioteer.", "start_char_idx": 94476, "end_char_idx": 96240, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71": {"__data__": {"id_": "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "eca36859-775c-49bf-a08a-4857f3a2db0b", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "cb958023c89d940e0ada33fa84cc278c24eb5556078e2af327fbd50243047ea4", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "283a69e0-0505-4ad0-a408-8fdd7b248630", "node_type": "1", "metadata": {}, "hash": "e524d6cf133702c465776eaef70f7f6bbd53e0c93c36c88b52f5424d406f3dc5", "class_name": "RelatedNodeInfo"}}, "text": "\"Mother, please say 'May my sons win,'\" Duryodhana would ask her.\r\nGandhari, however, would only say, \"May the right side win.\"\r\nDhritarashtra protested. \"Whether he's right or not, Duryodhana is our son.\"\r\nBut Gandhari repeated, \"May the right side win,\" and all the while she grieved for her hundred sons as Bhima killed them, one by one by one.\r\nSoon, there would be none left.\r\n\r\n~ 150. Bhima Fights Karna ~\r\nThe next day, Bhima killed twelve more of Duryodhana's brothers. \"I will kill them all,\" he thought to himself, \"Duryodhana and all his brothers!\"\r\nThen when Bhima saw Karna, he turned his chariot to pursue him, but Karna shattered Bhima's bow, broke his mace, and killed Bhima's charioteer. Bhima then had to hide behind the carcasses of war-elephants that littered the battlefield.\r\n\"Go back into the forest where you belong!\" Karna yelled.\r\nBut as he had promised Kunti, Karna did not kill Bhima. Arjuna was the only one of the Pandavas that Karna was going to fight in mortal combat.\r\n\r\n~ 151. King Bhagadatta Attacks Arjuna ~\r\nWhen Arjuna saw Bhima attacked by King Bhagadatta's elephant army, he ordered Krishna to drive his chariot into the fray. \r\nAs soon as Bhagadatta saw them coming, he unleashed a terrible weapon: a Vishnu-astra. Before Arjuna could shoot an arrow in defense, Krishna leaped up and the Vishnu-astra struck him in the chest.\r\nIt turned into a garland of flowers.\r\nKrishna then explained. \"Bhagadatta received that astra from Bhudevi, the earth-goddess, and she received it from Vishnu when, in the form of the boar Varaha, I pulled her from the sea. I created that astra; only I could stop it.\"\r\n\r\n~ 152.", "start_char_idx": 95536, "end_char_idx": 97182, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "283a69e0-0505-4ad0-a408-8fdd7b248630": {"__data__": {"id_": "283a69e0-0505-4ad0-a408-8fdd7b248630", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "1858391f02d0dd2865ca9ef11fcc70d30c52e22624635905dfedb5cddd7ec792", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046", "node_type": "1", "metadata": {}, "hash": "85e852189355ff87efcc57016d9d6811b056b3af118b02bdacecb2b588c057a1", "class_name": "RelatedNodeInfo"}}, "text": "~ 151. King Bhagadatta Attacks Arjuna ~\r\nWhen Arjuna saw Bhima attacked by King Bhagadatta's elephant army, he ordered Krishna to drive his chariot into the fray. \r\nAs soon as Bhagadatta saw them coming, he unleashed a terrible weapon: a Vishnu-astra. Before Arjuna could shoot an arrow in defense, Krishna leaped up and the Vishnu-astra struck him in the chest.\r\nIt turned into a garland of flowers.\r\nKrishna then explained. \"Bhagadatta received that astra from Bhudevi, the earth-goddess, and she received it from Vishnu when, in the form of the boar Varaha, I pulled her from the sea. I created that astra; only I could stop it.\"\r\n\r\n~ 152. The Rakshasas Attack ~\r\nBhima's son Ghatotkacha led his rakshasas in an assault on the Kauravas. Using their powers of illusion and supernatural weapons, the terrifying rakshasas routed the Kauravas.\r\n\"Save us, Karna!\" Drona shouted. \"Use the Shakti-spear to kill Ghatotkacha.\"\r\n\"But I can use that spear only once,\" Karna protested; he had planned to use it against Arjuna.\r\n\"Use it now!\" Drona ordered.\r\nSo Karna launched his celestial spear at Ghatotkacha. Fatally wounded, Ghatotkacha rose in the air, expanded in size, and then hurtled down to the ground, crushing thousands of Kaurava soldiers as he fell.\r\nThus died Ghatotkacha, Bhima's devoted rakshasa son.\r\n\r\n~ 153. The Pandavas Plan Drona's Death ~\r\n\"We must stop Drona,\" Krishna advised the Pandavas. \"We'll tell him that his son Ashwatthama is dead. He'll lose the will to fight, and then we will kill him.\"\r\n\"But who will do these terrible things?\" Yudhishthira groaned. \"Who will lie to Drona, and who will kill him?\"", "start_char_idx": 96540, "end_char_idx": 98165, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046": {"__data__": {"id_": "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "283a69e0-0505-4ad0-a408-8fdd7b248630", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "761ed96c27567209cfbc75d214d87428cf5cf613b2ba60c8b409e3eb97f13999", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0e54bae5-ac11-4559-a33e-b44322f831cf", "node_type": "1", "metadata": {}, "hash": "c4a57e4451bcc373cbdb7a8149d8fa77c9bd7e51e462f9dbb4749f4a91ea5121", "class_name": "RelatedNodeInfo"}}, "text": "\"Use it now!\" Drona ordered.\r\nSo Karna launched his celestial spear at Ghatotkacha. Fatally wounded, Ghatotkacha rose in the air, expanded in size, and then hurtled down to the ground, crushing thousands of Kaurava soldiers as he fell.\r\nThus died Ghatotkacha, Bhima's devoted rakshasa son.\r\n\r\n~ 153. The Pandavas Plan Drona's Death ~\r\n\"We must stop Drona,\" Krishna advised the Pandavas. \"We'll tell him that his son Ashwatthama is dead. He'll lose the will to fight, and then we will kill him.\"\r\n\"But who will do these terrible things?\" Yudhishthira groaned. \"Who will lie to Drona, and who will kill him?\"\r\n\"You always tell the truth, Yudhishthira,\" answered Arjuna, \"so you must be the one to tell Drona about Ashwatthama, and Dhrishtadyumna will kill him.\" \r\nArjuna wept as he contemplated Drona's death. \r\nBhima, meanwhile, grabbed his mace and felled an elephant. \"That elephant was named Ashwatthama,\" he declared. \"It's true: Ashwatthama is dead.\"\r\n\r\n~ 154. Drona Hears Word of Ashwatthama's Death ~\r\nBhima shouted, \"Listen to me, Drona: I have killed Ashwatthama!\" \r\nDrona could not believe what Bhima was saying. \"Yudhishthira!\" Drona shouted. \"You have never told a lie. Tell me truly: is Ashwatthama really dead?\"\r\n\"Ashwatthama is dead!\" Yudhishthira shouted, loud enough for Drona to hear him. And then he whispered, \"Ashwatthama the elephant.\"\r\nDrona, casting aside his weapons and armor, sank down in a trance of despair.\r\nDrupada's son Dhrishtadyumna then raced towards Drona and cut off his head with his sword, fulfilling the purpose for which he had been born.", "start_char_idx": 97559, "end_char_idx": 99137, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0e54bae5-ac11-4559-a33e-b44322f831cf": {"__data__": {"id_": "0e54bae5-ac11-4559-a33e-b44322f831cf", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "89dc954875c7e9b3bfa141d77d5a9dc722c69ed6c46707c2abb1ad8ad1e97bba", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9bc60d7e-bc1b-4217-ad63-2dc3da936675", "node_type": "1", "metadata": {}, "hash": "a36f220f2a4781a82205afcb574f26727dce976f23ac59453f361c5c134a188b", "class_name": "RelatedNodeInfo"}}, "text": "~ 154. Drona Hears Word of Ashwatthama's Death ~\r\nBhima shouted, \"Listen to me, Drona: I have killed Ashwatthama!\" \r\nDrona could not believe what Bhima was saying. \"Yudhishthira!\" Drona shouted. \"You have never told a lie. Tell me truly: is Ashwatthama really dead?\"\r\n\"Ashwatthama is dead!\" Yudhishthira shouted, loud enough for Drona to hear him. And then he whispered, \"Ashwatthama the elephant.\"\r\nDrona, casting aside his weapons and armor, sank down in a trance of despair.\r\nDrupada's son Dhrishtadyumna then raced towards Drona and cut off his head with his sword, fulfilling the purpose for which he had been born.\r\nAshwatthama, however, was very much alive and vowed revenge.\r\n\r\n~ 155. Ashwatthama Launches the Narayana-Astra ~\r\nWhen Ashwatthama learned his father was dead, he unleashed the Narayana-astra, which spewed deadly fire across the sky.\r\n\"It will kill us all!\" shouted Yudhishthira.\r\n\"Don't be afraid,\" said Krishna. \"Bow down to this weapon, and it will spare you. Do not fight; be at peace.\"\r\nBhima, however, did not listen; instead, he ran towards Ashwatthama, brandishing his mace. The astra's fire then focused on Bhima, but Krishna and Arjuna intervened, throwing Bhima to the ground and wrenching the mace from his hand.\r\n\"This astra won't attack an unarmed man,\" Krishna explained, and as he spoke, the astra's fire subsided.\r\n\r\n~ 156. Ashwatthama Makes a Vow ~\r\nWhen Duryodhana saw that Ashwatthama's Narayana-astra had failed, he shouted, \"Launch another! When they see the astra attack them a second time, they will take up their weapons and its fire will consume them.\"\r\n\"I cannot,\" said Ashwatthama sadly. \"The Narayana-astra can be used only once.", "start_char_idx": 98517, "end_char_idx": 100197, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9bc60d7e-bc1b-4217-ad63-2dc3da936675": {"__data__": {"id_": "9bc60d7e-bc1b-4217-ad63-2dc3da936675", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0e54bae5-ac11-4559-a33e-b44322f831cf", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "4d7f1c28bc6c5cbfa2d0e0c1b5c865ac8dd58bb7f1208c552634d05d6b431c63", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "90cca82e-664f-445b-bd5f-04c51061ca74", "node_type": "1", "metadata": {}, "hash": "e9c6b4e85b0a2995bd92832535275d29d28d51cf96979a8b0484ae7d648d2298", "class_name": "RelatedNodeInfo"}}, "text": "Do not fight; be at peace.\"\r\nBhima, however, did not listen; instead, he ran towards Ashwatthama, brandishing his mace. The astra's fire then focused on Bhima, but Krishna and Arjuna intervened, throwing Bhima to the ground and wrenching the mace from his hand.\r\n\"This astra won't attack an unarmed man,\" Krishna explained, and as he spoke, the astra's fire subsided.\r\n\r\n~ 156. Ashwatthama Makes a Vow ~\r\nWhen Duryodhana saw that Ashwatthama's Narayana-astra had failed, he shouted, \"Launch another! When they see the astra attack them a second time, they will take up their weapons and its fire will consume them.\"\r\n\"I cannot,\" said Ashwatthama sadly. \"The Narayana-astra can be used only once. If I launch it again, the astra will turn back and attack us instead.\"\r\n\"But you must avenge your father's death!\" said Duryodhana.\r\nAshwatthama nodded. \"The Pandavas will pay,\" he vowed, his voice shaking with anger. \"Before this war is over, I will make them pay in blood for taking my father from me.\"\r\n\r\n~ 157. Bhima Finds Dushasana ~\r\nBhima found Dushasana at last. \"Do you remember my vow, cousin?\" Bhima shouted, brandishing his sword.\r\nDushasana did remember Bhima's vow and fled in terror, but Bhima grabbed him and pulled him to the ground. \r\n\"Is this the hand that held Draupadi by the hair? The hand that pulled off her sari?\" Bhima shouted, as he tore Dushasana's arm off and threw it across the battlefield, where it struck Duryodhana in the face.\r\nThen Bhima bent down and drank Dushasana's blood, fulfilling his vow.\r\nNext, he summoned Draupadi, who washed her hair in Dushasana's blood, just as she had vowed.\r\n\r\n~ 158. Karna Duels with Arjuna ~\r\nThe time had finally come: Karna and Arjuna were going to fight.", "start_char_idx": 99502, "end_char_idx": 101226, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "90cca82e-664f-445b-bd5f-04c51061ca74": {"__data__": {"id_": "90cca82e-664f-445b-bd5f-04c51061ca74", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9bc60d7e-bc1b-4217-ad63-2dc3da936675", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "8d3ad1fd09b6dbae70cb74bf58e310ef6cba1a1afe96016e422b76938752b259", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fc5915cc-ba5a-408a-a36a-ee6ea2d663de", "node_type": "1", "metadata": {}, "hash": "29d861fc09e4e37939b880d7c8df9cc76fc6905e13cb9575ac95fd0d15a27049", "class_name": "RelatedNodeInfo"}}, "text": "\"Do you remember my vow, cousin?\" Bhima shouted, brandishing his sword.\r\nDushasana did remember Bhima's vow and fled in terror, but Bhima grabbed him and pulled him to the ground. \r\n\"Is this the hand that held Draupadi by the hair? The hand that pulled off her sari?\" Bhima shouted, as he tore Dushasana's arm off and threw it across the battlefield, where it struck Duryodhana in the face.\r\nThen Bhima bent down and drank Dushasana's blood, fulfilling his vow.\r\nNext, he summoned Draupadi, who washed her hair in Dushasana's blood, just as she had vowed.\r\n\r\n~ 158. Karna Duels with Arjuna ~\r\nThe time had finally come: Karna and Arjuna were going to fight.\r\nKarna had long waited for this moment, and so had the naga Ashwasena. When Khandava forest burned, Arjuna killed all the nagas fleeing the fire. Ashwasena alone survived, and he now turned himself into a serpent-arrow inside Karna's quiver, ready to kill Arjuna.\r\nBut when Karna fired at Arjuna's head, Krishna lowered Arjuna's chariot. The serpent-arrow knocked off Arjuna's crown; it did not hit him.\r\nWhen Ashwasena begged Karna to try again, Karna refused. \"I cannot use the same arrow twice. I must kill Arjuna some other way!\"\r\n\r\n~ 159. The Duel Continues ~\r\nAs Karna battled with Arjuna, Shalya, Karna's charioteer, said, \"I see you're feeling anxious, understandably. Arjuna is a great warrior.\"\r\n\"You are my charioteer!\" Karna shouted angrily. \"Not Arjuna's!\" \r\nBut Shalya failed to offer Karna any encouragement.\r\nThe duel went on and on as Arjuna and Karna fired arrows at one another, wheeling their chariots around to face each other again and again. \r\nThen Karna's chariot got stuck in the mud. \"Get out and free the wheel!\" Karna told Shalya.", "start_char_idx": 100569, "end_char_idx": 102285, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fc5915cc-ba5a-408a-a36a-ee6ea2d663de": {"__data__": {"id_": "fc5915cc-ba5a-408a-a36a-ee6ea2d663de", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "90cca82e-664f-445b-bd5f-04c51061ca74", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "0b3de5cbf70f3a39fc9d20f53d746cd1ac93a604d920630fa5943207b51f81a8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7", "node_type": "1", "metadata": {}, "hash": "4500d82ffde2c508e163ef18ad07bd17aaf2a8e4626d10d5ff5be7d9a55dde04", "class_name": "RelatedNodeInfo"}}, "text": "When Ashwasena begged Karna to try again, Karna refused. \"I cannot use the same arrow twice. I must kill Arjuna some other way!\"\r\n\r\n~ 159. The Duel Continues ~\r\nAs Karna battled with Arjuna, Shalya, Karna's charioteer, said, \"I see you're feeling anxious, understandably. Arjuna is a great warrior.\"\r\n\"You are my charioteer!\" Karna shouted angrily. \"Not Arjuna's!\" \r\nBut Shalya failed to offer Karna any encouragement.\r\nThe duel went on and on as Arjuna and Karna fired arrows at one another, wheeling their chariots around to face each other again and again. \r\nThen Karna's chariot got stuck in the mud. \"Get out and free the wheel!\" Karna told Shalya.\r\nBut Shalya refused. \"That's no task for a king like me.\"\r\nSo Karna leaped down to free the wheel himself.\r\n\r\n~ 160. Karna Forgets the Mantra ~\r\nAs Karna worked to free his chariot wheel, he shouted, \"Arjuna! Krishna! You are honor-bound to let me fix my chariot.\"\r\n\"What kind of honor was it to humiliate Draupadi?\" replied Krishna. \"What honor was there in butchering Abhimanyu?\"\r\nKarna said nothing, still struggling to free the wheel. \r\nHearing Arjuna's chariot draw nearer, he decided to launch the Brahmastra. But suddenly he could not remember the mantra.\r\nIt was all just as Parashurama had foretold.\r\n\"Kill him!\" Krishna shouted.\r\nArjuna hesitated, seeing Karna standing defenseless in the mud, but he obeyed Krishna's command.\r\nArjuna's arrow struck Karna and killed him.\r\n\r\n~ 161. Krishna Tests Karna's Generosity ~\r\nAs Karna lay dying in the mud, Krishna decided to test his famed generosity. Disguising himself as an old brahmin, Krishna knelt beside Karna and said, \"Before you die, please give me a gift, I beg you.\"", "start_char_idx": 101632, "end_char_idx": 103317, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7": {"__data__": {"id_": "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "fc5915cc-ba5a-408a-a36a-ee6ea2d663de", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "6d178720146e6fbc27b9d61f84d4bd60554da8eddf54c49dbfa058461cbc1213", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5cf82a63-947d-4b5a-817e-482767927e49", "node_type": "1", "metadata": {}, "hash": "cb86a46477f50b542ec3e4c3f076d28b7babab9b57d2a3b812290944f654fcf4", "class_name": "RelatedNodeInfo"}}, "text": "replied Krishna. \"What honor was there in butchering Abhimanyu?\"\r\nKarna said nothing, still struggling to free the wheel. \r\nHearing Arjuna's chariot draw nearer, he decided to launch the Brahmastra. But suddenly he could not remember the mantra.\r\nIt was all just as Parashurama had foretold.\r\n\"Kill him!\" Krishna shouted.\r\nArjuna hesitated, seeing Karna standing defenseless in the mud, but he obeyed Krishna's command.\r\nArjuna's arrow struck Karna and killed him.\r\n\r\n~ 161. Krishna Tests Karna's Generosity ~\r\nAs Karna lay dying in the mud, Krishna decided to test his famed generosity. Disguising himself as an old brahmin, Krishna knelt beside Karna and said, \"Before you die, please give me a gift, I beg you.\"\r\nKarna didn't know what he could give, but then he remembered: his two gold teeth. He pulled out the teeth and offered them to the brahmin.\r\n\"You are indeed the most generous man of this age,\" the brahmin said, and then Krishna manifested his divine form.\r\n\"Thank you, Lord,\" said Karna as he closed his eyes. \r\nThat was the last sight Karna saw.\r\n\r\n~ 162. Yudhishthira Confronts Shalya ~\r\nAfter Karna's death, Duryodhana appointed King Shalya as supreme commander.\r\n\"Only you can kill Shalya,\" Krishna told Yudhishthira. \"Inside him is a demon that feeds on aggression, which means the only way to defeat him is to confront him with love and respect. You alone are capable of this.\"\r\nSo Yudhishthira confronted Shalya on the battlefield with love in his heart, not hatred or anger, thus rendering Shalya's demon powerless. Doing his duty, Yudhishthira then killed Shalya with a single spear-thrust. \"Forgive me,\" he said, weeping, for Shalya was the brother of Madri, uncle to his brothers Nakula and Sahadeva.\r\n\r\n~ 163.", "start_char_idx": 102603, "end_char_idx": 104339, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5cf82a63-947d-4b5a-817e-482767927e49": {"__data__": {"id_": "5cf82a63-947d-4b5a-817e-482767927e49", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "6ba81a32bd70edfbd9f3ba48830e87ba0bd91753a768f06d85371f51ce21f38c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c3564b7f-c9b5-4152-9176-c5e4f64076cf", "node_type": "1", "metadata": {}, "hash": "500a7e8d3162d23f0bcdbbbcba078531efb6e74f64e3f3d0d413ab1a0e185205", "class_name": "RelatedNodeInfo"}}, "text": "That was the last sight Karna saw.\r\n\r\n~ 162. Yudhishthira Confronts Shalya ~\r\nAfter Karna's death, Duryodhana appointed King Shalya as supreme commander.\r\n\"Only you can kill Shalya,\" Krishna told Yudhishthira. \"Inside him is a demon that feeds on aggression, which means the only way to defeat him is to confront him with love and respect. You alone are capable of this.\"\r\nSo Yudhishthira confronted Shalya on the battlefield with love in his heart, not hatred or anger, thus rendering Shalya's demon powerless. Doing his duty, Yudhishthira then killed Shalya with a single spear-thrust. \"Forgive me,\" he said, weeping, for Shalya was the brother of Madri, uncle to his brothers Nakula and Sahadeva.\r\n\r\n~ 163. Duryodhana Despairs ~\r\n\"Shalya is dead!\" Ashwatthama told Duryodhana. \"Yudhishthira killed him. Let me be your commander now. I can still destroy the Pandavas!\"\r\n\"But there is no army left to command,\" groaned Duryodhana.\r\nMeanwhile, Sahadeva and Nakula were battling the last of the Gandharan soldiers. Sahadeva had killed Uluka, Shakuni's son, and Shakuni then attacked Sahadeva, shattering Sahadeva's chariot. Sahadeva leaped to the ground, grabbed an axe, and smashed it into Shakuni's skull as he shouted, \"Draupadi is avenged at last!\"\r\nWhen Duryodhana learned that his uncle Shakuni was dead, he ran away in despair. \r\nHe could see the war was lost.\r\n\r\n**CHAPTER 9: THE WAR'S AFTERMATH**\r\n\r\n~ 164. Duryodhana Hides in the Lake ~\r\nOf Gandhari's hundred sons, only Duryodhana was left. He used a mantra to disappear under the waters of a lake, but Yudhishthira detected him.\r\n\"You can't hide, Duryodhana!\" he shouted.", "start_char_idx": 103630, "end_char_idx": 105262, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c3564b7f-c9b5-4152-9176-c5e4f64076cf": {"__data__": {"id_": "c3564b7f-c9b5-4152-9176-c5e4f64076cf", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5cf82a63-947d-4b5a-817e-482767927e49", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "ea423b9982c68fe6d59a646e8f87e688e607df7c353e254c7e1336f6ad990fb9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0fbaad3b-553c-4cde-bc8f-51c1001280dd", "node_type": "1", "metadata": {}, "hash": "ea52159f4f0c99e6e82f4b90ce0571d436b49bcd9d4e1388ff0ad3abd8e62608", "class_name": "RelatedNodeInfo"}}, "text": "Sahadeva had killed Uluka, Shakuni's son, and Shakuni then attacked Sahadeva, shattering Sahadeva's chariot. Sahadeva leaped to the ground, grabbed an axe, and smashed it into Shakuni's skull as he shouted, \"Draupadi is avenged at last!\"\r\nWhen Duryodhana learned that his uncle Shakuni was dead, he ran away in despair. \r\nHe could see the war was lost.\r\n\r\n**CHAPTER 9: THE WAR'S AFTERMATH**\r\n\r\n~ 164. Duryodhana Hides in the Lake ~\r\nOf Gandhari's hundred sons, only Duryodhana was left. He used a mantra to disappear under the waters of a lake, but Yudhishthira detected him.\r\n\"You can't hide, Duryodhana!\" he shouted.\r\n\"I'm not hiding,\" Duryodhana replied. \"I'm cooling my inner fire. The world is yours now: take it all, everything! You have won!\"\r\n\"Very generous!\" replied Yudhishthira. \"But earlier, you would not give us our half of the kingdom, nor five villages, nor even a needlepoint of land.\"\r\nDuryodhana emerged from the water, wielding his mace. \"I'm still here, and I will fight you all,\" he shouted angrily, \"one by one.\"\r\n\r\n~ 165. Duryodhana Duels with Bhima ~\r\n\"Did you fight Abhimanyu one by one?\" Yudhishthira said to Duryodhana. \"No, you attacked like a pack of wolves. But we respect dharma. We agree to single combat. If you die, you'll have heaven; if you live, you'll have your kingdom.\"\r\nDuryodhana challenged Bhima first, and they fought. As he had vowed, Bhima smashed Duryodhana's thigh and then danced in joy around his fallen victim.\r\n\"Enough!\" said Yudhishthira. \"He's still our cousin, and a prince.\"\r\n\"But he'll die soon,\" said Krishna. \"It's time to go.\"\r\n\"I shall attain heaven,\" groaned Duryodhana.", "start_char_idx": 104644, "end_char_idx": 106277, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0fbaad3b-553c-4cde-bc8f-51c1001280dd": {"__data__": {"id_": "0fbaad3b-553c-4cde-bc8f-51c1001280dd", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c3564b7f-c9b5-4152-9176-c5e4f64076cf", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5d1613cefd258a2476671277d9bbbf376145b5e91ce17e2fa2e4659600c1311d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "065a0519-9216-4d9d-ac5c-74e8811f5f4c", "node_type": "1", "metadata": {}, "hash": "6a6e558db2309a19dcc7d6dcc1b95610f86df8fe281e8394df511f9e98955684", "class_name": "RelatedNodeInfo"}}, "text": "\"I'm still here, and I will fight you all,\" he shouted angrily, \"one by one.\"\r\n\r\n~ 165. Duryodhana Duels with Bhima ~\r\n\"Did you fight Abhimanyu one by one?\" Yudhishthira said to Duryodhana. \"No, you attacked like a pack of wolves. But we respect dharma. We agree to single combat. If you die, you'll have heaven; if you live, you'll have your kingdom.\"\r\nDuryodhana challenged Bhima first, and they fought. As he had vowed, Bhima smashed Duryodhana's thigh and then danced in joy around his fallen victim.\r\n\"Enough!\" said Yudhishthira. \"He's still our cousin, and a prince.\"\r\n\"But he'll die soon,\" said Krishna. \"It's time to go.\"\r\n\"I shall attain heaven,\" groaned Duryodhana. \"Take the earth, if that is what you want.\"\r\n\r\n~ 166. Duryodhana Summons Balarama ~\r\nBalarama had refused to choose a side in the war. He had taught Duryodhana and Bhima the art of mace-fighting, and he loved them both. So when Bhima shattered Duryodhana's thigh with his mace, Duryodhana cried out, \"That's against all the rules! Balarama, my guru, see what Bhima has done to me! To me, who was always your favorite!\"\r\nInstantly, Balarama appeared and lifted up his plow to kill Bhima, but Krishna intervened. \"Stop, my brother!\" he said. \"Bhima has only fulfilled the vow he took when Duryodhana taunted Draupadi by slapping his thigh. All is as it must be.\"\r\n\r\n~ 167. Duryodhana Addresses His Son ~\r\nAs Duryodhana lay dying on the battlefield, they brought his young son, Durjaya, to see him. The little boy ran to his father and went to sit on his lap, but his father had to push him away.\r\n\"The Pandavas have broken my thigh,\" he said to Durjaya.", "start_char_idx": 105602, "end_char_idx": 107229, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "065a0519-9216-4d9d-ac5c-74e8811f5f4c": {"__data__": {"id_": "065a0519-9216-4d9d-ac5c-74e8811f5f4c", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0fbaad3b-553c-4cde-bc8f-51c1001280dd", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5a65e100fb55b40e3c1a86d7d51966f42bae7a20f181ae320ee43f8d338013d1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a78b0967-45af-4804-a706-7989c942dae7", "node_type": "1", "metadata": {}, "hash": "f2589126ee0ddc3056b190478c3cd44c2e5157dd6ed7d849ddbb5e40c8c0c36e", "class_name": "RelatedNodeInfo"}}, "text": "Balarama, my guru, see what Bhima has done to me! To me, who was always your favorite!\"\r\nInstantly, Balarama appeared and lifted up his plow to kill Bhima, but Krishna intervened. \"Stop, my brother!\" he said. \"Bhima has only fulfilled the vow he took when Duryodhana taunted Draupadi by slapping his thigh. All is as it must be.\"\r\n\r\n~ 167. Duryodhana Addresses His Son ~\r\nAs Duryodhana lay dying on the battlefield, they brought his young son, Durjaya, to see him. The little boy ran to his father and went to sit on his lap, but his father had to push him away.\r\n\"The Pandavas have broken my thigh,\" he said to Durjaya. He then caressed the boy's hair and said, \"They are the victors, my son, my Durjaya. You must serve them now, the Pandavas; they are your uncles. I commend you to their protection because I am leaving soon. Very soon.\"\r\nAnd Duryodhana wept as he thought of all he would leave behind.\r\n\r\n~ 168. Draupadi Greets the Victorious Pandavas ~\r\nThe war had lasted eighteen days when the Pandavas declared victory over the Kauravas. Draupadi greeted her husbands as they returned from the battlefield, draping them with garlands of triumph: Yudhishthira, Bhima, Arjuna, Nakula, Sahadeva.\r\n\"Come, Krishna!\" Draupadi said, turning to Krishna who was still standing on Arjuna's chariot. \"I made a garland for you too!\"\r\nKrishna smiled; then, as he dismounted, the chariot burst into flames.\r\n\"Drona had actually destroyed the chariot days ago with a fire-missile,\" he explained. \r\nThus the Pandavas realized that their victory was all thanks to Krishna: his power had saved them again and again.\r\n\r\n~ 169. Barbarika Settles an Argument ~\r\nAfter the war was over, soldiers in the Pandava camp began arguing about who had won the most glory.", "start_char_idx": 106609, "end_char_idx": 108357, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a78b0967-45af-4804-a706-7989c942dae7": {"__data__": {"id_": "a78b0967-45af-4804-a706-7989c942dae7", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "065a0519-9216-4d9d-ac5c-74e8811f5f4c", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "7de2e5a3649cfd3254bcf010e7f95d85f3895bc7814486ed69772a2c23b1c95e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "30900bf0-7814-4adf-bdf7-adf52c018283", "node_type": "1", "metadata": {}, "hash": "bc843a673ff2206546cc3b87e16f0397684dd7a2c7b92998b5ab5f8cd72e88dd", "class_name": "RelatedNodeInfo"}}, "text": "Draupadi greeted her husbands as they returned from the battlefield, draping them with garlands of triumph: Yudhishthira, Bhima, Arjuna, Nakula, Sahadeva.\r\n\"Come, Krishna!\" Draupadi said, turning to Krishna who was still standing on Arjuna's chariot. \"I made a garland for you too!\"\r\nKrishna smiled; then, as he dismounted, the chariot burst into flames.\r\n\"Drona had actually destroyed the chariot days ago with a fire-missile,\" he explained. \r\nThus the Pandavas realized that their victory was all thanks to Krishna: his power had saved them again and again.\r\n\r\n~ 169. Barbarika Settles an Argument ~\r\nAfter the war was over, soldiers in the Pandava camp began arguing about who had won the most glory. \"Arjuna!\" said some. \"No, Bhima!\" said others. Finally, as the argument grew more heated, Krishna said, \"Let's ask the head.\"\r\nHe meant the head of Barbarika, who had watched the whole war.\r\nThey gathered around the head, repeating the claims for the various warriors.\r\n\"Arjuna? Bhima?\" said the head in surprise. \"I saw no warrior but Krishna. Everywhere his Sudarshana-Chakra flew through the air, cutting the unrighteous to pieces, and their blood spilled upon the earth like the tongue of Kali.\"\r\n\r\n~ 170. Ashwatthama Makes a Final Vow ~\r\nOver a billion soldiers died in the war. \r\nOn the Pandava side, a few thousand survived.\r\nOn the Kaurava side, there were three survivors: Drona's son, Ashwatthama; Ashwatthama's uncle, Kripa; and Kritavarma, a Yadava commander, plus Duryodhana, who lay dying beside the lake where the Pandavas had left him. \r\nThe three survivors knelt beside Duryodhana, and they listened to the sounds of rejoicing in the Pandava camp.\r\nAshwatthama still refused to admit defeat. \"I will kill the Pandavas yet!\" he vowed.", "start_char_idx": 107654, "end_char_idx": 109408, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "30900bf0-7814-4adf-bdf7-adf52c018283": {"__data__": {"id_": "30900bf0-7814-4adf-bdf7-adf52c018283", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a78b0967-45af-4804-a706-7989c942dae7", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "fc11d8a7f2c0d6566e25ec63e8fab561a69cb48e63ef942e31548dbcb2509d55", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7cbc4388-d621-4238-98da-22913b684ab8", "node_type": "1", "metadata": {}, "hash": "6190a90a26b5b1f58d8a50fecba7e6b095f5a35e03a72c03e0a45967680dc987", "class_name": "RelatedNodeInfo"}}, "text": "\"I saw no warrior but Krishna. Everywhere his Sudarshana-Chakra flew through the air, cutting the unrighteous to pieces, and their blood spilled upon the earth like the tongue of Kali.\"\r\n\r\n~ 170. Ashwatthama Makes a Final Vow ~\r\nOver a billion soldiers died in the war. \r\nOn the Pandava side, a few thousand survived.\r\nOn the Kaurava side, there were three survivors: Drona's son, Ashwatthama; Ashwatthama's uncle, Kripa; and Kritavarma, a Yadava commander, plus Duryodhana, who lay dying beside the lake where the Pandavas had left him. \r\nThe three survivors knelt beside Duryodhana, and they listened to the sounds of rejoicing in the Pandava camp.\r\nAshwatthama still refused to admit defeat. \"I will kill the Pandavas yet!\" he vowed.\r\nDuryodhana nodded, unable to resist the force of Ashwatthama's rage. \"Do it,\" he said. \"Kill them if you can.\"\r\n\r\n~ 171. The Kauravas Raid the Camp by Night ~\r\n\"We are only three,\" said Kripa.\r\n\"What can we do?\" asked Kritavarma.\r\nThen they saw a single owl kill a flock of crows sleeping in a tree.\r\n\"We can do that!\" said Ashwatthama. \"We'll sneak in and kill them as they sleep.\"\r\nAshwatthama found Draupadi's brothers, Shikhandin and Dhrishtadyumna, and killed them both. \"That is for Bhishma,\" he whispered, \"and for my father!\"\r\nNext, Ashwatthama beheaded five warriors sleeping together, thinking they were the Pandavas, and put their heads into a sack. Finally, he set fire to the camp, while Kripa and Kritavarma shot down soldiers who fled the fire. \r\n\r\n~ 172. Ashwatthama Returns to Duryodhana ~\r\nAshwatthama returned to Duryodhana, proudly carrying the bag of five heads.\r\n\"I killed the Pandavas!\" he said.\r\n\"Show me,\" Duryodhana said in disbelief.", "start_char_idx": 108672, "end_char_idx": 110370, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7cbc4388-d621-4238-98da-22913b684ab8": {"__data__": {"id_": "7cbc4388-d621-4238-98da-22913b684ab8", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "30900bf0-7814-4adf-bdf7-adf52c018283", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e83b1fdb7d259a2048a2eec79491d778a3b9d6799c434be7b72f678241042ff6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b36e4b7d-f46c-4934-810f-2b4d9c71aff0", "node_type": "1", "metadata": {}, "hash": "64a6bc62928d4df5629f5b3d912b68b96feed0ef3c4d76c08db9747748f10d4e", "class_name": "RelatedNodeInfo"}}, "text": "\"We can do that!\" said Ashwatthama. \"We'll sneak in and kill them as they sleep.\"\r\nAshwatthama found Draupadi's brothers, Shikhandin and Dhrishtadyumna, and killed them both. \"That is for Bhishma,\" he whispered, \"and for my father!\"\r\nNext, Ashwatthama beheaded five warriors sleeping together, thinking they were the Pandavas, and put their heads into a sack. Finally, he set fire to the camp, while Kripa and Kritavarma shot down soldiers who fled the fire. \r\n\r\n~ 172. Ashwatthama Returns to Duryodhana ~\r\nAshwatthama returned to Duryodhana, proudly carrying the bag of five heads.\r\n\"I killed the Pandavas!\" he said.\r\n\"Show me,\" Duryodhana said in disbelief. \"Give me Bhima's head.\"\r\nAshwatthama gave him a head, and Duryodhana took it and crushed it between his fingers.\r\n\"No!\" said Duryodhana. \"This is not Bhima; I would not be able to crush his head so easily. Who have you killed?\"\r\nThen Ashwatthama realized: he had killed the five sons of Draupadi. These were not the Pandavas. \r\n\"I have lost the war,\" Duryodhana sighed, \"but the Pandavas... they too lost everything.\"\r\nAnd with those words, he died.\r\n\r\n~ 173.", "start_char_idx": 109711, "end_char_idx": 110830, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b36e4b7d-f46c-4934-810f-2b4d9c71aff0": {"__data__": {"id_": "b36e4b7d-f46c-4934-810f-2b4d9c71aff0", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7cbc4388-d621-4238-98da-22913b684ab8", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "2a9a3af77f76b629a71e18400d0085cb8c21f99417658dc11b9333c7f13ff401", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "32054d58-0f2d-4904-9802-5ba83f0494f7", "node_type": "1", "metadata": {}, "hash": "09b275fb18766a087c2f66550b9796276a888dea6d035e7ea98575ac73f51973", "class_name": "RelatedNodeInfo"}}, "text": "~ 172. Ashwatthama Returns to Duryodhana ~\r\nAshwatthama returned to Duryodhana, proudly carrying the bag of five heads.\r\n\"I killed the Pandavas!\" he said.\r\n\"Show me,\" Duryodhana said in disbelief. \"Give me Bhima's head.\"\r\nAshwatthama gave him a head, and Duryodhana took it and crushed it between his fingers.\r\n\"No!\" said Duryodhana. \"This is not Bhima; I would not be able to crush his head so easily. Who have you killed?\"\r\nThen Ashwatthama realized: he had killed the five sons of Draupadi. These were not the Pandavas. \r\n\"I have lost the war,\" Duryodhana sighed, \"but the Pandavas... they too lost everything.\"\r\nAnd with those words, he died.\r\n\r\n~ 173. The One Hundred Kauravas ~\r\nDuryodhana, Dushasana, Duhsaha, Duhsala, Jalasandha, Sama, Saha, Vinda, Anuvinda, Durdharsha, Suvahu, Dushpradharshana, Durmarshana, Durmukha, Dushkarna, Vivinsati, Vikarna, Sala, Satva, Sulochana, Chitra, Upachitra, Chitraksha, Charuchitra, Sarasana, Durmada, Durvigaha, Vivitsu, Vikatanana, Urnanabha, Sunabha, Nandaka, Upanandaka, Chitravana, Chitravarman, Suvarman, Durvimochana, Ayovahu, Mahavahu, Chitranga, Chitrakundala, Bhimavega, Bhimavala, Balaki, Balavardhana, Ugrayudha, Bhima, Karna, Kanakaya, Dridhayudha, Dridhavarman, Dridhakshatra, Somakitri, Anudara, Dridhasandha, Jarasandha, Satyasandha, Sada, Suvak, Ugrasravas, Ugrasena, Senani, Dushparajaya, Aparajita, Kundasayin, Visalaksha, Duradhara, Dridhahasta, Suhasta, Vatavega, Suvarchas, Adityaketu, Vahvashin, Nagadatta, Agrayayin, Kavachin, Krathana, Kunda, Kundadhara, Dhanurdhara, Ugra, Bhimaratha, Viravahu, Alolupa, Abhaya, Raudrakarman, Dridharatha, Anadhrishya, Kundabhedin, Viravi, Dhirghalochana, Pramatha, Pramathi, Dhirgharoma, Dirghavahu, Mahabahu, Vyudhoru, Kanakadhvaja, Kundasi, Virajas.", "start_char_idx": 110174, "end_char_idx": 111929, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "32054d58-0f2d-4904-9802-5ba83f0494f7": {"__data__": {"id_": "32054d58-0f2d-4904-9802-5ba83f0494f7", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b36e4b7d-f46c-4934-810f-2b4d9c71aff0", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "0e128e6c8aab4a301d2ce57c75936f24d6ae245e000bbebd5c0f5ccc6ef19b25", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7943ca32-20c1-4d02-8565-47383c9d26d1", "node_type": "1", "metadata": {}, "hash": "acada19ad5d8f08c3432e81ab8b46426773e216fd716c4edf36354232131239c", "class_name": "RelatedNodeInfo"}}, "text": "~ 174. Krishna Curses Ashwatthama ~\r\nOnly seven warriors survived Ashwatthama's raid on the camp: the five Pandavas themselves, plus two Yadavas, Krishna and Satyaki. \r\nDraupadi wailed over the bodies of her sons, beheaded in the night. Her brother Dhrishtadyumna's charioteer had seen it all. \"Ashwatthama did this,\" he said. \"He beheaded the boys.\"\r\n\"I want Ashwatthama's head as vengeance!\" Draupadi moaned.\r\n\"No,\" said Krishna. \"The killing is over. Capture him alive, and we will subject him to a punishment worse than death. I curse Ashwatthama to live forever, driven from civilization and shunned by all humanity.\"\r\nThus Ashwatthama became one of the Chiranjivi, the immortals.\r\n\r\n~ 175. Kunti Searches the Battlefield ~\r\nThe Pandavas then saw their mother Kunti walking slowly across the battlefield, bending down to look at the faces of the fallen Kaurava soldiers. \"Mother!\" they shouted. \"What are you doing? Those are the Kauravas.\"\r\n\"I am looking for your brother,\" she said.\r\nThey stared at her in confusion. \r\n\"I am looking for Karna, my first-born son.\"\r\nAt her words, Arjuna felt faint. \"You mean I killed my own brother?\" he gasped.\r\n\"And did Karna know this?\" Yudhishthira asked.\r\n\"Yes,\" said Kunti sadly. \"He knew, and he promised I would see five sons survive the war. He kept his promise.\"\r\n\r\n~ 176. The Pandavas Honor Karna ~\r\nThe Pandavas were stunned when Kunti told them the story of Karna's birth.\r\nYudhishthira, Bhima, Nakula, and Sahadeva now realized why Karna had spared them on the battlefield; that had been his promise to Kunti. \r\nArjuna remembered the years he had spent hating Karna, when he should have loved him instead as a brother.\r\n\"Why did you not tell us?\" Arjuna asked Kunti.", "start_char_idx": 111933, "end_char_idx": 113653, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7943ca32-20c1-4d02-8565-47383c9d26d1": {"__data__": {"id_": "7943ca32-20c1-4d02-8565-47383c9d26d1", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "32054d58-0f2d-4904-9802-5ba83f0494f7", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "adf2834c13ca51ffb6805b4717c49788dc4d338c376f3727a8f75e5b448fea29", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "940653d8-76b4-492d-9564-1cad868963e8", "node_type": "1", "metadata": {}, "hash": "2932fc3d874db3cdd4c57134086e2422c0b3a85417009dd50712eee9dc147cd6", "class_name": "RelatedNodeInfo"}}, "text": "\"I am looking for Karna, my first-born son.\"\r\nAt her words, Arjuna felt faint. \"You mean I killed my own brother?\" he gasped.\r\n\"And did Karna know this?\" Yudhishthira asked.\r\n\"Yes,\" said Kunti sadly. \"He knew, and he promised I would see five sons survive the war. He kept his promise.\"\r\n\r\n~ 176. The Pandavas Honor Karna ~\r\nThe Pandavas were stunned when Kunti told them the story of Karna's birth.\r\nYudhishthira, Bhima, Nakula, and Sahadeva now realized why Karna had spared them on the battlefield; that had been his promise to Kunti. \r\nArjuna remembered the years he had spent hating Karna, when he should have loved him instead as a brother.\r\n\"Why did you not tell us?\" Arjuna asked Kunti.\r\nKrishna answered for her. \"If she told you, you would not have fought,\" he said. \"But you had to fight. It was dharma. All is as it must be.\"\r\nThen they honored Karna with a hero's funeral.\r\n\r\n~ 177. Gandhari Searches the Battlefield ~\r\nGandhari spent the night on the battlefield, stumbling among corpses, seeking her sons. \r\nBut suddenly, she felt hungry. \r\nSo very hungry.\r\nSmelling a mango, she jumped and grabbed, but the mango was out of a reach. Then she made a pile of stones to reach the mango. \r\nIt was delicious! \r\nAs she ate, she realized these were not stones.\r\nThey were skulls.\r\nShe had been standing on the skulls of her sons to reach the fruit.\r\n\"All we see is maya, the illusion of the world!\" she groaned. \"Blindfold or no blindfold, we are all maya's fools.\"\r\nThen Gandhari wept.\r\n\r\n~ 178. The Pandavas Return to Hastinapura ~\r\nHaving won the war, the Pandavas returned to Hastinapura to claim the kingdom.\r\nDhritarashtra greeted them. \"Where is Bhima?\" the blind king asked. \"I wish to embrace him.\"", "start_char_idx": 112959, "end_char_idx": 114675, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "940653d8-76b4-492d-9564-1cad868963e8": {"__data__": {"id_": "940653d8-76b4-492d-9564-1cad868963e8", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7943ca32-20c1-4d02-8565-47383c9d26d1", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "7e026d6bfc7b2728a0eeaf39865889b54362370fa178ad6173a47706dffdea0c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f13b02ca-0937-4928-8c7c-7aa944292c98", "node_type": "1", "metadata": {}, "hash": "aa1221be0e076bb1a2869a9a473500d727cffecbe67b5c10bf92f4318ee3bec5", "class_name": "RelatedNodeInfo"}}, "text": "But suddenly, she felt hungry. \r\nSo very hungry.\r\nSmelling a mango, she jumped and grabbed, but the mango was out of a reach. Then she made a pile of stones to reach the mango. \r\nIt was delicious! \r\nAs she ate, she realized these were not stones.\r\nThey were skulls.\r\nShe had been standing on the skulls of her sons to reach the fruit.\r\n\"All we see is maya, the illusion of the world!\" she groaned. \"Blindfold or no blindfold, we are all maya's fools.\"\r\nThen Gandhari wept.\r\n\r\n~ 178. The Pandavas Return to Hastinapura ~\r\nHaving won the war, the Pandavas returned to Hastinapura to claim the kingdom.\r\nDhritarashtra greeted them. \"Where is Bhima?\" the blind king asked. \"I wish to embrace him.\"\r\nBut Krishna had foreseen this moment and warned the Pandavas to give Dhritarashtra an iron statue of Bhima to embrace instead.\r\nWith the power of his grief, Dhritarashtra crushed the statue. Then, realizing what he had done, he burst into tears. \"Oh Bhima, my nephew, what have I done?\"\r\n\"That was only a statue of Bhima,\" Krishna said reassuringly. \"You have had your revenge.\"\r\nDhritarashtra wept with gratitude and embraced Bhima warmly.\r\n\r\n~ 179. Gandhari Curses Krishna ~\r\nGandhari, however, was inconsolable. \"Are you happy now, Krishna?\" she said. \"Your tricks killed all my sons.\"\r\n\"Not so,\" Krishna replied. \"Their karma killed them: the consequences of their actions and the wicked choices that they made. But in death they are transformed; you should rejoice that they are in heaven.\"\r\n\"Your words mean nothing,\" shouted Gandhari, \"and your actions also have consequences. Hear my curse: all the people of your tribe will destroy one another, and you will be left to die alone.\"\r\nKrishna said nothing, as he already knew of these events to come.\r\nAll actions have consequences.\r\n\r\n~ 180.", "start_char_idx": 113982, "end_char_idx": 115775, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f13b02ca-0937-4928-8c7c-7aa944292c98": {"__data__": {"id_": "f13b02ca-0937-4928-8c7c-7aa944292c98", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "940653d8-76b4-492d-9564-1cad868963e8", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "279e3c5ebdcfb24885e2c838cea0452d974bfa6d6b9afa89718a3236d1483504", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a0c3e794-d4d9-4f13-ad96-69923bf15366", "node_type": "1", "metadata": {}, "hash": "6b28ffc0f3a343ba17e9167ca95dce4322b043f118736578a61169115471633d", "class_name": "RelatedNodeInfo"}}, "text": "\"That was only a statue of Bhima,\" Krishna said reassuringly. \"You have had your revenge.\"\r\nDhritarashtra wept with gratitude and embraced Bhima warmly.\r\n\r\n~ 179. Gandhari Curses Krishna ~\r\nGandhari, however, was inconsolable. \"Are you happy now, Krishna?\" she said. \"Your tricks killed all my sons.\"\r\n\"Not so,\" Krishna replied. \"Their karma killed them: the consequences of their actions and the wicked choices that they made. But in death they are transformed; you should rejoice that they are in heaven.\"\r\n\"Your words mean nothing,\" shouted Gandhari, \"and your actions also have consequences. Hear my curse: all the people of your tribe will destroy one another, and you will be left to die alone.\"\r\nKrishna said nothing, as he already knew of these events to come.\r\nAll actions have consequences.\r\n\r\n~ 180. The Pandavas Mourn the Dead ~\r\nMourning the dead, the survivors went to the banks of the sacred river. The Pandavas were there, along with Dhritarashtra and Vidura, and all the women: Gandhari and Kunti, and all the wives, the widows, all the mothers and sisters and daughters.\r\nThe rishi Narada joined in the mourning.\r\n\"Do you rejoice in your victory?\" he asked Yudhishthira.\r\n\"I see only death,\" Yudhishthira replied. \"I see only defeat. Worst of all, I have learned that Karna was Kunti's son. Karna knew, and said nothing. My elder brother is dead now, and I rule a kingdom that should have been his.\"\r\n\r\n**CHAPTER 10: THE PANDAVA KINGS**\r\n\r\n~ 181. Yudhishthira Becomes King of Hastinapura ~\r\nAfter the war, Yudhishthira decided to renounce the world. \"I will live in the forest, eating only roots and fruits. I will make no judgments. I will issue no commands.\"\r\nBut his brothers and Draupadi protested, insisting that he must become king.\r\n\"Stop indulging yourself and your feelings,\" Krishna told him.", "start_char_idx": 114965, "end_char_idx": 116785, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a0c3e794-d4d9-4f13-ad96-69923bf15366": {"__data__": {"id_": "a0c3e794-d4d9-4f13-ad96-69923bf15366", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f13b02ca-0937-4928-8c7c-7aa944292c98", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "719de4ad155c499482f6e4585d1b8fb678db9e18ca9354cc18e7d93730353a09", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5af05e5b-2747-4c9f-99f3-cfc98be0b43d", "node_type": "1", "metadata": {}, "hash": "d5ac922b7ea08157d978e5c8fd9b3110686fffb1e5bcdea8457dd19194de61f6", "class_name": "RelatedNodeInfo"}}, "text": "\"Do you rejoice in your victory?\" he asked Yudhishthira.\r\n\"I see only death,\" Yudhishthira replied. \"I see only defeat. Worst of all, I have learned that Karna was Kunti's son. Karna knew, and said nothing. My elder brother is dead now, and I rule a kingdom that should have been his.\"\r\n\r\n**CHAPTER 10: THE PANDAVA KINGS**\r\n\r\n~ 181. Yudhishthira Becomes King of Hastinapura ~\r\nAfter the war, Yudhishthira decided to renounce the world. \"I will live in the forest, eating only roots and fruits. I will make no judgments. I will issue no commands.\"\r\nBut his brothers and Draupadi protested, insisting that he must become king.\r\n\"Stop indulging yourself and your feelings,\" Krishna told him. \"You will become king; it is your dharma.\"\r\nSo Yudhishthira was crowned king, as Bhima, Arjuna, Nakula and Sahadeva stood beside him, along with their wife Draupadi and their mother Kunti.\r\nHe appointed Yuyutsu, Dhritarashtra's only surviving son, to care for the old king and attend to his needs.\r\n\r\n~ 182. Bhishma Instructs Yudhishthira ~\r\nThe mighty Kaurava generals were all dead... except one: Bhishma. Fatally wounded, he was still alive, lying on the bed made by the arrows that pierced his body. \r\nBhishma had the power to choose when to die, and he was waiting until after the winter solstice: he wanted to die on the first day of Uttarayana, when Surya turns north.\r\nBhishma thus waited fifty-eight days, the days growing ever shorter.\r\nYudhishthira came, and Bhishma instructed him in the ways of kingship, telling him stories of long ago.\r\nBhishma also taught Yudhishthira to chant the Sahasra-Nama, the Thousand Names of God.\r\n\r\n~ 183.", "start_char_idx": 116097, "end_char_idx": 117734, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5af05e5b-2747-4c9f-99f3-cfc98be0b43d": {"__data__": {"id_": "5af05e5b-2747-4c9f-99f3-cfc98be0b43d", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a0c3e794-d4d9-4f13-ad96-69923bf15366", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "e60a0e376a5c1bca17406b191379bb2f35cf624e9e1ebf131387e9c5f31b65d5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7321ed9b-9841-4fda-b805-2dc6cd5c6c63", "node_type": "1", "metadata": {}, "hash": "5857e966d8465fdb7c1e7fb7c9ab0451dbdeace35b1ca2deb55904f49843f419", "class_name": "RelatedNodeInfo"}}, "text": "~ 182. Bhishma Instructs Yudhishthira ~\r\nThe mighty Kaurava generals were all dead... except one: Bhishma. Fatally wounded, he was still alive, lying on the bed made by the arrows that pierced his body. \r\nBhishma had the power to choose when to die, and he was waiting until after the winter solstice: he wanted to die on the first day of Uttarayana, when Surya turns north.\r\nBhishma thus waited fifty-eight days, the days growing ever shorter.\r\nYudhishthira came, and Bhishma instructed him in the ways of kingship, telling him stories of long ago.\r\nBhishma also taught Yudhishthira to chant the Sahasra-Nama, the Thousand Names of God.\r\n\r\n~ 183. Bhishma Departs This World ~\r\nThe Pandavas gathered around Bhishma on his bed of arrows, waiting for the moment when he would choose to die.\r\nThey had known this old warrior all their lives, and he had been like a father to them: Bhishma, the son of Shantanu and of the goddess Ganga. Bhishma, who had no sons of his own. \r\nThey waited with him.\r\nThey wept.\r\nFinally, he breathed his last.\r\nYudhishthira lifted Bhishma up off the bed of arrows and cremated his body on the bank of the Ganges. The goddess then arose from the river and escorted her son's soul into heaven.\r\n\r\n~ 184. Dhritarashtra Stays in the Palace ~\r\nDhritarashtra continued to live in the palace, advising his nephew Yudhishthira, who was now king. \r\nBhima, however, didn't make it easy. When the family ate together, Bhima would crack his knuckles and reminisce about killing the Kauravas one after another. Whenever anybody broke open a bone to eat the marrow, Bhima would shout, \"That reminds me of the sound Duryodhana's thigh made when I smashed it!\"\r\nDhritarashtra's brother Vidura urged him to renounce the world.", "start_char_idx": 117087, "end_char_idx": 118824, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7321ed9b-9841-4fda-b805-2dc6cd5c6c63": {"__data__": {"id_": "7321ed9b-9841-4fda-b805-2dc6cd5c6c63", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5af05e5b-2747-4c9f-99f3-cfc98be0b43d", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "b5983a7076f01cb824cca39ec1425077bd2bf14179cd0e0eddaad5b036f97d56", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d", "node_type": "1", "metadata": {}, "hash": "25afd37e8f5b60ca2e0ef824652f1547b5293d2d41245290e375216c2898c526", "class_name": "RelatedNodeInfo"}}, "text": "They wept.\r\nFinally, he breathed his last.\r\nYudhishthira lifted Bhishma up off the bed of arrows and cremated his body on the bank of the Ganges. The goddess then arose from the river and escorted her son's soul into heaven.\r\n\r\n~ 184. Dhritarashtra Stays in the Palace ~\r\nDhritarashtra continued to live in the palace, advising his nephew Yudhishthira, who was now king. \r\nBhima, however, didn't make it easy. When the family ate together, Bhima would crack his knuckles and reminisce about killing the Kauravas one after another. Whenever anybody broke open a bone to eat the marrow, Bhima would shout, \"That reminds me of the sound Duryodhana's thigh made when I smashed it!\"\r\nDhritarashtra's brother Vidura urged him to renounce the world. \"Brother,\" he said, \"It's time to go live in the forest!\" \r\nDhritarashtra wanted to go, but he was attached to the luxuries of palace life.\r\n\r\n~ 185. The Elders Go into the Forest ~\r\nEventually, Dhritarashtra left Hastinapura, together with Kunti and Gandhari. They lived in the forest.\r\nOne day there came a forest fire.\r\nEven then, Gandhari didn't remove her blindfold. She had removed her blindfold only once, attempting to use the power of her gaze to make Duryodhana invincible. \"Come to me naked,\" she told him. Duryodhana, however, was embarrassed and wore a loincloth. All that Gandhari saw became invincible, but Duryodhana was still vulnerable.\r\nShe had not been able to save him, and she had no wish to save herself.\r\n\"Run!\" Dhritarashtra shouted.\r\n\"Why?\" replied Gandhari.\r\nThey died in the fire.\r\n\r\n~ 186. The Yadavas Quarrel ~\r\nTime passed.\r\nThen, a fight began in Dwaraka: some Yadavas defended the Pandavas, while others defended the Kauravas.\r\n\"The Kauravas ambushed Abhimanyu!\"", "start_char_idx": 118082, "end_char_idx": 119820, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d": {"__data__": {"id_": "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "7321ed9b-9841-4fda-b805-2dc6cd5c6c63", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "473badb12e0e379f97a4122d4104b9cff6946ff8da46e3d97a8c535e1b9bac66", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d90ad960-a3c2-473c-a61f-0725b4354690", "node_type": "1", "metadata": {}, "hash": "b1f652c56bdbc143132dd8a78d425a1a8597abcb2b104ea07e5ecaee8d85e6b0", "class_name": "RelatedNodeInfo"}}, "text": "One day there came a forest fire.\r\nEven then, Gandhari didn't remove her blindfold. She had removed her blindfold only once, attempting to use the power of her gaze to make Duryodhana invincible. \"Come to me naked,\" she told him. Duryodhana, however, was embarrassed and wore a loincloth. All that Gandhari saw became invincible, but Duryodhana was still vulnerable.\r\nShe had not been able to save him, and she had no wish to save herself.\r\n\"Run!\" Dhritarashtra shouted.\r\n\"Why?\" replied Gandhari.\r\nThey died in the fire.\r\n\r\n~ 186. The Yadavas Quarrel ~\r\nTime passed.\r\nThen, a fight began in Dwaraka: some Yadavas defended the Pandavas, while others defended the Kauravas.\r\n\"The Kauravas ambushed Abhimanyu!\" shouted the Pandava allies.\r\n\"The Pandavas deceived Drona!\" retorted the Kaurava allies.\r\nBack and forth they argued.\r\nFearing violence, Krishna and Balarama hid every weapon, but the quarreling citizens of Dwaraka then grabbed reeds from the seashore. These were no ordinary reeds: their edges were as sharp as any iron weapon.\r\nThus the Yadavas destroyed themselves.\r\nSatyaki and Kritavarma, who had both survived the war, killed one another in that fight.\r\nSuch was the power of Gandhari's curse.\r\n\r\n~ 187. The Story of the Reeds ~\r\nLong ago, Krishna's son Samba wanted to trick the forest rishis, so he dressed up as a pregnant woman. \"Is my baby male or female?\" he asked.\r\nThe angry rishis replied, \"You bear no baby but an iron bar that will destroy the Yadavas.\"\r\nSamba tried to laugh it off, but an iron bar eventually emerged from his thigh. Horrified, Samba ground the bar into dust which he threw into the sea.\r\nThe sea cast the iron dust back onto the shore, and it grew into the reeds with which the Yadavas destroyed themselves years later, arguing about the war.\r\n\r\n~ 188.", "start_char_idx": 119113, "end_char_idx": 120909, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d90ad960-a3c2-473c-a61f-0725b4354690": {"__data__": {"id_": "d90ad960-a3c2-473c-a61f-0725b4354690", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d283f4ffb91b5ec2b28a2697062e0890915efa769f50263d848493a0676d5373", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "27d3c00c-c824-410a-b23c-a46312a398b5", "node_type": "1", "metadata": {}, "hash": "1dace6770e68329826b569943cee8d414ccc94cd397bd9461d91f02004b76a52", "class_name": "RelatedNodeInfo"}}, "text": "Thus the Yadavas destroyed themselves.\r\nSatyaki and Kritavarma, who had both survived the war, killed one another in that fight.\r\nSuch was the power of Gandhari's curse.\r\n\r\n~ 187. The Story of the Reeds ~\r\nLong ago, Krishna's son Samba wanted to trick the forest rishis, so he dressed up as a pregnant woman. \"Is my baby male or female?\" he asked.\r\nThe angry rishis replied, \"You bear no baby but an iron bar that will destroy the Yadavas.\"\r\nSamba tried to laugh it off, but an iron bar eventually emerged from his thigh. Horrified, Samba ground the bar into dust which he threw into the sea.\r\nThe sea cast the iron dust back onto the shore, and it grew into the reeds with which the Yadavas destroyed themselves years later, arguing about the war.\r\n\r\n~ 188. Balarama and Krishna Depart the World ~\r\nAfter the Yadavas slaughtered one another, Balarama resolved to leave the world. As he meditated, his life-force emerged in the form of a white snake, which then vanished.\r\nAfter Balarama departed, Krishna too was ready for his life to end. He went into the forest, sat under a banyan tree, and waited.\r\nA hunter named Jara, mistaking Krishna's foot for the ear of a deer, shot Krishna with an arrow.\r\nJara had found the arrowhead in the belly of a fish, and it was made of the same accursed iron which had killed the Yadavas. \r\nGandhari's curse was now fulfilled.\r\n\r\n~ 189. Krishna Tells Jara a Story ~\r\nBefore Krishna died, he revealed to Jara the truth of his birth. \"We met before, during the Treta Yuga: you were born as Vali, king of the monkeys of Kishkindha, and I was born as Rama, prince of Ayodhya. Because of a promise I made to your brother Sugriva, I shot you with an arrow from an ambush, just as you shot me now. All is as it must be.\"\r\nKrishna then left his body and returned to Vaikuntha, his heavenly abode.", "start_char_idx": 120151, "end_char_idx": 121977, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "27d3c00c-c824-410a-b23c-a46312a398b5": {"__data__": {"id_": "27d3c00c-c824-410a-b23c-a46312a398b5", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d90ad960-a3c2-473c-a61f-0725b4354690", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "6973a90b5a7b7e633d44be07edec86970abccc05ab5847e5808a5e845c0ac337", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "8547e0e0-3bfa-40d6-9e96-e645d4e7de70", "node_type": "1", "metadata": {}, "hash": "0a78ed267e9ac5b654ce05d94827962b64fd57a91c1f2d578c5205a24ef3946d", "class_name": "RelatedNodeInfo"}}, "text": "A hunter named Jara, mistaking Krishna's foot for the ear of a deer, shot Krishna with an arrow.\r\nJara had found the arrowhead in the belly of a fish, and it was made of the same accursed iron which had killed the Yadavas. \r\nGandhari's curse was now fulfilled.\r\n\r\n~ 189. Krishna Tells Jara a Story ~\r\nBefore Krishna died, he revealed to Jara the truth of his birth. \"We met before, during the Treta Yuga: you were born as Vali, king of the monkeys of Kishkindha, and I was born as Rama, prince of Ayodhya. Because of a promise I made to your brother Sugriva, I shot you with an arrow from an ambush, just as you shot me now. All is as it must be.\"\r\nKrishna then left his body and returned to Vaikuntha, his heavenly abode.\r\nThus the Dvapara Yuga ended, and the Kali Yuga began, the final era in the cycle of time.\r\n\r\n~ 190. The Pandavas Depart ~\r\nThe sons of the Pandavas died in the war, but one grandson survived: Parikshit, the son of Uttara and Abhimanyu, who was the son of Arjuna and Krishna's sister Subhadra. Ashwatthama had launched a weapon to kill Parkishit while still in his mother's womb, but Krishna saved him, and Parikshit later became king in Hastinapura.\r\nThen, after Parikshit's coronation, Yudhishthira, his brothers, and Draupadi resolved to climb Mount Meru, seeking heaven. After the loss of Krishna and Balarama, they no longer had any desire to remain in this world.\r\nDressed in clothes of bark, they departed on their final journey.\r\n\r\n~ 191. The Pandavas Climb Mount Meru ~\r\nAs the Pandavas and Draupadi climbed the snowy slopes of Mount Meru, seeking to attain heaven, Draupadi was the first to fall, but the Pandavas did not stop walking.\r\nThen Sahadeva fell, and Nakula. No one stopped.\r\nArjuna. Then Bhima.", "start_char_idx": 121255, "end_char_idx": 122993, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8547e0e0-3bfa-40d6-9e96-e645d4e7de70": {"__data__": {"id_": "8547e0e0-3bfa-40d6-9e96-e645d4e7de70", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "27d3c00c-c824-410a-b23c-a46312a398b5", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "682dad1211c3b51f771d03ce5bd828d81624d87b8308afbffb3b2cbe29655512", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e55bef39-937d-47e6-ac42-68455994076e", "node_type": "1", "metadata": {}, "hash": "36a39decdcd6e3c538bbce22edb313cc5ff37e3331ed3aa21e543180472bcb2f", "class_name": "RelatedNodeInfo"}}, "text": "Ashwatthama had launched a weapon to kill Parkishit while still in his mother's womb, but Krishna saved him, and Parikshit later became king in Hastinapura.\r\nThen, after Parikshit's coronation, Yudhishthira, his brothers, and Draupadi resolved to climb Mount Meru, seeking heaven. After the loss of Krishna and Balarama, they no longer had any desire to remain in this world.\r\nDressed in clothes of bark, they departed on their final journey.\r\n\r\n~ 191. The Pandavas Climb Mount Meru ~\r\nAs the Pandavas and Draupadi climbed the snowy slopes of Mount Meru, seeking to attain heaven, Draupadi was the first to fall, but the Pandavas did not stop walking.\r\nThen Sahadeva fell, and Nakula. No one stopped.\r\nArjuna. Then Bhima. \r\nAlone, Yudhishthira kept on walking up the mountain.\r\nAs he walked, he reflected on the flaws that made them fall.\r\nDraupadi had not loved all her husbands equally; she preferred Arjuna.\r\nSahadeva was proud of his knowledge, and Nakula of his beauty.\r\nArjuna had been envious, and Bhima gluttonous.\r\nAnd so Yudhishthira kept walking, wondering if he too would fall.\r\n\r\n~ 192. Yudhishthira Must Choose ~\r\nAt last, Yudhishthira came to Amravati's gate, where the devas greeted him. \"Welcome, Yudhishthira! You may enter heaven's gate, but not your dog.\"\r\n\"What dog?\" asked Yudhishthira, surprised. Then he turned and saw a dog who had followed him all the way from Hastinapura.\r\n\"The dog made the ascent,\" Yudhishthira protested. \"His devotion is perfect! He too should enter heaven.\"\r\n\"No,\" said the gods. \"You must come alone.\" \r\n\"If so,\" replied Yudhishthira, \"I won't come.\"\r\nNext, the dog vanished. Yama, god of dharma, appeared; Yudhishthira's father was testing him.", "start_char_idx": 122272, "end_char_idx": 123967, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e55bef39-937d-47e6-ac42-68455994076e": {"__data__": {"id_": "e55bef39-937d-47e6-ac42-68455994076e", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "8547e0e0-3bfa-40d6-9e96-e645d4e7de70", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "5440777c1d2ed2deea23418cc518d82531efd8937e03fef19a96e8b914a239cb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c315e6be-d862-411c-9881-e6f482a97b77", "node_type": "1", "metadata": {}, "hash": "7692e520993b2ca567a628ad58ea16cc5ef6f62b5f8d6c13f8e4a8ba32388013", "class_name": "RelatedNodeInfo"}}, "text": "~ 192. Yudhishthira Must Choose ~\r\nAt last, Yudhishthira came to Amravati's gate, where the devas greeted him. \"Welcome, Yudhishthira! You may enter heaven's gate, but not your dog.\"\r\n\"What dog?\" asked Yudhishthira, surprised. Then he turned and saw a dog who had followed him all the way from Hastinapura.\r\n\"The dog made the ascent,\" Yudhishthira protested. \"His devotion is perfect! He too should enter heaven.\"\r\n\"No,\" said the gods. \"You must come alone.\" \r\n\"If so,\" replied Yudhishthira, \"I won't come.\"\r\nNext, the dog vanished. Yama, god of dharma, appeared; Yudhishthira's father was testing him. \"You have done well,\" he said, and Yudhishthira then entered Amravati.\r\n\r\n~ 193. Yudhishthira Finds the Kauravas in Heaven ~\r\nAs Yudhishthira entered Amravati, he saw the Kauravas mingling with the gods. Duryodhana was there, and Dushasana, happy and radiant in the light of heaven. They smiled when they saw Yudhishthira. \"Welcome, cousin!\" Duryodhana said.\r\n\"How can this be?\" Yudhishthira cried in dismay. \r\n\"Duryodhana, Dushasana, all the Kauravas died in battle on the sacred land of Kurukshetra,\" said the gods. \"All warriors who fall on that field ascend to Amravati.\"\r\n\"But where are my brothers?\" cried Yudhishthira. \"Where is my wife?\"\r\n\"They are in Naraka,\" said the gods.\r\n\"I must go there!\" said Yudhishthira.\r\nSo Yudhishthira then descended into hell.\r\n\r\n~ 194. Yudhishthira Descends to Naraka ~\r\nIn the darkness, Yudhishthira heard shrieks and groans. He recognized his brothers' voices.", "start_char_idx": 123365, "end_char_idx": 124870, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c315e6be-d862-411c-9881-e6f482a97b77": {"__data__": {"id_": "c315e6be-d862-411c-9881-e6f482a97b77", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e55bef39-937d-47e6-ac42-68455994076e", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d3d0002f69359362a778008a5f65fe43f323a8449b43b5223ca5a2e607c39006", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "88434af3-c6aa-4172-9365-434929f65f44", "node_type": "1", "metadata": {}, "hash": "b82f5c0e6888dc75fa96b1db718d3864c3dcb81a1970acf499b5d5bb6bcad8d1", "class_name": "RelatedNodeInfo"}}, "text": "They smiled when they saw Yudhishthira. \"Welcome, cousin!\" Duryodhana said.\r\n\"How can this be?\" Yudhishthira cried in dismay. \r\n\"Duryodhana, Dushasana, all the Kauravas died in battle on the sacred land of Kurukshetra,\" said the gods. \"All warriors who fall on that field ascend to Amravati.\"\r\n\"But where are my brothers?\" cried Yudhishthira. \"Where is my wife?\"\r\n\"They are in Naraka,\" said the gods.\r\n\"I must go there!\" said Yudhishthira.\r\nSo Yudhishthira then descended into hell.\r\n\r\n~ 194. Yudhishthira Descends to Naraka ~\r\nIn the darkness, Yudhishthira heard shrieks and groans. He recognized his brothers' voices. \"Help us, Yudhishthira!\"\r\nAnd then he heard Draupadi. \"Husband, help me!\"\r\n\"Are you ready to return to Amravati now?\" the gods asked Yudhishthira.\r\n\"Don't leave us!\" his brothers cried.\r\n\"Stay with me!\" Draupadi begged.\r\n\"I must remain here,\" said Yudhishthira, angry and confused.\r\nThen he had a vision of God. He saw the Allness of God: everything, every being, all life, all possibilities. The killers and the killed, creation and destruction. Everything.\r\nEnlightened, Yudhishthira ascended to the highest heaven, beyond Amravati. He entered Vaikuntha, God's own home.\r\n~ 195. Parikshit Is Cursed ~\r\nKing Parikshit had a son: Janamejaya.\r\nOne day when King Parikshit returned from hunting, Janamejaya saw he was dismayed. \"Father, what troubles you?\" he asked.\r\n\"I am cursed to die within seven days of snakebite,\" Parikshit replied. \"In the forest, I entered a rishi's house. I greeted him, but he said nothing. That made me angry, so I draped a dead snake over his shoulders.", "start_char_idx": 124251, "end_char_idx": 125852, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "88434af3-c6aa-4172-9365-434929f65f44": {"__data__": {"id_": "88434af3-c6aa-4172-9365-434929f65f44", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c315e6be-d862-411c-9881-e6f482a97b77", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "ee5a072a6c197cf1fefd091ac02909d86f22549197ae11cd9806b8778ed36d64", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "743f653f-7bc9-4e47-8a7b-ee3da4505e28", "node_type": "1", "metadata": {}, "hash": "52740a35a7314fd1c9d1ed71ed16dab4e81f071e851c227e05fa41ebb9fdf55d", "class_name": "RelatedNodeInfo"}}, "text": "Then he had a vision of God. He saw the Allness of God: everything, every being, all life, all possibilities. The killers and the killed, creation and destruction. Everything.\r\nEnlightened, Yudhishthira ascended to the highest heaven, beyond Amravati. He entered Vaikuntha, God's own home.\r\n~ 195. Parikshit Is Cursed ~\r\nKing Parikshit had a son: Janamejaya.\r\nOne day when King Parikshit returned from hunting, Janamejaya saw he was dismayed. \"Father, what troubles you?\" he asked.\r\n\"I am cursed to die within seven days of snakebite,\" Parikshit replied. \"In the forest, I entered a rishi's house. I greeted him, but he said nothing. That made me angry, so I draped a dead snake over his shoulders. The rishi's son saw me do this and cursed me.\"\r\n\"No!\" Janamejaya said. \"We will protect you.\"\r\nThey locked the king high in a tall tower. No snake could reach him, or so they thought.\r\n\r\n~ 196. Parikshit Hides in the Tower ~\r\nKing Parikshit climbed the tower and shut himself in the highest room. Guards stood around the tower and at every door. They searched everything and everyone, making sure no snake could find its way inside.\r\nAs the seventh day drew to a close, King Parikshit finally relaxed. He enjoyed his evening meal. Then, for dessert, he bit into a fruit.\r\nThere was a worm in the fruit.\r\nThe worm transformed into Takshaka, a mighty naga.\r\nTakshaka then plunged his fangs into the king's flesh, and seconds later the king was dead.\r\nHe didn't even have time to call for help.\r\n\r\n~ 197. Janamejaya Conducts a Snake Sacrifice ~\r\nJanamejaya was grief-stricken at his father's death. \"The snakes will pay for this!\" he shouted. \"I'll kill them all!\"\r\nHe convened the brahmin priests of Hastinapura and ordered them to conduct a Sarpa Satra sacrifice which would kill all the snakes of the earth.", "start_char_idx": 125154, "end_char_idx": 126960, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "743f653f-7bc9-4e47-8a7b-ee3da4505e28": {"__data__": {"id_": "743f653f-7bc9-4e47-8a7b-ee3da4505e28", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "88434af3-c6aa-4172-9365-434929f65f44", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "da9e5b6254b3c324f0ce623b087f49f4ad42a41f342037467d48bef6218db93f", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "b3cf7695-1a41-4b75-bc07-fb9c11b286e8", "node_type": "1", "metadata": {}, "hash": "68e5ce416ae24e6a05062289293b4fcc305bc542c1667f8f1e1a5fd9597c7501", "class_name": "RelatedNodeInfo"}}, "text": "They searched everything and everyone, making sure no snake could find its way inside.\r\nAs the seventh day drew to a close, King Parikshit finally relaxed. He enjoyed his evening meal. Then, for dessert, he bit into a fruit.\r\nThere was a worm in the fruit.\r\nThe worm transformed into Takshaka, a mighty naga.\r\nTakshaka then plunged his fangs into the king's flesh, and seconds later the king was dead.\r\nHe didn't even have time to call for help.\r\n\r\n~ 197. Janamejaya Conducts a Snake Sacrifice ~\r\nJanamejaya was grief-stricken at his father's death. \"The snakes will pay for this!\" he shouted. \"I'll kill them all!\"\r\nHe convened the brahmin priests of Hastinapura and ordered them to conduct a Sarpa Satra sacrifice which would kill all the snakes of the earth. The priests built a huge bonfire, and they chanted the words that summoned the snakes. Swarms of serpents came slithering across the ground and flying through the air, plunging themselves into the fire where they burned to death in their thousands and millions.\r\nThen a stranger appeared. \"Stop!\" the young man shouted. \"This sacrifice must stop!\"\r\n\r\n~ 198. Astika Confronts Janamejaya ~\r\n\"Who dares interrupt my sacrifice?\" shouted Janamejaya.\r\n\"I am Astika,\" the young man replied. \"My father is a rishi, and my mother is a naga. I see both sides, human and snake. For the sake of both humans and snakes, stop this sacrifice! Takshaka sought revenge for your great-grandfather Arjuna burning Khandava forest, which was home to many nagas. Now you seek revenge for your father. Then there will be snakes seeking revenge against you for this sacrifice. The revenge must stop. We need peace, not fire. Not winners and losers. The world needs dharma.\"\r\n\"Tell me more,\" said Janamejaya.\r\n\r\n~ 199.", "start_char_idx": 126199, "end_char_idx": 127954, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b3cf7695-1a41-4b75-bc07-fb9c11b286e8": {"__data__": {"id_": "b3cf7695-1a41-4b75-bc07-fb9c11b286e8", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "743f653f-7bc9-4e47-8a7b-ee3da4505e28", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d386a005905dc6ffc66bb4733ec17ca0c9a624770c2f90b8ef60b4e4cc6afcf0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "faeda718-1ed2-4c16-a6de-2901b1130c6d", "node_type": "1", "metadata": {}, "hash": "8ae096cef51ad959be22a01126305a277c0f567a5bcc7e6cc89f3635c0cd7b6e", "class_name": "RelatedNodeInfo"}}, "text": "Then a stranger appeared. \"Stop!\" the young man shouted. \"This sacrifice must stop!\"\r\n\r\n~ 198. Astika Confronts Janamejaya ~\r\n\"Who dares interrupt my sacrifice?\" shouted Janamejaya.\r\n\"I am Astika,\" the young man replied. \"My father is a rishi, and my mother is a naga. I see both sides, human and snake. For the sake of both humans and snakes, stop this sacrifice! Takshaka sought revenge for your great-grandfather Arjuna burning Khandava forest, which was home to many nagas. Now you seek revenge for your father. Then there will be snakes seeking revenge against you for this sacrifice. The revenge must stop. We need peace, not fire. Not winners and losers. The world needs dharma.\"\r\n\"Tell me more,\" said Janamejaya.\r\n\r\n~ 199. Janamejaya Hears the Mahabharata Story ~\r\nAstika spoke to Janamejaya about King Kuru and his ancestors, about the Pandavas and Kauravas, and about the war they fought.\r\n\"God himself was there,\" Astika said.\r\nJanamejaya did not understand. \"How could God be there?\"\r\n\"God took the form of Krishna,\" said Astika. \"Bring the rishi Vaishampayana here, and he will tell you everything. Vaishampayana heard the story from Vyasa. Vyasa was part of the story himself, and he was also an author of the story, the Mahabharata.\"\r\nSo Janamejaya summoned Vaishampayana, who recited the Mahabharata as he heard it from Vyasa, and Janamejaya became enlightened. He knew dharma.\r\n\r\n~ 200. You Reach the End ~\r\nVyasa first recited his Mahabharata to Ganesha. He also recited it to his disciples, including Vaishampayana, who repeated what he heard to Janamejaya.\r\nJaimini, another disciple of Vyasa, wrote his Mahabharata after meeting some birds who were present at Kurukshetra.", "start_char_idx": 127224, "end_char_idx": 128917, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "faeda718-1ed2-4c16-a6de-2901b1130c6d": {"__data__": {"id_": "faeda718-1ed2-4c16-a6de-2901b1130c6d", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6aa6b25f-c497-42bb-b323-a12de8fde12d", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "d03dc0fac1c9d7905dbaa78c04a09d166ba96e09f99e2ed69eca75ff0734e357", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "b3cf7695-1a41-4b75-bc07-fb9c11b286e8", "node_type": "1", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "1699ff02a321852dbd21c037082506e2da07e48dcbb215a731d7f7855b15674a", "class_name": "RelatedNodeInfo"}}, "text": "\"God took the form of Krishna,\" said Astika. \"Bring the rishi Vaishampayana here, and he will tell you everything. Vaishampayana heard the story from Vyasa. Vyasa was part of the story himself, and he was also an author of the story, the Mahabharata.\"\r\nSo Janamejaya summoned Vaishampayana, who recited the Mahabharata as he heard it from Vyasa, and Janamejaya became enlightened. He knew dharma.\r\n\r\n~ 200. You Reach the End ~\r\nVyasa first recited his Mahabharata to Ganesha. He also recited it to his disciples, including Vaishampayana, who repeated what he heard to Janamejaya.\r\nJaimini, another disciple of Vyasa, wrote his Mahabharata after meeting some birds who were present at Kurukshetra. An arrow had struck their mother flying overhead, and her eggs landed on the blood-soaked ground. Then a war-elephant's bell fell, covering the eggs and protecting them. The birds hatched and heard the war from inside the bell. \r\nAlas, most of Jaimini's Mahabharata is lost, but there are more Mahabharatas.\r\nMany Mahabharatas.", "start_char_idx": 128221, "end_char_idx": 129245, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "159d48c8-fd13-4c95-803f-2911e9c61799": {"__data__": {"id_": "159d48c8-fd13-4c95-803f-2911e9c61799", "embedding": null, "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\sources.txt", "file_name": "sources.txt", "file_type": "text/plain", "file_size": 1808, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2e16a979-87c8-430c-96ce-5b741d967b01", "node_type": "4", "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\sources.txt", "file_name": "sources.txt", "file_type": "text/plain", "file_size": 1808, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}, "hash": "46d438ed0c99e6e9fd3ca514fb940cd296d800f00dba6e80a4a70031791c4dc2", "class_name": "RelatedNodeInfo"}}, "text": "TINY TALES FROM THE MAHABHARATA:\r\nA Book of Two Hundred 100-Word Stories\r\nby Laura Gibbs\r\n\r\nCopyright 2020 by Laura Gibbs. This work is released under the terms of the Attribution - NonCommercial - ShareAlike 4.0 International (CC BY-NC-SA 4.0).\r\nVersion date: January 22, 2021\r\n\r\nABOUT THIS BOOK\r\n\r\nThe Mahabharata tells of the war between the Pandavas and Kauravas, cousins who conceived a deadly hatred for one another. The epic begins with the story of King Shantanu, the Pandavas' great-grandfather, and ends with King Janamejaya, the Pandavas' great-grandson. You will meet Draupadi, the heroine who is married to all five of the Pandava brothers, and you will also meet Krishna, the human avatar of the god Vishnu who sides with the Pandavas in the war. For first-time Mahabharata readers, I've included a list of characters in an appendix to the book, and you'll find additional notes at:\r\nMahabharata.LauraGibbs.net\r\n\r\nThe paragraph you just read about the Mahabharata is 100 words long, as is this paragraph, and that's also the length of each episode in this book. The episodes go fast, but you can slow down when you find one you like. Read it again. Let it sink in. You might even write your own versions of your favorite episodes, using your imagination to add more details. Meanwhile, if you get confused by a particular episode, don't get bogged down; just keep reading! You can find more 100-word stories from the Mahabharata, along with a \"Tiny Tales\" Ramayana, at:\r\n100Words.LauraGibbs.net\r\n\r\n\r\nSOURCES\r\n\r\nFor story-specific bibliography and notes, visit:\r\nMahabharata.LauraGibbs.net\r\n\r\nGanguli, Kisari Mohan. The Mahabharata. [Available online.]\r\nNarayan, R. K. The Mahabharata: A Shortened Modern Prose Version.\r\nPattanaik, Devdutt. Jaya: An Illustrated Retelling of the Mahabharata.", "start_char_idx": 2, "end_char_idx": 1806, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/ref_doc_info": {"b8d37ed3-5853-4e84-abaf-383854262f57": {"node_ids": ["394c9dac-edf6-460f-8d10-7fe768e2faa0", "00f48ac0-7d0e-4932-94d5-dcac9fa2f464", "b2e27a96-7e05-480c-af42-4c8d46f176a5", "4a08a25c-d4af-497c-a9c9-1242f8a70288", "35942426-973e-40ba-8ddb-dc021eef99a7", "2d0c7e31-bae9-4efd-bc6f-7cef32226c7d", "33597818-1347-4f76-82b5-9298ad6b85ec", "0bf97244-5c2a-46a2-93eb-5681b6e3603f", "05b25dd3-fcd6-4208-98cb-23898b8eb145", "6186a446-c6d5-421f-a96f-a3b0557e8f29", "44711054-f60b-48be-bac6-de1cf1a7a248", "c8cdc069-9aeb-4fbd-8742-e24d08c3110e", "7318107a-b5ef-494e-b40c-7110d5922133", "16b04150-d493-4e6a-873b-caa163919222", "454956ef-4506-409a-8b25-5347b1d44364", "1292df42-a044-42e6-8efa-55769e419713"], "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\glossary.txt", "file_name": "glossary.txt", "file_type": "text/plain", "file_size": 14661, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}}, "6aa6b25f-c497-42bb-b323-a12de8fde12d": {"node_ids": ["95c0e825-1aa3-401a-b550-3a338345ee07", "7a31b6eb-af47-4d34-9f2a-26ba64b2132b", "faa0d074-69af-4556-b6d5-0e11f5deacaa", "636c1409-349f-4f40-9393-4ceec55a5fdc", "f22be064-6012-4722-a832-a61abf306896", "53f5faff-bf43-4d45-a7c4-147fbc37536f", "b3444ff9-4f43-490b-a0b9-dc866de39ee4", "25bb1a78-5d33-4084-95c3-d35004d19e14", "b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba", "87ead4aa-923c-424d-834e-7c1ae7f2b7ea", "7d6cf556-eaa4-4670-8729-534daa57c8f7", "b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a", "f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41", "884f1a2d-bc91-4e73-89bb-970fbdd681b0", "862dbfdd-c488-4f3a-91b5-c339bc5f16bb", "53f6a2ac-8c4f-45b9-906b-04d3d023970b", "c1056adb-88bc-4b55-813f-b36ca57ab40a", "3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7", "b607bba1-a2e4-46bb-b3c9-860812bc7f98", "70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6", "959ecb33-6cbf-4d64-83df-89efff550a84", "e82c6ebc-eedb-4585-b85a-b25eb370b24c", "8f0fec39-2a1f-4177-801d-bf302b6f63a1", "cba8f07c-ed18-4ebb-911d-c1dc1ccbb490", "300c85a4-9959-45d3-ac1d-29dab974439d", "a983ffb9-1bdc-4ee5-8fe2-25324d423cd1", "9f9746bb-a323-4f71-86a3-cc9695cab68f", "5fde48b8-41f2-449a-b8e7-acd042828b18", "53760522-dbe6-4ac0-8639-cf27672ecb67", "ff57d127-4592-40df-a7f3-d3775d9dda96", "679c948a-9f6c-4fb6-96a3-5140a1d414ea", "c1b4432b-c5f5-4740-95c6-65ea65531886", "9edd2eb0-12b6-4c60-a46d-cd8e72094039", "b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b", "aae7cfcc-6c08-453f-ab0c-5ff181a9179c", "8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff", "bc1eb1f4-4b90-4895-a9bb-85ca16a878b5", "d93294c3-17e5-4aaa-884e-5512c0c0efb3", "137b3a3c-65e3-438c-ae73-8ccc28f98989", "678ed4e5-6404-4e3e-930d-8a207e7e7f9e", "91a3813d-a46d-4d95-912d-81720be7f257", "1ed6bef4-1638-404b-b411-c62b323fb53d", "39ea826e-14f0-4873-b261-c728416c70d6", "ba61c6e8-8551-45a2-9553-eb9a23327a2a", "239b1b79-9c6c-45a2-8a7d-23907d3d49cd", "247ce3dd-5212-4993-aef1-f0b3f2b2b74b", "045f61f9-9293-4f49-b6a3-d469a97bdd40", "4dde6faa-dedf-46ac-a4f9-c1a88f5bc984", "087ce84a-d71a-4509-b1c4-02eed6a01c55", "3f258c1f-302b-4608-8d7f-e978d750bb94", "b0788e95-0eb3-4781-a5c4-6ab254dde2b4", "caea2eb3-2440-402b-a754-d7241b778d0c", "ce5339e2-00c6-4d41-968b-ec5df76094a2", "fe23a794-14f9-4bb1-a9af-04af7c6af177", "7f149944-d172-468e-a92a-f912b0b26588", "866fbd24-cf42-4960-93a6-a278757af43f", "07cf6531-4e64-4af4-b460-1d18d4faca07", "39984902-5d3c-42d9-85df-e181705d91db", "49cf8419-286b-45b6-b988-2391c4f5e938", "707c2bc5-7953-4801-bbb2-23cdba3b6e37", "727f69f9-c74c-4dfc-875a-b00f9dd8a474", "5f138b06-5f92-4c93-821f-3ab574291705", "3d0dcede-eb5e-41a9-8833-7b47a735a513", "d5cb66d8-0121-41b0-8622-71f33c008d06", "8db11bd6-7d27-4424-b353-23f702906949", "3df58f33-ab5b-458c-801a-0495b7bf7f36", "f2c24cce-05fc-4cc0-912b-6a88b122e069", "7264d468-2455-4b35-b331-6195c8c8b928", "ab546a42-b0aa-4a4e-a411-32be5422b8cb", "43f99e98-de95-4dbb-bc53-9ec7f304c384", "255e1ca5-3563-4b20-8349-2167ee5fd3f9", "f38b34af-f8a3-406f-8721-ff6b81fba668", "e5edb519-c22d-4cc9-972e-f77b5d9a847c", "ba86faf6-bc16-48e7-abbb-462a2fb6d0f3", "96cc4aa4-b416-414e-acdd-9a35ee84eef1", "276cbe98-8f2b-4a17-a108-ba152936e64b", "e2204911-729c-4071-a5a9-d0929f7624b9", "4aecb527-1848-4012-913d-a9224fed74f7", "c7cee09a-69d5-4164-a802-929633e929fc", "d72026e6-8981-4646-a2aa-f11abe39ee29", "88e6f3ff-27c3-4483-9ac0-09d2d26b375b", "f63a4a3e-d832-4c72-9c51-acb38581be96", "9c95fe58-257d-492e-91dd-12dfde2c9b30", "b049e56c-c3b5-451f-b328-61a3d402a490", "9f9d7ac2-3a52-4209-a612-a3794d2d58f1", "365f6410-d20c-4335-b1cf-2d7930998c5b", "d926438b-e71f-4f0e-95d1-7001ae36c6a8", "a0cb8359-3051-4858-b90b-781dbb3e58f9", "9dd03b9a-253b-42c9-b15a-423846fbd0be", "981a4157-1137-47cf-9800-5dd6a7c228b0", "9abd9405-55a9-4d13-8ba2-40320a078460", "9af733fa-f391-4c75-b19d-473c39a24b31", "986d02bb-c253-43cd-9327-ef021633ec9c", "eca36859-775c-49bf-a08a-4857f3a2db0b", "6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71", "283a69e0-0505-4ad0-a408-8fdd7b248630", "bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046", "0e54bae5-ac11-4559-a33e-b44322f831cf", "9bc60d7e-bc1b-4217-ad63-2dc3da936675", "90cca82e-664f-445b-bd5f-04c51061ca74", "fc5915cc-ba5a-408a-a36a-ee6ea2d663de", "c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7", "5cf82a63-947d-4b5a-817e-482767927e49", "c3564b7f-c9b5-4152-9176-c5e4f64076cf", "0fbaad3b-553c-4cde-bc8f-51c1001280dd", "065a0519-9216-4d9d-ac5c-74e8811f5f4c", "a78b0967-45af-4804-a706-7989c942dae7", "30900bf0-7814-4adf-bdf7-adf52c018283", "7cbc4388-d621-4238-98da-22913b684ab8", "b36e4b7d-f46c-4934-810f-2b4d9c71aff0", "32054d58-0f2d-4904-9802-5ba83f0494f7", "7943ca32-20c1-4d02-8565-47383c9d26d1", "940653d8-76b4-492d-9564-1cad868963e8", "f13b02ca-0937-4928-8c7c-7aa944292c98", "a0c3e794-d4d9-4f13-ad96-69923bf15366", "5af05e5b-2747-4c9f-99f3-cfc98be0b43d", "7321ed9b-9841-4fda-b805-2dc6cd5c6c63", "5d8b1db0-d78f-4982-8b6b-e83a6ca8600d", "d90ad960-a3c2-473c-a61f-0725b4354690", "27d3c00c-c824-410a-b23c-a46312a398b5", "8547e0e0-3bfa-40d6-9e96-e645d4e7de70", "e55bef39-937d-47e6-ac42-68455994076e", "c315e6be-d862-411c-9881-e6f482a97b77", "88434af3-c6aa-4172-9365-434929f65f44", "743f653f-7bc9-4e47-8a7b-ee3da4505e28", "b3cf7695-1a41-4b75-bc07-fb9c11b286e8", "faeda718-1ed2-4c16-a6de-2901b1130c6d"], "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\mahabharata.txt", "file_name": "mahabharata.txt", "file_type": "text/plain", "file_size": 129251, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}}, "2e16a979-87c8-430c-96ce-5b741d967b01": {"node_ids": ["159d48c8-fd13-4c95-803f-2911e9c61799"], "metadata": {"file_path": "C:\\Users\\User\\PycharmProjects\\motleycrew\\mahabharata\\text\\TinyTales\\sources.txt", "file_name": "sources.txt", "file_type": "text/plain", "file_size": 1808, "creation_date": "2024-06-14", "last_modified_date": "2024-06-14"}}}} \ No newline at end of file diff --git a/examples/data/research_agent_storage/graph_store.json b/examples/data/research_agent_storage/graph_store.json new file mode 100644 index 00000000..9aab8ead --- /dev/null +++ b/examples/data/research_agent_storage/graph_store.json @@ -0,0 +1 @@ +{"graph_dict": {}} \ No newline at end of file diff --git a/examples/data/research_agent_storage/image__vector_store.json b/examples/data/research_agent_storage/image__vector_store.json new file mode 100644 index 00000000..8534c56d --- /dev/null +++ b/examples/data/research_agent_storage/image__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {}} \ No newline at end of file diff --git a/examples/data/research_agent_storage/index_store.json b/examples/data/research_agent_storage/index_store.json new file mode 100644 index 00000000..aa0c3172 --- /dev/null +++ b/examples/data/research_agent_storage/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"79d69843-9180-402d-8ea0-170c1d89ecaf": {"__type__": "vector_store", "__data__": "{\"index_id\": \"79d69843-9180-402d-8ea0-170c1d89ecaf\", \"summary\": null, \"nodes_dict\": {\"394c9dac-edf6-460f-8d10-7fe768e2faa0\": \"394c9dac-edf6-460f-8d10-7fe768e2faa0\", \"00f48ac0-7d0e-4932-94d5-dcac9fa2f464\": \"00f48ac0-7d0e-4932-94d5-dcac9fa2f464\", \"b2e27a96-7e05-480c-af42-4c8d46f176a5\": \"b2e27a96-7e05-480c-af42-4c8d46f176a5\", \"4a08a25c-d4af-497c-a9c9-1242f8a70288\": \"4a08a25c-d4af-497c-a9c9-1242f8a70288\", \"35942426-973e-40ba-8ddb-dc021eef99a7\": \"35942426-973e-40ba-8ddb-dc021eef99a7\", \"2d0c7e31-bae9-4efd-bc6f-7cef32226c7d\": \"2d0c7e31-bae9-4efd-bc6f-7cef32226c7d\", \"33597818-1347-4f76-82b5-9298ad6b85ec\": \"33597818-1347-4f76-82b5-9298ad6b85ec\", \"0bf97244-5c2a-46a2-93eb-5681b6e3603f\": \"0bf97244-5c2a-46a2-93eb-5681b6e3603f\", \"05b25dd3-fcd6-4208-98cb-23898b8eb145\": \"05b25dd3-fcd6-4208-98cb-23898b8eb145\", \"6186a446-c6d5-421f-a96f-a3b0557e8f29\": \"6186a446-c6d5-421f-a96f-a3b0557e8f29\", \"44711054-f60b-48be-bac6-de1cf1a7a248\": \"44711054-f60b-48be-bac6-de1cf1a7a248\", \"c8cdc069-9aeb-4fbd-8742-e24d08c3110e\": \"c8cdc069-9aeb-4fbd-8742-e24d08c3110e\", \"7318107a-b5ef-494e-b40c-7110d5922133\": \"7318107a-b5ef-494e-b40c-7110d5922133\", \"16b04150-d493-4e6a-873b-caa163919222\": \"16b04150-d493-4e6a-873b-caa163919222\", \"454956ef-4506-409a-8b25-5347b1d44364\": \"454956ef-4506-409a-8b25-5347b1d44364\", \"1292df42-a044-42e6-8efa-55769e419713\": \"1292df42-a044-42e6-8efa-55769e419713\", \"95c0e825-1aa3-401a-b550-3a338345ee07\": \"95c0e825-1aa3-401a-b550-3a338345ee07\", \"7a31b6eb-af47-4d34-9f2a-26ba64b2132b\": \"7a31b6eb-af47-4d34-9f2a-26ba64b2132b\", \"faa0d074-69af-4556-b6d5-0e11f5deacaa\": \"faa0d074-69af-4556-b6d5-0e11f5deacaa\", \"636c1409-349f-4f40-9393-4ceec55a5fdc\": \"636c1409-349f-4f40-9393-4ceec55a5fdc\", \"f22be064-6012-4722-a832-a61abf306896\": \"f22be064-6012-4722-a832-a61abf306896\", \"53f5faff-bf43-4d45-a7c4-147fbc37536f\": \"53f5faff-bf43-4d45-a7c4-147fbc37536f\", \"b3444ff9-4f43-490b-a0b9-dc866de39ee4\": \"b3444ff9-4f43-490b-a0b9-dc866de39ee4\", \"25bb1a78-5d33-4084-95c3-d35004d19e14\": \"25bb1a78-5d33-4084-95c3-d35004d19e14\", \"b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba\": \"b4e1cc7e-83a4-4f0d-9538-3ca9793a10ba\", \"87ead4aa-923c-424d-834e-7c1ae7f2b7ea\": \"87ead4aa-923c-424d-834e-7c1ae7f2b7ea\", \"7d6cf556-eaa4-4670-8729-534daa57c8f7\": \"7d6cf556-eaa4-4670-8729-534daa57c8f7\", \"b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a\": \"b19fcf4e-e8c7-4ce3-bcf8-afdd83eb155a\", \"f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41\": \"f9758812-c6e4-4e7a-be4c-ca2a8e4b3e41\", \"884f1a2d-bc91-4e73-89bb-970fbdd681b0\": \"884f1a2d-bc91-4e73-89bb-970fbdd681b0\", \"862dbfdd-c488-4f3a-91b5-c339bc5f16bb\": \"862dbfdd-c488-4f3a-91b5-c339bc5f16bb\", \"53f6a2ac-8c4f-45b9-906b-04d3d023970b\": \"53f6a2ac-8c4f-45b9-906b-04d3d023970b\", \"c1056adb-88bc-4b55-813f-b36ca57ab40a\": \"c1056adb-88bc-4b55-813f-b36ca57ab40a\", \"3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7\": \"3326c8b3-7f4b-4e13-b2b3-c9d63edff9e7\", \"b607bba1-a2e4-46bb-b3c9-860812bc7f98\": \"b607bba1-a2e4-46bb-b3c9-860812bc7f98\", \"70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6\": \"70ac8eae-27d2-4c2a-b1e6-16fb6b2bd4d6\", \"959ecb33-6cbf-4d64-83df-89efff550a84\": \"959ecb33-6cbf-4d64-83df-89efff550a84\", \"e82c6ebc-eedb-4585-b85a-b25eb370b24c\": \"e82c6ebc-eedb-4585-b85a-b25eb370b24c\", \"8f0fec39-2a1f-4177-801d-bf302b6f63a1\": \"8f0fec39-2a1f-4177-801d-bf302b6f63a1\", \"cba8f07c-ed18-4ebb-911d-c1dc1ccbb490\": \"cba8f07c-ed18-4ebb-911d-c1dc1ccbb490\", \"300c85a4-9959-45d3-ac1d-29dab974439d\": \"300c85a4-9959-45d3-ac1d-29dab974439d\", \"a983ffb9-1bdc-4ee5-8fe2-25324d423cd1\": \"a983ffb9-1bdc-4ee5-8fe2-25324d423cd1\", \"9f9746bb-a323-4f71-86a3-cc9695cab68f\": \"9f9746bb-a323-4f71-86a3-cc9695cab68f\", \"5fde48b8-41f2-449a-b8e7-acd042828b18\": \"5fde48b8-41f2-449a-b8e7-acd042828b18\", \"53760522-dbe6-4ac0-8639-cf27672ecb67\": \"53760522-dbe6-4ac0-8639-cf27672ecb67\", \"ff57d127-4592-40df-a7f3-d3775d9dda96\": \"ff57d127-4592-40df-a7f3-d3775d9dda96\", \"679c948a-9f6c-4fb6-96a3-5140a1d414ea\": \"679c948a-9f6c-4fb6-96a3-5140a1d414ea\", \"c1b4432b-c5f5-4740-95c6-65ea65531886\": \"c1b4432b-c5f5-4740-95c6-65ea65531886\", \"9edd2eb0-12b6-4c60-a46d-cd8e72094039\": \"9edd2eb0-12b6-4c60-a46d-cd8e72094039\", \"b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b\": \"b4b7ac28-36cf-47c9-8b4f-bdd3c46ec51b\", \"aae7cfcc-6c08-453f-ab0c-5ff181a9179c\": \"aae7cfcc-6c08-453f-ab0c-5ff181a9179c\", \"8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff\": \"8e3eb9ff-8baf-4340-b4f8-6cb77dd3fdff\", \"bc1eb1f4-4b90-4895-a9bb-85ca16a878b5\": \"bc1eb1f4-4b90-4895-a9bb-85ca16a878b5\", \"d93294c3-17e5-4aaa-884e-5512c0c0efb3\": \"d93294c3-17e5-4aaa-884e-5512c0c0efb3\", \"137b3a3c-65e3-438c-ae73-8ccc28f98989\": \"137b3a3c-65e3-438c-ae73-8ccc28f98989\", \"678ed4e5-6404-4e3e-930d-8a207e7e7f9e\": \"678ed4e5-6404-4e3e-930d-8a207e7e7f9e\", \"91a3813d-a46d-4d95-912d-81720be7f257\": \"91a3813d-a46d-4d95-912d-81720be7f257\", \"1ed6bef4-1638-404b-b411-c62b323fb53d\": \"1ed6bef4-1638-404b-b411-c62b323fb53d\", \"39ea826e-14f0-4873-b261-c728416c70d6\": \"39ea826e-14f0-4873-b261-c728416c70d6\", \"ba61c6e8-8551-45a2-9553-eb9a23327a2a\": \"ba61c6e8-8551-45a2-9553-eb9a23327a2a\", \"239b1b79-9c6c-45a2-8a7d-23907d3d49cd\": \"239b1b79-9c6c-45a2-8a7d-23907d3d49cd\", \"247ce3dd-5212-4993-aef1-f0b3f2b2b74b\": \"247ce3dd-5212-4993-aef1-f0b3f2b2b74b\", \"045f61f9-9293-4f49-b6a3-d469a97bdd40\": \"045f61f9-9293-4f49-b6a3-d469a97bdd40\", \"4dde6faa-dedf-46ac-a4f9-c1a88f5bc984\": \"4dde6faa-dedf-46ac-a4f9-c1a88f5bc984\", \"087ce84a-d71a-4509-b1c4-02eed6a01c55\": \"087ce84a-d71a-4509-b1c4-02eed6a01c55\", \"3f258c1f-302b-4608-8d7f-e978d750bb94\": \"3f258c1f-302b-4608-8d7f-e978d750bb94\", \"b0788e95-0eb3-4781-a5c4-6ab254dde2b4\": \"b0788e95-0eb3-4781-a5c4-6ab254dde2b4\", \"caea2eb3-2440-402b-a754-d7241b778d0c\": \"caea2eb3-2440-402b-a754-d7241b778d0c\", \"ce5339e2-00c6-4d41-968b-ec5df76094a2\": \"ce5339e2-00c6-4d41-968b-ec5df76094a2\", \"fe23a794-14f9-4bb1-a9af-04af7c6af177\": \"fe23a794-14f9-4bb1-a9af-04af7c6af177\", \"7f149944-d172-468e-a92a-f912b0b26588\": \"7f149944-d172-468e-a92a-f912b0b26588\", \"866fbd24-cf42-4960-93a6-a278757af43f\": \"866fbd24-cf42-4960-93a6-a278757af43f\", \"07cf6531-4e64-4af4-b460-1d18d4faca07\": \"07cf6531-4e64-4af4-b460-1d18d4faca07\", \"39984902-5d3c-42d9-85df-e181705d91db\": \"39984902-5d3c-42d9-85df-e181705d91db\", \"49cf8419-286b-45b6-b988-2391c4f5e938\": \"49cf8419-286b-45b6-b988-2391c4f5e938\", \"707c2bc5-7953-4801-bbb2-23cdba3b6e37\": \"707c2bc5-7953-4801-bbb2-23cdba3b6e37\", \"727f69f9-c74c-4dfc-875a-b00f9dd8a474\": \"727f69f9-c74c-4dfc-875a-b00f9dd8a474\", \"5f138b06-5f92-4c93-821f-3ab574291705\": \"5f138b06-5f92-4c93-821f-3ab574291705\", \"3d0dcede-eb5e-41a9-8833-7b47a735a513\": \"3d0dcede-eb5e-41a9-8833-7b47a735a513\", \"d5cb66d8-0121-41b0-8622-71f33c008d06\": \"d5cb66d8-0121-41b0-8622-71f33c008d06\", \"8db11bd6-7d27-4424-b353-23f702906949\": \"8db11bd6-7d27-4424-b353-23f702906949\", \"3df58f33-ab5b-458c-801a-0495b7bf7f36\": \"3df58f33-ab5b-458c-801a-0495b7bf7f36\", \"f2c24cce-05fc-4cc0-912b-6a88b122e069\": \"f2c24cce-05fc-4cc0-912b-6a88b122e069\", \"7264d468-2455-4b35-b331-6195c8c8b928\": \"7264d468-2455-4b35-b331-6195c8c8b928\", \"ab546a42-b0aa-4a4e-a411-32be5422b8cb\": \"ab546a42-b0aa-4a4e-a411-32be5422b8cb\", \"43f99e98-de95-4dbb-bc53-9ec7f304c384\": \"43f99e98-de95-4dbb-bc53-9ec7f304c384\", \"255e1ca5-3563-4b20-8349-2167ee5fd3f9\": \"255e1ca5-3563-4b20-8349-2167ee5fd3f9\", \"f38b34af-f8a3-406f-8721-ff6b81fba668\": \"f38b34af-f8a3-406f-8721-ff6b81fba668\", \"e5edb519-c22d-4cc9-972e-f77b5d9a847c\": \"e5edb519-c22d-4cc9-972e-f77b5d9a847c\", \"ba86faf6-bc16-48e7-abbb-462a2fb6d0f3\": \"ba86faf6-bc16-48e7-abbb-462a2fb6d0f3\", \"96cc4aa4-b416-414e-acdd-9a35ee84eef1\": \"96cc4aa4-b416-414e-acdd-9a35ee84eef1\", \"276cbe98-8f2b-4a17-a108-ba152936e64b\": \"276cbe98-8f2b-4a17-a108-ba152936e64b\", \"e2204911-729c-4071-a5a9-d0929f7624b9\": \"e2204911-729c-4071-a5a9-d0929f7624b9\", \"4aecb527-1848-4012-913d-a9224fed74f7\": \"4aecb527-1848-4012-913d-a9224fed74f7\", \"c7cee09a-69d5-4164-a802-929633e929fc\": \"c7cee09a-69d5-4164-a802-929633e929fc\", \"d72026e6-8981-4646-a2aa-f11abe39ee29\": \"d72026e6-8981-4646-a2aa-f11abe39ee29\", \"88e6f3ff-27c3-4483-9ac0-09d2d26b375b\": \"88e6f3ff-27c3-4483-9ac0-09d2d26b375b\", \"f63a4a3e-d832-4c72-9c51-acb38581be96\": \"f63a4a3e-d832-4c72-9c51-acb38581be96\", \"9c95fe58-257d-492e-91dd-12dfde2c9b30\": \"9c95fe58-257d-492e-91dd-12dfde2c9b30\", \"b049e56c-c3b5-451f-b328-61a3d402a490\": \"b049e56c-c3b5-451f-b328-61a3d402a490\", \"9f9d7ac2-3a52-4209-a612-a3794d2d58f1\": \"9f9d7ac2-3a52-4209-a612-a3794d2d58f1\", \"365f6410-d20c-4335-b1cf-2d7930998c5b\": \"365f6410-d20c-4335-b1cf-2d7930998c5b\", \"d926438b-e71f-4f0e-95d1-7001ae36c6a8\": \"d926438b-e71f-4f0e-95d1-7001ae36c6a8\", \"a0cb8359-3051-4858-b90b-781dbb3e58f9\": \"a0cb8359-3051-4858-b90b-781dbb3e58f9\", \"9dd03b9a-253b-42c9-b15a-423846fbd0be\": \"9dd03b9a-253b-42c9-b15a-423846fbd0be\", \"981a4157-1137-47cf-9800-5dd6a7c228b0\": \"981a4157-1137-47cf-9800-5dd6a7c228b0\", \"9abd9405-55a9-4d13-8ba2-40320a078460\": \"9abd9405-55a9-4d13-8ba2-40320a078460\", \"9af733fa-f391-4c75-b19d-473c39a24b31\": \"9af733fa-f391-4c75-b19d-473c39a24b31\", \"986d02bb-c253-43cd-9327-ef021633ec9c\": \"986d02bb-c253-43cd-9327-ef021633ec9c\", \"eca36859-775c-49bf-a08a-4857f3a2db0b\": \"eca36859-775c-49bf-a08a-4857f3a2db0b\", \"6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71\": \"6e2f3ec3-d2b9-4dcc-b2ab-d0a4c4c0cd71\", \"283a69e0-0505-4ad0-a408-8fdd7b248630\": \"283a69e0-0505-4ad0-a408-8fdd7b248630\", \"bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046\": \"bd7b7fb8-3a1e-42a1-a4ff-6fe4e2b9d046\", \"0e54bae5-ac11-4559-a33e-b44322f831cf\": \"0e54bae5-ac11-4559-a33e-b44322f831cf\", \"9bc60d7e-bc1b-4217-ad63-2dc3da936675\": \"9bc60d7e-bc1b-4217-ad63-2dc3da936675\", \"90cca82e-664f-445b-bd5f-04c51061ca74\": \"90cca82e-664f-445b-bd5f-04c51061ca74\", \"fc5915cc-ba5a-408a-a36a-ee6ea2d663de\": \"fc5915cc-ba5a-408a-a36a-ee6ea2d663de\", \"c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7\": \"c3185f68-2bc3-4949-a8a2-bcdedd6dd8b7\", \"5cf82a63-947d-4b5a-817e-482767927e49\": \"5cf82a63-947d-4b5a-817e-482767927e49\", \"c3564b7f-c9b5-4152-9176-c5e4f64076cf\": \"c3564b7f-c9b5-4152-9176-c5e4f64076cf\", \"0fbaad3b-553c-4cde-bc8f-51c1001280dd\": \"0fbaad3b-553c-4cde-bc8f-51c1001280dd\", \"065a0519-9216-4d9d-ac5c-74e8811f5f4c\": \"065a0519-9216-4d9d-ac5c-74e8811f5f4c\", \"a78b0967-45af-4804-a706-7989c942dae7\": \"a78b0967-45af-4804-a706-7989c942dae7\", \"30900bf0-7814-4adf-bdf7-adf52c018283\": \"30900bf0-7814-4adf-bdf7-adf52c018283\", \"7cbc4388-d621-4238-98da-22913b684ab8\": \"7cbc4388-d621-4238-98da-22913b684ab8\", \"b36e4b7d-f46c-4934-810f-2b4d9c71aff0\": \"b36e4b7d-f46c-4934-810f-2b4d9c71aff0\", \"32054d58-0f2d-4904-9802-5ba83f0494f7\": \"32054d58-0f2d-4904-9802-5ba83f0494f7\", \"7943ca32-20c1-4d02-8565-47383c9d26d1\": \"7943ca32-20c1-4d02-8565-47383c9d26d1\", \"940653d8-76b4-492d-9564-1cad868963e8\": \"940653d8-76b4-492d-9564-1cad868963e8\", \"f13b02ca-0937-4928-8c7c-7aa944292c98\": \"f13b02ca-0937-4928-8c7c-7aa944292c98\", \"a0c3e794-d4d9-4f13-ad96-69923bf15366\": \"a0c3e794-d4d9-4f13-ad96-69923bf15366\", \"5af05e5b-2747-4c9f-99f3-cfc98be0b43d\": \"5af05e5b-2747-4c9f-99f3-cfc98be0b43d\", \"7321ed9b-9841-4fda-b805-2dc6cd5c6c63\": \"7321ed9b-9841-4fda-b805-2dc6cd5c6c63\", \"5d8b1db0-d78f-4982-8b6b-e83a6ca8600d\": \"5d8b1db0-d78f-4982-8b6b-e83a6ca8600d\", \"d90ad960-a3c2-473c-a61f-0725b4354690\": \"d90ad960-a3c2-473c-a61f-0725b4354690\", \"27d3c00c-c824-410a-b23c-a46312a398b5\": \"27d3c00c-c824-410a-b23c-a46312a398b5\", \"8547e0e0-3bfa-40d6-9e96-e645d4e7de70\": \"8547e0e0-3bfa-40d6-9e96-e645d4e7de70\", \"e55bef39-937d-47e6-ac42-68455994076e\": \"e55bef39-937d-47e6-ac42-68455994076e\", \"c315e6be-d862-411c-9881-e6f482a97b77\": \"c315e6be-d862-411c-9881-e6f482a97b77\", \"88434af3-c6aa-4172-9365-434929f65f44\": \"88434af3-c6aa-4172-9365-434929f65f44\", \"743f653f-7bc9-4e47-8a7b-ee3da4505e28\": \"743f653f-7bc9-4e47-8a7b-ee3da4505e28\", \"b3cf7695-1a41-4b75-bc07-fb9c11b286e8\": \"b3cf7695-1a41-4b75-bc07-fb9c11b286e8\", \"faeda718-1ed2-4c16-a6de-2901b1130c6d\": \"faeda718-1ed2-4c16-a6de-2901b1130c6d\", \"159d48c8-fd13-4c95-803f-2911e9c61799\": \"159d48c8-fd13-4c95-803f-2911e9c61799\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file