Chapter 58
gpt action pinecone retool rag
This notebook provides a step-by-step guide for using Pinecone as a vector database to store OpenAI embeddings. As an example, it demonstrates how to integrate this setup with Retool to create a REST endpoint, enabling seamless interaction with ChatGPT as an action. However, Retool is just one of many approaches available for connecting your Pinecone database to ChatGPT.
Pinecone is a fully managed vector database designed for storing, indexing, and querying large-scale vector embeddings. It enables fast and efficient similarity searches, making it ideal for AI-powered applications like recommendation systems, semantic search, and natural language processing.
Retool is a low-code platform that simplifies building custom internal tools by connecting to databases, APIs, and third-party services. It enables users to create powerful, user-friendly interfaces and workflows with minimal coding, making it ideal for streamlining business operations and integrating complex systems.
Pre-requisites
- A Pinecone account
- A Retool account
- A Custom GPT with actions enabled
- An OpenAI API key
Table of Contents
- Setup Pinecone
- Setup Notebook
- Prepare Data
- Create a Pinecone Index
- Populate the Pinecone Index
- Create a Retool Workflow
- Create a Custom GPT Action
Setup Pinecone
If you haven't got a Pinecone account, sign up for an account. You're ready to move on to the next section once you get the following screen. Go to API Keys and create a new API key.

Setup Notebook
Install required libraries from OpenAI and Pinecone.
!pip install -qU openai pineconeImport the OpenAI and Pinecone libraries.
from pinecone.grpc import PineconeGRPC as Pinecone
from pinecone import ServerlessSpec
from openai import OpenAI
client = OpenAI()
pc = Pinecone(api_key="YOUR API KEY")
## OpenAI key by default is set to the environment variable `OPENAI_API_KEY`Prepare Data
Define a sample dataset to embed store in Pinecone and to search over from ChatGPT.
data = [
{"id": "vec1", "text": "OpenAI is a leading AI research organization focused on advancing artificial intelligence."},
{"id": "vec2", "text": "The ChatGPT platform is renowned for its natural language processing capabilities."},
{"id": "vec3", "text": "Many users leverage ChatGPT for tasks like creative writing, coding assistance, and customer support."},
{"id": "vec4", "text": "OpenAI has revolutionized AI development with innovations like GPT-4 and its user-friendly APIs."},
{"id": "vec5", "text": "ChatGPT makes AI-powered conversations accessible to millions, enhancing productivity and creativity."},
{"id": "vec6", "text": "OpenAI was founded in December 2015 as an organization dedicated to advancing digital intelligence for the benefit of humanity."}
]We are now ready to convert the text to embeddings. The example below is the most simple implementation of this function. If your text is longer than the context window of the model you are using, you will need to chunk the text into smaller pieces.
def embed(text):
text = text.replace("\n", " ") # Ensure text doesn't have newlines
res = client.embeddings.create(input=[text], model="text-embedding-3-large")
return res.data[0].embedding
doc_embeds = [embed(d["text"]) for d in data]
print(doc_embeds)Output
[[-0.014436143450438976, 0.036902640014886856, -0.012699315324425697, -0.01584937982261181, -0.008578476496040821, 0.02739301137626171, 0.009020938538014889, 0.026151476427912712, 0.005854364484548569, 0.013630466535687447, -0.019455114379525185, -0.005824646912515163, 0.0029750606045126915, 0.002575524151325226, -0.02570241130888462, 0.011497404426336288, 0.01334649883210659, 0.008915276266634464, -0.0016864730278030038, -0.04960855841636658, 0.004081215243786573, -0.022558949887752533, -0.011193624697625637, -0.0034934673458337784, 0.013280459679663181, -0.005114726722240448, 0.01757960394024849, 0.01596825011074543, -0.06202390417456627, 0.02364199049770832, 0.043136727064847946, -0.0127917705103755, 0.006006254348903894, -0.020736271515488625, -0.024447668343782425, 0.03394408896565437, 0.025398630648851395, 0.01868906058371067, -0.005874176509678364, 0.024857111275196075, 0.041604623198509216, -0.028000570833683014, -0.016166366636753082, 0.0027885001618415117, 0.017672058194875717, -0.005068499594926834, 0.020207958295941353, -0.03222707286477089, -0.030562886968255043, 0.003688282798975706, 0.020353244617581367, -0.0037477179430425167, 0.04355937987565994, -0.014568221755325794, -0.027340179309248924, -0.02442125231027603, 0.038936641067266464, 0.00781902763992548, 0.054204877465963364, -0.019006047397851944, 0.008169034495949745, 0.03515920788049698, -0.03354785218834877, 0.0065477751195430756, 0.02216271683573723, -0.020366452634334564, 0.029849665239453316, 0.01204552873969078, -0.007310526445508003, 0.055895477533340454, -0.04625377431511879, -0.017751304432749748, -0.06028047576546669, 0.02583448961377144, 0.013894623145461082, 0.014013493433594704, 0.01617957465350628, 0.017064498737454414, -0.014277649112045765, -0.0006661692168563604, 0.010645500384271145, -0.017843760550022125, -0.006102011073380709, 0.0011631132801994681, 0.0049000997096300125, 0.02290235459804535, 0.03640074282884598, -0.05769174173474312, 0.02306084707379341, -0.01717016100883484, -0.03830266743898392, 0.056635115295648575, -0.0395970344543457, 0.004870382137596607, 0.020062673836946487, -0.01880793087184429, -0.01757960394024849, 0.015955042093992233, 0.0096945371478796, 0.01820037141442299, -0.006788817699998617, -0.01633806899189949, 0.02426275797188282, -0.0041967835277318954, -0.0400196835398674, -0.007713364902883768, -0.0073633575811982155, 0.008961503393948078, -0.027208101004362106, 0.06461263447999954, 0.017711682245135307, 0.001751686679199338, -0.04295181855559349, 0.0036156396381556988, -0.04281974211335182, 0.040917813777923584, -0.03537053242325783, 0.027472257614135742, 0.003179781837388873, -0.007039766293019056, -0.025636371225118637, -0.0017748003592714667, 0.022809898480772972, -0.05689927190542221, -0.010698331519961357, 0.030272314324975014, 0.01018983032554388, -0.005930309649556875, 0.00651805754750967, 0.02158157154917717, -0.02781566232442856, 0.05293692648410797, -0.015439937822520733, 0.02463257685303688, 0.006039273925125599, 0.025675995275378227, 0.02339104376733303, 0.03700830042362213, 0.015822963789105415, 0.01802866905927658, -0.017421109601855278, -0.0140267014503479, -0.03214782476425171, 0.003453843994066119, -0.03943853825330734, -0.0028429825324565172, 0.02442125231027603, 0.07295997440814972, 0.005418506916612387, -0.01853056624531746, -0.028528884053230286, 0.03106478415429592, -0.007402981165796518, -0.025966567918658257, -0.0002705538645386696, -0.032702554017305374, -0.010546441189944744, 0.005864270497113466, 0.002002635272219777, 0.026798659935593605, 0.03198933228850365, 0.009417173452675343, 0.05124632641673088, 0.0453820563852787, 0.008360547944903374, 0.042687661945819855, 0.003701490582898259, 0.021145714446902275, -0.06175975129008293, 0.03346860781311989, 0.035053543746471405, 0.011464384384453297, 0.0031880366150289774, -0.02343066595494747, -0.03193650022149086, 0.005785023793578148, 0.0037345101591199636, -0.006623719818890095, 0.016813550144433975, 0.03957061842083931, -0.0077926116064190865, 0.006699664983898401, 0.02657412737607956, 0.002826472744345665, 0.013016303069889545, -0.00030439888359978795, 0.05911818519234657, 0.03267613798379898, 0.012527613900601864, 0.017804136499762535, 0.03885739669203758, -0.03869890049099922, -0.011972885578870773, -0.0037609257269650698, 0.006310034077614546, 0.018213579431176186, -0.02273065224289894, -0.004517073277384043, -0.010962487198412418, -0.026706205680966377, 0.013722921721637249, -0.015941834077239037, 0.008750177919864655, 0.022664612159132957, -0.004810946993529797, 0.036823391914367676, 0.02236083336174488, -0.016285236924886703, -0.019613606855273247, -0.01608712039887905, -0.00627041095867753, -0.014198402874171734, -0.014436143450438976, -0.047680217772722244, 0.013881415128707886, 0.012771958485245705, -0.029849665239453316, 0.03780077025294304, 0.016906004399061203, 0.018636228516697884, -0.05631813034415245, 0.03452523052692413, 0.0045368848368525505, -0.03354785218834877, 0.00806337222456932, -0.05293692648410797, 0.01930982805788517, -0.041525375097990036, -3.033670327567961e-05, 0.004635943565517664, -0.0262043084949255, 0.0039689489640295506, 0.04865759611129761, 0.01769847422838211, 0.013009699061512947, -0.018913593143224716, 0.03809134289622307, -0.0027587825898081064, -0.02418351173400879, 0.03367993235588074, -0.018266409635543823, -0.0016460241749882698, -0.0041076308116316795, -0.016615433618426323, 0.04736322909593582, 0.00591049762442708, 0.009602082893252373, 0.016615433618426323, -0.00416706595569849, 0.058906860649585724, -0.026006190106272697, -0.015955042093992233, -0.02389293909072876, 0.01744752563536167, 0.0005031352629885077, -0.007574682589620352, 0.03132893890142441, -0.0033729460556060076, 0.009397361427545547, 0.02273065224289894, 0.017923006787896156, 0.03169875964522362, 0.047600969672203064, 0.0631333589553833, -0.04134046658873558, -0.022334417328238487, 0.021977806463837624, 0.01604749634861946, 0.0237212385982275, 0.03367993235588074, 0.008479418233036995, 0.020736271515488625, 0.030377978459000587, -0.010883240960538387, 0.026891114190220833, -0.0005378057830967009, 0.0022106582764536142, 0.03370634838938713, 0.028581714257597923, -0.024104265496134758, 0.0321742407977581, -0.004952931310981512, 0.06514094769954681, -0.017606019973754883, 0.004701982717961073, -0.02834397368133068, -0.026296762749552727, -0.002370803151279688, -0.049502894282341, 0.029559092596173286, -0.021938182413578033, 0.0371403805911541, 0.006108615081757307, -0.011272870935499668, -0.015149365179240704, 0.009192639961838722, 0.016364485025405884, -0.009060561656951904, -0.01188703440129757, 0.0027224612422287464, 0.013736128807067871, -0.031461019068956375, -0.023206133395433426, -0.05520867183804512, 0.025636371225118637, 0.005048688035458326, -0.005273220594972372, 0.06329185515642166, -0.011979489587247372, 0.030140237882733345, 0.0290836114436388, -0.010658707469701767, -0.027630751952528954, -0.021726857870817184, 0.021357038989663124, 0.012085151858627796, -0.010051148012280464, -0.01380216795951128, 0.028608130291104317, -0.019904179498553276, 0.05837854743003845, -0.02096080407500267, -0.022704236209392548, 0.03169875964522362, -0.022743860259652138, 0.005025574006140232, 0.017724890261888504, 0.0009154667495749891, -0.020775895565748215, -0.04147254303097725, -0.01596825011074543, -0.0627107098698616, -0.0478651262819767, -0.02541183866560459, 0.032491229474544525, -0.03272897005081177, -0.0022717444226145744, -0.0165097713470459, 0.030959121882915497, -0.028159065172076225, -0.0115502355620265, -0.05182747170329094, -0.012124775908887386, -0.011787976138293743, -0.008195450529456139, -0.021449493244290352, 0.009608686901628971, -0.0006595653248950839, 0.015188989229500294, 0.04765380173921585, 0.0005749527481384575, -0.028819454833865166, -0.002613496733829379, 0.0018986236536875367, -0.0029833156149834394, 0.007488831877708435, 0.013504992239177227, -0.0561068058013916, -0.01600787416100502, 0.03500071167945862, 0.01750035583972931, -0.004751511849462986, -0.016721095889806747, -0.00602276436984539, -0.001769847352989018, 0.011715332977473736, 0.0038467764388769865, 0.008155826479196548, 0.02644204907119274, 0.016813550144433975, -0.00045360595686361194, 0.039464954286813736, 0.010110583156347275, 0.003424126422032714, -0.013854999095201492, -0.037325289100408554, -0.03764227777719498, -0.004444430116564035, 0.016536185517907143, 0.0022981599904596806, -0.014687092043459415, 0.013670089654624462, -0.0017368278931826353, 0.043638624250888824, 0.007858650758862495, -0.017196577042341232, 0.053993552923202515, -0.04141971096396446, 0.021026844158768654, 0.034921467304229736, 0.005950121209025383, -0.03650640323758125, -0.012738939374685287, -0.02879304066300392, -0.006802025251090527, 0.028370389714837074, -0.005411902908235788, 0.01188703440129757, -0.018002253025770187, -0.04186877980828285, 0.0021512231323868036, 0.028608130291104317, 0.03201574832201004, 0.028740208595991135, -0.03650640323758125, -0.00398215651512146, -0.06186541169881821, -0.014990871772170067, -0.00029655674006789923, -0.004777927417308092, -0.007554871030151844, -0.010321908630430698, -0.026666581630706787, 0.016615433618426323, -0.013643674552440643, -0.0051246327348053455, 0.028687376528978348, -0.006577492691576481, -0.00621097581461072, 0.017090914770960808, -0.009126600809395313, 0.03537053242325783, 0.024104265496134758, 0.019415490329265594, -0.013353102840483189, -0.025345800444483757, 0.023364627733826637, 0.02797415480017662, -0.021713649854063988, -0.048340607434511185, 0.0043552774004638195, 0.00862470455467701, 0.01592862606048584, 0.0063463556580245495, -0.032042164355516434, -0.012243646197021008, 0.02797415480017662, 0.029849665239453316, -0.016153158619999886, 0.009119996801018715, -0.03875173255801201, 0.005976536776870489, 0.018253201618790627, -0.03040439262986183, -0.013538012281060219, -0.02669299766421318, 0.011999301612377167, -0.007475624326616526, 0.014739923179149628, -0.0325968898832798, -0.010031336918473244, 0.015281443484127522, -0.05637095868587494, -0.03471014276146889, 0.016866382211446762, 0.0029255312401801348, 0.0036255456507205963, 0.01981172524392605, 0.032042164355516434, -0.010975695215165615, 0.017130538821220398, 0.009905862621963024, 0.023747654631733894, -0.00923886802047491, 0.014436143450438976, 0.006442112382501364, -0.008109599351882935, -0.04514431580901146, 0.013518200255930424, 0.016575809568166733, -0.007310526445508003, -0.016364485025405884, 0.061495594680309296, 0.03592526167631149, 0.03906872123479843, 0.02348349802196026, -0.012283269315958023, -0.0016625338466838002, -0.01882113888859749, 0.031672343611717224, 0.013359705917537212, -0.00023547060845885426, -0.018794722855091095, -0.025094851851463318, -0.0028479353059083223, 0.030298730358481407, 0.02513447403907776, -0.0032061974052339792, 0.022123092785477638, -0.013762544840574265, 0.01306253019720316, 0.0010277332039549947, 0.02008908800780773, -0.04633301869034767, -0.02562316320836544, -0.029110027477145195, -0.022545741870999336, -0.0015783340204507113, -0.000439985393313691, 0.010229453444480896, -0.0177380982786417, -0.02070985548198223, -0.021687233820557594, -0.024408044293522835, -0.011834203265607357, -0.0058015333488583565, 0.0028248217422515154, 0.009212451986968517, -0.03943853825330734, 0.041525375097990036, -0.03822341933846474, -0.02855529822409153, -0.03455164656043053, 0.00957566685974598, 0.025689203292131424, 0.005441620480269194, 0.03801209479570389, 0.01820037141442299, 0.008736970834434032, 7.914371235528961e-05, -0.012771958485245705, -0.0006046703201718628, 0.008723762817680836, 0.005517565179616213, -0.005477942060679197, -0.013280459679663181, 0.0072312792763113976, -0.0241438876837492, 0.030060989782214165, 0.001680694636888802, -0.012210626155138016, 0.02513447403907776, -0.024077849462628365, 0.020036257803440094, -0.017090914770960808, 0.013372913934290409, 0.011642689816653728, 0.014251234009861946, -0.01324743963778019, -0.020458906888961792, -0.03412899747490883, 0.0026151477359235287, 0.015004079788923264, 0.026296762749552727, 0.016615433618426323, 0.0023014619946479797, 0.01971926912665367, -0.021158922463655472, -0.004989252425730228, 0.034762971103191376, 0.015241820365190506, -0.009668122045695782, 0.0009501372696831822, -0.007495435886085033, 0.019587192684412003, -0.004857174586504698, -0.027208101004362106, -0.0014569872291758657, -0.02111929841339588, -0.012989887036383152, -0.00157090462744236, -0.0011804485693573952, -0.01157665066421032, 0.019706062972545624, -0.02129100076854229, -0.013630466535687447, 0.03584601357579231, 0.022057052701711655, -0.024315590038895607, -0.004556696861982346, -0.010883240960538387, -0.02154194936156273, 0.009747368283569813, 0.010744558647274971, 0.0066138142719864845, 0.024104265496134758, 0.011629482731223106, -0.01044077891856432, -0.02117213048040867, -0.019613606855273247, 0.02078910358250141, -0.0038963058032095432, -0.012765354476869106, 0.03161951154470444, 0.024777863174676895, 0.004632641561329365, -0.015730509534478188, -0.011530423536896706, 0.013372913934290409, -0.020723063498735428, 0.023074055090546608, -0.004137348383665085, -0.011286078952252865, 0.009707745164632797, 0.0027488768100738525, -0.023655198514461517, 0.00047754510887898505, 0.03119686245918274, -0.011352118104696274, -0.03243839740753174, 0.017222993075847626, -0.011484196409583092, 0.04601603373885155, 0.019098501652479172, -0.037483781576156616, 0.014647467993199825, 0.01750035583972931, 0.027076024562120438, 0.0029651548247784376, -0.01423802599310875, 0.015981458127498627, -0.03661206737160683, 0.04551413655281067, 0.007436000742018223, 0.020802311599254608, -0.021026844158768654, -0.009661518037319183, 0.020894765853881836, -0.04097064584493637, 0.0049859508872032166, -0.014013493433594704, -0.0031698760576546192, 0.0038599844556301832, 0.014436143450438976, 0.018226787447929382, 0.05232936888933182, 0.01695883646607399, 0.0017847061390057206, 0.021396663039922714, 0.03119686245918274, 0.011517215520143509, 0.01361725851893425, -0.015836171805858612, 0.010084168054163456, -0.007931293919682503, 0.0012316289357841015, 0.018226787447929382, 0.05499734729528427, -0.0033234169241040945, -0.04852551594376564, 0.0034340322017669678, 0.002489673439413309, 0.028766624629497528, 0.03986119106411934, -0.003803851082921028, 0.014964455738663673, 0.015505976043641567, -0.03574034944176674, 0.0363214947283268, 0.0068680644035339355, -0.023074055090546608, 0.014938040636479855, 0.010414362885057926, 0.01621919870376587, 0.009806803427636623, 0.011272870935499668, 0.004176971968263388, 0.030430808663368225, -0.0024302382953464985, 0.018372071906924248, 0.002171034924685955, -0.0247646551579237, -0.007303922437131405, 0.0156776774674654, 0.025200514122843742, -0.03679697588086128, 0.02220233902335167, -0.009258679114282131, -0.04223859682679176, 0.02183252014219761, -0.004203387536108494, -0.020498530939221382, -0.02752508968114853, -0.010546441189944744, 0.019917387515306473, -0.04469525068998337, 0.02216271683573723, 0.02974400296807289, 0.033362943679094315, 0.04633301869034767, -0.002207356272265315, -0.005979838781058788, -0.013445557095110416, -0.031117616221308708, -0.020326828584074974, 0.011114377528429031, -0.010883240960538387, 0.025385422632098198, -0.007574682589620352, -0.02715527079999447, -0.04461600258946419, -0.014013493433594704, 0.004606225993484259, -0.0026300065219402313, 0.004025082103908062, 0.019138125702738762, -0.0033977108541876078, -0.012732335366308689, 0.005649643484503031, -0.05621246621012688, -0.028687376528978348, -0.010024732910096645, 0.008413379080593586, -0.014370104297995567, 0.009641706012189388, -0.01405311655253172, 0.023404249921441078, 0.00739637715741992, -0.010103979147970676, 0.017672058194875717, -0.009747368283569813, 0.023655198514461517, 0.012263457290828228, 0.037563029676675797, 0.0008824472315609455, 0.008380359970033169, 0.009753972291946411, -0.005226993467658758, 0.023549536243081093, 0.03238556534051895, 0.024989189580082893, 0.022175922989845276, -0.0175399798899889, -0.03811775892972946, -0.02607223019003868, -0.009456796571612358, 0.004021780099719763, 0.012217230163514614, -0.022704236209392548, 0.00023320050968322903, -0.006402488797903061, -0.01600787416100502, -0.012613465078175068, 0.012283269315958023, 0.008221865631639957, 0.014105947688221931, -0.021224960684776306, 0.030430808663368225, 0.02624393068253994, -0.032279904931783676, 0.048684012144804, 0.006194465793669224, 0.014621052891016006, -0.020353244617581367, 0.010837013833224773, 0.008281300775706768, -0.028291143476963043, -0.013399329967796803, 0.0006389281479641795, 0.01081059779971838, 0.01658901758491993, -0.005273220594972372, 0.02162119559943676, -0.009965297766029835, -0.00758128659799695, 0.013115361332893372, 0.001778102247044444, -0.010942676104605198, 0.01853056624531746, 0.0032705855555832386, 0.020366452634334564, 0.04583112150430679, -0.022268379107117653, 0.010883240960538387, 0.014647467993199825, -0.021938182413578033, 0.008571872487664223, -0.005378883332014084, -0.006514755543321371, -0.014370104297995567, 0.03677055984735489, -0.015387105755507946, 0.020234374329447746, 0.0037477179430425167, -0.0325968898832798, 0.03634791076183319, 0.023747654631733894, -0.015334274619817734, -0.016245614737272263, -0.013788959942758083, -0.019032463431358337, 0.032411981374025345, -0.022123092785477638, 0.016443731263279915, 0.00802374817430973, -0.02265140600502491, -0.008096391335129738, -0.011345514096319675, 0.01541352178901434, 0.04596320167183876, -0.01964002288877964, -0.016562601551413536, -0.013273855671286583, 0.011807788163423538, -0.030774211511015892, -0.012831393629312515, -0.016866382211446762, -0.0317780077457428, 0.033732764422893524, -0.021489117294549942, 0.038197003304958344, 0.03246481344103813, 0.002073627198114991, -0.012507801875472069, -0.029162859544157982, -0.031751591712236404, 0.023087263107299805, 0.0075218514539301395, -0.012369120493531227, 0.03846115991473198, 0.025319384410977364, -0.003163272049278021, 0.004659057129174471, 0.022083468735218048, -0.025200514122843742, 0.015981458127498627, -0.05769174173474312, 0.009390757419168949, -0.015373898670077324, -0.050850093364715576, 0.0007751337252557278, 0.013643674552440643, -0.0033878048416227102, 0.005085009150207043, -0.03294029459357262, 0.019692854955792427, 0.0001606607111170888, -0.008776593953371048, -0.017434317618608475, -0.006488339975476265, 0.018623020499944687, -0.000665756524540484, -0.03988760709762573, 0.0029007666744291782, -0.031144030392169952, -0.018451320007443428, 0.017632434144616127, -0.01919095776975155, 0.014119155704975128, 0.036532819271087646, 0.02356274425983429, 0.0044213165529072285, -0.014370104297995567, -0.02405143342912197, -0.003787341294810176, -0.013267251662909985, 0.0037146983668208122, 0.011893638409674168, 0.0002224691561423242, -0.021647611632943153, -0.006669947411864996, -0.01894000917673111, 0.014568221755325794, 0.009271887131035328, -0.01343234907835722, 0.006567586679011583, -0.015175781212747097, 0.00028582540107890964, 0.0017285729991272092, -0.0030724683310836554, -0.019547568634152412, 0.00435197539627552, 0.014581429772078991, 0.0016608829610049725, -0.012507801875472069, -0.008453002199530602, -0.021753273904323578, -0.028608130291104317, 0.00597323477268219, -0.038434747606515884, 0.004916609730571508, -0.004863778594881296, 0.011087961494922638, 0.04514431580901146, -0.013339894823729992, 0.017341863363981247, 0.005461432039737701, 0.006138332653790712, -0.021713649854063988, -7.728636410320178e-05, 0.013683297671377659, 0.029400600120425224, -0.0018160747131332755, 0.00017036018834915012, 0.012765354476869106, 0.007284110877662897, -0.03698188439011574, 0.001476799021475017, 0.012824789620935917, -0.011332306079566479, -0.020802311599254608, -0.006144936662167311, 0.02892511710524559, -0.012732335366308689, 0.020194752141833305, 0.05526150390505791, 0.013022907078266144, 0.009826615452766418, -0.0038897020276635885, -0.012078547850251198, 0.008050164207816124, -0.011649293825030327, -8.528328180545941e-05, 0.010103979147970676, -0.0004207927850075066, -0.008816217072308064, 0.029611924663186073, 0.0036387534346431494, 0.01897963136434555, -0.0026861396618187428, -0.012970075942575932, 0.003724604146555066, 0.015373898670077324, -0.011807788163423538, 0.01000492088496685, 0.017473941668868065, 0.0029701078310608864, 0.005728890188038349, 0.013960662297904491, 0.02228158712387085, 0.011048338375985622, 0.03156667947769165, 0.005448224488645792, -0.013722921721637249, -0.014330481179058552, -0.0013884716900065541, -0.014119155704975128, -0.0045599984005093575, 0.020617401227355003, 0.0070001427084207535, -0.016522977501153946, 0.033812008798122406, -0.0005935262306593359, 0.02492314949631691, 0.016932420432567596, -0.009496419690549374, 0.018306033685803413, 0.009153016842901707, 0.011484196409583092, -0.0015246772672981024, -0.017222993075847626, 0.01993059553205967, 0.008690742775797844, 0.03151385113596916, 0.006243995390832424, -0.04007251560688019, 0.0247646551579237, -0.017130538821220398, 0.009133204817771912, 0.021013636142015457, 0.005332655739039183, 0.0037213023751974106, 0.008730366826057434, -0.010526630096137524, -0.04036308825016022, -0.010097376070916653, 0.0006781388074159622, -0.014805962331593037, -0.016641847789287567, -0.016073912382125854, -0.009991712868213654, 0.030589303001761436, -0.020577777177095413, -0.010209642350673676, 0.02545146271586418, -0.0028908608946949244, 0.02603260613977909, -0.01641731522977352, -0.016311652958393097, -0.013524804264307022, -0.012785166501998901, -0.016575809568166733, -0.014634260907769203, 0.02121175266802311, 0.033151619136333466, -0.020643817260861397, -0.01435689628124237, 0.009641706012189388, 0.0008915276266634464, -0.012243646197021008, 0.031223278492689133, -0.020894765853881836, 0.002517740009352565, -0.01662864163517952, -0.03457806259393692, 0.0014140618732199073, -0.012923848815262318, -0.012322892434895039, -0.03515920788049698, -0.0043552774004638195, 0.005841156933456659, 0.007495435886085033, 0.002400520723313093, -0.022889146581292152, -0.009701141156256199, 0.005332655739039183, -0.010903052054345608, 0.013894623145461082, 0.01641731522977352, -0.0018722079694271088, -0.014779546298086643, -0.02409105747938156, -0.003087327117100358, 0.035264868289232254, -0.002821519738063216, 0.016906004399061203, -0.009522835724055767, -0.012137982994318008, -0.017553187906742096, -0.027789246290922165, 0.0171173308044672, 0.00023010492441244423, 0.0055968123488128185, -0.015651263296604156, 0.009093581698834896, 0.009020938538014889, -0.01460784487426281, -0.042555585503578186, -0.03555544093251228, -0.0165097713470459, 0.0127917705103755, 0.005388788878917694, 0.02389293909072876, 0.0021198545582592487, -0.004728398285806179, 0.01384179200977087, 0.004903401713818312, 0.02533259242773056, 0.01592862606048584, -0.03069496527314186, -0.02595335990190506, -0.00012206911924295127, 0.019045671448111534, -0.017592811957001686, -0.0008234247798100114, -0.006006254348903894, -0.005573698319494724, -0.014436143450438976, 0.0037477179430425167, 0.020723063498735428, -0.00932471826672554, -0.007898273877799511, -0.01299649104475975, 0.007469020318239927, -0.04237067326903343, -0.014370104297995567, 0.010903052054345608, -0.014079532586038113, 0.010282285511493683, 0.00023547060845885426, 0.00913980882614851, 0.016813550144433975, 0.001327385543845594, -0.01192665845155716, -0.02570241130888462, -0.00351327913813293, 0.016060704365372658, 0.016681471839547157, 0.02426275797188282, 0.010064356029033661, -0.014634260907769203, -0.008783197961747646, 0.018873969092965126, -0.0181607473641634, -0.011272870935499668, 0.021066466346383095, 0.004751511849462986, 0.005969933234155178, 0.022889146581292152, -0.0068680644035339355, 0.017566395923495293, 0.007449208293110132, -0.010718142613768578, -0.005755306221544743, -0.0051906718872487545, 0.021277792751789093, -0.027049608528614044, 0.0013034463627263904, 0.027102438732981682, -0.004183575976639986, -0.01915133371949196, 0.020643817260861397, -0.006534567102789879, 0.005286428611725569, 0.00889546424150467, 0.014224817976355553, 0.0025804771576076746, 0.022506119683384895, -0.012289873324334621, -0.012177607044577599, -0.01798904687166214, 0.027921324595808983, 0.02360236831009388, 0.015796547755599022, -0.010823805816471577, -0.021304208785295486, -0.0015576968435198069, -0.0035727142821997404, 0.049370817840099335, -0.003060911549255252, -0.006854856852442026, -0.0006888702046126127, 0.04646509885787964, 0.01812112331390381, 0.01322102453559637, -0.01176156010478735, -0.013405933976173401, 0.029611924663186073, 0.013267251662909985, 0.02405143342912197, -0.01328706368803978, -0.012692711316049099, 0.027419427409768105, 0.0027406217996031046, 0.015149365179240704, -0.009212451986968517, -0.0015180733753368258, 0.014938040636479855, 0.016205990687012672, -0.012250249274075031, 0.0044873557053506374, 0.009555854834616184, -0.007568078581243753, -0.014753131195902824, -0.01625882275402546, -0.009205847978591919, -0.02133062295615673, 0.0003209086717106402, 0.025768449530005455, -0.004358579404652119, 0.0016097025945782661, -0.00029428667039610445, 0.020762687548995018, -0.022347625344991684, 0.0003081135801039636, 0.006418998818844557, 0.006174654234200716, -0.01099550724029541, 0.022889146581292152, -0.026838282123208046, 0.0017318748869001865, -0.015743717551231384, -0.02306084707379341, -0.0014396519400179386, 0.015439937822520733, -0.0014437794452533126, 0.027076024562120438, -0.027287349104881287, 0.005864270497113466, 0.003506675362586975, 0.011814392171800137, 0.00963510200381279, 0.0259929820895195, 0.0072246757335960865, 0.03708754852414131, 0.0012646483955904841, 0.026270346716046333, -0.009047354571521282, -0.007165240589529276, -0.026996776461601257, -0.040415916591882706, -0.006055783946067095, 0.002821519738063216, -0.006108615081757307, 0.0007800866733305156, -0.028159065172076225, -0.000468877493403852, -0.012719127349555492, 0.005250107031315565, 0.004137348383665085, 0.0070001427084207535, -0.012395535595715046, 0.006656739395111799, 0.03151385113596916, 0.011167208664119244, 0.004467543680220842, 0.003803851082921028, 0.03552902489900589, 0.012025716714560986, 0.02587411180138588, 0.041366882622241974, 0.0020075880456715822, 0.004569904413074255, -0.0025144380051642656, -0.005098217166960239, 0.01641731522977352, 0.02533259242773056, -0.003503373358398676, -0.010777577757835388, -0.016787134110927582, -0.0034802595619112253, 0.0019432000117376447, 0.009806803427636623, 0.037113964557647705, 0.014370104297995567, -0.010632292367517948, -0.01868906058371067, -0.009278491139411926, 0.016734303906559944, -0.015070118941366673, -0.015585223212838173, 0.01724940910935402, -0.007680345326662064, 0.002826472744345665, -0.0016939024208113551, -0.021792897954583168, -0.006356261670589447, -0.015941834077239037, -0.007303922437131405, 0.019785309210419655, 0.02562316320836544, 0.02603260613977909, 0.012732335366308689, 0.033732764422893524, 0.009734160266816616, 0.0015849380288273096, 0.017236201092600822, -0.026177892461419106, 0.004246313124895096, -0.005491149611771107, -0.013154985383152962, -0.00359913008287549, 0.005543980747461319, 0.014436143450438976, -0.00987944658845663, 0.00645862240344286, 0.003965646959841251, 0.02921568974852562, 0.017355071380734444, -0.004754813853651285, -0.020868349820375443, -0.0010236058151349425, 0.027789246290922165, -0.032332733273506165, 0.0031236486975103617, 0.0044213165529072285, 0.016866382211446762, -0.012507801875472069, -0.010592668317258358, 0.04556696489453316, -0.004606225993484259, 0.011728540994226933, -0.023100471124053, -0.008301112800836563, 0.026600541546940804, -0.02974400296807289, -0.017196577042341232, -0.025715619325637817, -0.013973869383335114, 0.015704093500971794, 0.050321780145168304, -0.0002280412008985877, 0.0010764370672404766, -0.004302446264773607, 0.000592700787819922, -0.014066324569284916, 0.006227485369890928, 0.012758750468492508, 0.0346573106944561, 0.04017817601561546, -0.008096391335129738, -0.0156776774674654, 0.017024874687194824, 0.013775752857327461, 0.021185336634516716, 0.00690108397975564, -0.0027653865981847048, -0.011213435791432858, 0.033574268221855164, 0.011913450434803963, -0.006907687988132238, 0.00391941936686635, 0.00403168611228466, 0.012593653053045273, 0.014594636857509613, 0.00870395079255104, 0.0024880224373191595, 0.021277792751789093, 0.0023955677170306444, -0.010453986935317516, -0.006121823098510504, 0.02900436520576477, -0.02958550862967968, -0.013148381374776363, 0.0284760519862175, -0.0067029669880867004, 0.03906872123479843, -0.03061571903526783, -0.013049322180449963, 0.010407759808003902, -0.03613658621907234, 0.012692711316049099, 0.009020938538014889, -0.03949137032032013, -0.023668406531214714, -0.011655897833406925, 0.016272028908133507, -0.007455812301486731, -0.0705825686454773, 0.00982001144438982, -0.0329931266605854, 0.009569062851369381, -0.004573206417262554, -0.009615289978682995, -0.012600257061421871, 0.038355499505996704, -0.028740208595991135, -0.01897963136434555, -0.04387636482715607, -0.0010434174910187721, -0.032544057816267014, 0.003671773010864854, 0.01853056624531746, -0.005613321904093027, -0.016073912382125854, 0.01398707740008831, 0.03883098065853119, 0.0057784197852015495, -0.016562601551413536, -0.0024038224946707487, 0.026521295309066772, 0.002626704517751932, -0.00019780769071076065, 0.026111852377653122, -0.031144030392169952, 0.006821837276220322, -0.016641847789287567, -0.003737812163308263, 0.017130538821220398, 0.0290836114436388, 0.003090629121288657, -0.0011119330301880836, -0.03515920788049698, -0.030430808663368225, -0.009456796571612358, -0.005794929340481758, 0.009853031486272812, 0.029268521815538406, 0.02047211490571499, -0.009377549402415752, 0.03172517567873001, 0.010903052054345608, -0.00023299413442146033, 0.023034431040287018, -0.026138268411159515, -0.018556982278823853, -0.013194608502089977, 9.2609494458884e-05, -0.015875795856118202, -0.017434317618608475, -0.03745736554265022, -0.005243503022938967, -0.011787976138293743, 0.003978854510933161, -0.00028685727738775313, -0.000568348856177181, 0.015558808110654354, 0.010407759808003902, -0.009186035953462124, 0.008479418233036995, -0.02055136300623417, -0.003316812915727496, 0.0072973184287548065, -0.015994666144251823, 0.015136157162487507, 0.002035654615610838, 0.011200228706002235, 0.008215261623263359, -0.00932471826672554, -0.011484196409583092, -0.0024748146533966064, -0.017896590754389763, 0.0018556981813162565, 0.0046458495780825615, -0.016113536432385445, -0.0363214947283268, -0.001964662689715624, 0.01361725851893425, 0.03185725212097168, -0.001964662689715624, -0.016536185517907143, 0.006986934691667557, 0.0007862778147682548, -0.0052567110396921635, -0.01361725851893425, 0.0006690584705211222, -0.008202053606510162, -0.0027142062317579985, -0.011371930129826069, -0.015479560941457748, 0.019455114379525185, -0.02900436520576477, 0.030562886968255043, 0.009833219461143017, -0.014119155704975128, -0.014713507145643234, 0.005200577899813652, -0.0029255312401801348, 0.004741606302559376, 0.025887319818139076, -0.011404949240386486, -0.007165240589529276, -0.02067023329436779, -0.015215404331684113, -0.0002905719738919288, 0.017090914770960808, 0.0017731493571773171, 0.019745685160160065, -0.006960519123822451, 0.022955184802412987, 0.005355769768357277, 0.0034076166339218616, 0.009859634563326836, -0.03758944571018219, -0.003184734843671322, -0.0009072119137272239, 0.012019112706184387, -0.01695883646607399, 0.002009239047765732, -0.005728890188038349, -0.022875938564538956, -0.014858793467283249, -0.02913644351065159, 0.004919911734759808, 0.012507801875472069, -0.015981458127498627, 0.005913799628615379, -0.0036387534346431494, -0.005458130035549402, -0.010883240960538387, -0.011596462689340115, 0.028872286900877953, -0.0003334973589517176, -0.00938415341079235, -0.018015461042523384, -0.000624069303739816, -0.014951248653233051, 0.008532249368727207, -0.024738240987062454, -0.008169034495949745, 0.0005146921030245721, -0.024738240987062454, -0.01794942282140255, -0.005114726722240448, -0.009912466630339622, -0.007984125055372715, -0.028819454833865166, -0.019666438922286034, 0.012494594790041447, -0.0014743225183337927, -0.013419141061604023, -0.019917387515306473, 0.020802311599254608, -0.01324743963778019, 0.019917387515306473, -0.01460784487426281, -0.007805819623172283, -0.0007821503677405417, -0.024540122598409653, 0.01423802599310875, -0.001176321180537343, 0.008195450529456139, 0.0021066467743366957, -0.017104122787714005, -0.00403168611228466, 0.033442191779613495, 0.0003597066388465464, 0.01025586947798729, -0.0027043004520237446, 0.05785023421049118, 0.026996776461601257, 0.03386484086513519, -0.02397218719124794, -0.014092739671468735, -0.011451177299022675, -0.019772101193666458, -0.022598573938012123, -0.004312352277338505, -0.0075218514539301395, 0.005137840751558542, 0.009337926283478737, 0.01231628842651844, 0.004573206417262554, -0.013425745069980621, -0.012124775908887386, -0.01732865534722805, 0.024315590038895607, 0.009767180308699608, -0.00837375596165657, 0.00497274287045002, 0.006475131958723068, 0.025557124987244606, -0.0010211293119937181, -0.023575952276587486, 0.00923886802047491, 0.01812112331390381, 0.003069166326895356, -0.014462558552622795, 0.006881272420287132, -0.004791135434061289, 0.025887319818139076, -0.0021297603379935026, 0.010321908630430698, -0.013075738213956356, -0.04469525068998337, 0.021026844158768654, 0.020353244617581367, -0.0010929468553513288, 0.013194608502089977, -0.012309685349464417, 0.02314009517431259, 0.022308001294732094, -0.003047703532502055, -0.010170018300414085, -0.015175781212747097, 0.009648310020565987, -0.02541183866560459, 0.011827599257230759, 0.027789246290922165, 0.023958979174494743, 0.03024590015411377, -0.009166224859654903, -0.0013009699760004878, -0.018292825669050217, -0.00849923025816679, 0.0031071389093995094, -0.022175922989845276, 0.0073831696063280106, 0.019243787974119186, 0.02162119559943676, -0.006224183365702629, 0.016522977501153946, 0.0183588657528162, -0.010612480342388153, 0.013055926188826561, -0.00390951381996274, 0.0018969726515933871, -0.019507944583892822, -0.023549536243081093, -0.019877763465046883, 0.0011870524613186717, -0.023258965462446213, -0.007911481894552708, 0.013709713704884052, -0.01683996617794037, -0.02265140600502491, 0.004672265145927668, 0.005501055624336004, 0.004801041446626186, -0.006498245522379875, 0.02210988476872444, -0.013458765111863613, -0.0002833489270415157, -0.00025445682695135474, 0.0007355102570727468, 0.009106789715588093, 0.0028429825324565172, -0.004573206417262554, 0.014039908535778522, -0.023628784343600273, -0.009602082893252373, -0.021224960684776306, -0.0029337862506508827, 0.0036618669982999563, -0.0034736557863652706, -0.013260647654533386, 0.006243995390832424, -0.0055307731963694096, -0.0073831696063280106, 0.015466352924704552, -0.023404249921441078, 0.016562601551413536, -0.006696362979710102, -0.007132221013307571, 0.009298303164541721, 0.012904036790132523, 0.006769006140530109, -0.003817058866843581, 0.011213435791432858, 0.005586906336247921, -0.00787846278399229, 0.01213137898594141, 0.017553187906742096, -0.0070001427084207535, -0.004546790849417448, 0.01479275431483984, 0.0035099771339446306, -0.006032670382410288, -0.039095137268304825, -0.021938182413578033, 0.03576676547527313, -0.011312494985759258, -0.007918085902929306, -0.008472814224660397, -0.023113679140806198, 0.00994548574090004, 0.010975695215165615, 0.022955184802412987, -0.00926528312265873, 0.0054383184760808945, 0.03206857666373253, 0.013240835629403591, 0.01658901758491993, 0.007858650758862495, -0.01934945024549961, -0.005038782022893429, 0.00690108397975564, 0.027551505714654922, -0.011193624697625637, -0.009311510249972343, 0.0076605333015322685, -0.0039491369388997555, -0.006409092806279659, -0.005699172616004944, 0.02842322178184986, 0.018834346905350685, 0.014515390619635582, -0.004087819252163172, -0.00416706595569849, 0.006782213691622019, -0.017051290720701218, -0.006835044827312231, 0.003272236557677388, 0.004101026803255081, 0.014713507145643234, -0.0025986379478126764, -0.0022618386428803205, -0.011510612443089485, 0.004728398285806179, -0.0009410569327883422, -0.02195139043033123, 0.008836029097437859, -0.020168336108326912, -0.012692711316049099, -0.009172828868031502, -0.020458906888961792, -0.00026271172100678086, -0.009318114258348942, 0.015836171805858612, -0.0037213023751974106, 0.007072785869240761, 0.006848252844065428, 0.003595828078687191, 0.003121997695416212, -0.013815375976264477, 0.008512437343597412, 0.007416188716888428, -0.010077564045786858, 0.005326052196323872, -0.01334649883210659, -0.013207816518843174, -0.006491641979664564, -0.016945628449320793, -0.028581714257597923, 0.01769847422838211, -0.02834397368133068, -0.0043321638368070126, 0.00602276436984539, -0.008281300775706768, -0.022849522531032562, 0.00351327913813293, 0.023126887157559395, -0.0009369294857606292, 0.004946327302604914, -0.009648310020565987, -0.009740764275193214, 0.006197767797857523, 0.0025226930156350136, -0.0091794328764081, -0.015994666144251823, 0.013399329967796803, -0.00298166461288929, 0.0010269077029079199, -0.0006723604165017605, 0.0008320924243889749, -0.0019844744820147753, 0.008776593953371048, 0.01890038512647152, 0.004295842256397009, -0.014330481179058552, -0.023589160293340683, -0.026309970766305923, -0.008221865631639957, 0.022440079599618912, -0.011655897833406925, 0.024896733462810516, -0.002433540066704154, -0.0024038224946707487, 0.028317557647824287, 0.013240835629403591, 0.007218071725219488, 0.010249265469610691, -0.0016270378837361932, -0.016985252499580383, 0.0007350975065492094, 0.020934389904141426, -0.0026283555198460817, -0.012521009892225266, 0.01322102453559637, 0.011457780376076698, 0.0053062401711940765, -0.008855841122567654, -8.409664587816224e-05, 0.030087405815720558, -0.005015668459236622, 0.024777863174676895, 0.018847554922103882, -0.004672265145927668, -0.016522977501153946, 0.00926528312265873, -0.02579486556351185, -0.032544057816267014, -0.009978504851460457, -0.008578476496040821, 0.011556839570403099, 0.0002920165716204792, -0.01322102453559637, -0.020406076684594154, 0.014092739671468735, -0.0033944088499993086, 0.009549250826239586, -0.00018821138655766845, 0.009932277724146843, 0.002136364346370101, -0.021224960684776306, -0.002998174401000142, 0.002463257871568203, 0.016906004399061203, 0.021568363532423973, -0.002415379509329796, -0.0025160890072584152, -0.0024467480834573507, 0.0013348149368539453, 0.0063661676831543446, -0.01285120565444231, -0.017975838854908943, 0.02220233902335167, -0.012177607044577599, -0.02921568974852562, 0.015994666144251823, -0.0015676027396693826, -0.009767180308699608, -0.003916117362678051, -0.007019954267889261, -0.014581429772078991, 0.012210626155138016, 0.006914291996508837, 0.010308700613677502, 0.01897963136434555, 0.02871379256248474, 0.011721936985850334, -0.004262822680175304, -0.01157665066421032, 0.005933611653745174, -0.0025375518016517162, -0.023549536243081093, 0.002339434577152133, 0.012283269315958023, -0.018187163397669792, -0.020194752141833305, 0.024328798055648804, 0.016390901058912277, -0.00016520089411642402, 0.012923848815262318, 0.018213579431176186, 0.005659549497067928, -0.0066138142719864845, -0.030800627544522285, 0.0053722793236374855, 0.0048043434508144855, -0.0012712522875517607, 0.01213137898594141, -0.020538154989480972, 0.018041877076029778, -0.008974711410701275, -0.02137024700641632, 0.003158319042995572, -0.0031649230513721704, -0.005091613158583641, -0.009086977690458298, 0.010209642350673676, -0.0015510929515585303, 0.01717016100883484, 0.006319940090179443, -0.0011631132801994681, -0.013564427383244038, -0.010929468087852001, -0.00602276436984539, 0.0056628515012562275, 0.018675852566957474, -0.0006488339859060943, 0.028660962358117104, -0.010837013833224773, -0.007436000742018223, -0.0008766688406467438, 0.003912815824151039, 0.0006054958212189376, 0.010817201808094978, 0.00388309801928699, -0.015994666144251823, -0.00011505246220622212, 0.019164541736245155, 0.021066466346383095, -0.013604050502181053, -0.0004849745018873364, 0.001994380261749029, 0.0011284428182989359, 0.006009556353092194, -0.005210483446717262, 0.001007921528071165, 0.025068435817956924, -0.013775752857327461, 0.0029932213947176933, -0.019692854955792427, -0.0032045464031398296, 0.013947454281151295, 0.008578476496040821, 0.01880793087184429, 0.0367177315056324, -0.020168336108326912, -0.005385487340390682, -0.0002922229468822479, -0.004860476590692997, -0.016813550144433975, -0.01964002288877964, 0.009192639961838722, -0.01056625321507454, 0.01612674444913864, -0.01823999360203743, 0.005055291578173637, 0.011404949240386486, -2.338454214623198e-05, 0.007594494614750147, 0.017275823280215263, -0.023708030581474304, 0.004335465840995312, -0.006494943518191576, 0.01580975577235222, -0.009436984546482563, 0.020934389904141426, -0.015704093500971794, 0.009489815682172775, 0.01244176272302866, 0.009205847978591919, -0.0009162922506220639, 0.001066531171090901, -0.02030041441321373, 0.008915276266634464, -0.005699172616004944, -0.008116203360259533, 0.005646341480314732, 0.0051477462984621525, -0.019573984667658806, 0.001592367421835661, 0.013815375976264477, 0.014647467993199825, -0.018543774262070656, -0.0006954740965738893, -0.0020637214183807373, -0.0075218514539301395, 0.0466235913336277, 0.001799565041437745, -0.0014016794739291072, -0.008730366826057434, -0.014145571738481522, 0.0006001301808282733, -0.008406775072216988, 0.031117616221308708, -0.00963510200381279, 0.030747797340154648, -0.02059098519384861, 0.025609955191612244, 0.014687092043459415, -0.009648310020565987, -0.010249265469610691, 0.009813407436013222, 0.018055085092782974, 0.015188989229500294, -0.025636371225118637, -0.00938415341079235, -0.015690885484218597, 0.005368977319449186, -0.01553239207714796, -0.012956867925822735, 0.009985108859837055, 0.0072709028609097, 0.014132363721728325, 0.019243787974119186, 0.019375866279006004, 0.034472402185201645, 0.0007738954736851156, 0.0025936849415302277, -0.03127611055970192, 0.0002711729903239757, -0.00019646626606117934, -0.01559843122959137, -0.0013108757557347417, 0.01717016100883484, -0.006300128530710936, 0.016324860975146294, -0.005137840751558542, 0.011200228706002235, -0.009397361427545547, 0.007482227869331837, -0.008875652216374874, -0.0001974981278181076, 0.009047354571521282, 0.006620417814701796, -0.003529788926243782, -0.02273065224289894, -0.007409585174173117, 0.006359563674777746, 0.0006286095012910664, -0.022426871582865715, 0.007376565597951412, 0.02921568974852562, 0.00864451564848423, -0.021066466346383095, 0.0012811581837013364, 0.01365688256919384, -0.014079532586038113, 0.01596825011074543, -0.012428555637598038, 0.008664327673614025, -0.014449351467192173, 0.010770974680781364, -0.0002651881950441748, 0.007779404055327177, 0.020604193210601807, 0.006537869106978178, 0.015981458127498627, -0.015915418043732643, -0.008578476496040821, -0.017592811957001686, -0.0032194051891565323, -0.013524804264307022, 0.005018970463424921, -0.007957709021866322, 0.002729065017774701, -0.010209642350673676, 0.014092739671468735, -0.023906147107481956, -0.009839823469519615, 0.004639245569705963, -0.010394551791250706, -0.01105494238436222, -0.025015603750944138, 0.013313478790223598, -0.0014346990501508117, -0.014317273162305355, 0.005903894081711769, 0.008736970834434032, 0.0019613606855273247, 0.00010700395068852231, -0.01654939353466034, 0.005907196085900068, -0.023417457938194275, -0.022189131006598473, -0.012032320722937584, 0.009780388325452805, 0.02789490856230259, -0.023258965462446213, -0.005435016471892595, -0.008221865631639957, 0.005481243599206209, -0.01291724480688572, 0.011352118104696274, 0.009549250826239586, 0.005586906336247921, -0.0036486592143774033, -0.014198402874171734, -0.018583398312330246, -0.012217230163514614, 0.005197275895625353, -0.03555544093251228, -0.034023333340883255, 0.004272728692740202, -0.014753131195902824, 0.007614306174218655, 0.018702268600463867, -0.008789801970124245, -0.006461924407631159, -0.009562458842992783, -0.017606019973754883, -0.0028413315303623676, 0.005012366455048323, -0.033521439880132675, 0.007673741318285465, -0.011484196409583092, 0.01787017472088337, -0.035793181508779526, 0.015730509534478188, 0.00014765925880055875, 0.0035628085024654865, -0.005649643484503031, 0.005058593582361937, 0.01120683178305626, 0.00397225096821785, 0.011642689816653728, -0.015188989229500294, 0.042898986488580704, -0.015822963789105415, -0.002370803151279688, -0.02084193378686905, 0.02348349802196026, 0.030483640730381012, 0.007548267021775246, 0.009483212605118752, 0.011134189553558826, -0.02100042812526226, -0.00614823866635561, -0.016906004399061203, 0.004883590154349804, -0.006841648835688829, -0.0055968123488128185, 0.004038289654999971, -0.013022907078266144, -0.013458765111863613, -0.008862445130944252, 0.014066324569284916, 0.01361725851893425, 0.0008085659937933087, -0.011087961494922638, 0.0076539297588169575, -0.008433191105723381, 0.0175399798899889, 0.014304065145552158, 0.02513447403907776, -0.00628361850976944, 0.021013636142015457, 0.0012440112186595798, -0.006719476543366909, -0.003737812163308263, -0.010057752020657063, 0.01287101674824953, 0.0017880081431940198, -0.000308526330627501, -0.005913799628615379, -0.009674725122749805, -0.014766339212656021, -0.003876494010910392, -0.021013636142015457, -0.003856682451441884, -0.0033514834940433502, 0.018332449719309807, -0.004285936243832111, 0.03045722469687462, 0.008486022241413593, -0.03486863523721695, 0.012910640798509121, -0.0008997825207188725, -0.029110027477145195, 0.005583604332059622, -2.2778323909733444e-05, -0.007686949335038662, -0.017896590754389763, 0.00304275075905025, 0.0034736557863652706, 0.026996776461601257, 0.00701335072517395, 0.018266409635543823, 0.0145418057218194, -0.0027620845939964056, -0.005385487340390682, 0.0001383725175401196, -0.01497766375541687, 0.02612506039440632, 0.007601098157465458, -0.01405311655253172, -0.004038289654999971, 0.00905395857989788, 0.0005811439477838576, 0.016721095889806747, 0.005131236743181944, -0.01303611509501934, 0.002445097081363201, 0.0017681964673101902, -0.006835044827312231, 0.0067524961195886135, 0.02401180937886238, 0.005857666488736868, 0.0016518025659024715, -0.006445414386689663, -0.013082342222332954, 0.023034431040287018, -0.0024087755009531975, -0.013538012281060219, -0.011444573290646076, 0.023879732936620712, -0.015466352924704552, 0.0212513767182827, -0.006379375234246254, 0.028370389714837074, 0.025649579241871834, -0.008406775072216988, -0.012487990781664848, 0.013128569349646568, 0.010572857223451138, -0.006537869106978178, 0.004543488845229149, 0.009701141156256199, 0.01857019029557705, -0.00015168351819738746, 0.0007041417411528528, 0.026626957580447197, -0.0017302240012213588, -0.012943659909069538, 0.007607702165842056, 0.002190846484154463, -0.028502468019723892, 0.007640721742063761, -0.00806337222456932, -0.00347695779055357, 0.007541663013398647, 0.026930738240480423, 0.019534360617399216, -0.0025359007995575666, -0.012085151858627796, -0.00118127407040447, -0.013498388230800629, 0.01075116265565157, 0.0032392169814556837, -0.0072246757335960865, 0.013921038247644901, 0.012309685349464417, 0.03444598615169525, -0.01864943653345108, 0.02140987105667591, 0.0010004921350628138, -0.0003334973589517176, 0.008169034495949745, -0.022704236209392548, -0.013577635399997234, 0.014660676009953022, -0.005877478513866663, 0.022677820175886154, 0.01553239207714796, -0.01765885017812252, 0.010883240960538387, 0.01802866905927658, -0.00047837060992605984, -0.006907687988132238, -0.009991712868213654, 0.02154194936156273, 0.0060491799376904964, 0.011464384384453297, -0.0001419840264134109, 0.00812941137701273, 0.03906872123479843, -0.0109360720962286, 0.01934945024549961, 0.006356261670589447, -0.00285784131847322, -0.0060359719209373, -0.0040581016801297665, 0.002600288949906826, 0.011226643808186054, 0.0066534373909235, -0.009661518037319183, -0.02084193378686905, -0.002370803151279688, 0.0032094994094222784, 0.01621919870376587, -0.0034076166339218616, -0.024540122598409653, -0.0018259806092828512, 0.01442293543368578, -0.0038071530871093273, 0.005352467764168978, -0.005543980747461319, 0.010526630096137524, -0.004302446264773607, -0.007052973844110966, -0.018596606329083443, 0.010064356029033661, 0.007416188716888428, -0.00034711792250163853, -0.0037972473073750734, 0.007614306174218655, 0.020406076684594154, 0.013419141061604023, -0.018306033685803413, -0.03700830042362213, 0.023985395208001137, -0.01592862606048584, 0.007099201437085867, 0.004520375281572342, 0.0011787975672632456, -0.01802866905927658, 0.01194646954536438, -0.005976536776870489, 0.0030955818947404623, 0.01553239207714796, -0.0005105646559968591, -0.0156776774674654, 0.03246481344103813, 0.0014099343679845333, -0.01750035583972931, -0.005217087455093861, -0.0025986379478126764, 0.002372453920543194, -0.004721794277429581, -0.00926528312265873, 0.009621893987059593, -0.002291556214913726, 0.00145946373231709, -0.012943659909069538, 0.015439937822520733, 0.004001968540251255, 0.009034146554768085, 0.003437334205955267, -0.012058736756443977, -0.003955740947276354, 0.022255171090364456, 0.011147396638989449, 0.013042719103395939, -0.006835044827312231, 0.0070001427084207535, -0.0012588700046762824, -0.003724604146555066, -0.005857666488736868, 0.0017847061390057206, 0.03206857666373253, 0.026296762749552727, -0.01993059553205967, -0.026917530223727226, 0.005144444294273853, -0.015981458127498627, -0.0009724255069158971, -0.016390901058912277, 0.026098644360899925, 0.013188004493713379, -0.023708030581474304, -0.0035694122780114412, 0.0007470670971088111, -0.013082342222332954, 0.003618941642343998, 0.0072246757335960865, -0.003708094358444214, 0.005322750192135572, 0.007244487293064594, -0.004097725264728069, 0.004302446264773607, -0.022334417328238487, -0.01592862606048584, 0.017275823280215263, -0.018543774262070656, -0.010823805816471577, -0.014158778823912144, 0.013538012281060219, -0.001999333268031478, -0.016192782670259476, 0.017843760550022125, -0.003221056191250682, 0.014449351467192173, 0.005435016471892595, -0.020366452634334564, 0.011583254672586918, -0.0008089787443168461, -0.002118203556165099, 0.007528455462306738, 0.003440636210143566, 0.007561475038528442, 0.0052567110396921635, 0.0035330909304320812, 0.012184211052954197, -7.65511595091084e-06, 0.006577492691576481, -0.001920086331665516, 0.008380359970033169, 0.03003457374870777, 0.00144708133302629, 0.023826900869607925, -0.011187020689249039, -0.013934246264398098, -0.004358579404652119, -0.025108059868216515, 0.01188703440129757, -0.003671773010864854, 0.02339104376733303, -0.004269426688551903, 0.0003900433366652578, -0.00565294548869133, 0.0038599844556301832, -0.014938040636479855, -0.0018672550795599818, -0.013353102840483189, -0.003379550063982606, 0.017421109601855278, -0.00597323477268219, 0.005765211768448353, -0.009654914028942585, 0.008545457385480404, -0.017553187906742096, 0.023787276819348335, 0.007132221013307571, -0.0028644450940191746, -0.0019976822659373283, 0.02191176824271679, -0.004493959713727236, -0.0003588811377994716, -0.0030377977527678013, 0.00454018684104085, -0.010843616910278797, 0.00022927943791728467, -0.007092597428709269, -0.03766869381070137, 0.024025017395615578, -0.02166081964969635, 0.005335957743227482, 0.0013760894071310759, -0.0027109042275696993, 0.024434460327029228, -0.007515247445553541, -0.0069341035559773445, 0.011873827315866947, 0.009998316876590252, 0.005877478513866663, 0.0027488768100738525, -0.0053293537348508835, 0.005332655739039183, -0.009536043740808964, 0.004569904413074255, -0.011114377528429031, 0.0015056910924613476, 0.0011350467102602124, 0.0010813899571076035, -0.0007705935277044773, -0.024038225412368774, 0.013141777366399765, 0.012639880180358887, 0.009443588554859161, -0.007561475038528442, 0.004698680713772774, -0.005223691463470459, 0.02678545191884041, -0.008921880275011063, -0.003008080180734396, 0.015241820365190506, 0.0002393916656728834, 0.014687092043459415, 0.011629482731223106, 0.0016526280669495463, -0.009126600809395313, -0.009542647749185562, 0.009040750563144684, 0.014066324569284916, -0.01068512350320816, 0.0003590875130612403, -0.005649643484503031, -0.018583398312330246, -0.02377406880259514, -0.0375366136431694, 0.006498245522379875, 0.021792897954583168, 0.02241366356611252, 0.0008263140334747732, -0.005884082056581974, 0.01075116265565157, -0.002866096096113324, -0.0029139744583517313, 0.007502039894461632, 0.020432492718100548, -0.023800484836101532, -0.010916260071098804, 0.0028776531107723713, -0.009707745164632797, 0.012831393629312515, 0.002171034924685955, -0.01105494238436222, 0.006296826526522636, 0.026138268411159515, -0.004394900985062122, 0.0011565093882381916, 0.010757766664028168, -0.014066324569284916, -0.00895489938557148, -0.01303611509501934, 0.005831250920891762, 0.006980331148952246, 0.006286920513957739, -0.02603260613977909, 0.0183588657528162, 0.02513447403907776, 0.006650135386735201, -0.012289873324334621, -0.0015733811305835843, 0.010658707469701767, -0.011457780376076698, 0.027472257614135742, -0.0017665454652160406, -0.0019531059078872204, 0.009853031486272812, -0.0022585366386920214, -0.014383312314748764, -0.005131236743181944, -0.010572857223451138, 0.014251234009861946, -0.012844601646065712, -0.03817059099674225, 0.008320923894643784, 0.010156811214983463, 0.004573206417262554, 0.016575809568166733, 0.008301112800836563, 0.006940707564353943, -0.002270093420520425, -0.025345800444483757, -0.0072246757335960865, 0.0048472685739398, 0.011939866468310356, 0.004451034124940634, 0.010790785774588585, -0.00560341589152813, -0.007680345326662064, -0.004051497671753168, 0.00047135393833741546, 0.018055085092782974, -0.008109599351882935, -0.0014256186550483108, -0.02166081964969635, -0.008849237114191055, 0.005359071306884289, 0.0145418057218194, -0.012527613900601864, 0.01285120565444231, 0.0022222150582820177, -0.004550092853605747, 0.007977521046996117, 0.003959042951464653, 0.0008997825207188725, 0.01167570985853672, 0.007620910182595253, 0.014766339212656021, -0.0025722221471369267, 0.012038924731314182, 0.004989252425730228, 0.013564427383244038, -0.0034802595619112253, -0.010037940926849842, -0.00304275075905025, 0.004870382137596607, -0.004180273972451687, -0.017685266211628914, 0.008453002199530602, 0.0010376391001045704, -0.0006269585574045777, -0.0019068785477429628, 0.010830409824848175, 0.010916260071098804, -0.006973727140575647, 0.014277649112045765, -0.007152032572776079, 0.005286428611725569, 0.006848252844065428, 0.03331011161208153, 0.009258679114282131, 0.01349178422242403, 0.015862587839365005, 0.009674725122749805, 0.008102995343506336, 0.021383455023169518, -0.03291387856006622, 0.010704935528337955, -0.025108059868216515, 0.0237212385982275, -0.008902068249881268, 0.00957566685974598, 0.009337926283478737, -0.019243787974119186, -0.0200098417699337, -0.004328861832618713, -0.008287904784083366, -0.012785166501998901, 0.0084596062079072, -0.013478576205670834, -0.010863428935408592, -0.012738939374685287, -0.0022354228422045708, 0.02616468444466591, -0.00658079469576478, 0.00226348964497447, 0.017975838854908943, -0.00015725556295365095, 0.0028859078884124756, -0.01238232757896185, -0.0034340322017669678, -0.0241438876837492, -0.006062387954443693, 0.007145428564399481, -0.0027076024562120438, 0.025808073580265045, -0.0016641848487779498, 0.0015907164197415113, 0.017764512449502945, -0.0059831407852470875, -0.019243787974119186, -0.011404949240386486, -0.0017269219970330596, -0.0006752496119588614, 0.005580302327871323, -0.0021264583338052034, -0.01744752563536167, 0.013465369120240211, -0.010209642350673676, 0.0027076024562120438, -0.00721146771684289, -1.1698720300046261e-05, 0.023509914055466652, -0.02348349802196026, -0.013960662297904491, -0.014013493433594704, -0.024157095700502396, 0.020445700734853745, -0.012580445036292076, 0.011583254672586918, 0.001809470821171999, -0.00824828166514635, -0.0038500784430652857, 0.002932135248556733, 0.01479275431483984, -0.0010062705259770155, 0.0016534535679966211, 0.004705284722149372, -0.00858508050441742, -0.03663848340511322, -0.007739780470728874, 0.015426729805767536, -0.0008089787443168461, 0.0162984449416399, -0.006065689492970705, -0.0007569729932583869, 0.0303251463919878, -0.0014239676529541612, 0.010487006045877934, 0.012831393629312515, 0.0022304700687527657, -0.002800057176500559, -0.0027670376002788544, -0.02037966065108776, -0.02405143342912197, 0.02492314949631691, 0.00858508050441742, -0.007079389411956072, -0.025477878749370575, 0.00440480699762702, 0.017064498737454414, 0.026957152411341667, 0.0039491369388997555, 0.018292825669050217, -0.010097376070916653, -0.012554029934108257, -0.024487292394042015, -0.010922864079475403, -4.029415867989883e-05, 0.021026844158768654, -0.007832234725356102, 0.012950263917446136, -0.021938182413578033, -0.026019398123025894, -0.005534075200557709, 0.018662644550204277, -0.009780388325452805, 0.005785023793578148, -0.0068614608608186245, 0.002658073091879487, -0.01750035583972931, 0.0012720777885988355, -0.01604749634861946, -0.019072087481617928, 0.007620910182595253, 0.00901433452963829, -0.005253409035503864, -0.012197418138384819, 0.013386121951043606, 0.005401996895670891, -0.00022143729438539594, 0.006788817699998617, -0.002276697428897023, -0.01380216795951128, 0.011028526350855827, 0.02521372213959694, 0.011662501841783524, 0.012309685349464417, -0.008380359970033169, 0.009423777461051941, 0.03140818700194359, 0.012639880180358887, -0.008882256224751472, 0.010876636952161789, -0.004642547573894262, 0.011325703002512455, 0.0084596062079072, -0.01952115260064602, -0.004309050273150206, 0.0005039607640355825, -0.010803993791341782, 0.03824983537197113, 0.015202196314930916, -0.008228469640016556, 0.020155128091573715, -0.014673884026706219, -0.0005324400844983757, 0.006874668411910534, -0.013194608502089977, -0.015479560941457748, -0.004226501099765301, -0.026838282123208046, -0.02632317878305912, 0.008175638504326344, -0.008030352182686329, -0.005207181442528963, 0.018041877076029778, 0.006267108954489231, 0.030060989782214165, 0.019177749752998352, -0.01647014729678631, -0.0008259012829512358, -0.013881415128707886, -0.0077265724539756775, 0.008836029097437859, 0.010770974680781364, -0.00147762440610677, -0.0029651548247784376, 0.0036915848031640053, -0.01235591247677803, 0.0008453002665191889, 0.01580975577235222, 0.0066369278356432915, 0.003945834934711456, -0.0026976964436471462, -0.005226993467658758, -0.006214277818799019, 0.017685266211628914, -0.0055538867600262165, 0.008413379080593586, -0.01810791715979576, 0.0013719619018957019, -0.010473798029124737, 0.0021132505498826504, -0.0009740764508023858, 0.0018590001855045557, 0.013815375976264477, 0.0027175082359462976, -0.0029007666744291782, 0.018781514838337898, 0.000185218988917768, 0.0019481529016047716, 0.0006818535039201379, 0.018253201618790627, -0.020287206396460533, 0.003516581142321229, -0.008301112800836563, -0.020406076684594154, 0.012204022146761417, 0.005524169187992811, -0.025808073580265045, -0.025609955191612244, 0.018345657736063004, -0.014502182602882385, 0.018913593143224716, 0.011649293825030327, 0.01765885017812252, -0.01186061929911375, -0.004087819252163172, -0.03198933228850365, -0.025306176394224167, -0.006310034077614546, -0.00434206984937191, 0.013854999095201492, -0.024896733462810516, -0.032861046493053436, 0.011015319265425205, -0.024606162682175636, -0.02008908800780773, 0.006940707564353943, -0.003029542975127697, 0.010117187164723873, -0.0038963058032095432, -0.007759592030197382, 0.012448366731405258, -0.014924832619726658, -0.011510612443089485, 0.03988760709762573, -0.010764370672404766, 0.02133062295615673, 0.024870317429304123, -0.006267108954489231, 0.012091755867004395, 0.001110282028093934, 0.015505976043641567, -0.0027142062317579985, 0.009001126512885094, 0.017724890261888504, -0.02929493598639965, 0.007667137309908867, -0.017236201092600822, -0.03362710028886795, 0.02603260613977909, -0.00843979511409998, 0.01633806899189949, -0.007343546021729708, 0.02241366356611252, 0.00874357484281063, -0.0016270378837361932, 0.0329931266605854, -0.02150232531130314, -0.019666438922286034, 0.013960662297904491, -0.014726715162396431, -0.0061845602467656136, -0.013868207111954689, 0.01820037141442299, 0.003176479833200574, 0.015373898670077324, 0.008116203360259533, 0.024936357513070107, 0.004318955820053816, -0.014462558552622795, -0.010757766664028168, 0.03394408896565437, 0.0023641991429030895, 0.02879304066300392, 0.024275965988636017, 0.004510469269007444, 0.02974400296807289, 0.009621893987059593, -0.0004808470548596233, -0.007858650758862495, 0.005732192192226648, -0.023404249921441078, 0.0057784197852015495, -0.008347339928150177, -0.007832234725356102, 0.01645693928003311, 0.010447382926940918, -0.002946994034573436, -0.010916260071098804, 0.010288888588547707, 0.014436143450438976, 0.020366452634334564, -0.0024120775051414967, 0.002344387350603938, 0.0284760519862175, -0.015202196314930916, 0.019072087481617928, 0.006557680666446686, 0.008697346784174442, -0.0033679932821542025, 0.002658073091879487, -0.018794722855091095, -0.010011524893343449, 0.006247297395020723, -0.004084517247974873, 0.003711396362632513, -0.001556871342472732, 0.006039273925125599, 0.0012943659676238894, 0.0007891670102253556, -0.011028526350855827, 0.0020323528442531824, -0.012151191011071205, 0.009985108859837055, -0.01728903129696846, -0.011272870935499668, -0.0051477462984621525, 0.005507659632712603, -0.0007326210616156459, 0.009489815682172775, 0.015004079788923264, 0.000995539128780365, 0.022426871582865715, -0.00790487788617611, 0.0073831696063280106, -0.019256995990872383, 0.02129100076854229, 0.030377978459000587, 0.000818059139419347, 0.012494594790041447, -0.007442604750394821, -0.0037609257269650698, 0.02129100076854229, 0.025768449530005455, 0.010480402037501335, -0.0067095705308020115, 0.020234374329447746, 0.019732477143406868, -0.016443731263279915, -0.0036816787905991077, -0.013485180214047432, -0.006286920513957739, -0.0031087896786630154, -0.031381770968437195, 0.009780388325452805, 0.008783197961747646, -0.013973869383335114, -0.012765354476869106, -0.024038225412368774, 0.015466352924704552, 0.007832234725356102, 0.015690885484218597, 0.006174654234200716, -0.01901925541460514, -0.014872001484036446, 0.004824155010282993, -0.012038924731314182, 0.004180273972451687, 0.01779092848300934, 0.014277649112045765, -0.009912466630339622, -0.008393567055463791, -0.011002111248672009, 0.011286078952252865, -0.00913980882614851, -0.01161627471446991, 0.019745685160160065, -0.01654939353466034, -0.007607702165842056, -0.009463400579988956, 0.004701982717961073, -0.0068680644035339355, -0.005431714467704296, -0.014872001484036446, 0.002836378524079919, 0.01890038512647152, -0.012646484188735485, -0.01056625321507454, 0.00503548001870513, 0.011662501841783524, 0.006907687988132238, 0.0017615924589335918, 0.011147396638989449, -0.005699172616004944, -0.001362881506793201, -0.008142618462443352, 0.022228755056858063, 0.03011382184922695, -0.003787341294810176, -0.0425027534365654, 0.005101519171148539, -0.006313336081802845, 0.0044708456844091415, -0.0004375089192762971, -0.016826758161187172, 0.012785166501998901, 0.017275823280215263, -0.009793596342206001, 0.0020983917638659477, 0.015373898670077324, -0.0078124236315488815, -0.0018854157533496618, -0.011787976138293743, -0.021489117294549942, -0.0014957851963117719, 0.014145571738481522, 0.006313336081802845, 0.002128109335899353, -0.010460590943694115, -0.0042165955528616905, 0.0017219691071659327, 0.003893003799021244, -0.0003279253141954541, 0.024949565529823303, -0.014132363721728325, -0.01683996617794037, 0.005755306221544743, -0.0051906718872487545, -0.0044708456844091415, 0.027208101004362106, 0.0033019541297107935, 0.01981172524392605, 0.009417173452675343, -0.005946819204837084, 0.002004286041483283, 0.008327527903020382, 0.013082342222332954, -0.016285236924886703, -0.006154842674732208, 0.010916260071098804, 0.011220039799809456, 0.020326828584074974, 0.013168193399906158, 0.010024732910096645, 0.001751686679199338, 0.011173812672495842, 0.002171034924685955, -0.023575952276587486, 0.012104963883757591, 0.028079817071557045, -0.031091200187802315, -0.02107967436313629, -0.002852888312190771, 0.020815519616007805, -0.007568078581243753, 0.03143460303544998, -0.0013959010830149055, -0.013775752857327461, -0.004266124684363604, 0.005299636162817478, -0.005055291578173637, -0.019626814872026443, -0.01783055253326893, 0.01250119786709547, -0.015875795856118202, 0.014819170348346233, 0.0008725413936190307, 0.012732335366308689, 0.0012580445036292076, -0.025583541020751, 0.008043560199439526, -0.00776619603857398, -0.015387105755507946, 0.021158922463655472, 0.007350150030106306, 0.0011969583574682474, 0.000884923676494509, -0.002705951454117894, 0.019877763465046883, -0.018794722855091095, 0.0063892812468111515, -0.01180118415504694, -0.0019960312638431787, 0.007145428564399481, 0.002494626212865114, 0.015096534043550491, 0.005969933234155178, -0.0060491799376904964, 0.036374326795339584, -0.0052567110396921635, 0.0029073706828057766, -0.024170303717255592, 0.002215611282736063, -0.01592862606048584, -0.011649293825030327, 0.013478576205670834, 0.0002763322845567018, 0.0024137285072356462, -0.004418014548718929, 0.005240201018750668, -0.011873827315866947, -0.0030245899688452482, 0.01056625321507454, -0.010975695215165615, -0.003250773763284087, -0.045197147876024246, 0.03040439262986183, 0.005702474620193243, -0.009905862621963024, 0.02257215790450573, -0.012679504230618477, 0.015875795856118202, -0.014858793467283249, 0.00721146771684289, -0.02360236831009388, -0.011979489587247372, -0.015519184060394764, 0.005679361056536436, -0.023338211700320244, -0.014634260907769203, 0.012864412739872932, 0.004896798171103001, 0.016813550144433975, 0.010764370672404766, -0.010110583156347275, -0.0015816360246390104, -0.006475131958723068, 0.007033162284642458, -0.002388963708654046, -0.0046458495780825615, 0.007713364902883768, -0.011556839570403099, 0.018781514838337898, -0.004810946993529797, -0.004523677285760641, -0.008948295377194881, -0.011094565503299236, 0.004328861832618713, -0.016945628449320793, 0.02525334432721138, 0.02199101448059082, -0.002167732920497656, 0.0012902385788038373, 0.009833219461143017, 0.0027488768100738525, 0.0013769149081781507, -0.010110583156347275, 0.0002282475761603564, -0.00634305365383625, -0.0036024318542331457, -0.01580975577235222, 0.004906703718006611, 0.015149365179240704, 0.014383312314748764, -0.025147682055830956, 0.008010541088879108, 0.02277027629315853, -0.0013645325088873506, -0.0165097713470459, 0.002768688602373004, -0.019032463431358337, 0.0014214912662282586, 0.016060704365372658, 0.01857019029557705, 0.0007487180992029607, -0.008102995343506336, 0.008419983088970184, 0.0016220849938690662, 0.013088946230709553, -0.013504992239177227, 0.0037146983668208122, 0.004771323874592781, 0.028766624629497528, 0.012250249274075031, -0.015651263296604156, 0.01882113888859749, -0.0014900068053975701, -0.008941691368818283, -0.02265140600502491, -0.0175399798899889, 0.005435016471892595, -0.017473941668868065, -0.0007755464757792652, 0.013854999095201492, 0.010018128901720047, -0.005550584755837917, 0.0037213023751974106, 0.02500239573419094, -0.030430808663368225, 0.0013686600141227245, 0.010916260071098804, 0.005164256319403648, -0.009060561656951904, 0.01820037141442299, 0.01927020400762558, 0.0007243661675602198, 0.018266409635543823, 0.03574034944176674, 0.0034736557863652706, -0.022743860259652138, 0.0038302666507661343, -0.0070001427084207535, -0.017645642161369324, 0.022043846547603607, 0.009800199419260025, 0.021264584735035896, -0.0011127585312351584, -0.013762544840574265, -0.004484053701162338, 0.003618941642343998, 0.009020938538014889, -0.005808137357234955, 0.010031336918473244, -0.004817551001906395, -0.014224817976355553, 0.020815519616007805, -0.003145111259073019, 0.018926801159977913, -0.011781372129917145, 0.02195139043033123, 0.009919069707393646, -0.007402981165796518, -0.012910640798509121, -0.011385138146579266, 0.007462416309863329, 0.00042244375799782574, -0.007865254767239094, -0.03325728327035904, 0.00976057630032301, -0.02129100076854229, -0.025028811767697334, -0.0014322225470095873, -0.011708728969097137], [-0.004435975104570389, -0.030595997348427773, -0.01296327542513609, -0.022013109177350998, 0.006300047971308231, 0.0103320786729455, -0.026223022490739822, 0.03373860940337181, 0.00416544359177351, 0.02419218420982361, 0.028194567188620567, 0.006841110996901989, -0.06113269925117493, -0.02319899946451187, 0.027023499831557274, 0.017284367233514786, -0.040972545742988586, -0.026059962809085846, 0.0077008819207549095, -0.01340798381716013, -0.01097690686583519, -0.003791146446019411, -0.0394308865070343, -0.021835224702954292, 0.010850906372070312, 0.005443982779979706, 0.006411225069314241, 0.0032871426083147526, -0.016973070800304413, 0.012903979979455471, 0.00404314836487174, -0.005721925757825375, 0.004209914244711399, -0.043700095266103745, -0.010094900615513325, -0.06445319950580597, 0.0311592947691679, 0.0006489976076409221, 0.007585998624563217, -0.014112107455730438, 0.024340420961380005, 0.02896539680659771, -0.0017584546003490686, 0.011139967478811741, 0.007033818401396275, -0.01793660782277584, 0.0166914202272892, -0.035398855805397034, 0.007856530137360096, 0.008101120591163635, 0.018188608810305595, 0.004180266987532377, 0.03857111558318138, 0.018336845561861992, 0.008182650431990623, 0.006952288094907999, 0.004369268659502268, -0.00580345606431365, 0.05425453186035156, -0.011303027160465717, -0.005729337688535452, 0.04521210864186287, 0.017002716660499573, -0.005047450307756662, -0.018544375896453857, -0.027408914640545845, -0.03599180281162262, 0.01186632551252842, 0.02585243247449398, 0.021612869575619698, -0.04568646475672722, 0.01097690686583519, -0.006844816729426384, -0.04767283424735069, 0.015668589621782303, 0.016913775354623795, -0.0035687917843461037, 0.011584675870835781, 0.027497855946421623, -0.03765204921364784, 0.04328503459692001, 0.006918935105204582, 0.016009533777832985, -0.011206673458218575, 0.060302574187517166, -0.030062345787882805, 0.010910200886428356, -0.04776177555322647, -0.007474821526557207, 0.018203431740403175, -0.029276693239808083, 0.03809675946831703, -0.03127788379788399, -0.033590372651815414, -0.0049177431501448154, -0.009968899190425873, -0.045805055648088455, 0.004343327134847641, -0.0166914202272892, 0.022932173684239388, -0.009561249054968357, -0.01630600541830063, 0.00757117522880435, -0.009331482462584972, -0.02591172605752945, -0.016424596309661865, 0.012340681627392769, -0.0049548023380339146, 0.005321687553077936, 0.07067912817001343, -0.025185367092490196, -0.028224214911460876, 0.01892979070544243, -0.007515586446970701, 0.00922030583024025, -0.008153002709150314, -0.034420497715473175, -0.024429362267255783, 0.017669782042503357, -0.019567208364605904, 0.03450943902134895, 0.01925591193139553, -0.030833175405859947, -0.006318577565252781, -0.020086035132408142, 0.0005915559595450759, -0.02014532871544361, 0.0240884181112051, -0.0026219317223876715, 0.008182650431990623, -0.04900696128606796, 0.03916406258940697, 0.00787135399878025, 0.013897164724767208, 0.015238704159855843, 0.03074423409998417, 0.029039515182375908, 0.011769971810281277, 0.0009334261994808912, -0.0012859510025009513, -0.02720138244330883, -0.005536630284041166, -0.03720734268426895, -0.016854481771588326, -0.024711010977625847, 0.02540772221982479, -0.03154471144080162, 0.0394308865070343, 0.012192445807158947, -0.016009533777832985, 0.006792934145778418, -0.005973927676677704, -0.02989928610622883, -0.03436120226979256, -0.03305672109127045, -0.03895653039216995, -0.0089831268414855, -0.02505195513367653, -0.005877573974430561, 0.03373860940337181, -0.017032364383339882, -0.0016343065071851015, 0.015223880298435688, -0.0275867972522974, 0.03261201083660126, 0.011933031491935253, 0.020708627998828888, 0.0035484093241393566, -0.036584749817848206, 0.03255271911621094, 0.0014249226078391075, 0.05214957147836685, 0.011703265830874443, -0.01925591193139553, -0.013422807678580284, 0.00713017163798213, 0.0010626697912812233, -0.007259878795593977, 0.015461058355867863, 0.027319971472024918, -0.02989928610622883, 0.013222688809037209, 0.01664694957435131, -0.011228908784687519, -0.00813076738268137, -0.004921449348330498, 0.049362726509571075, 0.009242541156709194, 0.037444520741701126, -0.013067040592432022, -0.011918208561837673, -0.013711868785321712, -0.018648141995072365, -0.02021944709122181, 0.00482880137860775, 0.005014096852391958, -0.020056387409567833, 0.05710066854953766, -0.03335319459438324, 0.01670624502003193, -0.00025987697881646454, -0.007545233704149723, -0.015075643546879292, -0.01294103916734457, 0.02242816984653473, 0.02983999066054821, -0.03436120226979256, 0.011295615695416927, 0.004091325215995312, 0.018188608810305595, -0.013007746078073978, -0.04331468045711517, -0.02414771355688572, -0.010220901109278202, -0.011977503076195717, -0.02100510150194168, -0.006655815523117781, -0.02933598682284355, 0.011925620026886463, 0.01428999099880457, -0.013482102192938328, 0.06131058186292648, 0.02192416600883007, -0.01758083887398243, -0.06830734014511108, -0.052001334726810455, -0.027720211073756218, 0.0008361460641026497, -0.019315205514431, 0.03510238602757454, -0.0028980220668017864, -0.0004630071925930679, 0.026934558525681496, -0.020842039957642555, -0.004587917122989893, -0.034450143575668335, 0.03554709255695343, -0.02242816984653473, -0.042810678482055664, 0.02632678858935833, -0.028357626870274544, -0.002849845215678215, -0.017669782042503357, 0.00625187112018466, 0.04269208759069443, -0.018233079463243484, 0.015068232081830502, -0.01621706411242485, 0.01293362770229578, -0.004369268659502268, -0.018648141995072365, -0.019819209352135658, 0.00859030056744814, 0.01927073486149311, -0.04109113663434982, 0.02810562588274479, 0.07399962097406387, -0.036881223320961, 0.028209390118718147, 0.01629118248820305, 0.005254981108009815, -0.006574285216629505, 0.04168407991528511, 0.021331220865249634, -0.008049237541854382, -0.02941010519862175, 0.009116539731621742, -0.029128456488251686, 0.0421287901699543, -0.0158168263733387, 0.01845543459057808, 0.026578789576888084, 0.0089831268414855, -0.0019252204801887274, -0.032730601727962494, -0.02586725540459156, -0.00559592479839921, -0.021405339241027832, 0.03344213590025902, 0.011013966053724289, -0.012577860616147518, 0.0008690360118634999, 0.043255388736724854, 0.02242816984653473, -0.01531282253563404, 0.009487130679190159, -0.01930038258433342, -0.006003574933856726, -0.03806711360812187, 0.004647211637347937, -0.001603732816874981, -0.006174047011882067, 0.026504671201109886, 0.019063204526901245, -0.03640686348080635, -0.0016120710643008351, 0.027394089847803116, 0.02279876172542572, 0.01978956162929535, -0.006789227947592735, -0.03166329860687256, -0.01514976192265749, -0.02021944709122181, -0.00030921190045773983, 0.010183841921389103, 0.028624452650547028, 0.0483250729739666, 0.04829542711377144, -0.02494818903505802, 0.0025700489059090614, 0.05392840877175331, 0.002451459877192974, -0.030358819290995598, 0.03204871341586113, -0.006300047971308231, 0.03548780083656311, 0.017877312377095222, 0.008708889596164227, -0.0008236386347562075, -0.008041826076805592, 0.03379790484905243, -0.023391706869006157, -0.03919370844960213, 0.041002195328474045, 0.00859771203249693, 0.059442803263664246, 0.0034298202954232693, 0.03717769309878349, 0.047139182686805725, -0.004762094933539629, -0.02368818037211895, -0.015550000593066216, -0.007059759460389614, 0.010428432375192642, 0.0048102717846632, -0.021642517298460007, 0.011280791833996773, -0.013267159461975098, 0.020486272871494293, -0.01975991576910019, -0.012577860616147518, -0.0138304578140378, 0.007300643716007471, 0.01630600541830063, -0.010013369843363762, -0.026030315086245537, 0.012681625783443451, 0.05131945013999939, 0.01425293181091547, 0.01272609643638134, 0.0008917347295209765, 0.010561845265328884, 0.008286415599286556, 0.020530743524432182, -0.00714870123192668, 0.020367683842778206, -0.036110393702983856, -0.025229839608073235, 0.0012238769559189677, 0.020515920594334602, 0.016987893730401993, 0.00897571537643671, -0.04126901924610138, 0.01759566366672516, -0.004921449348330498, -0.019448619335889816, -0.010784199461340904, -0.005254981108009815, 0.009249952621757984, -0.010895377025008202, 0.010161606594920158, -0.000457679940154776, 0.012244327925145626, -0.019196616485714912, -0.03465767577290535, 0.029484223574399948, 0.0005897030350752175, -0.03735557943582535, 0.021242279559373856, 0.0063371071591973305, -0.0004447092651389539, -0.03252306953072548, -0.007241349201649427, 0.004447092767804861, 0.016009533777832985, -0.000182284478796646, 0.016928600147366524, -0.00961313210427761, 0.0065149907022714615, 0.040527839213609695, -0.029128456488251686, 0.007730529177933931, -0.024221831932663918, -0.02930634096264839, 0.038778647780418396, 0.012829862534999847, -0.05523288995027542, 0.026223022490739822, 0.00919065810739994, -0.004035736434161663, -0.01140679232776165, -0.006659521255642176, 0.020856864750385284, -0.006214811932295561, -0.014178813435137272, -0.04553822800517082, -0.03278989717364311, -0.022709820419549942, 0.020501097664237022, 0.011466086842119694, -0.05514394864439964, -0.030951764434576035, -0.029039515182375908, 0.024459009990096092, 0.018351668491959572, -0.023910535499453545, 0.0378299355506897, 0.023851240053772926, 0.02330276556313038, -0.03022540546953678, 0.011592088267207146, 0.03652545437216759, 0.01755119301378727, 0.008508770726621151, -0.03190047666430473, 0.011243732646107674, 0.036703336983919144, 0.03379790484905243, -0.03145577013492584, -0.032226599752902985, -0.03868970647454262, 0.007745353039354086, -0.014608698897063732, -0.009146187454462051, -0.015401763841509819, -0.022472640499472618, 0.0429292656481266, 0.004050560295581818, -0.036644041538238525, 0.009272187948226929, -0.0073451148346066475, -0.019374500960111618, 0.01750672049820423, -0.031040705740451813, -0.024399714544415474, 0.025704195722937584, 0.019078027456998825, 0.04126901924610138, 0.010658198967576027, -0.029083985835313797, -0.008145591244101524, -0.002973993308842182, -0.01514976192265749, -0.02413288876414299, -0.024310773238539696, -0.00765641126781702, -0.013659985736012459, 0.041002195328474045, 0.03907512128353119, -0.02896539680659771, -0.010561845265328884, -0.01719542406499386, 0.0267122033983469, 0.003622527467086911, -0.01666177436709404, -0.027927741408348083, -0.02023427188396454, -0.03071458637714386, 0.029632460325956345, 0.016380123794078827, -0.04654623568058014, -0.03074423409998417, 0.025155721232295036, 0.0020753098651766777, -0.004750977270305157, -0.03477626293897629, 0.021790754050016403, -0.0067558749578893185, 0.010376549325883389, 0.027972212061285973, -0.010569256730377674, 0.005892397835850716, 0.005551454145461321, -0.048117540776729584, -0.02107921987771988, -0.014423403888940811, 0.024043947458267212, -0.043640803545713425, 0.002907286863774061, -0.01183667778968811, -0.031011059880256653, 0.025659725069999695, -0.011547617614269257, -0.010828670114278793, -0.012644566595554352, 0.014052812941372395, -0.02453312836587429, -0.010584080591797829, 0.001902985037304461, 0.0041913846507668495, -0.010369137860834599, -0.036140039563179016, 0.0010765669867396355, -0.01076196413487196, -0.03477626293897629, -0.014215872623026371, 0.014653170481324196, 0.023169351741671562, -0.005243863444775343, 0.00854582991451025, -0.006796639878302813, -0.02844657003879547, -0.02583760768175125, -0.030047522857785225, 5.8744473790284246e-05, -0.011384557001292706, 0.0041876789182424545, 0.02287288010120392, 0.002154987072572112, 0.00393197126686573, 0.010480314493179321, 0.022146521136164665, 0.0017686458304524422, 0.002399577060714364, -0.011169614270329475, 0.04995567351579666, -0.0024533127434551716, -0.004072795622050762, -0.02755715139210224, -0.017788371071219444, -0.00940560083836317, 0.011236320249736309, -0.005243863444775343, 0.028431745246052742, -0.03034399449825287, 0.009842898696660995, 0.01451234519481659, -0.015950238332152367, -0.007611940149217844, -0.007745353039354086, -0.016128122806549072, -0.0009505660273134708, -0.025185367092490196, -0.004232150036841631, 0.016439419239759445, 0.004046854097396135, 0.014445639215409756, -0.02859480492770672, -0.015431411564350128, 0.021346043795347214, -0.0437297448515892, -0.003463173285126686, 0.025185367092490196, -0.007081994786858559, 0.001199788530357182, -0.03112964890897274, -0.015297998674213886, -0.004632388241589069, -0.024859247729182243, 0.005358746740967035, 0.01182185485959053, 0.019063204526901245, -0.013067040592432022, -0.002219840418547392, 0.0034353791270405054, -0.005584807135164738, 0.0351320318877697, -0.007219113875180483, -0.01429740246385336, -0.0009598308242857456, -0.017743900418281555, 0.017818016931414604, -0.008723713457584381, -0.004102442879229784, 0.04248455911874771, 0.02634161151945591, -0.0009941104799509048, -0.02933598682284355, -0.0024421950802206993, -0.026534318923950195, 0.011851501651108265, -0.018188608810305595, -0.01890014298260212, -0.01847025752067566, 0.018233079463243484, 0.021746283397078514, -0.024043947458267212, -0.025155721232295036, 0.0070412298664450645, -0.014586463570594788, 0.016839656978845596, -0.00030921190045773983, -0.004643505904823542, -0.03910476714372635, -0.05514394864439964, -0.029706578701734543, 0.007982531562447548, 0.03590286150574684, 0.012162798084318638, -0.0613698773086071, 0.0012794656213372946, 0.037059105932712555, 0.040587130934000015, 0.015238704159855843, -0.009753956459462643, 0.0025644900742918253, -0.022072402760386467, -0.00024667466641403735, 0.016469066962599754, 0.001609291648492217, 0.010413608513772488, -0.02106439508497715, 0.05973927676677704, -0.00859771203249693, 0.009383365511894226, 0.0018668523989617825, -0.010902788490056992, -0.017225071787834167, -0.024755481630563736, -0.027912918478250504, 0.015920592471957207, -0.005940574686974287, -0.0021364574786275625, -0.03391649201512337, 0.013978694565594196, -0.0002108894695993513, -0.006937464699149132, -0.06362307071685791, 0.018114490434527397, 0.00965019129216671, -0.030388467013835907, 0.025378074496984482, -0.025363251566886902, 0.007686058524996042, 0.01887049712240696, 0.007152407430112362, 0.00312593556009233, 0.0053290994837880135, -0.004617564380168915, 0.02859480492770672, -0.029751049354672432, 0.010813847184181213, -0.03815605491399765, 0.058167971670627594, -0.01849990524351597, -0.03379790484905243, 0.006774404551833868, 0.006970817688852549, 0.036703336983919144, 0.006392695475369692, -0.03551744669675827, -0.00829382799565792, 0.018588846549391747, 0.015008937567472458, 0.006262988783419132, 0.0015286881243810058, 0.01884084939956665, -0.006544637959450483, -0.005721925757825375, 0.007982531562447548, 0.038393232971429825, 0.00482880137860775, -0.0013647015439346433, -0.0008653301047161222, 0.03916406258940697, -0.023332413285970688, -0.011088084429502487, -0.003211171366274357, -0.019048379734158516, 0.009338894858956337, 0.010658198967576027, -0.019389323890209198, -0.03637721762061119, -0.012192445807158947, -0.0002032460324699059, -0.014786583371460438, -0.01511270273476839, -0.0009070215746760368, -0.00765641126781702, 0.009079480543732643, -0.008886773139238358, -0.034450143575668335, -0.0027294030878692865, 0.027483033016324043, -0.02061968669295311, 0.0034205554984509945, -0.006489049177616835, 0.01207385677844286, -9.716433851281181e-05, -0.016750715672969818, -0.02592655085027218, 0.007648999337106943, -0.023584414273500443, 0.008909008465707302, -0.004762094933539629, 0.0500742644071579, 0.008871950209140778, 0.03198941797018051, 0.014334461651742458, -0.030358819290995598, 0.015890944749116898, -0.025215014815330505, 0.004298856016248465, -0.03474661707878113, -0.0074525862000882626, -0.012666801922023296, 0.002986963838338852, 0.0009635367314331234, -0.03430190682411194, -0.004057972226291895, 0.004836213309317827, 0.025659725069999695, 0.030951764434576035, 0.02275429107248783, -0.019493089988827705, -0.007541527971625328, 0.020530743524432182, -0.005040038377046585, 0.007374762091785669, 0.02714208886027336, -0.01514976192265749, 0.03284919261932373, 0.03388684615492821, -0.044530220329761505, -0.014401168562471867, -0.017847664654254913, 0.0289357490837574, 0.007026406470686197, 0.0008949774201028049, -0.003969029989093542, 0.011517969891428947, -0.016439419239759445, -0.01053960993885994, -0.010235724970698357, -0.002101251157000661, -0.02760162204504013, -0.012585272081196308, 0.024370066821575165, 0.01747707463800907, -0.043077502399683, -0.005833103321492672, -0.04826577752828598, -0.010154195129871368, -0.024785129353404045, -0.00429515028372407, -0.017892135307192802, -0.0009561249171383679, 0.026890086010098457, -0.008820067159831524, -0.009005362167954445, -0.01660247892141342, -0.01747707463800907, 0.014630935154855251, -0.02106439508497715, -0.009939252398908138, 0.020056387409567833, -0.029558341950178146, -0.016483889892697334, -0.023925358429551125, -0.006014692597091198, -0.008783007971942425, -0.004324797540903091, -0.012385153211653233, -0.012422212399542332, 0.014868113212287426, -0.01119184959679842, -0.001783469459041953, 0.006244459189474583, -0.009731721132993698, -0.0029591694474220276, 0.017373308539390564, -0.02625267021358013, 0.056863490492105484, -0.009968899190425873, 0.02989928610622883, 0.017417779192328453, 0.01845543459057808, 0.0048102717846632, -0.015979886054992676, 0.0010496991453692317, -0.06640991568565369, 0.002772021107375622, -0.01975991576910019, 0.05710066854953766, -0.007308055646717548, 0.006155517417937517, 0.011466086842119694, -0.018173785880208015, -0.0037299988325685263, 0.016335653141140938, 0.016884127631783485, -0.01884084939956665, -0.009138775058090687, 0.0267863217741251, -0.002449606778100133, -0.006726227700710297, 0.056804195046424866, 0.029187751933932304, -0.03237483277916908, -0.0018177491147071123, 0.01851472817361355, 0.02755715139210224, -0.0034242612309753895, -0.024459009990096092, 0.013126335106790066, -0.057219259440898895, -0.023510295897722244, -0.007945472374558449, -0.0027646091766655445, 0.013074452057480812, -0.018692612648010254, 0.01710648275911808, -0.0019085438689216971, -0.015238704159855843, -0.03830429166555405, 0.007997354492545128, -0.05220886692404747, -0.005636689718812704, -0.032641660422086716, -0.020797569304704666, 0.016039181500673294, 0.02100510150194168, -0.021405339241027832, 0.021182984113693237, -0.012540801428258419, 0.02100510150194168, 0.030951764434576035, 0.02020462416112423, 0.0038837941829115152, -0.016068827360868454, -0.01892979070544243, 0.012896568514406681, -0.01513493899255991, -0.03560638800263405, 0.006003574933856726, 0.020026739686727524, 0.0026664026081562042, -0.0050252145156264305, 0.00439891591668129, 0.021153336390852928, -0.027008675038814545, 0.016394948586821556, 0.007308055646717548, 0.011369733139872551, -0.005080803297460079, -0.013348689302802086, 0.0006874463870190084, -0.03019575960934162, 0.025585606694221497, 0.011747736483812332, 0.004443386569619179, 0.02413288876414299, 0.02757197432219982, 0.027735034003853798, -0.010309843346476555, -0.014667993411421776, -0.005347629077732563, 0.020738275721669197, -0.0011404940159991384, -0.007078289054334164, -0.0008398519712500274, -0.062140706926584244, 0.01624671183526516, 0.01051737368106842, -0.006822581402957439, -0.04156549274921417, -0.005099332891404629, -0.03172259405255318, -0.016572831198573112, 0.019848857074975967, 0.02989928610622883, -0.031040705740451813, -0.053691230714321136, 0.013059629127383232, 0.01664694957435131, 0.026519495993852615, -0.015031172893941402, -0.011369733139872551, -0.011102908290922642, -0.0062704007141292095, -0.004298856016248465, 0.04177302494645119, -0.007385879755020142, 0.014415991492569447, 0.011918208561837673, -0.0004410033579915762, 0.009672426618635654, -0.026045139878988266, 0.013748927973210812, -0.006741051096469164, -0.0010737875709310174, -0.011065849103033543, -0.010880553163588047, -0.03421296551823616, 0.009709485806524754, 0.017847664654254913, -0.011970090679824352, -0.00712276017293334, 0.0017843958921730518, 0.002290252596139908, -0.008960891515016556, -0.027720211073756218, -0.02365853264927864, -0.005836809054017067, -0.0076341754756867886, -0.006533520296216011, -0.00879783183336258, -0.03029952384531498, 0.03409437835216522, -0.008938656188547611, -0.04432268813252449, 0.04645729437470436, 0.011199261993169785, -0.012207269668579102, 0.013059629127383232, -0.004624976310878992, -0.015935415402054787, -0.015060820616781712, 0.0395791232585907, -0.00880524329841137, 0.03504309058189392, 0.01713613048195839, 0.019656149670481682, -0.02190934307873249, -0.017654957249760628, 0.03207836300134659, -0.010895377025008202, -0.014275167137384415, -0.019196616485714912, -0.008219709619879723, 0.0041913846507668495, 0.005988751538097858, 0.019507912918925285, 0.010643375106155872, 0.023406531661748886, -0.037533462047576904, 0.04479704797267914, -0.020100858062505722, 0.003218583296984434, 0.00965019129216671, -0.01050255075097084, 0.00571822002530098, -0.002184634329751134, 0.007437762338668108, 0.007411820814013481, 0.006715110037475824, 0.02539289928972721, -0.012125738896429539, 0.019670972600579262, -0.007222819607704878, 0.019389323890209198, 0.014134342782199383, 0.010799023322761059, 0.015127526596188545, -0.029276693239808083, 0.013860105536878109, 0.007752764970064163, -0.01403057761490345, -0.004109854809939861, -0.009338894858956337, 0.002879492472857237, 0.023940181359648705, 0.016528360545635223, -0.017966253682971, 0.012177621945738792, 0.0171657782047987, -0.005388393998146057, 0.0008704257197678089, 0.017314013093709946, 0.005918338894844055, 0.011102908290922642, 0.011688441969454288, -0.019211439415812492, 0.012785390950739384, 0.02552631124854088, 0.012192445807158947, -0.028787512332201004, 0.00990219321101904, -0.006741051096469164, -0.004750977270305157, 0.023821592330932617, -0.03246377781033516, -0.011251144111156464, 0.013971283100545406, 0.01706201210618019, -0.025585606694221497, 0.034420497715473175, 0.01114737894386053, -0.001859440584667027, 0.009249952621757984, -0.02413288876414299, 0.01318562962114811, -0.03495414927601814, 0.016928600147366524, -0.004658329300582409, 0.023465825244784355, -0.01560929510742426, 0.011918208561837673, 0.003227848093956709, -0.010747140273451805, -0.007545233704149723, -0.03388684615492821, 0.0002665939391590655, 0.009212893433868885, 0.0001893488661153242, 0.025630077347159386, -0.01980438642203808, 0.03169294819235802, -0.011458675377070904, 0.02803150750696659, 0.021790754050016403, 0.01071749348193407, 0.008931244723498821, -0.044915635138750076, -0.0070004649460315704, 0.01294103916734457, -0.030447760596871376, -0.023969829082489014, 0.0028257567901164293, -0.01073231641203165, -0.024666540324687958, 0.014445639215409756, -0.008671830408275127, -0.008538417518138885, 0.010806434787809849, 0.017328837886452675, -0.008486535400152206, 0.041417255997657776, 0.016543185338377953, 0.003361260751262307, -0.012370329350233078, 0.009724309667944908, 0.013704457320272923, 0.005292040295898914, 0.01629118248820305, 0.005229039583355188, -0.014816230162978172, -0.05425453186035156, -0.02198346145451069, -0.007445174269378185, -0.016394948586821556, -0.0043581509962677956, -0.01203679759055376, 0.0059257508255541325, 0.0011293762363493443, -0.006199988070875406, 0.022561583667993546, 0.02938045933842659, 0.0046768588945269585, 0.005544042214751244, -0.004817683715373278, 0.04260314628481865, 0.006792934145778418, 0.004272914957255125, -0.011221497319638729, 0.004628682043403387, -0.010161606594920158, 0.025096425786614418, 0.02451830357313156, 0.02189452014863491, 0.020308390259742737, -0.015950238332152367, -0.014215872623026371, -0.00897571537643671, -0.018351668491959572, -0.011429027654230595, -0.029261870309710503, 0.013548809103667736, -0.016469066962599754, -0.004402621649205685, -0.02712726593017578, -0.012155386619269848, 0.0016621008981019258, -0.01790696009993553, -0.0017677192809060216, 0.005469923838973045, 0.004862154833972454, -0.014579052105545998, -0.0049548023380339146, -0.009679838083684444, 0.02625267021358013, 0.016750715672969818, 0.005188274662941694, -0.0015314675401896238, -0.044500574469566345, 0.014749524183571339, -0.018203431740403175, 0.026993852108716965, -0.014630935154855251, 0.00504374410957098, -0.030447760596871376, 0.0038652645889669657, -0.02024909481406212, -0.007259878795593977, 0.0006531667313538492, -0.013489514589309692, -0.010643375106155872, 0.03281954303383827, 0.0072784083895385265, 0.0006374166114255786, -0.02857998199760914, -0.014534581452608109, 0.0006735492497682571, 0.016039181500673294, -0.0008505064761266112, 0.011013966053724289, -0.04201020300388336, -0.019522735849022865, 0.019211439415812492, -0.002951757749542594, -0.023777121677994728, -0.008649595081806183, 0.04301821067929268, 0.0023032233584672213, -0.01028760802000761, 0.02451830357313156, -0.013949046842753887, -0.022606054320931435, 0.0218648724257946, 0.013726692646741867, 0.02370300330221653, -0.00593316275626421, -0.03184118494391441, -0.007193172350525856, -0.010561845265328884, -0.032641660422086716, 0.005744161084294319, -0.019893327727913857, 0.013126335106790066, -0.004984449595212936, -0.007226525340229273, -0.0023087821900844574, 0.034183319658041, -0.017743900418281555, 0.013667398132383823, -0.002644167048856616, -0.019908150658011436, 0.014401168562471867, 0.013052216731011868, -0.0048102717846632, 0.010665610432624817, 0.02056039124727249, 0.001652836101129651, 0.0014851436717435718, -0.0010098606580868363, 0.009791015647351742, 0.005477335769683123, 0.009064656682312489, -0.008316063322126865, -0.011792207136750221, -0.01276315562427044, 0.015520352870225906, 0.04438198357820511, 0.015223880298435688, 0.026415729895234108, -0.019507912918925285, 0.01340057235211134, -0.015268350951373577, 0.01801072433590889, 0.008879361674189568, -0.011895973235368729, -0.0022161344531923532, -0.00527721643447876, 0.013222688809037209, -0.014171401970088482, 0.008657006546854973, 0.009968899190425873, -0.016795186325907707, -0.004739859607070684, 0.02683079242706299, 0.020471449941396713, -0.01790696009993553, -0.005014096852391958, 0.00809370819479227, -0.014979290775954723, 0.004584211390465498, -0.019063204526901245, -0.016424596309661865, 0.03522097319364548, 0.009494543075561523, 0.016750715672969818, 0.0063408128917217255, -0.0008708889945410192, -0.008664418943226337, -0.030388467013835907, -0.023495472967624664, -0.006644697394222021, -0.005002979189157486, -0.01586129702627659, 0.038778647780418396, -0.02942492999136448, -0.007504468783736229, 0.037474166601896286, 0.004584211390465498, 0.01449752226471901, 0.006841110996901989, 0.011814442463219166, 0.009946663863956928, -0.008256768807768822, -0.017432603985071182, -0.026964204385876656, 0.01753636822104454, -0.030951764434576035, 0.017417779192328453, 0.003991265781223774, -0.005347629077732563, -0.02192416600883007, 0.003924559336155653, -0.01712130568921566, 0.019552383571863174, 0.010176430456340313, 0.01207385677844286, -0.0011293762363493443, 0.0219389908015728, 0.04239561781287193, 0.008360533975064754, 0.007708293851464987, -0.03919370844960213, 0.00780464755371213, -0.016795186325907707, 0.009464895352721214, -0.014015753753483295, 0.030566349625587463, 0.009524189867079258, -0.03649580851197243, 0.004417445510625839, -0.008167826570570469, 0.0232879426330328, -0.0005609822110272944, -0.00614810548722744, -0.024696188047528267, -0.015283174812793732, -0.0024940778966993093, 0.040201716125011444, -0.005884985905140638, 0.0040097953751683235, -0.005807161796838045, -0.006611344404518604, -0.02844657003879547, 0.021242279559373856, 0.020293565467000008, 0.0006045266636647284, 0.004109854809939861, -0.0074562919326126575, 0.019997093826532364, -0.009390776976943016, 0.005432864651083946, 0.0009250878938473761, 0.020041564479470253, -0.009383365511894226, -0.016780363395810127, 0.009716897271573544, 0.00526980496942997, -0.004639800172299147, -0.035280268639326096, 0.004169149324297905, 0.02720138244330883, -0.010191254317760468, 0.014579052105545998, -0.017314013093709946, -0.014275167137384415, -0.029039515182375908, 0.01758083887398243, 0.013437631540000439, 0.031426120549440384, 0.006111046299338341, 0.016483889892697334, 0.0037466755602508783, 0.010873141698539257, -0.006707698106765747, -0.016128122806549072, 0.0005846073618158698, -0.0324341282248497, 0.028209390118718147, -0.014808818697929382, 0.013489514589309692, 0.009212893433868885, 0.01028760802000761, -0.004087619483470917, -0.017269542440772057, 0.019003909081220627, 0.0033279077615588903, -0.004536034539341927, -0.007256172597408295, 0.005106744822114706, -0.004899213556200266, 0.04340362548828125, -0.04607187956571579, -0.003416849533095956, 0.002143869176506996, 0.02155357599258423, 0.027912918478250504, -0.011480910703539848, -0.001458275830373168, -0.016113299876451492, 0.011895973235368729, -0.011592088267207146, -0.009123952127993107, -0.03184118494391441, -0.02932116389274597, -0.01297068689018488, -0.03071458637714386, 0.006807757541537285, -0.01980438642203808, 0.006007281132042408, -0.009998546913266182, -0.016617301851511, 0.029691755771636963, -0.015179409645497799, -0.01795143075287342, -0.019626501947641373, 0.0004775992128998041, 0.010005958378314972, 0.004487857688218355, -0.021375691518187523, 0.0026330493856221437, 0.028268685564398766, -0.02812044881284237, -0.009828074835240841, -0.02365853264927864, 0.005655219312757254, -0.012911392375826836, 0.0008282709750346839, 0.006314871367067099, 0.0051956865936517715, -0.012785390950739384, 0.007782412227243185, 0.008219709619879723, 0.039282649755477905, 0.009627955965697765, 0.022265110164880753, 0.002583019668236375, -0.001356363296508789, -0.006177752744406462, -0.02625267021358013, 0.016854481771588326, 0.01185891404747963, 0.019122498109936714, -0.005292040295898914, -0.005184568930417299, 0.030447760596871376, -0.024429362267255783, -0.00018471648218110204, 0.0003458077844697982, 0.0037614991888403893, 0.005629278253763914, -0.0011071407934650779, -0.008064061403274536, 0.01162173505872488, -0.012844685465097427, -0.01139196939766407, 0.004410033579915762, -0.01747707463800907, 0.003285289742052555, 0.021701812744140625, 0.010369137860834599, -0.0017528956523165107, 0.007737941108644009, 0.01666177436709404, 0.004450798500329256, 0.012229504995048046, -0.02629714086651802, -0.005132685881108046, -0.01532764546573162, 0.025318780913949013, 0.012147975154221058, -0.016098475083708763, -0.006196282338351011, 0.0044285631738603115, 0.009472307749092579, -0.018959438428282738, 0.027438562363386154, 0.015505529940128326, 0.006781816482543945, 0.010806434787809849, -0.006174047011882067, 0.00023833637533243746, 0.002332870615646243, 0.042247381061315536, -0.041506197303533554, -0.017832841724157333, -0.01271868497133255, 0.0047806245274841785, 0.010621139779686928, -0.003770763985812664, 0.014075048267841339, -0.01973026804625988, -0.033145662397146225, -0.02275429107248783, -0.011777383275330067, 0.0002960096171591431, 0.03201906755566597, 0.01207385677844286, -0.0004581431858241558, -0.004109854809939861, -0.034835558384656906, -0.01275574415922165, -0.014860700815916061, 0.0008959038532339036, 0.012385153211653233, -0.010169018059968948, -0.031337179243564606, 0.008827478624880314, -0.013015157543122768, -0.01165879424661398, 0.020278742536902428, 0.026638085022568703, 0.014112107455730438, 0.000999669311568141, -0.005010391119867563, 0.00395791232585907, -0.012348094023764133, -0.009346306324005127, -0.009835486300289631, -0.012451859191060066, -0.0050252145156264305, -0.024740658700466156, -0.00966501422226429, 0.022606054320931435, 0.002167957602068782, -0.00780464755371213, -0.01845543459057808, 0.002701608696952462, -0.0070004649460315704, -0.0028479923494160175, -0.014564228244125843, 0.013067040592432022, -0.014393756166100502, -0.022057579830288887, -0.014764347113668919, 0.011132555082440376, 0.002077162731438875, 0.008019590750336647, -0.019967446103692055, -0.01792178303003311, -0.0005873868358321488, 0.006077693309634924, -0.013845281675457954, 0.015194233506917953, -0.00786394253373146, 0.031070353463292122, 0.011110319755971432, -0.018173785880208015, 0.00786394253373146, 0.011844090186059475, 0.0050178030505776405, -0.007678646594285965, -0.011681029573082924, 0.007611940149217844, -0.0017306602094322443, -0.026534318923950195, 0.001696380553767085, -0.001795513671822846, 0.0075526456348598, -0.01251115370541811, 0.005069685634225607, 0.03714804723858833, -0.002618225757032633, 0.022131698206067085, 0.002583019668236375, -0.006429754663258791, -0.025971021503210068, -0.009175834245979786, -0.00459532905369997, -0.010458079166710377, -0.00635563675314188, 0.004695388488471508, 0.005959104280918837, -0.00733770290389657, 0.03172259405255318, 0.01928555779159069, -0.007263584528118372, -0.0015814972575753927, -0.007189466618001461, -0.01182926632463932, 0.008108532056212425, -0.01879637874662876, -0.006918935105204582, -0.022517113015055656, -0.024859247729182243, -0.010658198967576027, -0.008434652350842953, 0.015920592471957207, -0.008619948290288448, 0.01928555779159069, -0.03284919261932373, 0.022176168859004974, 0.020515920594334602, 0.0034094376023858786, 0.02889127843081951, 0.026875263080000877, 0.023777121677994728, -0.008316063322126865, -0.008686654269695282, 0.0055106887593865395, -0.013659985736012459, 0.02457759901881218, 0.0029332281555980444, 0.0008796905167400837, -0.0003212561132386327, 0.002731255954131484, 0.012451859191060066, 0.004550857935100794, 0.014193637296557426, -0.013104099780321121, 0.004339621402323246, -0.020086035132408142, 0.0015750119928270578, 0.04470810294151306, -0.0009681691299192607, -0.023035939782857895, 0.016335653141140938, 0.006125870160758495, 0.02491854317486286, -0.029691755771636963, 0.029217397794127464, 0.002349547343328595, -0.006926346570253372, -0.0021457222755998373, 0.004120972473174334, 0.0019381912425160408, -0.03854146972298622, -0.02454795129597187, -0.002001191722229123, -0.008019590750336647, -0.011325262486934662, -0.0013498779153451324, 0.017877312377095222, 0.0027849918697029352, 0.002297664526849985, 0.010235724970698357, 0.0034261143300682306, 0.001980809262022376, -0.014371520839631557, -0.00569969043135643, -0.020842039957642555, 0.019404146820306778, 0.0027961095329374075, -0.0037985583767294884, 0.013385748490691185, -6.937725174793741e-06, 0.014134342782199383, 0.019878504797816277, 0.016424596309661865, -0.0022791349329054356, -0.016439419239759445, -0.006781816482543945, -0.01511270273476839, -0.009828074835240841, 0.012303623370826244, -0.012185033410787582, 0.004802859853953123, 0.014364109374582767, -0.01620224118232727, 0.014415991492569447, -0.019552383571863174, -0.022250287234783173, -0.015461058355867863, 0.009924428537487984, 0.0020845746621489525, 0.019478265196084976, -0.0007601748802699149, 0.02232440561056137, 0.012340681627392769, 0.010925023816525936, -0.0011682882905006409, -4.562902176985517e-05, 0.01849990524351597, -0.016854481771588326, 0.005036332178860903, -0.00733770290389657, 0.019078027456998825, -0.006737345363944769, 0.01667659729719162, 0.0025719020050019026, 0.006918935105204582, 0.018203431740403175, 0.006900405511260033, -0.013978694565594196, -0.004825095646083355, -0.0012572301784530282, 0.017314013093709946, 0.06107340380549431, -0.015068232081830502, 0.034064728766679764, 0.00766382273286581, 0.008642183616757393, 0.0031018471345305443, -0.0255114883184433, 0.015194233506917953, 0.01513493899255991, -0.005799749866127968, -0.003768910886719823, -0.017743900418281555, -0.02054556831717491, 0.012125738896429539, 0.029943756759166718, 0.009813250973820686, -0.01968579739332199, 0.0011580970603972673, 0.026475025340914726, 0.02195381373167038, -0.013845281675457954, 0.0014193637762218714, 0.00393197126686573, 0.009850310161709785, 0.003928265068680048, 0.016454242169857025, -0.011673618108034134, -0.0008505064761266112, 0.01798107847571373, 0.0035799096804112196, 0.0033983199391514063, -0.004106149077415466, 0.01403057761490345, -0.005451394245028496, -0.00026613069348968565, 0.0049177431501448154, -0.00235881214030087, 0.009991134516894817, 0.0005137318512424827, 0.008101120591163635, 0.02242816984653473, -0.016009533777832985, 0.028683748096227646, 0.0102950194850564, -0.009813250973820686, -0.025719018653035164, 0.011569852940738201, -0.0017408514395356178, 0.002230958081781864, 0.03459838032722473, -0.01881120167672634, 0.011955267749726772, 0.024043947458267212, -0.02727550081908703, -0.017862489446997643, 0.004806566052138805, 0.013259747996926308, -0.003559526987373829, -0.005773808807134628, -0.0032148773316293955, -0.018633317202329636, 0.0019974857568740845, -0.02935081161558628, -0.017640134319663048, -0.00833829864859581, 0.013341277837753296, 0.019092850387096405, 0.009131363593041897, 0.01297068689018488, 0.0050252145156264305, -0.029721401631832123, -0.015194233506917953, 0.009954075329005718, -0.009035009890794754, 0.004028324969112873, 0.025348428636789322, 0.006422342732548714, -0.0026738145388662815, 0.016424596309661865, -0.004580505192279816, -0.0010098606580868363, 0.016750715672969818, -0.0026867850683629513, -0.027067970484495163, -0.011718088760972023, -0.013963870704174042, 0.007211701944470406, 0.004936272744089365, 0.006652109324932098, -0.014705052599310875, -0.0034298202954232693, -0.013437631540000439, -0.009783604182302952, -0.0062704007141292095, 0.0006990273832343519, 0.02060486190021038, -0.017299190163612366, 0.013593279756605625, 0.004039442632347345, 0.0008180797449313104, 0.009301835671067238, 0.009791015647351742, -0.0020641922019422054, -0.030892470851540565, 0.0014656876446679235, 0.0029536106158047915, 0.015038585290312767, -0.030166111886501312, -0.0012776126386597753, 0.015638941898941994, 0.007185760419815779, 0.0032519365195184946, 0.016483889892697334, 0.0019103968515992165, 0.030981412157416344, -0.005106744822114706, -0.01885567232966423, 0.0014054665807634592, -0.007007876876741648, 0.012533389031887054, -0.003720734268426895, -0.00604433985427022, -0.007901000790297985, 0.0010506255785003304, 0.012325858697295189, 0.003913441672921181, 0.015045996755361557, 0.007678646594285965, 0.004369268659502268, -0.018351668491959572, -0.005429158918559551, 0.001844616956077516, 0.013704457320272923, -0.016024356707930565, -0.0018992791883647442, -0.00036364246625453234, 0.00923512876033783, 0.0035428504925221205, 0.021820401772856712, 0.0009218452614732087, 0.02460724674165249, -0.009924428537487984, -0.00790841318666935, 0.003857852891087532, -0.018722260370850563, 0.029958581551909447, 0.008264180272817612, -0.018959438428282738, -0.017402956262230873, -0.00235325307585299, 0.010354313999414444, -0.02279876172542572, 0.01879637874662876, 0.02318417653441429, 0.002727550221607089, 0.0059220450930297375, -0.009820662438869476, 0.010035606101155281, 0.019196616485714912, 0.01028760802000761, -0.020397331565618515, -0.014608698897063732, -0.008501358330249786, 0.024355243891477585, -0.009027598425745964, 0.0057515730150043964, 0.018781553953886032, 0.00208642752841115, 0.003663292620331049, -0.00636304821819067, -0.007597116753458977, 0.008034413680434227, -0.004832507111132145, -0.026964204385876656, 0.016795186325907707, 0.011769971810281277, -0.02063450962305069, -0.0006615050369873643, -0.0010941700311377645, 0.011043613776564598, 0.008568065240979195, -0.027053147554397583, 0.009094304405152798, -0.013118923641741276, -0.008960891515016556, 0.01971544325351715, 0.013585868291556835, -0.02056039124727249, -0.013052216731011868, -0.006989347282797098, -0.0031333472579717636, 0.024325596168637276, -0.02064933255314827, -0.01802554912865162, -0.006489049177616835, -0.026638085022568703, 0.01557964738458395, 0.016320830211043358, -0.00045906967716291547, 0.015023761428892612, -0.006136987823992968, 0.014971878379583359, 0.013533985242247581, -0.01587611995637417, 0.022279934957623482, -0.008138179779052734, -0.011999738402664661, -0.012155386619269848, 0.004384092055261135, 0.007434056606143713, -0.034420497715473175, 0.013170805759727955, 0.0014138048281893134, 0.0027664622757583857, 0.00918324664235115, -0.001984514994546771, 0.006407519336789846, -0.021657340228557587, 0.009716897271573544, 0.01715095341205597, 0.00591463316231966, -0.00791582465171814, 0.007308055646717548, 0.009768780320882797, 0.008679242804646492, 0.014215872623026371, 0.005232745781540871, -0.0001590067258803174, 0.016765538603067398, -0.003765205154195428, 0.00833829864859581, -0.0157427079975605, 0.0030481114517897367, -0.028802337124943733, 0.006818875204771757, -0.016765538603067398, 0.036614395678043365, 0.006566873285919428, -0.02284323237836361, -0.012051621451973915, -0.015171997249126434, -0.01578717865049839, 0.006070281378924847, 0.0024885188322514296, 0.005299452226608992, 0.006603932473808527, -0.0011006554123014212, -0.00224207597784698, 0.016572831198573112, -2.7113946998724714e-05, -0.0010673021897673607, -0.0069337585009634495, -0.0438779816031456, -0.0030981411691755056, 0.01532764546573162, 0.010028193704783916, 0.0062741064466536045, -0.00024644305813126266, -0.01403057761490345, -0.005392099730670452, -0.006192576605826616, 0.017284367233514786, 0.033560726791620255, -0.02057521604001522, -0.009212893433868885, 0.007400703150779009, -0.013837870210409164, -0.028609629720449448, -0.0025996961630880833, -0.003987559583038092, -0.007626764010637999, 0.0038800882175564766, -0.0028757865075021982, 0.00525127537548542, -0.018662964925169945, -0.021627694368362427, -0.010887965559959412, -0.010613727383315563, 0.001475878874771297, -0.006003574933856726, -0.022220639511942863, -0.005899809766560793, -0.0007611013716086745, 0.004865860566496849, -0.029928933829069138, 0.013200453482568264, -0.0037763228174299, 0.009598308242857456, -0.0034965265076607466, 0.04088360443711281, -0.0004271061916369945, -0.024058770388364792, 0.0028665217105299234, -0.013630338944494724, 0.021271927282214165, -0.0001885381934698671, 0.014415991492569447, -0.005162333138287067, 0.03895653039216995, 0.010169018059968948, -9.901729936245829e-05, -0.004384092055261135, -0.005210509989410639, -0.018129313364624977, 0.012881744652986526, -0.014986702241003513, -7.834526331862435e-05, 0.007207995746284723, 0.03735557943582535, 0.00648534344509244, 0.003570644883438945, 0.017343660816550255, 0.0063445186242461205, -0.019152145832777023, -0.008449476212263107, -0.02585243247449398, -0.002356959041208029, 0.024414539337158203, -0.01119184959679842, 0.027112441137433052, -0.015994708985090256, -0.0006346371956169605, 0.008449476212263107, -0.013430220074951649, -0.010280195623636246, -0.027912918478250504, 0.01076196413487196, 0.002725697122514248, -0.02284323237836361, -0.010687845759093761, 0.009242541156709194, -0.02496301382780075, 0.014201048761606216, 0.0289357490837574, 0.006652109324932098, 0.000871815427672118, -0.006359342485666275, 0.04076501727104187, 0.009309247136116028, 0.01930038258433342, -0.008056649938225746, -0.00625187112018466, -0.02494818903505802, -0.004117266740649939, 0.0041839731857180595, 0.027394089847803116, -0.011125143617391586, 0.018707435578107834, -0.005303157959133387, 0.019893327727913857, 0.007159819360822439, -0.001870558364316821, -0.011814442463219166, -0.006429754663258791, 0.00791582465171814, -0.0024106947239488363, -0.0008245650678873062, -0.0018029254861176014, 0.03296777978539467, 0.009917016141116619, 0.0037726168520748615, -0.012385153211653233, -0.029484223574399948, -0.012896568514406681, -0.010324666276574135, -0.005992457270622253, 0.0002471379120834172, 0.010925023816525936, 0.0006388063193298876, 0.02143498696386814, -0.0001257693365914747, -0.00897571537643671, -0.021642517298460007, -0.024666540324687958, -0.016928600147366524, 0.009175834245979786, -0.008279004134237766, 0.013622927479445934, 0.017447426915168762, -0.010910200886428356, -0.0028313156217336655, -0.011162202805280685, -0.00603692838922143, -0.0057478672824800014, 0.013719281181693077, 0.03676263242959976, 0.002936934120953083, 0.009731721132993698, 0.010635963641107082, 0.0017945871222764254, -0.008775596506893635, 0.00944266002625227, 0.02503713220357895, -0.013763751834630966, -0.005888691637665033, 3.0863284337101504e-05, -0.002768315142020583, 0.009287011809647083, 0.022665347903966904, 0.005410629324615002, 0.019107675179839134, -0.015965063124895096, -0.019181793555617332, 0.004943684674799442, -0.017299190163612366, 0.005544042214751244, 0.007789823692291975, -0.017773546278476715, -0.020930983126163483, -0.0054847477003932, 0.009301835671067238, 0.0017649398650974035, -0.0020030445884913206, -0.005688572768121958, 0.0325823649764061, 0.008353122510015965, 0.010821258649230003, 0.006559461820870638, 0.019374500960111618, -0.01575753092765808, -0.020041564479470253, 0.0027849918697029352, -0.0131930410861969, 0.03889723867177963, 0.0045100930146873, 0.0041876789182424545, -0.005065979901701212, 0.009331482462584972, 0.012155386619269848, -0.0017352926079183817, 0.02625267021358013, 0.004246973432600498, -0.0032093185000121593, -0.00987254548817873, -0.014060224406421185, -0.008256768807768822, 0.02417735941708088, -0.029736226424574852, 0.008360533975064754, 0.0012618625769391656, -0.015713060274720192, -0.01204420905560255, -0.0051549216732382774, 0.01531282253563404, 0.01980438642203808, 0.00658910907804966, -0.019433794543147087, 0.005592219065874815, 0.00580345606431365, -0.00011870494927279651, -0.01245927158743143, -0.005243863444775343, -0.04085395857691765, -0.026208199560642242, -0.0145049337297678, 0.00449156342074275, 0.00010857159941224381, -0.009479719214141369, 0.00037916097790002823, 0.0010469197295606136, -0.009553837589919567, 0.002547813579440117, -0.00024644305813126266, 0.0021105159539729357, -0.006455696187913418, 0.015683412551879883, -0.03830429166555405, 0.013593279756605625, -0.002117927884683013, 0.02021944709122181, 0.00858288910239935, 0.0009811398340389132, -0.007648999337106943, -0.025378074496984482, 0.00807888526469469, 0.021271927282214165, -0.022146521136164665, 0.003965324256569147, 0.008012178353965282, 0.01054702140390873, 0.01617259345948696, 0.0028072271961718798, -0.009761367924511433, -0.023347236216068268, 0.01535729318857193, 0.002640461316332221, -0.0076934704557061195, -0.0037726168520748615, -0.013748927973210812, -0.020293565467000008, 0.0192410871386528, 0.0022513405419886112, 0.004558269865810871, -0.008486535400152206, -0.003902323776856065, 0.01115479040890932, 0.016987893730401993, 0.013133746571838856, 0.008064061403274536, 0.007011582609266043, 0.007422938942909241, -0.005106744822114706, 0.003453908720985055, -0.006829992868006229, 0.014734700322151184, -0.00011580970021896064, -0.0028220508247613907, 0.015401763841509819, 0.009064656682312489, 0.0046027409844100475, -0.0016194828785955906, 0.00922030583024025, -0.018114490434527397, -0.012348094023764133, -0.0241625364869833, 0.017684604972600937, 0.01980438642203808, 0.009968899190425873, 0.005655219312757254, -0.019819209352135658, 0.015068232081830502, 0.0232879426330328, 0.008479123003780842, -0.024266302585601807, -0.016780363395810127, 0.004599034786224365, -0.004543446470052004, 0.01707683503627777, 0.02895057387650013, 0.0228135846555233, -0.023332413285970688, 0.0053735701367259026, 0.01139938086271286, 0.007737941108644009, 0.008279004134237766, 0.0035947333090007305, 0.006277812644839287, 0.011295615695416927, 0.025289133191108704, 0.022902527824044228, -0.015550000593066216, 0.033086370676755905, -0.0017649398650974035, 0.017684604972600937, -0.014082459732890129, -0.0065816971473395824, -0.012140562757849693, 0.03634757176041603, 0.024473832920193672, -0.00657057948410511, 0.023495472967624664, 0.0006286150892265141, -0.003704057540744543, -0.011503146030008793, 0.007156113162636757, -0.006329695228487253, 0.02230958081781864, 0.015342469327151775, 0.012244327925145626, 0.007222819607704878, -0.013645162805914879, 0.016824834048748016, -0.0166914202272892, 0.01008007675409317, 0.014868113212287426, 0.004350739065557718, -0.0011071407934650779, 0.005418041255325079, 0.011695853434503078, -0.005947986617684364, -0.016394948586821556, 0.0024885188322514296, -0.02110886573791504, 0.025733843445777893, 0.012407388538122177, 0.0019011320546269417, -0.00317781837657094, -0.00965019129216671, 0.00714128976687789, -0.007359938230365515, 0.012815038673579693, 0.02327311784029007, -0.004665741231292486, -0.008657006546854973, -0.013763751834630966, -0.0028016683645546436, 0.01881120167672634, -0.010495138354599476, 0.020323213189840317, 0.006059163715690374, -0.0069152289070189, -0.00612957589328289, 0.0076341754756867886, -0.02144980989396572, 0.005518100690096617, 0.018588846549391747, 0.005651513580232859, -0.0014601286966353655, -0.004287738353013992, 0.024384891614317894, -0.02635643631219864, 0.002464430406689644, 0.00813076738268137, 0.0029702873434871435, -0.01795143075287342, 0.002972140209749341, 0.012007149867713451, -0.017803194001317024, 0.008382769301533699, -0.023539943620562553, 0.0005582027952186763, 0.0003106016374658793, 0.002579313702881336, 0.02241334691643715, 0.00010353387187933549, -0.022072402760386467, -0.022680172696709633, -0.00557739520445466, -0.0031944948714226484, -0.021212631836533546, -0.011088084429502487, 0.02014532871544361, -0.02943975292146206, 0.0007953810272738338, -0.023791946470737457, -0.00042409513844177127, 0.008064061403274536, 0.010962083004415035, -0.010747140273451805, -0.00041181931737810373, 0.02287288010120392, -0.024266302585601807, -0.031366825103759766, 0.002275428967550397, -0.01139938086271286, 0.009724309667944908, 0.0025774608366191387, -8.349879499292001e-05, 0.006426048930734396, 0.007144995499402285, 0.019552383571863174, 0.006185164675116539, 0.0011219644220545888, -0.022027932107448578, -0.01098431833088398, 0.022087227553129196, -0.004246973432600498, 0.00393938273191452, 0.003033287823200226, -0.0036243805661797523, -0.0263860821723938, -0.0007022700156085193, -0.0009746544528752565, 0.005351334810256958, 0.009509366005659103, 0.0015787178417667747, 0.015416587702929974, 0.000342796731274575, 0.01801072433590889, 0.005884985905140638, -0.02764609269797802, -0.017803194001317024, -0.0075192926451563835, 0.01887049712240696, -0.0037522343918681145, -0.009316658601164818, 0.005432864651083946, 0.009753956459462643, -0.0033797903452068567, -0.040201716125011444, 0.01747707463800907, -0.016098475083708763, 0.002812786027789116, 0.002646020147949457, -0.011058436706662178, 0.020397331565618515, 0.0028535511810332537, -0.0016556155169382691, -0.0023402825463563204, -0.002922110492363572, 0.004117266740649939, 0.004825095646083355, -0.02324347011744976, -0.02847621589899063, -6.492581633210648e-06, 0.010836082510650158, -0.008568065240979195, 0.007856530137360096, 0.02285805530846119, 0.009109128266572952, -0.0010478461626917124, 0.004680565092712641, -0.03175223991274834, -0.008775596506893635, 0.01297809835523367, 0.004769506864249706, 0.010917612351477146, -0.004765801131725311, -0.0014184372266754508, 0.009820662438869476, -0.02238369919359684, 0.031366825103759766, -0.017017541453242302, -0.012800214812159538, -0.0102950194850564, -0.0033167898654937744, -0.018544375896453857, 0.0015852032229304314, 0.016617301851511, -0.009983723051846027, 0.013096687383949757, -0.007471115794032812, -0.014349285513162613, 0.005581101402640343, 0.0009561249171383679, -0.023362059146165848, 0.01511270273476839, -0.02588207833468914, -0.017417779192328453, 0.019448619335889816, -0.0074562919326126575, -0.017758723348379135, 0.014267755672335625, 0.007530410308390856, -0.005114156752824783, -0.002833168487995863, -0.012563036754727364, -0.0022142815869301558, 0.006218517664819956, 0.027408914640545845, -0.005673748906701803, 0.008849713951349258, -0.020367683842778206, -0.00021656414901372045, -0.00809370819479227, -0.026519495993852615, 0.017002716660499573, -0.006196282338351011, 0.009776191785931587, 0.000374065333744511, -0.010102312080562115, -0.017284367233514786, -0.004139502067118883, -0.0013637751108035445, -0.0008069620234891772, 0.004973331931978464, -0.006262988783419132, -0.009153598919510841, -0.007230231538414955, -0.010532197542488575, 0.005447688512504101, -0.02099027670919895, 0.008642183616757393, 0.0025459604803472757, -0.023584414273500443, 0.008790419436991215, 0.02637125924229622, -0.022472640499472618, 0.020930983126163483, 0.01467540580779314, -0.01756601594388485, -0.01296327542513609, 0.024814777076244354, 0.003633645363152027, -0.00033469003392383456, -0.0009403747972100973, 0.0010478461626917124, 0.0021605459041893482, -0.01927073486149311, -0.02011568285524845, -0.045004576444625854, -0.01970062032341957, 0.021138513460755348, -0.009309247136116028, -0.006748463027179241, 0.01139938086271286, -0.014571639709174633, 0.027067970484495163, -0.016854481771588326, -0.01139938086271286, 0.019952623173594475, 0.013259747996926308, 0.0019826621282845736, -0.00766382273286581, -0.031248237937688828, -0.014430815353989601, 0.005136392079293728, 0.0038133820053189993, 0.014742111787199974, 0.009805839508771896, 0.006262988783419132, -0.0004854742728639394, -0.006155517417937517, -0.009776191785931587, -0.005962810013443232, -0.008449476212263107, 0.016365300863981247, 0.009820662438869476, -0.0061666350811719894, 0.00196969136595726, 0.006592814810574055, 0.029662108048796654, -0.006114752497524023, -0.028817160055041313, 0.007745353039354086, -0.002827609656378627, -0.03495414927601814, -0.0013350542867556214, 0.015023761428892612, 0.020011916756629944, 0.000659652054309845, -0.00202157418243587, -0.008464300073683262, -0.013489514589309692, 0.002675667405128479, 0.0018427639733999968, -0.014645758084952831, -0.014541992917656898, 0.011666206642985344, 0.03474661707878113, 0.010413608513772488, 0.026089610531926155, -0.007044936064630747, -0.010072664357721806, -0.000897756835911423, -0.0033519959542900324, -0.008716301992535591, -0.0048473309725522995, 0.0023921651300042868, 0.0017065717838704586, 0.0076934704557061195, -0.0170916598290205, 0.02143498696386814, -0.00429515028372407, -0.002399577060714364, 0.012622331269085407, 0.0064519899897277355, 0.01054702140390873, 0.0009802132844924927, -0.012874333187937737, 0.018529552966356277, 0.01884084939956665, 0.01361551508307457, 0.014097283594310284, -0.007248761132359505, -0.017417779192328453, -0.0183664932847023, 0.006644697394222021, -0.0008926612208597362, -0.0055699837394058704, -4.745302794617601e-05, -0.022176168859004974, 0.02491854317486286, 0.011458675377070904, 0.012637155130505562, 0.009205481968820095, 0.0402313657104969, 0.0021308986470103264, 0.012311034835875034, 0.011251144111156464, -0.009798427112400532, 0.027720211073756218, 0.003954206593334675, 0.009205481968820095, 0.016009533777832985, 0.017654957249760628, -0.010480314493179321, 0.009257364086806774, -0.0028461392503231764, 0.0006165708764456213, -0.0022179875522851944, 0.00017278807354159653, -0.017877312377095222, 0.014349285513162613, -0.004599034786224365, -0.014660581946372986, 0.0464276485145092, 0.004910331219434738, -0.0228135846555233, 0.0144678745418787, -0.00791582465171814, 0.0005748793482780457, -0.03335319459438324, 0.013089275918900967, 0.0011247438378632069, 0.01208867970854044, -0.0058553386479616165, 0.01119184959679842, -0.005833103321492672, 0.020664157345891, -0.0031648476142436266, -0.0157427079975605, 0.016083652153611183, 0.00010393920820206404, -0.011881149373948574, -0.005721925757825375, 0.020100858062505722, 0.018588846549391747, -0.0020123093854635954, -0.007511880714446306, 0.030833175405859947, 0.002495930762961507, 0.009501954540610313, -0.004161737393587828, -0.014134342782199383, 0.0036039978731423616, -0.007782412227243185, 0.00042826429125852883, -0.005425453186035156, 0.014793994836509228, -0.0015092320973053575, -0.012155386619269848, -0.0003865727921947837, 0.017743900418281555, 0.019122498109936714, -0.008375357836484909, -0.01973026804625988, 0.002532989950850606, -0.011088084429502487, 0.0031426120549440384, -0.015979886054992676, 0.025259485468268394, 0.02322864718735218, 0.010435843840241432, 0.006792934145778418, -0.020041564479470253, 0.0015852032229304314, 0.008857126347720623, -0.027735034003853798, -0.01617259345948696, -0.017225071787834167, 0.008575476706027985, -0.003898617811501026, -0.001005228259600699, 0.00010283901792718098, -0.014527169056236744, 0.012785390950739384, -0.01054702140390873, -0.004825095646083355, -0.0075897048227488995, 0.013682221993803978, 0.03025505319237709, -0.0018548081861808896, -0.022606054320931435, 0.01710648275911808, 0.020456627011299133, -0.014623522758483887, 0.006070281378924847, 0.01749189756810665, -0.007967707701027393, 0.005555159877985716, -0.0035409973934292793, 0.015342469327151775, 0.021686987951397896, 0.003570644883438945, -0.011199261993169785, -0.005184568930417299, 0.002260605338960886, -0.005655219312757254, 0.011073260568082333, -0.0028424332849681377, 0.010873141698539257, 0.01718060113489628, -0.009798427112400532, 0.0012766862055286765, 0.0013165246928110719, 0.0030314347241073847, -0.025200191885232925, -0.0029295221902430058, -0.020426979288458824, 0.004098737146705389, -0.007723117712885141, 0.02279876172542572, 0.010161606594920158, -0.0027294030878692865, 0.008657006546854973, 0.013726692646741867, -0.01888532005250454, 0.015624118968844414, 0.004721330013126135, -0.0035206149332225323, -0.003843029262498021, -0.0014138048281893134, -0.0004308120987843722, 0.004069089889526367, 0.016735892742872238, 0.01719542406499386, 0.003463173285126686, 0.009694661945104599, 0.01187373697757721, 0.0057515730150043964, -0.0005197539576329291, -0.01888532005250454, 0.0007198731182143092, 0.00041413548751734197, 0.012014562264084816, 0.015157174319028854, 0.010131959803402424, 0.003452055621892214, -0.029069162905216217, -0.010747140273451805, 0.017017541453242302, -0.02282840944826603, -0.002292105695232749, 0.030981412157416344, 0.010154195129871368, -0.02016015350818634, 0.007259878795593977, 0.016128122806549072, -0.01930038258433342, -0.007893589325249195, 3.286100400146097e-05, -0.041387610137462616, -0.0040097953751683235, -0.011792207136750221, 0.013511749915778637, -0.0016361594898626208, 0.0016741451108828187, 0.0034854088444262743, -0.005040038377046585, -0.00414691399782896, 0.005540336016565561, 0.012852097861468792, 0.007775000296533108, 0.016528360545635223, -0.0403796024620533, -0.017640134319663048, -0.013934223912656307, -0.008056649938225746, -0.00017556750390212983, 0.026178551837801933, 0.004528622608631849, 0.010687845759093761, -0.001841837540268898, -0.015950238332152367, -0.014438227750360966, 0.012392564676702023, 0.006125870160758495, 0.014112107455730438, 0.01927073486149311, -0.0219389908015728, 0.0003680432273540646, -0.012325858697295189, 0.006904111243784428, -0.004773212596774101, -0.01297068689018488, 0.008723713457584381, -0.0019418970914557576, -0.009805839508771896, 0.011718088760972023, 0.005347629077732563, -0.019063204526901245, -0.0011432734318077564, -0.0083457101136446, -0.004076501354575157, 0.0070004649460315704, -0.004046854097396135, -0.0046027409844100475, 0.015905767679214478, 0.024310773238539696, -0.01276315562427044, 0.021746283397078514, 0.006941170431673527, -0.0011238174047321081, 0.0071079363115131855, 0.010013369843363762, -0.02410324290394783, 0.01403057761490345, -0.016765538603067398, 0.004332209471613169, 0.001025610719807446, -0.008619948290288448, 0.0031037000007927418, 0.005951692350208759, -0.02238369919359684, 0.005292040295898914, -0.0033279077615588903, -0.012540801428258419, -0.009361130185425282, 0.01759566366672516, -0.007215407676994801, 0.036584749817848206, -0.033116016536951065, 0.0038504409603774548, -0.008427240885794163, -0.006081399042159319, 0.014356696978211403, -0.0030833175405859947, -0.01186632551252842, 0.0009913310641422868, -0.00416544359177351, -0.029662108048796654, -0.018662964925169945, -0.0012933628167957067, -0.008493946865200996, -0.008946067653596401, 0.015297998674213886, -0.021583223715424538, 0.013096687383949757, 0.006255576852709055, 0.021197808906435966, -0.007626764010637999, -0.0033464371226727962, 0.021212631836533546, -0.0033038193359971046, -0.005036332178860903, 0.0026886381674557924, -0.0017362190410494804, -0.0050919209606945515, 0.019567208364605904, -0.021182984113693237, 0.0325823649764061, 0.011102908290922642, 0.009968899190425873, -0.0007963075186125934, 0.010198665782809258, 0.028253862634301186, -0.013949046842753887, -0.005410629324615002, 0.0005484747816808522, -0.006255576852709055, -0.0267122033983469, 0.004298856016248465, 0.006592814810574055, -0.03172259405255318, 0.008664418943226337, -0.00945007149130106, 0.0011080672265961766, 0.014415991492569447, -0.005103038623929024, 0.005907221231609583, 0.009724309667944908, 0.025259485468268394, -0.003733704797923565, 0.016054004430770874, -0.02229475788772106, -0.006600226741284132, -0.013133746571838856, 0.017654957249760628, 0.02238369919359684, 0.008649595081806183, 0.003477996913716197, 0.02895057387650013, 0.03424261137843132, -0.005944280419498682, 0.008523594588041306, -0.0035224680323153734, 0.014482698403298855, 0.0062741064466536045, -0.005340217147022486, 0.0007884324877522886, 0.008286415599286556, 0.0020845746621489525, 0.01795143075287342, -0.001040434348396957, -0.028624452650547028, -0.009835486300289631, 0.005429158918559551, 0.0033686726819723845, -0.007782412227243185, 0.024236654862761497, 0.007952883839607239, 0.009739132598042488, 0.025289133191108704, -0.002936934120953083, 0.003088876372203231, -0.006944876164197922, 0.004180266987532377, -0.004728741943836212, 0.00395791232585907, -0.007300643716007471, 0.0032445245888084173, 0.00990219321101904, 0.018158961087465286, 0.0018890878418460488, 0.01792178303003311, 0.010673021897673607, -0.013504337519407272, 0.001232215203344822, -0.009709485806524754, 0.0028757865075021982, -0.015060820616781712, 0.0034187023993581533, 0.0006249091820791364, -0.009998546913266182, 0.0014629082288593054, -0.012822450138628483, -0.003780028782784939, 0.013385748490691185, -0.004095030948519707, 0.007508174516260624, -0.014304814860224724, 0.021775931119918823, -0.0033038193359971046, 0.006377872079610825, -0.0061666350811719894, -0.015668589621782303, 0.0024236654862761497, -0.0010737875709310174, -0.019997093826532364, 0.025200191885232925, 0.002916551660746336, -0.031337179243564606, 0.02496301382780075, -0.01848508231341839, -0.002436636248603463, -0.009598308242857456, -0.008353122510015965, -0.005599630996584892, 0.001077493536286056, -0.004039442632347345, -0.0018260873621329665, -0.0033019662369042635, -0.04029065743088722, -0.01587611995637417, -0.02723103016614914, -0.0018501757876947522, -0.002414400689303875, -0.011525381356477737, 0.005410629324615002, -0.0021197807509452105, 0.026489848271012306, -7.145458948798478e-05, 0.005028920713812113, 0.003539144527167082, -0.02063450962305069, 0.0002313877921551466, -0.02282840944826603, 0.005084509029984474, -0.017432603985071182, 0.009576072916388512, -0.01792178303003311, 0.016558008268475533, -0.011236320249736309, -0.007200584281235933, 0.003972736187279224, 0.004087619483470917, 0.029232222586870193, -0.0007986237178556621, -0.0013850840041413903, -0.004224738106131554, -0.007293231785297394, -0.0014388198032975197, -0.028342803940176964, -0.014156578108668327, -0.002670108573511243, 0.01620224118232727, -0.01802554912865162, -0.0023977241944521666, -0.01535729318857193, 0.04595328867435455, -0.01165879424661398, -0.0038393232971429825, 0.0026052549947053194, 0.02318417653441429, -0.020812394097447395, 0.009457483887672424, 0.005499571096152067, -0.005136392079293728, 0.009576072916388512, -0.01182926632463932, 0.027779504656791687, -0.01761048659682274, -0.021346043795347214, -0.00859030056744814, -0.005188274662941694, 0.004750977270305157, -0.0012053473619744182, 0.015698237344622612, -0.0010821258183568716, 0.0014805112732574344, 0.0035113501362502575, 0.008701478131115437, -0.002812786027789116, 0.003468732349574566, -0.017343660816550255, 0.006489049177616835, -0.03074423409998417, -0.009531602263450623, -0.003479850012809038, 0.008316063322126865, -0.0038615588564425707, -0.01071749348193407, 0.011807030998170376, -0.005247569177299738, -0.02238369919359684, 0.04613117501139641, -0.004332209471613169, -0.010532197542488575, 0.005243863444775343, 0.0050252145156264305, 0.026045139878988266, 0.016424596309661865, 0.0003071273386012763, -0.03871935233473778, -0.015535176731646061, -0.004884390160441399, -0.014023165218532085, 0.01892979070544243, 0.01183667778968811, -0.011073260568082333, -0.0013526573311537504, 0.0027942564338445663, -0.0035854685120284557, 0.0017352926079183817, -0.008405004628002644, 0.01428999099880457, 0.008204885758459568, -0.008686654269695282, -0.016780363395810127, 0.015179409645497799, 0.0032315540593117476, -0.026089610531926155, -0.01114737894386053, 0.00039375299820676446, 0.010687845759093761, 0.027379266917705536, -0.0019919269252568483, -0.014756935648620129, -0.02450348064303398, 0.007196878083050251, 0.010673021897673607, -0.00439891591668129, -0.00461385864764452, 0.015431411564350128, -0.005425453186035156, -0.010406197048723698, 0.007119053974747658, -0.021746283397078514, -0.014527169056236744, 0.004858448635786772, -0.0031389063224196434, 0.010235724970698357, 0.02198346145451069, -0.0036595866549760103, 0.018322020769119263, -0.008367946371436119, -0.029187751933932304, -0.005955398082733154, 0.007597116753458977, -0.002436636248603463, -0.020871687680482864, 0.0009019259596243501, 0.023969829082489014, -0.00638157781213522, 0.01627635955810547, -0.016854481771588326, -0.007478527259081602, -0.026000667363405228, -0.018336845561861992, -0.017388131469488144, 0.012021973729133606, 0.01446046307682991, 0.00859030056744814, -0.0004822316113859415, 0.0075897048227488995, -0.0280611552298069, -0.002164251636713743, 0.005358746740967035, -0.0006874463870190084, -0.007893589325249195, -0.01759566366672516, -0.0109324362128973, -0.007048641797155142, -0.008034413680434227, -0.015446235425770283, 0.013489514589309692, 0.0007397923618555069, 0.012911392375826836, -0.01535729318857193, 0.013949046842753887, 0.01615777052938938, -0.010450667701661587, 4.435511800693348e-05, 0.009116539731621742, 0.009917016141116619, -0.01577235572040081, 0.003326054662466049, -0.004806566052138805, 0.021138513460755348, 0.0017149101477116346, -0.003487261710688472, -0.007626764010637999, 0.004965920001268387, 0.00020440413209144026, 0.009961487725377083, -0.012051621451973915, 0.03471697121858597, 0.004057972226291895, -0.016454242169857025, -0.004217326175421476, -0.001304480480030179, -0.013748927973210812, -0.011629147455096245, -0.012370329350233078, 0.0018381315749138594, 0.009242541156709194, 0.017017541453242302, 0.003387202275916934, 0.013726692646741867, 0.009168422780930996, 0.007430350407958031, 0.006526108365505934, -0.00569969043135643, 0.021301573142409325, -0.001780690043233335, 0.0016139240469783545, -0.0008305871742777526, 0.0005165112670511007, 0.011903384700417519, 0.018559200689196587, 0.0021938991267234087, -0.019107675179839134, 0.015090467408299446, -0.013296807184815407, 0.005985045339912176, -0.02318417653441429, 0.022739466279745102, -0.002455165609717369, 0.007263584528118372, 0.02330276556313038, -0.01838131621479988, -0.0025441076140850782, 0.0077008819207549095, 0.01849990524351597, 0.002675667405128479, 0.003857852891087532, 0.019048379734158516, 0.005714513827115297, 0.027097618207335472, 0.0036095569375902414, -0.008323474787175655, -0.004984449595212936, 0.011540205217897892, 0.013415396213531494, 0.017239896580576897, -0.004206208512187004, -0.0016167034627869725, -0.02634161151945591, 0.0023958710953593254, -4.0765015000943094e-05, 0.022546758875250816, 0.017847664654254913, 0.00549215916544199, 0.020871687680482864, -0.012021973729133606, -0.012273975647985935, 0.010428432375192642, 0.0025848725344985723, 0.008627359755337238, 0.01382304634898901, 0.012792803347110748, 0.007597116753458977, 0.021390516310930252, 0.01847025752067566, -0.020441802218556404, -0.016439419239759445, -0.031337179243564606, 0.011177025735378265, -0.008456887677311897, 0.01750672049820423, 0.00830123946070671, 0.015475882217288017, -0.0004449408734217286, -0.0050919209606945515, -0.0023310177493840456, -0.00043729745084419847, 0.021168161183595657, -0.007144995499402285, -0.0063371071591973305, -0.03907512128353119, -0.00648534344509244, 0.01336351316422224, -0.0241625364869833, -0.0037262931000441313, 0.00987254548817873, -0.014163989573717117, 0.008019590750336647, -0.007545233704149723, -0.021346043795347214, -0.020767923444509506, 0.015372117049992085, -0.016854481771588326, 0.008909008465707302, -0.030595997348427773, -0.011510558426380157, 0.00807888526469469, -0.0012118327431380749, -0.026578789576888084, 0.003477996913716197], [-0.006768048740923405, -0.0501774325966835, -0.02028900384902954, -0.039003338664770126, 0.01516375970095396, 0.03754980117082596, -0.004455253481864929, 0.008910506963729858, 0.007964191026985645, 0.014209873974323273, 0.034884974360466, -0.018699195235967636, -0.03249268978834152, -0.0012652238365262747, 0.013271128758788109, 0.020425274968147278, -0.016352331265807152, 0.0004767064529005438, -0.008002043701708317, -0.021969661116600037, -0.019728785380721092, 0.016534024849534035, -0.06740795075893402, -0.02630000002682209, 0.01457325927913189, 0.004705080762505531, 0.011764594353735447, -0.013180282898247242, -0.01656430773437023, -0.007615947164595127, -0.030963443219661713, -0.008433563634753227, 0.01995590142905712, -0.057566266506910324, 0.013271128758788109, -0.06619666516780853, 0.009644847363233566, 0.0025929044932127, -0.012688198126852512, 0.002833268605172634, -0.008335147053003311, 0.013339263387024403, 0.01995590142905712, -0.00015791640907991678, 0.004735362716019154, -0.051903512328863144, 0.010893984697759151, -0.046301327645778656, 0.027359874919056892, -0.00741532864049077, -0.0017071531619876623, 0.0174727700650692, 0.0392758809030056, 0.008168595843017101, 0.0013210565084591508, -0.016094934195280075, 0.026224296540021896, -0.03579343855381012, 0.030176108703017235, -0.028783133253455162, -0.03215958550572395, -0.0001425387745257467, 0.015443868935108185, -0.007896056398749352, 0.0011128670303151011, -0.030054980888962746, -0.06359240412712097, 0.014225014485418797, 0.005060895346105099, -0.010258059948682785, 0.007449395954608917, 0.02748100273311138, -0.01140120904892683, 7.762744644423947e-06, 0.0015226217219606042, -0.0010135038755834103, 0.045998506247997284, 2.779801798169501e-05, 0.002418782562017441, -0.03512723371386528, 0.00872881431132555, 0.014293150044977665, 0.039457570761442184, -0.02477075532078743, 0.028858838602900505, -0.03851882740855217, -0.01800270564854145, -0.060079678893089294, -0.0026402203366160393, 0.031251125037670135, -0.0179875660687685, 0.02869228646159172, -0.019471388310194016, -0.03433989733457565, -0.012604922987520695, -0.014164450578391552, -0.017518192529678345, 0.006427375134080648, -0.004186499863862991, 0.05405354127287865, 0.022984111681580544, 0.02162141725420952, -0.009145192801952362, -0.02958560921251774, -0.0017118847463279963, 0.02739015594124794, 0.023847151547670364, -0.017412206158041954, 0.011825159192085266, 0.01222639624029398, -0.032704662531614304, -0.0029998202808201313, 0.0158072542399168, -0.013520956039428711, 0.0029960349202156067, -0.008660679683089256, -0.009849252179265022, -0.04406045004725456, 0.008357858285307884, -0.01779073104262352, 0.035308923572301865, 0.004784571472555399, -0.026875359937548637, 0.006870250683277845, -0.03767092898488045, 0.011772165074944496, -0.04842107370495796, 0.03364340960979462, 0.016730858013033867, 0.013725359924137592, -0.02739015594124794, 0.03194761276245117, 0.018911169841885567, 0.02890426106750965, 0.012400518171489239, 0.04757317528128624, 0.037246979773044586, 0.03788290172815323, 0.004451468121260405, 0.018472079187631607, -0.044484399259090424, 0.02631514146924019, -0.01648860238492489, 0.0007996365893632174, -0.015148619189858437, 0.012127979658544064, -0.03652020916342735, 0.05278169363737106, -0.004527173470705748, 0.03897305950522423, -0.00027230227715335786, -0.011469343677163124, -0.002668609842658043, -0.013233276084065437, -0.03064548224210739, -0.029979275539517403, 0.0006529577076435089, -0.011340645141899586, -0.013430110178887844, 0.033552564680576324, -0.015640702098608017, -0.019668221473693848, 0.008698532357811928, 0.003550575813278556, 0.029600748792290688, 0.00542806601151824, 0.04127449914813042, 0.006139695178717375, -0.032795511186122894, 0.026754232123494148, 0.01682170480489731, 0.013838917948305607, 0.02278727851808071, 0.015345452353358269, -0.01189329382032156, -0.009561572223901749, -0.030948303639888763, -0.024846460670232773, 0.014603541232645512, 0.011522337794303894, -0.01495178509503603, 0.028556017205119133, 0.028071504086256027, -0.007721934467554092, -0.002150028944015503, 0.011613183654844761, 0.040093496441841125, -0.00916033424437046, 0.015330311842262745, -0.035642027854919434, -0.01626148633658886, -0.010629015974700451, -0.012968308292329311, -0.010507887229323387, 0.03315889462828636, -0.006927029695361853, -0.04321255162358284, 0.015239465050399303, -0.007782498840242624, -0.03194761276245117, -0.011264939792454243, -0.0008706102962605655, -0.014331001788377762, 0.025118999183177948, 0.014588399790227413, 0.0414259098470211, -0.025724641978740692, 0.034642718732357025, -0.001421365886926651, 0.011582901701331139, 0.005636255256831646, -0.029918711632490158, -0.0006662061205133796, -0.030085263773798943, -0.01084856130182743, -0.027995798736810684, 0.0014951785560697317, 0.020864363759756088, 0.009887104853987694, -0.010167214088141918, 0.023741163313388824, 0.04278860241174698, 0.012256678193807602, -0.024165112525224686, -0.05478031188249588, -0.03809487819671631, -0.028510594740509987, 0.04284916818141937, -0.04987461492419243, 0.0010295913089066744, 0.004890558775514364, 0.005087392404675484, 0.004901914391666651, -0.0035789653193205595, 0.0008043681737035513, -0.02169712260365486, -0.0019569804426282644, -0.0014970711199566722, -0.04427242651581764, 0.016867127269506454, -0.03894277662038803, 0.018699195235967636, -0.026436271145939827, -0.015428728424012661, 0.04203154891729355, -0.006283535156399012, 0.04978376626968384, -0.002458527684211731, -0.016125217080116272, -0.02234818786382675, -0.023847151547670364, -0.0010759606957435608, 0.002572085475549102, 0.032462406903505325, 0.00477700075134635, 0.04569568485021591, 0.1047760546207428, -0.013392257504165173, 0.011643466539680958, 0.02192423865199089, 0.0294796209782362, -0.002672394970431924, -0.022196777164936066, 0.02608802542090416, -0.002044041408225894, -0.04793655872344971, 0.025482384487986565, -0.017609039321541786, 0.003156908554956317, -0.0068853916600346565, 0.031129995360970497, 0.0010381081374362111, 0.02498272992670536, -0.006658276077359915, -0.03979067504405975, 0.0030282095540314913, -0.026042602956295013, -0.013354404829442501, 0.02751128561794758, -0.014005470089614391, -0.03200817480683327, 0.00960699561983347, 0.07509960234165192, 0.022317904978990555, -0.028434889391064644, 0.004841350018978119, -0.0033083190210163593, -0.02257530391216278, 0.00602613715454936, 0.007551597896963358, -0.00910734012722969, -0.010318624787032604, 0.04793655872344971, 0.02171226404607296, 0.028510594740509987, 0.004027518909424543, 0.004803497809916735, 0.05923178046941757, 0.007252562325447798, 0.0021916667465120554, -0.04166816547513008, -0.019501669332385063, -0.025709500536322594, -0.005927720572799444, -0.04015405848622322, 0.026996489614248276, 0.03370397537946701, 0.024740472435951233, -0.01439913734793663, -0.030721187591552734, 0.029055671766400337, -0.027995798736810684, -0.05359931290149689, -0.0017847510753199458, -0.003181512700393796, 0.020243581384420395, 0.03078175149857998, 0.005575690884143114, -0.006749122403562069, -0.01015207264572382, 0.0004159056697972119, -0.02445279248058796, -0.06837697327136993, 0.02705705352127552, 0.029615890234708786, 0.07061784714460373, 0.021258031949400902, 0.035066667944192886, 0.03433989733457565, -0.021545711904764175, -0.016640011221170425, -0.008274583145976067, 0.0023468625731766224, -0.02357461303472519, 0.013301410712301731, -0.003662241157144308, -0.010273201391100883, 0.010939407162368298, 0.01777559146285057, 0.018093552440404892, -0.03636879846453667, 0.0005966519238427281, -0.002749993000179529, 0.0033196748699992895, 0.018305527046322823, -0.0035997843369841576, -0.008448705077171326, 0.057445138692855835, -0.016337191686034203, -0.008251870982348919, 0.0008564155432395637, 0.0033423863351345062, 0.03264410048723221, 0.033976513892412186, -0.0038325779605656862, 0.01521675381809473, -0.009342026896774769, -0.0031852980609983206, 0.0070368023589253426, 0.03364340960979462, 0.023953137919306755, -0.03315889462828636, -0.02542182058095932, -0.010886413976550102, 0.007343408651649952, -0.002873013960197568, -0.015375734306871891, -0.016549166291952133, 0.015292459167540073, -0.014876079745590687, 0.0041940705850720406, 0.018926311284303665, 0.010629015974700451, 0.009675130248069763, -0.03512723371386528, 0.046755556017160416, -0.01014450192451477, 0.0013948690611869097, -0.0382160060107708, 0.028344042599201202, 0.00477700075134635, -0.03897305950522423, 0.024967588484287262, 0.017503051087260246, 0.010697150602936745, 0.005662751849740744, -0.007774928119033575, 0.017730167135596275, -0.018835464492440224, -0.00937987957149744, -0.030388083308935165, 0.005299367010593414, -0.04539286345243454, -0.017154807224869728, 0.03206874057650566, 0.023650318384170532, -0.03567231073975563, 0.0013106469996273518, 0.005401568952947855, -0.017169948667287827, -0.005738457199186087, -0.0006387629546225071, -0.00622297078371048, 0.040214624255895615, -0.011658607050776482, -0.025512665510177612, -0.021303454414010048, -0.023620035499334335, 0.007650014478713274, 0.008675821125507355, -0.07255590707063675, -0.02094006910920143, -0.01331655215471983, 0.026678526774048805, 0.04421186074614525, 0.007101151626557112, 0.01897173374891281, 0.04278860241174698, 0.03343143314123154, -0.006964882370084524, 0.0337948203086853, 0.01886574551463127, -0.014754951931536198, 0.005587046965956688, -0.005719530861824751, -0.021787969395518303, 0.03440046310424805, 0.03119055926799774, -0.015852676704525948, -0.014542977325618267, -2.3347378373728134e-05, 0.00807017832994461, -0.026436271145939827, -0.002897618105635047, 0.022514738142490387, -0.034006793051958084, 0.02598203904926777, 0.04793655872344971, -0.011484485119581223, 0.005443206988275051, -0.014868509024381638, -0.010046085342764854, -0.027647554874420166, -0.03888221085071564, -0.015670984983444214, -0.014459701254963875, -0.047966841608285904, 0.0036357443314045668, 0.004466609098017216, -0.021258031949400902, -0.005927720572799444, -0.04233437031507492, -0.05577962100505829, 0.005038183648139238, -0.021575994789600372, -0.05084364116191864, 0.0005829303408972919, 0.013119718059897423, 0.046634428203105927, -0.015353023074567318, -0.004565026145428419, -0.004008592572063208, 0.03621738776564598, -0.017745308578014374, -0.017412206158041954, -0.018078410997986794, -0.023604894056916237, -0.006075345445424318, 0.005905008874833584, 0.029540184885263443, -0.026769373565912247, -0.04263719171285629, -0.004837565124034882, -0.005541623570024967, 0.0006751961191184819, 0.0025115213356912136, 0.01594352349638939, 0.007933909073472023, -0.018578065559267998, 0.0006326119182631373, -0.025951756164431572, 0.010977259837090969, 0.015141048468649387, -0.03364340960979462, 0.0018528858199715614, 0.0012510290835052729, -0.0018576174043118954, -0.022862983867526054, 0.026693668216466904, 0.014800374396145344, 0.0005852961330674589, 0.0038193294312804937, 0.03231099620461464, -0.008335147053003311, -0.014535406604409218, -0.015867818146944046, -0.022832700982689857, -0.02564893662929535, -0.02246931567788124, -0.006692343391478062, -0.007123863324522972, -0.007487248629331589, -0.013710219413042068, -0.006397092714905739, -0.015474151819944382, -0.004583952482789755, 0.014459701254963875, 0.017715025693178177, -0.022060507908463478, -0.04169844835996628, -0.019910478964447975, 0.013801065273582935, -0.004595308098942041, -0.005927720572799444, -0.007441825233399868, -0.012839608825743198, 0.005136600695550442, -0.001686334260739386, -0.027874669060111046, 0.0014582722214981914, 0.005083607044070959, -0.007805210538208485, -0.004035089164972305, -0.007820351049304008, -0.011643466539680958, 0.01886574551463127, 0.01953195221722126, 0.007718149572610855, -0.035854000598192215, 0.001725133159197867, -0.02728416956961155, 0.0056476108729839325, -0.0028995107859373093, 0.012112838216125965, -0.008812090381979942, -0.002189774066209793, 0.021863672882318497, 0.0007466429378837347, -0.005431850906461477, 0.006529577076435089, -0.061502937227487564, 0.02389257401227951, -0.020864363759756088, 0.003860967233777046, 0.024710191413760185, 0.0004991814494132996, -0.014088745228946209, -0.03056977689266205, -0.0069686672650277615, 0.004220567177981138, -0.027011631056666374, 0.02684507891535759, 0.05038940906524658, -0.005299367010593414, -0.005973143503069878, -0.04200126975774765, -0.018805181607604027, 0.007703008130192757, -0.006514436099678278, -0.01124222856014967, 0.022090788930654526, 0.03318917751312256, 0.028783133253455162, -0.014088745228946209, -0.008925648406147957, -0.012112838216125965, 0.0013693185755982995, 0.005901223514229059, -0.03240184485912323, 0.009508578106760979, -0.00013887180830352008, 0.018608348444104195, 0.026557398959994316, 0.0009879533899948, 0.010295912623405457, 0.026648245751857758, 0.00550755625590682, -0.04191042110323906, -0.004012377932667732, -0.011075676418840885, 0.02355947159230709, -0.014823086559772491, -0.004273560829460621, 0.011355786584317684, 0.0033878094982355833, -0.01592838205397129, 0.005469703581184149, 0.007002735044807196, -0.01647346094250679, -0.014482412487268448, 0.02530069090425968, 0.03243212401866913, -0.010999972000718117, -0.011787306517362595, -0.026572540402412415, -0.020576683804392815, -0.008577403612434864, 0.034006793051958084, 0.03318917751312256, -0.05075279250741005, -0.015640702098608017, 0.0294644795358181, 0.02183339186012745, 0.00689674774184823, -0.044575247913599014, -0.027132758870720863, -0.0010144502157345414, -0.0158072542399168, 0.01931997761130333, 0.026436271145939827, 0.018805181607604027, -0.015761831775307655, 0.07576580345630646, -0.009008923545479774, 0.0024074267130345106, -0.0060829161666333675, -0.031584225594997406, 0.019607657566666603, -0.046846404671669006, 0.0017090458422899246, 0.002558837179094553, -0.027632413432002068, 0.001646589022129774, -0.014709528535604477, -0.0179875660687685, -0.008751525543630123, 0.0017525763250887394, -0.04672527685761452, 0.0103716179728508, 0.009516148827970028, -0.011211946606636047, 0.03231099620461464, -0.027132758870720863, 1.4564387129212264e-05, 0.02084922417998314, 0.026996489614248276, 0.01788157783448696, 0.01789671927690506, -0.009130052290856838, 0.00807774905115366, -0.05762682855129242, -0.000608480884693563, -0.03612654283642769, 0.11810017377138138, -0.019486529752612114, -0.007740860804915428, 0.012627634219825268, 0.021121762692928314, 0.012635204941034317, -0.004387118853628635, 5.4708867537556216e-05, -0.0008895365754142404, -0.0018670805729925632, 0.0207280945032835, -0.010629015974700451, 0.0158072542399168, 0.00029974544304423034, 0.008236730471253395, -0.0028219129890203476, 0.002259801374748349, 0.043061140924692154, 0.016170639544725418, -0.021742545068264008, -0.021545711904764175, 0.017079101875424385, -0.013180282898247242, 0.010477605275809765, -0.005988284479826689, -0.02346862480044365, 0.041304778307676315, 0.01930483616888523, -0.015156188979744911, -0.0087363850325346, -0.00234496989287436, -0.00015294823970180005, -0.020924929529428482, -0.018411515280604362, 0.006609067786484957, -0.015761831775307655, 0.03473356366157532, -0.0066279941238462925, -0.023620035499334335, -0.0007712471415288746, -0.01875975914299488, -0.007078439928591251, 0.006306246854364872, -0.02193937823176384, 0.01456568855792284, 0.0002862604451365769, -0.02761727198958397, -0.021348878741264343, 0.004455253481864929, -0.010053656063973904, 0.00665449071675539, 0.00894835963845253, 0.030191250145435333, 0.004792141728103161, -0.006597711704671383, 0.0024528498761355877, -0.00488677341490984, -0.023211227729916573, -0.03088773787021637, -0.004421186167746782, -0.033340588212013245, -0.015156188979744911, 0.017972424626350403, -0.009652418084442616, 0.020682672038674355, -0.015625562518835068, 0.01615549810230732, 0.019138285890221596, 0.0025209845043718815, 0.010984830558300018, 0.021545711904764175, -0.030054980888962746, 0.0015434406232088804, 0.020894646644592285, 0.02169712260365486, 0.025603512302041054, 0.0299944169819355, -0.021470006555318832, 0.0371258519589901, 0.043909039348363876, -0.04866332933306694, -0.016064653173089027, -0.015988947823643684, 0.012150690890848637, -0.0122718196362257, 0.007850633934140205, -0.019153425469994545, 0.026693668216466904, -0.03318917751312256, -0.022408751770853996, -0.007161715999245644, -0.00323261390440166, -0.01266548689454794, -0.05587046965956688, 0.027435580268502235, -0.015792112797498703, -0.02346862480044365, -0.005677893292158842, -0.040759701281785965, -0.004273560829460621, -0.021242890506982803, 0.014929073862731457, -0.035520900040864944, 0.008978641591966152, 0.016064653173089027, -0.0007414381834678352, -0.02466476708650589, 0.009682700037956238, -0.004084297921508551, 0.03088773787021637, -0.01900201477110386, -0.03370397537946701, 0.02464962750673294, -0.02227248251438141, -0.023271791636943817, -0.033552564680576324, -0.017609039321541786, -0.01559527963399887, -0.0039669545367360115, 0.0245587807148695, 0.012370236217975616, 0.01287746150046587, -0.012521646916866302, -0.005291796289384365, -0.0036357443314045668, -0.008047467097640038, -0.02312038093805313, -0.010666868649423122, 0.002437708666548133, 0.051661256700754166, 0.0042773461900651455, 0.015110766515135765, -0.00583687424659729, 0.03076661005616188, -0.012991019524633884, -0.031069431453943253, 0.004383333493024111, -0.01897173374891281, 0.010833419859409332, -0.023529188707470894, 0.0327652283012867, -0.02858630008995533, -0.0021462435834109783, 0.012998590245842934, -0.015428728424012661, -0.00921332836151123, 0.010401899926364422, 0.02682993747293949, -0.0075894505716860294, -0.01701853796839714, 0.008622827008366585, -0.005681678187102079, -0.017518192529678345, 0.0403963178396225, 0.0179875660687685, -0.012143121100962162, 0.01430071983486414, 0.03152366355061531, 0.028404606506228447, -0.005367501638829708, -0.006813471671193838, 0.010129361413419247, -0.04560483619570732, -0.029812723398208618, -0.014929073862731457, 0.009069488383829594, 0.044575247913599014, 0.006612852681428194, 0.004973834380507469, 0.006900532636791468, 0.007161715999245644, -0.03467300161719322, -0.0006401824648492038, -0.020864363759756088, -0.002269264543429017, -0.011878152377903461, 0.004943552426993847, 0.04003293067216873, 0.05081335827708244, 0.0015320847742259502, 0.012150690890848637, -0.024043984711170197, 0.02870742790400982, 0.022741854190826416, -0.0013882449129596353, 0.01898687519133091, 0.016942832618951797, -0.02215135283768177, 0.0050798216834664345, -0.008933218196034431, -0.02510385774075985, -0.006548503413796425, 0.025921475142240524, -0.0016200921963900328, 0.006438730750232935, 0.0147246690467, 0.035732872784137726, -0.058414164930582047, -0.0061169834807515144, 0.017503051087260246, -0.004826209042221308, -0.010076367296278477, -0.015103195793926716, 0.01780587248504162, -0.006200259085744619, 0.018911169841885567, 0.02063724957406521, 0.020107312127947807, 0.03939700871706009, 0.02705705352127552, 0.013520956039428711, -0.020031606778502464, -0.010878843255341053, -0.018260104581713676, -0.0020629677455872297, -0.004811068065464497, -0.003825007239356637, 0.0021519213914871216, -0.04103223979473114, 0.0037246979773044586, 0.01053816918283701, 0.00938745029270649, -0.042182959616184235, 0.0016882269410416484, -0.028434889391064644, 0.0056476108729839325, 0.0207432359457016, 0.0038628599140793085, -0.009084628894925117, -0.02183339186012745, 0.016867127269506454, -0.010523028671741486, 0.009659988805651665, 0.006302461493760347, -0.004322769120335579, -0.028737708926200867, -0.00020381269860081375, -0.009122481569647789, 0.023937996476888657, -0.04233437031507492, 0.009031635709106922, 0.0021008204203099012, 0.000785915064625442, 0.010576021857559681, -0.0017166163306683302, 0.005992069840431213, -0.02278727851808071, -0.005193379707634449, 0.008933218196034431, 0.003168264403939247, -0.04342452809214592, 0.01812383532524109, 0.013778354041278362, 0.003476763144135475, -0.011121099814772606, -0.03885193169116974, 0.03352228179574013, -0.010038514621555805, -0.01921399123966694, -0.034521590918302536, -0.010159643366932869, 0.01636747270822525, -0.009236039593815804, -0.017321359366178513, -0.03963926434516907, 0.018366090953350067, 0.0016891731647774577, -0.0338251031935215, 0.042606908828020096, 0.0008346503018401563, 0.00447039445862174, 0.0111892344430089, -0.010780426673591137, 0.010606304742395878, 0.012021992355585098, 0.03751951828598976, -0.03467300161719322, 0.017533333972096443, 0.009652418084442616, 0.022741854190826416, -0.010893984697759151, -0.00439090421423316, 0.0017573079094290733, -0.020909788087010384, 0.011446632444858551, -0.011946287006139755, -0.002314687706530094, 0.005193379707634449, 0.006351669784635305, 0.006370596121996641, 0.014913932420313358, 0.028767991811037064, -0.030524352565407753, -0.00960699561983347, -0.01396761741489172, -0.024043984711170197, -0.007324482314288616, -0.014293150044977665, 0.033976513892412186, 0.0053145079873502254, 0.02705705352127552, 0.018850605934858322, 0.0008767613326199353, 0.0150047792121768, -0.0060829161666333675, 0.00633274344727397, 0.010265630669891834, 0.01919884979724884, -0.026163730770349503, -0.0003122841299045831, 0.00583687424659729, -0.01812383532524109, 0.012294530868530273, -0.027026770636439323, -0.016125217080116272, 0.005170668009668589, 0.026163730770349503, 0.009008923545479774, 0.013059154152870178, 0.001516943797469139, -0.0006089540547691286, -0.005632469896227121, 0.024286242201924324, -0.008872654289007187, 0.016670294106006622, 0.014414277859032154, 0.015459010377526283, -0.011045394465327263, 0.002873013960197568, -0.02475561387836933, 0.031917329877614975, -0.010954548604786396, 0.0003108646487817168, -0.037156131118535995, 0.0024869171902537346, 0.00032458623172715306, 0.00736990524455905, 0.017699886113405228, -0.03361312672495842, -0.0013210565084591508, 0.018744617700576782, -0.008032326586544514, -0.04536258056759834, 0.02751128561794758, -0.006215400528162718, -0.02312038093805313, 0.018487220630049706, -0.01701853796839714, 0.0007300824509002268, -0.008214018307626247, 0.006363025400787592, -0.018396373838186264, 0.020137595012784004, 0.0019872626289725304, 0.02030414529144764, -0.02596689760684967, -0.01227939035743475, -0.009902245365083218, -0.0017885363195091486, -0.020561544224619865, 0.03655049204826355, 0.0019437320297583938, 0.04066885635256767, -0.01434614323079586, 0.02442251145839691, -0.014807945117354393, 0.04318226873874664, 0.022075649350881577, -0.0026610393542796373, 0.0027821676339954138, -0.043575938791036606, -0.018593207001686096, 0.041728727519512177, -0.03969983011484146, -0.04493863135576248, 0.0106365866959095, -0.01682170480489731, -0.03733782470226288, 0.0191080030053854, 0.022317904978990555, -0.03960898146033287, 0.013119718059897423, 0.011083247140049934, -0.008986212313175201, 0.041940703988075256, 0.010523028671741486, -0.001261438592337072, 0.01757875643670559, -0.009364738129079342, 0.0013693185755982995, 0.005337219685316086, 0.009841681458055973, 0.00014111930795479566, -0.02162141725420952, -0.1134973019361496, -0.03679274767637253, -0.003391594858840108, 8.528668695362285e-05, 0.004247064236551523, 0.005995855201035738, 0.023090098053216934, -0.014747381210327148, -0.024725330993533134, 0.01184029970318079, 0.040759701281785965, 0.013838917948305607, -0.01953195221722126, -0.003431339981034398, 0.02902538888156414, -0.01603437028825283, 0.00018819849356077611, -0.03558146208524704, -0.010750144720077515, -0.016942832618951797, -0.005734671838581562, 0.03558146208524704, 0.02053126133978367, 0.028101785108447075, -0.028677145019173622, 0.004981405101716518, 0.003815544070675969, 0.002467990852892399, 0.01766960322856903, -0.0079036271199584, 0.011174093931913376, -0.00889536552131176, 0.0024301381781697273, -4.8912683269008994e-05, -0.011075676418840885, 0.002208700403571129, -0.014633823186159134, 0.018169257789850235, -0.006855109706521034, -0.010568452067673206, -0.02259044349193573, -0.014429419301450253, 0.005503770895302296, 0.04115336760878563, 0.014452130533754826, 0.0023279362358152866, 0.0012898280983790755, -0.01102268323302269, 2.1159023162908852e-05, -0.0007054782472550869, 0.012809326872229576, -0.03011554479598999, 0.007699223235249519, -0.02071295492351055, 0.01477766316384077, -0.0021027131006121635, -0.01499720849096775, -0.003989666234701872, 0.0027689191047102213, -0.004867847077548504, 0.04972320422530174, 0.0009288087021559477, 0.008978641591966152, -0.03173563629388809, -0.0019115573959425092, -0.015284888446331024, 0.023317214101552963, -0.014293150044977665, 0.01756361685693264, -0.0098189702257514, -0.023756304755806923, -0.0001825206127250567, -0.0007423845236189663, -0.02979758381843567, 0.0038287925999611616, 0.01670057699084282, 0.01085613202303648, 0.002083786763250828, 0.012726050801575184, -0.01659458875656128, 0.008403281681239605, 0.04354565590620041, 0.01768474467098713, 0.018578065559267998, -0.010477605275809765, -0.04406045004725456, -0.0012557606678456068, -0.0033499570563435555, -0.024028843268752098, 0.01735164225101471, 0.01703367941081524, 0.013838917948305607, 0.004379548132419586, -0.011704030446708202, 0.0037019862793385983, 0.01375564280897379, 0.005511341616511345, 0.0008971071220003068, -0.00899378303438425, -0.025891192257404327, 0.019138285890221596, 0.004424971528351307, -0.0018330131424590945, -0.023937996476888657, 0.0010144502157345414, -0.005787665955722332, 0.013657225295901299, 0.0015245142858475447, 0.005060895346105099, -0.000486406177515164, 0.00479971244931221, -0.0046445163898169994, -0.01712452620267868, -0.0012841501738876104, 0.007843063212931156, 0.04393932223320007, 0.03579343855381012, 0.008494128473103046, -0.015156188979744911, 0.006351669784635305, -0.010651727207005024, 0.024134831503033638, 0.012067415751516819, -0.0023373994044959545, -0.012854750268161297, 5.349639832274988e-05, 0.006124554201960564, 0.00010634220961946994, -0.022105930373072624, -0.0033196748699992895, -0.023726021870970726, 0.012642775662243366, 0.03788290172815323, 0.023438341915607452, -0.020273864269256592, -0.007294199895113707, 0.019077720120549202, -0.016549166291952133, 0.027692977339029312, -0.00739261694252491, 0.012748762965202332, 0.028101785108447075, 0.025013010948896408, 0.037792056798934937, -0.01897173374891281, -0.008017185144126415, -0.0006330850883387029, -0.01886574551463127, -0.007108722347766161, -0.029085954651236534, 0.005246373359113932, -0.0029487190768122673, 0.028525734320282936, -0.04048716276884079, 7.866247869969811e-06, 0.015292459167540073, -0.015443868935108185, 0.018169257789850235, -0.019486529752612114, -0.011976568959653378, 0.007850633934140205, -0.01140120904892683, 0.004519602749496698, -0.008607685565948486, 0.007880915887653828, -0.014096315950155258, 0.0005772524746134877, 0.014391566626727581, 0.007725719828158617, -0.006154836155474186, 0.006487939041107893, -0.021242890506982803, 0.0069686672650277615, 0.008418423123657703, -0.003486226312816143, 0.02039499208331108, 0.024725330993533134, 0.017200231552124023, 0.026769373565912247, 0.013248417526483536, -0.017715025693178177, 0.021454865112900734, -0.005518912337720394, -0.01736678183078766, -0.01974392682313919, 0.03915474936366081, -0.005121459718793631, -0.0013011838309466839, 0.015315170399844646, 0.00726013258099556, 0.02564893662929535, -0.0017544690053910017, -0.0045120324939489365, -0.025679217651486397, 0.0014951785560697317, 0.012196114286780357, 0.003561931662261486, -0.003666026284918189, 0.0012084449408575892, 0.01189329382032156, 0.010530599392950535, -0.029933853074908257, -0.010500317439436913, -0.008963500149548054, 0.021560853347182274, 0.014838227070868015, -0.002418782562017441, 0.015103195793926716, -0.02019815891981125, -0.003879893571138382, -0.005537838209420443, 0.008986212313175201, -0.014898791909217834, -0.006639349739998579, 0.008978641591966152, 0.007203353568911552, 0.00698380870744586, -0.026920784264802933, 0.036399081349372864, 0.013165141455829144, -0.013490674085915089, 0.008441134355962276, -0.02358975261449814, -0.0002044041466433555, -0.01413416862487793, 0.017518192529678345, -0.0174576286226511, 0.01657944731414318, 0.0034351253416389227, 0.002388500375673175, 0.014149310067296028, 0.012695768848061562, -0.019880196079611778, -0.009940098039805889, -0.008653108961880207, -0.01648860238492489, 0.010916695930063725, -0.012733621522784233, 0.03056977689266205, 0.005238802637904882, -0.004629375413060188, -0.020788660272955894, -0.01522432453930378, 0.023074958473443985, -0.013891912065446377, -0.012180973775684834, -0.012953166849911213, 0.0061169834807515144, -0.014868509024381638, 0.03315889462828636, 0.00033759805955924094, -0.003707664320245385, 0.010220207273960114, -0.004141076933592558, 0.03315889462828636, -0.019123144447803497, -0.0053902133367955685, -0.00894078891724348, 0.01162832509726286, 0.016836846247315407, -0.01096968911588192, -0.026345424354076385, -0.00921332836151123, 0.016851987689733505, -0.008214018307626247, -0.005897438153624535, 0.0025645149871706963, -0.003321567550301552, -0.0016579447546973825, -0.029752159491181374, 0.021258031949400902, -0.016534024849534035, 0.014202303253114223, 0.016231203451752663, -0.01680656336247921, 0.009622136130928993, -0.02422567643225193, -0.021000634878873825, -0.003650885308161378, 0.013414968736469746, -0.012938025407493114, 0.003397272666916251, -0.007256347220391035, 0.00976597610861063, -0.01188572309911251, -0.02552780695259571, 0.006938385311514139, 0.01965308003127575, -0.01626148633658886, 0.01379349548369646, -4.560058005154133e-05, 0.0196379404515028, 0.001939946785569191, 0.007888486608862877, -0.0033329231664538383, 0.011772165074944496, 0.015686126425862312, -0.011787306517362595, 0.009781117551028728, 0.024710191413760185, 0.001181948115117848, 0.018714334815740585, -0.016079792752861977, 0.016761140897870064, -0.01626148633658886, -0.00019659704412333667, 0.005992069840431213, -0.012158261612057686, -0.005920149851590395, -0.022211918607354164, -0.00933445617556572, -0.005197165068238974, -0.00736990524455905, 0.001022020704112947, -0.020031606778502464, -0.007226065266877413, 0.038458261638879776, 0.0013220027321949601, 0.034097641706466675, -0.01801784709095955, -0.0075023896060884, 0.011363356374204159, 0.017200231552124023, -0.01271848101168871, -0.04284916818141937, 0.0012983449269086123, 0.0017298647435382009, 0.022832700982689857, 0.010386759415268898, -0.025936616584658623, -0.0016428037779405713, 0.014701957814395428, 0.022393610328435898, -0.011575331911444664, 0.017609039321541786, 0.007294199895113707, 0.028934543952345848, 0.023544330149888992, -0.013172712177038193, 0.000982275465503335, -0.005057109985500574, 0.026239436119794846, -0.01898687519133091, -0.027299311012029648, -0.031796202063560486, 0.014701957814395428, 0.007475892547518015, -0.004167573526501656, -0.021984802559018135, 0.011075676418840885, 0.005852015223354101, -0.018275246024131775, -0.009781117551028728, 0.008085319772362709, 0.014595970511436462, 0.016291767358779907, -0.0031455527059733868, 0.01123465783894062, -0.03588428348302841, 0.01124222856014967, -0.00795662123709917, -0.02051611989736557, 0.0294493380934, -0.005409139674156904, -0.03555118292570114, -0.0034199843648821115, -0.004481750074774027, -0.022015083581209183, 0.02639084681868553, 0.02063724957406521, 0.011590472422540188, 0.012960737571120262, -0.008002043701708317, -0.008834801614284515, -0.02171226404607296, -0.013074295595288277, 0.00013331220543477684, -0.004875417333096266, 0.00044405856169760227, -0.012264248915016651, -0.0025153066962957382, 0.015761831775307655, -0.008607685565948486, -0.006711269728839397, -0.00188979203812778, -0.011045394465327263, -0.004356836434453726, -0.013490674085915089, -0.025361256673932076, 0.01538330502808094, -0.0004925572429783642, -0.0050798216834664345, -0.023847151547670364, -0.007994473911821842, 0.015012349002063274, 0.0033594199921935797, 0.0036679189652204514, -0.0056741079315543175, 9.983628842746839e-05, -0.008365429006516933, -0.007411543279886246, -0.01019749604165554, 0.002187881385907531, 0.0360356941819191, 0.007388831581920385, -0.01821468025445938, 0.00583687424659729, 0.018714334815740585, -0.009024064987897873, -0.014891221188008785, 0.0025758708361536264, 0.002492594998329878, 0.01703367941081524, -0.007248776964843273, 0.005670322570949793, 0.02380172722041607, -0.005776309873908758, -0.002259801374748349, -0.003876108443364501, 0.011741883121430874, 0.016352331265807152, 0.020652389153838158, -0.004163788165897131, -0.011567761190235615, -0.00850926898419857, -0.004160002805292606, 0.0027216034941375256, 0.0010343228932470083, -0.009046776220202446, 0.02280241809785366, -0.015792112797498703, 0.005159312393516302, 0.012127979658544064, 0.01886574551463127, -0.014050892554223537, 0.004678583703935146, -0.032250434160232544, -0.006718839984387159, -0.002004296286031604, -0.02967645414173603, -0.019668221473693848, -0.023862292990088463, -0.00016678811516612768, -0.004618019796907902, -0.011310363188385963, 0.012249108403921127, -0.00704058725386858, 0.005481059662997723, -0.0015538501320406795, 0.010083938017487526, 0.022651007398962975, 0.008759096264839172, 0.026163730770349503, -0.001750683761201799, 0.03282579407095909, 0.010015803389251232, 0.00270267715677619, 0.011249799281358719, 0.01379349548369646, 0.013649655506014824, 0.0004693724913522601, -0.0049700490199029446, 0.006363025400787592, 0.000757998728659004, 0.014050892554223537, 0.01713966578245163, 0.017427345737814903, -0.005136600695550442, 0.015776973217725754, -0.01832066848874092, 0.008706103079020977, 0.03418848663568497, -0.007593235932290554, -0.04006321355700493, 0.011166523210704327, 0.006662061437964439, -0.0007215655641630292, -0.021999944001436234, 0.03697444126009941, -0.013884341344237328, -0.01682170480489731, -0.004701295401901007, -0.004167573526501656, -0.004954908043146133, -0.007237420883029699, -0.00676426338031888, 0.018184399232268333, -0.019017156213521957, 0.025709500536322594, 0.020758377388119698, 0.01085613202303648, -0.008865083567798138, 0.012574641034007072, -0.013990328647196293, 0.011007541790604591, -0.012037133798003197, 0.022227058187127113, 0.0004298638377804309, -0.03742866963148117, 0.022317904978990555, 0.0019721216522157192, 0.010666868649423122, -0.011961428448557854, -0.012779044918715954, -0.0017913752235472202, 0.005166882649064064, 0.020122453570365906, 0.00447039445862174, -0.012642775662243366, 0.01636747270822525, -0.01656430773437023, -0.022060507908463478, 0.0011062428820878267, 0.01188572309911251, -0.005560549907386303, 0.0139070525765419, -0.006385737098753452, -0.015776973217725754, -0.0038325779605656862, -0.011704030446708202, -0.017942141741514206, -0.005007901694625616, -0.0005261514452286065, 0.008531981147825718, -0.015353023074567318, 0.025679217651486397, 0.012476223520934582, -0.01014450192451477, 0.002006188966333866, -0.003870430402457714, 0.04157732054591179, -0.010606304742395878, 0.0008810197468847036, -0.003921531606465578, 0.02630000002682209, -0.019986184313893318, 0.019017156213521957, -0.0002772704465314746, -2.7472722649690695e-05, 0.038670238107442856, -0.0003040038573089987, -0.006597711704671383, -0.025482384487986565, 0.003561931662261486, 0.015640702098608017, 0.03915474936366081, -0.012824468314647675, 0.024165112525224686, 0.013626943342387676, -0.008320005610585213, -0.0007802371401339769, -0.0009813292417675257, 0.0076651559211313725, 0.010893984697759151, 0.0036925231106579304, -0.004307628143578768, -0.012067415751516819, -0.020228439942002296, 0.006957311648875475, 0.01243837084621191, -0.009440443478524685, -0.01856292597949505, 0.010704721324145794, 0.028858838602900505, 0.015322741121053696, -0.007513745222240686, -0.0031001295428723097, -0.0007144682458601892, 0.012567070312798023, 0.002488809870555997, -0.0012131765251979232, -0.03043350763618946, 0.008834801614284515, 0.0071200779639184475, 0.006397092714905739, -0.0087212435901165, -0.011741883121430874, 0.01754847541451454, 0.007131433580070734, 0.006991378962993622, 0.017593897879123688, 0.006219185423105955, -0.0032496475614607334, -0.014005470089614391, 0.00728284427896142, 0.02162141725420952, -0.0038874640595167875, 0.03194761276245117, 0.0023317213635891676, -0.007441825233399868, -0.018850605934858322, -0.004913270007818937, -0.0040691569447517395, 0.024740472435951233, 0.03046378865838051, 0.010750144720077515, 0.005651396233588457, 0.014383995905518532, -0.0024471718352288008, 0.013997899368405342, -0.010076367296278477, 0.020334428176283836, 0.0030793107580393553, -0.00025976361939683557, -0.007994473911821842, 0.0023525403812527657, 0.008039896376430988, -0.02380172722041607, -0.020682672038674355, 0.007494818884879351, 0.01396761741489172, 0.0006212561274878681, 0.013392257504165173, 0.018305527046322823, 0.00017755244334693998, 0.0023184730671346188, -0.03173563629388809, 0.013165141455829144, -0.017911860719323158, 0.004773215390741825, 0.029979275539517403, 0.014066033996641636, -0.0010598733788356185, 0.012854750268161297, -0.007033016998320818, 0.009879534132778645, 0.02171226404607296, 0.0014677353901788592, -0.024952447041869164, -0.008887795731425285, -0.006794545333832502, -0.010341336019337177, 0.002490702550858259, 0.0012349417665973306, -0.022635867819190025, 0.004265990573912859, -0.010825849138200283, 0.00828972365707159, -0.009342026896774769, 0.009266321547329426, -0.000755632936488837, -0.02215135283768177, 0.005007901694625616, 0.014838227070868015, 0.01691255159676075, 0.008577403612434864, 0.00726013258099556, 0.0245436392724514, -0.0069610970094799995, 0.006718839984387159, 0.0021916667465120554, 0.01886574551463127, -0.013430110178887844, -0.00878180842846632, -0.00027892651269212365, -0.006665846332907677, -0.0018320668023079634, 0.0008332307916134596, 0.004141076933592558, 0.01800270564854145, -0.004205426201224327, -0.006559859029948711, -0.0139070525765419, 0.009508578106760979, 0.000606115092523396, -0.015315170399844646, -0.0049208407290279865, -0.016534024849534035, 0.0009094091947190464, 0.012779044918715954, -0.006374381482601166, -0.008471416309475899, 0.013134859502315521, -0.010871272534132004, -0.028450028970837593, 0.010500317439436913, -0.016428036615252495, 0.014293150044977665, -0.014361284673213959, -0.0022919762413948774, 0.0016569985309615731, 0.005197165068238974, 0.01800270564854145, -0.005034398753196001, 0.006540932692587376, 0.009448014199733734, -0.010492746718227863, -0.007896056398749352, -0.010500317439436913, 0.006605282425880432, 0.021757686510682106, -0.012506505474448204, -0.02751128561794758, -0.011863010935485363, -0.004939767066389322, 0.007233635988086462, -0.03512723371386528, 0.012476223520934582, 0.01822982169687748, 0.006238111760467291, 0.0030812034383416176, -0.001212230185046792, -0.01336197555065155, 0.004012377932667732, 0.014754951931536198, -0.012567070312798023, -0.017215371131896973, 0.00024249334819614887, 0.0158223956823349, -0.01101511251181364, -0.004705080762505531, 0.0029468266293406487, 0.012370236217975616, 0.004568811506032944, -0.013551237992942333, 0.0061661917716264725, 0.007926338352262974, -0.01691255159676075, -0.012960737571120262, 0.025346115231513977, 0.005083607044070959, -0.035399772226810455, 0.01452026516199112, -0.012801756151020527, -0.0026610393542796373, 0.001376889063976705, -0.023165803402662277, 0.0014298827154561877, -0.017185090109705925, 0.012854750268161297, 0.0130894361063838, 0.002500165719538927, -0.008743955753743649, -0.01391462329775095, -0.028752850368618965, -0.014527835883200169, 0.02104605734348297, -0.006904317997395992, -0.012074986472725868, -0.020970351994037628, -0.019365400075912476, 0.010046085342764854, 0.018305527046322823, -0.011900863610208035, 0.003397272666916251, -0.02475561387836933, 0.01516375970095396, 0.011227087117731571, -0.006275964435189962, 0.015239465050399303, -0.003098237095400691, 0.0007844955543987453, -0.004137291572988033, -0.0020572899375110865, 0.017942141741514206, -0.046876683831214905, 0.0028010939713567495, -0.0009510471136309206, 0.0011431491002440453, 0.0032080095261335373, -0.0007745592738501728, 0.00977354682981968, -0.013127288781106472, -0.013021301478147507, 0.0001931666483869776, -0.0008114655502140522, -0.0012453512754291296, 0.022953828796744347, 0.00959942489862442, 0.006730196066200733, -0.010530599392950535, -0.0035638243425637484, 0.024467933923006058, 0.01003094483166933, -0.01456568855792284, 0.010992401279509068, -0.0022257340606302023, 0.00646522780880332, -0.007926338352262974, -0.024483075365424156, -0.0032401843927800655, 0.028283478692173958, 0.0037682284601032734, -0.0023071172181516886, -0.013604232110083103, -0.009849252179265022, 0.001222639693878591, 0.009448014199733734, 0.024286242201924324, 0.0023430772125720978, 8.706103108124807e-05, 0.015072913840413094, 0.00034564174711704254, 0.02584576979279518, -3.1494564609602094e-05, 0.003891249420121312, 0.014255297370254993, -0.01822982169687748, -0.001212230185046792, 0.020864363759756088, 0.019895337522029877, -0.0017961068078875542, -0.00042111039510928094, -0.002873013960197568, -0.01374050136655569, -0.0023411845322698355, -0.0012453512754291296, 0.027571849524974823, -0.018244963139295578, 0.01413416862487793, -0.019895337522029877, -0.006711269728839397, -0.017442487180233, 0.0006647866684943438, -0.008743955753743649, -0.0009699733927845955, -0.00011616022675298154, -0.0031398748978972435, 0.021787969395518303, -0.0022673720959573984, 9.001826401799917e-05, -0.017654461786150932, -0.02345348335802555, -0.013013730756938457, 0.0017544690053910017, -0.008357858285307884, -0.02104605734348297, -0.006927029695361853, 0.005905008874833584, -0.021242890506982803, -0.004924626089632511, -0.003052813932299614, 0.02071295492351055, -0.002469883533194661, 0.015300028957426548, 0.013997899368405342, -0.03131168708205223, -0.01877490058541298, -0.0212883148342371, 0.046634428203105927, 0.0158072542399168, -0.005197165068238974, -0.010886413976550102, 0.03328002244234085, -0.006094271782785654, 0.0008838587091304362, -0.004697510041296482, 0.005477274302393198, -0.017715025693178177, 0.009099770337343216, -0.023226367309689522, -0.00033262991928495467, -0.006858895067125559, 0.00684375362470746, 0.011787306517362595, -0.007835492491722107, 0.008494128473103046, -0.009016494266688824, -0.020425274968147278, -0.0011658606817945838, -0.0032307212240993977, 0.0006737766670994461, 0.009342026896774769, 0.003611139953136444, -0.00012207470717839897, -0.010962119325995445, 0.004542314447462559, 0.01538330502808094, -0.0062418971210718155, -0.026360565796494484, -0.02094006910920143, 0.019804490730166435, -0.01810869388282299, -0.010091508738696575, -0.026996489614248276, 0.014959355816245079, 0.006370596121996641, 0.01353609748184681, 0.03340115398168564, 0.004773215390741825, 0.018305527046322823, 0.005219876300543547, 0.029207082465291023, 0.0010229670442640781, 0.005976928863674402, -0.0037701211404055357, 0.018048129975795746, -0.0017781268106773496, 0.0008554692030884326, 0.01374807208776474, 0.022514738142490387, 0.006378166377544403, 0.013074295595288277, -0.010189925320446491, 0.012559499591588974, -0.010750144720077515, -0.00890293624252081, -0.01347553264349699, -0.009463155642151833, 0.0020270077511668205, -0.0012141228653490543, 0.01594352349638939, -0.013876770623028278, 0.019153425469994545, 0.013573950156569481, 0.0012254785979166627, -0.0005076982779428363, -0.032583534717559814, 0.00012195641465950757, -0.01997104287147522, -0.005613543558865786, -0.006124554201960564, -0.005666537210345268, 0.005386427976191044, 0.01533788163214922, -0.010878843255341053, -0.0032288285437971354, -0.004489320795983076, -0.01270333956927061, -0.024180253967642784, 0.022620726376771927, -0.03143281489610672, 0.0012898280983790755, 0.011741883121430874, -0.024740472435951233, -0.015322741121053696, 0.015209183096885681, 0.025558089837431908, -0.013611802831292152, 0.014815515838563442, 0.010174784809350967, 0.005344789940863848, 0.01645831950008869, 0.023271791636943817, 0.003720912616699934, -0.028510594740509987, 0.0006979077006690204, 0.01944110542535782, -0.019017156213521957, -0.022423893213272095, 0.0019181815441697836, 0.007184427231550217, 0.014762521721422672, 0.020167876034975052, 0.008547121658921242, 0.027768682688474655, -0.01898687519133091, -0.024074267596006393, 0.005435636267066002, 0.0028919402975589037, 0.0029297927394509315, 0.014066033996641636, 0.0046369461342692375, 0.02095521055161953, -0.01636747270822525, 0.005393998697400093, -0.007623517885804176, 0.004462824203073978, -0.002329828916117549, 0.033552564680576324, 0.01930483616888523, 0.006533362437039614, 0.004046445246785879, -0.0026326498482376337, -0.021121762692928314, -0.010977259837090969, 0.010500317439436913, -0.013831347227096558, 0.026769373565912247, -0.0006846592877991498, 0.02181825041770935, -0.011938716284930706, -0.002449064515531063, 0.00447039445862174, 0.0030149612575769424, 0.0057725245133042336, -0.007949050515890121, -0.003978310618549585, -0.020455555990338326, 0.005356146022677422, -0.013899482786655426, 0.017911860719323158, -0.017533333972096443, 0.027632413432002068, -0.004599093459546566, -0.02760213054716587, -0.015072913840413094, 0.002339291851967573, 0.011749453842639923, 0.025618653744459152, 0.00111192069016397, -0.01379349548369646, 0.0033934875391423702, -0.016322050243616104, -0.014066033996641636, -0.0033196748699992895, -0.023165803402662277, -0.03122084215283394, -0.010091508738696575, -0.012180973775684834, -0.00028129227575846016, 0.009243610315024853, 0.01473223976790905, 0.0008067339658737183, 0.010886413976550102, -0.014164450578391552, 0.003107700264081359, 0.0003607827820815146, 0.007964191026985645, 0.0031152707524597645, -0.0022673720959573984, -0.008410852402448654, 0.006718839984387159, -0.0016891731647774577, 0.0021159613970667124, 0.007536456920206547, -0.011643466539680958, 0.0053902133367955685, -0.013202994130551815, 0.0009439497371204197, 0.018850605934858322, -0.017745308578014374, 0.011143811978399754, 0.007188212592154741, 0.011227087117731571, 0.009296603500843048, 0.018048129975795746, -0.0106365866959095, -0.027556708082556725, 0.007252562325447798, -0.00425841985270381, -4.217018431518227e-05, 0.010227777995169163, -0.03143281489610672, -0.014989637769758701, 0.018275246024131775, -0.000865405541844666, 0.01123465783894062, 0.002579656196758151, 0.003955598920583725, 0.011999281123280525, 0.024028843268752098, -0.0004244224983267486, 0.0034559443593025208, 0.002449064515531063, -0.010689579881727695, -0.0042773461900651455, -0.011264939792454243, 0.0021329952869564295, -0.0011611290974542499, 0.007135218940675259, -0.002061075298115611, 0.012953166849911213, 0.021803108975291252, -0.007820351049304008, -0.0005379803478717804, -0.00878180842846632, -0.013339263387024403, -0.013369545340538025, -0.02051611989736557, 0.00872881431132555, 0.009697841480374336, 0.021545711904764175, 0.007600806187838316, -0.032341279089450836, 0.009485866874456406, -0.0020818940829485655, 0.0005824572290293872, -0.0011980354320257902, 0.005242587998509407, 0.008653108961880207, 0.0013059154152870178, -0.0017913752235472202, -0.002159492112696171, 0.027041912078857422, -0.028737708926200867, 0.005571905989199877, -0.001456379541195929, 0.010946977883577347, -0.004356836434453726, -0.011900863610208035, 0.007733290549367666, 0.021681981161236763, 0.02749614417552948, 0.015882959589362144, 0.0019276447128504515, 0.015345452353358269, -0.01670057699084282, 0.004962478764355183, 0.016624871641397476, 0.02346862480044365, 0.00137121113948524, 0.03146309778094292, -0.000680874043609947, -0.004254634492099285, 0.023271791636943817, -0.0009765976574271917, -0.010901554487645626, -0.02552780695259571, 0.012188543565571308, 0.00921332836151123, 0.017927000299096107, -0.014444559812545776, 0.016322050243616104, 0.013997899368405342, -0.0038515040650963783, 0.00148098380304873, -0.01736678183078766, -0.0014582722214981914, 0.02631514146924019, 0.008032326586544514, -0.00222384138032794, 0.007964191026985645, 0.0029941422399133444, 0.0010750144720077515, -0.0037019862793385983, 0.0020024036057293415, -0.026557398959994316, 0.021273173391819, -0.003147445386275649, 0.007718149572610855, -0.016443178057670593, 0.010530599392950535, -0.0031834053806960583, -0.006336528807878494, -0.0036641336046159267, 0.00899378303438425, 0.0009264429099857807, -0.018487220630049706, 0.005257728975266218, 0.0023260435555130243, 0.008796948939561844, 0.0065522887744009495, 0.03533920645713806, -0.008145883679389954, 0.0018226037500426173, 0.0010116113116964698, -0.009879534132778645, 0.00312284124083817, 0.006927029695361853, 0.011757023632526398, 0.0037720135878771544, -0.0021273172460496426, 0.004618019796907902, -0.0012775259092450142, -0.010189925320446491, -0.0009860608261078596, -0.004572596400976181, 0.008963500149548054, -0.015580139122903347, 0.017397064715623856, 0.006715055089443922, -0.01624634489417076, 0.011552619747817516, -0.0029354707803577185, -0.01682170480489731, -0.0007603645208291709, 0.025073576718568802, 0.021409442648291588, -0.0010664976434782147, -0.019274555146694183, -0.014921503141522408, -0.006260823458433151, 0.011855441145598888, 0.002049719449132681, 0.0032042243983596563, 0.010273201391100883, -0.011635895818471909, 0.019728785380721092, -0.00972055271267891, 0.016170639544725418, 0.007123863324522972, -0.005352360662072897, 0.006408448796719313, -0.001337143825367093, 0.007101151626557112, -0.030403224751353264, -0.006385737098753452, 0.01766960322856903, 0.006359240505844355, 0.01478523388504982, 0.016170639544725418, 0.010492746718227863, 0.0012444049352779984, 0.016352331265807152, 0.011272510513663292, -0.009879534132778645, 0.02060696668922901, -0.01766960322856903, 0.0012008744524791837, 0.01434614323079586, -0.0076386588625609875, 0.009145192801952362, 0.01473223976790905, -0.01533788163214922, -0.0029411485884338617, -0.007468322291970253, -0.006688558030873537, 0.01975906826555729, -0.005511341616511345, 0.013566379435360432, -0.012975878082215786, 0.004652087111026049, -0.00795662123709917, 0.011734312400221825, -0.021999944001436234, -0.014807945117354393, -0.019244272261857986, -0.0010560881346464157, 0.005518912337720394, -0.013846488669514656, -0.0020364709198474884, -0.006154836155474186, -0.004852706100791693, -0.022302763536572456, 0.0005100640701130033, -0.020652389153838158, -0.006079130806028843, 0.028450028970837593, -0.017745308578014374, 0.0095540015026927, 0.006813471671193838, -0.007873345166444778, -0.001077853376045823, -0.01754847541451454, 0.005110103636980057, 0.0016740321880206466, 0.004424971528351307, -0.01842665672302246, -5.082749339635484e-06, -0.004519602749496698, -0.008009614422917366, 0.008827230893075466, 0.008115601725876331, -0.001775287906639278, 0.02259044349193573, 0.007820351049304008, -0.0019162889802828431, -0.014482412487268448, 0.024089407175779343, 0.00786577444523573, -0.00017814389138948172, 0.016851987689733505, 0.007926338352262974, 0.026557398959994316, -0.009152763523161411, 0.021969661116600037, -0.003327245358377695, 0.0019759067799896, -0.016125217080116272, -0.002573978155851364, -0.013028872199356556, 0.0018112479010596871, 0.02095521055161953, -0.020758377388119698, 0.005734671838581562, -0.017836155369877815, -0.013513385318219662, -0.01779073104262352, -0.007422898896038532, -0.020273864269256592, 0.008267012424767017, -0.01227939035743475, -0.008471416309475899, 0.015496863052248955, 0.012044703587889671, 0.00531829334795475, 0.011136241257190704, -0.0075894505716860294, -0.005870941560715437, 0.006022351793944836, 0.0005777256446890533, 0.0023714667186141014, 0.0036982011515647173, 0.01733650080859661, -0.007971761748194695, -0.00542806601151824, -0.03515751287341118, -0.003620603121817112, -8.138313569361344e-05, -0.02825319580733776, 0.013172712177038193, -0.01944110542535782, -0.008206448517739773, -0.005420495290309191, -0.004269775468856096, -0.009781117551028728, -0.01591324247419834, -0.004019948188215494, -0.002210593083873391, 0.02172740362584591, -0.005912579596042633, -0.015761831775307655, -0.00395938428118825, 0.005458347965031862, 0.011090817861258984, -0.01205984503030777, 0.026466552168130875, -0.013891912065446377, -0.026981348171830177, -0.022015083581209183, 0.031039148569107056, -0.01101511251181364, 0.020879505202174187, 0.0007802371401339769, 0.0027613486163318157, -0.004939767066389322, 0.016064653173089027, 0.009137623012065887, 0.006075345445424318, 0.012150690890848637, 0.01659458875656128, 0.00698380870744586, -0.012014421634376049, -0.0035600389819592237, -0.021242890506982803, -0.01754847541451454, 0.02421053685247898, -0.024271100759506226, -0.0013882449129596353, -0.003595998976379633, -0.01679142192006111, 0.02489188313484192, -0.020243581384420395, -0.009077058173716068, 0.007343408651649952, 0.03088773787021637, 0.0063668107613921165, -0.015443868935108185, -0.03023667261004448, -0.02181825041770935, -0.010454894043505192, 0.014845797792077065, 0.013430110178887844, 0.006537147797644138, 0.016534024849534035, 0.006964882370084524, 0.0020364709198474884, -0.020258722826838493, 0.012302101589739323, -0.008857512846589088, 0.022635867819190025, -0.002829483477398753, -0.017487911507487297, 0.004882988054305315, -0.020546402782201767, 0.01210526842623949, 0.012551928870379925, -0.014853368513286114, 0.0011242228792980313, 0.008320005610585213, -0.021757686510682106, 0.005284226033836603, 0.02793523482978344, 0.010984830558300018, 0.0015737226931378245, 0.0158072542399168, -0.005261514335870743, -0.0001754232362145558, -0.00414864718914032, 0.014452130533754826, 0.004307628143578768, -0.025073576718568802, -0.004890558775514364, 0.02795037440955639, 0.029964134097099304, 0.009357167407870293, -0.0008616202976554632, -0.015103195793926716, 0.003088773926720023, -0.0001156279249698855, -0.005787665955722332, 0.010613874532282352, 0.013823777437210083, -0.013604232110083103, 0.011295221745967865, -0.009440443478524685, 0.017972424626350403, -0.00851683970540762, -0.001974014099687338, -0.0018462615553289652, -0.016064653173089027, 0.010871272534132004, 0.013642084784805775, -0.0008266065851785243, 0.012763903476297855, 0.010962119325995445, -0.007672726176679134, 0.0017402742523699999, -0.011174093931913376, -0.012468653731048107, -0.01953195221722126, 0.007710578851401806, -0.01287746150046587, -0.007350978907197714, -0.022545021027326584, -0.0064425161108374596, -0.0018746510613709688, -0.00834271777421236, 0.009652418084442616, 0.01570126786828041, 0.017094243317842484, 0.0028143422678112984, 0.009750834666192532, 0.007104936987161636, -0.008039896376430988, 0.015345452353358269, -0.020909788087010384, 0.020970351994037628, 0.0028408390935510397, -0.007051943335682154, -0.003985880874097347, -0.001092048129066825, -0.00010604648559819907, -0.01188572309911251, 0.003257218049839139, -0.01041704136878252, -0.029388774186372757, 0.02106119878590107, -0.018275246024131775, 0.0015917026903480291, 0.011560190469026566, 0.004432541783899069, 0.005662751849740744, -0.0037190199363976717, 0.01573154889047146, 0.0038874640595167875, -0.021893955767154694, 0.010356477461755276, 0.023211227729916573, -0.0061926888301968575, 0.0033802390098571777, 0.004932196345180273, -0.001994833117350936, 0.020788660272955894, -0.0070708696730434895, -0.008933218196034431, 0.02204536646604538, -0.0005081714480184019, -0.0032345063518732786, 0.002833268605172634, 0.009289032779633999, 0.0006463335012085736, -0.005094962660223246, -0.008918077684938908, 0.029979275539517403, 0.005026828031986952, 0.008153454400599003, 0.00488677341490984, -0.0076386588625609875, 7.718386041233316e-05, 0.005757383536547422, 0.0011734312865883112, -0.002290083561092615, 0.01594352349638939, -0.008236730471253395, -0.010394330136477947, 0.0245436392724514, 0.02312038093805313, -0.007820351049304008, -0.0008185629267245531, 0.00208567944355309, -0.014770092442631721, -0.006457657087594271, 0.009584283456206322, -0.010651727207005024, 0.012688198126852512, 0.012037133798003197, 0.0029846790712326765, 0.013150000013411045, -0.008304865099489689, 0.006363025400787592, -0.0006099003367125988, -0.01900201477110386, -0.02325665019452572, -0.0067604780197143555, 0.007733290549367666, 0.002379037206992507, -0.019804490730166435, -0.008494128473103046, -0.004103224258869886, -0.004315198864787817, -0.0174576286226511, -0.0054129245691001415, -0.010235348716378212, 0.01789671927690506, 0.026330282911658287, -0.04072941839694977, 0.0013749965000897646, 0.021575994789600372, 0.021258031949400902, -0.012037133798003197, 0.0010551417944952846, 0.01499720849096775, -0.01898687519133091, 0.0019815845880657434, 0.00436062179505825, 0.0018869531340897083, 0.01430071983486414, 0.004190285224467516, 0.007827921770513058, -0.016761140897870064, -0.015315170399844646, -0.015413586981594563, -0.007676511537283659, 0.0039518135599792, -0.003732268465682864, -0.018820323050022125, -0.013649655506014824, -0.007229850627481937, 0.0050041163340210915, 0.0010116113116964698, -0.018608348444104195, 0.000630719296168536, -0.023090098053216934, -0.004917055368423462, -0.013589090667665005, 0.011196805164217949, 0.01974392682313919, 0.0009993092389777303, -0.0068361833691596985, 0.008827230893075466, -0.039760392159223557, 0.0018793826457113028, 0.007366119883954525, 0.0007064245291985571, 0.0009784902213141322, -0.0016674079233780503, -0.0029903571121394634, -0.005375072360038757, 0.012854750268161297, 0.008842372335493565, -0.013846488669514656, 0.012014421634376049, -0.01703367941081524, -0.009970379993319511, 0.0024717762134969234, -0.0036641336046159267, 0.010878843255341053, -0.005734671838581562, -0.008092890493571758, -0.0008994729141704738, -0.012885032221674919, 0.00439090421423316, -0.010962119325995445, 0.006980023346841335, 0.013513385318219662, -0.0011090817861258984, -0.02203022502362728, 0.021152043715119362, 0.004648301750421524, -0.024028843268752098, 0.013922194018959999, 0.012377806939184666, -0.01853264309465885, -0.013982757925987244, 0.020440414547920227, -0.013543667271733284, -0.013770783320069313, -0.014626252464950085, 0.005481059662997723, 0.003989666234701872, -0.005325863603502512, 0.0010116113116964698, -0.019471388310194016, -0.002589119365438819, 0.007964191026985645, 0.0004627482849173248, 0.0050306133925914764, 0.004705080762505531, -0.009175475686788559, 0.0038041884545236826, -0.023180944845080376, -0.001326734316535294, -0.003671704325824976, -0.0006274071638472378, -0.00377958407625556, -0.005348575301468372, -0.00632517272606492, -0.003997236955910921, -0.024816177785396576, 0.0012794185895472765, -0.015761831775307655, -0.0011639681179076433, 0.008047467097640038, -0.024831319227814674, 0.011333074420690536, -0.00932688545435667, -0.01626148633658886, 0.01283203810453415, -0.002437708666548133, -0.011567761190235615, -0.005518912337720394, -0.004443897865712643, -0.0026099381502717733, -0.009516148827970028, -0.010629015974700451, -0.003815544070675969, -0.021106621250510216, -0.010326194576919079, 0.0038628599140793085, -0.006855109706521034, -0.020319286733865738, 0.010659297928214073, 0.01603437028825283, -0.011393639259040356, 0.00444768276065588, -0.013596661388874054, 0.005893653258681297, 0.020152734592556953, 0.01863863132894039, -0.031039148569107056, 0.017745308578014374, -0.008963500149548054, 0.01309700682759285, -0.0010135038755834103, -0.0032193653751164675, 0.010553310625255108, 0.021742545068264008, -0.022878123447299004, 0.02410454861819744, 0.001261438592337072, -0.0007305555627681315, -0.013127288781106472, 0.0004781259049195796, -0.012423230335116386, 0.009569142945110798, -0.035732872784137726, 0.0029695380944758654, -0.0018292278982698917, 0.004394689109176397, 0.006927029695361853, -0.006518221460282803, 0.010901554487645626, -0.007267703302204609, -0.004337910562753677, -0.026905642822384834, -0.0174727700650692, 0.00039437698433175683, 0.002231412101536989, -0.00591636449098587, -0.004765645135194063, -0.014701957814395428, 0.013104577548801899, 0.006870250683277845, 0.031372252851724625, -0.014845797792077065, -0.004735362716019154, 0.01931997761130333, 0.007752216886729002, -0.00466722808778286, 0.0005242588231340051, 0.013271128758788109, -0.009357167407870293, 0.018350951373577118, -0.01624634489417076, 0.021454865112900734, 0.010553310625255108, 0.01499720849096775, -0.006022351793944836, 0.006855109706521034, 0.01832066848874092, -0.021227749064564705, -0.02313552238047123, 0.003681167261675, -0.012476223520934582, -0.01375564280897379, 0.027662694454193115, 0.01638261415064335, -0.030403224751353264, -0.011900863610208035, -0.014141739346086979, -0.004311413504183292, 0.014868509024381638, 0.00248313182964921, 0.004829994402825832, 0.011567761190235615, 0.00025242965784855187, 0.0077143642120063305, 0.027208464220166206, -0.030736329033970833, -0.00507603632286191, -0.004958693403750658, 0.011499626561999321, 0.003550575813278556, 0.012551928870379925, 0.0063933078199625015, 0.001481930143199861, 0.02631514146924019, 0.0027992012910544872, -0.002628864487633109, -0.009364738129079342, 0.013414968736469746, -0.005783880595117807, -0.020001325756311417, 0.010893984697759151, -0.01101511251181364, 0.01183272898197174, -0.000915560289286077, -0.0015775079373270273, -0.02531583234667778, 0.0021121762692928314, 0.005677893292158842, 0.02203022502362728, -0.0139070525765419, 0.01265791617333889, -0.004160002805292606, 0.011575331911444664, 0.013104577548801899, -0.013929764740169048, 0.01102268323302269, 0.004076727200299501, 0.0017667710781097412, -0.014058463275432587, -0.0033404938876628876, -0.005045754369348288, -0.010280772112309933, 0.0095540015026927, 0.020470697432756424, -0.0058822971768677235, 0.019834773615002632, 0.017169948667287827, 0.016973115503787994, -0.012786615639925003, 6.328485324047506e-05, 0.012483794242143631, -0.009659988805651665, -0.0019815845880657434, 0.019123144447803497, 0.0017487910808995366, -0.013778354041278362, -0.01053816918283701, -0.002608045469969511, 0.003660348476842046, 0.003985880874097347, -0.0005848229629918933, -0.016094934195280075, 0.03833713382482529, -0.023226367309689522, -0.008236730471253395, 0.0014033858897164464, -0.008486557751893997, -0.026708809658885002, -0.011961428448557854, -0.003709556767717004, 0.038125161081552505, 0.00539778359234333, -0.017851296812295914, 0.014020610600709915, -0.013642084784805775, -0.007139004301279783, -0.012158261612057686, -0.005655181594192982, 0.01559527963399887, 0.012612493708729744, -0.009470725432038307, 0.00327235902659595, 0.015973806381225586, 0.01638261415064335, -0.006363025400787592, -0.04639217257499695, 0.01075771450996399, 0.00163050158880651, 0.015988947823643684, 0.004186499863862991, 0.011938716284930706, 0.02728416956961155, 0.0012936133425682783, 0.006257038097828627, -0.010666868649423122, -0.009947668761014938, -0.003270466346293688, -0.031675074249506, -0.0028143422678112984, -0.028010940179228783, 0.017911860719323158, -0.010530599392950535, 0.01330898143351078, -0.015292459167540073, -0.007767357863485813, 0.023286933079361916, 0.0044779651798307896, 0.015459010377526283, 0.017957283183932304, 0.006718839984387159, 0.00981139950454235, -0.0031834053806960583, 0.01659458875656128, -0.007131433580070734, -0.0061661917716264725, 0.003245862200856209, 0.0008251871331594884, -0.010167214088141918, -0.004591522738337517, -0.014906361699104309, 0.026254577562212944, -0.0057990215718746185, 0.0016674079233780503, 0.012158261612057686, 0.0169276911765337, -0.009538860060274601, 0.015466581098735332, -0.0026364349760115147, -0.006257038097828627, 0.02213621325790882, -0.012574641034007072, 0.011961428448557854, -0.011726741679012775, -0.011878152377903461, -0.004182714503258467, -0.0016040047630667686, 0.0072714886628091335, 0.0048451353795826435, -0.0011412565363571048, -0.009425302967429161, -0.005708175245672464, -0.013990328647196293, -0.006980023346841335, -0.011810017749667168, -0.0026364349760115147, -0.012006850913167, 0.014845797792077065, -0.01604951173067093, -0.0010314838727936149, -0.0054129245691001415, 0.01249136496335268, 0.0048716324381530285, -0.007214709650725126, -0.011166523210704327, 0.017866436392068863, -0.011916005052626133, 0.04736119881272316, 0.007653799839317799, 0.011121099814772606, 0.013854059390723705, 0.007074655033648014, 0.02269643172621727, 0.010787997394800186, -0.025255268439650536, -0.014247726649045944, -0.030857456848025322, -0.013286270201206207, -0.00959942489862442, 0.014535406604409218, -0.00030045516905374825, -0.014156879857182503, 0.02204536646604538, 0.00850926898419857, 0.004621805157512426, -0.0016238774405792356, -0.007835492491722107, -0.005481059662997723, 0.028964824974536896, -0.023635176941752434, -0.0017431131564080715, 0.015640702098608017, -0.0017875899793580174, -0.004924626089632511, -0.021909097209572792, 0.029297929257154465, -0.013816206716001034, 0.012347524985671043, -0.011295221745967865, -0.022756995633244514, -0.024801036342978477, -0.006578785367310047, 0.006858895067125559, -0.004023733548820019, 0.0029108666349202394, -0.00042868094169534743, -0.007301770616322756, 0.007131433580070734, 0.015625562518835068, -0.005988284479826689, -0.010129361413419247, 0.0012349417665973306, -0.008176165632903576, 0.013551237992942333, 0.010189925320446491, -0.030191250145435333, 0.014368854463100433, -0.006696128752082586, -0.010787997394800186, -0.016200922429561615, 0.005212306044995785, 0.016428036615252495, 0.014807945117354393, -0.004383333493024111, -0.006707484368234873, -0.002897618105635047, 0.013801065273582935, -0.0026818581391125917, -0.007509959861636162, -0.01348310336470604, -0.0007698276895098388, -0.026209155097603798, 0.01592838205397129, 0.014103886671364307, 0.018472079187631607, -0.007082225289195776, 0.015277317725121975, -0.007964191026985645, 0.002025115303695202, -0.006699914112687111, -0.02227248251438141, -0.004833779763430357, -0.01188572309911251, -0.00646522780880332, -0.015625562518835068, -0.00013201101683080196, -0.01461111195385456, 0.011181664653122425, -0.017275936901569366, -0.0075288861989974976, -0.014603541232645512, 0.023059817031025887, 0.013460392132401466, -0.01788157783448696, 0.0158223956823349, -0.005166882649064064, 0.006578785367310047, -0.006866465322673321, 0.005325863603502512, -0.006506865378469229, 0.015421157702803612, 0.008206448517739773, -0.00559461722150445, 0.007827921770513058, -0.0028351612854748964, 0.0002947772736661136, 0.00249448767863214, -0.003913960885256529, 0.019229130819439888, -0.007033016998320818, -0.01682170480489731, -0.004595308098942041, 0.019910478964447975, -0.014664105139672756, -0.006730196066200733, 0.015239465050399303, 0.005401568952947855, 0.014088745228946209, 0.008092890493571758, 0.000665732950437814, 0.017715025693178177, 0.013785924762487411, -0.0122718196362257, 0.006438730750232935, -0.02552780695259571, 0.0009709197329357266, -0.003866645274683833, -0.0035922136157751083, 0.007426684256643057, 0.016200922429561615, 0.0030849885661154985, 0.01638261415064335, -0.007237420883029699, -0.0029808939434587955, 0.023635176941752434, 0.021333737298846245, 0.02302953414618969, -0.014315861277282238, -0.0012264249380677938, 0.012233966961503029, 0.028540875762701035, 0.007525100838392973, -0.019335119053721428, 0.011075676418840885, 0.010318624787032604, 0.01041704136878252, -0.012854750268161297, 0.003092559054493904, 0.0010059333872050047, 0.01754847541451454, 0.008108031004667282, 0.00581416254863143, -0.017003396525979042, -0.020001325756311417, 0.02378658764064312, 0.01789671927690506, -0.009531290270388126, -0.009796258062124252, 0.007358549628406763, -0.013066724874079227, -0.008161025121808052, -0.006226756144315004, 0.02411969006061554, 0.005034398753196001, 0.006385737098753452, 0.0190928615629673, 0.008653108961880207, -0.0028597654309123755, 0.012998590245842934, 0.0019134499598294497, 0.03470328450202942, 0.010523028671741486, 0.01671571657061577, 0.009410161525011063, 0.0009519933955743909, -0.004553670063614845, 0.02216649428009987, -0.01900201477110386, -0.025240126997232437, 0.005110103636980057, -0.007248776964843273, 0.009667559526860714, 0.009463155642151833, 0.001072175451554358, -0.013324122875928879, 0.015534715726971626, -0.0019683362916111946, 0.00769165251404047, 0.01997104287147522, -0.01271091029047966, 0.0006974345305934548, -0.04929925501346588, -0.0027443149592727423, -0.006200259085744619, -0.020697813481092453, 0.005666537210345268, 0.00316258636303246, 4.13717316405382e-05, -0.01777559146285057, 0.00850926898419857, -0.011113529093563557, -0.026587679982185364, 0.012029563076794147, -0.010750144720077515, 0.0039177462458610535, -5.843498365720734e-05, -0.023816868662834167, 0.0021159613970667124, -0.019986184313893318, -0.025921475142240524, -0.008865083567798138], [-0.0033441223204135895, 0.028035933151841164, -0.025105394423007965, -0.01937936618924141, -0.00494950357824564, 0.017988374456763268, -0.025037871673703194, 0.0166108850389719, 0.013633080758154392, 0.02927837334573269, 0.01239739265292883, -0.0030115670524537563, 0.0004802639305125922, -0.02609124407172203, -0.05258763208985329, 0.0070967646315693855, 0.005911719519644976, -0.006968468893319368, 0.0065194349735975266, -0.03927191346883774, -0.02844107709825039, -0.010925371199846268, -0.02325524017214775, -0.007008983287960291, 0.0137073565274477, 0.006009629461914301, 0.012640479020774364, 0.023943983018398285, -0.043998587876558304, 0.04467383027076721, 0.01239739265292883, -0.017178086563944817, 0.0045072222128510475, 0.009095472283661366, 0.008460748009383678, 0.008703834377229214, 0.02051376923918724, 0.002452806569635868, -0.005830690730363131, -0.012221830897033215, 0.025267452001571655, -0.0012973033590242267, 0.013092889450490475, 0.012154306285083294, 0.009993541054427624, -0.022471962496638298, 0.003605777630582452, -0.017083553597331047, -0.026563912630081177, 0.04140567034482956, 0.021310551092028618, -0.021729199215769768, 0.03008866123855114, -0.004618636332452297, 0.005226351786404848, 0.0131063936278224, 0.021526627242565155, -0.01835300214588642, 0.057584404945373535, -0.05364100635051727, -0.011080675758421421, 0.028711173683404922, 0.018366508185863495, 0.007245317101478577, -0.001252568792551756, -0.02973753586411476, 0.0008039567619562149, 0.00888614822179079, 0.0015049395151436329, 0.03851564601063728, -0.050750982016325, 0.008987434208393097, -0.03057483397424221, 0.018420526757836342, 0.05066995322704315, -0.009358815848827362, 0.03954201191663742, 0.004335036035627127, -0.027468733489513397, 0.00785303208976984, 0.010344665497541428, -0.012518935836851597, -0.010364922694861889, -0.0257401205599308, 0.03387000039219856, 0.020365215837955475, 0.021364569664001465, -0.047779928892850876, 0.010608009062707424, -0.013437260873615742, -0.01563854143023491, 0.04418765753507614, -0.041783805936574936, -0.005894838832318783, -0.010797075927257538, -0.0008845634292811155, -0.038461629301309586, -0.004405936226248741, 0.014504139311611652, 0.030709881335496902, 0.001902486546896398, -0.0005739533808082342, 0.029818564653396606, -0.017664259299635887, -0.027711817994713783, 0.00233801594004035, -0.006299982313066721, 0.023322762921452522, -0.019068757072091103, 0.043215312063694, 0.03754330053925514, -0.0012255592737346888, -0.037975456565618515, 0.012066525407135487, -0.00846750009804964, 0.03422112390398979, -0.060609474778175354, 0.029143325984477997, -0.0266044270247221, -0.010054312646389008, -0.0006123575731180608, -0.0022519228514283895, 0.007069754879921675, -0.021229522302746773, -0.020405730232596397, 4.681834616349079e-05, 0.022390933707356453, 0.028711173683404922, -0.0012390640331432223, 0.018434030935168266, -0.04037930816411972, 0.05185837298631668, -0.01272150781005621, 0.03076389990746975, 0.007582936901599169, 0.011337267234921455, 0.01921730861067772, 0.018731137737631798, -0.005020403768867254, 0.009021196514368057, -0.0324384942650795, 0.0021219393238425255, -0.002746535697951913, -0.011013152077794075, -0.036814045161008835, -0.008832129649817944, -0.014220538549125195, 0.06930655986070633, 0.015611531212925911, -0.01909576542675495, -0.019041746854782104, -0.003538253717124462, -0.01893370784819126, -0.04270213097333908, 0.011377781629562378, -0.005719276610761881, -0.01673242822289467, 0.026361340656876564, -0.03359990566968918, 0.053613997995853424, 0.04305325448513031, -0.003266469808295369, 0.03262756019830704, 0.036165814846754074, 0.010142093524336815, 0.01902824267745018, 0.05091303959488869, 0.019973577931523323, -0.039487991482019424, 0.038002464920282364, 0.017178086563944817, 0.018623098731040955, 0.018163936212658882, -0.01751570589840412, -0.02709059789776802, 0.024295108392834663, -0.039650049060583115, -0.003889378160238266, 0.008656566962599754, 0.01689448580145836, 0.002334639662876725, -0.0029440431389957666, 0.027495741844177246, 0.022661028429865837, 0.029116315767169, -0.0010626578005030751, 0.07362809032201767, 0.041486699134111404, 0.011033409275114536, 0.006765897385776043, 0.01860959455370903, -0.03251952305436134, -0.022080322727560997, -0.0101893600076437, 0.018569080159068108, 0.0025270828045904636, -0.019757499918341637, 0.015652045607566833, -0.04875227436423302, -0.01828547939658165, -0.022593505680561066, -0.023646878078579903, 0.0005815498298034072, 0.012458164244890213, 0.010405437089502811, 0.06444483250379562, -0.000861352076753974, 0.023943983018398285, 0.0070494976826012135, 0.009271034970879555, 0.0195414237678051, -0.02750924788415432, -0.04632141441106796, -0.053100813180208206, -0.007420879323035479, -0.008183899335563183, -0.01619223691523075, 0.005550466477870941, -0.025753624737262726, -0.03786741569638252, -0.056936174631118774, 0.05623392388224602, 0.018825670704245567, -0.04805002361536026, -0.022552991285920143, -0.03889378160238266, -0.0049596321769058704, -0.023268744349479675, -0.0026097996160387993, 0.031006986275315285, -0.02344430610537529, -0.013038869947195053, 0.016502847895026207, 0.003445408307015896, 0.0075626797042787075, -0.0373542346060276, 0.03511244058609009, -0.01245141215622425, -0.021661674603819847, 0.014828253537416458, -0.02779284678399563, -0.02337678335607052, -0.028035933151841164, -0.03359990566968918, 0.04308026283979416, 0.011614114977419376, 0.007778756320476532, 0.013113146647810936, 0.005422171205282211, 0.0070494976826012135, -0.014693206176161766, -0.016786448657512665, -0.01756972447037697, 0.020176148042082787, -0.019230814650654793, 0.009689683094620705, 0.053938113152980804, -0.006067024543881416, 0.011046914383769035, 0.00642490154132247, 0.029980622231960297, 0.021567141637206078, 0.04043332487344742, 0.05504550412297249, -0.02976454608142376, 0.0023430802393704653, 0.01330221351236105, 0.024457165971398354, -0.002132067922502756, 0.02790088579058647, 0.007907051593065262, 0.036624975502491, 0.031223062425851822, -0.03594973683357239, 0.02544301562011242, 0.015557512640953064, -0.022161351516842842, 0.02825201116502285, 0.06055545434355736, -0.01284980308264494, 0.008973930031061172, 0.0011825127294287086, 0.06601139158010483, -0.00859579537063837, -0.007711232174187899, -0.02628031186759472, -0.018582584336400032, -0.002945731161162257, -0.05558569356799126, 0.031006986275315285, -0.012215077877044678, 0.056125886738300323, 0.0005625587073154747, 0.01689448580145836, -0.019554927945137024, 0.01960894837975502, 0.016043685376644135, -0.015611531212925911, -0.012876812368631363, 0.0063742585480213165, -0.006782778073102236, -0.02634783647954464, -0.004152721259742975, -0.03389700874686241, 0.034005049616098404, 0.008325699716806412, 0.015165873803198338, 0.034680288285017014, -0.0027752332389354706, -0.0032040101941674948, 0.04888732358813286, -0.026361340656876564, -0.01763724908232689, -0.009264282882213593, 0.03724619746208191, 0.028170982375741005, 0.006752392277121544, -0.011303504928946495, -0.007454641163349152, -0.0018839174881577492, 0.014666196890175343, -0.024457165971398354, -0.040838468819856644, 0.021823732182383537, 0.004730050917714834, 0.018325993791222572, 0.015611531212925911, 0.011600609868764877, 0.003858992364257574, -0.04235100746154785, -0.0006292385514825583, -0.051453232765197754, -0.0078867943957448, -0.004149345215409994, 0.03192531317472458, -0.035166461020708084, -0.018434030935168266, -0.007461393717676401, 0.013855908997356892, -0.033167753368616104, -0.02135106548666954, -0.03743526339530945, -0.01893370784819126, 0.01022312231361866, 0.019811520352959633, -0.03143914043903351, -0.0024004755541682243, 0.03335681930184364, 0.001455140532925725, 0.04637543112039566, 0.0007106892880983651, -0.014166519045829773, 0.006887440569698811, -0.014787739142775536, -0.024875814095139503, -0.007954318076372147, 0.030034642666578293, -0.030304737389087677, -0.009068462997674942, 0.03106100484728813, 0.03343784809112549, -0.023754917085170746, -0.031223062425851822, 0.012066525407135487, 0.00030681182397529483, -0.03359990566968918, 0.012491926550865173, -0.02399800345301628, -0.018163936212658882, -0.01183694414794445, 0.0006646886467933655, 0.02637484483420849, 0.017974868416786194, 0.0019311842042952776, -0.015435969457030296, -0.03543655574321747, -0.01651635207235813, -0.004986641928553581, -0.015246902592480183, 0.01854206994175911, -0.02499735727906227, -0.031223062425851822, -0.018650108948349953, 0.046294402331113815, 0.009601902216672897, -0.0002582790039014071, 0.034329164773225784, -0.039163876324892044, 0.015787092968821526, 0.009541130624711514, -0.013538546860218048, -0.007555927149951458, -0.013842404820024967, -0.00906171090900898, -0.005442428402602673, 0.02070283517241478, 0.015908636152744293, -0.009183254092931747, -0.012424401938915253, -0.019554927945137024, 0.0010103267850354314, 0.0018501555314287543, 0.03135811164975166, 0.03519346937537193, -0.047131698578596115, 0.011701895855367184, -0.002311006421223283, -0.003750954056158662, 0.018690623342990875, -0.017947860062122345, -0.027171626687049866, -0.010425694286823273, -0.028522105887532234, 0.010121836327016354, 0.014666196890175343, -0.020567787811160088, -0.010878104716539383, -0.008825376629829407, -0.014058480970561504, -0.02228289470076561, 0.04642945155501366, 0.05785449966788292, 0.01216105930507183, 0.029143325984477997, 0.0038556160870939493, -0.012613468803465366, 0.005644999910145998, 0.023808935657143593, -0.03311373293399811, -0.059096939861774445, -0.0078057656064629555, 0.0145581578835845, 0.002533835358917713, -0.01828547939658165, -0.05385708436369896, -0.015692560002207756, 0.02221537195146084, 0.022228876128792763, -0.015598027035593987, 0.003940021153539419, -0.023714402690529823, -0.014112500473856926, 0.008683577179908752, -0.02079736813902855, -0.03130409121513367, 0.015652045607566833, -0.00569901941344142, 0.0071305264718830585, 0.02005460485816002, -0.04799600690603256, -0.004760436713695526, -0.00010455658048158512, -0.05258763208985329, -0.04056837409734726, -0.00989900715649128, -0.013855908997356892, 0.00240722787566483, 0.044781867414712906, 0.016016675159335136, -0.02437613718211651, 0.0038117256481200457, 0.017907345667481422, 0.021634666249155998, -0.010169102810323238, 0.012883564457297325, -0.028711173683404922, -0.038650695234537125, -0.029170336201786995, 0.004996770527213812, 0.018947213888168335, -0.0033171128015965223, -0.019392870366573334, 0.042323995381593704, 0.03089894726872444, -0.008751100860536098, -0.0023667134810239077, -0.020392226055264473, -0.01503082551062107, -0.00030132551910355687, -0.003804973093792796, 0.021337559446692467, 0.02170218899846077, 0.00010228819883195683, -0.058286651968955994, 0.01009482704102993, -0.0014568286715075374, 0.026226293295621872, -0.019271329045295715, 0.0482390932738781, -0.0026334330905228853, -0.011425048112869263, -0.002555780578404665, 0.009021196514368057, -0.03195232152938843, -0.012444659136235714, -0.03305971249938011, -0.026077739894390106, -0.009108977392315865, -0.009439844638109207, -0.03173624351620674, -0.01735364831984043, -0.00040029027150012553, -0.030196698382496834, -0.013896423391997814, 0.004551112651824951, -0.00989900715649128, 0.016327284276485443, 0.0073398505337536335, -0.026712464168667793, 0.02960248850286007, -0.039650049060583115, -0.004145969171077013, -0.021134989336133003, 0.007076507434248924, -0.012532440945506096, 0.002111810725182295, -0.010682284832000732, 0.01912277564406395, 0.02692854218184948, 0.004892108496278524, 0.015516998246312141, -0.021067464724183083, 0.020891902968287468, 0.016813457012176514, -0.024970347061753273, 0.019338851794600487, -0.011897715739905834, -0.03775937855243683, 0.0490763895213604, 0.006029886659234762, -0.019014736637473106, 0.02576712891459465, -0.03659796714782715, 0.029170336201786995, -0.039298925548791885, 0.016246255487203598, 0.018271973356604576, 0.011465562507510185, -0.025983206927776337, -0.014058480970561504, -0.059258997440338135, 0.010716047137975693, -0.011458810418844223, 0.02515941485762596, 0.030709881335496902, 0.025307966396212578, 0.038164522498846054, -0.031817272305488586, 0.0005604485631920397, 0.0415407195687294, -0.017988374456763268, -0.006323615554720163, 0.003303607925772667, -0.0011479067616164684, 0.001451764372177422, 0.0029288502410054207, -0.029548469930887222, 0.004713169764727354, -0.03338382765650749, -0.018717631697654724, -0.0017657506978139281, 0.03508543223142624, -0.014976806938648224, -0.009081968106329441, -0.011344019323587418, -0.0183124877512455, 0.043944571167230606, 0.009196758270263672, -0.013538546860218048, -0.000508117547724396, 0.0011470626341179013, -0.0037880921736359596, 0.006276348605751991, 0.013599318452179432, 0.018420526757836342, 0.02790088579058647, -0.0028326285537332296, -0.020905407145619392, -0.014990311115980148, -0.026104750111699104, 0.015516998246312141, -0.013376489281654358, -0.0057294052094221115, 0.021405084058642387, 0.027563266456127167, 0.021648170426487923, 0.00980447418987751, -0.01877165026962757, -0.006100786849856377, -0.002586166374385357, 0.029359402135014534, -0.012518935836851597, -0.025132404640316963, -0.03503141179680824, -0.02179672382771969, -0.007792260963469744, 0.01054723747074604, 0.04748282581567764, 0.008224413730204105, -0.04675356671214104, 0.028792202472686768, 0.003124669659882784, 0.05850272998213768, 0.008656566962599754, -0.03443720191717148, -0.005033908411860466, 0.022809581831097603, 0.03624684363603592, 0.04688861221075058, -0.006489049177616835, 0.008129880763590336, -0.010317656211555004, 0.05285772681236267, -0.008501262404024601, 0.00044692397932522, -0.017812810838222504, -0.046294402331113815, 0.021459102630615234, -0.04683459550142288, 0.007265574298799038, -0.009392578154802322, -0.007576184347271919, 0.016273265704512596, -0.026685455814003944, 0.013774881139397621, 0.053127825260162354, 0.004588250536471605, -0.032843638211488724, 0.024821795523166656, 0.02341729775071144, -0.001474553719162941, -0.0062628439627587795, -0.03378897160291672, -0.012728259898722172, -0.015692560002207756, 0.0020257176365703344, 0.004939374979585409, 0.037138160318136215, -0.012890317477285862, -0.00024709536228328943, -0.021985789760947227, 0.007684222888201475, -0.009081968106329441, 0.029521459713578224, -0.007231812458485365, -0.007684222888201475, 0.00715078366920352, 0.002307630144059658, 0.023727906867861748, 0.007751746568828821, -0.010891608893871307, 0.006752392277121544, -0.0008128192275762558, 0.04040631651878357, 0.0025524043012410402, 0.021945275366306305, 0.018987728282809258, 0.022404437884688377, -0.017245611175894737, 0.012606716714799404, 0.03289765492081642, 0.003463977249339223, -0.003369443817064166, 0.009507368318736553, 0.020149139687418938, -0.05915095657110214, 0.003913011401891708, -0.010749808512628078, -0.037840407341718674, 0.015908636152744293, 0.016745934262871742, -0.013491280376911163, -0.015354940667748451, -0.009372320957481861, 0.017556220293045044, -0.011749163269996643, 0.006857054773718119, 0.0381915308535099, 0.028062943369150162, 0.03802947327494621, -0.02895425818860531, 0.0013935250462964177, -0.019811520352959633, -0.013133403845131397, -0.03535552695393562, 0.01243115495890379, -0.013194174505770206, 0.021648170426487923, -0.008440490812063217, -0.013666842132806778, -0.025659091770648956, -0.03289765492081642, -0.0045713698491454124, 0.01854206994175911, 0.013842404820024967, 0.026969056576490402, -0.004692912567406893, -0.019487405195832253, 0.01022312231361866, -0.07357406616210938, -0.009811226278543472, -0.023889964446425438, -0.0070630027912557125, -0.026523398235440254, 0.012586459517478943, -0.024227583780884743, 0.02457870915532112, 0.010331160388886929, -0.019568433985114098, 0.022985143586993217, 0.014436615630984306, 0.05920497700572014, 0.02260700985789299, 0.04996770620346069, -0.0049596321769058704, -0.000382987258490175, 0.007238564547151327, 0.01779930666089058, 0.012066525407135487, 0.017070047557353973, 0.03170923516154289, 0.03940696269273758, -0.006013005506247282, -0.030385766178369522, -0.00886589102447033, -0.0008334984304383397, 0.019919557496905327, 0.00806235708296299, -0.0061953202821314335, -0.006934707053005695, -0.00247475178912282, -0.018407022580504417, -0.005212847143411636, 0.006431654095649719, 0.01738065853714943, -0.02334977313876152, -0.02499735727906227, 0.018163936212658882, 0.01644882746040821, -0.015516998246312141, 0.05283071845769882, -0.028819210827350616, 0.0137208616361022, -0.03630086034536362, 0.008271681144833565, -0.0070832595229148865, -0.0008288561948575079, 0.02151312306523323, 0.0008621961460448802, -0.010418941266834736, 0.021985789760947227, -0.0036361634265631437, 0.007117021828889847, -0.027819857001304626, -0.01067553274333477, 0.022904114797711372, -0.006782778073102236, 0.004476836416870356, -0.003967030439525843, -0.00613454869017005, 0.025983206927776337, 0.006657858844846487, -0.026037225499749184, 0.021823732182383537, 0.009595150128006935, -0.0022789323702454567, 0.01375462394207716, 0.011809934861958027, -0.0007482494693249464, 0.009946274571120739, 0.06120368465781212, -0.008670072071254253, 0.043458398431539536, 0.016826963052153587, -0.011742410250008106, 0.019852034747600555, 0.015111854299902916, -0.010202865116298199, -0.035814691334962845, -0.017853325232863426, -0.044457752257585526, 0.002228289609774947, -0.004598379135131836, 0.018987728282809258, -0.022242380306124687, -0.02351183071732521, -0.006968468893319368, -0.01777229644358158, 0.010682284832000732, 0.04318830370903015, 0.004125711973756552, -0.022620514035224915, -0.022471962496638298, 0.015922142192721367, -0.00731284124776721, -0.0008267460507340729, 0.01210703980177641, -0.009129234589636326, 0.005283747334033251, -0.0274147130548954, 0.021621160209178925, 0.002403851831331849, -0.003342434298247099, -0.010830837301909924, -0.004800951108336449, -0.042486052960157394, -0.004642270039767027, 0.0017860077787190676, 0.030304737389087677, 0.025915682315826416, -0.0017387410625815392, -0.014544653706252575, -0.009473606944084167, 0.012059773318469524, -0.025821149349212646, -0.030169690027832985, -0.03692208230495453, 0.004159473814070225, -0.00153616932220757, -0.03508543223142624, 0.0017522458219900727, 0.014517643488943577, -0.020837882533669472, 0.026685455814003944, -0.011283247731626034, -0.00036969350185245275, 0.008892901241779327, 0.012174563482403755, -0.008008337579667568, -0.0017319886246696115, -0.0145581578835845, 0.001516756135970354, -0.02474076673388481, 0.018623098731040955, -0.005466061644256115, 0.001863660290837288, 0.052290529012680054, -0.006320239510387182, 0.03751629218459129, 0.01751570589840412, -0.010128588415682316, 0.015111854299902916, -0.013855908997356892, -0.00702248839661479, -0.0060501438565552235, -0.022661028429865837, -0.042459044605493546, 0.03224942833185196, 0.007859785109758377, -0.025780634954571724, 0.001995332073420286, -0.0017176398541778326, 0.03324878215789795, -0.0014686454087495804, 0.003514620242640376, 0.005503199994564056, -0.001211210386827588, 0.0014289750251919031, -0.018825670704245567, 0.00585432443767786, -0.020459748804569244, -0.024808289483189583, 0.027590276673436165, -0.012019258923828602, -0.005206094589084387, -0.019811520352959633, 0.010851094499230385, -0.02653690241277218, 0.005337766371667385, -0.0373542346060276, -0.013437260873615742, -0.0009622159413993359, -0.02270154282450676, 0.025267452001571655, 0.0001894890156108886, 0.025037871673703194, -0.0017066672444343567, 0.007211555261164904, -0.0365169383585453, 0.0027786095160990953, -0.0018383389106020331, 0.06730785220861435, -0.009892255067825317, 0.032681580632925034, 0.0274417232722044, 0.0064856731332838535, -0.021918267011642456, 0.008892901241779327, -0.008298690430819988, 0.008811872452497482, -0.014801244251430035, 0.005445804446935654, -0.005165580194443464, -0.030790910124778748, 0.004551112651824951, 0.02125653252005577, 0.011938230134546757, 0.025915682315826416, 0.008312195539474487, -0.022458458319306374, 0.016394808888435364, -0.015435969457030296, -0.008278433233499527, -0.002601359272375703, 0.003349186619743705, 0.002154013141989708, 0.015192883089184761, -0.0018653484294191003, 0.03303270414471626, -0.006539692170917988, -0.013018612749874592, 0.010608009062707424, 0.024889318272471428, -0.004601755645126104, 0.010452703572809696, 0.006782778073102236, -0.0017944483552128077, -0.0026334330905228853, 0.05501849576830864, -0.008690329268574715, 0.023714402690529823, 0.041810814291238785, 0.02154013141989708, 0.0035247488413006067, -0.010148845613002777, -0.00408857362344861, -0.053613997995853424, -0.012768774293363094, 0.02135106548666954, 0.007387117482721806, 0.0015226645627990365, 0.022363923490047455, 0.0237008985131979, 0.0016382992034778, 0.018879689276218414, 0.0054390523582696915, 0.003906258847564459, -0.0005178240826353431, 0.0207703597843647, 0.012606716714799404, -0.03219540789723396, 0.0022333539091050625, -0.008055604062974453, 0.0009419587440788746, -0.008001585491001606, -0.0224449522793293, 0.03211437910795212, -0.0048617227002978325, -0.003987287636846304, 0.008521519601345062, 0.005604485981166363, 0.02511890046298504, 0.009554635733366013, -0.032330457121133804, -0.029683517292141914, 0.0037036873400211334, 0.0224449522793293, 0.0004570525779854506, -0.02583465352654457, -0.00017714480054564774, 0.004561241250485182, 0.0341130867600441, -0.003808349370956421, -0.011195466853678226, 0.033329810947179794, 0.013552051968872547, 0.00802859477698803, -0.020203158259391785, -0.021405084058642387, -0.005114937201142311, -0.022201865911483765, -0.018744641914963722, 0.0015809038886800408, 0.0031634957995265722, 0.032654568552970886, -0.002788738114759326, -0.019487405195832253, 0.0019075508462265134, -0.03389700874686241, -0.0013411939144134521, 0.0034470963291823864, -0.02044624462723732, 0.014382596127688885, -0.01488227304071188, 0.008075861260294914, -0.0019345604814589024, 0.008548528887331486, -0.01386941410601139, -0.022431448101997375, -0.010196113027632236, -0.02808995358645916, 0.007934060879051685, 0.008953672833740711, -0.049778636544942856, 0.017691267654299736, -0.01054723747074604, 0.01022312231361866, 0.006981974001973867, -0.0036226585507392883, 0.018663613125681877, -0.010743056423962116, -0.023079678416252136, -0.005033908411860466, 0.027333684265613556, 0.016043685376644135, 0.005513328593224287, 0.026631435379385948, 0.022647524252533913, -0.02360636368393898, -0.013639832846820354, -0.0012365318834781647, -0.0020864892285317183, 0.027225647121667862, -0.026131758466362953, -0.00848100520670414, 0.01283629797399044, 0.0008676824509166181, -0.021391579881310463, -0.008602548390626907, 0.0008305442752316594, -0.015354940667748451, 0.00525673758238554, 0.02973753586411476, -0.016745934262871742, 0.004726674873381853, 0.01828547939658165, 0.007508660666644573, 0.01530092116445303, 0.03143914043903351, -0.02228289470076561, -0.005918472073972225, -0.012019258923828602, 5.182988752494566e-05, -0.007069754879921675, -0.0030959718860685825, -0.008204156532883644, -0.008183899335563183, -0.016880981624126434, -0.008440490812063217, 0.0087375957518816, -0.004520726855844259, -0.011533086188137531, -0.007873289287090302, 0.009007691405713558, -0.023714402690529823, -0.007191298063844442, 0.013714109547436237, 0.01343050878494978, 0.008379719220101833, -0.01193147711455822, 0.00512844230979681, 0.040163230150938034, 0.01067553274333477, -5.934719956712797e-05, -0.014976806938648224, -0.019527919590473175, -0.0017277684528380632, -0.004426193423569202, 0.007582936901599169, 0.02876519225537777, -0.003205698449164629, -0.0036125299520790577, -0.002349832560867071, -0.018407022580504417, 0.005958986468613148, 0.018001878634095192, -0.008670072071254253, 0.007758499123156071, 0.008055604062974453, -0.02253948710858822, 0.005513328593224287, 0.007934060879051685, -0.010250131599605083, 0.013444013893604279, 0.016300275921821594, -0.005834067240357399, -0.030871938914060593, 0.0007157535874284804, 0.03305971249938011, -0.008359462022781372, -0.0015184442745521665, 0.03743526339530945, -0.0002814903564285487, -0.0008343424997292459, -0.03724619746208191, 0.0002454072528053075, -0.003251276910305023, -0.005695642903447151, -0.011789677664637566, -0.00451397430151701, -0.017529210075736046, 0.02186424657702446, -0.009601902216672897, 0.010439198464155197, -0.007198050618171692, -0.013963948003947735, -0.0099665317684412, 0.023970993235707283, 0.02495684288442135, -0.0099665317684412, -0.011506076902151108, -0.015165873803198338, 0.010432446375489235, 0.010702542029321194, -0.0002897198428399861, -0.002307630144059658, -0.0265774168074131, 0.000256801926298067, 0.005158828105777502, 0.011985496617853642, -0.03670600429177284, -0.012653983198106289, 0.01677294261753559, 0.004706417676061392, 0.007123773917555809, 0.020108625292778015, -0.008616052567958832, -0.006033262703567743, 0.011877458542585373, 0.006539692170917988, -0.005337766371667385, 0.002258675405755639, -0.02692854218184948, -0.025037871673703194, -0.0014399477513507009, -0.024173565208911896, -0.016597380861639977, 0.00627972511574626, 0.019163290038704872, 0.0015522062312811613, -0.014787739142775536, -0.004034554585814476, 0.009244025684893131, -0.009635664522647858, 0.031682226806879044, -0.0001348368386970833, -0.013403499498963356, 0.00877135805785656, 0.02457870915532112, -0.007360107731074095, 0.008751100860536098, -0.0232822485268116, -0.021270036697387695, -0.014666196890175343, 0.009507368318736553, -0.02279607765376568, 0.024335622787475586, -0.028360048308968544, 0.0030588337685912848, -0.019230814650654793, 0.02225588634610176, -0.0048954845406115055, 0.04875227436423302, 0.031331099569797516, 0.05601784959435463, 0.004226997494697571, 0.030115671455860138, -0.00844724290072918, 0.0014905906282365322, -2.000660060730297e-05, -0.02444366179406643, -0.011154952459037304, 0.008399976417422295, -0.01183694414794445, -0.004807703662663698, -0.011938230134546757, -0.011330514214932919, -0.02618577890098095, -0.002017277292907238, 0.028306029736995697, 0.018974222242832184, -0.0114182960242033, -0.0228365920484066, 0.012789031490683556, 0.007988080382347107, 0.008150137960910797, -0.01430156733840704, 0.03141212835907936, 0.007029240485280752, 0.040460336953401566, 0.03476131707429886, 0.009129234589636326, -0.0055707236751914024, -0.014193529263138771, -0.016597380861639977, 0.0108038280159235, 0.024754270911216736, -0.0006705969572067261, 0.005658505018800497, 0.028846221044659615, -0.008055604062974453, 0.001978450920432806, 0.01325494609773159, 0.04256708174943924, 0.009777463972568512, 0.0018940460868179798, -0.02476777508854866, 0.0013766440097242594, 0.003514620242640376, -0.0003049127117265016, -0.006225706078112125, 0.015192883089184761, -0.0034183987881988287, 0.017853325232863426, 0.013423756696283817, -0.008825376629829407, 0.0018788531888276339, 0.0027718571946024895, -0.0036530443467199802, 0.023727906867861748, 0.0020189653150737286, 0.01343050878494978, 0.015233397483825684, 0.022809581831097603, 0.017326639965176582, 0.00731284124776721, 0.01125623844563961, -0.024727260693907738, 0.011830192059278488, -0.029629498720169067, -0.008562033995985985, -0.02179672382771969, 0.03519346937537193, 0.0021337559446692467, -0.015071339905261993, 0.005047413520514965, -0.002395411254838109, -0.008940167725086212, 0.006776025984436274, 0.006529563572257757, -0.02544301562011242, -0.014490634202957153, 0.004790822509676218, 0.007103516720235348, -0.010729551315307617, 0.011620867066085339, 0.00864306278526783, -0.010493217967450619, 0.00011289156100247055, 0.026010215282440186, -0.0006743951817043126, 0.012046268209815025, -0.008548528887331486, 0.00020025063713546842, 0.03141212835907936, -0.025524044409394264, -0.01635429449379444, -0.01777229644358158, 0.006198696326464415, 0.006559949368238449, 0.02212083712220192, 0.009149491786956787, -0.0005152919329702854, -0.0048617227002978325, -0.01686747558414936, -0.006499177776277065, 0.023430801928043365, -0.0007039369083940983, 0.0027904261369258165, 0.02144559845328331, -0.007542422506958246, -0.044970933347940445, 0.014342081733047962, 0.011046914383769035, -0.0008668383816257119, 0.013525041751563549, 0.020108625292778015, -0.010567494668066502, 0.041486699134111404, 0.03278961777687073, -0.002250234829261899, 0.0010170791065320373, -0.002059479709714651, 0.014895778149366379, -0.007636955939233303, 0.040163230150938034, 0.001769126858562231, 0.009487111121416092, -0.00944659672677517, -0.011742410250008106, -0.019946567714214325, 0.0010786947095766664, -0.023322762921452522, -0.005179084837436676, 0.02957547828555107, 0.009460101835429668, 0.05715224891901016, -0.04586225003004074, 0.004412688314914703, 0.0026097996160387993, -0.03289765492081642, 0.02592918649315834, -0.0028140596114099026, -0.02860313467681408, -0.03089894726872444, 0.0024646231904625893, -0.009838235564529896, -0.01773178204894066, -0.03557160496711731, -0.014612177386879921, -0.02525394782423973, -0.015125359408557415, -0.0008123972220346332, -0.012120544910430908, 0.010601256042718887, 0.006948211695998907, -0.03627385199069977, -0.0012686057016253471, -0.016502847895026207, -0.018974222242832184, -0.015881627798080444, -0.01889319345355034, 0.0031381743028759956, -0.001719327992759645, -0.02592918649315834, 0.007177793420851231, 0.026010215282440186, 0.0045713698491454124, -0.02509189024567604, -0.00569226685911417, 0.020176148042082787, 0.01209353469312191, -0.0002876097278203815, 0.015516998246312141, -0.02973753586411476, -0.008798367343842983, 0.013808642514050007, -0.0026317450683563948, 0.024268098175525665, 0.02795490436255932, 0.018623098731040955, 0.015003816224634647, -0.02941342256963253, -0.01241764985024929, -0.00012354768114164472, -0.012478421442210674, -0.005931976716965437, 0.04553813487291336, 0.004193235654383898, -0.0019919557962566614, -0.0079002995043993, -0.012667488306760788, -0.00011268055095570162, 0.01967647112905979, -0.0049292463809251785, -0.014112500473856926, -0.004547736141830683, -0.013018612749874592, -0.0022012798581272364, -0.010783570818603039, -0.033815979957580566, -0.014517643488943577, 0.005479566752910614, 0.00859579537063837, -0.0024004755541682243, 0.005310756620019674, 0.009237272664904594, 0.0195414237678051, 0.0011833567405119538, 0.006094034295529127, -0.009993541054427624, -0.00931830145418644, 0.015516998246312141, -0.033005695790052414, 0.030871938914060593, -0.00511156115680933, -0.01967647112905979, -0.03476131707429886, -0.008001585491001606, -0.00785303208976984, -0.015814103186130524, -0.0024511185474693775, -0.025226937606930733, 0.014396101236343384, -0.013828899711370468, -0.028981268405914307, -0.003551758360117674, 0.013822147622704506, 0.03397803753614426, -0.021229522302746773, -0.029980622231960297, -0.01828547939658165, 0.010891608893871307, 0.006644354201853275, -0.011040161363780499, -0.021175503730773926, -0.00015066275955177844, 0.007258821744471788, -0.0282790195196867, -0.027563266456127167, 0.012768774293363094, -0.009142739698290825, 0.01698901876807213, 0.005459309555590153, -0.005317509174346924, -0.023903468623757362, -0.008075861260294914, -0.01239739265292883, 0.010810580104589462, 0.04056837409734726, -0.005331013817340136, -0.010506723076105118, 0.005145322997123003, 9.590507397660986e-05, 0.01138453371822834, -0.003801597049459815, -0.018785156309604645, 0.010925371199846268, 0.0016762814484536648, 0.037165168672800064, -0.01770477369427681, -0.004314778838306665, -0.005317509174346924, -0.00960865430533886, -0.005482942797243595, 0.012795783579349518, 0.00392651604488492, -0.020648816600441933, 0.03025071881711483, 0.033680934458971024, -0.027711817994713783, -0.014058480970561504, -0.016489341855049133, -0.006063648499548435, -0.002795490436255932, -0.023754917085170746, 0.006310110911726952, -0.018758146092295647, -0.011904467828571796, -4.861194975092076e-05, -0.001164787681773305, 0.018204450607299805, -0.004102078266441822, -0.01462568249553442, -0.045646172016859055, -0.007677470333874226, 0.004365421831607819, 0.016084199771285057, 0.004210116807371378, -0.010391931980848312, 0.01180318184196949, 0.012505430728197098, -0.028360048308968544, 0.0038758732844144106, -0.022579999640583992, 0.004365421831607819, -0.04024425894021988, 0.0017927602166309953, -0.01719159074127674, -0.01038517989218235, -0.02237742953002453, -0.02721214108169079, 0.026617931202054024, -0.025105394423007965, 0.0195414237678051, -0.007819270715117455, -0.005381656810641289, 0.00553020928055048, -0.01937936618924141, -0.003212450770661235, 0.012789031490683556, -0.0007292584050446749, 0.0014737097080796957, -0.02676648460328579, 0.01197874452918768, 0.03570665046572685, -0.016840467229485512, 0.026145264506340027, -0.0032023221720010042, 0.03043978475034237, 0.030979976058006287, 0.003384636715054512, -0.01326845120638609, -0.017434677109122276, -0.0045409840531647205, -0.01921730861067772, -0.015571016818284988, -0.0034251511096954346, -0.01156009640544653, -0.0145581578835845, 0.015598027035593987, 0.00039037270471453667, 0.0009478671126998961, -0.024011507630348206, -0.019230814650654793, -0.023943983018398285, 0.017974868416786194, 0.006735511589795351, 0.000565512862522155, 0.004635517485439777, 0.02093241736292839, 0.02093241736292839, -0.0018163935746997595, -0.020648816600441933, 0.011924725025892258, 0.025591567158699036, -0.0008474252535961568, -0.011715400964021683, -0.0017243922920897603, 0.010864599607884884, 0.007839527912437916, 0.00541879516094923, 0.013936937786638737, 0.0058205621317029, -0.037138160318136215, 0.012856555171310902, 0.01077006570994854, -0.014990311115980148, 0.012944336049258709, -0.012262344360351562, 0.015530502423644066, 0.027198636904358864, 0.013221184723079205, 0.017691267654299736, -0.03314074128866196, -0.006640978157520294, -0.030655862763524055, -0.012667488306760788, 0.028008924797177315, 0.009716692380607128, 0.02590217813849449, -0.0009875374380499125, -0.0030605217907577753, -0.0036800538655370474, 0.003777963574975729, -0.008791615255177021, -0.009669425897300243, 0.002368401736021042, 0.021013446152210236, 0.033842992037534714, 0.006002876907587051, 0.017596734687685966, -0.008440490812063217, -0.018555574119091034, 0.035841699689626694, -0.006391139701008797, 0.0018332746112719178, -0.00975720677524805, -0.012464916333556175, -0.009325054474174976, -0.0008199936710298061, -0.02183723822236061, 0.0023481445387005806, 0.013666842132806778, -0.012505430728197098, -0.006688244640827179, -0.012930831871926785, -0.006995478644967079, -0.016165228560566902, -0.001455984660424292, 0.024659737944602966, 0.009635664522647858, 0.0065498207695782185, 0.012539193034172058, -0.0030470171477645636, -0.009527625516057014, -0.004655774682760239, -0.026307322084903717, 0.009784216992557049, -0.014153014868497849, -0.008805119432508945, -0.00799483247101307, 0.015881627798080444, -0.0020881774835288525, 0.00013177715300116688, -0.0005452557234093547, 0.003801597049459815, 0.014112500473856926, -0.030547823756933212, 0.015692560002207756, 0.0009225456160493195, 0.038623686879873276, -0.0016298587433993816, -0.005212847143411636, 0.0062932297587394714, 0.00036863842979073524, 0.013079384341835976, 0.013329222798347473, 0.006890816614031792, -0.00967617891728878, -0.011276495642960072, 0.013660090044140816, 0.046132344752550125, 0.006343872752040625, -0.002219849033281207, 0.018812164664268494, -0.018987728282809258, -0.017326639965176582, -0.02692854218184948, -0.004851594101637602, 0.017502201721072197, -0.02051376923918724, -0.0005566503386944532, -0.0009883814491331577, -0.01619223691523075, 0.004152721259742975, 0.005911719519644976, 0.030007632449269295, -0.007501908112317324, 0.0014154702657833695, 0.026563912630081177, 0.02337678335607052, -0.012026011012494564, -0.0011715401196852326, 7.738875137874857e-05, -0.012309611774981022, 0.022917620837688446, 0.006681492552161217, -0.026590920984745026, -0.011715400964021683, -0.004699665121734142, 0.00018252560403198004, -0.012208325788378716, 0.010020550340414047, 0.03179026395082474, -0.0016247944440692663, 0.01083759032189846, -0.004064940381795168, -0.004628764931112528, 0.017920849844813347, 0.0016940064961090684, 0.007522165309637785, 0.009372320957481861, 0.010418941266834736, 0.027657799422740936, 0.00944659672677517, -0.009946274571120739, -0.017758792266249657, -0.002476440044119954, -9.06297645997256e-05, -0.0022333539091050625, 0.019743995741009712, -0.018407022580504417, -0.01893370784819126, 0.0015260407235473394, -0.023754917085170746, 0.0012694498291239142, -0.0017370529239997268, 0.007204802706837654, -0.010445951484143734, -0.007542422506958246, -0.0004625388828571886, -0.007650460582226515, 0.0075289178639650345, -0.011587105691432953, -0.020500263199210167, -0.017488695681095123, -0.0093520637601614, 0.009406082332134247, 0.0033525628969073296, -0.00047055736649781466, -0.011823439039289951, -0.01375462394207716, -0.025051375851035118, 0.02035171166062355, -0.00702248839661479, 0.011971991509199142, 0.02044624462723732, -0.024686746299266815, -0.012302858754992485, 0.009345311671495438, 0.01158035360276699, -0.008210909552872181, 0.006934707053005695, -0.009311549365520477, -0.008460748009383678, 0.003487610723823309, -0.019757499918341637, -0.005287123378366232, -0.007427631877362728, -0.00451397430151701, 0.010810580104589462, -0.0029372908174991608, -0.006738887634128332, 0.007765251211822033, 0.00109641975723207, 0.009054958820343018, 0.026226293295621872, -0.006634225603193045, -0.01809641160070896, -0.006968468893319368, -0.003269846085458994, -0.0010609696619212627, 0.011006399989128113, 0.017556220293045044, 0.022053314372897148, -0.007582936901599169, -0.0065835826098918915, 0.030682871118187904, 0.0017708148807287216, 0.013673595152795315, -0.01647583767771721, -0.005246608983725309, 0.006833421066403389, 0.0015631788410246372, 0.016691913828253746, 0.006026510149240494, -0.016759438440203667, 0.004773941356688738, 0.011654629372060299, 0.0046523986384272575, 0.00857553817331791, -0.007319593336433172, 0.011458810418844223, 0.008183899335563183, 0.002359961159527302, 0.022296400740742683, -0.0014483882114291191, -0.015152368694543839, 0.00828518532216549, -0.007069754879921675, -0.03530150651931763, -0.006310110911726952, -0.0249028243124485, -5.607651110040024e-05, -7.860206824261695e-05, 0.010148845613002777, -0.023646878078579903, 0.012296106666326523, -0.002189463237300515, 0.002665506908670068, 0.007717984728515148, 0.005023779813200235, 0.01125623844563961, -0.01138453371822834, -0.024592213332653046, -0.00262836879119277, 0.01763724908232689, 0.008751100860536098, -0.010175855830311775, 0.0014002773677930236, 0.003406581934541464, 0.008204156532883644, -0.022904114797711372, -0.008980682119727135, -0.01893370784819126, 0.00025891204131767154, -0.012188068591058254, -0.013261699117720127, 0.01686747558414936, 0.005601109471172094, -0.00554709043353796, -0.0052972519770264626, -0.006887440569698811, -0.008528271690011024, 0.017623744904994965, 0.006765897385776043, 0.003269846085458994, 0.03027772717177868, 0.029818564653396606, 0.008764605037868023, -0.02195877954363823, -0.015652045607566833, 0.004794198554009199, -0.013727613724768162, -0.026712464168667793, 0.008021842688322067, 0.008096118457615376, -0.03125007078051567, -0.004554488696157932, 0.014355586841702461, 0.006499177776277065, -0.000924233696423471, 0.005233104340732098, 0.0024494302924722433, 0.008589043281972408, -0.007299336139112711, -0.026334330439567566, -0.010628266260027885, -0.008818624541163445, -0.019527919590473175, 0.007258821744471788, -0.0007874977891333401, 0.03127708286046982, -0.008805119432508945, 0.00017461265088059008, 0.0045713698491454124, -0.023309258744120598, -0.003224267391487956, 0.008163642138242722, 0.002165829995647073, 0.02137807384133339, 0.014017966575920582, 0.01960894837975502, -5.871416215086356e-05, -0.0015302608953788877, 0.015665549784898758, 0.004649022128432989, -0.0021438845433294773, 0.004875227343291044, -0.008393224328756332, 0.02908930741250515, -0.04391755908727646, -0.012944336049258709, 0.014112500473856926, -0.01570606417953968, 0.00017872739408630878, 0.005655128508806229, -0.027171626687049866, -0.01354529894888401, 0.00026376533787697554, 0.010621513240039349, 0.004169602412730455, -0.00960865430533886, 0.012026011012494564, 0.008008337579667568, 0.021310551092028618, 0.018082907423377037, -0.00756943179294467, 0.02776583842933178, 0.01083759032189846, -0.0015572705306112766, -0.010628266260027885, -0.0076302033849060535, -0.01838001236319542, 0.012613468803465366, -0.01728612557053566, -0.0049596321769058704, 0.024403147399425507, -0.014774234965443611, -0.010797075927257538, -0.020068110898137093, -0.018244965001940727, -0.007447889074683189, 0.013842404820024967, 0.01187070645391941, 0.002567597199231386, 0.0005262646009214222, -0.019689977169036865, -0.019838528707623482, 0.020270682871341705, -2.67853702098364e-05, -0.0002903528802562505, 0.007697727531194687, -0.03678703308105469, 0.0004262447764631361, 0.013842404820024967, 0.003990664146840572, -0.014760729856789112, 0.020068110898137093, -0.008724091574549675, -0.004598379135131836, -0.010898361913859844, 0.014180024154484272, 0.010682284832000732, -0.0031803769525140524, -0.01809641160070896, 0.006647730246186256, -0.002417356474325061, -0.03711114823818207, 0.012890317477285862, -0.002024029614403844, -0.005857700482010841, 0.004753684159368277, 0.01893370784819126, 0.005807057488709688, -0.027198636904358864, 0.0014618929708376527, -0.011040161363780499, 0.00032432583975605667, 0.03143914043903351, -0.008345956914126873, -0.006749016232788563, 0.011566848494112492, -0.017718277871608734, -0.010601256042718887, -0.024754270911216736, 0.02251247689127922, -0.005459309555590153, 0.014841758646070957, -0.005020403768867254, 0.012053020298480988, 0.023268744349479675, -0.01283629797399044, -0.02844107709825039, -0.0007588001317344606, 0.022552991285920143, 0.015665549784898758, -0.022161351516842842, 0.007461393717676401, 0.008845633827149868, 0.005334389861673117, -0.01296459324657917, -0.014733720570802689, 0.007245317101478577, -0.004905613139271736, 0.016664905473589897, 0.009345311671495438, 0.02312019281089306, 0.02357935532927513, 0.011458810418844223, -0.0078867943957448, -0.03522047773003578, 0.007029240485280752, 0.004031178541481495, -0.005455933045595884, -0.0061277961358428, 0.005766543094068766, -0.004868474788963795, 0.008636309765279293, -0.029386412352323532, 0.02470025233924389, -0.008426985703408718, 0.013909928500652313, -0.003605777630582452, -0.0004954567993991077, -0.015530502423644066, 0.009790969081223011, 0.0022485468070954084, -0.03187129274010658, 0.0029136573430150747, -0.005722652655094862, -0.003442032029852271, -0.01705654338002205, 0.01170864887535572, 0.04172978550195694, 0.019487405195832253, -0.015327931381762028, 0.007495155557990074, 0.015827607363462448, -0.017232105135917664, 0.008244670927524567, -0.015165873803198338, -0.001623106305487454, -0.005803681444376707, -0.007090012077242136, -0.0029744289349764585, 0.016070693731307983, 0.008845633827149868, -0.0022890609689056873, 0.015530502423644066, 0.004743555560708046, -0.0006938083097338676, -0.010945628397166729, -0.00806235708296299, -0.01167488656938076, -0.00422362145036459, -0.017745288088917732, 0.013923433609306812, -0.00382860656 …
Create a Pinecone Index
The next step is to create a Pinecone index, we'll do this programmatically, alternatively you can do this from the Pinecone dashboard.
def create_index():
index_name = "openai-cookbook-pinecone-retool"
if not pc.has_index(index_name):
pc.create_index(
name=index_name,
dimension=3072,
metric="cosine",
spec=ServerlessSpec(
cloud='aws',
region='us-east-1'
)
)
return pc.Index(index_name)
index = create_index()
Populate the Pinecone Index
Now that we've created the index, we can populate it with our embeddings. Before we do this we need to append the ID to the embeddings along with the raw text, this is so we can retrieve the original text when we query the index.
When upserting vectors we choose a namespace, this is optional but can be useful if you want to store multiple datasets in the same index as it allows you to partition the data. For example if you needed to store a dataset of customer support queries and a dataset of product descriptions you could create two namespaces and query over each one separately.
def append_vectors(data, doc_embeds):
vectors = []
for d, e in zip(data, doc_embeds):
vectors.append({
"id": d['id'],
"values": e,
"metadata": {'text': d['text']}
})
return vectors
vectors = append_vectors(data, doc_embeds)index.upsert(
vectors=vectors,
namespace="ns1"
)Output
upserted_count: 6
You should now see the vectors in the Pinecone Dashboard.

The vectors should now be visible in the Pinecone Dashboard.
To test the search functionality we can query the index. Below we are taking a sample question, running this through the same embedding function and then checking the index for matching vectors.
top_k refers to the number of results we want to return.
include_values and include_metadata are used to return the embeddings and original text of the results.
query = "When was OpenAI founded?"
x = embed(query)
results = index.query(
namespace="ns1",
vector=x,
top_k=1,
include_values=False,
include_metadata=True
)
print(results)Output
{'matches': [{'id': 'vec6',
'metadata': {'text': 'OpenAI was founded in December 2015 as an '
'organization dedicated to advancing '
'digital intelligence for the benefit of '
'humanity.'},
'score': 0.7864019,
'sparse_values': {'indices': [], 'values': []},
'values': []}],
'namespace': 'ns1',
'usage': {'read_units': 6}}
Create a Retool Workflow
Now we have a working vector database, we can create a Retool workflow to connect to it to run our queries from ChatGPT.
Open Retool and create a new workflow.
You should now see the following screen.

In this example we'll be using Python to query the Pinecone index. To do this we'll need to import the pinecone and openai library. First switch to Python.
We are now ready to add our code to the code block.
Start by declaring the libraries we just imported to this workflow.
from pinecone import Pinecone
from openai import OpenAIWe now need to set the API keys for Pinecone and OpenAI. You can put these directly in the code block or use Retool Configuration Variables. Configuration variables are recommended as they are more secure, this shown below.
client = OpenAI(api_key=retoolContext.configVars.openai_api_key)
pc = Pinecone(api_key=retoolContext.configVars.pinecone_api_key)We can then reuse our OpenAI Embedding and Pinecone query functions from above in the Retool code snippet and return the results. Below is the completed code block.
startTrigger.data.query is a variable passed in from the start trigger of the workflow. This is where the user query from ChatGPT will be passed in.
from pinecone import Pinecone
from openai import OpenAI
client = OpenAI(api_key=retoolContext.configVars.openai_api_key)
pc = Pinecone(api_key=retoolContext.configVars.pinecone_api_key)
index = pc.Index("openai-cookbook-pinecone-retool")
def embed(query):
res = client.embeddings.create(
input=query,
model="text-embedding-3-large"
)
doc_embeds = [r.embedding for r in res.data]
return doc_embeds
x = embed([startTrigger.data.query])
results = index.query(
namespace="ns1",
vector=x[0],
top_k=2,
include_values=False,
include_metadata=True
)
return results.to_dict()['matches']This should look like this in the UI. You can test this by clicking the run button at the top of the code block. You should see the results returned in the Data section at the bottom of the code block.

We now have a workflow with a start trigger that will take a user query pass this to our Vector_Search code block. This will return the top 2 results from the Pinecone index. Next we need to add a block that will take these results and respond to the start trigger request.
Finally we need to configure the start trigger to support calling via API to allow it to be used as a ChatGPT action.
Go to Triggers, and toggle the switch to enable the Webhook. Click on the Webhook to open the configuration screen. We can optionally add an Alias to better describe what this webhook will trigger. In this case we'll call it vector_search. This provides a more identifiable name in the URL. When complete click Save Changes.

The final step is to deploy this workflow. Click the Deploy button at the top of the screen. The workflow is now accessible via API. You can test this by clicking the copy button next to the Alias URL, choosing Copy as cURL and then running this in the terminal.
Create a Custom GPT Action
We now have a working Vector Database, and a way of querying this over API through the Retool Workflow. The next step is to connect the Retool Workflow to ChatGPT via an action.
Go to you GPT, and create a new action. Below is an example of the OpenAPI spec required to connect to the Retool Workflow. You will need to replace the URL and API key with your own.
openapi: 3.1.0
info:
title: Vector Search API
description: An API for performing vector-based search queries.
version: 1.0.0
servers:
- url: YOUR_URL_HERE
description: Sandbox server for the Vector Search API
paths:
/url/vector-search:
post:
operationId: performVectorSearch
summary: Perform a vector-based search query.
description: Sends a query to the vector search API and retrieves results.
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
query:
type: string
description: The search query.
required:
- query
responses:
'200':
description: Successful response containing search results.
'400':
description: Bad Request. The input data is invalid.
'500':
description: Internal Server Error. Something went wrong on the server side.Under the Authentication section set the auth method to API Key. Paste in your API from the Retool Workflow trigger settings. Then set Auth Type to Custom and set the Custom Header Name to X-Workflow-Api-Key
Your setup is now complete. You can test this by sending a message to your GPT asking for information from the vector database.
