diff --git a/.chainlit/config.toml b/.chainlit/config.toml index e747f277718a5f357faafcc002e8a0b8a4069400..ce66b3ac71f8776a4b9b25f2ac312c52809628c7 100644 --- a/.chainlit/config.toml +++ b/.chainlit/config.toml @@ -29,13 +29,20 @@ multi_modal = true # Allows user to use speech to text [features.speech_to_text] - enabled = false + enabled = true # See all languages here https://github.com/JamesBrill/react-speech-recognition/blob/HEAD/docs/API.md#language-string - # language = "en-US" - + language = "en-US" + +[features.audio] + min_decibels = -45 + initial_silence_timeout = 3000 + silence_timeout = 1500 + max_duration = 15000 + chunk_duration = 1000 + sample_rate = 44100 [UI] # Name of the app and chatbot. -name = "Chatbot" +name = "SalesBuddy for BetterTech" # Show the readme while the conversation is empty. show_readme_as_default = true @@ -58,27 +65,24 @@ hide_cot = false # Specify a CSS file that can be used to customize the user interface. # The CSS file can be served from the public directory or via an external link. # custom_css = "/public/test.css" - +custom_css = "/public/custom_styles.css" # Override default MUI light theme. (Check theme.ts) [UI.theme.light] - #background = "#FAFAFA" - #paper = "#FFFFFF" + background = "#E0F7FA" # Light Cyan for a refreshing background + paper = "#FFFFFF" # Keep the paper white for contrast [UI.theme.light.primary] - #main = "#F80061" - #dark = "#980039" - #light = "#FFE7EB" - -# Override default MUI dark theme. (Check theme.ts) + main = "#0288D1" # A vibrant blue as the primary color + dark = "#01579B" # A deeper blue for darker elements + light = "#B3E5FC" # A light blue for accents and highlights [UI.theme.dark] - #background = "#FAFAFA" - #paper = "#FFFFFF" + background = "#1E3A5F" # A deep, rich blue for the background + paper = "#2C3E50" # Slightly lighter for paper elements [UI.theme.dark.primary] - #main = "#F80061" - #dark = "#980039" - #light = "#FFE7EB" - - + main = "#0288D1" # Same vibrant blue for consistency + dark = "#01579B" # A rich dark blue + light = "#4FC3F7" # A lighter blue for accents + [meta] generated_by = "0.7.700" diff --git a/README.md b/README.md index 7364f5099a65fc99594fd658f0f70e90cd1b5728..968b287fabea69ec7c9f33ea325d1f3794a327e3 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ --- -title: SalesBuddy -emoji: 🌖 +title: SalesBuddy for BetterTech +emoji: 👁 colorFrom: pink -colorTo: indigo +colorTo: blue sdk: docker pinned: false license: mit -short_description: AIE4 Final Project ---- - -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference +short_description: AIE4 Project - SalesBuddy for BetterTech +--- \ No newline at end of file diff --git a/app_main.py b/app_main.py new file mode 100644 index 0000000000000000000000000000000000000000..d253938bc45192cebbf61776103cfbfa443f0f8f --- /dev/null +++ b/app_main.py @@ -0,0 +1,100 @@ +import chainlit as cl +import dotenv +import os +import pandas as pd +import whisper +from datetime import datetime +from langchain_core.globals import set_llm_cache +from langchain_core.caches import InMemoryCache +from openai import OpenAI + +from classes import SessionState + +from utils_callbacks import callback_run_scenario, callback_start_scenario, callback_evaluate_performance, callback_display_queries_responses +from utils_customer_research import get_latest_news +from utils_pose_objections import pose_objections +from utils_prep import prep_research, prep_opportunities, prep_start, prep_opportunity_analysis +from utils_simulation import do_simulation + + + +dotenv.load_dotenv() +openai_api_key = os.getenv("OPENAI_API_KEY") +tavily_api_key = os.getenv("TAVILY_API_KEY") + +llm_model = "gpt-4o-mini" +set_llm_cache(InMemoryCache()) +client = OpenAI(api_key=openai_api_key) +whisper_model = whisper.load_model("base") + +############################################# +# Action callbacks +############################################# + +@cl.action_callback("HSBC: Lending - Loan Origination System (Qualification)") +async def on_action_anayze_opportunity(action): + await prep_opportunity_analysis() + +@cl.action_callback("Get Latest News on this Customer") +async def on_action_get_latest_news(action): + await get_latest_news(action.value) + +@cl.action_callback("Enter Meeting Simulation") +async def on_action_run_scenario(action): + await callback_run_scenario(action) + +@cl.action_callback("Start Simulation") +async def on_action_start_scenario(action): + print("on_action_start_scenario()") + await callback_start_scenario() + +@cl.action_callback("Evaluate Performance") +async def on_action_evaluate_performance(action): + await callback_evaluate_performance() + +@cl.action_callback("Display Queries and Responses") +async def on_action_display_queries_responses(action): + await callback_display_queries_responses() + + +############################################# +### On Chat Start (Session Start) Section ### +############################################# +@cl.on_chat_start +async def on_chat_start(): + session_state = SessionState() + cl.user_session.set("session_state", session_state) + session_state.llm_model = llm_model + print(session_state) + cl.user_session.set("messages", []) + if client is None: + await cl.Message(content="Error: OpenAI client not initialized. Please check your API key.").send() + if whisper_model is None: + await cl.Message(content="Error: Whisper model not loaded. Please check your installation.").send() + + await prep_start(session_state) + + await prep_opportunities(session_state) + + + + # await prep_opportunity_analysis(session_state) + + # await prep_research(session_state) + # session_state.session_stage = "research" + + # Ask for the first PDF file (Potential Customer Business Domain) + # await process_pdf_files() + + +@cl.on_message +async def main(message): + content = message.content.strip() + session_state = cl.user_session.get("session_state", None) + if session_state is None: + await cl.Message(content="Error: Session state not initialized. Please check your installation.").send() + return + if session_state.do_objections: + await pose_objections(session_state) + else: + await do_simulation(client, session_state, message) \ No newline at end of file diff --git a/cache/text-embedding-3-small07d93d4d-d9c5-5018-937d-ac0e3b6ea1d7 b/cache/text-embedding-3-small07d93d4d-d9c5-5018-937d-ac0e3b6ea1d7 new file mode 100644 index 0000000000000000000000000000000000000000..75b1195f6fb3d03fa021f1ff1071168c46c3b8e2 --- /dev/null +++ b/cache/text-embedding-3-small07d93d4d-d9c5-5018-937d-ac0e3b6ea1d7 @@ -0,0 +1 @@ +[-0.005091681145131588, -0.005320235155522823, 0.09746569395065308, 0.016049588099122047, -0.016113076359033585, 0.02818835899233818, 0.011167415417730808, 0.11041710525751114, 0.0030394543427973986, -0.027502696961164474, 0.02696940302848816, -0.040174759924411774, -0.0397176519036293, 0.012653018347918987, 0.05404038727283478, 0.022753845900297165, -0.015795638784766197, 0.0008364451350644231, -0.019427113234996796, 0.01684952899813652, 0.016163865104317665, 0.03621315211057663, -0.02058258093893528, 0.04030173644423485, 0.031184960156679153, 0.005634497385472059, 0.01701459474861622, -0.06409677118062973, 0.05556407943367958, -0.02620755508542061, 0.07024234533309937, -0.02834072895348072, -0.006250324193388224, 0.01752249337732792, -0.018258946016430855, 0.03156588226556778, -0.03268326073884964, 0.023198258131742477, 0.012005447410047054, 0.007472454570233822, -0.045177560299634933, -0.01771295629441738, 0.012646669521927834, 0.005437687039375305, 0.028162963688373566, -0.025979001075029373, 0.03814316540956497, -0.016011495143175125, -0.018779542297124863, 0.03915896266698837, -0.01578294113278389, 0.015249648131430149, -0.020366724580526352, 0.011446759104728699, -0.0005281349294818938, -0.006774094421416521, 0.0005686081130988896, -0.036848027259111404, 0.00591066712513566, 0.010589680634438992, 0.023807736113667488, -0.03555288538336754, -0.0023569657932966948, 0.017751047387719154, -0.05663066729903221, 0.020950807258486748, 0.01613846980035305, 0.05302459001541138, -0.015186160802841187, 0.06496020406484604, 0.002863276982679963, 0.007301039062440395, 0.025521893054246902, 0.03778763860464096, 0.049723248928785324, -0.04913916811347008, -0.0441109724342823, -0.0067867920733988285, 0.05581802874803543, -0.001334026805125177, 0.019693758338689804, -0.031032590195536613, 0.023464905098080635, 0.007396270055323839, 0.021268244832754135, -0.008964406326413155, -0.0067486995831131935, 0.04868206009268761, -0.024747347459197044, 0.00497740413993597, -0.005618625786155462, 0.020354026928544044, -0.024836229160428047, 0.020354026928544044, 0.007853378541767597, -0.02401089482009411, 0.0052630966529250145, 0.01838592067360878, -0.007047089748084545, 0.017547888681292534, -0.013510096818208694, -0.00717406440526247, 0.029762843623757362, 0.009250098839402199, 0.0008142245933413506, 0.004653618671000004, -0.016773343086242676, -0.03707658126950264, 0.021204756572842598, 0.032657865434885025, -0.031134169548749924, 0.010272243991494179, -0.05307538062334061, 0.05647829920053482, -0.050891418009996414, 0.018563685938715935, -0.05162787064909935, -0.018754146993160248, 0.004793290980160236, 0.04421255365014076, 0.05439591407775879, -0.022144367918372154, 0.030016792938113213, 0.008615226484835148, -0.021255547180771828, -0.006431262940168381, -0.024023592472076416, -0.021509496495127678, -0.007961306720972061, -0.06795679777860641, -0.0010078608756884933, -0.013802138157188892, -0.080451101064682, -0.01138962060213089, 0.04944390431046486, -0.03560367599129677, 0.02185232751071453, 0.03555288538336754, -0.0361623652279377, -0.046853624284267426, 0.060389116406440735, 0.01990961655974388, 0.01838592067360878, 0.018322434276342392, -0.04990101605653763, 0.04454268515110016, -0.029331130906939507, 0.04032713174819946, -0.0057043335400521755, -0.022588780149817467, -0.0441109724342823, -0.00885647814720869, -0.022144367918372154, 0.008266045711934566, 0.04423794895410538, 0.0018030392238870263, 0.006882023066282272, 0.0441109724342823, -0.006240800954401493, -0.050231147557497025, -0.01747170463204384, 0.015465505421161652, -0.023833131417632103, 0.010043689981102943, 0.04505058377981186, 0.010088130831718445, -0.00168558768928051, -0.02589011937379837, -0.06521414965391159, -0.012043540365993977, -0.04403478652238846, -0.041444506496191025, -0.0007146288990043104, -0.00926914531737566, -0.014970304444432259, -0.02288082055747509, -0.03415616601705551, -0.01884302869439125, -0.010430962778627872, 0.031337328255176544, -0.00985957682132721, 0.010488101281225681, -0.010742050595581532, 0.006094780284911394, -0.03880343586206436, -0.015224253758788109, -0.02227134257555008, -0.0021315859630703926, -0.0039298636838793755, 0.030321532860398293, 0.03448629751801491, -0.02430293709039688, 0.0174082163721323, -0.02205548621714115, -0.025356825441122055, 0.047209154814481735, -0.0049361372366547585, 0.02210627682507038, 0.041342925280332565, -0.005571010056883097, 0.001525282277725637, 0.014030692167580128, 0.015668664127588272, 0.012945059686899185, -0.029813634231686592, 0.006545540411025286, -0.0195159949362278, 0.029788238927721977, 0.04273964837193489, 0.017243148759007454, 0.007218505721539259, 0.02895020693540573, -0.04449189826846123, 0.061150964349508286, -0.01568136177957058, 0.004520295653492212, -0.021534889936447144, -0.04530453309416771, 0.041901614516973495, -0.009199309162795544, 0.012646669521927834, -0.0006293178303167224, 0.02773125097155571, -0.030423112213611603, -0.004117151256650686, 0.03926054388284683, 0.00633285753428936, 0.020722253248095512, 0.010818235576152802, 0.030473902821540833, 0.0351465679705143, -0.0692773386836052, -0.045075979083776474, -0.02247450314462185, -0.021839629858732224, 0.004875824321061373, -0.023833131417632103, 0.01924934796988964, -0.03474024683237076, -0.088882215321064, -0.0288994163274765, 0.0031616673804819584, -0.016887620091438293, -0.00036802791873924434, -0.005777344107627869, 0.02451879344880581, 0.007967655546963215, -0.05749409645795822, -0.013078383170068264, 0.03298800066113472, 0.005205958150327206, 0.04804718494415283, -0.008354928344488144, -0.024125171825289726, 0.007593080401420593, 0.004415541421622038, 0.03575604408979416, 0.008386671543121338, 0.012265745550394058, -0.008742200210690498, -0.007059787400066853, 0.024633070454001427, 0.031845226883888245, -0.037660662084817886, 0.016303537413477898, 0.04025094583630562, 0.004929788410663605, 0.030143767595291138, 0.008120025508105755, -0.00870410818606615, -0.061404913663864136, 0.01210702769458294, 0.02063337154686451, -0.018068484961986542, -0.031388118863105774, 0.017128871753811836, 0.012443509884178638, -0.0069074179045856, -0.06892181187868118, 0.028772441670298576, -0.01990961655974388, -0.013903717510402203, 0.033470503985881805, -0.04918995499610901, 0.014983002096414566, -0.041596874594688416, 0.032200757414102554, 0.0341307707130909, -0.012589531019330025, 0.05459907278418541, -0.01542741246521473, -0.009904017671942711, 0.008697759360074997, -0.08690141141414642, 0.030169162899255753, 0.013091080822050571, -0.013433911837637424, -0.03898119926452637, -0.017243148759007454, 0.02783283032476902, 0.0537356473505497, 0.05404038727283478, 0.03981923311948776, -0.02421405538916588, 0.022131672129034996, 0.02558537945151329, 0.029712054878473282, -0.005799564532935619, 0.0014784603845328093, -0.0015863887965679169, -0.03687342256307602, -0.008545390330255032, 0.029585080221295357, -0.03928593918681145, -0.013040290214121342, -0.001545915612950921, -0.007326433900743723, -0.003926689270883799, -0.000730103871319443, 0.0033045136369764805, 0.00505676306784153, -0.04273964837193489, -0.008012096397578716, 0.026029791682958603, 0.013040290214121342, -0.008323184214532375, 0.025217153131961823, 0.014056087471544743, -0.02185232751071453, -0.015567084774374962, -0.024480700492858887, -0.00046464765910059214, 0.009999249130487442, -0.013141870498657227, -0.049672458320856094, -0.041850823909044266, -0.03263247013092041, 0.04530453309416771, -0.04136832058429718, -0.06176044046878815, -0.040225550532341, -0.0009784979047253728, -0.014856027439236641, -0.028924811631441116, 0.020404817536473274, -0.0007562924292869866, -0.02191581390798092, 0.012576833367347717, 0.059068579226732254, 0.057798832654953, -0.010418265126645565, 0.013764046132564545, 0.03441011533141136, -0.030499296262860298, 0.03494340926408768, -0.003552114125341177, 0.02220785617828369, -0.046548884361982346, 0.037101976573467255, 0.027096377685666084, 0.016862226650118828, 0.008970755152404308, 5.97983353145537e-06, -0.04197780042886734, 0.038828831166028976, 0.021077781915664673, -0.025750447064638138, -0.009129473008215427, 0.06424914300441742, -0.005475779063999653, 0.017395518720149994, -0.03872724995017052, -0.06648389250040054, -0.015541690401732922, -0.02379503846168518, -0.020544487982988358, -0.0017395518952980638, 0.02385852485895157, 0.045634668320417404, -0.03562907129526138, 0.012221304699778557, -0.043018992990255356, -0.04306977987289429, 0.010475403629243374, 0.0025950432755053043, 0.01679873839020729, 0.019185861572623253, -0.052516691386699677, -0.032505493611097336, -0.04083503037691116, 0.02379503846168518, 0.05622434988617897, 0.015008396469056606, 7.75239386712201e-05, 0.015897218137979507, -0.021153967827558517, 0.010532542131841183, 0.07709897309541702, 0.005291665904223919, 0.05764646455645561, -0.01930013857781887, 0.01701459474861622, -0.049774039536714554, -0.03974304720759392, 0.0420793779194355, 0.02874704822897911, 0.0019125547260046005, 0.012799038551747799, -0.049977198243141174, -0.0806034728884697, 0.015211556106805801, -0.046040985733270645, 0.03448629751801491, 0.018106576055288315, 0.013027593493461609, -0.02430293709039688, 0.012119724415242672, 0.03382603079080582, -0.026385320350527763, 0.02191581390798092, 0.032403916120529175, -0.0691249668598175, 0.00919296033680439, 0.016506696119904518, 0.013319634832441807, 0.002739476738497615, 0.028010595589876175, -0.027705855667591095, -0.008037491701543331, -0.05122154951095581, -0.007605778053402901, 0.019414415583014488, 0.03197220340371132, 0.00674235075712204, -0.03999699652194977, 0.021280940622091293, 0.01803039200603962, 0.01950329728424549, 0.05561487004160881, 0.002914066892117262, 0.004612352233380079, 0.003726704278960824, -0.0353243313729763, 0.015122673474252224, -0.016786040738224983, 0.005421814974397421, 0.03550209477543831, 0.024899717420339584, -0.020607976242899895, -0.02063337154686451, -0.022436410188674927, 0.005151994060724974, 0.0106468191370368, 0.007974004372954369, -0.03303878754377365, 0.0020315933506935835, 0.06937891989946365, -0.0005896382499486208, -0.016049588099122047, -0.009027893655002117, 0.05261826887726784, 0.03202299028635025, 0.03763527050614357, -0.006110652349889278, 0.023401416838169098, 0.0013229164760559797, 0.0005408324068412185, 0.046142566949129105, -0.004450459498912096, -0.0025839328300207853, -0.02793440967798233, -0.0010157966753467917, 0.018157366663217545, 0.0195159949362278, 0.018170064315199852, -0.023972803726792336, -0.011903868056833744, -0.07425474375486374, 0.011865775100886822, -0.004263171926140785, 0.0271217729896307, -0.038524091243743896, 0.005523394793272018, -0.013472003862261772, 0.006583632435649633, 0.01231018640100956, 0.025344127789139748, -0.01936362497508526, 0.026944007724523544, 0.03829553723335266, -0.00657728360965848, 0.011129322461783886, 0.0006543159252032638, -0.012646669521927834, 0.0036600425373762846, -0.030677061527967453, -0.045736249536275864, 0.009535791352391243, 0.016608277335762978, -0.03905738517642021, 0.0376860573887825, 0.0032426135148853064, -0.017141569405794144, -0.02435372583568096, 0.037508293986320496, 0.015960706397891045, -0.06465546041727066, -0.011783242225646973, -0.02568696066737175, 0.02768046036362648, -0.051856424659490585, 0.031337328255176544, -0.012049888260662556, 0.031997598707675934, 0.001364976866170764, 0.025648867711424828, -0.013878323137760162, 0.020455606281757355, 0.04926614090800285, -0.027045587077736855, -0.0026331355329602957, 0.02017626166343689, 0.04172385111451149, 0.009637371636927128, -0.04332372918725014, 0.010164315812289715, -0.027705855667591095, -0.006691561080515385, 0.026436109095811844, -0.021319033578038216, 0.009662766009569168, -0.046142566949129105, 0.008100979030132294, 0.003977478947490454, -0.03707658126950264, -0.023325232788920403, 0.01895730569958687, 0.016532091423869133, -0.0015657554613426328, 0.032708656042814255, 0.014868725091218948, 2.021177533606533e-05, -0.03562907129526138, -0.016455907374620438, 0.017585981637239456, -0.02462037280201912, 0.01879223994910717, 0.03474024683237076, -0.0036536939442157745, -0.01118646189570427, 0.03611157462000847, -0.037355925887823105, 0.0032822932116687298, 0.0017125698504969478, 0.01434812881052494, -0.06318255513906479, 0.03504498675465584, 0.04020015522837639, 0.02416326478123665, 0.014119574800133705, 0.03557828068733215, -0.03499419614672661, -0.024544188752770424, 0.00827239453792572, -0.00978339184075594, -0.009592930786311626, 0.008716805838048458, 0.006059862207621336, -0.0276296716183424, -0.021179361268877983, 0.006364601198583841, 0.015351228415966034, 0.019185861572623253, -0.06211597099900246, 0.03898119926452637, 0.015490899793803692, 0.002488702069967985, -0.007466105744242668, 0.04860587418079376, 0.01895730569958687, -0.020188959315419197, -0.05591960996389389, 0.008970755152404308, -0.024023592472076416, -0.04045410454273224, 0.016862226650118828, 0.02778203971683979, 0.04566006362438202, -0.03298800066113472, -0.003214044263586402, -0.024087080731987953, -0.006380473263561726, 0.02411247417330742, 0.003507673041895032, -0.036797236651182175, -0.03763527050614357, 0.024239448830485344, -0.005259922239929438, 0.02773125097155571, 0.016811436042189598, -0.030423112213611603, -0.03314036875963211, -0.02190311625599861, 0.007364526391029358, -0.04426334425806999, -0.00672965357080102, -0.00215698080137372, -0.01985882595181465, -0.008240651339292526, -0.021877722814679146, 0.006628073751926422, 0.018297038972377777, 0.02012547291815281, -0.01965566724538803, 0.017344729974865913, 0.018093878403306007, -0.023960106074810028, -0.012018145062029362, 0.026944007724523544, -0.010494450107216835, 0.01970645599067211, -0.0017157441470772028, -0.01679873839020729, -0.0017744698561728, 0.014614775776863098, -0.0009673876920714974, -0.020874623209238052, -0.018804937601089478, 0.02134442888200283, -0.02455688640475273, -0.02935652621090412, -0.014703657478094101, -0.03156588226556778, -0.011459456756711006, -0.00436792615801096, 0.02681703306734562, 0.0005134535022079945, -0.016506696119904518, 0.06313176453113556, 0.0038124120328575373, 0.014106877148151398, -0.01450049877166748, 0.01583373174071312, -0.0436030738055706, -0.017090780660510063, -0.0052630966529250145, -0.04035252332687378, -0.04101279377937317, -0.020900018513202667, 0.007523244712501764, 0.04566006362438202, 0.015300437808036804, 0.01792881265282631, 0.024798138067126274, 0.014462405815720558, 0.0021490450017154217, 0.024950508028268814, 0.010659516789019108, -0.0217126552015543, 0.003926689270883799, -0.035527490079402924, 0.03344510868191719, -0.013370424509048462, 0.01013257261365652, 0.03707658126950264, 0.008304138667881489, -0.005990026518702507, 0.017547888681292534, -0.008983451873064041, 0.0051551684737205505, -0.06628073751926422, 0.022436410188674927, 0.04027634114027023, 0.02834072895348072, 0.00027597133885137737, -0.009275494143366814, 0.001351485843770206, -0.01777644269168377, -0.018703356385231018, 0.010532542131841183, -0.0156305730342865, 0.020290540531277657, -0.0449490062892437, -0.006589981261640787, 0.0025442533660680056, 0.0044409362599253654, 0.00998020265251398, -0.04403478652238846, 0.004050489515066147, 0.018982701003551483, 0.010526193305850029, 0.019376322627067566, 0.003023582510650158, -0.03451169282197952, 0.0025410789530724287, -0.059373319149017334, -0.022398317232728004, 0.06577283889055252, -0.040885817259550095, -0.05490381270647049, 0.013675163500010967, 0.032149966806173325, 0.00337117537856102, -0.02409977652132511, -0.0046440958976745605, -0.03898119926452637, 0.016049588099122047, 0.030169162899255753, 0.036136969923973083, -0.010043689981102943, -0.03527354076504707, 0.00035235448740422726, 0.006551888771355152, -0.05348169803619385, -0.005129773635417223, 0.016976503655314445, 0.00599954929202795, -0.016938410699367523, 0.02451879344880581, -0.006374124437570572, 0.0004924233653582633, -0.010151618160307407, 0.01154199056327343, -0.041596874594688416, 0.011446759104728699, 0.03339431807398796, 0.02156028524041176, 0.006183662451803684, 0.03600999340415001, -0.049926407635211945, 0.01107853278517723, -0.020671462640166283, -0.018119273707270622, 0.021217454224824905, 0.02063337154686451, 0.060490693897008896, -0.027858225628733635, -0.022195158526301384, 0.011300738900899887, 0.0011657854774966836, -0.016316235065460205, -0.03943830728530884, 0.017890719696879387, -0.02732493169605732, -0.016430512070655823, -0.009186611510813236, 0.02369345910847187, 0.026588479056954384, 0.0005229766247794032, -0.007567685563117266, -0.025966303423047066, 0.00977704394608736, -0.002726779319345951, -0.005596404895186424, 0.018652567639946938, -0.011237251572310925, -0.029813634231686592, 0.0185890793800354, 0.006012246944010258, 0.010805537924170494, -0.0010665865847840905, 0.007897819392383099, 0.008869174867868423, 0.024798138067126274, -0.030067583546042442, 0.010507147759199142, -0.04606638103723526, -0.01603689044713974, 0.00995480827987194, -0.0004936137120239437, 0.0387018546462059, -0.01568136177957058, 0.02124284952878952, -0.04472045227885246, 0.015452807769179344, -0.004548864904791117, -0.03621315211057663, -0.0195159949362278, 0.006158267613500357, -0.013929112814366817, -0.01767486333847046, -0.022995097562670708, -0.02252529188990593, 0.012221304699778557, -0.014640170149505138, 0.013827532529830933, -0.0061233495362102985, -0.046802833676338196, -0.0016332106897607446, -0.014005297794938087, 0.015567084774374962, 0.0038473301101475954, -0.01716696470975876, 0.0014697308652102947, 0.004837731830775738, 0.036898817867040634, 0.004107628017663956, -0.06145570054650307, 0.04454268515110016, 0.018665265291929245, 0.03171825408935547, 0.014437011443078518, 0.025166364386677742, -0.013167264871299267, 0.027553485706448555, 0.037965402007102966, 0.035222750157117844, 0.04957088083028793, 0.010716655291616917, -0.012767295353114605, 0.00733913155272603, 0.027096377685666084, -0.01904618926346302, 0.004269520752131939, 0.0062154061160981655, 0.037000395357608795, -0.019579481333494186, 0.045177560299634933, 0.015973404049873352, -0.018627172335982323, 0.03441011533141136, -0.01706538535654545, -0.008031142875552177, -0.0063995192758738995, 0.011503897607326508, 0.026334529742598534, -0.037660662084817886, 0.02742651104927063, 0.033165764063596725, -0.06358887255191803, -0.012399069033563137, -0.027807435020804405, 0.014843329787254333, -0.029483500868082047, 0.00817081518471241, -0.008177164010703564, 0.03966686129570007, -0.022385619580745697, -0.015846429392695427, 0.009434211999177933, 0.008843780495226383, -0.0017427263082936406, 0.004117151256650686, 0.01223400142043829, -0.004748849663883448, 0.03494340926408768, 0.004504423588514328, -0.00791686587035656, 0.019490599632263184, 0.021204756572842598, 0.025356825441122055, -0.012354628182947636, -0.052364323288202286, 0.0033965702168643475, -0.04591401293873787, 0.021890420466661453, -0.014462405815720558, 0.00012429621710907668, 0.011478503234684467, -0.014640170149505138, -0.016100378707051277, -0.032353125512599945, -0.013510096818208694, -0.0645538792014122, 0.03555288538336754, 0.0009173914440907538, 0.007028043735772371, 0.02803598903119564, 0.037863824516534805, 0.01716696470975876, 0.040733449161052704, 0.012837131507694721, 0.009307237342000008, -0.04329833388328552, 0.05132313072681427, 0.018919214606285095, -0.009751648642122746, 0.04621875286102295, -0.05790041387081146, 0.013103777542710304, 0.025623472407460213, 0.018170064315199852, 0.03941291198134422, 0.010576983913779259, 0.024087080731987953, 0.015173464082181454, -0.006364601198583841, -0.007586732041090727, -0.014360826462507248, 0.013472003862261772, 0.036086179316043854, 0.012399069033563137, 0.02247450314462185, -0.026385320350527763, -0.009332632645964622, -0.012754597701132298, 0.010272243991494179, -0.001822085352614522, -0.025509195402264595, 0.05922095105051994, 0.02727414295077324, 0.00591066712513566, -0.01054523978382349, 0.0018649393459782004, -0.00824700016528368, 0.023109376430511475, 0.006148744374513626, -0.028772441670298576, 0.022906215861439705, 0.023807736113667488, 0.006288416683673859, -0.01987152360379696, 0.006507447920739651, -0.002195073291659355, 0.00817081518471241, -0.026893218979239464, -0.02032863162457943, -0.032251548022031784, 0.030346928164362907, -0.04177464172244072, -0.030067583546042442, -0.011586431413888931, 0.01297680288553238, -0.023502996191382408, 0.027553485706448555, -0.00781528651714325, -0.006609027273952961, 0.010627773590385914, 0.018970003351569176, 0.0038346326909959316, 0.03374984487891197, 0.015262345783412457, -0.017027292400598526, -0.02416326478123665, -0.002801376860588789, -0.005710682366043329, 0.03364826738834381, 0.00726294657215476, 0.01220860704779625, 0.014716355130076408, 0.0037933660205453634, 0.011275343596935272, -0.007796240039169788, -0.009694510139524937, -0.009421514347195625, 0.020100077614188194, -0.008227953687310219, 0.02369345910847187, 0.03570525348186493, -0.026283740997314453, 0.02752809226512909, -0.03242931142449379, 0.0015229014679789543, -0.015325833112001419, 0.0035711603704839945, -0.0005975741660222411, 0.0060312929563224316, 0.045583877712488174, 0.06262386590242386, -0.008875523693859577, -0.009180262684822083, -0.014030692167580128, 0.009567535482347012, -0.017027292400598526, -0.023528391495347023, -0.03458787873387337, 0.012119724415242672, 0.0026617047842592, 0.010259547270834446, 0.015452807769179344, 0.018297038972377777, 0.03524814546108246, 0.05353248864412308, 0.011713406071066856, -0.018627172335982323, 0.05551329255104065, -0.005872574634850025, 0.008672364987432957, 0.02869625762104988, -0.0009467542986385524, 0.0007185967988334596, -0.005958282854408026, 0.006361427251249552, 0.008805687539279461, 0.019935010001063347, 0.011548339389264584, 0.005513871554285288, 0.03707658126950264, 0.018347827717661858, -0.0047361524775624275, 0.019033491611480713, 0.017344729974865913, 0.0004440142656676471, 0.04136832058429718, -0.019058886915445328, -0.05261826887726784, -0.0010618249652907252, -0.014779842458665371, 0.026791639626026154, 0.025915514677762985, 0.03395300731062889, -0.0009721491951495409, -0.024633070454001427, -0.027401117607951164, 0.02425214648246765, 0.004396495409309864, 0.03443551063537598, -0.015135371126234531, 0.030397716909646988, -0.03349589556455612, 0.020087379962205887, -0.002053814008831978, 0.005634497385472059, 0.020798437297344208, 0.0038505045231431723, -0.01695110835134983, -0.009669114835560322, -0.014437011443078518, -0.01174514926970005, 0.03529893606901169, 0.012513346038758755, 0.009389771148562431, -0.011599129065871239, 0.0029156540986150503, -0.016100378707051277, 0.033876821398735046, -0.023160165175795555, 0.016151167452335358, 0.021928511559963226, 0.03453708812594414, 0.004358402919024229, -0.021826932206749916, 0.011605477891862392, -0.011046789586544037, 0.005456733051687479, -0.03854948654770851, 0.016874922439455986, 0.022664964199066162, -0.02864546701312065, -0.009167565032839775, -0.0062534986063838005, 0.009237401187419891, 0.003872724948450923, -0.02191581390798092, 0.023718854412436485, 0.020061984658241272, -0.013040290214121342, 0.037355925887823105, 0.005212306976318359, 0.015909915789961815, -0.009364375844597816, 0.000839619489852339, 0.0037997146137058735, 0.0227284524589777, -0.003669565776363015, 0.02823914960026741, 0.020569883286952972, -0.006012246944010258, -0.007364526391029358, -0.010488101281225681, 0.029762843623757362, -0.005180563312023878, 0.02139521948993206, 0.00354259111918509, -0.004761547315865755, -0.03918435797095299, 0.005037717055529356, 0.0014149730559438467, 0.04931693151593208, -0.015059186145663261, 0.0003023582394234836, 0.006666166242212057, -0.018360525369644165, -0.005951934028416872, 0.02783283032476902, -0.009891320951282978, 0.0009824659209698439, 0.004371100105345249, 0.05015496537089348, 0.019541390240192413, 0.014297339133918285, 0.010259547270834446, -0.027959804981946945, -0.01406878512352705, -0.05668145790696144, 0.006209057290107012, 0.02446800284087658, -0.003555288538336754, 0.018754146993160248, 0.008088281378149986, 0.026690058410167694, -0.02818835899233818, -0.01706538535654545, 0.013078383170068264, -0.013446609489619732, -0.002118888543918729, 0.0200238935649395, -0.0217126552015543, 0.007637521717697382, 0.013941810466349125, -0.01079918909817934, 0.0024871148634701967, -0.003187062218785286, 0.001573691377416253, -0.008964406326413155, -0.030981799587607384, 0.00047178997192531824, 0.0009951633401215076, 0.011865775100886822, -0.013091080822050571, -0.0190969780087471, -0.027197957038879395, 0.012786340899765491, 0.01674794778227806, -0.015249648131430149, -0.017789140343666077, -0.0035298937000334263, -0.005507522728294134, 0.021877722814679146, 0.0065645864233374596, -0.0004955977201461792, -0.015236951410770416, 0.01985882595181465, 0.013954507187008858, -0.00665346859022975, -0.0028823232278227806, 0.004437761846929789, 0.008716805838048458, -0.021420612931251526, -0.007440710905939341, 0.002628374146297574, -0.012703808024525642, 0.050434306263923645, 0.008596180006861687, -0.012786340899765491, 0.022411014884710312, -0.032861024141311646, 0.011446759104728699, -0.006882023066282272, -0.02416326478123665, -0.004691711161285639, -0.001883985474705696, -0.005780518054962158, -0.03712737187743187, 0.02119205892086029, -0.0015363926067948341, -0.015821034088730812, 0.09314855933189392, 0.008983451873064041, -0.005025019403547049, 0.005659892223775387, 0.016151167452335358, 0.0059773288667202, 0.01171975489705801, -0.007904168218374252, 0.012113375589251518, -0.020658766850829124, -0.012945059686899185, -0.016049588099122047, 0.04566006362438202, -0.00337117537856102, 0.012811736203730106, 0.029686659574508667, 0.01264032069593668, -0.007726403884589672, 0.0011840381193906069, 0.002941048936918378, 0.011884821578860283, -0.01930013857781887, -0.011376922950148582, -0.029229551553726196, 0.02431563474237919, -0.0032203930895775557, -0.008075583726167679, 0.043222151696681976, 0.005659892223775387, 0.0030997672583907843, 0.02404898777604103, 0.03758447989821434, -0.010323034599423409, 0.008297789841890335, -0.02385852485895157, 0.009396119974553585, -0.009986551478505135, 0.022258644923567772, -0.0033838727977126837, -0.030016792938113213, -0.03969225659966469, 0.016786040738224983, -0.007751798722893, -0.000911042676307261, 0.00837397389113903, -0.020963504910469055, 0.012119724415242672, 5.649377271765843e-05, -0.004831383004784584, 0.033419713377952576, -0.005967805627733469, -0.025458404794335365, 0.005564661230891943, 0.0034886267967522144, -0.016519393771886826, 0.00985957682132721, 0.00700899725779891, 0.016354328021407127, 0.02727414295077324, 0.007974004372954369, -0.0037425761111080647, -0.01197370421141386, 0.02103968895971775, -0.004421890247613192, -0.00029223994351923466, 0.0006749493186362088, 0.005317061208188534, 0.020569883286952972, 0.009751648642122746, 0.028112174943089485, 0.01217686291784048, -0.009389771148562431, 0.032099176198244095, 0.03590841591358185, -0.01813197135925293, 0.008805687539279461, -0.01762407273054123, 0.009853227995336056, -0.007212156895548105, -0.017738349735736847, -0.013218054547905922, 0.03494340926408768, -0.0061233495362102985, 0.018106576055288315, -0.02083653025329113, 0.00015812304627615958, 0.028467703610658646, 0.01676064543426037, 0.0037425761111080647, -0.001501474529504776, -0.021115874871611595, -0.023680761456489563, 0.027299536392092705, 0.03885422646999359, 0.02154758758842945, -0.026994798332452774, -0.02232213318347931, 0.012322884052991867, -0.020557185634970665, -0.0249251127243042, 0.03217536211013794, -0.018106576055288315, 0.008418415673077106, -0.00046980599290691316, -0.0003378714609425515, 0.007618475705385208, 0.0038473301101475954, -0.005126599222421646, 0.003380698384717107, -0.02676624432206154, -0.012430812232196331, -0.018474802374839783, 0.018804937601089478, -0.029229551553726196, -0.00032438040943816304, 0.026791639626026154, 0.03575604408979416, -0.010862676426768303, -0.004996450152248144, 0.004501249175518751, 0.020341329276561737, 0.0045171212404966354, 0.012672063894569874, -0.015567084774374962, -0.04339991509914398, 0.018614474684000015, 0.028467703610658646, 0.005272619891911745, 0.007021694909781218, -0.013116475194692612, 0.022296737879514694, 0.018500197678804398, 0.019020793959498405, 0.022347528487443924, 0.030118372291326523, 0.02594090811908245, -0.021534889936447144, 0.03319115936756134, 0.04566006362438202, -0.0067867920733988285, -0.0071677155792713165, 0.023820433765649796, -0.018449408933520317, -0.008723154664039612, -0.0013879910111427307, -0.013446609489619732, 0.003418790875002742, 0.007574034389108419, 0.03590841591358185, -0.003272770205512643, -0.026791639626026154, -0.01093251258134842, 0.005586882121860981, -0.016405116766691208, -0.03446090593934059, -0.006459832191467285, -0.02389661781489849, 0.02262687124311924, 0.015008396469056606, 0.04317136108875275, 0.02681703306734562, 0.018931912258267403, 0.0030696108005940914, -0.050789836794137955, 0.007523244712501764, -0.02472195215523243, -0.02211897447705269, 0.02961047552525997, 0.044771239161491394, -0.010786491446197033, 0.0098024383187294, 0.0009427863406017423, -0.018106576055288315, 0.007878773845732212, 0.005513871554285288, -0.015325833112001419, 0.0141957588493824, 0.012157817371189594, -0.012602227739989758, 0.019528692588210106, -0.0327848382294178, -0.005453558638691902, -0.01087537407875061, -0.013725953176617622, 0.020874623209238052, 0.0001781612227205187, -0.0028648641891777515, -0.003317211288958788, -0.01323075219988823, -0.018297038972377777, 0.021001597866415977, -0.023172862827777863, 0.009453258477151394, -0.004501249175518751, 0.0019220778485760093, 0.00972625333815813, 0.008850129321217537, 0.03400379419326782, -0.011421364732086658, -0.017636770382523537, -0.03303878754377365, 0.023096678778529167, -0.02205548621714115, -0.021204756572842598, 0.004663141909986734, -0.0397176519036293, -0.01210702769458294, 0.007713706232607365, 0.0039457352831959724, 0.018982701003551483, 0.04355228319764137, 0.006977253593504429, 0.013624373823404312, 0.03849869593977928, 0.008805687539279461, 0.008043840527534485, -0.047869421541690826, 0.004406018182635307, -0.038371723145246506, 0.01095790695399046, -0.013929112814366817, -0.015668664127588272, -0.01366246584802866, 0.005424989387392998, 0.026334529742598534, -0.027604276314377785, 0.035654466599226, -0.025509195402264595, 0.0376860573887825, -0.02681703306734562, 0.014843329787254333, -0.03293721005320549, 0.005929713603109121, 0.006040816195309162, -0.00834857951849699, 0.005599579308182001, -0.02409977652132511, 0.020773043856024742, -0.0024585456121712923, -0.013116475194692612, 0.011497548781335354, -0.04677743837237358, -0.0030045362655073404, 0.007269295398145914, -0.0037076580338180065, -0.02043021097779274, 0.05409117415547371, 0.0217126552015543, -0.029432710260152817, 0.011161066591739655, -0.0012570484541356564, 0.006358252838253975, 0.032810233533382416, 0.014538590796291828, 0.004012397024780512, 0.001587182399816811, -0.03626394271850586, -0.004466331098228693, 0.027553485706448555, 0.00197921646758914, -0.018970003351569176, -0.01771295629441738, -0.020747648552060127, -0.02181423455476761, -0.036898817867040634, 0.01323075219988823, -0.02707098238170147, 0.013294239528477192, -0.005358327645808458, -0.02869625762104988, -0.01982073299586773, 0.0027378895319998264, -0.023515693843364716, 0.007643870543688536, 0.003723529865965247, 0.018652567639946938, -0.004771070089191198, -0.001194354728795588, 0.0006570935365743935, -0.014297339133918285, 0.025204455479979515, -0.01409417949616909, -0.0039838277734816074, -0.019947707653045654, 0.0023696632124483585, 0.005278968717902899, 0.028569282963871956, -0.007777193561196327, 0.010157966986298561, 0.009332632645964622, 0.04421255365014076, -0.030931010842323303, -0.017433611676096916, -0.0047139315865933895, -0.014792540110647678, -0.07654028385877609, 0.012545089237391949, -0.008691410534083843, -0.007986702024936676, 0.010888070799410343, -0.018195459619164467, 0.006589981261640787, -0.001679238979704678, -0.014779842458665371, 0.030651666224002838, -0.01833513006567955, 0.01735742576420307, 0.042714253067970276, 0.006659817416220903, -0.013649768196046352, -0.016214655712246895, 0.01884302869439125, -0.011446759104728699, 0.0283915176987648, -0.01442431379109621, 0.02727414295077324, 0.013675163500010967, 0.0038378071039915085, 0.003029931103810668, 0.031946808099746704, 0.048174161463975906, -0.009129473008215427, 0.01338312216103077, -0.00708518223837018, 0.02656308375298977, -0.01644320972263813, -0.04611717164516449, 0.026994798332452774, -0.03197220340371132, -0.0239981971681118, 0.024848926812410355, 0.0021141269244253635, 0.005005973391234875, 0.0119990985840559, 0.01971915364265442, -0.0028204231057316065, -0.0016213067574426532, 0.031794436275959015, -0.02037942223250866, 0.0010705544846132398, 0.021179361268877983, 0.015313135460019112, 0.00429174117743969, 0.010526193305850029, 0.020620673894882202, 0.028823232278227806, -0.00934533029794693, 0.00962467398494482, -0.00027517773560248315, -0.005336107220500708, 0.0018585906364023685, -0.011453107930719852, 0.019338229671120644, -0.020569883286952972, -0.026131371036171913, -0.03263247013092041, 0.04146990180015564, 0.001146739232353866, 0.05307538062334061, -0.030829431489109993, 0.022563384845852852, 0.01930013857781887, -0.013967204838991165, -0.014767144806683064, 0.010196059942245483, 0.03352129086852074, 0.019896918907761574, -0.00824700016528368, 0.008342230692505836, 0.026740849018096924, -0.0008689823444001377, -0.026537690311670303, 0.01961757428944111, -0.03799079731106758, 0.02205548621714115, -0.003815586445853114, -0.006288416683673859, -0.01345930714160204, 0.01154199056327343, -0.013243449851870537, -0.013116475194692612, -0.008894570171833038, 0.0023982326965779066, -0.0026045662816613913, 0.011980053037405014, 0.020087379962205887, 0.004393320996314287, 0.013014895841479301, 0.004342530854046345] \ No newline at end of file diff --git a/cache/text-embedding-3-small0cf00a1f-5235-5f18-ba0b-28185b0d64f2 b/cache/text-embedding-3-small0cf00a1f-5235-5f18-ba0b-28185b0d64f2 new file mode 100644 index 0000000000000000000000000000000000000000..e7411d9f8b92423dac0f217796de2ea91023ff61 --- /dev/null +++ b/cache/text-embedding-3-small0cf00a1f-5235-5f18-ba0b-28185b0d64f2 @@ -0,0 +1 @@ +[-0.00860647950321436, 0.014845422469079494, 0.07339364290237427, 0.037059199064970016, 0.010569361038506031, 0.010847183875739574, -0.0313577838242054, 0.04686756804585457, 0.015835922211408615, -0.023784082382917404, 0.04263982176780701, -0.026719344779849052, -0.03225164860486984, -0.02227417379617691, 0.03848455473780632, 0.030826296657323837, -0.008352815173566341, -0.010219062678515911, 0.005076312925666571, -0.0411178357899189, 0.02244328334927559, -0.024677949026226997, -0.007748851552605629, 0.016766026616096497, -0.0014955645892769098, -0.011964516714215279, -0.05802881345152855, -0.031865112483501434, -0.016488203778862953, -0.03333878517150879, 0.07440830022096634, -0.04208417609333992, 0.0580771304666996, 0.044258445501327515, -0.009415790438652039, 0.036213651299476624, -0.017333751544356346, 0.01617414318025112, 0.03005322255194187, 0.022262094542384148, -0.009826485998928547, -0.05503315478563309, 0.01857791654765606, -0.0012962566688656807, 0.0302223339676857, -0.022551996633410454, -0.012804025784134865, -0.043606165796518326, -0.023518338799476624, 0.0363827608525753, 0.0009051903034560382, 0.02860371023416519, 0.023530418053269386, -0.000972381210885942, 0.017164641991257668, 0.0067341928370296955, 0.029497576877474785, 0.0011331865098327398, -0.0012260458897799253, 0.014507203362882137, 0.009355394169688225, -0.01929059438407421, -0.004864925984293222, -0.013625415973365307, -0.031696002930402756, -0.008823907002806664, -0.05121610313653946, 0.04123862832784653, -0.030560553073883057, 0.03348373621702194, 0.000844038964714855, -0.010496885515749454, 0.01889197714626789, 0.048123810440301895, 0.009089650586247444, -0.05073293298482895, -0.04222912713885307, -0.01844504475593567, 0.03181679546833038, -0.029884112998843193, -0.027299148961901665, -0.016947215422987938, 0.04032060131430626, -0.019520100206136703, 0.022370807826519012, 0.0012675683246925473, -0.013118087314069271, 0.034498393535614014, 0.0009829505579546094, 0.03000490553677082, 0.038073860108852386, 0.0433887355029583, 0.04505567625164986, 0.035029880702495575, -0.004602201748639345, -0.018082667142152786, 0.01162025798112154, 0.008974897675216198, 0.015062849037349224, 0.0032523435074836016, 0.053438689559698105, -0.010901541449129581, -0.024629632011055946, -0.008328656665980816, 0.01586008071899414, 0.0008787668775767088, 0.027516577392816544, -0.05454998090863228, 0.0009595470037311316, 0.02244328334927559, -0.10194903612136841, -0.028966089710593224, -0.018879897892475128, 0.054984837770462036, -0.03075382113456726, -0.0055594840086996555, -0.053390372544527054, -0.012888580560684204, 0.014326013624668121, 0.05479156970977783, 0.04546637088060379, -0.014942056499421597, -0.047640640288591385, 0.0007122994284145534, 0.010418370366096497, 0.013903239741921425, -0.02324051596224308, -0.03918515145778656, -0.00648052804172039, -0.0700114443898201, 0.027468260377645493, 0.02872450277209282, -0.05092620104551315, 0.026936771348118782, 0.019447624683380127, -0.017587417736649513, -0.02754073590040207, -0.0009044353500939906, -0.018251776695251465, -0.018263855949044228, -0.008383013308048248, -0.04976659268140793, 0.03275898098945618, -0.01625869795680046, -0.055468007922172546, 0.05232739821076393, -0.05140937119722366, 0.020281093195080757, -0.0066375588066875935, -0.009965397417545319, -0.013214721344411373, -0.004617300815880299, -0.018686629831790924, 0.035875432193279266, -0.01611374504864216, 0.037518210709095, 0.01537691056728363, 0.03597206622362137, -0.009772129356861115, 0.019435545429587364, 0.011064611375331879, 0.07300710678100586, -0.05474325269460678, 0.0397891141474247, 0.02543894201517105, -0.012194022536277771, -0.030995406210422516, -0.055419690907001495, -0.07489147037267685, -0.025777161121368408, -0.02389279566705227, -0.02034148946404457, -0.026671027764678, 0.015219880267977715, -0.008008555509150028, -0.03836376219987869, -0.020099904388189316, -0.015026611275970936, -0.01779276505112648, -0.04365448281168938, 0.025487259030342102, -0.0075495438650250435, 0.017200879752635956, -0.0313577838242054, -0.008630638010799885, -0.014205221086740494, -0.015062849037349224, 0.042011700570583344, 0.021911796182394028, 0.009294997900724411, -0.025318149477243423, 0.03966832160949707, 0.049669958651065826, 0.01495413575321436, 0.027951430529356003, 0.03725246712565422, 0.010068071074783802, 0.06329537183046341, -0.03222749009728432, 0.016198301687836647, 0.01546146534383297, 0.02319219894707203, 0.002953381510451436, -0.003690216923132539, -0.08808203786611557, 0.0035301665775477886, -0.008093111217021942, 0.002772192470729351, -0.016403649002313614, -0.01726127602159977, -0.018372569233179092, 0.006764390971511602, -0.01941138692200184, 0.025680527091026306, -0.03469166159629822, -0.021815162152051926, -0.031067881733179092, 0.00783944595605135, 0.009983516298234463, -0.020752185955643654, 0.041794274002313614, 0.009862723760306835, 0.024146459996700287, -0.024593394249677658, -0.031599368900060654, 0.04561132192611694, 0.03570632264018059, -0.0387502983212471, -0.0073623149655759335, -0.042108334600925446, 0.05242403224110603, -0.03304888308048248, -0.0074589489959180355, -0.04706083610653877, -0.014374330639839172, -0.022564075887203217, 0.01945970393717289, 0.037711478769779205, -0.003735514124855399, -0.040707141160964966, -0.04986322671175003, 0.024593394249677658, -0.0021380307152867317, -0.028482917696237564, 0.021428624168038368, 0.05720742046833038, 0.047858066856861115, -0.03768732026219368, 0.024653790518641472, 0.021948033943772316, 0.03730078414082527, 0.01370997168123722, -0.022068826481699944, -0.013951556757092476, -0.021030008792877197, -0.04041723534464836, 0.02662271074950695, -0.016681471839547157, 0.019049009308218956, -0.032130856066942215, -0.024400124326348305, 0.0340152233839035, -0.004366655834019184, -0.10243220627307892, -0.03043976053595543, 0.036576028913259506, -0.006516766268759966, 0.01967713050544262, 0.015654733404517174, -0.02380824089050293, -0.012924818322062492, 0.02763736993074417, 0.013492544181644917, -0.02886945568025112, -0.02635696716606617, -0.006728153210133314, -0.03768732026219368, 0.028265491127967834, -0.05865693464875221, 0.024931613355875015, -0.031961746513843536, -0.01927851513028145, 0.0037777917459607124, -0.007585781626403332, 0.0181430634111166, -0.025632210075855255, -0.0026015727780759335, 0.011016294360160828, 0.001337024150416255, 0.05368027463555336, 0.008769550360739231, -0.04534557834267616, 0.021549416705965996, -0.06179754436016083, -0.026767661795020103, 0.026912612840533257, 0.03896772488951683, -0.009868763387203217, -0.013661653734743595, 0.02314388006925583, 0.05401849374175072, 0.0460461750626564, 0.016464045271277428, -0.029594210907816887, 0.003104372415691614, -0.007706574164330959, 0.026429442688822746, 0.022262094542384148, -0.015014532022178173, 0.009065492078661919, -0.0070482539013028145, -0.0021818180102854967, 0.045877065509557724, -0.047109153121709824, -0.04266398027539253, -0.005601761396974325, 0.028482917696237564, -0.014301855117082596, -0.006181566510349512, -0.0205106008797884, 0.006643598433583975, -0.004514627158641815, 0.0010055991588160396, 0.021670209243893623, 0.04027228429913521, -0.048655297607183456, 0.05527473986148834, -0.008316577412188053, -0.002432462992146611, -0.02232249081134796, -0.026067065075039864, -0.035029880702495575, 0.024834979325532913, -0.005909782834351063, -0.06701578944921494, -0.05604781210422516, -0.0314544178545475, 0.0063234977424144745, 0.026550235226750374, -0.016898898407816887, -0.021501099690794945, -0.0388469323515892, -0.011082730256021023, -0.056869201362133026, 0.009433909319341183, -0.020051587373018265, -0.036527711898088455, -0.006613400299102068, 0.014978294260799885, 0.03179263696074486, 0.025004088878631592, -0.017285434529185295, 0.028410442173480988, 0.02324051596224308, 0.02072802744805813, -0.03879861533641815, 0.001834539114497602, 0.004239823669195175, 0.0181430634111166, 0.04947669059038162, 0.012852342799305916, -0.023228436708450317, 0.003412393620237708, -0.023445863276720047, 0.028579551726579666, 0.02446052059531212, -0.035078201442956924, -0.004726014100015163, 0.005565523635596037, 0.02877282164990902, -0.02978747896850109, -0.01230273675173521, -0.038895249366760254, 0.006377854384481907, -0.0397891141474247, -0.024098142981529236, 0.010321736335754395, 0.001737904967740178, 0.02464171126484871, -0.022914374247193336, 0.02908688224852085, -0.005369235295802355, -0.024134380742907524, -0.007078452035784721, 0.013033532537519932, 0.017140483483672142, 0.02630865015089512, -0.03493324667215347, 0.020281093195080757, -0.00015938974684104323, 0.015690971165895462, 0.04783390834927559, 0.003527146764099598, -0.010913620702922344, -0.001719786087051034, -0.017490781843662262, -0.011964516714215279, 0.059671591967344284, 0.04916262999176979, 0.026067065075039864, -0.006311418488621712, -0.029183516278862953, -0.023312991484999657, -0.014531361870467663, 0.007295879069715738, 0.007108650170266628, -0.05715910345315933, 0.01845712400972843, -0.02592211216688156, 0.004952500574290752, 0.00648052804172039, -0.02710588090121746, 0.04800301790237427, 0.01537691056728363, 0.010291538201272488, -0.04181843250989914, -0.04805133491754532, -0.009234601631760597, 0.0016065428499132395, 0.0436786413192749, 0.0313577838242054, -0.05450166389346123, -0.021513178944587708, -0.02337338775396347, 0.041407737880945206, 0.02090921625494957, 0.009313116781413555, -0.03676929697394371, -0.025777161121368408, -0.050539664924144745, -0.019882477819919586, 0.046142809092998505, 0.03140610083937645, -0.01822761818766594, -0.03188927099108696, -0.011445107869803905, -0.003992198500782251, -0.01700761169195175, 0.018469203263521194, -0.02182724140584469, -0.0027510537765920162, -0.005079332739114761, -0.023651210591197014, -0.042808931320905685, -0.04701251909136772, 0.028748661279678345, 0.01052104402333498, 0.032976407557725906, -0.09648920595645905, -0.023518338799476624, -0.0048256684094667435, 0.01546146534383297, 0.025801319628953934, -0.030898772180080414, -0.04213249310851097, 0.009790248237550259, 0.0579804964363575, -0.05469493195414543, -0.006957659497857094, 0.028096381574869156, 0.003457691054791212, 0.0053239380940794945, 0.025100722908973694, 0.02587379515171051, 0.047205787152051926, -0.002474740380421281, -0.018916135653853416, 0.003015287686139345, 0.004541805479675531, -0.004946460947394371, -0.0031798677518963814, 0.0011618747375905514, 0.026236174628138542, -0.02952173538506031, 0.012000754475593567, 0.025849636644124985, -0.023095563054084778, -0.03814633563160896, -0.011873922310769558, -0.007603900507092476, 0.0062268637120723724, -0.011384711600840092, -0.016753947362303734, -0.01379452645778656, 0.030077381059527397, 0.02407398447394371, 0.023566655814647675, 4.053161319461651e-05, -0.0040103173814713955, 0.0036660584155470133, 0.03645523637533188, -0.01832425221800804, 0.014181062579154968, -0.012163824401795864, -0.020703868940472603, -0.029835795983672142, -0.04177011549472809, -0.038242969661951065, -0.04295388236641884, -0.009548663161695004, 0.08170418441295624, 0.02582547813653946, -0.01306977029889822, 0.025366466492414474, 0.027444101870059967, 0.019049009308218956, -0.0327831394970417, -0.0033217992167919874, 0.020498521625995636, -0.015570178627967834, -0.008848065510392189, 0.01611374504864216, -0.010128467343747616, -0.006066813133656979, 0.019834160804748535, 0.005317898467183113, 0.04655350744724274, 0.006462409161031246, 0.01735791005194187, -0.027033405378460884, -0.0009006605832837522, -0.00979628786444664, 0.053873542696237564, 0.018239697441458702, -0.04483824968338013, 0.002841648180037737, -0.018348410725593567, -0.04986322671175003, 0.00543567119166255, -0.0176236554980278, -0.004022396635264158, -0.020788423717021942, 0.005631959531456232, -0.0009134947904385626, -0.014096507802605629, 0.013770367950201035, -0.011179364286363125, -0.03348373621702194, 0.02016030065715313, 0.010357974097132683, -0.017249196767807007, 0.007917961105704308, 0.007253601681441069, -0.01034589484333992, -0.01214570552110672, 0.013432147912681103, -0.028652027249336243, 0.02257615514099598, 0.004653538577258587, 0.006498647388070822, 0.009615099057555199, -0.019350990653038025, 0.015050769783556461, 0.029352625831961632, 0.030415602028369904, -0.05532305687665939, -0.0007496696780435741, 0.024532996118068695, 0.006703994702547789, 0.03027065098285675, 0.002015728037804365, -0.012707391753792763, 0.0006821012939326465, -0.004200566094368696, -0.019000692293047905, 0.015630574896931648, -0.009826485998928547, 0.03234828636050224, -0.0422532856464386, 0.00534809660166502, -0.029932430014014244, 0.003593582659959793, -0.01950802095234394, -0.0385570302605629, 0.04483824968338013, 0.019822081550955772, -0.008020634762942791, 0.0008070461917668581, 0.03966832160949707, 0.005505127366632223, -0.012097388505935669, -0.07846693694591522, -0.056820884346961975, -0.02156149595975876, -0.045273102819919586, 0.024327648803591728, 0.030633028596639633, 0.03425680845975876, -0.008141428232192993, 0.01098005659878254, -0.011698773130774498, -0.02684013731777668, -0.0004280591383576393, 0.02522151544690132, -0.015582257881760597, -0.011348473839461803, 0.010943818837404251, 0.021778924390673637, 0.03790475055575371, -0.012550361454486847, -0.014700471423566341, -0.015388989821076393, 0.0006402013241313398, 0.001098458655178547, -0.0337253212928772, -0.011076690629124641, 0.01242956891655922, -0.01734583079814911, 0.023035166785120964, -0.003412393620237708, 0.02952173538506031, 0.015014532022178173, 0.03210669755935669, 0.019954953342676163, -0.017937716096639633, 0.006553004030138254, -0.03565800562500954, -0.0026227114722132683, 0.009482227265834808, -0.00026310159591957927, -0.028579551726579666, -0.021549416705965996, -0.030463919043540955, 0.003687197109684348, 0.0028446679934859276, 0.027951430529356003, -0.008274300023913383, -0.014664233662188053, -0.011934318579733372, -0.007779049687087536, -0.018565837293863297, -0.04599785804748535, -0.04896935820579529, -0.05508147180080414, 0.011861843056976795, 0.03660018742084503, 0.018819501623511314, -0.03440175950527191, 0.022998929023742676, -0.055468007922172546, 0.023965271189808846, 0.011813526041805744, 0.02340962551534176, -0.020848819985985756, 0.028265491127967834, -0.013347593136131763, -0.006054733879864216, -0.01964089274406433, -0.02737162634730339, -0.0014555520610883832, 0.021633971482515335, -0.0126953125, 0.029328467324376106, 0.014084428548812866, -0.010931739583611488, -0.023530418053269386, 0.0014517772942781448, -0.02412230148911476, -0.0001647687895456329, 0.039378419518470764, -0.041673481464385986, 0.012659074738621712, -0.012085309252142906, -0.021187039092183113, -0.0010607108706608415, -0.012804025784134865, 0.005003837402909994, -0.011686693876981735, 0.044089335948228836, -0.0031285309232771397, -0.06861025094985962, 0.009500346146523952, 0.02522151544690132, 0.020317330956459045, 0.005571563262492418, 0.00928895827382803, 0.026018748059868813, -0.046891726553440094, 0.012290657497942448, 0.04073129966855049, -0.014893739484250546, 0.02182724140584469, -0.04082793369889259, -0.04191506654024124, 0.0037687320727854967, -0.003660018788650632, 0.044524189084768295, -0.012707391753792763, 0.020969612523913383, 0.003931802231818438, -0.0016307014739140868, 0.021621892228722572, 0.0338219553232193, -0.02064347267150879, -0.0223104115575552, -0.04783390834927559, 0.029811637476086617, 0.05271393433213234, -0.020595155656337738, -0.035295628011226654, 0.027927272021770477, 0.005308839026838541, -0.014772946946322918, -0.031067881733179092, -0.04266398027539253, -0.007827366702258587, -0.015413148328661919, -0.025293990969657898, 0.03882277384400368, -0.012816105037927628, -0.034595027565956116, 0.009905001148581505, 0.011789367534220219, -0.02284189872443676, 0.011843724176287651, 0.007120729424059391, 0.01102837361395359, -0.04326794296503067, 0.009717772714793682, -0.010267379693686962, 0.021030008792877197, -0.03510235995054245, -0.02156149595975876, -0.06194249540567398, 0.0066677569411695, 0.04546637088060379, -0.006516766268759966, 0.014193141832947731, 0.02109040506184101, 0.018867818638682365, -0.0008070461917668581, -0.0038744257763028145, -0.021996350958943367, -0.0030696445610374212, -0.005076312925666571, 0.03118867427110672, -0.021452782675623894, -0.004568983800709248, -0.027178356423974037, 0.0005133689846843481, -0.03536810353398323, -0.04749568924307823, 0.012514123693108559, -0.011143126524984837, -0.0024687007535248995, -0.01006203144788742, 0.0036841772962361574, 0.06363359093666077, -0.003487889189273119, -0.003946901299059391, -0.024110222235322, 0.007688455283641815, 0.024170618504285812, 0.021464861929416656, 0.011529662646353245, 0.009270839393138885, -0.02232249081134796, 0.035875432193279266, 0.038412079215049744, 0.008485686965286732, 0.0011792386649176478, 0.016089586541056633, -0.011638376861810684, -0.009995595552027225, 0.023119721561670303, 0.027492418885231018, -0.00825618114322424, 0.0037204150576144457, 0.013081849552690983, -0.002100283047184348, 0.05904347077012062, 0.015473544597625732, -0.009089650586247444, -0.020305251702666283, 0.02613954059779644, 0.018952375277876854, -0.03493324667215347, -0.03536810353398323, -0.003838188014924526, -0.05450166389346123, -0.016186222434043884, -0.017901478335261345, 0.0003669078287202865, 0.005151808727532625, -0.016282856464385986, 0.015739288181066513, 0.026671027764678, -0.004067694302648306, 0.007018055766820908, -0.033797796815633774, -0.01256244070827961, -0.01247788593173027, -0.01183768454939127, 0.03952337056398392, 0.007241522427648306, 0.0376148447394371, -0.0006805913872085512, -0.06431002914905548, 0.005788990296423435, 0.042978040874004364, -0.0009806856978684664, 0.001213211682625115, 0.008678955025970936, 0.020365649834275246, 0.008570241741836071, 0.011179364286363125, -0.02877282164990902, 0.020764265209436417, 0.006069832947105169, -0.012876501306891441, 0.010285498574376106, 0.03027065098285675, -0.0015167032834142447, 0.040344759821891785, -0.00805687252432108, -0.005816168617457151, -0.009228562004864216, 0.00444819126278162, -0.004155268892645836, -0.007924000732600689, 0.017889399081468582, 0.00018062282470054924, 0.003104372415691614, -0.024363886564970016, -0.02217753976583481, 0.019822081550955772, -0.0605413019657135, 0.01589631848037243, 0.01379452645778656, -0.030512236058712006, -0.00953658390790224, -0.020329410210251808, -0.03788059204816818, -0.013480464927852154, 0.010092229582369328, -0.004620320629328489, 0.04312299191951752, 0.017768606543540955, -0.0001835482835303992, -0.01218798290938139, 0.025463100522756577, 0.029135199263691902, -0.019266435876488686, -0.007483107503503561, -0.01660899631679058, 0.032493237406015396, 0.026960929855704308, 0.011372632347047329, -0.0084313303232193, 0.007525384891778231, 0.011819565668702126, -0.0470849946141243, -0.020667631179094315, -0.01078678760677576, -0.05261730030179024, 0.013299276120960712, -0.019145643338561058, -0.03488492965698242, 0.025197356939315796, 0.010122427716851234, -0.009772129356861115, -0.009693614207208157, 0.011813526041805744, -0.058270398527383804, 0.016790185123682022, 0.0008727272506803274, 0.006075872574001551, 0.030246492475271225, 0.03725246712565422, 0.005106511525809765, 0.006788549479097128, 0.03768732026219368, 0.03464334458112717, -0.0033912549261003733, 0.007730732671916485, 0.007428750861436129, -0.030512236058712006, 0.0627155676484108, -0.03065718710422516, 0.02570468559861183, 0.049307581037282944, 0.0024067945778369904, 0.0005235608550719917, -0.012290657497942448, -0.013915318995714188, 0.020450204610824585, -0.014507203362882137, 0.03307304158806801, -0.008745390921831131, -3.9635102439206094e-05, 0.055902861058712006, 0.03611701726913452, -0.00856420211493969, 0.018239697441458702, 0.018384648486971855, 0.010581440292298794, -0.025318149477243423, 0.009778168983757496, -0.00916212610900402, 0.012876501306891441, -0.008648756891489029, 0.006075872574001551, 0.015497703105211258, -0.009500346146523952, -0.004004277754575014, 0.012067190371453762, 1.5122679542400874e-05, -0.009639257565140724, 0.0033610567916184664, 0.041141994297504425, -0.022117143496870995, -0.0036418999079614878, 0.0007560867816209793, 0.010768668726086617, 0.02957005240023136, -0.03423264995217323, -0.005024976097047329, -0.0072837998159229755, -0.005867505446076393, -0.017768606543540955, 0.02244328334927559, -0.007295879069715738, -0.0041884868405759335, -0.03452255204319954, 0.006024535745382309, -0.03759068623185158, -0.018022270873188972, -0.00916212610900402, 0.02920767478644848, -0.02342170476913452, 0.030512236058712006, -0.0016729788621887565, 0.006661717314273119, -0.00013249448966234922, -0.04085209220647812, -0.02372368611395359, 0.020003270357847214, 0.018529599532485008, -0.0023146900348365307, 0.0026846176479011774, 0.02860371023416519, -0.050491347908973694, -0.01672978885471821, -0.013359672389924526, 0.027685686945915222, 0.02845875918865204, -0.04466914013028145, 0.01296105608344078, 0.03836376219987869, -0.006504687014967203, 0.03689008951187134, -0.026695186272263527, 0.019652971997857094, -0.011873922310769558, -0.014724629931151867, 0.04464498162269592, 0.007205284666270018, 0.017321672290563583, 0.019483862444758415, -0.028845297172665596, -0.046722617000341415, -0.010641836561262608, -0.01234501414000988, 0.009717772714793682, 0.0011845234548673034, -0.03222749009728432, -0.003566404338926077, -0.01967713050544262, -0.00539037398993969, -0.02652607671916485, -0.0019387227948755026, 0.009645297192037106, 0.03713167458772659, -0.018046429380774498, 0.010370053350925446, 0.011861843056976795, -0.0032734822016209364, 0.06286051869392395, -0.014845422469079494, 0.027202514931559563, 0.011342434212565422, 0.04334041848778725, 0.05575791001319885, 0.04413765296339989, 0.02495577186346054, 0.010219062678515911, 0.013999873772263527, 0.04186674952507019, 0.009216482751071453, -0.011137086898088455, 0.01370997168123722, 0.010949858464300632, -0.011698773130774498, 0.0656629130244255, -0.017901478335261345, -0.029328467324376106, -0.004475369583815336, -0.030029064044356346, -0.020498521625995636, 0.030198175460100174, -0.005671217106282711, 0.013166404329240322, -0.04181843250989914, -0.017804844304919243, -0.028700344264507294, -0.009615099057555199, 0.05474325269460678, 0.0028582571540027857, 0.025487259030342102, -0.038073860108852386, 0.01699553243815899, 0.006251022219657898, -0.035875432193279266, 0.021368227899074554, 0.0008387542911805212, 0.026381125673651695, -0.005807109177112579, 0.03184095397591591, -0.030343126505613327, 0.013250959105789661, 0.019701289013028145, -0.016307014971971512, 0.016488203778862953, 0.0016110725700855255, -0.035174835473299026, 0.023264674469828606, 0.012731550261378288, 0.013480464927852154, 0.03660018742084503, 0.03193758800625801, 0.02415853925049305, 0.002144070342183113, -0.022588234394788742, -0.019387228414416313, 0.013939477503299713, -0.008582320995628834, 0.021537337452173233, 0.012465806677937508, -0.0050581940449774265, -0.0076461778953671455, -0.033411260694265366, -0.004411953501403332, -0.003009248059242964, -0.026671027764678, 0.02592211216688156, 0.015582257881760597, -0.007525384891778231, 0.02047436311841011, 0.025269832462072372, 0.002113872207701206, -0.0181430634111166, -0.010732430964708328, 0.021597733721137047, 0.0302223339676857, -0.019302673637866974, 0.009959357790648937, 0.007911921478807926, -0.004532746039330959, -0.0053631956689059734, 0.018819501623511314, 0.0028522175271064043, -0.007344196084886789, 0.006776470225304365, 0.017599496990442276, -0.003155709244310856, -0.0145192826166749, -0.0004427807289175689, -0.014942056499421597, 0.0033489775378257036, 0.012948976829648018, -0.0034848693758249283, -0.008099150843918324, -0.006703994702547789, -0.003081723814830184, 0.004656558390706778, -0.013045611791312695, -0.005788990296423435, 0.005345076788216829, 0.029666686430573463, -0.014096507802605629, 0.012538282200694084, 0.01142094936221838, -0.0397891141474247, -0.021549416705965996, -0.04266398027539253, -0.010744510218501091, -0.0010727901244536042, -0.0067825098522007465, 0.020715948194265366, -0.02882113866508007, 0.02464171126484871, -0.026936771348118782, 0.006885183975100517, 0.023216357454657555, 0.005079332739114761, -0.028893614187836647, 0.020933374762535095, -0.04372695833444595, -0.0014804655220359564, -0.0012237810296937823, 0.00010861906048376113, -0.010418370366096497, -0.03614117577672005, -0.008570241741836071, -0.038460396230220795, -0.0022271154448390007, 0.002699716715142131, -0.004713934846222401, -0.03092293068766594, -0.017671972513198853, 0.00685498584061861, -0.021935954689979553, -0.00806291215121746, 0.009947278536856174, -0.016548600047826767, 0.020136142149567604, 0.004167348146438599, 0.014422648586332798, 0.02002742886543274, 0.015388989821076393, 0.011275998316705227, -0.03488492965698242, -0.016282856464385986, 0.06459993869066238, -0.026332808658480644, -0.032662346959114075, -0.00038238437264226377, 0.008038753643631935, 0.0011769738048315048, 0.006263101473450661, 0.009669455699622631, -0.03176847845315933, 0.047109153121709824, 0.002316199941560626, -0.020570997148752213, 0.024279331788420677, -0.02415853925049305, -0.004750173073261976, -0.01967713050544262, 0.002249764045700431, -0.05599949508905411, 0.02828964963555336, 0.020063666626811028, 0.003469770308583975, 0.008473607711493969, -0.014845422469079494, -0.021513178944587708, 0.07320037484169006, 0.008395092561841011, 0.027903113514184952, -0.023349229246377945, -0.007712613791227341, -0.006121169775724411, 0.006474488414824009, -0.004152249079197645, -0.029594210907816887, 0.005091412458568811, -0.02350625954568386, 0.017901478335261345, -0.013782447203993797, -0.008727272041141987, -0.01669355109333992, 0.009228562004864216, 0.006885183975100517, 0.032662346959114075, 0.019532179459929466, -0.017998112365603447, 0.007537464145570993, 0.00014221452875062823, -0.01438641082495451, -0.04198754206299782, -0.013468385674059391, -0.012097388505935669, -0.012598678469657898, 0.012804025784134865, 0.00558062270283699, 0.007640138268470764, 0.011143126524984837, 0.010708272457122803, -0.010364013724029064, 0.01735791005194187, -0.011777288280427456, 0.014591758139431477, -0.01832425221800804, 0.018916135653853416, 0.004729033913463354, 0.0030605848878622055, -0.040079016238451004, 0.009325196035206318, -0.014350172132253647, -0.029497576877474785, -0.0017122365534305573, -0.025390625, 0.008540043607354164, -0.023566655814647675, -0.011118968017399311, -0.024231014773249626, -0.018867818638682365, -0.024194777011871338, -0.01907316781580448, 0.007295879069715738, -0.013238879851996899, 0.025511417537927628, 0.0374215766787529, -0.00805687252432108, -0.004411953501403332, -0.02029317244887352, 0.0048739854246377945, 0.007766970433294773, 0.005650078412145376, -0.03220333158969879, 0.0017212959937751293, -0.002286001807078719, 0.009814406745135784, 0.02433972805738449, 0.016669392585754395, 0.012767788022756577, -0.002797860885038972, 0.020546838641166687, -0.0053722551092505455, 0.009343314915895462, 0.0030439759138971567, 0.005556464195251465, -0.03128530830144882, 0.011934318579733372, -0.03304888308048248, -0.047423213720321655, -0.00743479048833251, 0.0035875430330634117, -0.014881660230457783, 0.020631393417716026, -0.01652444154024124, -0.016222460195422173, -0.007054293528199196, -0.005299779586493969, 0.032396603375673294, 0.02490745484828949, -0.01277986727654934, -0.0058342874981462955, 0.033145517110824585, 0.028966089710593224, 0.008207864128053188, 0.0027208556421101093, -0.05116778612136841, 0.0076944949105381966, 0.007863604463636875, -0.004572003614157438, 0.03343541920185089, -0.007090531289577484, -0.01120352279394865, -0.008165586739778519, 0.012767788022756577, -0.01277986727654934, -0.011100849136710167, -0.009240641258656979, 0.007452909369021654, -0.041311103850603104, -0.004798490088433027, -0.007042214274406433, -0.00747706787660718, -0.03568216413259506, -0.0012947467621415854, 0.016089586541056633, 0.027878955006599426, 0.020945454016327858, -0.0014570619678124785, 0.0037868511863052845, 0.017514940351247787, 0.013456306420266628, -0.003563384525477886, -0.029231833294034004, -0.022153381258249283, 0.026815978810191154, 0.029280150309205055, 0.01629493571817875, 0.02257615514099598, -0.003735514124855399, 0.008582320995628834, 0.008141428232192993, 0.025318149477243423, 0.012151745148003101, -0.029111040756106377, 0.030415602028369904, 0.03273482248187065, 0.05160263925790787, 0.01137867197394371, -0.00021289712458383292, -0.01576344668865204, -0.007833406329154968, -0.0508778840303421, 0.02156149595975876, 0.04551468789577484, 0.009784208610653877, 0.029159357771277428, 0.009470148012042046, 0.04396854341030121, 0.014942056499421597, -0.0035301665775477886, -0.00534809660166502, 0.03536810353398323, -0.025293990969657898, 0.008135388605296612, 0.011741050519049168, 0.016488203778862953, 0.004119031131267548, 0.024931613355875015, 0.01669355109333992, 0.000967851490713656, 0.017285434529185295, -0.0217910036444664, -0.04445171356201172, -0.00046882664901204407, -0.04019980877637863, -0.018263855949044228, 0.018879897892475128, -0.005357156042009592, -0.01801019161939621, -0.006109090521931648, -0.01682642288506031, -0.02362705208361149, 0.0026015727780759335, 0.01941138692200184, -0.012073229998350143, -0.011469266377389431, 0.003072664374485612, -0.029062723740935326, -0.003638880094513297, 0.01734583079814911, 0.007229443173855543, -0.001692607649601996, -0.032082539051771164, 0.008860144764184952, -0.005456810351461172, -0.011867882683873177, 0.011487385258078575, 0.024979930371046066, -0.023349229246377945, -0.006740232463926077, -0.022394966334104538, 0.011390751227736473, 0.007483107503503561, -0.022129222750663757, 0.029014406725764275, -0.012489965185523033, 0.023349229246377945, -0.018118904903531075, -0.01796187460422516, -0.005375274922698736, 0.002969990484416485, 0.0003163258661516011, 0.006776470225304365, -0.0090715317055583, -0.02705756388604641, -0.024448441341519356, -0.013661653734743595, -0.0194234661757946, 0.062908835709095, 0.03597206622362137, -0.015195721760392189, 0.008232022635638714, 0.02385655790567398, -0.016753947362303734, 0.04483824968338013, -0.029618369415402412, 0.0008085560984909534, 0.019338911399245262, -0.017998112365603447, -0.011433028616011143, -0.009017175063490868, -0.004417993128299713, -0.02412230148911476, 0.03536810353398323, -0.009717772714793682, 0.01691097766160965, -0.03676929697394371, 0.025197356939315796, -0.04288140684366226, 0.01884366013109684, -0.03326630964875221, 0.00023252594110090286, -0.010635796934366226, 0.035029880702495575, 0.013347593136131763, -0.045442212373018265, 0.03070550411939621, -0.015050769783556461, -0.02705756388604641, -0.017297513782978058, -0.06561459600925446, 0.003602642333135009, 0.01919396035373211, 0.015087008476257324, -0.006758351344615221, 0.030777979642152786, 0.006661717314273119, -0.028434600681066513, -0.008002515882253647, 0.015920476987957954, 0.016657313331961632, -0.003687197109684348, 0.013118087314069271, -0.00898697692900896, -0.00029726329375989735, 0.007344196084886789, -0.015932556241750717, -0.0036147215869277716, -0.029642527922987938, -0.031116198748350143, 0.012743629515171051, 0.01884366013109684, -0.044572506099939346, -0.0008825416443869472, 0.011783327907323837, -0.027202514931559563, 0.01256244070827961, -0.010170744732022285, -0.017853161320090294, -0.007779049687087536, -0.008787669241428375, 0.02187555842101574, -0.01801019161939621, -0.001577854622155428, 0.025269832462072372, 0.02099377103149891, 0.0314544178545475, 0.010913620702922344, 0.009989555925130844, -0.024231014773249626, 0.010623717680573463, -0.014205221086740494, -0.02640528418123722, 0.008968858048319817, -0.013395910151302814, 0.016053348779678345, 0.005538345314562321, 0.033846113830804825, -0.002859767060726881, -0.012332934886217117, 0.0033519973512738943, -0.03565800562500954, 0.004125070758163929, -0.018239697441458702, -0.03374947980046272, 0.020220696926116943, -0.002286001807078719, -0.005746712442487478, 0.021005850285291672, -0.006619439925998449, -0.017418306320905685, 0.02882113866508007, -0.018469203263521194, 0.016270777210593224, 0.021404465660452843, 0.025318149477243423, 0.02187555842101574, 0.0045116073451936245, -0.01844504475593567, -0.02490745484828949, 0.01674186810851097, 0.008775589987635612, 0.0008614029502496123, -0.0224070455878973, 0.00494042132049799, 0.01298521552234888, -0.015956714749336243, 0.011348473839461803, 0.028168857097625732, 0.0021455802489072084, -0.02450883761048317, -4.407046071719378e-05, -0.041890908032655716, 0.05653098225593567, 0.046722617000341415, -0.04051386937499046, 0.008219943381845951, -0.028748661279678345, -0.032179173082113266, -0.01612582430243492, 0.006024535745382309, 0.0362861268222332, 0.03882277384400368, -0.0017394148744642735, 0.017031770199537277, -0.01761157624423504, 0.03672097995877266, -0.009107769466936588, -0.011239760555326939, 0.03734910115599632, 0.010551242157816887, 0.030149856582283974, -0.022636551409959793, -0.00847964733839035, 0.0010878891916945577, 0.037276625633239746, 0.007428750861436129, -0.03493324667215347, 0.008244101889431477, -0.010515004396438599, -0.004146209452301264, 0.0013974205357953906, -0.003629820654168725, -0.015437306836247444, -0.04674677550792694, 0.045224785804748535, 0.023385467007756233, 0.0340152233839035, 0.015739288181066513, 0.026163699105381966, -0.017732368782162666, -0.04191506654024124, -0.006018496118485928, -0.020667631179094315, 0.015799684450030327, 0.019495941698551178, -0.0005050644977018237, -0.015364831313490868, -0.007954198867082596, -0.04099704325199127, 0.0034456118009984493, 0.03280729800462723, -0.018118904903531075, 0.016753947362303734, -0.026381125673651695, 0.015630574896931648, -0.013214721344411373, 0.001259263837710023, -0.0013581628445535898, 0.010931739583611488, 0.018300093710422516, -0.006045674439519644, 0.013625415973365307, -0.017490781843662262, 0.025366466492414474, 0.0012434098171070218, -0.0017756526358425617, 0.0015121735632419586] \ No newline at end of file diff --git a/cache/text-embedding-3-small1177d18d-4b5a-56d3-8b08-dc86a06c62c3 b/cache/text-embedding-3-small1177d18d-4b5a-56d3-8b08-dc86a06c62c3 new file mode 100644 index 0000000000000000000000000000000000000000..245e7a3f6c110d285f644cc49df12bd2559c0375 --- /dev/null +++ b/cache/text-embedding-3-small1177d18d-4b5a-56d3-8b08-dc86a06c62c3 @@ -0,0 +1 @@ +[-0.005504374857991934, 0.001783854910172522, 0.05487002804875374, -0.020756416022777557, 0.005407863296568394, 0.02631548047065735, 0.038064152002334595, 0.0745326429605484, 0.06145855039358139, 0.012926111929118633, 0.0065434821881353855, -0.0705692395567894, -0.07952550798654556, 0.01282960083335638, 0.040226008743047714, 0.029879972338676453, -0.01604665257036686, 0.009760533459484577, -0.03963407129049301, 0.008801852352917194, 0.012449989095330238, 0.05049483850598335, 0.035130199044942856, 0.04115252196788788, 0.0012377605307847261, -0.004796623717993498, -0.05072646588087082, -0.06099529191851616, -0.03240214288234711, -0.021361220628023148, 0.0971292108297348, -0.03374043479561806, 0.0033264311496168375, 0.06037762016057968, -0.054149407893419266, -0.007579372730106115, 0.005880769807845354, 0.02078215219080448, 0.020125873386859894, -0.009187898598611355, -0.01876184344291687, -0.025388969108462334, 0.01807982847094536, 0.0046840268187224865, 0.04153856635093689, 0.0286446250975132, 0.022802459076046944, -0.010165882296860218, -0.014939986169338226, 0.01712758094072342, -0.006192823871970177, -0.03209330514073372, -0.01850447990000248, -0.032839659601449966, -0.034692682325839996, -0.03425516188144684, 0.02186308056116104, 0.0033071287907660007, 0.011838749051094055, 0.042207714170217514, 0.01326711941510439, -0.03649422898888588, 0.03695748746395111, 0.011568516492843628, 0.0006912638782523572, 0.01833719201385975, -0.016291147097945213, 0.06356893479824066, -0.05046910047531128, 0.0013543786481022835, -0.020988043397665024, -0.031552840024232864, -0.0028712183702737093, 0.0027843578718602657, 0.007875341922044754, -0.020717810839414597, 0.003683523740619421, 0.021155329421162605, 0.013106266967952251, 0.0029500359669327736, -0.01720479130744934, -0.008460844866931438, 0.01984277181327343, 0.028824780136346817, 0.01901920698583126, -0.02936524525284767, -0.02712617628276348, -0.0056394911371171474, 0.020563391968607903, 0.016805876046419144, -0.009554642252624035, -0.005697397980839014, -0.003080326598137617, 0.04166724905371666, -0.01789967343211174, -0.0018948431825265288, -0.014759831130504608, 0.00875681359320879, -0.009914952330291271, 0.035516247153282166, -0.036288339644670486, 0.0027666641399264336, -0.00451673986390233, -0.040226008743047714, 0.006350459530949593, 0.03291686996817589, -0.005147282034158707, -0.021335484459996223, 0.02618679776787758, 0.04249081388115883, -0.028001215308904648, 0.0037414308171719313, -0.01214115135371685, 0.04550197347998619, -0.03700895980000496, -0.03762663155794144, -0.06377482414245605, -0.010403944179415703, 0.038450196385383606, 0.027023231610655785, -0.007083946838974953, 0.024951450526714325, 0.009850610978901386, 0.015338900499045849, 0.019340911880135536, 0.024346644058823586, -0.008113403804600239, 0.014103553257882595, 0.013029057532548904, -0.04722631350159645, 0.038887716829776764, 0.014360916800796986, 0.009747665375471115, 0.0162525437772274, 0.02268664538860321, -0.00860239565372467, -0.02156711183488369, -0.00689092418178916, -0.02173439972102642, 0.0008493015775457025, 0.01138836145401001, 0.016625721007585526, 0.046171121299266815, -0.012347043491899967, -0.05232212319970131, 0.007656582165509462, -0.04864181578159332, 0.00016306429461110383, -0.0001628632307983935, -0.02851594239473343, 0.023342924192547798, -0.05492150038480759, -0.002581683686003089, -0.015313164331018925, 0.04236213117837906, 0.005295266397297382, -0.012314872816205025, 0.06233358755707741, -0.008782549761235714, -0.05162724107503891, -0.0571863055229187, 0.04408647119998932, -0.00640514912083745, 0.0006490400992333889, 0.017063239589333534, 0.003474415512755513, -0.004619685932993889, -0.05723777785897255, -0.04110104963183403, -0.04895065352320671, -0.016587115824222565, -0.008595961146056652, -0.01196743082255125, -0.02450106292963028, -0.056053902953863144, -0.001899668830446899, 0.006672164425253868, -0.03744647651910782, -0.016291147097945213, -0.012179756537079811, -0.08683464676141739, 0.015802156180143356, 0.008679604157805443, 0.024037808179855347, -0.08765821158885956, -0.026817340403795242, 0.029777027666568756, -0.006218560039997101, 0.00916216243058443, 0.02674013003706932, -0.013550220057368279, -0.014952854253351688, 0.03466694429516792, 0.03613391891121864, -0.0016085256356745958, 0.014090685173869133, 0.011156734079122543, 0.019726958125829697, -0.06475280970335007, 0.015120141208171844, 0.011169602163136005, 0.003709260141476989, 0.04267096891999245, 0.017372077330946922, -0.04020027443766594, 0.009168596006929874, -0.04357174411416054, 0.0052148401737213135, 0.03451252728700638, 0.020022926852107048, 0.026714393869042397, 0.03273671492934227, -0.04812708869576454, -0.007708054967224598, 0.012739523313939571, 0.0014412390301004052, -0.04025174677371979, -0.03412647917866707, -0.0008231630199588835, 0.06279683858156204, 0.02493858151137829, -0.010815726593136787, 0.031372684985399246, 0.021773003041744232, -0.022583700716495514, 0.0025575559120625257, 0.0010085456306114793, 0.002062130020931363, -0.009754099883139133, -0.037549424916505814, 0.016960294917225838, 0.01945672556757927, -0.038836244493722916, 0.010494021698832512, 0.004420228768140078, -0.022068971768021584, -0.022056104615330696, -0.02406354434788227, -0.0471748411655426, -0.005259878933429718, -0.05306847766041756, 0.02092370204627514, -0.025376100093126297, 0.02571067400276661, -0.0333029143512249, 0.03160431236028671, 0.016986031085252762, -0.0018594557186588645, -0.0229954831302166, 0.004182166885584593, 0.046994686126708984, 0.03981422632932663, 0.04231065884232521, 0.020293159410357475, -0.009947123005986214, 0.00386046152561903, 0.025427574291825294, 0.033663224428892136, -0.0060898782685399055, -0.03376616910099983, 0.008364333771169186, -0.01119533833116293, -0.029313771054148674, -0.014965723268687725, 0.017873937264084816, -0.005494723562151194, 0.028567416593432426, 0.003915151581168175, 0.031244002282619476, -0.006659296341240406, 0.019044943153858185, -0.023175638169050217, -0.0032894350588321686, 0.01509440504014492, 0.0006586912786588073, 0.02363889291882515, 0.026843076571822166, -0.0003952951810788363, -0.03708616644144058, 0.04678879305720329, 0.03960833698511124, -0.011800143867731094, -0.0156606063246727, -0.004240073729306459, 0.035773612558841705, -0.021451298147439957, 0.03049764595925808, 0.014644017443060875, 0.002662109909579158, 0.03425516188144684, 0.032376404851675034, -0.04104957357048988, -0.0046132514253258705, -0.07340024411678314, 0.014103553257882595, -0.027100440114736557, 0.02648276649415493, -0.047560885548591614, 0.008306426927447319, 0.02083362452685833, 0.05368615314364433, 0.03778105229139328, 0.013106266967952251, -0.06706908345222473, -0.03036896511912346, 0.013421538285911083, -0.05507591739296913, -0.007103249430656433, 0.0028229625895619392, 0.04825577139854431, -0.02307269163429737, -0.026688657701015472, 0.033225707709789276, -0.009091387502849102, 0.001025435165502131, 0.0070582106709480286, 0.004420228768140078, -0.03644275665283203, 0.03170725703239441, -0.044961508363485336, -0.002970946952700615, -0.030523383989930153, -0.06145855039358139, 0.01755223236978054, 0.01093154028058052, -0.049928635358810425, 0.0175908375531435, 0.007952551357448101, 0.020370369777083397, -0.05265669524669647, -0.017320604994893074, -0.03011159971356392, 0.006549916695803404, -0.06768675893545151, -0.05296553298830986, -0.018259983509778976, -0.015905102714896202, -0.02040897309780121, -0.004404143430292606, -0.04979995638132095, 0.007688752841204405, -0.024874240159988403, 0.022828197106719017, 0.02100091055035591, -0.04382910579442978, -0.030420437455177307, -0.02052478678524494, -0.004114608746021986, 0.014837040565907955, 0.011414098553359509, -0.019418122246861458, -0.013640297576785088, 0.04895065352320671, -0.015313164331018925, 0.017230527475476265, 0.03752368688583374, 0.02578788436949253, -0.0010069371201097965, -0.008184178732335567, 0.037678103893995285, -0.007843171246349812, 0.02441098541021347, -0.012951849028468132, -0.019778432324528694, 0.04784398898482323, 0.03592802956700325, -0.027074703946709633, 0.001989746233448386, -0.0031559274066239595, -0.026122456416487694, 0.002276063896715641, -0.015287428162992, -0.025427574291825294, -0.00022720424749422818, -0.048590343445539474, -0.0485646054148674, 0.04666011407971382, 0.04223344847559929, -0.0015264909015968442, -0.04295406863093376, 0.010944408364593983, 0.0003283403057139367, -0.026843076571822166, -0.020627733319997787, -0.029622608795762062, -0.011221075430512428, -0.001355182845145464, -0.023741839453577995, -0.04601670056581497, -0.03247934952378273, -0.04200182110071182, -0.014644017443060875, 0.02268664538860321, -0.024423854425549507, 0.022146182134747505, -0.016509907320141792, -0.012411383911967278, 0.03765236958861351, 0.01499145943671465, -0.019044943153858185, 0.021502770483493805, -0.05955405533313751, -0.017063239589333534, -0.030600592494010925, -0.005073289852589369, 0.0036674386356025934, 0.016844481229782104, 0.00783030316233635, -0.01346014253795147, -0.057649560272693634, 0.020022926852107048, -0.05651715770363808, 0.03147562965750694, 0.033225707709789276, -0.019096417352557182, -0.055796537548303604, -0.026173928752541542, -0.013575956225395203, 0.02510586939752102, 0.040998101234436035, 0.008074798621237278, -0.019160756841301918, 0.012784562073647976, -0.05692894011735916, 0.022416412830352783, -0.010526192374527454, -0.016123861074447632, -0.04864181578159332, 0.019315175712108612, -0.024423854425549507, -0.014785568229854107, -0.019765563309192657, -0.015274560078978539, -0.0056459251791238785, 0.04771530628204346, 0.025968037545681, -0.009850610978901386, 0.01850447990000248, 0.00774022564291954, -0.07530473917722702, -0.036545705050230026, -0.01188378781080246, -0.004056701902300119, -0.021670058369636536, -0.028412997722625732, 0.01898060366511345, -0.02195315808057785, 0.024423854425549507, -0.04089515656232834, -0.008010458201169968, 0.009644719772040844, -0.03345733508467674, 0.013640297576785088, -0.004523174371570349, -0.04372616112232208, -0.04982569068670273, 0.020113004371523857, 0.001967226853594184, 0.0014396305195987225, 0.02712617628276348, 0.030986638739705086, 0.026457030326128006, -0.00950960349291563, 0.036545705050230026, 0.0406377911567688, -0.02600664272904396, 2.5736409952514805e-05, 0.045527711510658264, 0.020460447296500206, -0.0014613455859944224, 0.007347745355218649, 0.008235651068389416, -0.0235874205827713, 0.058164287358522415, -0.01859455741941929, -0.02204323559999466, -0.02139982581138611, -0.05265669524669647, 0.007598675321787596, 0.01086719986051321, -0.03829577937722206, -0.019958587363362312, -0.02255796454846859, 0.0023532730992883444, -0.07293698936700821, -0.020975174382328987, 0.01979129947721958, 0.020692074671387672, -0.07298845797777176, 0.019392386078834534, 0.047766778618097305, 0.009245805442333221, 0.0007471601711586118, -0.014013475738465786, -0.00942596048116684, -0.05878196284174919, -0.014090685173869133, -0.05569359287619591, 0.0017275565769523382, -0.015351768583059311, 0.04007159173488617, -0.017114713788032532, -0.012861771509051323, 0.017372077330946922, -0.00858309306204319, -0.03356027975678444, -0.03049764595925808, -0.06434102356433868, -0.04887344315648079, 0.001156529993750155, 0.0038443764206022024, -0.00745069095864892, -0.03947965428233147, -0.021798739209771156, 0.00044515947229228914, 0.0406377911567688, -0.00443309685215354, 0.010687044821679592, 0.011510609649121761, 0.006048056297004223, -0.012996887788176537, 0.00923293735831976, 0.021116724237799644, 0.03268524259328842, -0.030266018584370613, 0.0009200766799040139, -0.038887716829776764, 0.005440033972263336, -0.032376404851675034, -0.03304555267095566, 0.06552489846944809, 0.023999202996492386, -0.0182857196778059, 0.03610818460583687, -0.024835636839270592, 0.00517623545601964, 0.00043952962732873857, 0.01967548578977585, -0.005900071933865547, 0.04671158641576767, 0.019868509843945503, -0.009625417180359364, 0.006376195698976517, -0.015686342492699623, -0.016754403710365295, 0.022326337173581123, 0.016484171152114868, 0.017346341162919998, -0.003928019665181637, 0.024230830371379852, 0.021682925522327423, 0.02618679776787758, 0.02213331311941147, -0.0013374891132116318, 0.025955170392990112, -0.019984323531389236, 0.022480754181742668, 0.014412390068173409, -0.0039762756787240505, 0.012964717112481594, 0.02213331311941147, -0.02092370204627514, 0.011632857844233513, -0.01885192096233368, -0.03718911483883858, -0.01837579719722271, -0.016381224617362022, -0.00039991969242691994, -0.027460750192403793, 0.017372077330946922, -0.00745069095864892, -0.01966261863708496, 0.02044757828116417, -0.022622305899858475, 0.02437238022685051, 0.03986569866538048, 0.025569124147295952, -0.038450196385383606, 0.04678879305720329, 0.009342317469418049, -0.014360916800796986, 0.013897662051022053, -0.0002165477635571733, 0.008132705464959145, -0.046994686126708984, 0.025376100093126297, -0.03453826159238815, -0.005890421103686094, 0.0405348464846611, -0.009329448454082012, -0.023703234270215034, -0.03222198784351349, 0.007367047481238842, 0.01914788968861103, 0.02910787984728813, -0.004481352400034666, 0.008100535720586777, 0.02127114310860634, 0.03476989269256592, 0.022673778235912323, 0.026946021243929863, -0.0021248625125736, -0.02441098541021347, 0.003973058424890041, -0.04889918118715286, 0.01725626364350319, 0.05180739611387253, -0.027409277856349945, -0.0028293966315686703, 0.007714489009231329, 0.01100231520831585, 0.03294260427355766, 0.031424157321453094, 0.0005855033523403108, 0.01923796720802784, 0.00036754811299033463, -0.03394632413983345, 0.016587115824222565, 0.029493926092982292, 0.04097236692905426, 0.03700895980000496, -0.022802459076046944, 0.020692074671387672, 0.013292856514453888, 0.015210218727588654, 0.019855640828609467, -8.042628178372979e-05, 0.0015771593898534775, 0.03407500684261322, -0.015313164331018925, 0.0015449889469891787, 0.003934453707188368, -0.02941671758890152, -0.005472204182296991, -0.05049483850598335, 0.031630050390958786, -0.0006108375964686275, -0.007444256916642189, 0.02182447537779808, -0.03152710199356079, -0.012218360789120197, -0.023278582841157913, 0.02281532809138298, 0.006768675986677408, -0.003377903951331973, -0.040869418531656265, -0.017487891018390656, 0.015622001141309738, 0.01300332136452198, 0.019997190684080124, 0.013550220057368279, 0.005218057427555323, 0.05713483318686485, 0.005790692288428545, 0.02514447271823883, -0.011523477733135223, 0.026405557990074158, 0.010153014212846756, 0.018864788115024567, 0.0319131501019001, 0.006594955455511808, 0.012688050046563148, -0.014450994320213795, -0.019379517063498497, -0.011414098553359509, -0.0209623072296381, 0.013743243180215359, 0.012475725263357162, 0.033019814640283585, 0.004725848324596882, -0.09651154279708862, 0.030420437455177307, -0.008814720436930656, 0.03240214288234711, -0.01046185102313757, -0.007199760992079973, 0.013408670201897621, -0.05155003070831299, 0.04184740409255028, 0.031166793778538704, -0.006723637226969004, -0.0010551927844062448, -0.008731077425181866, -0.018182775005698204, -0.020589128136634827, -0.023690365254878998, 0.0014951246557757258, -0.007778830360621214, 0.02776958793401718, -0.019083548337221146, 0.012964717112481594, 0.013241383247077465, 0.08559930324554443, -0.02980276383459568, 0.015493319369852543, -0.0525280125439167, -0.03258229419589043, 0.05342878773808479, -0.009844177402555943, -0.05275964364409447, 0.027409277856349945, 0.04117825627326965, -0.029390981420874596, -0.011510609649121761, -0.025826487690210342, 0.010442548431456089, 0.00905921682715416, 0.001617372501641512, 0.03345733508467674, -0.008164876140654087, -0.020370369777083397, -0.025376100093126297, -0.0009932646062225103, -0.018491610884666443, -0.01919936202466488, -0.03222198784351349, -0.00011128986807307228, 0.0013889619149267673, 0.014245103113353252, -0.023883389309048653, 0.029879972338676453, 0.028747571632266045, 0.010629137977957726, -0.034049272537231445, 0.002015482634305954, 0.0029114314820617437, -0.01171006727963686, 0.04702042415738106, 0.07957698404788971, 0.01470835879445076, -0.0006542677874676883, -0.02066633850336075, -0.007219063118100166, -0.015943706035614014, -0.004883483983576298, 0.027151912450790405, -0.028567416593432426, -0.012790996581315994, -0.034821365028619766, -0.031630050390958786, 0.024269435554742813, -0.018607424572110176, -0.009117123670876026, -0.03613391891121864, -0.005452902056276798, -0.0005979693960398436, 0.02514447271823883, 0.024565404281020164, 0.0292365625500679, 0.017719518393278122, -0.04372616112232208, 0.010024331510066986, 0.021296879276633263, 0.033843379467725754, -0.002470695413649082, -0.002763447118923068, -0.020087268203496933, 0.051086775958538055, -0.01102161779999733, -0.022609436884522438, 0.017500760033726692, 0.006514528766274452, 0.0015377505915239453, 0.013987739570438862, -0.009947123005986214, 0.02143843099474907, -0.0339978002011776, 0.02105238474905491, 0.010346037335693836, 0.01595657505095005, -0.0003733790072146803, -0.01850447990000248, 0.018774712458252907, 0.0035194542724639177, 0.021747266873717308, -0.043932054191827774, -0.0040760040283203125, -0.0096382861956954, 0.015776420012116432, -0.009561076760292053, 0.01587936468422413, 0.010860765352845192, 0.002047653077170253, -0.0059065064415335655, -0.02057626098394394, 0.010732083581387997, 0.04225918650627136, -0.0009425960597582161, -0.031089583411812782, -0.01991998217999935, -0.015815025195479393, -0.014592545107007027, 0.004664724227041006, -0.02226199582219124, 0.005514026153832674, 0.015943706035614014, -0.007373481523245573, -0.082459457218647, 0.04040616378188133, 0.043803371489048004, -0.001327033620327711, 0.004223988391458988, 0.013408670201897621, -0.05221917852759361, 0.02169579453766346, 0.04040616378188133, 0.016020916402339935, 0.02237780950963497, -0.01639409363269806, -0.013344328850507736, -0.003403640352189541, 0.01121464092284441, -0.03466694429516792, -0.015467583201825619, 0.0034808495547622442, -0.01171006727963686, 0.0024867807514965534, 0.027151912450790405, 0.022750986739993095, -0.014167893677949905, 0.021451298147439957, -0.033097025007009506, -0.002379009500145912, -0.02432090789079666, -0.009837742894887924, 0.031552840024232864, -0.01490138191729784, 0.024230830371379852, 0.01365316566079855, -0.0037124771624803543, 0.008164876140654087, -0.01880044862627983, 0.022622305899858475, -0.025157341733574867, 0.014631149359047413, -0.0011509001487866044, -0.0038379421457648277, -0.0038443764206022024, 0.01207681093364954, -0.008345031179487705, -0.011722935363650322, -0.010223789140582085, 0.03412647917866707, 0.01223122887313366, 0.020769283175468445, 0.05201328545808792, 0.0022680212277919054, 0.008306426927447319, 0.002271238248795271, -0.014476731419563293, -0.0035194542724639177, -0.040560584515333176, -0.031681522727012634, -0.0025109085254371166, -0.039273761212825775, 0.012868205085396767, -0.013080530799925327, -0.011401229538023472, -0.005021817050874233, 0.024475326761603355, -0.035130199044942856, -0.03827004134654999, 0.035696402192115784, -0.005269530229270458, 0.018658896908164024, -0.006948831025511026, -0.019083548337221146, 0.008152008056640625, 0.041126783937215805, 0.02415362186729908, -0.019739827141165733, -0.0175908375531435, -0.02006153203547001, -0.014734094962477684, 0.034692682325839996, 0.010886501520872116, -0.04027748107910156, -0.020885096862912178, 0.0033264311496168375, 0.01317704189568758, 0.02354881539940834, -0.010378208011388779, 0.021875949576497078, -0.03600523993372917, 0.013962002471089363, 0.0081262718886137, -0.02230059914290905, -0.022506490349769592, -0.01505579985678196, -0.01412928942590952, 0.01914788968861103, 0.013254251331090927, 0.0016535643953830004, -0.04267096891999245, -0.002922691171988845, -0.018555952236056328, 0.029519662261009216, 0.03824430704116821, -0.0064308857545256615, 0.0006212930311448872, 0.009535340592265129, 0.017372077330946922, 0.02851594239473343, -0.028412997722625732, -0.03291686996817589, 0.007418520282953978, -0.0054046460427343845, -0.01608525589108467, -0.004870615899562836, 0.04372616112232208, 0.019250834360718727, 0.02666292153298855, 0.04671158641576767, -0.017719518393278122, -0.026148192584514618, -0.03893918916583061, -0.020769283175468445, -0.01026239339262247, 0.03126974031329155, -0.010944408364593983, 0.020113004371523857, 0.022236259654164314, 0.005536545533686876, -0.003693175036460161, -0.003622399875894189, 0.002853524638339877, -0.01954680308699608, 0.02756369672715664, 0.034229427576065063, -0.01537750568240881, 0.031115321442484856, 0.01346014253795147, -0.0031205397099256516, -0.00789464358240366, -0.046299804002046585, -0.01337006501853466, -0.012533632107079029, 0.005871118512004614, -0.023342924192547798, -0.02424369938671589, -0.00230823433957994, 0.031166793778538704, -0.014811304397881031, -0.019598277285695076, 0.01225053146481514, 0.017140449956059456, 0.01509440504014492, 0.025775015354156494, 0.044189415872097015, -0.018362928181886673, 0.0235874205827713, -0.003474415512755513, -0.00405348464846611, -0.00800402369350195, -0.020769283175468445, 0.004127476830035448, 0.006067358888685703, -0.0192765723913908, 0.026083853095769882, -0.03484709933400154, -0.01815703697502613, 0.003603097517043352, 0.032376404851675034, -0.026032378897070885, -0.0012425860622897744, 0.015853628516197205, -0.009992161765694618, 0.030652064830064774, 0.02794974111020565, 0.0413326770067215, 0.02213331311941147, 0.013086964376270771, 0.004114608746021986, -0.020975174382328987, -0.0249257143586874, -0.0013439231552183628, -0.03278818726539612, 0.054406773298978806, -0.0052856155671179295, -0.0028213539626449347, 0.00774022564291954, 0.006331156939268112, -0.0082999924197793, 0.022969746962189674, 0.0326080322265625, -0.004976778291165829, -0.00970262661576271, 0.03291686996817589, 0.014309444464743137, -0.01876184344291687, 0.017063239589333534, 0.021116724237799644, -0.027151912450790405, -0.012475725263357162, 0.015030063688755035, -0.02019021473824978, -0.01777099072933197, 0.008538054302334785, 0.002004222944378853, 0.03062632866203785, 0.009573944844305515, -0.03605671226978302, -0.010378208011388779, 0.0028245709836483, 0.009998595342040062, -0.009432394057512283, 0.022107576951384544, 0.003644919255748391, 0.00015502165479119867, -0.0016953860176727176, -0.0006007843185216188, -0.016857348382472992, -0.00987634714692831, -0.015892233699560165, 0.014399521984159946, -0.0006466273334808648, -0.014682622626423836, -0.007199760992079973, -0.006009452044963837, 0.006826582830399275, 0.021361220628023148, 0.011587819084525108, 0.0016149597940966487, -0.004426662810146809, -0.028670361265540123, 0.02345873787999153, -0.0017935060895979404, 0.016072388738393784, 0.026302611455321312, 0.029004935175180435, 0.010474719107151031, -0.009496735408902168, -0.036545705050230026, -0.0009659196366555989, -0.014335180632770061, 0.020022926852107048, 0.026431294158101082, -0.006762241944670677, -0.01746215485036373, -0.01388479396700859, -0.034563999623060226, 0.006652862299233675, -0.0028100942727178335, -0.06094381958246231, 0.016921689733862877, 0.01046185102313757, 0.013447274453938007, 0.0412297286093235, 0.012803864665329456, -0.004233639687299728, 0.01544184610247612, 0.03662291169166565, 0.06032614782452583, -0.003989143762737513, -0.025247419252991676, 0.043803371489048004, 0.01768091507256031, -0.00840937253087759, -0.02127114310860634, -0.017281999811530113, -0.005021817050874233, -0.01918649487197399, 0.04485856369137764, -0.007019605953246355, 0.00650166068226099, -0.00933588296175003, 0.022017499431967735, 0.014335180632770061, 0.0034776325337588787, -0.02885051630437374, 0.02164432220160961, 0.02112959325313568, 0.024745559319853783, -0.008036194369196892, 0.0060062347911298275, 0.001458128564991057, 0.012083244509994984, 0.0365714393556118, 0.004542476497590542, 0.015506187453866005, 0.050263211131095886, 0.008769681677222252, -0.01582789234817028, -0.02134835347533226, -0.05147282034158707, 0.016059519723057747, 0.001947924611158669, 0.01672866754233837, 0.0022261994890868664, -0.021361220628023148, 0.0406377911567688, -0.03368896245956421, -0.023304319009184837, 0.016973162069916725, -0.006427668500691652, -0.019649749621748924, -0.0021699010394513607, -0.005874335765838623, -0.012006036005914211, -0.03693174943327904, -0.03209330514073372, -0.03286539763212204, -0.03173299506306648, -0.0008581484435126185, -0.013524483889341354, -0.008010458201169968, 0.02363889291882515, 0.017719518393278122, -0.019122153520584106, -0.016934558749198914, -0.039788492023944855, -0.018427269533276558, 0.0209623072296381, 0.009432394057512283, -0.02087222971022129, 0.032119039446115494, 0.023149902001023293, 0.025093000382184982, -0.004899569321423769, -0.005983715411275625, 0.012926111929118633, 0.003239570651203394, 0.024951450526714325, 0.02441098541021347, -0.019032076001167297, 0.012102547101676464, 0.002892129123210907, 0.034692682325839996, -0.03356027975678444, 0.000511511170770973, 0.01613673008978367, 0.015519055537879467, 0.02178587205708027, 0.011246811598539352, -0.03265950456261635, -0.03312275931239128, -0.026122456416487694, -0.023921994492411613, 0.008782549761235714, -0.04779251292347908, -0.03852740675210953, 0.04421515390276909, 0.03281392529606819, -0.009548208676278591, 0.01621393859386444, 0.027074703946709633, -0.011201772838830948, 0.08040054887533188, -0.011935260146856308, 0.025762146338820457, 0.005488289520144463, -0.021039515733718872, -0.01569920964539051, 0.006418017204850912, -0.004320499952882528, -0.012861771509051323, 0.03734353184700012, 0.015364637598395348, -0.011118129827082157, 0.03307128697633743, -0.008711774833500385, 0.023445870727300644, 0.02972555346786976, 0.043417323380708694, 0.03229919448494911, 0.018620293587446213, -0.011060222052037716, 0.02268664538860321, -0.006305420771241188, -0.013254251331090927, -0.0016262194840237498, 0.0003808184410445392, -0.0061960406601428986, -0.024012072011828423, 0.01880044862627983, -0.02074354700744152, -0.0009104255004785955, 0.0160080473870039, 0.004970344249159098, 0.0002931538037955761, 0.022287731990218163, -0.0169474259018898, 0.018774712458252907, 0.004967127460986376, 0.030909428372979164, -0.01586649753153324, -0.023188505321741104, 0.0021843777503818274, 0.005523676984012127, 0.011150299571454525, -0.000616467441432178, -0.003751081880182028, 0.016934558749198914, -0.0331999696791172, 0.013447274453938007, -0.007244799751788378, 0.031038111075758934, -0.012115415185689926, -0.006813714746385813, -0.002192420419305563, 0.01859455741941929, 0.017655177041888237, 0.018015487119555473, -0.010603400878608227, -0.0011340106138959527, 0.0012007644400000572, 0.009175030514597893, 0.005279181059449911, -0.01028813049197197, 0.0379612073302269, 0.047818250954151154, 0.012752391397953033, -0.025813620537519455, 0.0004210315819364041, -0.0035837951581925154, 0.034100744873285294, -0.002586509333923459, -0.03546477481722832, -0.012720220722258091, 0.004034182522445917, -0.0029484275728464127, 0.0010029157856479287, -0.010043634101748466, 0.03188741207122803, -0.015107273124158382, -0.04385484382510185, -0.027203386649489403, -0.009567510336637497, 0.020679205656051636, 0.014798436313867569, 0.01196743082255125, 0.01461828127503395, 0.0077466596849262714, -0.014167893677949905, 0.011562082916498184, 0.0252731554210186, -0.01171006727963686, -0.009696193039417267, 0.007978287525475025, 0.0027055402752012014, -0.009689758531749249, -0.021425561979413033, -0.008686038665473461, -0.017526496201753616, 0.004922088701277971, 0.0008388461428694427, 0.023188505321741104, 0.010629137977957726, -0.012964717112481594, -0.011253245174884796, -0.016201071441173553, 0.020254556089639664, 0.0021875950042158365, -0.012366345152258873, -0.008287124335765839, 0.055230338126420975, -0.02092370204627514, -0.01365316566079855, -0.00019995984621345997, -0.0038443764206022024, -0.029622608795762062, 0.007495729718357325, 0.019984323531389236, 0.045399028807878494, 0.03443531692028046, -0.0005111090140417218, -0.003458330174908042, 0.017050372436642647, -0.01898060366511345, 0.01777099072933197, -0.03842446208000183, 0.0008686038781888783, -0.0014806478284299374, 0.0017195139080286026, 0.0186331607401371, -0.010217354632914066, 0.010101540945470333, -0.007881775498390198, 0.03981422632932663, 0.023355793207883835, 0.012790996581315994, -0.006167087238281965, 0.024835636839270592, 0.012173322029411793, 0.00873751100152731, 0.0005473008495755494, -0.004484569653868675, -0.020897965878248215, -0.004732282366603613, 0.001360008493065834, 0.015930838882923126, -0.01617533341050148, -0.013279987499117851, 0.013074096292257309, -0.015519055537879467, -0.031681522727012634, 0.00039449092582799494, 0.007141854148358107, -0.009104255586862564, -4.3455325794639066e-05, 0.03420368954539299, 0.005353173241019249, -0.0029870320577174425, 0.01768091507256031, -0.022017499431967735, -0.001184679102152586, 0.027743849903345108, -0.00687805563211441, 0.0060898782685399055, -0.03605671226978302, -0.07417233288288116, -0.027975479140877724, -0.0027409277390688658, -0.00774022564291954, 0.029004935175180435, 0.019160756841301918, -0.008312860503792763, 0.0175908375531435, -0.005436816718429327, -0.04385484382510185, 0.025388969108462334, -0.009837742894887924, -0.010983013547956944, -0.007032474037259817, 0.0035580587573349476, -0.026508502662181854, -0.016072388738393784, -0.020807888358831406, 0.001935056410729885, 0.004635770805180073, -0.03464120998978615, 0.015776420012116432, -0.005053987726569176, -0.009747665375471115, -0.010346037335693836, -0.029082143679261208, 0.017346341162919998, 0.02794974111020565, 0.004552127793431282, -0.012784562073647976, -0.010326734744012356, 0.009432394057512283, 0.01302262395620346, 0.017835332080721855, 0.013421538285911083, -0.003689957782626152, 0.01979129947721958, 0.021013779565691948, 0.012842468917369843, -0.019624013453722, 0.022274862974882126, 0.012546500191092491, 0.023793311789631844, -0.0444982536137104, -0.018272852525115013, -0.04357174411416054, 0.0432114340364933, 0.014155025593936443, 0.006051273550838232, 0.0050379023887217045, 0.007302706595510244, 0.035516247153282166, -0.018646029755473137, 0.01720479130744934, 0.012482158839702606, 0.012803864665329456, -0.026971759274601936, -0.023947730660438538, -0.060017310082912445, 0.007186892908066511, 0.023278582841157913, 0.026251139119267464, -0.013897662051022053, -0.010629137977957726, -0.01729486882686615, 0.0026170711498707533, -0.047509413212537766, 0.03688027709722519, -0.06969419866800308, -0.009548208676278591, -0.0011830705916509032, 0.01330572459846735, -0.006392281036823988, -0.009580378420650959, -0.0034872835967689753, -0.015943706035614014, 0.023741839453577995, 0.04586228355765343, -0.05368615314364433, 0.02872183360159397, 0.01384618878364563, -0.002660501515492797, 0.021875949576497078, 0.027975479140877724, -0.007341311313211918, -0.027023231610655785, -0.016458434984087944, 0.015261691994965076, -0.009200766682624817, -0.029185090214014053, -0.013035492040216923, -0.009586812928318977, 0.009104255586862564, -0.017088977620005608, -0.01665145717561245, 0.005330653861165047, 0.005211623385548592, -0.025440441444516182, -0.004404143430292606, 0.024333776906132698, -0.01975269429385662, -0.03567066416144371, 0.005903289187699556, -0.01898060366511345, -0.0011420532828196883, 0.015647737309336662, -0.044446781277656555, 0.002794009167701006, -0.006054490804672241, 0.03739500418305397, -0.00970262661576271, -0.026843076571822166, 0.035130199044942856, 0.009271541610360146, 0.026276875287294388, -0.018646029755473137, -0.0013085355749353766, -0.0070389085449278355, 0.022583700716495514, -0.03160431236028671, -0.033097025007009506, -0.016329752281308174, 0.014734094962477684, -0.0015168397221714258, -0.026559974998235703, 0.025208814069628716, 0.017397813498973846, 0.016895953565835953, -0.013434406369924545, 0.00433336803689599, 0.005243793595582247, -0.0074828616343438625, -0.01789967343211174, 0.0029854236636310816, -0.08354038745164871, -0.013910530135035515, 0.025118736550211906, 0.020177345722913742, -0.029056407511234283, -0.017719518393278122, -0.015145877376198769, 0.006672164425253868, -0.004484569653868675, 0.018427269533276558, 0.016844481229782104, 0.0036577873397618532, -0.028824780136346817, -0.013974870555102825, -0.0031446677166968584, -0.049928635358810425, 0.023137032985687256, -0.021875949576497078, -0.0015562486369162798, 0.014193630777299404, -0.03631407395005226, -0.012070376425981522, 0.03425516188144684, -0.01678013987839222, 0.009625417180359364, 0.024655481800436974, -0.005533328279852867, 0.035310354083776474, -0.0024192226119339466, -0.005507592111825943, -0.01626541092991829, 0.01953393593430519, 0.020177345722913742, -0.002993466332554817, 0.034821365028619766, 0.010732083581387997, -0.022017499431967735, -2.2192627511685714e-05, -0.025414705276489258, -0.004503871779888868, 0.018259983509778976, 0.007926814258098602, -0.0023950946051627398, 0.02156711183488369, 0.01518448255956173, 0.002769881160929799, -0.014965723268687725, -0.01160068716853857, 0.005600886419415474, -0.04269670695066452, 0.016098124906420708, -0.03281392529606819, -0.0023275366984307766, 0.016612853854894638, -0.012700919061899185, -0.0017404247773811221, -0.016702931374311447, -0.005890421103686094, -0.03188741207122803, 0.015171614475548267, 0.03798694163560867, 0.06367187947034836, 0.014644017443060875, -0.01207681093364954, -0.01894199848175049, -0.008994875475764275, -0.01151704415678978, -0.0225965678691864, -0.019263703376054764, 0.009110689163208008, 0.01505579985678196, -0.02208184078335762, -0.01979129947721958, 0.007611543405801058, 0.005723134148865938, 0.021335484459996223, -0.04933669790625572, 0.004828793928027153, -0.012585104443132877, -0.021541375666856766, 0.052039023488759995, -0.04601670056581497, 0.00498321233317256, 0.025208814069628716, 0.04619685560464859, 0.03615965694189072, 0.025427574291825294, 0.018427269533276558, 0.033920589834451675, -0.0040760040283203125, 0.015081536956131458, 0.024990055710077286] \ No newline at end of file diff --git a/cache/text-embedding-3-small126b4793-0087-5113-8835-fb5e47cc3f7a b/cache/text-embedding-3-small126b4793-0087-5113-8835-fb5e47cc3f7a new file mode 100644 index 0000000000000000000000000000000000000000..47ecf37467af30ca866ff46952d99f70eed1329a --- /dev/null +++ b/cache/text-embedding-3-small126b4793-0087-5113-8835-fb5e47cc3f7a @@ -0,0 +1 @@ +[0.014299891889095306, 0.030242903158068657, 0.0851563960313797, 0.020217498764395714, 0.001302290358580649, 0.026480399072170258, 0.013156852684915066, 0.06643912941217422, 0.020038899034261703, -0.02325369603931904, 0.023265602067112923, -0.05791396647691727, -0.03405303135514259, 0.0341244712471962, 0.05291317403316498, 0.054532475769519806, 0.03676774725317955, 0.027980638667941093, -0.0084001449868083, 0.020538978278636932, -0.01401413232088089, 0.03150500729680061, 0.038625188171863556, 0.04948405548930168, 0.0023634708486497402, 0.011960234493017197, -0.028099704533815384, -0.08248930424451828, 0.008941897191107273, -0.03564852476119995, 0.05243690684437752, -0.043864116072654724, 0.02876647748053074, 0.04162566363811493, -0.011591128073632717, 0.03641054779291153, -0.017288461327552795, 0.025813626125454903, 0.029147490859031677, 0.0382203608751297, -0.014097479172050953, -0.006316480226814747, -0.031981274485588074, -0.006804652977734804, 0.04417368769645691, 0.06458169221878052, -0.0002565511967986822, -0.046769339591264725, 0.030409594997763634, 0.00489661144092679, -0.021932058036327362, 0.010299256071448326, 0.04267344996333122, -0.035981908440589905, 0.00766788562759757, 0.03843468055129051, 0.023539455607533455, 0.006679633166640997, 0.004146492574363947, 0.03495793789625168, 0.021693924441933632, -0.0012323387200012803, 0.017467062920331955, 0.0341959111392498, -0.06277187913656235, 0.0022905427031219006, -0.019419753924012184, 0.06686776876449585, -0.028075890615582466, 0.035267509520053864, -0.035243697464466095, -0.01988411322236061, 0.005405621137470007, 0.028790289536118507, -0.0027876454405486584, 0.0067093996331095695, -0.01819336786866188, 0.010793382301926613, 0.03510081768035889, -0.007013019639998674, 0.0026313706766813993, -0.0091085908934474, -0.010638595558702946, -0.004188165534287691, 0.027813944965600967, 0.012275760993361473, -0.0012449895730242133, 0.019681699573993683, -0.01775282248854637, 0.0269328523427248, 0.01414510514587164, 0.029766635969281197, -0.00851921085268259, 0.031743139028549194, -0.021634390577673912, -0.05143674835562706, 0.0005424969713203609, -0.012335293926298618, 0.014180825091898441, 0.015323864296078682, 0.028575969859957695, 0.007013019639998674, -0.005069258157163858, -0.0026403006631881, 0.006358153652399778, -0.022777430713176727, -0.004566201940178871, 0.018681541085243225, -0.0016669316682964563, 0.002028596354648471, -0.04469757899641991, -0.009894429706037045, -0.04464995488524437, 0.022622643038630486, -0.02631370536983013, -0.008554930798709393, -0.049674563109874725, -0.012103114277124405, 0.010459995828568935, -0.01365693286061287, 0.04133990406990051, -0.017026515677571297, 0.018776794895529747, -0.022301163524389267, -0.004414392169564962, 0.03345770016312599, -0.025527866557240486, -0.007114225998520851, -0.017086049541831017, -0.0774885043501854, 0.015609623864293098, 0.007257105782628059, -0.05534213036298752, -0.026004133746027946, 0.04631688445806503, 0.00565268425270915, -0.0011274113785475492, -0.014668998308479786, -0.003512463066726923, -0.000450220366474241, 0.006649866700172424, 0.0019988296553492546, 0.044126059859991074, 0.03460073843598366, -0.07048739492893219, 0.0672011598944664, -0.03867281228303909, 0.011186301708221436, -0.003455906407907605, 0.025504054501652718, 0.003441023174673319, -0.028242584317922592, -0.0010247164173051715, 0.015026197768747807, 0.02509922720491886, 0.005694357678294182, -0.011424435302615166, 0.0353865772485733, 0.012228134088218212, -0.009531277231872082, -0.03155263513326645, 0.03169551491737366, -0.04129227623343468, 0.03502937778830528, 0.02609938569366932, -0.012049534358084202, -0.024253854528069496, 0.025194481015205383, -0.0538657046854496, -0.020038899034261703, -0.015716783702373505, -0.010912449099123478, 0.010263536125421524, 0.007340452633798122, -0.09687253832817078, 0.0015463767340406775, 0.0007032367866486311, -0.03898238763213158, -0.05286554619669914, -0.03579140454530716, -0.023337041959166527, -0.004786475095897913, -0.006584379822015762, 0.007775045465677977, -0.04817432537674904, -0.027742505073547363, -0.005599104333668947, 0.010775522328913212, -0.004804335068911314, 0.06801080703735352, 0.0509604811668396, -0.00015162379713729024, 0.015740597620606422, 0.024134788662195206, -0.017467062920331955, 0.04636451229453087, 0.01845531351864338, 0.04929354786872864, -0.05896175280213356, -0.016609782353043556, -0.01801476813852787, -0.00783457886427641, 0.0026596488896757364, 0.017669474706053734, -0.06220036372542381, 0.012835373170673847, -0.010102796368300915, 0.0533418133854866, 0.04257819801568985, 0.026623278856277466, -0.0336005799472332, -0.01741943508386612, -0.02921893075108528, 0.04048262536525726, 0.027123358100652695, -0.03131449967622757, 0.004206025507301092, -0.015692969784140587, 0.0457453653216362, 0.013764092698693275, 0.022586923092603683, 0.007513098884373903, 0.009858709760010242, -0.007471425458788872, -0.052722666412591934, 0.0257421862334013, 0.003506509819999337, -0.01759803481400013, 0.01232338696718216, -0.03405303135514259, 0.07424989342689514, -0.020396098494529724, -0.02189633809030056, 0.008971664123237133, 0.028218770399689674, -0.0509604811668396, -0.03205271437764168, 0.027742505073547363, -0.047269418835639954, -0.04550723358988762, -0.02408716268837452, 0.01697888970375061, 0.018288621678948402, -0.027861570939421654, -0.029385622590780258, 0.034386418759822845, 0.018883954733610153, -0.011757820844650269, -0.014168919064104557, -0.01401413232088089, 0.00031961925560608506, 0.022801242768764496, -0.021074777469038963, 0.022444043308496475, -0.01515717152506113, -0.02103905752301216, 0.061438336968421936, -0.028052078559994698, 0.003622599644586444, -0.02598031982779503, 0.012240041047334671, 0.026123199611902237, -0.006125973537564278, 0.01656215637922287, -0.03105255402624607, 0.016764570027589798, 0.005884863901883364, 0.04595968499779701, 0.014585651457309723, -0.006423640064895153, -0.031243061646819115, 0.002719182288274169, -0.029528502374887466, -0.02888554334640503, 0.016109703108668327, -0.029433250427246094, -0.01474043820053339, 0.023063190281391144, -0.054056212306022644, 0.028480717912316322, 0.01578822359442711, -0.041054144501686096, -0.01388315949589014, 0.013323546387255192, 0.007513098884373903, 0.008120338432490826, -0.01952691376209259, 0.041054144501686096, 0.018229087814688683, 0.04938880354166031, 0.012752027250826359, -0.06339102983474731, -0.0021804061252623796, -0.09944437444210052, 0.01618114300072193, 0.01795523427426815, -0.020015086978673935, -0.02002699300646782, -0.01697888970375061, 0.019955553114414215, 0.05048421397805214, 0.0185505673289299, -0.005015678238123655, -0.024789653718471527, 0.030623914673924446, 0.030742982402443886, -0.022598830983042717, -0.00691776629537344, -0.008019131608307362, -0.0031939600594341755, 0.0014846109552308917, -0.018955394625663757, 0.03205271437764168, -0.01570487767457962, -0.005649707745760679, 0.009858709760010242, 0.002494444139301777, -0.030242903158068657, 0.032314661890268326, -0.023813309147953987, -0.01584775745868683, -0.034624550491571426, -0.029647570103406906, -0.005640777759253979, -0.0002275287260999903, -0.03405303135514259, 0.026623278856277466, 0.042173370718955994, 0.00870971754193306, -0.013180666603147984, -0.04905541613698006, -0.005869980435818434, -0.008078665472567081, -0.0159430094063282, -0.017086049541831017, -0.0269328523427248, -0.03445785865187645, -0.020253218710422516, 0.012621053494513035, -0.03883950784802437, -0.023896655067801476, -0.004866844974458218, 0.019145900383591652, -0.019336406141519547, -0.045554861426353455, 0.00019385521591175348, 0.01715748943388462, 0.020955711603164673, 0.006131927017122507, 0.02645658701658249, -0.01662169024348259, 0.003128473414108157, -0.0014898201916366816, 0.014502305537462234, 0.0012397803366184235, 0.0012286178534850478, 0.027147172018885612, -0.007769091986119747, -0.008108431473374367, 0.04174473136663437, 0.01656215637922287, -0.007209479343146086, 0.003670226316899061, -0.030600102618336678, 0.046412140130996704, 0.017633754760026932, -0.011073188856244087, -0.015561996959149837, 0.025885066017508507, 0.0017487899167463183, 0.039030011743307114, 0.018181461840867996, -0.057437699288129807, 0.0019616212230175734, -0.061438336968421936, -0.027813944965600967, 0.02237260341644287, 0.002882898785173893, 0.03274330124258995, -0.059009380638599396, 0.02082473784685135, -0.015073824673891068, -0.04948405548930168, 0.01037069596350193, -0.00040408209315501153, 0.02195587009191513, -0.0013119644718244672, -0.026027945801615715, -0.026837598532438278, 0.0005395202897489071, -0.0008736507734283805, 0.009203843772411346, 0.032719485461711884, 0.038649000227451324, -0.002665602369233966, -0.06115257740020752, 0.0057241241447627544, 0.047602806240320206, 0.0035779497120529413, 0.001046297256834805, -0.02779013104736805, -0.0016922332579270005, -0.04526910185813904, -0.036220043897628784, 0.008793064393103123, -0.008090571500360966, 0.02571837417781353, 0.014418958686292171, -0.03057628870010376, -0.07820290327072144, 0.04562630131840706, -0.06629624962806702, 0.04586443305015564, 0.01949119381606579, -0.002504862379282713, -0.049674563109874725, -0.0013424752978608012, -0.0030406618025153875, -0.00878711137920618, 0.016788382083177567, 0.0024244925007224083, -0.03202889859676361, -0.007120179478079081, -0.01783616840839386, 0.05119861289858818, -0.016276396811008453, -0.007554772309958935, -0.01691935583949089, 0.006929672788828611, -0.055151622742414474, -0.04414987564086914, 0.03614860400557518, 0.0066736796870827675, -0.0008617441053502262, -0.02752818539738655, 0.02171773836016655, -0.001089458935894072, 0.0006615634774789214, 0.022289257496595383, -0.045316725969314575, -0.035219885408878326, 0.02094380557537079, -0.020836645737290382, 0.010465948842465878, -0.008894271217286587, -0.04731704294681549, -0.013502146117389202, 0.038625188171863556, -0.025551680475473404, -0.019896019250154495, -0.008376331068575382, -0.024372922256588936, 0.014538025483489037, -0.016776476055383682, -0.03605334833264351, -0.0695824921131134, 0.038387052714824677, -0.024932533502578735, 0.013621212914586067, -0.027123358100652695, 0.03140975534915924, 0.058533113449811935, 0.03664868324995041, 0.02729005180299282, 0.018943486735224724, 0.0417209155857563, -0.029766635969281197, 0.03176695480942726, 0.00925742369145155, -0.011543501168489456, 0.02669471874833107, -0.0034499531611800194, 0.02850452996790409, -0.02476584166288376, -0.027266237884759903, 0.013871252536773682, -0.022051123902201653, -0.035862844437360764, -0.010799335315823555, -0.03250516578555107, 0.022027309983968735, -0.010477855801582336, -0.0214200709015131, -0.01994364708662033, 0.018121927976608276, 0.0033963732421398163, -0.00782267190515995, 0.02153913863003254, -0.05924751237034798, 0.0417209155857563, 0.015752503648400307, 0.027504371479153633, 0.04207811504602432, -0.010781475342810154, -0.031219247728586197, -0.034529298543930054, 0.006286713760346174, -0.03845849260687828, 0.03290999308228493, -0.007525005377829075, 0.09801557660102844, -0.017086049541831017, -0.004822195041924715, -0.014799971133470535, 0.019622165709733963, 0.004164352547377348, -0.03162407502532005, -0.02370614930987358, 0.0025361173320561647, -0.0016490716952830553, 0.024110974743962288, 0.03190983459353447, -0.006542706396430731, -0.030028581619262695, -0.02598031982779503, -0.009918242692947388, -0.006828466430306435, -0.01146610826253891, 0.00977536290884018, -0.038529932498931885, 0.013573586009442806, -0.0028099704068154097, 0.027599625289440155, -0.009870616719126701, -0.019086366519331932, 0.01916971430182457, -0.02030084654688835, -0.0028352721128612757, -0.005575290881097317, -0.0032981433905661106, 0.037172574549913406, -0.039125267416238785, -0.010436182841658592, 0.014133199118077755, -0.02130100503563881, 0.024480082094669342, -0.016931261867284775, 0.004063145723193884, 0.020729485899209976, 0.002850155346095562, 0.029076050966978073, -0.0023724008351564407, 0.005515757482498884, -0.017383715137839317, 0.003307073377072811, -0.0492459237575531, 0.0027816921938210726, 0.03457692265510559, 0.01976504549384117, 0.03757740184664726, 0.018026674166321754, 0.016252582892775536, -0.009150263853371143, -0.01254961360245943, 0.020419912412762642, -0.029790449887514114, 0.021705830469727516, 0.030647728592157364, 0.014799971133470535, -0.012180507183074951, -0.009733689948916435, -0.03210034221410751, -0.007167805917561054, 0.007245199289172888, -0.015681063756346703, -0.002929036971181631, -0.007340452633798122, 0.02595650590956211, -0.02986188977956772, 0.028599783778190613, -0.024408642202615738, -0.03810129314661026, -0.015478651039302349, -0.019074460491538048, 0.015538183972239494, -0.0010306697804480791, 0.0023470993619412184, 0.004075052682310343, 0.059009380638599396, -0.013895065523684025, -0.0079536447301507, -0.03672012314200401, 0.001516610151156783, -0.022063029929995537, -0.07505954802036285, 0.005718170665204525, 0.0033279098570346832, 0.007108272518962622, -0.03636292368173599, -0.04441181942820549, -0.02293221652507782, -0.01765756867825985, 0.010829102247953415, 0.006441500037908554, -0.003057033522054553, -0.009525323286652565, 0.018895860761404037, -0.008900224231183529, 0.013061599805951118, -0.027623439207673073, -0.009602717123925686, -0.0070487395860254765, -0.034029219299554825, 0.015407211147248745, -0.047626618295907974, -0.016371650621294975, 0.04672171175479889, -0.021229565143585205, 0.02488490752875805, -0.0044679720886051655, 0.06415305286645889, 0.02874266356229782, 0.029195116832852364, 0.007191619370132685, 0.008275125175714493, -0.008108431473374367, -0.004938284866511822, -0.00435485877096653, 0.012763933278620243, -0.0061200205236673355, 0.041530411690473557, -0.007804811932146549, 0.005584220867604017, 0.012632960453629494, 0.03579140454530716, 0.023063190281391144, -0.0070368326269090176, 0.0017815331229940057, -0.0038131061010062695, -0.024372922256588936, -0.025789814069867134, 0.007650025654584169, -0.015681063756346703, -0.04150659590959549, -0.009269330650568008, 0.003045126795768738, 0.00979322288185358, -0.013442613184452057, 0.015800129622220993, -0.011924514546990395, -0.00803103856742382, -0.03302906081080437, 0.04612638056278229, -0.013204479590058327, 0.021086685359477997, -0.013013972900807858, 0.023122722283005714, -0.026123199611902237, -0.03288618102669716, 0.017026515677571297, -0.004768615122884512, 0.008882364258170128, 0.03872044011950493, -0.002542070811614394, -0.0022682177368551493, -0.011460155248641968, 0.003950032405555248, 0.026051759719848633, -0.0029275487177073956, 0.04303064942359924, 0.005006748251616955, 0.004476902075111866, -0.0034916263539344072, -0.0028977820184081793, 0.012109067291021347, -0.015228611417114735, 0.0057925875298678875, 0.01630021072924137, -0.00262988219037652, 0.012418640777468681, -0.10611210763454437, 0.00822154525667429, 0.028956983238458633, 0.001291872002184391, -0.017764728516340256, -0.004584061913192272, 0.0009785781148821115, -0.015657249838113785, -0.009007384069263935, 0.027575811371207237, 0.014085572212934494, -0.003031731816008687, -0.03210034221410751, -0.027385305613279343, -0.006197413429617882, -0.028814103454351425, 0.01256152056157589, -0.03448167070746422, 0.008679951541125774, -0.03033815510571003, 0.020277032628655434, 0.02097952552139759, 0.02631370536983013, -0.034148283302783966, -0.007935784757137299, -0.012978252954781055, 0.0030094068497419357, 0.08887127041816711, -0.03810129314661026, -0.04767424613237381, 0.00200031790882349, 0.008626370690762997, 0.021265285089612007, -0.026742346584796906, -0.03448167070746422, -0.011382761411368847, 0.013180666603147984, 0.013478333130478859, 0.0032118200324475765, -0.018026674166321754, -0.0002818528446368873, -0.006923719774931669, -0.013549773022532463, -0.04222099483013153, -0.018288621678948402, 0.0020732462871819735, 0.0012747561559081078, -0.01474043820053339, 0.011233928613364697, -0.022646456956863403, -0.0012025721371173859, -0.0301000215113163, -0.022741710767149925, -0.02631370536983013, -0.0011192255187779665, 0.028837917372584343, -0.006882046349346638, -0.012287667021155357, 0.05705668777227402, 0.001049273880198598, -0.03460073843598366, -0.01697888970375061, 0.0038488260470330715, -0.0057092406786978245, 0.0027206705417484045, 0.0423162505030632, -0.02014605887234211, -0.02557549439370632, -0.027480557560920715, -0.030552474781870842, -0.00022343581076711416, -0.008257265202701092, 0.00099792645778507, -0.011591128073632717, -0.029433250427246094, -0.00946579035371542, 0.007650025654584169, 0.06696302443742752, 0.010227816179394722, 0.02462296187877655, -0.027337677776813507, 0.008066758513450623, -0.030552474781870842, 0.012752027250826359, 0.025313546881079674, 0.013085412792861462, -0.02299175038933754, 0.024408642202615738, -0.0023337043821811676, -0.03917289152741432, -0.008483490906655788, 0.0006745863938704133, 0.014514211565256119, -0.011352995410561562, 0.003717852756381035, 0.03724401444196701, -0.05324655771255493, 0.028718849644064903, 0.021491510793566704, 0.011763774789869785, 0.012174554169178009, -0.016526436433196068, 0.004280442371964455, -0.02367042936384678, 0.02263455092906952, -0.00904905702918768, 0.005762820597738028, -0.03860137239098549, -0.006057510618120432, -0.02802826464176178, 0.008572790771722794, -0.030528662726283073, -0.01383553259074688, 0.0070844595320522785, -0.03652961552143097, 0.010662409476935863, -0.015454837121069431, -0.022146377712488174, -0.004581085406243801, -0.040816012769937515, -0.006304573733359575, 0.029504690319299698, 0.027337677776813507, 0.005349064711481333, 0.009346723556518555, -0.007632165681570768, -0.004399508703500032, -0.06677252054214478, 0.057675834745168686, 0.03660105541348457, 0.007197572384029627, 0.03612478822469711, 0.03898238763213158, -0.017621848732233047, -0.007816718891263008, 0.05110336095094681, 0.0018142764456570148, 0.046269260346889496, 0.025646934285759926, -0.015216704457998276, 5.26962467120029e-05, 0.017312275245785713, -0.030623914673924446, 0.006578426342457533, -0.0015493533574044704, 0.0006273318431340158, 0.015204797498881817, 0.059009380638599396, -0.00041970956954173744, 0.014847598038613796, -0.0006749584572389722, -0.04669789969921112, -0.0023396576289087534, -0.021872524172067642, -0.01703842170536518, 0.02559930644929409, -0.01759803481400013, 0.0382203608751297, 0.06005716323852539, -0.04545960575342178, -0.029290370643138885, -0.01863391511142254, 0.009471743367612362, -0.01606207713484764, 0.033410072326660156, 0.007495238911360502, 0.016109703108668327, -0.003958962392061949, 0.0016073983861133456, -0.03131449967622757, 0.027933010831475258, -0.00888831727206707, -0.028718849644064903, 0.011412528343498707, 0.0048132650554180145, 0.042863957583904266, 0.004351882264018059, 0.030147649347782135, -0.012168601155281067, 0.0041256556287407875, -0.0023470993619412184, 0.00943602342158556, -0.024170508608222008, 0.03664868324995041, -0.07158280909061432, -0.00399170583114028, 0.021086685359477997, 0.019324500113725662, 0.0033546998165547848, 0.010942215099930763, -0.017562314867973328, -0.04781712591648102, -0.010281396098434925, -0.07786951959133148, 0.010763615369796753, -0.009721782989799976, -0.007382125593721867, 0.008394191041588783, 0.039982546120882034, 0.011894747614860535, 0.0009324398706667125, 0.011692334897816181, -0.005750914104282856, -0.018705355003476143, 0.0011296438751742244, 0.026361333206295967, -0.00961462315171957, -0.005670544225722551, 0.004086959175765514, 0.021110497415065765, 0.039506278932094574, -0.03133831545710564, 0.021146217361092567, -0.022622643038630486, 0.00561398733407259, -0.027004292234778404, 0.02621845342218876, -0.00417030556127429, 0.016728850081562996, 0.003348746569827199, 0.011299415491521358, 0.0269328523427248, 0.003113590180873871, -0.037172574549913406, -0.014716625213623047, -0.0017324181972071528, 0.0064474535174667835, 0.007173759397119284, 0.012156694196164608, 0.03529132530093193, 0.00948365032672882, 0.005956303793936968, -0.011722100898623466, -0.022408323362469673, -0.01795523427426815, 0.009471743367612362, 0.004342952277511358, -0.020348472520709038, -0.014168919064104557, 0.03957771882414818, -0.00688799936324358, 0.034386418759822845, 0.0026283939369022846, -0.0005677985609509051, 0.007405939046293497, -0.0091264508664608, -0.026408959180116653, -0.026742346584796906, 0.039506278932094574, -0.040339745581150055, 0.024099068716168404, 0.0225750170648098, 0.013728372752666473, -0.019193526357412338, 0.019241154193878174, 0.007727418560534716, -0.008977617137134075, -0.007447612471878529, 0.06577236205339432, 0.006316480226814747, 0.05329418554902077, -0.014764251187443733, 0.04867440462112427, 0.002330727642402053, -0.017633754760026932, -0.013359266333281994, 0.011233928613364697, 0.015454837121069431, -0.01608589105308056, -0.055151622742414474, 0.016228770837187767, -0.02474202774465084, -0.01533577125519514, 0.0240276288241148, 0.011037468910217285, 0.003586879698559642, -0.007334499154239893, 0.029314182698726654, 0.03495793789625168, -0.018383873626589775, 0.0073464056476950645, -0.01759803481400013, 0.005209161434322596, 0.009430070407688618, 0.005283577833324671, 0.01872916705906391, 0.0185505673289299, -0.03350532427430153, 0.03431497886776924, 0.0002855736529454589, -0.05315130576491356, -0.013740278780460358, 0.028933171182870865, 0.009060963988304138, -0.016990795731544495, 0.009114543907344341, -0.02394428290426731, -0.011019608937203884, 0.008929991163313389, 0.009406257420778275, 0.04910304397344589, -0.004438205622136593, 0.02995714172720909, 0.0021580811589956284, 0.03150500729680061, 0.019086366519331932, 0.016788382083177567, 0.03712494671344757, -0.008328705094754696, 0.023682335391640663, -0.00400658929720521, -0.0033546998165547848, 0.05315130576491356, 0.05658042058348656, 0.02032465860247612, 0.008215591311454773, 0.014692811295390129, 0.0240633487701416, 0.030266715213656425, -0.025646934285759926, 0.023003656417131424, 0.017014609649777412, 0.008138198405504227, 0.013430706225335598, 0.0015314933843910694, -0.018050488084554672, 0.014311798848211765, -0.03969678655266762, -0.022801242768764496, 0.07020163536071777, 0.01747896894812584, 0.008953804150223732, -0.044816646724939346, -0.025051601231098175, 0.012007861398160458, -0.001271035405807197, 0.017800448462367058, 0.026051759719848633, 0.02355136163532734, -0.015514370985329151, 0.03150500729680061, -0.01937212608754635, 0.015859663486480713, -0.007900064811110497, -0.006280760280787945, -0.01664550229907036, -0.008983571082353592, 0.003857756033539772, -0.014299891889095306, 0.024158602580428123, 0.04174473136663437, -0.011019608937203884, -0.04014923796057701, 0.013668838888406754, -0.005149628035724163, 0.04743611067533493, 0.012942533008754253, 0.015835849568247795, 0.019074460491538048, 0.03252898156642914, 0.017740914598107338, -0.031100181862711906, -0.05772345885634422, 0.008096525445580482, 0.002360494341701269, -0.010912449099123478, 0.016705036163330078, 0.004372718743979931, -0.007804811932146549, -0.026170825585722923, 0.019574539735913277, 0.00043831372749991715, -0.015133357606828213, -0.03517225757241249, 0.01721702143549919, -0.004366765730082989, -0.026599466800689697, 0.024932533502578735, 0.023146536201238632, -0.0035213930532336235, 0.00854897778481245, 0.02743293158710003, 0.0364343635737896, 0.01815764792263508, 0.02024131268262863, 0.020253218710422516, 0.015740597620606422, -0.004688245244324207, -0.014073665253818035, 0.015478651039302349, 0.013621212914586067, -0.015228611417114735, 0.02319416217505932, 0.014490398578345776, -0.015073824673891068, -0.033076684921979904, -0.0168002899736166, -0.008108431473374367, 0.010715989395976067, -0.009346723556518555, 0.010799335315823555, -0.010055169463157654, 0.010293303057551384, -0.03302906081080437, 0.012954439967870712, 0.008269171230494976, 0.0033040966372936964, 0.05153200030326843, 0.023813309147953987, -0.005241904407739639, 0.025908879935741425, 0.017740914598107338, -0.04538816586136818, -0.020372286438941956, -0.056818556040525436, 0.008906177245080471, -0.0018157648155465722, 0.006501033436506987, 0.018776794895529747, -0.033672019839286804, 0.016014449298381805, -0.04260201007127762, -0.009453883394598961, 0.02064613811671734, -0.03910145163536072, -0.014776158146560192, 0.01596682332456112, -0.05396095663309097, 0.015633437782526016, 0.007542865816503763, -0.013442613184452057, 0.005503850989043713, -0.02643277309834957, -0.0070368326269090176, -0.01509763766080141, -0.013490239158272743, 0.011912607587873936, 0.034029219299554825, -0.0185505673289299, -0.01964597962796688, -0.00042529081110842526, -0.016335930675268173, 0.03576758876442909, -0.01827671378850937, -0.02500397339463234, 0.009555090218782425, -0.0017562315333634615, -0.008620417676866055, 0.007316639181226492, 0.025051601231098175, -0.0004156166687607765, -0.02595650590956211, -0.010442135855555534, 0.0341244712471962, -0.020408006384968758, -0.019574539735913277, 0.004905541427433491, 0.00806080549955368, -0.025885066017508507, 0.010102796368300915, -0.005307391285896301, 0.01990792714059353, 0.06320051848888397, 0.004944238346070051, -0.006762979552149773, 0.0021253377199172974, -0.014811878092586994, -0.026504212990403175, -0.01474043820053339, 0.007519052363932133, -0.06415305286645889, 0.011269648559391499, -0.0016326999757438898, -0.01584775745868683, -0.000994949834421277, 0.03733927011489868, -0.012263854034245014, 0.06848707795143127, -0.007024926133453846, 0.014573745429515839, -0.014430864714086056, -0.03883950784802437, -0.015216704457998276, 0.012597240507602692, 0.0030421502888202667, -0.028409278020262718, -0.006899906322360039, -0.01474043820053339, 0.019455473870038986, 0.0257421862334013, -0.027361491695046425, -0.005271671339869499, 0.021622484549880028, -0.001547865103930235, 0.01845531351864338, 0.011751867830753326, 0.009971823543310165, -0.012752027250826359, 0.015776317566633224, -0.039125267416238785, -0.03321956470608711, 0.009876569733023643, -0.014252264983952045, 0.01881251484155655, 0.04517384618520737, -0.004997818265110254, -0.00785243883728981, 0.022241629660129547, -0.0024244925007224083, 4.281279325368814e-05, 0.009971823543310165, -0.036077164113521576, -0.0014496351359412074, -0.0007616538205184042, 0.014430864714086056, -0.008251311257481575, -0.011352995410561562, -0.03345770016312599, 0.018169553950428963, -0.015228611417114735, 0.010245676152408123, 0.007030879613012075, 0.025670746341347694, -0.0033963732421398163, 0.011763774789869785, 0.016966981813311577, -0.0286474097520113, -0.002997500356286764, -0.006483173463493586, -0.03662486746907234, -0.023456109687685966, 0.014907130971550941, 0.03033815510571003, -0.013930785469710827, -0.013002066873013973, 0.011311321519315243, 0.002747460501268506, -0.01618114300072193, -0.0084001449868083, -0.0030897767283022404, -0.015478651039302349, 0.02006271295249462, -0.002742995508015156, 0.0077393255196511745, 0.023718055337667465, 0.02524210698902607, 0.008537070825695992, -0.005060328170657158, 0.021824898198246956, -0.016776476055383682, 0.0283854641020298, -0.008673997595906258, -0.002181894378736615, -0.0019794811960309744, 0.009799176827073097, -0.015204797498881817, 0.017681382596492767, -0.0070368326269090176, -0.0021759411320090294, -0.02006271295249462, 0.02536117471754551, 0.005914630368351936, 0.040363557636737823, 0.00043161623761989176, -0.022003497928380966, 0.036100976169109344, -0.0399349182844162, -0.004935308359563351, -0.0022012428380548954, -0.00582235399633646, -0.0196697935461998, 0.002196777844801545, -0.028480717912316322, -0.028433090075850487, 0.001058948109857738, 0.0026596488896757364, -0.010215909220278263, 0.04948405548930168, 0.005462177563458681, -0.02062232606112957, -0.014121292158961296, 0.017074141651391983, 0.005515757482498884, -0.020598512142896652, -0.01700270175933838, 0.0007940250216051936, -0.008406098000705242, -0.001460797619074583, 0.006316480226814747, -0.01000158954411745, -0.006441500037908554, -0.007251152768731117, 0.010620735585689545, 0.044459447264671326, 0.010293303057551384, -0.0013305686879903078, -0.019360220059752464, 0.004616805352270603, 0.01050166878849268, 0.014680905267596245, -0.03688681498169899, -0.010358789004385471, 0.012585333548486233, 0.01309731975197792, 0.042506758123636246, 0.01664550229907036, -0.02559930644929409, 0.00907882396131754, 0.028671223670244217, 0.027980638667941093, 0.01254961360245943, -0.02064613811671734, 0.0266709066927433, 0.010775522328913212, 0.031243061646819115, 0.00145335600245744, -0.03162407502532005, 0.01414510514587164, -0.0027385305147618055, -0.01849103346467018, -0.0019273896468803287, 0.007882204838097095, 0.019145900383591652, 0.00399170583114028, -0.024480082094669342, 0.006643913220614195, 0.02239641733467579, 0.004462018609046936, -0.03969678655266762, 0.004750755149871111, -0.01801476813852787, 0.0041256556287407875, 0.004280442371964455, 0.0063462466932833195, 0.003259446704760194, 0.028075890615582466, -0.0034350696951150894, 0.00199585291557014, 0.011025561951100826, -0.015311957336962223, -0.04091126471757889, -0.007614305708557367, -0.0007836067234165967, -0.013668838888406754, 0.01715748943388462, 0.03795841336250305, -0.021943964064121246, 0.010936262086033821, -0.004095889162272215, -0.010781475342810154, -0.0021134312264621258, -0.006155740469694138, 0.02707573212683201, 0.0014161476865410805, -0.007941738702356815, -0.022777430713176727, 0.003116566687822342, -0.026480399072170258, -0.010924355126917362, 0.016931261867284775, -0.020134152844548225, -0.027456745505332947, -0.013299733400344849, 0.0019690629560500383, -0.000811140809673816, -0.003955985885113478, 0.014407051727175713, 0.02384902909398079, -0.00072667800122872, 0.006840372923761606, 0.003488649846985936, 0.010239723138511181, 0.029695196077227592, 0.022908402606844902, 0.0382203608751297, -0.01582394354045391, 0.02139625884592533, -0.003113590180873871, 0.03214796632528305, -0.019133994355797768, -0.02343229576945305, -0.002433422487229109, -0.026170825585722923, -0.035719964653253555, -0.010049216449260712, 0.013668838888406754, 0.03795841336250305, 0.04824576526880264, 0.002100036246702075, 0.0060515571385622025, 0.050293710082769394, -0.0077393255196511745, 0.03295762091875076, -0.008745437487959862, 0.016836009919643402, -0.011716147884726524, 0.01751468889415264, -0.04938880354166031, -0.026147013530135155, 0.04657883197069168, -0.049198295921087265, 0.03605334833264351, -0.014811878092586994, -0.004241745453327894, -0.020967617630958557, 0.03541038930416107, -0.04279251769185066, 0.006745119579136372, -0.036815375089645386, 0.0055008744820952415, -0.03793460130691528, 0.016526436433196068, 0.0324099138379097, -0.02971900999546051, 0.011013654991984367, -0.006173600442707539, -0.007858391851186752, 0.008620417676866055, -0.06529609113931656, -0.009352677501738071, 0.018026674166321754, 0.03533894941210747, -0.025146855041384697, 0.032219406217336655, 0.0067093996331095695, -0.02213446982204914, -0.03819654881954193, 0.04393555596470833, 0.028052078559994698, 0.02948087640106678, -0.006256946828216314, 0.008132245391607285, -0.016252582892775536, -0.021634390577673912, -0.030266715213656425, 0.02438482828438282, -0.014704718254506588, -0.03495793789625168, -0.006286713760346174, 0.004935308359563351, -0.022063029929995537, -0.01952691376209259, -0.014490398578345776, -0.03069535456597805, 0.007584538776427507, 0.007013019639998674, -0.04014923796057701, -0.006637959741055965, 0.014418958686292171, 0.006620099768042564, -0.037291642278432846, -0.003878592746332288, 0.03700588271021843, -0.041173212230205536, -0.0015672134468331933, 0.01073980238288641, 0.01881251484155655, 0.03498174995183945, -0.018824420869350433, -0.030885862186551094, -0.010376648977398872, 0.03131449967622757, 0.04624544456601143, 0.012299573980271816, -0.008495397865772247, 0.04600731283426285, 0.01866963505744934, -0.006453406531363726, 0.004054215736687183, -0.013180666603147984, 0.0079536447301507, -0.00281890039332211, -0.01377599872648716, -0.004277465399354696, -0.04176854342222214, 0.015871569514274597, 0.00194971461314708, 0.0009138357127085328, -0.021741550415754318, 0.008775204420089722, -0.02752818539738655, 0.02595650590956211, -0.0041732825338840485, 0.01795523427426815, 0.011043421924114227, 0.0027668087277561426, -0.0023500758688896894, -0.0033606532961130142, 0.016073983162641525, -0.01757422275841236, 0.0269328523427248, -0.014240358956158161, -0.0004487320256885141, 0.0011549454648047686, -0.05419909209012985, 0.042387690395116806, 0.005605057347565889, -0.019217340275645256, 0.012978252954781055, -0.0324813537299633, 0.0013417311711236835, 0.029171302914619446, -0.014228451997041702, -0.028052078559994698, 0.033076684921979904, -0.0301000215113163, -0.010108749382197857, 0.021253379061818123, -0.03891094774007797, 0.026766158640384674, 0.005185347981750965, 0.0007181200780905783, -0.008608510717749596, -0.008828784339129925, 0.0341244712471962, -0.007584538776427507, 0.0041435156017541885, 0.04886490851640701, 0.01019209623336792, 0.00583723746240139, -0.00998372957110405, -0.0034678131341934204, 0.024789653718471527, 0.016788382083177567, 0.026861412450671196, -0.025170667096972466, -0.013228293508291245, -0.01006112340837717, -0.020729485899209976, 0.004610851872712374, -0.016597876325249672, -0.021812990307807922, -0.010662409476935863, 0.021860618144273758, 0.038887131959199905, 0.03224322199821472, 0.015085731633007526, 0.021443884819746017, 0.0035749729722738266, -0.004304255358874798, -0.0060188136994838715, -0.0027281122747808695, 0.01238292083144188, -0.002954338677227497, 0.0007650025654584169, -0.01620495691895485, -0.004235792439430952, 0.0006102160550653934, -0.02151532471179962, 0.02971900999546051, -0.06153358891606331, 0.014240358956158161, -0.0003075265558436513, -0.029457062482833862, 0.030909674242138863, -0.0008386749541386962, -0.0034499531611800194, 0.010299256071448326, 0.015954917296767235, 0.014680905267596245, 0.0051734414882957935, -0.0028784337919205427, 0.033529140055179596, 0.02281315065920353, 0.012156694196164608, 0.01795523427426815] \ No newline at end of file diff --git a/cache/text-embedding-3-small1a376229-0c15-5a9a-8f17-7d088e779d17 b/cache/text-embedding-3-small1a376229-0c15-5a9a-8f17-7d088e779d17 new file mode 100644 index 0000000000000000000000000000000000000000..225024c32defdd1c93fc92ae5f9cb00cd4a9a372 --- /dev/null +++ b/cache/text-embedding-3-small1a376229-0c15-5a9a-8f17-7d088e779d17 @@ -0,0 +1 @@ +[-0.015808993950486183, 0.017133770510554314, 0.07141173630952835, 0.028488993644714355, -0.0017821391811594367, 0.00467456690967083, 0.045723699033260345, 0.08740998804569244, 0.015443103387951851, -0.023757649585604668, 0.023757649585604668, -0.04320031404495239, -0.048373252153396606, -0.05990511178970337, 0.05864341929554939, 0.0696958377957344, -0.025990843772888184, 0.015039362013339996, -0.021209033206105232, -0.026672158390283585, 0.0022631590254604816, 0.010371103882789612, 0.01328561082482338, 0.04907979816198349, -0.0025628108996897936, 0.017701530829072, -0.044916216284036636, -0.05667518079280853, -0.00476288516074419, -0.015140297822654247, 0.0632864460349083, -0.027126366272568703, 0.04019749164581299, 0.058037806302309036, 0.0019666615407913923, 0.0025312684010714293, -0.03136565163731575, 0.046859219670295715, 0.028842266649007797, 0.025965610519051552, -0.03875916078686714, -0.02447681501507759, 0.021877730265259743, -0.00045144898467697203, 0.04476481303572655, -0.01035217847675085, -0.020313233137130737, -0.03219836577773094, -0.0028135720640420914, 0.05203215777873993, 0.005513591691851616, -0.004948984831571579, -0.018597332760691643, -0.0016307361656799912, -0.025359999388456345, -0.0010456268209964037, 0.004873283207416534, 0.005718616768717766, -0.04741436615586281, 0.026874028146266937, -0.003990099299699068, -0.01190405897796154, -0.008112676441669464, 0.03020489402115345, -0.02364409901201725, -0.03164322301745415, -0.02561233751475811, 0.0852903425693512, -0.0007897400064393878, 0.020363699644804, -0.02707589976489544, 0.01906415820121765, -0.04009655490517616, 0.0400460883975029, 0.025801589712500572, -0.018004337325692177, -0.057381726801395416, 0.005396885331720114, 0.012894487008452415, -0.018092656508088112, 0.0005027051665820181, -0.04726296290755272, -0.03525165840983391, -0.004844895098358393, 0.0047691939398646355, 0.013651501387357712, 0.012907103635370731, 0.017676297575235367, -0.04627884179353714, 0.01164541207253933, 0.010598208755254745, -0.0002582524612080306, -0.021890347823500633, 0.001531378016807139, -0.010976715944707394, -0.0012262064265087247, -0.03038153052330017, 0.004245591815561056, -0.012547521851956844, 0.02348007820546627, 0.019795939326286316, 0.019884256646037102, -0.011058725416660309, 0.005441044457256794, -0.017146386206150055, -0.008251462131738663, -0.008245153352618217, -0.018433311954140663, 0.030457232147455215, 0.0019682387355715036, -0.06777806580066681, -0.0023357062600553036, -0.007822487503290176, 0.06863601505756378, -0.005750158801674843, -0.006945611443370581, -0.05198168754577637, -0.04039936140179634, 0.029498346149921417, 0.02922077476978302, 0.006261143833398819, -0.004223512019962072, -0.021953431889414787, -0.00307852728292346, -0.0027631043922156096, 0.005210785660892725, -0.012673690915107727, 0.031946029514074326, -0.014219262637197971, -0.04418443515896797, -0.010869472287595272, 0.011639104224741459, -0.015316934324800968, 0.024577749893069267, 0.020439401268959045, -0.010648676194250584, -0.010030447505414486, 0.015897313132882118, -0.007658467162400484, -0.06020791828632355, -0.0211837999522686, -0.03139088302850723, 0.06434626132249832, -0.010402645915746689, -0.0442853718996048, 0.04479004815220833, -0.031946029514074326, 0.025990843772888184, 0.01789078488945961, -0.02823665551841259, -0.03285444527864456, -0.008106367662549019, -0.07469213753938675, 0.03482268378138542, 0.042443301528692245, -0.010926248505711555, -0.02021229825913906, 0.05167888104915619, -0.053596653044223785, -0.04547135904431343, -0.03250117227435112, 0.05460600554943085, 0.004428537096828222, -0.002340437611564994, 0.030078724026679993, -0.008011740632355213, -0.03787597641348839, -0.03542829677462578, -0.0698472410440445, -0.014887959696352482, -0.045849867165088654, 0.006466168910264969, -0.0087813725695014, -0.006093969568610191, -0.031744156032800674, 0.0028750794008374214, -0.00676897494122386, -0.058391083031892776, -0.003106915159150958, -0.030003022402524948, -0.028362823650240898, 0.021549690514802933, -0.001972970087081194, -0.018130507320165634, -0.030760038644075394, 0.016616476699709892, -0.0033434825018048286, -0.0072547257877886295, 0.03974328190088272, 0.02806001901626587, -0.020149212330579758, 0.0377245731651783, 0.03941524028778076, 0.02742917276918888, 0.0036147460341453552, 0.043578822165727615, 0.03335912153124809, 0.022735679522156715, 0.013083740137517452, -0.027126366272568703, 0.015380019322037697, 0.0009509999654255807, 0.003927014768123627, 0.009014785289764404, -0.04582463577389717, 1.9529110431903973e-05, -0.027479639276862144, 0.06893882155418396, 0.018193591386079788, 0.020817909389734268, -0.0035075023770332336, -0.0022741989232599735, -0.010995641350746155, 0.007412437349557877, -0.010636058636009693, 0.002159069525077939, 0.024830088019371033, -0.042418066412210464, 0.011613870039582253, 0.009500537067651749, 0.03035629726946354, 0.013601033948361874, 0.04627884179353714, -0.026318883523344994, -0.050795700401067734, 0.02250857651233673, -0.020969312638044357, 0.03479745239019394, 0.009797033853828907, -0.01673002913594246, 0.033232953399419785, -0.07277436554431915, -0.01951836794614792, -0.05208262428641319, -0.029624516144394875, 0.04085357114672661, -0.008768755942583084, 0.01802957057952881, -0.03888533264398575, -0.019165093079209328, -0.033384356647729874, 0.021726327016949654, -0.01050358172506094, -0.03933953866362572, 0.0032393927685916424, 0.03598343953490257, 0.021877730265259743, -0.025322148576378822, 0.016616476699709892, 0.036664754152297974, 0.004557860549539328, -0.010945173911750317, -0.00467456690967083, -0.030154425650835037, 0.019947342574596405, -0.004463233519345522, -0.02972545102238655, 0.035403061658144, 0.0239847544580698, -0.019909491762518883, 0.005400039255619049, -0.0016622785478830338, -0.03795167803764343, -0.034873154014348984, 0.02234455570578575, -0.017146386206150055, 0.01419402938336134, 0.013020656071603298, -0.0058510941453278065, -0.01042157132178545, -0.028337590396404266, 0.015291700139641762, 0.025889908894896507, -0.03989468514919281, -0.012787243351340294, 0.013172059319913387, -0.0045326268300414085, -0.02972545102238655, -0.054252732545137405, 0.049811579287052155, 0.009961053729057312, -0.017802465707063675, 0.013247760012745857, -0.022218387573957443, 0.023341292515397072, 0.008617352694272995, -0.00031088865944184363, 0.04067693278193474, -0.022243620827794075, 0.013903840444982052, -0.014660854823887348, 0.003851313143968582, 0.0015321666141971946, -0.04749006778001785, 0.05985464155673981, 0.011191203258931637, 0.0010968829737976193, -0.01968238689005375, 0.0321226641535759, 0.056372374296188354, 0.056725647300481796, 0.04090403765439987, -0.012654765509068966, -0.016654327511787415, 0.012251024134457111, 0.034368474036455154, -0.024338029325008392, -0.03527689352631569, 0.024123540148139, -0.029447879642248154, -0.013159441761672497, -0.010554049164056778, 0.016666945070028305, -0.0028498456813395023, -0.03199649602174759, 0.011847282759845257, 0.01951836794614792, -0.034570347517728806, 0.0013957461342215538, -0.028009550645947456, 0.006750049535185099, -0.004671412520110607, -0.027277769520878792, -0.005377959925681353, 0.04827231541275978, -0.036664754152297974, 0.031264714896678925, 0.016616476699709892, 0.0016796267591416836, -0.028287122026085854, -0.02510765939950943, 0.01002413872629404, 0.005664994474500418, -0.033258188515901566, -0.06399299204349518, -0.04607697203755379, 0.029145073145627975, -0.02315203845500946, 0.0036904476583003998, -0.04345265403389931, -0.004031104035675526, 0.00993582047522068, -0.025801589712500572, -0.013992158696055412, 0.027050664648413658, 0.005258099175989628, -0.009027402848005295, 0.031138544902205467, 0.006071890238672495, 0.04675828665494919, 0.026520755141973495, -0.002592775970697403, 0.016313670203089714, 0.018332377076148987, 0.015846844762563705, -0.040777869522571564, 0.030457232147455215, -0.016212735325098038, -0.02379550039768219, 0.03613484278321266, -0.02886749990284443, 0.041938625276088715, 0.004523164127022028, -0.012295183725655079, 0.013399163261055946, 0.015367401763796806, -0.007027621380984783, 0.009115721099078655, 0.06575936079025269, -0.0007633233326487243, 0.028640396893024445, 0.012377193197607994, -0.000686438987031579, -0.01526646688580513, -0.011758964508771896, -0.04971064254641533, 0.03941524028778076, 0.02133520320057869, 0.0028545770328491926, -0.025889908894896507, 0.02200389839708805, -0.0037787659093737602, -0.009639322757720947, -0.016465073451399803, 0.023845968768000603, 0.010131382383406162, 0.0318450927734375, -0.030129192396998405, -0.011203819885849953, -0.03918813541531563, 0.03623577952384949, 0.015670208260416985, 0.057179857045412064, -0.032400235533714294, 0.019102009013295174, -0.05591816455125809, 0.011557093821465969, 0.04183768853545189, 0.03398996964097023, 0.030961908400058746, -0.022849231958389282, -0.05253683403134346, -0.011790506541728973, -0.07176501303911209, 0.04433583840727806, -0.007702626287937164, -0.01966976933181286, 0.018117889761924744, -0.02806001901626587, -0.03727036714553833, -0.009651939384639263, -0.06192381680011749, 0.03396473452448845, 0.006592337973415852, 0.005355880130082369, 0.005459969863295555, -0.03419183939695358, -0.012831402011215687, 0.00812529306858778, 0.03181985765695572, 0.017171621322631836, -0.031744156032800674, 0.0008445447310805321, 0.01642722263932228, 0.041282545775175095, 0.01305850688368082, 0.015632357448339462, -0.018975839018821716, -0.03353575989603996, -0.03492362052202225, -0.02282399870455265, 0.024363262578845024, 0.01656600832939148, 0.04870129004120827, -0.03762364014983177, 0.013083740137517452, 0.031264714896678925, -0.023732416331768036, 0.015695441514253616, -0.01985902339220047, 0.022887082770466805, -0.005529362708330154, 0.006951920222491026, -0.016326287761330605, 0.011020874604582787, 0.0005133507074788213, -0.012661074288189411, 0.033712394535541534, -0.005349571816623211, -0.031895559281110764, 0.0012474973918870091, 0.00406264653429389, -0.0013500098139047623, -0.051098503172397614, -0.04251900315284729, 0.024489430710673332, 0.04582463577389717, -0.02163800783455372, -0.008995859883725643, 0.060662124305963516, 0.004529472440481186, 0.044083498418331146, 0.04173675552010536, -0.01871088519692421, 0.04299844428896904, -0.0017300944309681654, -0.018004337325692177, 0.03234976902604103, -0.025322148576378822, -0.004841741174459457, -0.002326243557035923, 0.004305521957576275, -0.015872078016400337, -0.004261362832039595, 0.027353471145033836, 0.011550785042345524, -0.03724513202905655, -0.035857271403074265, -0.015392635948956013, -0.04451247677206993, 0.005333800800144672, -0.01502674538642168, -0.057179857045412064, 0.028488993644714355, -0.022256238386034966, 0.06480047106742859, 0.038658227771520615, -0.025246446952223778, -0.016036098822951317, -0.0367656908929348, 0.012743083760142326, 0.011065034195780754, -0.013474864885210991, -0.012850327417254448, -0.01049096416682005, -0.0011426192941144109, -0.09447545558214188, -0.029902087524533272, 0.010320636443793774, 0.014837491326034069, 0.07479307055473328, 0.0180421881377697, -0.017310407012701035, -0.03333389014005661, -0.003479114267975092, -0.02265997789800167, 0.007809870410710573, -0.02725253626704216, -0.07645850628614426, 0.006216984707862139, -0.04499191790819168, 0.0215244572609663, -0.03419183939695358, 0.014458984136581421, -0.011481392197310925, 0.006850984878838062, 0.027605809271335602, 0.0031242636032402515, 0.04854988679289818, -0.03646288439631462, 0.009241890162229538, -0.007355661131441593, 0.012856636196374893, 0.03613484278321266, -0.04809567704796791, 0.002340437611564994, -0.046026505529880524, -0.00414150208234787, 0.02906937152147293, -0.04549659416079521, -0.0069266860373318195, -0.021297352388501167, -0.02230670489370823, 0.007431362755596638, -0.06903975456953049, -0.018900137394666672, -0.022596893832087517, 0.006888835225254297, 0.010036755353212357, 0.032904911786317825, -0.010856854729354382, 0.023063719272613525, -0.012825094163417816, -0.006743740756064653, -0.012515979818999767, -0.003125840565189719, 0.0030722187366336584, 0.009942128323018551, -0.018673034384846687, 0.026369351893663406, 0.05546395853161812, -0.04090403765439987, -0.004974218551069498, 0.0005090136546641588, 0.04050029441714287, -0.021082865074276924, 0.0290441382676363, 0.021057629957795143, 0.0044663879089057446, 0.022786147892475128, 0.02033846639096737, -0.01839546114206314, 0.0016764724859967828, -0.020111361518502235, -0.04302367940545082, 0.004598865285515785, -0.007374586537480354, 0.0325264073908329, -0.0318450927734375, -0.008137909695506096, -0.0013642038684338331, 0.009254506789147854, -0.005447352770715952, -0.045219022780656815, -0.004318139050155878, 0.026217948645353317, -0.01775199919939041, -0.013424397446215153, 0.032904911786317825, 0.011758964508771896, -0.025675421580672264, -0.030003022402524948, -0.013941690325737, -0.00709701469168067, -0.020565571263432503, 0.00217326357960701, 0.004948984831571579, 0.01773938164114952, 0.0018073730170726776, -0.0003317854425404221, -0.004040566738694906, -0.03545353189110756, 0.020363699644804, 0.016376756131649017, -0.007790945004671812, -0.0036336714401841164, 0.004094189032912254, 0.009797033853828907, 0.0037062186747789383, 0.021953431889414787, -0.012907103635370731, -0.012862944975495338, -0.03229930251836777, -0.0007956541958265007, -0.045092854648828506, -0.031062843278050423, 0.033258188515901566, -0.008762447163462639, -0.0059110247530043125, 0.007336735725402832, 0.0019161938689649105, 0.037800274789333344, 0.001794756157323718, 0.0007566206040792167, -0.026722624897956848, 0.03187032788991928, -0.030760038644075394, 0.022773530334234238, 0.042771339416503906, 0.002337283454835415, 0.002662169048562646, -0.014307580888271332, 0.014963660389184952, 0.0008508531609550118, 0.0052927955985069275, 0.021133331581950188, -0.02050248719751835, 0.0058195521123707294, 0.026318883523344994, -0.0028971589636057615, 0.032425470650196075, -0.04138347879052162, -0.03265257552266121, -0.047666702419519424, -0.02543569914996624, 0.04065169766545296, -0.026974963024258614, 0.017537511885166168, 0.037497472018003464, 0.01921556144952774, 0.019606685265898705, -0.034570347517728806, 0.04544612765312195, -0.031113311648368835, 0.018344994634389877, -0.006021422334015369, 0.012553829699754715, 0.003001248696818948, 0.009948437102138996, -0.013197292573750019, 0.013197292573750019, -0.013247760012745857, 0.028917968273162842, -0.014421133324503899, 0.03805261477828026, -0.0393647737801075, 0.009374368004500866, -0.026974963024258614, 0.021221650764346123, 0.029902087524533272, -0.016477691009640694, 0.03764887526631355, 0.0016244277358055115, -0.010446805506944656, 0.021410904824733734, 0.009147263132035732, 0.007450288161635399, 0.012755700387060642, 0.016540775075554848, 0.0035358902532607317, -0.04658164829015732, 0.02594037726521492, 0.03482268378138542, 0.010402645915746689, 0.013020656071603298, -0.020716974511742592, -0.011689571663737297, -0.016149651259183884, 0.045900337398052216, 0.018445929512381554, 0.017348257824778557, 0.019329113885760307, -0.029170306399464607, -0.002709482330828905, 0.035882506519556046, 0.010636058636009693, -0.0072231837548315525, -0.03515072539448738, 0.00314003461971879, 0.0334852933883667, -0.008882308378815651, 0.014648238196969032, -0.0019130397122353315, 0.0021101790480315685, -0.010730685666203499, -0.031617987900972366, -0.011311064474284649, 0.07292576879262924, -0.06964536756277084, -0.02659645676612854, 0.010011522099375725, 0.021915581077337265, -0.0016764724859967828, -0.06712198257446289, -0.023442227393388748, 0.006863601505756378, -0.018597332760691643, -0.013575799763202667, 0.04693492129445076, 0.0013713008956983685, -0.028488993644714355, -0.00775309419259429, -0.026016078889369965, -0.022193152457475662, 6.007820047670975e-05, 0.016288436949253082, 0.0019934724550694227, -0.009967362508177757, -0.012654765509068966, -0.013992158696055412, 0.009992596693336964, -0.024716535583138466, -0.005444198846817017, -0.043906863778829575, 0.010150307789444923, 0.04042459651827812, 0.020123979076743126, 0.014572536572813988, 0.059652771800756454, -0.027454406023025513, -0.00311795505695045, -0.011758964508771896, 0.012679999694228172, -0.01968238689005375, 0.005131930112838745, 0.04877699166536331, -0.026470286771655083, -0.061116334050893784, -0.005696536973118782, 0.003971173893660307, -0.016162266954779625, -0.02247072570025921, -0.0014217685675248504, -0.00676897494122386, -0.037144195288419724, -0.0037030645180493593, 0.028993669897317886, 0.0580882765352726, -0.016313670203089714, -0.007191641256213188, -0.03886009752750397, 0.009273432195186615, 0.013676735572516918, 0.003551661502569914, -0.0015416293172165751, -0.00029886316042393446, -0.011216437444090843, 0.00829562172293663, -0.01853424683213234, -0.017436577007174492, -0.008680437691509724, -0.0017632137751206756, -0.008838148787617683, -0.03790121152997017, -0.026495520025491714, 0.0012711541494354606, -0.02428756095468998, -0.0056555322371423244, 0.026621690019965172, -0.015215999446809292, 0.01936696469783783, -0.002214268548414111, -0.012345651164650917, -0.02972545102238655, 0.034696515649557114, -0.03267781063914299, 0.016338905319571495, -0.018092656508088112, 0.022735679522156715, -0.023883819580078125, -0.0038891639560461044, -0.027631042525172234, -0.015215999446809292, 0.023088954389095306, -0.015544039197266102, 0.004217203706502914, 0.03593297302722931, -0.02527168020606041, 0.0035800496116280556, -0.002923969877883792, -0.012944954447448254, 0.002067596884444356, -0.03328341990709305, -0.01107765082269907, -0.003788228612393141, 0.02136043645441532, -0.0022158457431942225, -0.07358184456825256, -0.019316496327519417, 0.01886228658258915, 0.005321183707565069, 0.0020991391502320766, 0.022104835137724876, -0.008756138384342194, 0.02838805876672268, 0.02611701376736164, 0.035175956785678864, 0.03459557890892029, -0.0175627451390028, -0.00959516316652298, 0.009879044257104397, 0.0024666069075465202, -0.03068433701992035, 0.011311064474284649, 0.00926712341606617, 0.0007617461960762739, 0.0009462686139158905, 0.012982805259525776, 0.015152914449572563, -0.0029097760561853647, 0.019947342574596405, -0.022395024076104164, 0.0034412634558975697, -0.01437066588550806, -0.014673471450805664, 0.03477221727371216, -0.029851621016860008, 0.03335912153124809, 0.04789380729198456, -0.01361365057528019, -0.010099840350449085, 0.012705232948064804, -0.010951481759548187, -0.006412547081708908, 0.007330427411943674, 0.024249710142612457, 0.03858252614736557, -0.05758360028266907, 0.017335640266537666, 0.0012356691295281053, 0.010926248505711555, -0.011620178818702698, 0.030558167025446892, 0.03282921016216278, -0.0058195521123707294, 0.023719798773527145, 0.011342606507241726, 0.005182397551834583, 0.012288874946534634, 0.025486167520284653, -0.02231932245194912, -0.018344994634389877, -0.019556216895580292, 0.01640198938548565, -0.04251900315284729, 0.0524863637983799, -0.005106696393340826, 0.004586248658597469, 0.010736994445323944, 0.004031104035675526, -0.028615161776542664, -0.004245591815561056, 0.004264517221599817, -0.05692752078175545, 0.03492362052202225, -0.021600157022476196, 0.0051950146444141865, 0.034519877284765244, 0.020452018827199936, 0.007462905254215002, 0.020287998020648956, 0.00886338297277689, 0.01232041697949171, -0.03721989691257477, 0.021802028641104698, 0.05319291353225708, -0.04234236478805542, 0.021045014262199402, -0.006794208660721779, 0.005895253270864487, 0.04024795815348625, -0.004699800629168749, 0.0011788929114118218, -0.03383856639266014, 0.022256238386034966, 0.0393647737801075, 0.0008279850007966161, 0.023581013083457947, -0.015051979571580887, -0.019783321768045425, 0.05405086278915405, 0.04420967027544975, -6.476025737356395e-05, -0.009487919509410858, -0.01361365057528019, 0.022041749209165573, -0.024565132334828377, 0.029674982652068138, -0.011046108789741993, -0.0010211815824732184, -0.001172584481537342, -0.02775721251964569, -0.0040784175507724285, -0.00557983061298728, 0.0012285721022635698, 0.03136565163731575, -0.037699341773986816, -0.02970021776854992, 0.043578822165727615, 0.03825448453426361, -0.03335912153124809, 0.013500099070370197, 0.03886009752750397, -0.025082426145672798, 0.0011497163213789463, -0.011083959601819515, -0.032400235533714294, 0.018445929512381554, 0.00570284528657794, -0.003968019504100084, -0.007917113602161407, 0.007645850069820881, -0.021145949140191078, -0.006478785537183285, -0.009551004506647587, -0.008182069286704063, -0.030760038644075394, -0.0052612535655498505, 0.07549961656332016, -0.02710113301873207, 0.03005349077284336, -0.028160953894257545, -0.00028190918965265155, -0.010453113354742527, -0.037169430404901505, -0.019089391455054283, 0.013121590949594975, 0.00570284528657794, -0.010472038760781288, 0.006882526911795139, 0.02168847620487213, 0.007197950035333633, -0.001414671540260315, -0.028640396893024445, 0.005314875394105911, -0.005362188909202814, -0.004475850611925125, 0.04352835565805435, 0.025826824828982353, -0.06555748730897903, 0.024388495832681656, -0.022735679522156715, 0.004403303377330303, -0.014559919945895672, -0.027681510895490646, 0.024325411766767502, 0.0315675213932991, 0.032753512263298035, 0.053748056292533875, -0.00819468591362238, -0.02758057601749897, -0.020098745822906494, 0.035882506519556046, -0.021234268322587013, 0.03398996964097023, -0.03893579915165901, -0.018900137394666672, -0.02149922214448452, 0.003740915097296238, 0.022395024076104164, -0.0023940596729516983, 0.02689926140010357, 0.038153551518917084, 0.04612743854522705, -0.017651064321398735, 0.01437066588550806, -0.015253850258886814, 0.05677611753344536, 0.014257113449275494, 0.036336712539196014, -0.004816506989300251, -0.007084397599101067, 0.03295538201928139, 0.012427660636603832, 0.02576373890042305, 0.032904911786317825, 0.0029334325809031725, 0.006655422504991293, -0.0018357611261308193, -0.00788557156920433, 0.034368474036455154, -0.00652925344184041, -0.01901368983089924, 0.03204696252942085, 0.0007794887642376125, -0.03671522065997124, -0.018609948456287384, -0.01853424683213234, -0.014458984136581421, 0.018004337325692177, 0.029119839891791344, -0.00902109406888485, -0.03777504339814186, -0.018837053328752518, -0.018748736009001732, 0.014017391949892044, 0.03068433701992035, -0.00017555254453327507, 0.015569272451102734, -0.006914069410413504, 0.037497472018003464, 0.022243620827794075, -0.027328237891197205, -0.010326944291591644, 0.02200389839708805, 0.008629969321191311, -0.007462905254215002, -0.019732855260372162, -0.0037472236435860395, 0.01641460508108139, 0.03270304203033447, -0.007052855100482702, -0.009670864790678024, 0.012112238444387913, -0.019316496327519417, 0.02033846639096737, 0.02085576020181179, 0.03873392939567566, 0.019581452012062073, 0.04267040640115738, 0.010251243598759174, -0.03053293377161026, -0.021284734830260277, -0.02742917276918888, -0.0208431426435709, -0.023379143327474594, 0.024653451517224312, -0.012131163850426674, 0.016830964013934135, -0.002264736220240593, -0.03557970002293587, -0.001467504887841642, -0.029422644525766373, -0.028135720640420914, 0.014257113449275494, -0.021423520520329475, -0.018635183572769165, 0.025322148576378822, 0.007576457224786282, -0.02181464619934559, 0.004661949817091227, -0.014118327759206295, 0.019732855260372162, 0.019228177145123482, -0.018117889761924744, 0.024552516639232635, -0.013437014073133469, 0.004425382707268, -0.007462905254215002, 0.0249436404556036, 0.04269563779234886, 0.012547521851956844, 0.01970762014389038, 0.004721880424767733, 0.010011522099375725, -0.04330125078558922, 0.038506824523210526, 0.0024792237672954798, 0.014787023887038231, -0.013108974322676659, 0.0010677063837647438, 0.0051287757232785225, 0.011115501634776592, -0.016654327511787415, 0.015518805012106895, 0.01273046713322401, 0.029599281027913094, 0.025990843772888184, 0.03875916078686714, -0.008655203506350517, -0.00021626180387102067, 0.003264626720920205, -0.014900576323270798, -0.009828576818108559, -0.0390872023999691, -0.011758964508771896, 0.014875342138111591, 0.027959082275629044, 0.013929073698818684, 0.004087880253791809, 0.01353794988244772, -0.021625392138957977, 0.007835104130208492, 0.029624516144394875, -0.028438525274395943, -0.0062390645034611225, 0.027176834642887115, -0.00010004819341702387, 0.03020489402115345, -0.03300584852695465, -0.026974963024258614, 0.0032803977373987436, 0.0031384574249386787, 0.01607394963502884, -0.0005582984886132181, -0.022849231958389282, 0.018900137394666672, 0.01839546114206314, 0.007816178724169731, -0.02066650614142418, -0.02559971995651722, -0.013929073698818684, 0.02035108394920826, 0.037194665521383286, -0.0008039340609684587, 0.006592337973415852, 0.0031857709400355816, -0.013373930007219315, 0.02364409901201725, 0.029574047774076462, 0.008163143880665302, -0.01578376069664955, -0.004507392644882202, 0.026520755141973495, -0.006655422504991293, -0.00664280541241169, -0.008346089161932468, -0.004359144251793623, 0.0013295073295012116, -0.01689404807984829, -0.008074825629591942, 0.00025194400222972035, 0.04183768853545189, 0.008200994692742825, -0.01951836794614792, -0.003573741065338254, -0.013525332324206829, -0.015392635948956013, -0.0174239594489336, -0.004936367738991976, -0.0060813529416918755, 0.031113311648368835, 0.021209033206105232, -0.022256238386034966, 0.023051103577017784, 0.0006789477192796767, -0.012585372664034367, 0.089378222823143, 0.015392635948956013, -0.006027731113135815, -0.005415810737758875, -0.008352397941052914, -0.0037440694868564606, 0.04055076465010643, -0.04269563779234886, 0.013008039444684982, -0.013361312448978424, -0.029750684276223183, -0.005961492192000151, 0.01535478513687849, -0.012566447257995605, 0.03547876328229904, 0.04221619665622711, 0.022760914638638496, -0.019985193386673927, 0.02282399870455265, -0.022887082770466805, 0.0015085098566487432, 0.0036778305657207966, -0.011582328006625175, -0.01972023770213127, -0.015960397198796272, 0.015670208260416985, -0.008030666038393974, 0.01100825797766447, -0.008333472535014153, 0.011538168415427208, -0.0019288108451291919, 0.025561869144439697, -0.0004065012326464057, 0.05092186853289604, -0.00046643157838843763, -0.0062769148498773575, -0.026798326522111893, 0.015342168509960175, 0.03134041652083397, 0.005538825411349535, -0.02689926140010357, -0.003248855471611023, 0.01772676594555378, -0.008989552035927773, -0.022887082770466805, -0.021082865074276924, -0.02365671470761299, -0.0027993780095130205, -0.01157601922750473, -0.023517929017543793, -0.031617987900972366, 0.001442271051928401, -0.016843581572175026, 0.0124718202278018, 0.010686527006328106, 0.03838065266609192, 0.022445490583777428, -0.008648894727230072, -0.017802465707063675, 0.012862944975495338, -0.008655203506350517, -0.0039049352053552866, -0.013638884760439396, -0.006062427535653114, 0.010402645915746689, -0.00902109406888485, 0.019127242267131805, 0.037522703409194946, 0.004217203706502914, 0.044083498418331146, 0.013008039444684982, 0.002837228588759899, -0.0007412437116727233, 0.014925810508430004, -0.020477252081036568, -0.011033492162823677, -0.000211924736504443, 0.00018028388149105012, -0.03020489402115345, -0.0528901070356369, -0.017916018143296242, -0.015821611508727074, 0.002520228736102581, 0.03805261477828026, 0.027353471145033836, -0.015127680264413357, 0.0056870742700994015, 0.03330865502357483, 0.011828357353806496, -0.012995421886444092, -0.025208596140146255, 0.0036052833311259747, 0.02119641751050949, 0.01626320369541645, 0.003425492439419031, 0.009210348129272461, -0.04075263440608978, 0.005866865161806345, -0.022748297080397606, -0.05223402753472328, 0.016856197267770767, -0.01821882463991642, -0.00751337269321084, 0.018344994634389877, 0.000437649228842929, 0.027151599526405334, -0.03313201665878296, 9.181762288790196e-05, 0.020439401268959045, -0.02479223720729351, -0.016301054507493973, -0.004781810566782951, 0.024741768836975098, -0.03285444527864456, 0.023732416331768036, 0.0027993780095130205, 0.02641982026398182, 0.015380019322037697, -0.00023735570721328259, -0.007008695974946022, -0.004371760878711939, -0.001739557133987546, -0.015973014757037163, -0.026344118639826775, -0.0423675999045372, 0.006548178847879171, 0.0180421881377697, 0.015821611508727074, 0.029447879642248154, 0.0038008454721421003, 0.040121790021657944, 0.04794427752494812, -0.015001511201262474, 0.029195541515946388, 0.0012735198251903057, 0.03237500414252281, 0.027454406023025513, 0.027807680889964104, 0.0400460883975029, -0.015291700139641762, -0.023707183077931404, -0.040449827909469604, -0.007406129036098719, 0.007601690944284201, 0.05003868415951729, 0.013272994197905064, 0.014925810508430004, 0.030003022402524948, -0.002373557072132826, 0.008775063790380955, -0.01329822838306427, -0.02133520320057869, 0.02939741127192974, -0.036664754152297974, 0.029170306399464607, -0.02216791920363903, 0.03300584852695465, 0.016679560765624046, 0.002250542165711522, -0.0012758855009451509, 0.024855321273207664, 0.008547959849238396, -0.02677309326827526, -0.053243380039930344, 0.005794317927211523, -0.01821882463991642, -0.03250117227435112, 0.013563183136284351, 0.027984317392110825, -0.02003565989434719, 0.016288436949253082, -0.03351052477955818, -0.021473988890647888, -0.014332815073430538, 0.006586029659956694, -0.020123979076743126, 0.007002387661486864, 0.017461810261011124, -0.050644297152757645, -0.028009550645947456, -0.00017525683506391943, -0.02345484495162964, -0.017941253259778023, -0.0046430244110524654, -0.021272117272019386, -0.0009856964461505413, 0.0075449151918292046, -0.004292905330657959, -0.011784198693931103, 0.0019493133295327425, 0.01951836794614792, -0.03426754102110863, -0.01606133207678795, -0.01656600832939148, 0.006668039597570896, -0.018761351704597473, -0.008346089161932468, 0.034065671265125275, -0.003245701314881444, -0.003393949940800667, -0.013172059319913387, 0.005280178971588612, 0.011153352446854115, -0.0054505071602761745, 0.008005432784557343, -0.012225789949297905, -0.04645548015832901, -0.023252973333001137, -0.013348695822060108, 0.02298801764845848, 0.03944047540426254, -0.01271154172718525, -0.005674457177519798, 0.009494228288531303, 0.0007100957445800304, 0.01223209872841835, -0.01590992882847786, 0.00023203295131679624, 0.01738610863685608, -0.02773197926580906, -0.012478129006922245, -0.008617352694272995, -0.004005870316177607, 0.00595202948898077, 0.016490306705236435, -0.046405013650655746, 0.024199241772294044, -0.021297352388501167, 0.012856636196374893, -0.035075023770332336, 0.02100716345012188, -0.03361146152019501, 0.0013578954385593534, 0.010705452412366867, -0.006977153941988945, -0.018256675451993942, -0.02134781889617443, 0.04935736954212189, -0.01888752169907093, -0.0037693032063543797, -0.02886749990284443, -0.041459180414676666, -0.013878606259822845, 0.024325411766767502, 0.03565540164709091, -0.029170306399464607, 0.01386598963290453, 0.003999562002718449, -0.03961711376905441, -0.012579063884913921, 0.007563840132206678, 0.019505750387907028, -0.0025139201898127794, -0.010957790538668633, -0.0062706065364181995, -0.017297789454460144, -0.009727641008794308, -0.006002497393637896, -0.024577749893069267, 0.005333800800144672, -0.008358705788850784, -0.013146825134754181, 0.03005349077284336, -0.016364138573408127, -0.018673034384846687, 0.0070654721930623055, -0.022054366767406464, 0.0290441382676363, 0.009475302882492542, -0.023227740079164505, 0.004983681254088879, -0.006210676394402981, -0.0012577486922964454, -0.018143123015761375, -0.022937551140785217, 0.044916216284036636, 0.01288817822933197, -0.021246884018182755, 0.007361969910562038, -0.00943745207041502, -0.012124855071306229, 7.023087528068572e-05, -0.0025218059308826923, -0.019228177145123482, 0.022079600021243095, 0.033914268016815186, 0.008888616226613522, 0.01207438763231039, 0.0348479188978672, -0.004841741174459457, -0.0180421881377697, -0.030255360528826714, -0.055413488298654556, -0.009961053729057312, 0.011601253412663937, -0.04844895377755165, -0.014257113449275494, -0.013563183136284351, -0.006207522004842758, 0.016452455893158913, 0.013966924510896206, 0.023681947961449623, -0.011058725416660309, -0.009879044257104397, 0.03482268378138542, 0.015014128759503365, 0.009273432195186615, 0.03482268378138542, -0.011626486666500568, -0.008743521757423878, -0.0026826714165508747, -0.00015879569400567561, -0.01802957057952881, -0.0003735789505299181, -0.007898188196122646, 0.009292357601225376, 0.028110485523939133, -0.016376756131649017, 0.024653451517224312, 0.022054366767406464, 0.044714346528053284, -0.0031841937452554703, 0.02790861576795578, -0.0019351192750036716, 0.04971064254641533, -0.016868814826011658, -0.03343482315540314, 0.01574590988457203, -0.021297352388501167, -0.005794317927211523, -0.007803561631590128, 0.012982805259525776, 0.01902630738914013, -0.012698925100266933, 0.0024886864703148603, 0.01590992882847786, 0.0006450397777371109, 0.0183828454464674, 0.02134781889617443, 0.014395900070667267, 0.0731276348233223, -0.008251462131738663, 0.009494228288531303, -0.029195541515946388, -0.02283661626279354, -0.005176089238375425, 0.03764887526631355, 0.009721333160996437, 0.010711760260164738, -0.023088954389095306, 0.00492375111207366, 0.0022205770947039127, 0.0013358158757910132, -0.01173373032361269, -0.023025868460536003, -0.035201191902160645, 0.05420226603746414, 0.009172497317194939, 0.04383116215467453, -0.002731562126427889, 0.017512276768684387, 0.019127242267131805, -0.0124024273827672, -0.03482268378138542, 0.014408516697585583, 0.03896103426814079, -0.012276258319616318, 0.006693273317068815, 0.004516855347901583, -0.007904496975243092, -0.01338654663413763, -0.004043721128255129, 0.05150224640965462, -0.016856197267770767, 0.025246446952223778, -0.030583400279283524, -0.016793113201856613, 0.010030447505414486, -0.021070247516036034, -0.005239173769950867, -0.010011522099375725, -0.012944954447448254, 0.033106785267591476, 0.0007183755515143275, -0.0015739600639790297, 0.004602019675076008, -0.045547060668468475, 0.0142823476344347, -0.00709701469168067] \ No newline at end of file diff --git a/cache/text-embedding-3-small25e00269-dcef-5da0-8ffa-384e0d946d6c b/cache/text-embedding-3-small25e00269-dcef-5da0-8ffa-384e0d946d6c new file mode 100644 index 0000000000000000000000000000000000000000..691fd9bc47705e7121fbb2b296e15a27764991cb --- /dev/null +++ b/cache/text-embedding-3-small25e00269-dcef-5da0-8ffa-384e0d946d6c @@ -0,0 +1 @@ +[0.013437599875032902, 0.019055580720305443, 0.09823872894048691, 0.017410675063729286, -0.014234745875000954, 0.047449152916669846, 0.014981279149651527, 0.0996558740735054, 0.04879038408398628, -0.004181852098554373, 0.01861272193491459, -0.02973480336368084, -0.040059737861156464, -0.04183117300271988, 0.019650276750326157, 0.023294370621442795, -0.024787437170743942, -0.001586383325047791, -0.04997977614402771, -0.01160922646522522, 0.030620520934462547, -0.008844521827995777, 0.030114395543932915, 0.060633692890405655, 0.010097179561853409, 0.041476886719465256, -0.05850796774029732, -0.015563322231173515, 0.007667783182114363, -0.055116936564445496, 0.06857984513044357, -0.0222441628575325, 0.03360665217041969, 0.0812835618853569, -0.025015193969011307, 0.008566154167056084, -0.007098393514752388, 0.013753928244113922, 0.004694303032010794, 0.008604113012552261, -0.010071873664855957, -0.016385775059461594, -0.022180898115038872, -0.019207417964935303, 0.02170007862150669, -0.006959209218621254, -0.022990696132183075, -0.027862142771482468, -0.03143031895160675, 0.042818114161491394, -0.013058006763458252, -0.025483358651399612, 0.012760658748447895, -0.010261669754981995, -0.06119042634963989, -0.017385369166731834, 0.023344984278082848, -0.020169053226709366, -0.03879442811012268, 0.02697642520070076, 0.0005539688863791525, -0.011223305948078632, 0.02237069420516491, 0.03722544386982918, -0.011938206851482391, -0.0113055519759655, -0.05238386616110802, 0.06660595536231995, -0.009401259012520313, 0.048031195998191833, 0.012982088141143322, -0.00010508010745979846, 0.011780043132603168, 0.005285835824906826, 0.011558613739907742, 0.009863097220659256, -0.043779753148555756, 0.004918895661830902, -0.002411998575553298, -0.004741752054542303, 0.019662929698824883, -0.023560086265206337, -0.03337889909744263, 0.0047512417659163475, -0.0032834813464432955, -0.003919300157576799, 0.012836577370762825, -0.0006856402615085244, -0.026596831157803535, -0.004207158461213112, 0.0030082762241363525, 0.006430942099541426, 0.00039106010808609426, -0.01854945532977581, 0.030898889526724815, 0.04324832186102867, 0.0025654174387454987, 0.006497370544821024, -0.0009410748607479036, 0.035023801028728485, 0.03666870668530464, -0.001326994621194899, 0.002891235053539276, -0.01447515469044447, 0.029026228934526443, 0.010774120688438416, -0.016815979033708572, -0.039958514273166656, 0.028140511363744736, 0.006174716632813215, -0.0827513262629509, -0.03203766793012619, 0.003669401165097952, 0.043147098273038864, -0.005785633344203234, -0.044488325715065, -0.03537808731198311, -0.03935116529464722, 0.016385775059461594, -0.011223305948078632, -0.020599259063601494, -0.004564608447253704, 0.03730136156082153, 0.010679222643375397, 0.0160947535187006, 0.00962268840521574, -0.030165009200572968, 0.0012131166877225041, -0.01952374540269375, -0.05405407398939133, 0.015373525209724903, 0.039022184908390045, 0.04231199249625206, 0.04127443581819534, -0.0049663446843624115, -0.03970545157790184, -0.053294889628887177, -0.008793910034000874, 0.014057602733373642, -0.06529003381729126, -0.01603148691356182, -0.03737727925181389, 0.035631150007247925, -0.020282931625843048, -0.03006378374993801, 0.002665060805156827, -0.0016923531657084823, -0.0375291183590889, -0.014348624274134636, -0.03525155782699585, -0.014108214527368546, -0.024622946977615356, -0.05324427783489227, 0.019384561106562614, 0.028545411303639412, 0.051143862307071686, -0.05779939517378807, 0.05028345063328743, -0.007996764034032822, -0.0013855153229087591, -0.03813646733760834, 0.07748763263225555, -0.06721330434083939, -0.011640858836472034, -0.00962268840521574, -0.047727521508932114, -0.016056792810559273, -0.009749219752848148, -0.08513011038303375, -0.04279280826449394, 0.004172362387180328, -0.03193644434213638, -0.05273815244436264, -0.007775334641337395, -0.019498439505696297, -0.011767390184104443, -0.0019485785160213709, -0.02312988042831421, -0.024724172428250313, -0.037174828350543976, -0.021042117848992348, 0.020751096308231354, -0.016170671209692955, 0.015487403608858585, -0.03451767563819885, 0.027963368222117424, 0.01982741989195347, -0.006029205862432718, 0.028773166239261627, 0.03499849513173103, -0.016018833965063095, 0.04097076132893562, 0.047929972410202026, 0.05283937603235245, 0.024104170501232147, 0.010799427516758442, -0.009989628568291664, 0.028722554445266724, -0.05283937603235245, -0.017954759299755096, 0.017435982823371887, -0.017410675063729286, 0.029481740668416023, 0.024559682235121727, -0.07232516258955002, 0.003691544057801366, -0.03183521702885628, 0.028115205466747284, -0.011027183383703232, 0.0022048039827495813, 0.03828830271959305, -0.03889565169811249, -0.031961750239133835, -0.005703388247638941, 0.002535366453230381, 0.01477882917970419, -0.018739251419901848, -0.0337078794836998, -0.023661311715841293, -0.01700577698647976, 0.010698202066123486, 0.02973480336368084, 0.01900496706366539, 0.0018315373454242945, -0.012090044096112251, 0.033783797174692154, -0.01023003738373518, -0.015993528068065643, 0.007414720952510834, -0.03737727925181389, 0.03555523231625557, -0.0233702901750803, -0.029380515217781067, 0.0003074309788644314, -0.03079766407608986, 0.01867598667740822, -0.011647185310721397, 0.015626586973667145, -0.010729835368692875, -0.006750432774424553, -0.029228677973151207, 0.05273815244436264, -0.017144961282610893, 0.0023772025015205145, -0.021839262917637825, 0.04271689057350159, 0.034568291157484055, -0.004124912898987532, 0.011438408866524696, 0.004539302550256252, 0.012817597948014736, -0.0218266099691391, -0.011008203960955143, 0.01189392153173685, 0.018207821995019913, 0.00024040904827415943, 0.026723362505435944, 0.029684189707040787, 0.025167031213641167, -0.031354401260614395, 0.023256411775946617, 0.010470446199178696, -0.03353073447942734, -0.057394497096538544, 0.02864663489162922, -0.012083717621862888, 0.01038187462836504, 0.04274219647049904, 0.0004820043104700744, 0.007224924396723509, 0.026773976162075996, -0.02306661568582058, -0.04458954930305481, 0.006171553395688534, 0.0004361367900855839, 0.030468683689832687, 0.04210954159498215, -0.018625374883413315, -0.031025419011712074, 0.06650473177433014, 0.024230701848864555, -0.044538937509059906, -0.01470291055738926, -0.03203766793012619, -0.007901865988969803, 0.00020917168876621872, 0.019991910085082054, -0.015689853578805923, -0.03816177323460579, 0.023382943123579025, 0.0052573662251234055, 0.011318204924464226, -0.008079009130597115, -0.033328283578157425, 0.04048994556069374, -0.010805753991007805, 0.007370435167104006, -0.04243852198123932, 0.045753635466098785, 0.04810711368918419, 0.02221885696053505, 0.08138478547334671, -0.022345388308167458, -0.021282527595758438, 0.02973480336368084, 0.008819215930998325, 0.0298866406083107, -0.05714143440127373, 0.04307117685675621, -0.0031047563534229994, 0.015158423222601414, -0.04165403172373772, 0.03682054206728935, -0.004808180965483189, -0.027406631037592888, -0.008085335604846478, 0.03740258514881134, -0.021143343299627304, -0.011166367679834366, -0.030392764136195183, -0.02449641562998295, -0.004520322661846876, -0.025179684162139893, -0.020422115921974182, 0.04092014953494072, -0.07450149953365326, 0.01581638492643833, 0.013551478274166584, -0.01424739882349968, -0.04628506675362587, 0.005867878440767527, -0.006889617070555687, -0.0011514327488839626, -0.04380505904555321, -0.06043124198913574, -0.021991100162267685, 0.05547122284770012, -0.04028749465942383, 0.03907279670238495, -0.024572335183620453, -0.037478502839803696, 0.0006943392800167203, 0.00728186359629035, 0.01596822217106819, 0.006076654884964228, -0.03957892209291458, 0.031227869912981987, 0.041451580822467804, -0.0037864423356950283, 0.07556435465812683, 0.014614338986575603, -0.039477694779634476, 0.048967525362968445, 0.013766581192612648, 0.01547475066035986, -0.0283429604023695, 0.00893942080438137, -0.025091111660003662, -0.007617170922458172, 0.03664340078830719, -0.0329739972949028, 0.026116013526916504, -0.02955765835940838, 0.007218597922474146, -0.008420643396675587, 0.01627189666032791, 0.009920036420226097, 0.018422923982143402, 0.016828633844852448, 0.01509515754878521, 0.01642373390495777, 0.01924537681043148, -0.004162872210144997, 0.027077650651335716, -0.04641159996390343, 0.004014198202639818, 0.05719204619526863, 0.0233702901750803, 0.015626586973667145, 0.020042521879076958, 0.010160445235669613, 0.0008572480292059481, 0.010033913888037205, 0.009432891383767128, -0.004077463876456022, 0.0022427632939070463, 0.007136352825909853, -0.04719609022140503, 0.0210674237459898, 0.02806459181010723, -0.019776806235313416, 0.02521764300763607, 0.04172994941473007, 0.01318453811109066, 0.007332475855946541, -0.016664141789078712, 0.006990842055529356, 0.03034215234220028, 0.08669909089803696, 0.013197191059589386, -0.01470291055738926, -0.06255696713924408, -0.01501923892647028, -0.05415530130267143, -0.02304130792617798, 0.0019612316973507404, -0.00931901391595602, 0.022029060870409012, -0.02864663489162922, -0.03735197335481644, 0.0014211020898073912, -0.06999699026346207, 0.029937252402305603, -0.011628205887973309, -0.006857984233647585, -0.02591356448829174, -0.022838858887553215, -0.027229487895965576, 0.010641263797879219, 0.03844014182686806, 0.042995259165763855, -0.024256007745862007, -0.02393968030810356, -0.049448344856500626, 0.015525363385677338, 0.017410675063729286, 0.023572739213705063, 0.046968333423137665, 0.0030161845497787, -0.047423847019672394, -0.06103859096765518, 0.02991194650530815, 0.03067113272845745, 0.02445845678448677, -0.014981279149651527, 0.004406444728374481, 0.027558468282222748, -0.007402068004012108, -0.004036341328173876, -0.012994741089642048, 0.011697798036038876, 0.008509214967489243, 0.012298820540308952, -0.013222496956586838, -0.02082701586186886, -0.07343863695859909, -0.008079009130597115, 0.00916717667132616, -0.009160850197076797, -0.02404090389609337, -0.023661311715841293, -0.015613934956490993, -0.006990842055529356, -0.011109428480267525, -0.021953141316771507, -0.00590267451480031, 0.02582499198615551, -0.03616258129477501, -0.017980065196752548, 0.020042521879076958, 0.002362967934459448, -0.0023946005385369062, 0.013424946926534176, 0.030089089646935463, 0.053092438727617264, -0.03507441282272339, -0.03899687901139259, 0.022358041256666183, 0.01711965538561344, 0.018106596544384956, -0.00786390621215105, 0.013728621415793896, -0.05531938746571541, 0.0061968592926859856, -0.009704933501780033, -0.028697248548269272, 0.00909125804901123, -0.08011947572231293, -0.030392764136195183, 0.0008572480292059481, -0.0137918870896101, -0.00017664924962446094, -0.02803928591310978, 0.04400750622153282, -0.019688235595822334, 0.0582042932510376, 0.02167477272450924, -0.007484313100576401, -0.038237690925598145, -0.027178874239325523, 0.023256411775946617, 0.003381543094292283, -0.016069445759058, -0.013956377282738686, 0.0122608607634902, -0.017322104424238205, -0.015133116394281387, -0.02519233711063862, -0.04150219261646271, 0.02154824137687683, 0.047626297920942307, 0.008895134553313255, 0.0009489830699749291, 0.00743370084092021, 0.02776091732084751, -0.00933799333870411, -0.006298084277659655, -0.013589437119662762, -0.017537206411361694, 0.03621319308876991, 0.007421047426760197, 0.03828830271959305, -0.023484166711568832, -0.011330857872962952, 0.01800537295639515, 0.04539934918284416, 0.01612005941569805, 0.030392764136195183, 0.03813646733760834, -0.009489830583333969, -0.002307610586285591, -0.02015640027821064, 0.02560988999903202, 0.042261380702257156, -0.02649560756981373, -0.035023801028728485, -0.02900092303752899, -0.02591356448829174, -0.016841286793351173, -0.024787437170743942, 0.027836836874485016, -0.012406371533870697, 0.0010604886338114738, 0.013386988081037998, -0.025698460638523102, 0.006864310707896948, -0.026394382119178772, 0.022471919655799866, 0.041299741715192795, 0.01122963335365057, 0.017752310261130333, 0.029532352462410927, -0.015677200630307198, -0.003995218779891729, -0.041451580822467804, 0.010242690332233906, -0.00597859313711524, -0.0011364072561264038, -0.020573953166604042, 0.044513631612062454, 0.06974393129348755, -0.034694820642471313, 0.013741274364292622, -0.000984569895081222, 0.019131498411297798, 0.005712877959012985, 0.00969860702753067, 0.015196382068097591, -0.012558208778500557, 0.036263804882764816, 0.0187898650765419, -0.017132308334112167, -0.01310861948877573, -0.04028749465942383, -0.02294008433818817, -0.006291757803410292, -0.003416338935494423, -0.019030272960662842, -0.05623041093349457, -0.009312687441706657, -0.025597237050533295, -0.018498843535780907, -0.04183117300271988, -0.01448780857026577, 0.04109729453921318, 0.03464420884847641, -0.004491853062063456, -0.00598492007702589, 0.046689968556165695, -0.00862309243530035, -0.011204326525330544, -0.005845735780894756, -0.04041402414441109, 0.002535366453230381, -0.042387910187244415, 0.02545805275440216, -0.01863802783191204, 0.020472727715969086, 0.04051525145769119, -0.008452275767922401, 0.0010786773636937141, -0.014108214527368546, 0.002930775983259082, 0.0210674237459898, -0.0021510282531380653, -0.006807371973991394, -0.013298415578901768, 0.0022506716195493937, -0.003808585461229086, 0.026014789938926697, 0.004684812854975462, 0.00743370084092021, -0.004298893269151449, -0.029355209320783615, -0.031050726771354675, 0.0023946005385369062, 0.0214849766343832, -0.013349028304219246, -0.009129216894507408, -0.018119249492883682, 0.010097179561853409, 0.025597237050533295, 0.02309192158281803, -0.005200427025556564, -0.008819215930998325, 0.03049398958683014, -0.02382580190896988, 0.05729326978325844, 0.0275837741792202, 0.011931880377233028, 0.02536948025226593, -0.012855557724833488, -0.010046567767858505, 0.018891088664531708, 0.03588421270251274, 0.02591356448829174, -0.002854857360944152, -0.012482290156185627, 0.04340015724301338, 0.014601686038076878, 0.030114395543932915, -0.04524751380085945, -0.015588628128170967, -0.03973075747489929, -0.011058815754950047, 0.013728621415793896, 0.02519233711063862, 0.0026856220792979, -0.011489021591842175, -0.024357231333851814, 0.021738039329648018, -0.013855152763426304, -0.0025480196345597506, -0.016815979033708572, -0.010343915782868862, -0.013931071385741234, 0.0474744588136673, 0.030139701440930367, 0.00682002492249012, 0.013551478274166584, -0.006547983270138502, -0.026799282059073448, 0.023142533376812935, 0.014677604660391808, 0.05410468950867653, -0.032720934599637985, 0.027862142771482468, -0.0028959799092262983, 0.03697238117456436, 0.060178179293870926, -0.025407439097762108, 0.021560894325375557, 0.011919227428734303, -0.0168539397418499, 0.013576784171164036, 0.039958514273166656, -0.038111161440610886, 0.0027046017348766327, 0.026875199750065804, 0.008825542405247688, -0.04919528216123581, 0.036845847964286804, -0.00458358833566308, 0.0036346050910651684, 0.013690662570297718, 0.006051348522305489, 0.0006429360364563763, -0.020839668810367584, 0.04534873738884926, 0.024547029286623, -0.0019991910085082054, 0.04264097288250923, -0.046209149062633514, 0.002658734330907464, 0.018967008218169212, 0.019232723861932755, -0.0010565344709903002, -0.032594405114650726, -0.0005171957891434431, 0.009863097220659256, -0.012267188169062138, 0.015778424218297005, 0.03431522846221924, -0.003043072298169136, -0.019435172900557518, 0.011938206851482391, 0.025091111660003662, 0.034694820642471313, -0.07065495103597641, -0.07166720181703568, 0.01555066928267479, 0.017258837819099426, -0.003022511024028063, -0.019409867003560066, -0.04415934532880783, 0.029658883810043335, -0.007996764034032822, -0.01157759316265583, 0.04319771006703377, -0.032088279724121094, 0.008920440450310707, -0.02076374925673008, 0.010451466776430607, -0.0018410271732136607, -0.014816788956522942, 0.010211057960987091, 0.008053703233599663, -0.031227869912981987, -0.005595836788415909, 0.0035966457799077034, 0.027077650651335716, -0.015525363385677338, -0.008724317885935307, -0.019650276750326157, -0.016626182943582535, 0.03570706769824028, 0.005899511277675629, 0.04552588239312172, 0.07839865237474442, -0.008281459100544453, -0.012634128332138062, -0.003166440175846219, 0.004922058898955584, -0.00333409383893013, -0.0018805681029334664, -0.009603708982467651, -0.017284145578742027, -0.024838050827383995, -0.003074705135077238, 0.029785415157675743, 0.01806863769888878, -0.022724980488419533, -0.01618332415819168, -0.018878435716032982, -0.021801304072141647, -0.005747674033045769, 0.0011324530933052301, 0.018473537638783455, 0.024293966591358185, 0.015145769342780113, -0.04172994941473007, 0.009401259012520313, 0.026444993913173676, 0.019169457256793976, -0.007674109656363726, 0.027507856488227844, -0.014272705651819706, 0.005412366706877947, -0.0021114873234182596, -0.037959322333335876, -0.009249421767890453, 0.011084122583270073, 0.01198881957679987, -0.025204990059137344, -0.0022190387826412916, 0.016740061342716217, -0.007522272411733866, -0.012798618525266647, -0.006111450958997011, 0.007769008167088032, 0.014589033089578152, 0.005137161817401648, 0.02163681387901306, -0.02836826629936695, 0.025116417557001114, -0.04048994556069374, -0.008003090508282185, -0.003609298961237073, -0.0122735146433115, 0.007180638611316681, 0.008528194390237331, -0.016740061342716217, -0.029810721054673195, 0.003264501690864563, -0.026799282059073448, 0.004523485898971558, 0.021573549136519432, -0.02415478229522705, -0.006022879388183355, -0.012608821503818035, -0.012969435192644596, 0.012950455769896507, -0.019258029758930206, 0.005146651528775692, 0.006535329855978489, 0.023927025496959686, -0.007553905248641968, -0.073489248752594, 0.011780043132603168, 0.020713137462735176, -0.008028396405279636, 0.010059220716357231, 0.02137109823524952, 0.0013507192488759756, 0.006478391122072935, 0.03565645590424538, 0.012741679325699806, 0.02445845678448677, -0.02955765835940838, -0.006003899499773979, -0.022611103951931, 0.015120463445782661, -0.031050726771354675, -0.03064582683146, -0.013526172377169132, -0.013981684111058712, 0.03231603652238846, 0.004874609876424074, 0.016664141789078712, 0.027659693732857704, 0.052788764238357544, -0.02382580190896988, 0.00018742415704764426, 0.022623756900429726, 0.008793910034000874, 0.021383751183748245, -0.010084526613354683, 0.046993643045425415, 0.04704425483942032, -0.007534925360232592, -0.00048674922436475754, 0.01594291627407074, 0.00016112941375467926, 0.009148196317255497, 0.007389414589852095, 0.00871166493743658, 0.020776402205228806, -0.015689853578805923, 0.017410675063729286, 0.02391437254846096, 0.04198301210999489, 0.015487403608858585, 0.03246787562966347, 0.016588224098086357, -0.0004262515576556325, 0.0536491759121418, 0.004868282936513424, 0.04352669045329094, 0.019447825849056244, 0.01594291627407074, -0.03244256600737572, -0.031480930745601654, 0.023813148960471153, -0.008148601278662682, 0.00854717381298542, 0.045424655079841614, -0.014753523282706738, -0.007661456707865, 0.002900724997743964, 0.010426160879433155, -0.028773166239261627, -0.04808180779218674, 0.01700577698647976, -0.00855982769280672, 0.008135948330163956, -0.026014789938926697, -0.007857579737901688, 0.018600068986415863, 0.02228212170302868, -0.006889617070555687, -0.0017176592955365777, 0.004668996669352055, 0.010451466776430607, -0.03492257744073868, 0.033176448196172714, 0.021662119776010513, -0.056483473628759384, 0.02252253144979477, -0.01900496706366539, 0.02900092303752899, 0.04785405099391937, 0.004874609876424074, -0.005317468661814928, -0.02652091346681118, -0.01041350793093443, 0.008901461027562618, -0.03125317394733429, 0.012014125473797321, -0.03590951859951019, 0.009306360967457294, 0.030165009200572968, 0.010160445235669613, 0.006813698448240757, -0.037453196942806244, -0.0225857961922884, 0.010495753027498722, -0.005333284847438335, 0.03082296997308731, 0.01642373390495777, 0.0026191931683570147, -0.003852871246635914, -0.027558468282222748, 0.02443315088748932, 0.013209844008088112, -0.01939721405506134, -0.005690735299140215, -0.004419097676873207, -0.011742083355784416, 0.018929049372673035, 0.023509474471211433, 0.02006782777607441, 0.05415530130267143, 0.024964580312371254, -0.010470446199178696, -0.03942708298563957, 0.0028738370165228844, -0.03079766407608986, 0.027533162385225296, -0.012532902881503105, -0.049574874341487885, 0.006927576381713152, 0.021864570677280426, -0.03193644434213638, 0.01961231604218483, 0.015006585977971554, 0.01600618101656437, -0.03006378374993801, 0.038718510419130325, 0.04413403943181038, -0.019498439505696297, 0.038566671311855316, -0.02621723897755146, 0.03353073447942734, 0.01939721405506134, -0.02743193693459034, -0.02636907622218132, 0.02297804318368435, -0.0011371980654075742, -0.006408798974007368, 0.0034764413721859455, 0.00827513262629509, 0.0421348474919796, -0.008148601278662682, -0.00689594354480505, 0.02445845678448677, -0.016955163329839706, -0.007085740100592375, 0.03006378374993801, 0.006914923433214426, -0.04509567469358444, 0.024534376338124275, -0.02697642520070076, 0.008781257085502148, -0.006750432774424553, -0.026267850771546364, 0.03464420884847641, 0.02167477272450924, 0.03006378374993801, 0.049878548830747604, -0.030443375930190086, -0.035934824496507645, -0.01894170232117176, 0.027963368222117424, -0.024597641080617905, 0.004760731942951679, 0.01333637535572052, -0.018777212128043175, 0.018878435716032982, -0.03682054206728935, 0.010717182420194149, 0.01234943326562643, -0.0008983706356957555, 0.02009313553571701, 0.015006585977971554, 0.011824329383671284, 0.019042927771806717, -0.019435172900557518, 0.06306308507919312, 0.014184133149683475, 0.026242544874548912, 0.023711923509836197, 0.02282620593905449, 0.00221587554551661, 0.023775188252329826, 0.005241549573838711, -0.006529003381729126, 0.020295584574341774, -0.01447515469044447, 0.010394527576863766, -0.039629533886909485, 0.008749623782932758, -0.015411484986543655, -0.026470301672816277, 0.012317799963057041, -0.01486740168184042, -0.008249825797975063, -0.03393563628196716, 0.005469305906444788, -0.04011034965515137, 0.01991599053144455, -0.001866333419457078, 0.0018315373454242945, -0.060178179293870926, 0.00227755936793983, -0.03849075362086296, -0.0037105237133800983, 0.012532902881503105, 0.012817597948014736, -0.008825542405247688, -0.011735756881535053, 0.02576172724366188, -0.0006124894716776907, -0.032872773706912994, -0.010255343280732632, 0.013918418437242508, -0.023016002029180527, 0.0027378161903470755, -0.0003738597733899951, -0.00788288563489914, 0.01767639070749283, 0.03186052665114403, -0.008755950257182121, -0.00735778221860528, 0.006168390158563852, -0.006013389211148024, 0.009844117797911167, 0.015753118321299553, 3.8231166399782524e-05, 0.027229487895965576, 0.012944129295647144, 0.015031891874969006, -0.008041050285100937, -0.007838600315153599, -0.021535588428378105, -0.0005484331049956381, -0.006655534729361534, 0.013437599875032902, -0.007035127840936184, 0.0145637271925807, 0.004393791779875755, -0.02649560756981373, -0.017208226025104523, -0.02497723512351513, -0.010698202066123486, 0.003862361190840602, -0.03249318152666092, -0.020257625728845596, 0.02960827201604843, 0.024547029286623, -0.022471919655799866, 0.002778938738629222, -0.010571671649813652, 0.0360613577067852, 0.016170671209692955, -0.037959322333335876, 0.006845331285148859, -0.011014530435204506, -0.0008453857735730708, 0.005507265217602253, 0.013855152763426304, -0.006560636218637228, -0.01967558264732361, 0.04157811030745506, 0.019624968990683556, -0.005140325054526329, 0.003976238891482353, 0.03558053821325302, 0.005962776951491833, 0.02085232175886631, -0.014348624274134636, 0.026090707629919052, 0.0012289331061765552, 0.020510686561465263, 0.0004080627113580704, -0.008496562018990517, -0.020422115921974182, 0.02194048836827278, 0.02085232175886631, 0.0003224565298296511, 0.015512709505856037, 0.02649560756981373, -0.021953141316771507, -0.052788764238357544, -0.0007694670930504799, -0.005415529944002628, -0.001796741271391511, 0.0008556664106436074, 0.025331521406769753, 0.030544601380825043, -0.0007868651300668716, -0.0012336779618635774, -0.010267997160553932, -0.012222901917994022, 0.01933394744992256, -0.013298415578901768, 0.020561300218105316, 0.024876009672880173, -0.009021665900945663, -0.009293707087635994, -0.04155280441045761, 0.0009537279838696122, 0.004593078047037125, -0.0019090375863015652, -0.014120868407189846, -0.03360665217041969, -0.017511900514364243, -0.005545224528759718, 0.00032779457978904247, -0.007167985197156668, -0.029355209320783615, -0.025078458711504936, -0.00209883414208889, -0.01180534902960062, 0.012438004836440086, -0.0001789228554116562, 0.02361069805920124, -0.006522676907479763, 0.020902933552861214, 0.013500865548849106, 0.02248457260429859, 0.0010968662099912763, -0.020839668810367584, 0.013994337059557438, 0.021750692278146744, -0.030443375930190086, 0.026293156668543816, -0.004368485417217016, 0.007307169493287802, 0.0011016111820936203, -0.016132712364196777, -0.03325236588716507, 0.007142679300159216, 0.04228668659925461, 0.03203766793012619, -0.02803928591310978, -0.025647848844528198, 0.015677200630307198, -0.009749219752848148, -0.003988892305642366, -0.017499247565865517, -0.013969031162559986, 0.0375797301530838, 0.03036745823919773, -0.008800236508250237, 0.032290730625391006, 0.007851253263652325, -0.008192887529730797, 0.06954147666692734, 0.03183521702885628, 0.0013712805230170488, 0.02321845293045044, -0.011621879413723946, -0.017107000574469566, 0.023269064724445343, -0.034720126539468765, 0.009736565873026848, 0.011723103933036327, -0.01661352999508381, 0.01409556157886982, -0.004150219261646271, -0.000546060677152127, 0.013678009621798992, 0.008281459100544453, 0.021813957020640373, -0.008370030671358109, 0.015487403608858585, -0.027811530977487564, 0.021168649196624756, -0.010084526613354683, -0.006269614677876234, -0.0015017656842246652, -0.0344417579472065, 0.0024262333754450083, -0.000852503115311265, 0.002929194364696741, -0.009407585486769676, -0.0011308714747428894, 0.004241954535245895, 0.03725074976682663, 0.0001974082551896572, 0.0483095645904541, 0.01539883203804493, 0.007104719989001751, -0.0032929712906479836, 0.014614338986575603, 0.045120980590581894, -0.011254939250648022, -0.03573237732052803, -0.00809166207909584, 0.014437195844948292, -0.0414009690284729, -0.03879442811012268, 0.007503292988985777, -0.020535994321107864, 0.021105382591485977, 0.009407585486769676, -0.006111450958997011, -0.0444377139210701, -0.01633516140282154, -0.02393968030810356, 0.001969139790162444, -0.013703315518796444, 0.015031891874969006, 0.0046057309955358505, -0.013905765488743782, -0.026596831157803535, -0.01364004984498024, 0.005330121610313654, -0.01809394359588623, -0.024015597999095917, 0.029810721054673195, 0.01587964966893196, 0.0062411450780928135, 0.0005741347558796406, 0.031227869912981987, 0.020358849316835403, 0.009078605100512505, -0.028292348608374596, 0.018081290647387505, 0.006604922004044056, -0.003862361190840602, -0.0452728196978569, -0.0012226065155118704, 0.018574761226773262, 0.012944129295647144, -0.026799282059073448, -0.014589033089578152, -0.002929194364696741, -0.011413102969527245, 0.010014934465289116, 0.004925222136080265, -0.0036219521425664425, 0.014614338986575603, 0.011571266688406467, -0.003495421027764678, 0.007408394478261471, 0.006332880351692438, -0.05152345448732376, -0.007579211611300707, 0.006788392085582018, -0.009578402154147625, -0.0014986024470999837, 0.002325008623301983, 0.00020156004757154733, 0.018258433789014816, -0.00360297248698771, 0.0082434993237257, 0.00871166493743658, -0.03798462823033333, -0.039325859397649765, 0.011938206851482391, -0.006984515581279993, -0.02163681387901306, -0.026849893853068352, -0.006117777433246374, 0.003416338935494423, 2.2402426111511886e-05, -0.010647590272128582, 0.013678009621798992, 0.01867598667740822, -0.02009313553571701, -0.002282304223626852, 0.010812080465257168, 0.003473278135061264, -0.02519233711063862, -0.02176334522664547, -0.02895030938088894, -0.002579652238637209, 0.04033810645341873, -0.023053962737321854, -0.013829846866428852, -0.017714351415634155, -0.013121272437274456, 0.012052085250616074, 0.009040645323693752, 0.019080886617302895, 0.004264097195118666, 0.016904551535844803, 0.021320486441254616, -0.01791680045425892, 0.022193551063537598, -0.025204990059137344, 0.04937242716550827, 0.008914113976061344, -0.00613675732165575, 0.03965483978390694, -0.020725790411233902, -0.029532352462410927, 0.012950455769896507, 0.0028121531940996647, 0.040565863251686096, 0.02803928591310978, -0.008825542405247688, 0.00557053042575717, -0.0015175821026787162, -0.0003022906603291631, 0.008680031634867191, -0.03423931077122688, -0.004381138365715742, 0.04739854112267494, 0.015335566364228725, 0.03393563628196716, 0.021953141316771507, 0.03694707527756691, 0.025597237050533295, 0.01172943040728569, -0.027052344754338264, -0.0010502078803256154, 0.022029060870409012, -0.044513631612062454, -0.05149814859032631, -0.015904955565929413, -0.030721744522452354, -0.017739657312631607, 0.00818656012415886, -0.004880936350673437, -0.02697642520070076, 0.01566454768180847, -0.03188583254814148, -0.05233325436711311, -0.003172766650095582, 0.016069445759058, -0.026293156668543816, -0.005959613714367151, 0.008009416982531548, -0.025533970445394516, -0.018840476870536804, 0.0016464856453239918, 0.00835105124861002, 0.002385110827162862, -0.0172714926302433, 0.01566454768180847, -0.01265310775488615, 0.012096370570361614, -0.020118441432714462, 0.012691066600382328, 0.0034764413721859455, 0.020384157076478004, -0.019726194441318512, -0.014816788956522942, -0.009610035456717014, 0.01822047494351864, 0.030418070033192635, -0.00217475276440382, -0.0051118554547429085, -0.015360872261226177, -0.007402068004012108, -0.0122608607634902, -0.030418070033192635, -0.0007042245124466717, 0.008857175707817078, 0.021750692278146744, 0.009205135516822338, -0.010729835368692875, 0.00283745932392776, 0.0035270536318421364, 0.055724285542964935, 0.0360613577067852, -0.0020150074269622564, 0.019118845462799072, 0.016056792810559273, -0.006339206825941801, -0.014285358600318432, 0.011090449057519436, 0.012931476347148418, 0.01818251609802246, -0.030468683689832687, 0.0055800206027925014, -0.003995218779891729, 0.00037603452801704407, -0.0034606249537318945, -0.004150219261646271, -0.024078862741589546, -0.003770626150071621, 0.011754737235605717, 0.010014934465289116, -0.018106596544384956, 0.011963512748479843, -0.02955765835940838, 0.008585133589804173, -0.007022474892437458, -0.025723768398165703, -0.005051753018051386, -0.010400854051113129, 0.01715761423110962, -0.028925003483891487, -0.020751096308231354, -0.0016227610176429152, -0.03742789104580879, 0.024445803835988045, 0.04046463966369629, 0.030848275870084763, -0.004453893750905991, 0.025862952694296837, -0.013969031162559986, -0.0628606379032135, -0.013931071385741234, 0.027482548728585243, 0.006026042625308037, -0.0005444790585897863, -0.01985272578895092, -0.038085855543613434, -0.0013957959599792957, 0.006560636218637228, -0.005070732906460762, -0.017043735831975937, -0.011514327488839626, -0.006661861203610897, -0.01272902637720108, 0.005159304477274418, -0.023484166711568832, -0.034568291157484055, 0.01203310489654541, -0.00862309243530035, 0.01742332987487316, 0.030114395543932915, -0.038693204522132874, -0.01252024993300438, -0.014816788956522942, 0.02400294505059719, -0.04398220032453537, -0.02776091732084751, 0.0024088353384286165, -0.024331925436854362, 0.02712826244533062, -0.04266627877950668, 0.01952374540269375, -7.92302016634494e-05, 0.019624968990683556, -0.005807776469737291, -0.010483099147677422, 0.013475559651851654, 0.018688639625906944, -0.024800090119242668, -0.0012550301617011428, 0.040844231843948364, -0.0017572003416717052, 0.010748814791440964, 0.017347410321235657, -0.04016096517443657, -0.0001521338417660445, -0.0172461848706007, -0.014373930171132088, -0.043906282633543015, -0.027862142771482468, 0.020902933552861214, -0.0010747233172878623, 0.017777616158127785, 0.0021019973792135715, -0.021472323685884476, -0.005083385854959488, 0.01876455917954445, 0.0383136086165905, -0.003014602931216359, 0.04431118443608284, -0.012475963681936264, -0.00720594497397542, 0.003859197720885277, -0.01045779325067997, -0.01922007091343403, -0.00022597658971790224, -0.010097179561853409, 0.002396182157099247, -0.001369698904454708, -0.013538825325667858, 0.00758553808555007, 0.003177511738613248, 0.00646257447078824, -0.0037041972391307354, 0.02109272964298725, -0.03277155011892319, 0.08259948343038559, -0.03342951089143753, -0.0233702901750803, -0.01863802783191204, 0.012096370570361614, 0.025483358651399612, 0.009350646287202835, 0.022231509909033775, 0.03216420114040375, -0.04428587481379509, -0.016499651595950127, 0.002924449509009719, -0.023117227479815483, 0.015082504600286484, 0.008300438523292542, 0.003973075654357672, 0.030240926891565323, 0.015563322231173515, -0.0039034837391227484, -0.0018600068287923932, 0.013209844008088112, 0.005194100551307201, 0.03664340078830719, 0.025382133200764656, -0.014968626201152802, 0.014133521355688572, 0.008287785574793816, 0.018587414175271988, 0.010008607991039753, 0.01310861948877573, -0.0322401188313961, -0.04071769863367081, 0.03173399344086647, 0.009964321739971638, 0.02930459752678871, -0.020384157076478004, -0.026571525260806084, -0.0016607203288003802, -0.0064119622111320496, -3.0397113732760772e-05, 0.013855152763426304, 0.029507046565413475, -0.021295180544257164, 0.007066760677844286, 0.00033352800528518856, -0.03603605180978775, -0.005459815729409456, 0.001964394934475422, 0.06938964128494263, -0.04891691356897354, 0.014816788956522942, -0.06012756749987602, -0.045146286487579346, 0.040262188762426376, -0.011476368643343449, -0.009970649145543575, -0.007731048855930567, 0.01180534902960062, 0.037453196942806244, 0.013855152763426304, -0.016815979033708572, 0.02773561142385006, -0.01809394359588623, -0.013361681252717972, 0.002739397808909416] \ No newline at end of file diff --git a/cache/text-embedding-3-small312de67a-e95c-5406-8bf4-2aa68c02a520 b/cache/text-embedding-3-small312de67a-e95c-5406-8bf4-2aa68c02a520 new file mode 100644 index 0000000000000000000000000000000000000000..faf1e4f806c50dae8baae0a9ed58d0002c06e674 --- /dev/null +++ b/cache/text-embedding-3-small312de67a-e95c-5406-8bf4-2aa68c02a520 @@ -0,0 +1 @@ +[0.02372107468545437, 0.010083885863423347, 0.12769682705402374, 0.008119853213429451, -0.012360220775008202, 0.024637160822749138, 0.042750678956508636, 0.08366918563842773, 0.002168764127418399, -0.0066555035300552845, 0.03939169645309448, -0.05663076788187027, -0.04555445536971092, -0.03342325612902641, 0.03272925317287445, 0.03222956880927086, -0.0256920475512743, -0.01757219433784485, -0.029925474897027016, -0.01572614163160324, 0.05665852874517441, -0.003110875142738223, 0.01719743199646473, 0.03761504590511322, -0.014310372993350029, 0.03450590372085571, -0.04594310000538826, 0.005347304977476597, 0.0027760181110352278, -0.03583839163184166, 0.03000875562429428, -0.03639359772205353, 0.009716062806546688, 0.023401832208037376, -0.007328687701374292, -0.006364021450281143, -0.017044750973582268, 0.02533116564154625, 0.05338282883167267, 0.006999035365879536, -0.04899672046303749, -0.016961470246315002, 0.013359586708247662, 0.010070005431771278, 0.03281253203749657, -5.76349048060365e-05, 0.007082316093146801, -0.01753055490553379, 0.0023093000054359436, 0.05060680955648422, -0.03678223863244057, 0.0006762206321582198, -0.01611478440463543, -0.0003053619875572622, -0.034117262810468674, -0.0017887966241687536, 0.03842008858919144, -0.021222658455371857, 0.017794275656342506, 0.07584081590175629, 0.04050210490822792, -0.020514773204922676, 0.011860537342727184, -0.005069702863693237, -0.009542562067508698, 0.01701699011027813, -0.05502067878842354, 0.09810447692871094, -0.035533029586076736, 0.0014608794590458274, 0.005583266261965036, 0.01897408440709114, -0.01365800853818655, 0.03378413990139961, 0.041695792227983475, 0.004434688948094845, 0.006613863166421652, -0.0190157238394022, -0.013005645014345646, -0.0023891106247901917, 0.011062432080507278, 0.014164632186293602, 0.023082589730620384, -0.03364533931016922, 0.014504694379866123, 0.01365106925368309, -0.04436076804995537, 0.022457987070083618, 0.029453551396727562, 0.02188890241086483, -0.015254219062626362, 0.02331855148077011, -0.023221390321850777, 0.039891380816698074, -0.02534504421055317, 0.008536255918443203, -0.026080690324306488, -0.0005044545396231115, -0.016392387449741364, 0.05193929746747017, 0.03711536154150963, -0.023623913526535034, 0.05268882215023041, -0.00958420243114233, 0.029592351987957954, -0.003775384509935975, 0.02168070152401924, -0.04505477473139763, 0.004327117931097746, -0.0024307507555931807, -0.04338916391134262, -0.02118101716041565, -0.02714945748448372, 0.02552548609673977, -0.038614410907030106, -0.03708760067820549, -0.006589572876691818, -0.03941945731639862, 0.041862353682518005, -0.00664856331422925, 0.016933709383010864, -0.00048580317525193095, 0.023748833686113358, -0.007918591611087322, -0.018391119316220284, -0.024720441550016403, 0.0021652940195053816, 0.01791919581592083, -0.012707222253084183, -0.07622945308685303, -0.0004313671961426735, -0.0031542505603283644, -0.04255635663866997, -0.06090583652257919, 0.02029269188642502, -0.03125796467065811, -0.04619294032454491, 0.028357025235891342, -0.0035307479556649923, 0.012179778888821602, 0.03678223863244057, 0.013678829185664654, 0.030064275488257408, 0.00018109180382452905, -0.03575511276721954, 0.013081985525786877, -0.008383574895560741, 0.06273800879716873, -0.007807550951838493, 0.0016838284209370613, -0.015628982335329056, -0.032840292900800705, -0.01014634594321251, 0.001821761834435165, 0.031174682080745697, 0.037698324769735336, -0.04508253186941147, 0.04558221623301506, -0.011777256615459919, -0.023193631321191788, -0.05021816864609718, 0.03039739839732647, -0.04399988800287247, 0.0030033045914024115, 0.04816391319036484, -0.04955192282795906, -0.0032392661087214947, -0.0398358590900898, -0.09682750701904297, -0.021097736433148384, -0.01791919581592083, -0.041890110820531845, -0.03836457058787346, 0.01483781635761261, -0.03347877785563469, 0.0013628513552248478, -0.04486045241355896, -0.03381190076470375, -0.001222315477207303, -0.00030557886930182576, -0.022680068388581276, -0.017280712723731995, 0.032479412853717804, -0.010854230262339115, -0.05232794210314751, -0.04125162959098816, -0.027246616780757904, 0.008397454395890236, 0.0161286648362875, 0.008640356361865997, -0.0025869018863886595, 0.044055406004190445, 0.02875954657793045, -0.013803750276565552, 0.0122144790366292, 0.008092092350125313, 0.010028365068137646, 0.004833741579204798, 0.013026464730501175, 0.009105339646339417, 0.03203525021672249, -0.033756379038095474, 0.0618496835231781, 0.021791741251945496, -0.03111916221678257, 0.0020733384881168604, 7.677425310248509e-05, -0.006419541779905558, -0.02620561048388481, 0.04286171868443489, 0.0441664457321167, 0.01446305401623249, -0.01629522629082203, 0.02515072375535965, -0.007682629860937595, -0.00968136265873909, -0.0048476215451955795, -0.019959568977355957, 0.03472798690199852, 0.009008178487420082, 0.014921097084879875, 0.00896653812378645, 0.01537914015352726, 0.006117649842053652, 0.013047285377979279, 0.04619294032454491, -0.00442774873226881, -0.006523642688989639, -0.018210679292678833, -0.0037441544700413942, 0.044055406004190445, -0.034839026629924774, -0.03603271394968033, 0.02226366475224495, 0.014116051606833935, -0.0025296465028077364, -0.02044537290930748, -0.011978518217802048, 0.018599320203065872, -0.018668722361326218, -0.0470535047352314, 0.0219027828425169, -0.026136210188269615, 0.0031369004864245653, -0.025289524346590042, 0.044416289776563644, 0.021958302706480026, -0.020209411159157753, -0.025428324937820435, 0.014296493493020535, -0.00021861142886336893, 0.0030154497362673283, -0.04594310000538826, 0.017849795520305634, -0.007231527008116245, 0.00750218890607357, 0.03581063449382782, 0.02639993093907833, 0.025234004482626915, -0.027454819530248642, 0.05118977278470993, 0.04863583669066429, 0.021958302706480026, -0.04974624514579773, 0.009702183306217194, 0.02444283850491047, 0.002229489618912339, 0.06151656061410904, -0.025747567415237427, -0.048913437873125076, 0.012054858729243279, 0.0283986646682024, -0.004212607629597187, 0.013311007060110569, -0.04111282899975777, 0.01483781635761261, -0.00556244608014822, -0.008543195202946663, -0.018391119316220284, 0.053632669150829315, -0.015795541927218437, -0.031563326716423035, 0.020917296409606934, -0.044582851231098175, 0.021916663274168968, 0.018849162384867668, -0.01626746542751789, 0.03109140321612358, -0.00804351270198822, 0.013553908094763756, 0.017072511836886406, -0.03578287363052368, -0.0181135181337595, -0.03725416213274002, -0.012797443196177483, -0.0070094456896185875, 0.010666849091649055, -0.04166803136467934, -0.029592351987957954, 0.023401832208037376, 0.008619535714387894, 0.014560215175151825, 0.014324253425002098, -0.05729701370000839, 0.02027881145477295, 0.05105097219347954, -0.04175131022930145, -0.0061766402795910835, -0.002666712272912264, -0.010181046091020107, -0.02638605237007141, -0.0065305824391543865, 0.05268882215023041, -0.03400622308254242, -0.010708489455282688, 0.038059208542108536, 0.021069977432489395, -0.015393020585179329, 0.004573489539325237, -0.03672672063112259, -0.020223291590809822, -0.04863583669066429, -0.003733744379132986, 0.02495640330016613, 0.044582851231098175, -0.01629522629082203, 0.03889201208949089, 0.019321085885167122, 0.057074930518865585, -0.04724782705307007, -0.028176583349704742, -0.021639060229063034, 0.007481368724256754, -0.002045578323304653, -0.07056637853384018, -0.021430859342217445, 0.013144445605576038, -0.05099545046687126, -0.00250882632099092, -0.052216898649930954, -0.03800368681550026, 0.014407534152269363, 0.0028488885145634413, -0.0009776788065209985, -0.029342511668801308, 0.045249093323946, -0.06384841352701187, -0.059628866612911224, 0.0517449751496315, 0.04352796450257301, -0.014018891379237175, -0.057074930518865585, 0.06151656061410904, 0.02136145904660225, 0.03633807599544525, 0.0132069056853652, 0.014726775698363781, -0.009438461624085903, -0.010521108284592628, 0.01715579256415367, -0.010167166590690613, -0.02062581479549408, -0.011353913694620132, 0.02404031716287136, 0.0073009273037314415, 0.02095893584191799, -0.017336232587695122, -0.026871854439377785, 0.016586707904934883, -0.02045925334095955, 0.02313811145722866, -0.05990647152066231, -0.06073927506804466, 0.009702183306217194, -0.025594886392354965, -0.01789143681526184, 0.01661446876823902, -0.011527415364980698, 0.06434810161590576, 0.018710361793637276, 0.027371538802981377, -0.020584173500537872, -0.01751667447388172, 0.01057662907987833, -0.044055406004190445, 0.05774117633700371, 0.0038898952770978212, -0.05985094979405403, -0.01915452443063259, -0.0105002885684371, 0.01790531724691391, 0.022707827389240265, -0.0027881632559001446, -0.008570956066250801, -0.00010377536091255024, -0.008071272633969784, -0.00968136265873909, 0.04083522409200668, 0.04771975055336952, -0.005194623954594135, 0.00601007929071784, 0.0333399772644043, -0.000890060793608427, -0.046387262642383575, 0.00411544693633914, -0.004000936169177294, 0.005364655051380396, -0.037143122404813766, -0.03617151454091072, -0.030258597806096077, 0.01718355156481266, -0.05080113187432289, 0.038281287997961044, 0.023207511752843857, 0.036615677177906036, -0.040085699409246445, -0.011777256615459919, -0.017280712723731995, 0.0014869046863168478, 0.09199723601341248, 0.010791770182549953, -0.07722882181406021, -0.015393020585179329, -0.04413868859410286, 0.028481945395469666, 0.04066866636276245, -0.01880752295255661, 0.020709095522761345, 0.01020880602300167, -0.07889443635940552, -0.05951782688498497, -0.009820164181292057, 0.011874416843056679, -0.04336140304803848, -0.01004918571561575, 0.018529919907450676, -0.01954316720366478, -0.018169037997722626, 0.02639993093907833, -0.05740805342793465, -0.01029902696609497, -0.028704026713967323, -0.001918922527693212, -0.0034370573703199625, 0.009577262215316296, 0.02227754518389702, -0.023610033094882965, 0.00285062356851995, -0.02873178757727146, -0.05468755587935448, -0.029453551396727562, -0.0041258567944169044, 0.023984795436263084, -0.012158959172666073, -0.06506986171007156, -0.02530340477824211, 0.0012466056505218148, -0.039169613271951675, 0.01031290739774704, -0.0031594554893672466, 0.029814433306455612, -0.00201261299662292, 0.01646178774535656, -0.003730274271219969, 0.03492230549454689, -0.0023266500793397427, 0.009723003022372723, 0.016059264540672302, -0.0029130838811397552, -0.029953235760331154, 0.00019670691108331084, 0.03311789408326149, 0.01104855164885521, 0.0065756929107010365, -0.017405632883310318, 0.008265594020485878, -0.024095837026834488, -0.043167080730199814, -0.027746301144361496, -0.006204400211572647, -0.013234666548669338, -0.023610033094882965, -0.0018391120247542858, 0.01012552622705698, 0.0016630083555355668, 0.010902810841798782, 0.004101566504687071, 0.018030237406492233, -0.07384207844734192, 0.0264138113707304, 0.05432667210698128, 0.019640328362584114, 0.02892610803246498, -0.016184184700250626, -0.028509706258773804, -0.03675447776913643, -0.013519207946956158, 0.02587248757481575, -0.009889564476907253, -0.010076945647597313, 0.08211461454629898, 0.018529919907450676, -0.005930268671363592, -0.0181135181337595, 0.040196742862463, 0.04902447760105133, -0.07162126898765564, 0.022735588252544403, 0.017294593155384064, 0.02115325815975666, -0.005638786591589451, 0.022499626502394676, 0.0004975144984200597, -0.013137505389750004, 0.010264326818287373, 0.020764615386724472, 0.00913309957832098, 0.004632479976862669, 0.012415740638971329, 0.0019293325021862984, -0.009160859510302544, -0.012825203128159046, 0.05277210474014282, 0.03453366458415985, -0.01446305401623249, 0.026552611961960793, -0.04724782705307007, -0.033201176673173904, -0.02116713859140873, -0.0031542505603283644, 0.05701941251754761, 0.0011633250396698713, -0.02530340477824211, 0.048385996371507645, -0.05513171851634979, -0.0033850069157779217, -0.005163393449038267, 0.013623308390378952, -0.034283824265003204, 0.010437827557325363, 0.02764913998544216, -0.024859242141246796, -0.010729310102760792, -0.01202015858143568, -0.015351380221545696, -3.825157546089031e-05, -0.0046394201926887035, 0.00831417366862297, 0.0008714094292372465, 0.01447693444788456, 0.039891380816698074, -0.004052986390888691, -0.007703450042754412, 0.010805650614202023, -0.010479467920958996, -0.029370270669460297, 0.03414502367377281, -0.009979784488677979, 0.00975770317018032, 0.02895386889576912, -0.007349507883191109, -0.04538789391517639, 0.006100299768149853, -0.025622647255659103, -0.005666546989232302, 0.0011216847924515605, 0.005874748341739178, 0.008626475930213928, -0.04522133246064186, 0.000974208815023303, -0.003155985614284873, -0.013040345162153244, 0.0019501526840031147, -0.05277210474014282, 0.04644278064370155, 0.027621379122138023, -0.02136145904660225, 0.0019865878857672215, 0.02334631234407425, 0.01358166802674532, 0.00913309957832098, -0.045859817415475845, 0.0019380076555535197, -0.004288948141038418, -0.0539102703332901, 0.008112912997603416, -0.023651674389839172, 0.026733053848147392, 0.006544462405145168, -0.010305967181921005, -0.02694125473499298, 0.004195257090032101, 0.03819800913333893, 0.011798076331615448, -0.018349479883909225, -0.030619479715824127, 0.007148246746510267, -0.01175643689930439, 0.02639993093907833, -0.002699677599593997, 0.0015441600698977709, -0.008071272633969784, -0.013678829185664654, 0.02026493102312088, -0.055992282927036285, -0.017697114497423172, 0.021972183138132095, -0.031535565853118896, 0.03309013694524765, -0.02077849581837654, 0.03131348267197609, -0.00830723438411951, 0.056158844381570816, 0.006374431308358908, -0.00806433241814375, 0.024276278913021088, -0.02205546386539936, 0.00986180454492569, 0.018557680770754814, 0.022693946957588196, 0.01301952451467514, -0.03611599653959274, 0.0069920956157147884, 0.0074258483946323395, 0.04325036332011223, 0.020500892773270607, -0.0009247609996236861, 0.0047990414313972, 0.011409434489905834, -0.010090826079249382, -0.004344468470662832, -0.023651674389839172, -0.0028176582418382168, -0.0009646662510931492, 0.009480101987719536, 0.022360825911164284, 0.022527387365698814, -0.0015484975883737206, -0.0039176554419100285, -0.057796694338321686, -0.0031785406172275543, -0.01755831390619278, 0.025608766824007034, -0.0355052724480629, 0.014421413652598858, -0.00723846722394228, -0.014907216653227806, -0.032673731446266174, -0.027413178235292435, 0.0029980994295328856, 0.01969584822654724, -0.002300624968484044, 0.06129447743296623, 0.013380407355725765, 0.034283824265003204, -0.014532454311847687, 0.015628982335329056, 0.012866843491792679, -0.008036572486162186, 0.032257329672575, -0.01751667447388172, 0.019251685589551926, -0.008397454395890236, 0.021833382546901703, -0.005128693301230669, 0.03125796467065811, -0.012172839604318142, -0.010819530114531517, 0.015490180812776089, 0.018918562680482864, -0.08439094573259354, 0.04644278064370155, 0.05846294015645981, 0.0008367092232219875, -0.015809422358870506, 0.0020716034341603518, -0.027524219825863838, -0.05299418419599533, 0.016961470246315002, 0.019029604271054268, -0.004136267118155956, 0.008092092350125313, -0.008154553361237049, -0.029953235760331154, 0.004507559351623058, -0.015517940744757652, 0.030119795352220535, 0.006520172581076622, 0.026871854439377785, 0.002659772289916873, -0.01665610820055008, 0.021597420796751976, -0.01841888017952442, -0.031146923080086708, -0.021125497296452522, 0.007793670520186424, 0.02481760084629059, 0.06134999915957451, -0.021458620205521584, -0.025594886392354965, 0.023290792480111122, 0.023082589730620384, -0.009729943238198757, -0.011166532523930073, -0.029897714033722878, -0.04233427718281746, 0.010444767773151398, 0.0038760153111070395, 0.01661446876823902, -0.01211731880903244, -0.02385987527668476, -0.013269366696476936, 0.02892610803246498, -0.021805621683597565, -0.0007126558921299875, 0.04608190059661865, -0.022013822570443153, -0.004844151437282562, -0.01436589378863573, -0.044249728322029114, 0.024664919823408127, -0.015295859426259995, -0.00591985834762454, -0.039863619953393936, 0.007439728360623121, 0.014254853129386902, 0.0063848416320979595, 0.026816334575414658, 0.010646029375493526, -0.016156425699591637, 0.03023083694279194, -0.010083885863423347, -0.006849824450910091, -0.029398031532764435, 0.023457352072000504, 0.034117262810468674, -0.015448540449142456, -0.03722640126943588, 0.0007074508466757834, 0.015517940744757652, -0.01358166802674532, -0.04752542823553085, 0.013158326037228107, -0.031757645308971405, -0.009035938419401646, -0.001249208115041256, -0.013179145753383636, 0.0329790934920311, -0.013449807651340961, 0.033534299582242966, -0.027440939098596573, 0.012804383412003517, -0.008834677748382092, -0.004805981181561947, 0.014893337152898312, -0.00026480609085410833, -0.011798076331615448, 0.019834648817777634, 0.018779762089252472, -0.03522766754031181, 0.014352013356983662, 0.013956430368125439, -0.0007894301088526845, 0.03600495308637619, 0.008203133009374142, 0.01862708106637001, -0.014227092266082764, 0.043861083686351776, -0.0002940844278782606, 0.03450590372085571, 0.015448540449142456, -0.0028645035345107317, 0.007377267815172672, -0.04158475250005722, 0.03836457058787346, -0.02349899336695671, -0.02155577950179577, -0.0071551864966750145, 0.02964787371456623, -0.02118101716041565, 0.0008206603233702481, 0.010819530114531517, -0.050412487238645554, -0.009160859510302544, -0.03395070135593414, -0.03450590372085571, 0.02313811145722866, -0.02029269188642502, 0.016170306131243706, 0.02312423102557659, -0.0061592902056872845, 0.007370328065007925, -0.023832114413380623, -0.013179145753383636, 0.035172149538993835, 0.02713557705283165, 0.03850337117910385, -0.03522766754031181, 0.028648506850004196, -0.0011806752299889922, 0.01572614163160324, -0.009376000612974167, 0.009001238271594048, 0.01880752295255661, 0.025261763483285904, 0.04508253186941147, -0.014643494971096516, 0.022471865639090538, 0.0022850099485367537, -0.007821430452167988, -0.01846051961183548, 0.031146923080086708, -0.041501469910144806, 0.009355180896818638, 0.007585469167679548, 0.0076340497471392155, 0.023596152663230896, 0.017488913610577583, 0.0037719146348536015, -0.02349899336695671, 0.06307113170623779, -0.014643494971096516, 0.00886937789618969, 0.013984191231429577, -0.016933709383010864, 0.03164660558104515, -0.025608766824007034, 0.04036330431699753, 0.00977158360183239, -0.04263963922858238, -0.017336232587695122, 0.006766544189304113, -0.019612567499279976, -0.007578529417514801, 0.014310372993350029, 0.001844316953793168, 0.019945690408349037, -0.012235299684107304, 0.03544975072145462, 0.024470599368214607, 0.042084433138370514, -0.012179778888821602, 0.015656741335988045, -0.003411032259464264, -0.013047285377979279, 0.024900881573557854, 0.0034301173873245716, -0.004452039021998644, 0.010236566886305809, -0.021458620205521584, -0.01880752295255661, -0.06451465934515, -0.013519207946956158, -0.008557075634598732, -0.029398031532764435, 0.03866993263363838, 0.020348211750388145, 0.0172113124281168, 0.03281253203749657, -0.0066728536039590836, -0.003601883538067341, 0.006589572876691818, 0.005035002715885639, -0.044777169823646545, 0.0009733413462527096, -0.02077849581837654, 0.029980994760990143, 0.03347877785563469, 0.0023925804998725653, -0.020736854523420334, 0.0028193932957947254, -0.0026857974007725716, -0.0038864254020154476, -0.04069642350077629, 0.059961989521980286, 0.02730213850736618, -0.03525542840361595, 0.03855888918042183, 0.0024880061391741037, 0.006440361961722374, 0.03617151454091072, -0.008022692054510117, 0.031591083854436874, -0.025067443028092384, 0.015615101903676987, -0.006280740723013878, -0.03575511276721954, -0.007467488758265972, -0.01951540634036064, 0.021666821092367172, -0.009285780601203442, 0.038614410907030106, -0.001873812172561884, 0.003792734583839774, 0.038086969405412674, -0.02480372227728367, -0.012103438377380371, 0.0036747539415955544, 0.019418247044086456, 0.0003157720493618399, 0.0008978683617897332, -0.002104568760842085, -0.02892610803246498, -0.021305939182639122, -0.014310372993350029, 0.026677533984184265, -0.01589270308613777, 0.0006441229488700628, -0.0006432554218918085, 0.06579162925481796, 0.00029039752553217113, 0.016531188040971756, 0.02079237625002861, 0.0014912422047927976, -0.007613229565322399, 0.03739296272397041, -0.052744343876838684, -0.01571226306259632, -0.004101566504687071, -0.06506986171007156, 0.008924897760152817, -0.008508495055139065, -3.703164838952944e-05, -0.007758970372378826, 0.009362121112644672, 0.04916327819228172, -0.03472798690199852, 0.010722369886934757, 0.005996198859065771, -0.005416705273091793, 0.046054139733314514, 0.01753055490553379, -0.011846656911075115, 0.013088924810290337, -0.04652606323361397, 0.009667483158409595, 0.026358291506767273, 0.013213845901191235, -0.007883891463279724, -0.02875954657793045, 0.006815124303102493, 0.011610695160925388, -0.028648506850004196, -0.015254219062626362, 0.005305664613842964, -0.011111012659966946, 0.0025469965767115355, 0.026150090619921684, 0.018918562680482864, -0.02295766957104206, 0.03869769349694252, -0.017502794042229652, -0.010417007841169834, 0.0011633250396698713, -0.02805166319012642, -0.008210073225200176, 0.028134943917393684, 0.027080055326223373, 0.048774637281894684, -0.0256920475512743, -0.033034615218639374, -0.04361124336719513, 0.014504694379866123, -0.014532454311847687, -0.0052466741763055325, -0.03259045258164406, -0.0104100676253438, 0.005274434108287096, -0.028648506850004196, 0.015323619358241558, 0.01367188896983862, 0.03275701403617859, 0.02875954657793045, -0.014879456721246243, 0.006770013831555843, 0.007536889053881168, -0.0012761007528752089, 0.013304066844284534, 0.04036330431699753, 0.005014182534068823, 0.011631515808403492, 0.020015090703964233, 0.012221419252455235, -0.013755169697105885, 0.005024592857807875, 0.031396765261888504, 0.019418247044086456, 0.054382193833589554, 0.030980361625552177, -0.008793037384748459, 0.02295766957104206, -0.004486739169806242, -0.015587341040372849, 0.026011290028691292, -0.008265594020485878, -0.02456776052713394, -0.004146676976233721, -0.057241491973400116, 0.020389853045344353, 0.036476876586675644, 0.016406266018748283, 0.006357081234455109, -0.03980809822678566, 0.009376000612974167, 0.020542534068226814, -0.03128572180867195, 0.05249449983239174, -0.012443500570952892, 0.014893337152898312, -0.01447693444788456, 0.011714796535670757, 0.00062720658024773, 0.00525014428421855, 0.04466613009572029, -0.02459551952779293, -0.001598812872543931, 0.015573461540043354, -0.007176006678491831, -0.008376634679734707, 0.012825203128159046, -0.0035706532653421164, 0.014934977516531944, -0.0029963646084070206, -0.008383574895560741, -0.03200748935341835, -0.004170967265963554, 0.0032340609468519688, 0.008279473520815372, 0.022929908707737923, 0.01357472874224186, 0.03978033736348152, 0.008730576373636723, 0.00875833723694086, 0.013720469549298286, -0.010153286159038544, 0.0022693946957588196, 0.04119610786437988, 0.011999337933957577, -0.01647566631436348, -0.014685135334730148, -0.003959295805543661, -0.016336865723133087, 0.009299660101532936, -0.025567125529050827, 0.004899671766906977, 0.009549502283334732, -0.03145228326320648, -0.0073633878491818905, 0.040807466953992844, -0.01183277741074562, 0.003653933759778738, 0.013241605833172798, 0.024678800255060196, 0.025372805073857307, -0.025816967710852623, 0.014560215175151825, -0.0011806752299889922, -0.016045384109020233, -0.015795541927218437, -0.027066176757216454, 0.0029096140060573816, -0.014490813948214054, 0.015295859426259995, -0.009167799726128578, 9.13591866265051e-05, 0.007307867519557476, -0.002895733807235956, 0.015184818767011166, 0.037726085633039474, -0.03128572180867195, 0.025386685505509377, 0.016322987154126167, 0.0026545673608779907, -0.007807550951838493, -0.004438159056007862, -0.011721736751496792, 0.009799343533813953, 0.03239613026380539, 0.02131981961429119, 0.014865576289594173, 0.022721707820892334, 0.037892647087574005, -0.021125497296452522, -0.02029269188642502, -0.019071243703365326, 0.009237200021743774, -0.01828007958829403, -0.009264959953725338, 0.05540931969881058, -0.014268732629716396, 0.02424851804971695, -0.010007545351982117, -0.0208201352506876, -0.004087686538696289, -0.02170846052467823, 0.00556244608014822, 0.016198065131902695, -0.04022450000047684, 0.00461512990295887, 0.004535319283604622, -0.005801877938210964, 0.010090826079249382, -0.045526694506406784, 0.012915424071252346, -0.032257329672575, -0.012200599536299706, 0.0038413149304687977, -0.017669355496764183, -0.007495248690247536, -0.02243022620677948, -0.001549365115351975, 0.0013628513552248478, -0.008362754248082638, -0.009854864329099655, 0.0019171874737367034, 0.027454819530248642, -0.0181135181337595, 0.0037823247257620096, 0.026358291506767273, 0.0014530719490721822, 0.010854230262339115, -0.04058538377285004, -0.0007100533694028854, 0.02498416230082512, -0.022388584911823273, 0.014851696789264679, 0.011423313990235329, 0.008286413736641407, -0.04977400228381157, -0.026177849620580673, -0.015851063653826714, 0.010639089159667492, 0.0318964459002018, 0.012519841082394123, -0.01647566631436348, -0.024900881573557854, -0.033589817583560944, 0.01004918571561575, 0.002121918834745884, -0.016850430518388748, 0.019779128953814507, 0.029259230941534042, 0.005940678529441357, -0.00019258625980000943, 0.012263059616088867, 0.010965270921587944, -0.008480735123157501, 0.0883328914642334, -0.017266832292079926, 0.0019223925191909075, 0.00542017538100481, -0.0077173300087451935, -0.02530340477824211, -0.0014886397402733564, -0.016198065131902695, -0.015975983813405037, -0.011520475149154663, -0.004538789391517639, 0.022832749411463737, 0.0283986646682024, 0.01283214334398508, 0.03364533931016922, 0.008876318112015724, -0.05180049687623978, 0.04003018140792847, 0.02008449099957943, 0.0024671859573572874, -0.00039211256080307066, -0.012783562764525414, 0.0031837457790970802, -0.030341876670718193, -0.03272925317287445, -0.015143178403377533, 0.005958028603345156, 0.009334361180663109, 0.023276912048459053, 0.013762109912931919, 0.015462420880794525, 0.025803087279200554, -0.004452039021998644, 0.00785613153129816, 0.022555146366357803, 0.025983529165387154, 0.021375339478254318, 0.013630248606204987, -0.0004506691766437143, -0.030980361625552177, -0.022763347253203392, -0.016031503677368164, -0.013165265321731567, -0.038059208542108536, 0.0014270468382164836, 0.01952928677201271, -0.015851063653826714, 0.015337499789893627, 0.005770647432655096, -0.02113937772810459, 0.001564112724736333, -0.024678800255060196, -0.008189253509044647, 0.004202197305858135, -0.016239706426858902, 0.029370270669460297, -0.0007929001585580409, -0.0031074052676558495, 0.010819530114531517, -0.017655475065112114, 0.025567125529050827, 0.027954502031207085, 0.008577896282076836, 0.005284844432026148, -0.005909448489546776, -0.02119489759206772, 0.007786730770021677, 0.019404366612434387, 0.002595576923340559, 0.017669355496764183, -0.0023960506077855825, 0.008348874747753143, -0.000699209573213011, -0.01357472874224186, 0.014879456721246243, -0.0026337471790611744, -0.024998042732477188, 0.014504694379866123, -0.0369488000869751, -0.002515766303986311, -0.014324253425002098, 0.02533116564154625, 0.003270496381446719, 0.0052466741763055325, -0.02134757861495018, 0.01698923110961914, -0.001237063086591661, -0.01339428685605526, -0.002531381556764245, 0.01898796297609806, 0.0017523614224046469, -0.02118101716041565, 0.01661446876823902, 0.058351900428533554, 0.007599349599331617, -0.03894753381609917, -0.04408316686749458, -0.04291724041104317, -0.019043484702706337, -0.023235270753502846, 0.02206934429705143, -0.0008362754597328603, -0.019640328362584114, -0.006780424155294895, 0.029592351987957954, -0.004608190152794123, -0.009376000612974167, -0.0445273295044899, 0.013588608242571354, -0.011346973478794098, -0.01719743199646473, 0.003945415839552879, 0.00797411147505045, -0.02515072375535965, -0.00542017538100481, 0.0020611933432519436, 0.059240225702524185, -0.027427058666944504, -0.003584533231332898, -0.0017141911666840315, 0.021791741251945496, 0.002283274894580245, 0.02170846052467823, -0.016211945563554764, -0.032840292900800705, 0.014338132925331593, 0.029731152579188347, 0.012540661729872227, 0.008661176078021526, -0.013699648901820183, 0.036476876586675644, 0.039169613271951675, -0.006235630717128515, 0.0070996661670506, -0.006842884700745344, 0.046553824096918106, 0.006520172581076622, 0.007328687701374292, 0.00896653812378645, 0.00028584309620782733, -0.030841561034321785, 0.015628982335329056, 0.008015751838684082, 0.01897408440709114, -0.0026719174347817898, -0.02716333605349064, 0.007654869928956032, -0.027024535462260246, -0.0011589875211939216, -0.013588608242571354, -0.008536255918443203, -0.023582274094223976, -0.004157086834311485, 0.010007545351982117, -0.005548566114157438, -0.002774283057078719, 0.01682266965508461, 0.012991764582693577, 0.024637160822749138, 0.024123597890138626, -0.0004127158026676625, -0.011034672148525715, -0.006187050137668848, -0.04905223846435547, -0.023471232503652573, -0.02173622138798237, 0.004098096862435341, 0.02131981961429119, 0.00010572725295787677, 0.02150025963783264, 0.001457409467548132, 0.010305967181921005, -0.03295133262872696, 0.02134757861495018, 0.015809422358870506, -0.005097463261336088, -0.01138861384242773, -0.008529315702617168, -0.0017731814878061414, 0.004715760704129934, -0.017988597974181175, 0.016892069950699806, 0.0028870587702840567, -0.008827737532556057, 0.007356448099017143, 0.005024592857807875, -0.0017679765587672591, -0.015240339562296867, 0.018404999747872353, 0.014164632186293602, 0.039169613271951675, -0.024179117754101753, -0.005135633517056704, -0.0065132323652505875, 0.006121119949966669, 0.03503334894776344, -0.006860234774649143, 0.0085154352709651, -0.005572856403887272, -0.030064275488257408, -0.025539366528391838, 0.035921674221754074, -0.010090826079249382, 0.009035938419401646, 0.009903444908559322, -0.0018824872095137835, -0.009514802135527134, -0.017141912132501602, 0.003051884938031435, 0.024914762005209923, 0.008904078043997288, -0.012818263843655586, 0.009903444908559322, 0.03558855131268501, -0.012436561286449432, -0.009903444908559322, -0.0005040207761339843, 0.02390151470899582, -0.002498416230082512, -0.013789869844913483, -0.017697114497423172, -0.02498416230082512, -0.014560215175151825, -0.003629643702879548, 0.024206876754760742, -0.02605292946100235, 0.004840681329369545, -0.013588608242571354, 0.012894604355096817, -0.04738662764430046, 0.023637793958187103, 0.004000936169177294, -0.0025070912670344114, 0.0007772850804030895, -0.02695513516664505, 0.00805045198649168, -0.014879456721246243, 0.005683897063136101, -0.0042681279592216015, -0.0030275946483016014, -0.01697535067796707, -0.06079479679465294, -0.008210073225200176, 0.0038482551462948322, 0.02045925334095955, 0.03600495308637619, 0.03858665004372597, -0.01719743199646473, -0.04052986204624176, 0.03239613026380539, -0.003969705663621426, 0.015656741335988045, -0.0027187627274543047, -0.0002945181622635573, -0.023776594549417496, -0.010382307693362236, -0.013900910504162312, -0.010528048500418663, -0.015823302790522575, -0.02333243191242218, -0.012533721514046192, -0.01575390249490738, 0.03306237608194351, -0.04058538377285004, -0.00939682126045227, 0.016503427177667618, -0.025733686983585358, 0.017655475065112114, 0.020015090703964233, 0.013047285377979279, -0.026191730052232742, 0.0008688069065101445, 0.013769049197435379, 0.004587369970977306, 0.005440995562821627, 0.01754443347454071, -0.0053091347217559814, 0.021014457568526268, 0.007082316093146801, -0.01629522629082203, 0.028898347169160843, -0.01457409467548132, -0.016156425699591637, 0.0021201837807893753, 0.02313811145722866, -0.0069643352180719376, -0.004389578476548195, 0.006360551342368126, 0.05096769332885742, -0.003046679776161909, 0.013435927219688892, 0.002677122363820672, -0.01951540634036064, 0.02277722768485546, -0.0047990414313972, -0.019029604271054268, -0.0015892703086137772, -0.04319484159350395, 0.01267946232110262, -0.008598715998232365, 0.0085154352709651, -0.017599955201148987, -0.01249208115041256, -0.011194292455911636, 0.02552548609673977, 0.02624724991619587, 0.0009655337780714035, 0.01339428685605526, 0.047858551144599915, -0.03564407303929329, -0.011374734342098236, 0.004882321693003178, 0.012269999831914902, 0.0033329566940665245, -0.01346368808299303, -0.008029632270336151, 0.008251713588833809, -0.015975983813405037, -0.008911018259823322, 0.011728676036000252, 0.01536525972187519, 0.020042849704623222, 0.013116685673594475, -0.013012584298849106, 0.07278719544410706, 0.004809451289474964, -0.03653239831328392, 0.0005734212463721633, 0.023207511752843857, -0.003664343850687146, 0.03486678749322891, 0.007627109531313181, 0.003990525845438242, 0.008397454395890236, 0.0034873727709054947, 0.008189253509044647, 0.0012899809516966343, 0.027718540281057358, 0.018141277134418488, -0.01790531724691391, 0.01843276061117649, 0.0066555035300552845, -0.016947589814662933, 0.01356084831058979, 0.0035984134301543236, -0.01791919581592083, 0.007245406974107027, 0.028898347169160843, -0.032090768218040466, -0.006228690501302481, 0.0033260167110711336, -7.379220187431201e-05, 0.009438461624085903, -0.005565916188061237, -0.011749496683478355, -0.014324253425002098, 0.04075194522738457, -0.004282007925212383, 0.03994689881801605, 0.00786307081580162, 0.00678736437112093, 0.019321085885167122, -0.039336174726486206, -0.010097765363752842, -0.012387980706989765, 0.011131832376122475, 0.024914762005209923, 0.03414502367377281, -0.01610090397298336, -0.014116051606833935, -0.032507169991731644, -0.008161493577063084, 0.041334908455610275, -0.06190520152449608, 0.010909751057624817, 0.0058261677622795105, -0.020722974091768265, 0.024095837026834488, -0.002972074318677187, -0.021458620205521584, 0.003560243174433708, -0.012353280559182167, 0.010958331637084484, 0.01664222776889801, -0.017419513314962387, 0.04022450000047684, -0.014088291674852371, -0.007224586792290211, -0.006922694854438305] \ No newline at end of file diff --git a/cache/text-embedding-3-small36ffaf33-d485-5a4f-b083-758eb47c0905 b/cache/text-embedding-3-small36ffaf33-d485-5a4f-b083-758eb47c0905 new file mode 100644 index 0000000000000000000000000000000000000000..5d10aa92ca69ef58ee9b182a4a9675cb489f2a69 --- /dev/null +++ b/cache/text-embedding-3-small36ffaf33-d485-5a4f-b083-758eb47c0905 @@ -0,0 +1 @@ +[0.019083106890320778, -0.017686782404780388, 0.07006599009037018, 0.019344208762049675, -0.03314852714538574, -0.0023697789292782545, 0.032263051718473434, 0.08173608779907227, 0.0260420273989439, -0.02463435009121895, 0.0075095035135746, -0.04345635324716568, -0.06693277508020401, -0.02436189539730549, 0.02922065183520317, 0.021705472841858864, -0.060121435672044754, -0.0088490666821599, -0.011244388297200203, -0.011216008104383945, -0.009076111949980259, -0.013838374055922031, 0.027018317952752113, 0.07819419354200363, -0.007588969077914953, 0.016438035294413567, -0.021750882267951965, -0.03594117611646652, 0.012714503332972527, -0.03380695357918739, 0.07047467678785324, -0.03208141401410103, 0.062709741294384, 0.0773768350481987, 0.008939884603023529, 0.003661095630377531, -0.044251009821891785, 0.03553249314427376, -0.0071802884340286255, 0.03219493851065636, -0.042389243841171265, -0.023771580308675766, 0.013372932560741901, -0.01657426357269287, 0.030946191400289536, -0.024044033139944077, -0.01943502575159073, -0.014110827818512917, 0.01715322583913803, 0.03092348761856556, 0.014769257046282291, 0.009626694954931736, 0.02017292194068432, -0.018526846542954445, -0.0359184704720974, 0.018992288038134575, 0.026564229279756546, -0.04994983226060867, -0.008763925172388554, 0.013111830689013004, 0.03823432698845863, -0.01924203708767891, -0.018174927681684494, 0.02424837276339531, -0.036304447799921036, -0.05903162062168121, -0.02126273512840271, 0.08822956681251526, -0.008060086518526077, 0.0004650868650060147, -0.03178625553846359, 0.02987908199429512, 0.0009244976099580526, 0.03421563655138016, 0.013804317452013493, -0.01002969965338707, -0.040368545800447464, 0.0002575538237579167, -0.03405670449137688, -0.011193303391337395, -0.023612648248672485, -0.05258355289697647, -0.01710781827569008, -0.01777759939432144, 0.014110827818512917, 0.011624688282608986, 0.00674322759732604, -0.023658057674765587, 0.003172949654981494, 0.009382622316479683, 0.03124134987592697, 0.053718775510787964, 0.02336289919912815, -0.003428374882787466, -0.017720839008688927, -0.030582919716835022, 0.006050741299986839, 0.012442049570381641, 0.002769945189356804, -0.011965255253016949, 0.02424837276339531, -0.0017581772990524769, -0.001015315530821681, 0.025633346289396286, -0.0023215319961309433, -0.0008868933655321598, -0.009053407236933708, -0.01928744651377201, -0.01348645519465208, 0.027177250012755394, -0.06634245812892914, -0.016858069226145744, 0.008667430840432644, 0.04872379079461098, -0.06289137899875641, -0.015654731541872025, 0.0045437319204211235, -0.05122128501534462, 0.057760171592235565, 0.012725855223834515, 0.06043929606676102, -0.010080784559249878, -0.0012118510203436017, -0.0100126713514328, -0.015246051363646984, 0.013418341055512428, -0.024588940665125847, 0.014542212709784508, -0.03255821019411087, -0.052129462361335754, 0.001921365736052394, 0.005551242735236883, -0.03271714225411415, 0.00043457772699184716, 0.0103418854996562, -0.005134047940373421, -0.011794972233474255, 0.0005718688480556011, 0.00547177717089653, -0.05308305099606514, 0.011999311856925488, -0.021637359634041786, -0.006311842706054449, -0.007850070483982563, -0.052674368023872375, 0.09635777026414871, -0.04745234176516533, 0.027881087735295296, -0.02456623688340187, 0.00039236160228028893, -0.04232113063335419, -0.01909445971250534, -0.02230714075267315, 0.007884127087891102, 0.04175351932644844, 0.023839693516492844, -0.02817624621093273, 0.04354717209935188, -0.0466349795460701, -0.009649399667978287, -0.010052403435111046, 0.06538887321949005, -0.0028508298564702272, -0.006885130424052477, 0.05353713780641556, -0.05235650762915611, -0.032807957381010056, -0.03410211205482483, -0.06448069214820862, 0.014894131571054459, 0.023771580308675766, 0.012544219382107258, 0.011437376961112022, -0.001433219644241035, 0.008366596885025501, 0.007015680894255638, -0.010370266623795033, 0.00787845067679882, -0.012646389193832874, -0.0286757443100214, 0.01582501456141472, 0.02844870090484619, 0.009831035509705544, -0.04486403241753578, -0.02025238610804081, -0.016596967354416847, 0.006005332339555025, 0.00032070063753053546, 0.011897142045199871, 0.01532551646232605, 0.016971591860055923, 0.061983201652765274, 0.03841596096754074, 0.027018317952752113, -0.021875755861401558, 0.0013750394573435187, 0.004889975301921368, 0.049177881330251694, -0.008429034613072872, -0.0014686953509226441, 0.03096889704465866, -0.03426104411482811, -0.007163260132074356, -0.00894556101411581, -0.04418289661407471, -0.003732047276571393, -0.010909497737884521, 0.05017687752842903, 0.02184169925749302, -0.0027089270297437906, -0.003624201053753495, -0.04940492659807205, -0.014848723076283932, 0.039210617542266846, -0.054263681173324585, -0.007464094553142786, 0.013032365590333939, -0.019310152158141136, 0.005434882361441851, -0.02878926694393158, 0.00288630579598248, 0.0359184704720974, 0.016892125830054283, -0.02642800286412239, -0.03053751215338707, -0.01955990120768547, 0.02576957270503044, 0.033965885639190674, -0.018787948414683342, -0.01449680421501398, 0.01890147104859352, -0.04352446645498276, -0.017402976751327515, -0.02033185213804245, -0.02735888585448265, -0.021955221891403198, 0.017039705067873, 0.004682797007262707, -0.05494481697678566, -0.05408204719424248, -0.016778603196144104, 0.06824963539838791, 0.023816987872123718, -0.042162198573350906, -0.03507840633392334, 0.012635037302970886, 0.05608003959059715, -0.04032313823699951, 0.042820628732442856, -0.012896138243377209, -0.03010612726211548, -0.04141295328736305, -0.0064991544932127, 0.02463435009121895, 0.001209722482599318, 0.02238660678267479, 0.012510162778198719, 0.02638259343802929, 0.023975919932127, -0.009814007207751274, -0.000643175037112087, 0.008684459142386913, -0.011181951500475407, -0.05013146996498108, -0.021115155890583992, 0.008094143122434616, 0.013259409926831722, 0.00403571967035532, 0.01970748044550419, 0.009365594014525414, -0.05312845855951309, -0.0027600121684372425, -0.03312582150101662, 0.011357910931110382, -0.03748507797718048, 0.05903162062168121, -0.0022264569997787476, -0.007833042182028294, -0.06752309203147888, 0.05117587372660637, -0.011306826025247574, -0.041231315582990646, 0.038552187383174896, -0.04152647405862808, 0.006300490349531174, 0.010148897767066956, -0.003448241390287876, 0.04434182867407799, -0.00565625075250864, 0.06025766208767891, 0.007855746895074844, -0.024929506704211235, -0.011074105277657509, -0.06479855626821518, -0.0030253706499934196, 0.02044537477195263, 0.0011153570376336575, -0.017402976751327515, -0.003303500358015299, 0.05685199052095413, 0.052946824580430984, 0.10516710579395294, 0.006811340805143118, -0.012782616540789604, 0.03550979122519493, 0.0029317145235836506, 0.042003270238637924, -0.006607000716030598, -0.001497076009400189, 0.008758248761296272, -0.034669723361730576, 0.03228575736284256, 0.0034198607318103313, -0.012703150510787964, -0.04822429269552231, -0.0190149936825037, -0.018719835206866264, -0.022795287892222404, -0.00834389217197895, -0.023998623713850975, -0.039437662810087204, -0.010302153415977955, -0.07106498628854752, 0.0025230341125279665, 0.027722157537937164, -0.06302760541439056, 0.05839589610695839, 0.03825703263282776, -0.010773270390927792, -0.014281111769378185, -0.01302101369947195, -0.02223902754485607, -0.006822693161666393, -0.02506573498249054, -0.06888536363840103, -0.03357991203665733, -0.010251067578792572, 0.02390780672430992, 0.006811340805143118, -0.01839062012732029, -0.043093081563711166, -0.011005991138517857, -0.006998652592301369, -0.028743857517838478, 0.015200641937553883, -0.031604621559381485, 0.04116320237517357, 0.012748559936881065, -0.0007847232045605779, 0.038007281720638275, -0.008911504410207272, -0.0038171890191733837, 0.02615554817020893, 0.024066736921668053, -0.015302812680602074, -0.015802310779690742, 0.0032041682861745358, 0.04509107768535614, 0.010160249657928944, 0.058804575353860855, -0.02937958389520645, 0.022216323763132095, -0.04890542849898338, 0.0074130091816186905, -0.02281799167394638, -0.005179456900805235, -0.0025003296323120594, -0.028721153736114502, 0.03623633459210396, 0.025792276486754417, -0.035373564809560776, -0.01193119864910841, -0.039914458990097046, 0.004983630962669849, -0.015393630601465702, -0.02517925575375557, 0.022216323763132095, 0.03703099116683006, -0.010761918500065804, 0.0009103073389269412, 0.019060401245951653, -0.0140086580067873, 0.0190149936825037, 0.01575690135359764, 0.002317274920642376, 0.005423530004918575, 0.0002770654682535678, -0.051629964262247086, 0.04139024764299393, -0.055580541491508484, 0.05172078311443329, 0.028630336746573448, 0.05503563582897186, 0.01792517863214016, 0.00991050060838461, -0.05226568877696991, 0.01294154766947031, 0.06616082042455673, 0.04899624362587929, 0.02463435009121895, -0.01185173261910677, -0.006141559220850468, 0.014440042898058891, -0.039210617542266846, -0.0008982455474324524, -0.00013099414354655892, -0.0259966179728508, -0.01037594210356474, -0.04016420617699623, -0.03235387057065964, 0.004889975301921368, -0.07955645769834518, 0.04686202481389046, 0.014099475927650928, 0.009376945905387402, -0.0017468251753598452, -0.022375253960490227, 0.013679442927241325, 0.00946776382625103, 0.021853052079677582, 0.044682394713163376, -0.039483074098825455, -0.020070750266313553, -0.011573603376746178, 0.04695284366607666, -0.02052484080195427, 0.061211250722408295, 0.029629332944750786, 0.004285468719899654, -0.01540498249232769, -0.05040392279624939, 0.009740217588841915, -0.013599976897239685, 0.020854055881500244, -0.04193515330553055, 0.01395189668983221, 0.015450391918420792, -0.00670349458232522, 0.025156551972031593, -0.03262632340192795, 0.0406637042760849, -0.006782960146665573, -0.004401829093694687, -0.043637990951538086, 0.005650574807077646, -0.02445271424949169, 0.012078777886927128, -0.00018145838112104684, -0.024588940665125847, 0.0189695842564106, -0.017402976751327515, 0.0005700950277969241, 0.0279719065874815, -0.014099475927650928, -0.01381566934287548, -0.0009010836365632713, 0.04291144758462906, -0.010602987371385098, -0.018072757869958878, 0.028653040528297424, 0.013225353322923183, -0.012362583540380001, -0.006856749765574932, -0.02071782760322094, 0.0260420273989439, 0.006431040819734335, 0.017754895612597466, 0.027608634904026985, -0.0326717309653759, -0.042979560792446136, 0.016948886215686798, 0.035646017640829086, -0.01131250150501728, 0.018697131425142288, -0.036803945899009705, 0.0036752859596163034, -0.0176981333643198, -0.017823008820414543, -0.013452398590743542, -0.008184961043298244, 0.007066766265779734, -0.002917524427175522, -0.02883467637002468, 0.011647392995655537, 0.007163260132074356, 0.025043029338121414, 0.0667511373758316, 0.00041577560477890074, -0.01683536358177662, 0.009479115717113018, 0.029674742370843887, 0.02960662730038166, 0.03394318372011185, -0.009757245890796185, 0.014519507996737957, -0.043320126831531525, 0.021489780396223068, -0.017607316374778748, -0.03251279890537262, 0.020116159692406654, 0.08713975548744202, -0.0267004556953907, 0.009802654385566711, 0.005324197933077812, 0.019389616325497627, -0.0033233666326850653, -0.051902417093515396, 0.03857489302754402, -0.032921481877565384, -0.00551151018589735, -0.04102697595953941, 0.023885101079940796, -0.022261733189225197, -0.0016985781257972121, 0.000807427684776485, 0.012158242985606194, 0.010324857197701931, 0.03026505745947361, 0.05358254909515381, -0.02192116528749466, -0.01839062012732029, 0.0045437319204211235, 0.018867414444684982, 0.010409999638795853, -0.006992976646870375, 0.013316171243786812, -0.01288478635251522, 0.02021832950413227, 0.004759424366056919, -0.022681765258312225, 0.047316115349531174, -0.010273772291839123, -0.005304331891238689, -0.005153914447873831, -0.01983235403895378, -0.001439605257473886, -0.0306510329246521, -0.0015410658670589328, 0.0064083365723490715, 0.011221683584153652, -0.013588625006377697, 0.0034652696922421455, -0.004853080492466688, 0.01037594210356474, -0.01842467673122883, -0.0038540835957974195, 0.00011919846292585135, 0.04220760986208916, 0.02208009734749794, 0.002314436947926879, 0.022783935070037842, -0.02060430683195591, 0.025633346289396286, 0.01233987882733345, 0.010602987371385098, -0.04913247376680374, -0.017391623929142952, 0.03103701025247574, 0.028335178270936012, 0.03989175334572792, 0.010813003405928612, -0.008201989345252514, -0.015983946621418, -0.013702147640287876, -0.010756242088973522, -0.006879454478621483, -0.003581630066037178, 0.03821162134408951, -0.029424993321299553, 0.002107258653268218, 0.01101734396070242, 0.013429693877696991, 0.0011338044423609972, -0.044909439980983734, 0.009796978905797005, 0.022011982277035713, 0.011005991138517857, -0.011125190183520317, 0.05676117539405823, 0.02549711987376213, -0.013418341055512428, -0.03984634578227997, -0.02309044636785984, -0.006005332339555025, -0.004137889482080936, -0.015575266443192959, -0.01773218996822834, 0.00522770406678319, -0.0009365593432448804, 0.003683800110593438, -0.016165582463145256, -0.03453349694609642, 0.018413323909044266, 0.026178253814578056, -0.0008996645919978619, -0.02583768591284752, -0.0002199495502281934, 0.005559756886214018, 0.01660832017660141, -0.004887137096375227, 0.0067205228842794895, 0.005151076707988977, -0.04166270047426224, -0.03169544041156769, -0.0653434619307518, -0.010500817559659481, 0.022908810526132584, -0.023022331297397614, 0.021932518109679222, -0.01776624657213688, 0.03993716090917587, 0.0143378721550107, 0.02769945189356804, -0.0007818851736374199, 0.02588309533894062, 0.009422354400157928, -0.026586933061480522, -0.006215348374098539, 0.010262420400977135, 0.014235702343285084, 0.03417022526264191, -0.0004991435562260449, 0.003788808360695839, 0.025928504765033722, 0.013781612738966942, 0.029197948053479195, -0.007906831800937653, 0.0011607659980654716, 0.01609746925532818, -0.015586618334054947, 0.015541208907961845, -0.04668039083480835, -0.008491471409797668, -0.060938797891139984, 0.015722844749689102, 0.020695123821496964, 0.025043029338121414, 0.02390780672430992, 0.011794972233474255, -0.014984949491918087, 0.03310311585664749, 0.002061849692836404, 0.009218014776706696, -0.005761259235441685, 0.03510110825300217, 0.010165926069021225, 0.005783963482826948, -0.01680130697786808, 0.0014828856801614165, 0.00023928382142912596, 0.002582633402198553, -0.021047042682766914, 0.01387243065983057, 0.007571940775960684, 0.025905799120664597, -0.0640266016125679, -0.012635037302970886, 0.014133532531559467, 0.006431040819734335, 0.036758534610271454, -0.038438666611909866, 0.020695123821496964, -0.009779950603842735, -0.018674425780773163, 0.025315484032034874, 0.012442049570381641, -0.03684935346245766, -0.023839693516492844, -0.022863401100039482, -0.021217327564954758, -0.04690743237733841, -0.00942803081125021, 0.0412767268717289, 0.0018844709265977144, 0.035873062908649445, -0.016948886215686798, -0.002020697807893157, -0.006425364874303341, 0.013690794818103313, 0.0034170227590948343, 0.042548175901174545, 0.011028695851564407, -0.023067740723490715, 0.002863601315766573, 0.04043665900826454, -0.0006158587639220059, 0.001768110552802682, -0.041730813682079315, 0.006504830438643694, 0.03501029312610626, -0.017244044691324234, -0.008780953474342823, 0.00886609498411417, -0.0230109803378582, 0.01041567511856556, -0.03703099116683006, -0.010279448702931404, 0.05526267737150192, -0.05871375650167465, -0.0015595132717862725, 0.0007605997379869223, 0.008877447806298733, 0.010234039276838303, -0.00905908364802599, -0.0300380140542984, 0.026586933061480522, -0.027949202805757523, 0.00859364215284586, 0.04020961374044418, -0.010648395866155624, -0.020161569118499756, -0.02126273512840271, -0.010648395866155624, -0.059349484741687775, -0.021364904940128326, 0.029016312211751938, 0.015961242839694023, -0.007872775197029114, -0.01286208163946867, 0.02790379337966442, 0.0007982039824128151, -0.05072178319096565, -0.016971591860055923, -0.030855374410748482, 0.03837055340409279, 0.0189695842564106, -0.0011252902913838625, 0.0133275231346488, 0.042548175901174545, -0.010818679817020893, 0.008729868568480015, 0.011244388297200203, -0.002460596850141883, -0.010892469435930252, 0.012907491065561771, 0.026586933061480522, -0.010949230752885342, -0.0493595153093338, -0.02122867852449417, -0.003042398951947689, -0.014269758947193623, -0.03076455555856228, -0.028880085796117783, -0.006919187027961016, -0.035827651619911194, 0.012669093906879425, 0.039483074098825455, 0.0679771825671196, 0.0005371026345528662, 0.015734197571873665, -0.057442307472229004, 0.0061812917701900005, 0.012759911827743053, 0.010778946802020073, -0.00724840210750699, 0.02196657471358776, -0.01237393543124199, -0.00791250728070736, -0.004898489452898502, -0.03487406671047211, -0.0018731186864897609, -0.00042535405373200774, -0.0005275241564959288, -0.011278444901108742, -0.007288134656846523, -0.005204999819397926, -0.000766275858040899, 0.003970444202423096, -0.013179944828152657, -0.042003270238637924, 0.017039705067873, 0.014065418392419815, 0.02922065183520317, -0.0333755686879158, 0.02824435941874981, 0.002914686221629381, 0.0040782904252409935, -0.025201961398124695, 0.014247054234147072, -0.011897142045199871, 0.007231373339891434, -0.016903476789593697, -0.029856378212571144, 0.009098815731704235, -0.01540498249232769, -0.01975288800895214, -0.0015453229425475001, -0.016699137166142464, 0.0267004556953907, 0.015189290046691895, -0.0016957400366663933, 0.035827651619911194, 0.022999627515673637, 0.040799930691719055, 0.016789956018328667, 0.02561064250767231, 0.013145888224244118, -0.0507671944797039, -0.016086116433143616, 0.03578224405646324, -0.008951237425208092, -0.023839693516492844, 0.015314164571464062, 0.021489780396223068, 0.020013989880681038, 0.03648608177900314, 0.0005292979185469449, 0.04175351932644844, -0.017402976751327515, -0.028425995260477066, -0.0019383940380066633, 0.015563913621008396, -0.019003640860319138, -0.009694808162748814, 0.0045380559749901295, -0.04949574172496796, 0.009496144019067287, 0.006073445547372103, -0.0007226407178677619, -0.025270074605941772, 0.035487085580825806, -0.03119594044983387, 0.00210016337223351, -0.0017255396815016866, -0.007628701627254486, 0.039914458990097046, -0.03289877623319626, 0.016358571127057076, 0.055580541491508484, -0.032104119658470154, 0.00700432900339365, -0.019843706861138344, -0.009831035509705544, -0.011681449599564075, 0.01152251847088337, 0.01453086081892252, 0.017913825809955597, -0.025973912328481674, 0.032421983778476715, 0.024112146347761154, 0.017119169235229492, -0.006777284201234579, -0.000312895979732275, 0.019730184227228165, -0.00593721866607666, 0.0113522345200181, 0.029856378212571144, 0.029152538627386093, 0.006658085621893406, 0.023885101079940796, -0.0022562567610293627, -0.04854215681552887, -0.00565625075250864, -0.0019014993449673057, -0.016676433384418488, 0.055852994322776794, -0.003195654135197401, -0.010319181717932224, 0.015132528729736805, -0.0020249548833817244, -0.021853052079677582, -0.027835680171847343, 0.01609746925532818, -0.048678383231163025, 0.031105123460292816, -0.02390780672430992, 0.015177938155829906, 0.007344895973801613, 0.03437456861138344, 0.0071859643794596195, -0.004540893714874983, 0.004447238054126501, 0.019253389909863472, -0.0467257983982563, 0.032376572489738464, 0.05689740180969238, -0.034397270530462265, 0.003377289744094014, -0.03201330080628395, -0.0012707407586276531, 0.02153518982231617, -0.027540521696209908, -0.0306510329246521, -0.015734197571873665, 0.003686638316139579, 0.01986641064286232, -0.0003448241332080215, 0.025951208546757698, -0.03448808938264847, 0.019730184227228165, 0.06547968834638596, 0.03946036845445633, -0.02922065183520317, -0.01636992208659649, -0.032694436609745026, 0.02044537477195263, -0.017709486186504364, -0.003788808360695839, 0.015302812680602074, 0.007810337468981743, -0.016403978690505028, -0.011772267520427704, -0.04023231938481331, -0.0010138964280486107, -0.017119169235229492, 0.01750514656305313, 0.005185133311897516, -0.03464702144265175, 0.02742699906229973, 0.017130522057414055, -0.019503138959407806, 0.010654072277247906, 0.04286604002118111, -0.016279105097055435, 0.006419688928872347, 0.013747556135058403, -0.028925493359565735, 0.005863429047167301, 0.02642800286412239, -0.020615657791495323, 0.017664076760411263, 0.018946880474686623, 0.011403319425880909, -0.006902158726006746, 0.00016425264766439795, -0.01088679302483797, -0.0119879599660635, -0.006391308270394802, 0.05567136034369469, -0.007946563884615898, 0.020354557782411575, -0.03158191591501236, -0.0065615917555987835, -0.04493214562535286, -0.03392047807574272, -0.00521067576482892, 0.02976555936038494, 0.006141559220850468, -0.0032921480014920235, -0.014371928758919239, 0.0227044690400362, 0.0012515839189291, -0.0406637042760849, 0.0013033784925937653, 0.0060223606415092945, 7.106232715159422e-06, 0.00941100250929594, 0.03709910437464714, 0.030900783836841583, -0.05013146996498108, 0.0038994925562292337, -0.03405670449137688, 0.006351575255393982, 0.003505002474412322, -0.024997621774673462, 0.027767566964030266, -0.008854743093252182, 0.06062093377113342, 0.03414752334356308, -0.010750566609203815, -0.01142602413892746, -0.049995243549346924, 0.018912823870778084, -0.015972593799233437, 0.004626035690307617, 0.005903162062168121, -0.02495221234858036, -0.0038994925562292337, -0.021217327564954758, -0.015643378719687462, 0.0022292952053248882, -0.022091448307037354, 0.013009660877287388, 0.005460424814373255, -0.015983946621418, 0.016006650403141975, 0.01288478635251522, 0.044795919209718704, 0.03825703263282776, 0.002843734808266163, -0.007055413909256458, 0.0064140125177800655, -0.006317518651485443, 0.031763553619384766, 0.0020916492212563753, 0.01909445971250534, 0.041185908019542694, -0.012294470332562923, -0.01037594210356474, -0.017221340909600258, 0.03183166682720184, -0.009325860999524593, 0.001829128828831017, 0.04713447764515877, -0.04016420617699623, -0.009359917603433132, -0.043706104159355164, 0.017607316374778748, -0.037235330790281296, 0.014224350452423096, -0.0014438623329624534, 0.014065418392419815, -0.030878078192472458, 0.002442149445414543, -0.008656078949570656, -0.00746977049857378, -0.0015850557247176766, 0.021364904940128326, 0.02273852564394474, -0.0189695842564106, -0.0031019982416182756, 0.034397270530462265, -0.017595963552594185, 0.03446538373827934, -0.013770260848104954, 0.014156236313283443, 0.015007654204964638, -0.003065103432163596, -0.009814007207751274, -0.0014672763645648956, 0.03298959508538246, 0.005678955465555191, 0.002061849692836404, 0.0025017487350851297, -0.01638127490878105, 0.009575610049068928, -0.00019972838344983757, 0.017402976751327515, 0.025088438764214516, -0.0014913998311385512, 0.01935555972158909, -0.00949046853929758, -0.011494137346744537, 0.002687641652300954, -0.01617693528532982, -0.04890542849898338, 0.012101482599973679, 0.030582919716835022, 0.018072757869958878, -0.012975604273378849, -0.027949202805757523, 0.011760915629565716, 0.023658057674765587, -0.039256028831005096, 0.004631711635738611, -0.03580494970083237, -0.016006650403141975, 0.025587936863303185, 0.010546226054430008, -0.006709170527756214, -0.0011416091583669186, -0.024475418031215668, 0.010063756257295609, 0.03589576482772827, 0.0074811228550970554, 0.014292463660240173, -0.0019994124304503202, 0.004503998905420303, 0.009796978905797005, 0.013259409926831722, 0.02538359723985195, -0.0016020841430872679, -0.011295473203063011, 0.02122867852449417, 0.02289745770394802, -0.0069475676864385605, 0.029629332944750786, 0.019151220098137856, 0.008133876137435436, -0.01951449178159237, 0.023612648248672485, 0.01850414276123047, -0.010063756257295609, -0.018481438979506493, 0.01824304088950157, -0.009269099682569504, 0.015121176838874817, 0.023816987872123718, 0.018958231434226036, 0.0043053352274000645, -0.005165266804397106, 0.02747240848839283, -0.003839893499389291, 0.014099475927650928, -0.030446693301200867, -0.027109136804938316, 0.006697818636894226, 0.0361001081764698, 0.03233116492629051, -0.020399965345859528, 0.043865036219358444, -0.009626694954931736, -0.007657082285732031, -0.0077138436026871204, -0.016982942819595337, -0.021796289831399918, -0.0019171086605638266, -0.013940543867647648, 0.0055427285842597485, -0.013668091036379337, -0.005290141329169273, -0.009632371366024017, -0.021750882267951965, -0.010035375133156776, 0.0015055901603773236, -0.010114841163158417, 0.03244468569755554, -0.02851681411266327, 0.017788952216506004, -0.042548175901174545, -0.00550867198035121, 0.004671444650739431, -0.0013956153998151422, -0.008934209123253822, -0.0003700118977576494, -0.01571149379014969, 0.0066637615673244, -0.016551557928323746, 0.012249060906469822, 0.010631367564201355, 0.011636040173470974, -0.024157555773854256, 0.03709910437464714, 0.016744546592235565, -0.0012331365142017603, 0.019253389909863472, 0.02363535203039646, -0.009649399667978287, -0.01201066467911005, -0.018867414444684982, -0.029039015993475914, 0.0021597626619040966, 0.023340195417404175, 0.0024279591161757708, -0.0346924290060997, 0.016108820214867592, -0.012828025035560131, -0.031332168728113174, -0.009252071380615234, 0.007373276632279158, -0.014837371185421944, 0.015121176838874817, 0.042775221168994904, -0.008241722360253334, 0.020206978544592857, -0.01672184094786644, -0.029243357479572296, 0.07029303908348083, -0.0043706102296710014, -0.029402287676930428, -0.009598314762115479, 0.0004622488049790263, -0.019968580454587936, 0.0210356917232275, -0.009796978905797005, 0.02134220115840435, 0.0021725338883697987, -0.005988304037600756, 0.002208009595051408, 0.021750882267951965, 0.005233380012214184, 0.003658257657662034, 0.011085457168519497, 0.021716825664043427, -0.0072540780529379845, 0.011829028837382793, -0.002480463357642293, -0.0032098444644361734, 0.010654072277247906, -0.006879454478621483, -0.04713447764515877, -0.01590448059141636, 0.015859071165323257, -0.001218946184962988, -0.013861078768968582, -0.012385288253426552, -0.013997305184602737, -0.0011437376961112022, 0.010370266623795033, -0.01571149379014969, 0.05235650762915611, -0.00452102767303586, 0.006527535151690245, -0.02251148223876953, 0.020013989880681038, 0.03273984417319298, -0.011091133579611778, -0.03550979122519493, -0.013123183511197567, 0.0063288710080087185, -0.03342097997665405, -0.018447382375597954, -0.01835656352341175, -0.01453086081892252, -0.004660092294216156, 0.015416334383189678, 0.003658257657662034, -0.05648871883749962, -0.013475102372467518, -0.0072597539983689785, -0.0004672154027502984, -0.009666427969932556, 0.04613548144698143, -0.011261416599154472, -0.025133848190307617, 0.006839721463620663, 0.010126193054020405, 0.005099991336464882, -0.00692486297339201, 0.004750910215079784, -0.012930195778608322, 0.014212997630238533, 0.003533383132889867, 0.003502164501696825, 0.03246739134192467, -0.00046295832726173103, 0.030560215935111046, -0.00726543040946126, -0.014621678739786148, -0.019264742732048035, -0.021285440772771835, 0.00795791670680046, -0.012566924095153809, 0.019219333305954933, 0.023544535040855408, -0.03453349694609642, -0.03169544041156769, -0.0012742883991450071, 0.002626623259857297, 0.0026436515618115664, 0.05626167356967926, 0.016733193770051003, -0.007305162958800793, 0.017981939017772675, 0.0011550899362191558, 0.0022264569997787476, -0.027994610369205475, -0.05149373784661293, -0.01499630231410265, 0.011096809059381485, 0.02063836343586445, 0.014110827818512917, -0.002393902512267232, -0.02463435009121895, 0.013361580669879913, -0.015609323047101498, -0.0071008228696882725, 0.014621678739786148, -0.0013154401676729321, -0.00991050060838461, -0.011096809059381485, 0.001248036278411746, 0.024066736921668053, 0.0007996230269782245, 0.015450391918420792, 0.0009819683618843555, -0.012237709015607834, -0.018106814473867416, -0.012135539203882217, 0.061710748821496964, -0.014144884422421455, 0.026745865121483803, 0.004223031457513571, 0.021478427574038506, -0.03514651954174042, -0.0034340510610491037, 0.0011579279089346528, -0.0038285411428660154, 0.00199799332767725, -0.0047026630491018295, -0.0085198525339365, -0.05766935274004936, 0.005119857843965292, 0.051584552973508835, 0.021285440772771835, 0.029243357479572296, 0.007855746895074844, 0.0073392195627093315, 0.03907439112663269, -0.019151220098137856, 0.03278525546193123, -0.0380299873650074, 0.04624900594353676, 0.00036433577770367265, 0.02087675966322422, 0.0110230203717947, 0.0025556718464940786, -0.02452082745730877, -0.016699137166142464, 0.011863085441291332, 0.018753891810774803, 0.02413485199213028, -0.005818020086735487, 0.0187084823846817, 0.02025238610804081, 0.03287607058882713, 0.017198635265231133, -0.013077774085104465, 0.003348909318447113, 0.04954115301370621, -0.054581545293331146, 0.018129518255591393, -0.027109136804938316, 0.037235330790281296, 0.03875653073191643, 0.04152647405862808, 0.010835708118975163, 0.020434021949768066, -0.015927186235785484, -0.028085429221391678, -0.05517186224460602, 0.0070327091962099075, 0.004677120596170425, -0.0035447352565824986, -0.0017212826060131192, 0.020922169089317322, -0.03233116492629051, 0.032217640429735184, -0.028721153736114502, -0.011715506203472614, 0.0032609293702989817, 0.04622630029916763, 0.013713499531149864, -0.009496144019067287, 0.02928876504302025, -0.031967893242836, 0.013361580669879913, 0.004810509271919727, -0.0013643967686221004, -0.01990046724677086, -0.0053298743441700935, -0.013293466530740261, -0.031990598887205124, 0.023101797327399254, 0.006067769601941109, -0.010546226054430008, 0.013747556135058403, 0.013372932560741901, -0.024202965199947357, 0.01305507030338049, 0.004194650799036026, -0.005880457814782858, 0.007844394072890282, -0.0011529613984748721, 0.017391623929142952, 0.011306826025247574, -0.008616345934569836, 0.0070951469242572784, -0.008639050647616386, -0.04350176453590393, -0.00020469498122110963, 0.032807957381010056, -0.02742699906229973, -0.031445689499378204, -0.023272080346941948, -0.011783619411289692, 0.01827709749341011, 0.03255821019411087, 0.0063402228988707066, 0.00991617701947689, 0.006538887042552233, -0.017686782404780388, 0.02719995379447937, -0.005633546505123377, 0.014723848551511765, -0.008133876137435436, -0.010699481703341007, -0.019389616325497627, -0.00991617701947689, 0.003808674868196249, -0.003689476288855076, 0.012192300520837307, -0.0432974249124527, 0.0007520855288021266, -0.021932518109679222, 0.026564229279756546, -0.007662758231163025, 0.020627010613679886, -0.061801567673683167, 0.01594989001750946, 0.014349224977195263, -0.0143378721550107, 0.022057391703128815, -0.014689791947603226, 0.021637359634041786, -0.025088438764214516, -0.0010415675351396203, -0.015938537195324898, -0.02742699906229973, 0.009479115717113018, 0.019071754068136215, 0.030946191400289536, -0.02347642183303833, 0.013316171243786812, -0.01904905028641224, -0.032217640429735184, 0.005846400745213032, -0.0023101798724383116, 0.03825703263282776, -0.0014027104480192065, 0.0299926046282053, 0.021353553980588913, 0.04148106649518013, 0.01239664014428854, 0.005074448883533478, -0.006726199295371771, 0.008650402538478374, 0.007742224261164665, -0.024929506704211235, 0.015393630601465702, -0.030900783836841583, -0.015541208907961845, -0.001130256918258965, -0.008099819533526897, 0.008616345934569836, 0.014621678739786148, -0.01148846186697483, -0.020241035148501396, -0.01858360879123211, 0.031491100788116455, -0.013747556135058403, -0.003425536910071969, 0.014349224977195263, -0.02320396713912487, 0.02075188420712948, -0.01582501456141472, 0.015166585333645344, -0.007117851171642542, -0.011806324124336243, -0.014746553264558315, -0.024611644446849823, 0.013531863689422607, -0.014735200442373753, -0.013089126907289028, -0.0017468251753598452, 0.027949202805757523, -0.002053335541859269, 0.01392919197678566, -0.022125504910945892, -0.042434655129909515, -0.013861078768968582, -0.004614683333784342, -0.03426104411482811, -0.017993291839957237, -0.02937958389520645, -0.00722569739446044, 0.016506148502230644, 0.017130522057414055, 0.019662071019411087, -0.021705472841858864, -0.0011096809757873416, 0.05063096806406975, 0.02785838395357132, 0.02036590874195099, 0.039755526930093765, 0.0029487430583685637, -0.037189919501543045, -0.01571149379014969, 0.01854955218732357, -0.03031046688556671, 0.0049438984133303165, -0.024112146347761154, 0.013724851422011852, 0.016210991889238358, -0.01893552765250206, 0.033080410212278366, 0.027608634904026985, 0.012839377857744694, -0.019798297435045242, 0.012430696748197079, 0.0031275406945496798, 0.08119118213653564, -0.022942867130041122, -0.024588940665125847, -0.002490396611392498, 0.0032666055485606194, 0.0012146891094744205, 0.021240031346678734, -0.00274582183919847, 0.025020325556397438, -0.025928504765033722, 0.017527850344777107, 0.011965255253016949, -0.0007244144799187779, 0.010131869465112686, 0.016472091898322105, 0.015938537195324898, 0.029561219736933708, -0.0021044204477220774, -0.008446062915027142, 0.01193119864910841, -0.010483788326382637, 0.011176275089383125, 0.030446693301200867, 0.0038228649646043777, -0.01978694461286068, -0.018299803137779236, 0.015620674937963486, -0.0010926525574177504, -0.014564917422831059, -0.02036590874195099, -0.02164871245622635, -0.04985901340842247, 0.05303763970732689, -0.01909445971250534, 0.0380299873650074, 0.010512169450521469, 0.022795287892222404, -0.012555571272969246, -0.02906172163784504, -0.009337212890386581, 0.0267004556953907, 0.03432915732264519, -0.02150113321840763, 0.005730040371417999, -0.0006481416639871895, -0.027790270745754242, 0.0030906458850950003, -0.034283749759197235, 0.03594117611646652, -0.018458733335137367, 0.035214632749557495, -0.008797981776297092, 0.0033432331401854753, -0.02676856890320778, 0.015041710808873177, 0.023885101079940796, -0.024430008605122566, 0.025633346289396286, 0.021467076614499092, 0.01847008615732193, -0.011011667549610138, 0.03246739134192467, -0.01445139478892088, 0.007997649721801281, -0.0019994124304503202] \ No newline at end of file diff --git a/cache/text-embedding-3-small3efc162e-e62f-5160-a14d-e69f6acc074a b/cache/text-embedding-3-small3efc162e-e62f-5160-a14d-e69f6acc074a new file mode 100644 index 0000000000000000000000000000000000000000..6c9ebe70f8e40352f985ecd1663475b04240829a --- /dev/null +++ b/cache/text-embedding-3-small3efc162e-e62f-5160-a14d-e69f6acc074a @@ -0,0 +1 @@ +[-0.025939354673027992, 0.020264431834220886, 0.0411900170147419, 0.04319552704691887, 0.04019828513264656, 0.016727246344089508, 0.012154251337051392, 0.057123877108097076, 0.018853966146707535, 0.014534412883222103, 0.030589483678340912, -0.00893111526966095, -0.02693108841776848, -0.030060559511184692, 0.05606602877378464, 0.05937181040644646, -0.02754816599190235, 0.03603300079703331, -0.014964164234697819, 0.009173539467155933, -0.0005616382695734501, -0.000612602336332202, -0.027460012584924698, 0.03512942045927048, -0.037289198487997055, 0.041652828454971313, -0.01815975084900856, -0.014931106008589268, 0.013950391672551632, 0.036738235503435135, 0.04299717769026756, -0.028143206611275673, 0.032881490886211395, 0.0001377408334519714, -0.042512331157922745, 0.07215415686368942, -0.0065454444848001, -0.029002709314227104, 0.0494544692337513, -0.016044052317738533, 0.0009938001167029142, -0.001687325187958777, 0.008198334835469723, -0.012881522998213768, -0.009112933650612831, -0.05941588431596756, -0.019349832087755203, -0.06386767327785492, 0.027570204809308052, 0.042512331157922745, -0.033410415053367615, 0.0019393909024074674, 0.039471011608839035, 0.0013718986883759499, 0.009878772310912609, -0.006358116865158081, 0.015437992289662361, 0.013884276151657104, 0.04284290969371796, -0.015757551416754723, 0.039779551327228546, 0.0005974508821964264, 0.027107395231723785, 0.007410456892102957, 0.0494985468685627, -0.037046775221824646, -0.00542974378913641, 0.0743580088019371, 0.011526152491569519, -0.021509608253836632, -0.027085358276963234, -0.010148745030164719, 0.036165233701467514, 0.01977958343923092, 0.014236892573535442, 0.03142694756388664, -0.010881525464355946, -0.001199722639285028, 0.018809888511896133, -0.01674928516149521, -0.04597238078713417, -0.01114598847925663, -0.005840211175382137, 0.026776818558573723, 0.016385650262236595, -0.013112927787005901, 0.027195550501346588, 0.0096363490447402, -0.03627542406320572, 0.09238553047180176, 0.0023966904263943434, -0.02395588532090187, 0.006269962526857853, -0.01572449319064617, 0.002261704532429576, 0.008225882425904274, 0.01158124953508377, -0.025234119966626167, -0.0055757490918040276, 0.02560877613723278, -0.015118434093892574, 0.03653988987207413, -0.0030440723057836294, 0.017553692683577538, 0.019955892115831375, -0.019614294171333313, 0.0015399424592033029, -0.02225891873240471, -0.012738272547721863, 0.025961391627788544, -0.026556432247161865, 0.014424219727516174, -0.027460012584924698, 0.02809913083910942, -0.03382914885878563, 0.010633592493832111, -0.0632505938410759, 0.04343795031309128, 0.0015812647761777043, -0.00549861416220665, -0.020550932735204697, -0.006765829864889383, -0.026071585714817047, 0.036495812237262726, -0.022203821688890457, 0.002641869243234396, -0.03433603420853615, -0.010523399338126183, -0.010804390534758568, -0.01346554420888424, 0.01456747017800808, 0.032088104635477066, -0.011471056379377842, 0.04480433836579323, -5.384805626817979e-05, 0.055404871702194214, 9.254462202079594e-05, 0.010209350846707821, -0.03988974541425705, 0.024661118164658546, 0.008258940652012825, -0.01841319538652897, -0.010358111001551151, 0.01676030457019806, -0.06254535913467407, 0.02527819760143757, 0.017983444035053253, -0.018578482791781425, -0.01072174683213234, 0.04456191509962082, -0.005033050198107958, 0.011041305027902126, -0.017245152965188026, 0.08502466231584549, -0.0033085348550230265, -0.00882643274962902, -0.041718944907188416, -0.01734432578086853, -0.0742257833480835, -0.013917333446443081, 0.01929473504424095, 0.07118446379899979, 0.002502750838175416, 0.03717900440096855, 0.012561963871121407, -0.004730020184069872, -0.043019216507673264, -0.06505774706602097, -0.04795584827661514, -0.058225806802511215, 0.03735531494021416, 0.004867760930210352, 0.0010351223172619939, -0.02088151127099991, -0.007812660187482834, -0.020694183185696602, -0.020473796874284744, 0.030214829370379448, -0.015228626318275928, 0.009382905438542366, 0.009107423946261406, 0.03519553691148758, -0.008336075581610203, -0.0025220345705747604, -0.01485397107899189, -0.01842421479523182, -0.031008215621113777, 0.053818099200725555, -0.038060545921325684, 0.002878783503547311, 0.021674897521734238, -0.01004957128316164, 0.04976300895214081, 0.05915142223238945, 0.016848457977175713, -0.0050220307894051075, 0.032617028802633286, 0.055757489055395126, -0.013388409279286861, -0.041939329355955124, -0.02865009382367134, -0.013399428687989712, -0.0329916849732399, -0.01732228696346283, -0.008600537665188313, 0.004082638304680586, -0.023735500872135162, 0.012606041505932808, 0.010457283817231655, 0.028694169595837593, 0.01898619718849659, -0.015592262148857117, -0.009145990945398808, 0.009250674396753311, -0.007063349708914757, -0.010727256536483765, -0.05399440601468086, 0.03407157212495804, 0.03711289167404175, 0.016165263950824738, -0.021939359605312347, 0.032021988183259964, 0.016440745443105698, -0.05121755227446556, -0.023008229210972786, 0.055404871702194214, 0.058798808604478836, 0.0035013719461858273, -0.024286463856697083, -0.057652805000543594, -0.011129459366202354, -0.015801629051566124, -0.0024022001307457685, -0.045024722814559937, -0.010793372057378292, -0.04628092050552368, 0.024330541491508484, -0.04011012986302376, -0.061751969158649445, -0.004691452719271183, -0.0494985468685627, 0.010837448760867119, 0.010258937254548073, -0.008121199905872345, 0.0051735457964241505, 0.04808808118104935, 0.040859442204236984, 0.007333321962505579, -0.026820894330739975, -0.0008774091256782413, -0.03241868317127228, 0.02395588532090187, 0.02393384650349617, -0.0035454491153359413, -0.014071603305637836, -0.02779059112071991, -0.001083331648260355, 0.01704680547118187, -0.037531621754169464, -0.018809888511896133, -0.017145978286862373, 0.013608794659376144, 0.017002727836370468, -0.059548117220401764, -0.032572951167821884, -0.023581231012940407, 0.005297512281686068, -0.025079850107431412, 0.004440764430910349, -0.014402181841433048, 0.05134978145360947, 0.017256172373890877, 0.006093654315918684, -0.019349832087755203, 0.005724509246647358, 0.004424235783517361, -0.00432230718433857, 0.01843523234128952, -0.03955916687846184, 0.03792831674218178, -0.035966888070106506, 0.00688153225928545, -0.022699689492583275, 0.0008064725552685559, -0.0330137237906456, -0.014732759445905685, 0.0072231292724609375, 0.019393909722566605, 0.013476562686264515, -0.02258949726819992, 0.004355364944785833, -0.03387322649359703, 0.04436356946825981, -0.031228601932525635, 0.03140490874648094, 0.017179036512970924, 0.02424238622188568, -0.0466776117682457, -0.02419831044971943, 0.010407697409391403, 0.022093629464507103, -0.004490351304411888, -0.021685916930437088, 0.0206721443682909, 0.01566939800977707, -0.004798890557140112, -0.05293655768036842, 0.005126713775098324, 0.030898023396730423, 0.01760878786444664, -0.018347078934311867, 0.017718980088829994, -0.014920087531208992, -0.01706884428858757, -0.009245164692401886, -0.016606034711003304, -0.013476562686264515, -0.015823667868971825, -0.011867750436067581, -0.03603300079703331, -0.02202751487493515, -0.02776855230331421, -0.019988950341939926, 0.017432479187846184, 0.01820382848381996, -0.08502466231584549, -0.0023980678524821997, 0.021399416029453278, 0.018909061327576637, -0.026137700304389, -0.01894211955368519, -0.036209311336278915, -0.008694201707839966, 0.015592262148857117, -0.029597749933600426, -0.0247933492064476, -0.007983459159731865, 0.0035647328477352858, -0.012749291956424713, -0.015217606909573078, -0.009311280213296413, -0.03682639077305794, 0.010782352648675442, -0.05311286449432373, 0.020980684086680412, -0.04654538258910179, -0.01757572963833809, 0.03052336908876896, 0.009371886029839516, 0.02003302611410618, 0.0032699673902243376, -0.011988962069153786, 0.03969139978289604, 0.026534393429756165, -0.0009566100779920816, -0.026864971965551376, -0.004011013079434633, 0.0028291966300457716, -0.022203821688890457, 0.0037878728471696377, 0.00577409565448761, -0.025256158784031868, 0.024991696700453758, 0.036760274320840836, 0.03138286992907524, -0.0130908889696002, -0.05452333018183708, -0.018490329384803772, 0.037267159670591354, 0.012319539673626423, -0.005179055500775576, 0.0035068816505372524, 0.030369099229574203, 0.0042809853330254555, 0.047250617295503616, 0.021300243213772774, -0.0056253354996442795, 0.030920062214136124, 0.00530026713386178, 0.022699689492583275, -0.007465553004294634, -0.018247906118631363, -0.008947644382715225, -0.03770793229341507, -0.015779590234160423, -0.01681540161371231, 0.009267203509807587, -0.05685941502451897, 0.021542666479945183, 0.0032176258973777294, 0.007482082117348909, 0.017729999497532845, -0.01738840341567993, 0.023493075743317604, -0.01195590477436781, -0.04760323092341423, 0.004118450917303562, 0.06210458651185036, 0.0413222499191761, 0.0178622305393219, -0.08859490603208542, -0.018820907920598984, 0.03360876441001892, -0.012154251337051392, 0.03197791054844856, -0.0633828192949295, -0.06166381761431694, -0.00017432824824936688, 6.947303336346522e-05, 0.013112927787005901, 0.03687046468257904, -0.0522313229739666, 0.04026440158486366, 0.006512386724352837, -0.03625338897109032, -0.007096407935023308, 0.008303017355501652, -0.03244072198867798, -0.012066096998751163, 0.00418456643819809, -0.004542692564427853, -0.030633561313152313, 0.012253424152731895, 0.0017548182513564825, 0.012440752238035202, -0.06545444577932358, -0.008523402735590935, 0.000496555701829493, 0.03444622829556465, -0.023625308647751808, 0.014413201250135899, -0.011068853549659252, 0.020176276564598083, 0.027570204809308052, -0.02342696115374565, -0.03739939257502556, -0.03687046468257904, -0.00549861416220665, 0.0024311256129294634, 0.036760274320840836, 0.07285939157009125, 0.016672151163220406, 0.03003852069377899, -0.03050133027136326, -0.027658360078930855, 0.012683175504207611, -0.011526152491569519, -0.011922846548259258, -0.017542673274874687, -0.034556418657302856, 0.017509615048766136, 0.04535530135035515, 0.009581252001225948, -0.044980645179748535, 0.0016033032443374395, -0.0013718986883759499, 0.03164733573794365, 0.042247869074344635, -0.0219944566488266, 0.044187258929014206, -0.0026404918171465397, 0.014479316771030426, 0.01185673102736473, 0.028121167793869972, 0.025168005377054214, 0.02311842143535614, 0.017223114147782326, 0.016165263950824738, -0.0010123951360583305, 0.027966897934675217, -0.0073608700186014175, 0.03374099358916283, 0.036716196686029434, 0.0027203813660889864, -0.003005505073815584, 0.04257844761013985, 0.032572951167821884, 0.007944891229271889, 0.04039663076400757, -0.06805498898029327, 0.0021432472858577967, -0.02728370390832424, -0.008027535863220692, 0.03711289167404175, 0.0260936226695776, 0.00796693004667759, 0.057652805000543594, -0.028561938554048538, -0.04019828513264656, 0.01114598847925663, 0.05209909379482269, -0.010297504253685474, 0.023779576644301414, -0.008099161088466644, 0.030192790552973747, -0.01730024814605713, 0.007421476300805807, -0.006743791047483683, 0.02862805500626564, -0.003154264995828271, 0.004449028987437487, -0.025079850107431412, 0.024859465658664703, -0.04011012986302376, -0.0035123913548886776, -0.016110168769955635, -0.05456740781664848, -0.007575745694339275, 0.03693658113479614, -0.017465537413954735, -0.024661118164658546, 0.027415934950113297, -0.014214853756129742, 0.010539928451180458, 0.004589524585753679, -0.013377389870584011, -0.01620934158563614, -0.005501369014382362, 0.012198328040540218, -0.019415948539972305, 0.012330559082329273, -0.009586761705577374, 0.028429707512259483, 0.0026101889088749886, -0.021597763523459435, -0.02261153608560562, 0.010947640985250473, -0.04561976343393326, 0.012352597899734974, -0.04808808118104935, 0.022424208000302315, 0.0012527528451755643, 0.010991718620061874, -0.014402181841433048, 0.02913494035601616, 0.039471011608839035, 0.0024641836062073708, -0.0179063081741333, -0.006501367315649986, 0.008771336637437344, 0.011493095196783543, -0.0057520573027431965, -0.01485397107899189, 0.014754798263311386, -0.024639079347252846, -0.015515127219259739, 0.038633547723293304, 0.04244621470570564, -0.0020729994866997004, -0.015349838882684708, 0.00357299717143178, -0.004677678924053907, -0.004683188162744045, -0.0012527528451755643, 0.006754810456186533, 0.004597789142280817, -0.026203816756606102, -0.00813221838325262, -0.023228613659739494, -0.021807128563523293, 0.01098620891571045, 0.02149858884513378, 0.0018953138496726751, 0.0022672140039503574, -0.05258394032716751, 0.018005480989813805, 0.04286494851112366, 0.017939366400241852, -0.0017231378005817533, 0.04149855673313141, -0.02371346205472946, 0.018931100144982338, 0.03495311364531517, -0.04072720929980278, 0.005713489837944508, 0.005319551099091768, -0.012727253139019012, 0.009250674396753311, 0.05994481220841408, -0.02862805500626564, -0.022765804082155228, -0.0022300241980701685, -0.027724474668502808, -0.018347078934311867, 0.010931112803518772, 0.05068862810730934, 0.005308531690388918, -0.010181802324950695, -0.015063337981700897, -0.01552614662796259, -0.018093636259436607, -0.034556418657302856, 0.012275462970137596, 0.027085358276963234, 0.00878235511481762, 0.01653992012143135, -0.024617042392492294, -0.01185673102736473, 0.0028898026794195175, 0.004933876451104879, -0.005049578845500946, 0.02340492233633995, -0.019371870905160904, 0.0031239620875567198, -0.004005503375083208, 0.02090354822576046, 0.02391180954873562, -0.002115699229761958, -0.024022001773118973, -0.009041308425366879, 0.015834685415029526, 0.005812663119286299, 0.017553692683577538, 0.041410405188798904, -0.019305754452943802, -0.0022148725111037493, -0.020022006705403328, 0.0026570206973701715, -0.022181784734129906, -0.034247882664203644, 0.026291970163583755, -0.002019280567765236, -0.017267191782593727, 0.013718986883759499, -0.00358401658013463, 0.02261153608560562, 0.021256165578961372, 0.016595015302300453, 0.0881541296839714, 0.013906314969062805, 0.012220366857945919, 0.028517862781882286, -0.04266659915447235, -0.04738284647464752, -0.0275261290371418, 0.013179043307900429, 0.008661143481731415, -0.016077110543847084, 0.01840217597782612, -0.01677132397890091, 0.027349820360541344, -0.04326163977384567, 0.0002918383979704231, 0.008336075581610203, -0.019426967948675156, -0.030214829370379448, -0.011966923251748085, 0.004950405564159155, 0.005030295345932245, 0.012143231928348541, 0.0061928280629217625, -0.02307434380054474, -0.010413207113742828, 0.0220164954662323, 0.0006022718152962625, -0.038369085639715195, 0.024837426841259003, 0.00357299717143178, -0.03744346648454666, 0.008710729889571667, 0.0164627842605114, 0.0052672093734145164, -0.0004938009078614414, -0.056550875306129456, -0.010567476972937584, 0.029112903401255608, 0.02450684830546379, 0.04077128693461418, 0.029597749933600426, -0.016936613246798515, -0.05183463171124458, 0.022148726508021355, 0.030170751735568047, -0.015195569023489952, 0.011393921449780464, -0.03532776981592178, -0.011702461168169975, -0.01976856403052807, 0.006826435681432486, 0.02008812315762043, 0.013730006292462349, -0.016892535611987114, -0.026336047798395157, -0.03653988987207413, -0.015052318572998047, -0.031030254438519478, 0.002559224609285593, -0.03607707843184471, 0.011212104000151157, -0.010330562479794025, -0.017465537413954735, -0.016572976484894753, 0.01074929442256689, 0.006176298949867487, 0.0002809913130477071, -0.020462777465581894, -0.015460031107068062, 0.01224240567535162, -0.055404871702194214, -0.007322302553802729, 0.028539901599287987, 0.005341589450836182, -0.0016570222796872258, -0.024374617263674736, -0.03444622829556465, 0.047250617295503616, 0.004572995472699404, -0.027636321261525154, -0.0013546810951083899, -0.02532227523624897, -0.010517889633774757, -0.011168026365339756, -0.041740983724594116, -0.016121186316013336, 0.02671070210635662, -0.028760286048054695, -0.006011010147631168, -0.02448481135070324, -0.0012961411848664284, -0.021079856902360916, 0.02006608434021473, -0.016176283359527588, -0.007862246595323086, 0.009035798721015453, 0.02371346205472946, 0.021652858704328537, -0.07823679596185684, -0.018600521609187126, -0.01757572963833809, -0.02501373551785946, 0.03543796017765999, -0.011988962069153786, 0.009151500649750233, -0.03907432034611702, 0.0031625295523554087, 0.04381260275840759, -0.011493095196783543, 0.022898036986589432, -0.035371847450733185, -0.002599169500172138, 0.03711289167404175, -0.031757526099681854, -0.018214847892522812, -0.01872173324227333, 0.01787324994802475, 0.02424238622188568, 0.021366357803344727, 0.05399440601468086, -0.021895281970500946, -0.010909073986113071, 0.02340492233633995, 0.005421479232609272, -0.0018264434766024351, 0.030457252636551857, -0.00639668432995677, -0.008606047369539738, -0.000988979241810739, -0.0037520602345466614, -0.013476562686264515, -0.01002753246575594, 0.01127270981669426, -0.029840175062417984, 0.017542673274874687, 0.0007410456892102957, 0.01346554420888424, 0.022457266226410866, -0.049410391598939896, 0.0013443505158647895, -0.031493064016103745, -0.045840147882699966, 0.024925582110881805, -0.006595030892640352, -0.011316786520183086, -0.009454530663788319, 0.04189525172114372, 0.0633828192949295, 0.01363083254545927, -0.029112903401255608, 0.0021749278530478477, -0.028010975569486618, -0.004041315987706184, -0.0005024097044952214, 0.006319549400359392, 0.04013216868042946, -0.018898041918873787, 0.018578482791781425, 0.024330541491508484, 0.01007161010056734, -0.0005488971946761012, 0.007261696737259626, -0.0026336046867072582, -0.01087601576000452, -0.01704680547118187, 0.02422034740447998, -0.005944894161075354, 0.0007865001680329442, -0.024418694898486137, -0.030391138046979904, -0.009151500649750233, 0.024815388023853302, -0.025190044194459915, -0.026358086615800858, -0.002848480362445116, -0.010567476972937584, 0.037531621754169464, -0.0010192821500822902, 0.01281540747731924, 0.023867731913924217, -0.05289248004555702, -0.007482082117348909, -0.0550522580742836, -0.024440733715891838, 0.010969679802656174, 0.01278234925121069, 0.004694207571446896, -0.028517862781882286, 0.00855095125734806, -0.004484841600060463, 0.009393924847245216, 0.003669415833428502, -0.010231388732790947, -0.006716242991387844, 0.039184510707855225, -0.023228613659739494, -0.001721760374493897, 0.014887029305100441, 0.020528893917798996, -0.0013312652008607984, 0.005520652513951063, 0.022435227409005165, -0.026049546897411346, -0.012319539673626423, -0.03988974541425705, -0.015801629051566124, -0.0017892534378916025, -0.02224789932370186, 0.018931100144982338, 0.018369117751717567, 0.027966897934675217, -0.010369129478931427, -0.0468539223074913, 0.012694194912910461, 0.01552614662796259, 0.0013099153293296695, 0.031779564917087555, 0.015845704823732376, -0.0010523399105295539, 0.008082631975412369, -0.002223137067630887, 0.008622576482594013, 0.012055077590048313, -0.04601645842194557, -0.0004628091992344707, -0.017685923725366592, -0.036782313138246536, 0.003922858741134405, -0.019393909722566605, -0.016121186316013336, 0.0413002111017704, -0.007553707342594862, -0.016683170571923256, -0.010655631311237812, 0.034798845648765564, -0.0357685387134552, 0.04901369661092758, 0.021840186789631844, -0.04383464157581329, -0.010578496381640434, 0.023757539689540863, -0.008853980340063572, 0.015779590234160423, -0.026490317657589912, 0.019426967948675156, -0.016628073528409004, 0.014170777052640915, 0.0030192791018635035, -0.027107395231723785, 0.026534393429756165, -0.024572964757680893, 0.010655631311237812, 0.02003302611410618, -0.00037913164123892784, -0.003068865742534399, 0.0357244610786438, 0.0011012379545718431, 0.013564717024564743, -0.008853980340063572, 0.04517899453639984, -0.04517899453639984, -0.011129459366202354, 0.06307428330183029, 0.04079332575201988, -0.010170782916247845, -0.019460024312138557, 0.013707967475056648, -0.013994468376040459, -0.014082622714340687, 0.030391138046979904, -0.009818166494369507, -0.02338288351893425, 0.005757567007094622, -0.012628079392015934, 0.042556408792734146, -0.00032300225575454533, 0.006154260598123074, -0.012363617308437824, 0.020572971552610397, -0.026644587516784668, -0.02638012357056141, 0.010903564281761646, -0.04879331216216087, 0.027878744527697563, 0.02774651348590851, -0.0075812553986907005, 0.0103030139580369, 0.012011000886559486, 0.022413188591599464, 0.004118450917303562, -0.026071585714817047, 0.02726166509091854, 0.023008229210972786, -0.00682092597708106, -0.008600537665188313, -0.030082598328590393, -0.003730021882802248, -0.03761977702379227, -0.0007072991575114429, 0.011812654323875904, 0.01363083254545927, 0.005176300648599863, -0.018589502200484276, -0.054082561284303665, -0.012319539673626423, -0.016583995893597603, 0.006044067908078432, 0.01401650719344616, -0.029928328469395638, -0.01899721659719944, -0.018325040116906166, 0.01820382848381996, 0.02012118138372898, -0.006242414470762014, -0.03598892316222191, 0.003782363375648856, -0.024440733715891838, 0.045840147882699966, -0.01596691831946373, -0.019460024312138557, 0.009707974269986153, 0.01957021839916706, -0.004460048396140337, 0.005526162218302488, 0.011878769844770432, -0.04180709645152092, 0.002727268496528268, 0.05055639520287514, -0.004212114494293928, 0.026005469262599945, -0.003146000672131777, -0.02117902971804142, -0.017983444035053253, -0.03131675720214844, 0.01868867687880993, 0.025079850107431412, -0.0005733462166972458, -0.013972430489957333, 0.002840216038748622, 0.049145929515361786, 0.016727246344089508, -0.027988936752080917, 0.03885393589735031, 0.011988962069153786, 0.03374099358916283, 0.04733876883983612, 0.018071597442030907, -0.0036280935164541006, -0.010429736226797104, 0.010126706212759018, 0.0018884268356487155, -0.017156997695565224, 0.03199994936585426, 0.025388389825820923, -0.029796097427606583, 0.029641827568411827, 0.031493064016103745, -0.002779609989374876, -0.0007851227419450879, 0.01018731202930212, 0.049410391598939896, 0.025498583912849426, 0.0413002111017704, -0.006280981935560703, 0.00046935188584029675, 0.007234148681163788, -0.023228613659739494, 0.011603287421166897, -0.023889770731329918, -0.03409361094236374, -0.013608794659376144, 0.03515145927667618, 0.010578496381640434, -0.010556457564234734, -0.02285395935177803, 0.00682092597708106, -0.02311842143535614, 0.0036886995658278465, 0.02142145484685898, -0.00034452424733899534, 0.024595003575086594, 0.021641839295625687, 0.011437999084591866, 0.03224237263202667, -0.012749291956424713, -0.016319533810019493, -0.011504114605486393, -0.041145943105220795, -0.018490329384803772, 0.000690425920765847, -0.02225891873240471, 0.003980710171163082, 0.01335535105317831, -0.03136083111166954, -0.012837445363402367, -0.025079850107431412, 0.011338825337588787, 0.00796693004667759, 0.022203821688890457, 0.0178842693567276, 0.028760286048054695, 0.00906885601580143, 0.024286463856697083, 0.0041404892690479755, -0.02472723461687565, -0.011801634915173054, 0.03279333934187889, -0.014842952601611614, 0.034820884466171265, 0.02066112495958805, 0.017718980088829994, 0.006303020752966404, -0.03684842959046364, -0.01278234925121069, -0.021013742312788963, -0.02560877613723278, -0.04923408478498459, 0.044187258929014206, 0.01898619718849659, 0.01154819130897522, 0.017807135358452797, 0.04645722731947899, 0.016550937667489052, -0.016088129952549934, 0.011371883563697338, 0.009123953059315681, -0.001747931120917201, 0.029906289651989937, 0.03742143139243126, 0.03056744486093521, 0.011900807730853558, -0.0219724178314209, -0.02231401577591896, -0.009548194706439972, 0.006512386724352837, -0.012066096998751163, -0.016176283359527588, -0.004438009578734636, -0.013884276151657104, -0.02364734560251236, 0.03382914885878563, 0.011338825337588787, -0.0049531604163348675, -0.008159766905009747, 0.0012279595248401165, 0.003730021882802248, 0.011079872958362103, 0.02646827884018421, -0.011404940858483315, 0.010628082789480686, 0.00364186754450202, 0.009019269607961178, 0.023471038788557053, 0.0439448356628418, 0.0060661062598228455, -0.006842964794486761, -0.046897999942302704, 0.01651788130402565, -0.0029752019327133894, 0.01701374724507332, 0.00776858301833272, 0.007944891229271889, -0.007272716145962477, -0.06020927429199219, 0.010203841142356396, -0.021245146170258522, -0.02258949726819992, -0.02200547605752945, -0.014258931390941143, -0.005606052000075579, -0.016716226935386658, 0.030391138046979904, -0.007796131074428558, 0.011415960267186165, -0.004812664818018675, 0.007261696737259626, -0.0038815366569906473, -0.027129434049129486, -0.0358346551656723, 0.016143225133419037, -0.050203777849674225, -0.04561976343393326, 0.035856693983078, 0.019581235945224762, 0.005071617662906647, -0.009702464565634727, -0.041167981922626495, -0.01456747017800808, 0.01677132397890091, -0.012550944462418556, -0.005396686028689146, 0.02644624002277851, -0.006055086851119995, 0.02554265968501568, 0.004716245923191309, 0.019944872707128525, -0.012209347449243069, 0.0164848230779171, 0.017487576231360435, -0.010705217719078064, 0.006567482836544514, 0.02316249907016754, -0.003754815086722374, 0.021278204396367073, 0.03823685646057129, 0.02891455590724945, -0.054347023367881775, 0.0123966746032238, 0.019426967948675156, -0.03711289167404175, -0.030479291453957558, 0.01279336865991354, -0.03770793229341507, 0.026225855574011803, 0.0011597778648138046, 0.01552614662796259, 0.003022033954039216, 0.008446267805993557, 0.003630848368629813, 0.057917267084121704, -0.014942125417292118, -0.010297504253685474, -0.022655611857771873, -0.016396669670939445, 0.016451764851808548, 0.014666643925011158, -0.002231401391327381, -0.04376852884888649, 0.02728370390832424, -0.012374636717140675, 0.007256187032908201, -0.039471011608839035, -0.03667211905121803, -0.011085382662713528, 0.04813215509057045, -0.02122310735285282, 0.048617005348205566, 0.02033054642379284, -0.03160325810313225, -0.01871071569621563, 0.029289210215210915, -0.00036673498107120395, -0.008765826933085918, -0.0019614293705672026, -0.011735519394278526, -0.008589518256485462, -0.042754754424095154, -0.0013684551231563091, -0.00866665318608284, 0.019680410623550415, -0.014776836149394512, -0.006584011949598789, 0.04242417588829994, -0.010842958465218544, -0.016132205724716187, -0.057079803198575974, 0.02834155410528183, 0.04317348822951317, 0.01651788130402565, -0.005955913569778204, -0.023867731913924217, -0.012187308631837368, -0.05011562630534172, 0.020969664677977562, -0.02968590520322323, 0.017421459779143333, 0.007300264202058315, 0.015184549614787102, -0.02646827884018421, 0.022699689492583275, -0.008732768706977367, 0.002046828856691718, -0.006699714343994856, 0.0030413176864385605, 0.031162485480308533, 0.01895313896238804, 0.009465550072491169, 0.03169140964746475, -0.0261597391217947, -0.024705195799469948, 0.035966888070106506, -0.008203843608498573, -0.01730024814605713, 0.018303001299500465, -0.031030254438519478, -0.01734432578086853, -0.004798890557140112, 0.03252887353301048, 0.02094762586057186, 0.010192821733653545, -0.012418713420629501, 0.022898036986589432, 0.010242408141493797, 0.007173542398959398, -0.008385661989450455, 0.008980702608823776, 0.009641858749091625, -0.010815409943461418, -0.05553710460662842, 0.02781262993812561, 0.0027245136443525553, 0.0329255685210228, 0.02117902971804142, -0.03501923009753227, 0.018247906118631363, -0.02369142323732376, -0.012484828941524029, 0.020231373608112335, -0.0010048194089904428, -0.00667216582223773, -0.010567476972937584, 0.031250640749931335, -0.006413212977349758, 0.006314039696007967, -0.0030358079820871353, -0.022104648873209953, 0.011460036970674992, -0.003969690762460232, 0.039184510707855225, 0.011999981477856636, -0.004589524585753679, -0.019184542819857597, 0.006220376119017601, -0.023625308647751808, 0.009190068580210209, -0.01813771203160286, -0.007074369117617607, 0.03133879601955414, -0.024705195799469948, -0.010534418746829033, 0.01840217597782612, 0.01525066513568163, -0.028694169595837593, -0.009548194706439972, 0.028760286048054695, 0.04063905403017998, 0.0020358094479888678, -0.0012809897307306528, 0.013432485982775688, 0.016705207526683807, 0.027592243626713753, -0.0275261290371418, -0.011239651590585709, -0.013300254940986633, 0.02314046025276184, -0.0033911792561411858, 0.025234119966626167, -0.0220495518296957, 0.03431399539113045, 0.005917346104979515, 0.036165233701467514, 0.016672151163220406, -0.011239651590585709, -0.0032864962704479694, 0.020154239609837532, 0.04588422551751137, 0.027349820360541344, 0.03197791054844856, 0.010567476972937584, -0.020793356001377106, -0.013300254940986633, -0.028738247230648994, -0.044980645179748535, -0.0036060549318790436, -0.009190068580210209, 0.013873256742954254, 0.015878763049840927, 0.005504123866558075, -0.014413201250135899, -0.02558673731982708, 0.01114598847925663, 0.01251788716763258, -0.010369129478931427, 0.029641827568411827, 0.03766385465860367, 0.004713491536676884, -0.042512331157922745, 0.04517899453639984, 0.021002722904086113, -0.010826429352164268, -0.019151484593749046, -0.0494544692337513, -0.05637456849217415, -0.012947638519108295, -0.021090876311063766, -0.005476575344800949, 0.013917333446443081, -0.010363620705902576, -0.003052336862310767, 0.02037462405860424, 0.0011115685338154435, 0.018842946738004684, -0.02809913083910942, 0.027944860979914665, -0.028517862781882286, 0.001394625985994935, -0.0165289007127285, -0.019118428230285645, 0.018655618652701378, -0.001117766834795475, -0.029818136245012283, -0.03466661274433136, 0.021245146170258522, 0.03363080322742462, -0.023845693096518517, 0.024264425039291382, 0.01900823414325714, -0.01758674904704094, -0.006225885823369026, -0.0053939311765134335, 0.0042809853330254555, 0.00502478564158082, -0.014192815870046616, -0.01626443676650524, 0.04632499814033508, -0.018347078934311867, -0.02726166509091854, 0.008319546468555927, 0.010418716818094254, 0.027129434049129486, 0.01986773870885372, -0.0009173539583571255, -0.007641861215233803, 0.041410405188798904, 0.03711289167404175, 0.042534369975328445, 0.0027864971198141575, -0.021035779267549515, 0.033454492688179016, 0.060958582907915115, 0.0032231356017291546, 0.04079332575201988, 0.020870491862297058, 0.0005320239579305053, 0.05866657570004463, -0.007531668990850449, 0.018303001299500465, -0.011977942660450935, -0.0033856697846204042, -0.050732702016830444, 0.003980710171163082, 0.0021528892684727907, 0.00025309878401458263, -0.007520649582147598, -0.006655637174844742, -0.026269931346178055, -0.003471069037914276, -0.0021115669514983892, -0.04484841600060463, -0.006165279541164637, -0.048528850078582764, -0.0034738238900899887, 0.030104637145996094, 0.023250652477145195, 0.009641858749091625, -0.03468865156173706, 0.002041319152340293, -0.01815975084900856, 0.017223114147782326, -0.03332226350903511, -0.054347023367881775, -0.02261153608560562, 0.0028168000280857086, 0.02333880588412285, 0.007212109863758087, 0.026247892528772354, -0.03986770659685135, -0.007592274807393551, -0.020859472453594208, 0.018798869103193283, -0.016991708427667618, -0.011079872958362103, -0.0006728639709763229, 0.004325062036514282, -0.01046279352158308, 0.009311280213296413, -0.014269950799643993, -0.018898041918873787, -0.010776842944324017, 0.012716233730316162, 0.0010261691641062498, 0.0219724178314209, -0.007289244793355465, -0.013542679138481617, 0.000630164286121726, 0.001962806796655059, 0.0022809882648289204, 0.0014435239136219025, 0.005559219978749752, -0.011614306829869747, 0.014413201250135899, 0.0030027502216398716, -0.03107433207333088, -0.024088116362690926, 0.028275437653064728, -0.03942693769931793, -0.003016524249687791, 0.0032534385100007057, 0.0123966746032238, -0.040859442204236984, -0.018589502200484276, -0.003388424403965473, 0.01223138626664877, 0.027988936752080917, -0.026490317657589912, -0.0009676293702796102, -0.012572983279824257, 0.03133879601955414, -0.006071615964174271, -0.046104609966278076, -0.018391156569123268, -0.03986770659685135, -0.022446246817708015, -0.010666649788618088, -0.025234119966626167, 0.022699689492583275, -0.04539937898516655, 0.0022906300146132708, 0.05289248004555702, -0.02646827884018421, 0.006986215244978666, -0.009652877226471901, -0.014247911982238293, 0.027966897934675217, 0.008925605565309525, 0.04066109284758568, 0.018578482791781425, -0.007460043765604496, -0.03521757572889328, -0.015812648460268974, -0.0027300233487039804, -0.05730018764734268, -0.02944348007440567, 0.0017121185082942247, 0.002792006591334939, 0.02175203152000904, 0.01765286549925804, 0.06267759203910828, 0.027371859177947044, -0.035107385367155075, 0.03885393589735031, -0.0072672064416110516, -0.03356468677520752, 0.053553637117147446, 0.021674897521734238, 0.02088151127099991, 0.0192506592720747, 0.001432504621334374, -0.0015592261916026473, -0.02836359292268753, 0.0385233573615551, -0.014931106008589268, 0.021785089746117592, 0.031228601932525635, -0.013476562686264515, 0.014920087531208992, -0.0075812553986907005, -0.022104648873209953, -0.02644624002277851, -0.009388415142893791, 0.014743778854608536, -0.013564717024564743, -0.01820382848381996, -0.016947632655501366, -0.02858397737145424, 0.030633561313152313, 0.0037190024740993977, 0.029377365484833717, 0.05593379586935043, 0.019030272960662842, -0.0052864933386445045, -0.03404953330755234, 0.028231361880898476, -0.010980699211359024, -0.04052886366844177, 0.03050133027136326, -0.015515127219259739, 0.0468539223074913, 0.005606052000075579, 0.03380711004137993, -0.01785121113061905, 0.002088150940835476, 0.027724474668502808, -0.014931106008589268, 0.014468297362327576, 0.010347091592848301, -0.02280988171696663, 0.0030661108903586864, -0.05668310821056366, 0.004829193465411663, -0.011658384464681149, 0.020870491862297058, -0.0261597391217947, 0.005490349605679512, -0.009977946057915688, 0.03900820389389992, -0.011013757437467575, -0.02527819760143757, -0.005005501676350832, 0.031757526099681854, -0.03711289167404175, 0.02229197695851326, -0.0036501321010291576, -0.017399422824382782, 0.017785096541047096, -0.012198328040540218, 0.010446264408528805, -0.019988950341939926] \ No newline at end of file diff --git a/cache/text-embedding-3-small5be2520a-7be5-5742-8d63-7d8718d9caa0 b/cache/text-embedding-3-small5be2520a-7be5-5742-8d63-7d8718d9caa0 new file mode 100644 index 0000000000000000000000000000000000000000..adc4af6e1b08eb8c28b37b1ebd7a3af415969ed3 --- /dev/null +++ b/cache/text-embedding-3-small5be2520a-7be5-5742-8d63-7d8718d9caa0 @@ -0,0 +1 @@ +[-0.008476035669445992, 0.019982095807790756, 0.005566522944718599, 0.0426039844751358, 0.0051992470398545265, 0.008257965557277203, 0.016711045056581497, 0.05385180562734604, 0.0022969080600887537, 0.005669819191098213, 0.04313194379210472, -0.027316132560372353, -0.08860526978969574, -0.022162795066833496, 0.011190432123839855, 0.04825085029006004, -0.04570287466049194, 0.01323340367525816, -0.034707557410001755, 0.01699797995388508, -0.007764438632875681, -0.0019325015600770712, -0.025089522823691368, 0.021864382550120354, -0.023781104013323784, -0.001103979186154902, -0.03440914675593376, -0.012946469709277153, 0.00652488274499774, 0.020165733993053436, 0.0783674567937851, -0.0412726104259491, 0.035258471965789795, -0.03622256964445114, -0.021198695525527, 0.05775411054491997, -0.006151868496090174, -0.009899228811264038, 0.038701679557561874, 0.006042833440005779, 0.05913139134645462, -0.019523000344634056, -0.0030386329162865877, 0.04620787873864174, 0.0291984211653471, -0.01560921873897314, -0.009135983884334564, -0.05642273277044296, -0.0007065754034556448, 0.0345468744635582, -0.025410890579223633, -0.007787393406033516, 0.04994950070977211, -0.027958864346146584, -0.00477458443492651, -0.03183821588754654, 0.006656872574239969, -0.0025207167491316795, 0.02839500457048416, -0.007047103252261877, 0.05660637095570564, -0.016573317348957062, 0.001256771618500352, 0.011437196284532547, 0.03877054527401924, -0.0431089885532856, 0.015712514519691467, 0.03978055343031883, -0.01799651049077511, 0.009904967620968819, -0.021806996315717697, -0.02903773821890354, 0.01593058556318283, 0.046345606446266174, 0.008872004225850105, -0.00826944224536419, -0.002454721834510565, -0.0017086929874494672, 0.02573225647211075, -0.003810485824942589, -0.06275823712348938, 0.0006782406126148999, 0.04375172033905983, 0.034523919224739075, 0.021497108042240143, -0.0010566350538283587, 0.035074833780527115, 0.05118905380368233, -0.030093654990196228, 0.049169037491083145, 0.02655862644314766, -0.010610825382173061, 0.02885410003364086, 0.01542558055371046, 0.0074143786914646626, -0.008298136293888092, 0.010197640396654606, 0.0017244743648916483, -0.015666605904698372, 0.01636672392487526, 0.0398494154214859, 0.03902304545044899, -0.015540354885160923, 0.020085392519831657, 0.05155633017420769, 0.006352722644805908, 0.004533560015261173, 0.007896427996456623, -0.02428610809147358, 0.04673583805561066, -0.03266458585858345, -0.0030902810394763947, -0.07620971649885178, 0.028968872502446175, -0.037898264825344086, 0.016768433153629303, -0.053805895149707794, -0.007488981820642948, 0.022782573476433754, 0.005643995013087988, -0.01729639060795307, -0.01419750228524208, -0.021313469856977463, 0.050821781158447266, -0.04186943173408508, 0.020808465778827667, -0.03232026472687721, 0.029955927282571793, -0.03275640308856964, -0.03011661022901535, -0.031057754531502724, 0.0033198283053934574, -0.014771371148526669, 0.01720457337796688, 0.004111766815185547, 0.008831833489239216, -0.01473693922162056, 0.02209393121302128, 0.004972569178789854, -0.006410109344869852, 0.012510329484939575, -0.03622256964445114, 0.024171333760023117, 9.908195352181792e-05, -0.058993663638830185, 0.0324120819568634, 0.016217518597841263, 0.028808189556002617, 0.03920668363571167, 0.023356441408395767, 0.015023873187601566, -0.01318749412894249, -0.0041433293372392654, 0.018868790939450264, -0.01909833773970604, -0.02428610809147358, 0.014702506363391876, -0.021244606003165245, -0.08002019673585892, -0.0005566522595472634, 0.04255807399749756, 0.06069231405854225, 0.010673951357603073, 0.014266367070376873, -0.005804677959531546, -0.0008378477650694549, -0.04843448847532272, -0.033353228121995926, -0.0438205860555172, -0.05724910646677017, 0.014392618089914322, -0.0003977624874096364, 0.008470296859741211, 0.009072857908904552, -0.05247452110052109, -0.01292351447045803, -0.02628316916525364, 0.012659535743296146, 0.03450096398591995, 0.036429163068532944, 0.043063078075647354, 0.061289139091968536, -0.005796070210635662, -0.03757689893245697, 0.0004074465250596404, -0.010702644474804401, -0.02092324011027813, 0.03622256964445114, -0.044073086231946945, -0.02910660207271576, 0.02373519353568554, -0.028234321624040604, 0.06523735076189041, 0.01619456522166729, 0.015976494178175926, 0.016515931114554405, -0.009893490001559258, 0.04848039522767067, -0.02102653495967388, -0.034707557410001755, -0.01599944941699505, 0.0023743801284581423, -0.03459278121590614, -0.021405288949608803, -0.013589202426373959, -0.018880268558859825, -0.014679552055895329, 0.04427967965602875, -0.014495913870632648, 0.046253789216279984, -0.021520063281059265, -0.04322376102209091, 0.015965016558766365, 0.06248278543353081, -0.022530071437358856, 0.010180423967540264, -0.07634744048118591, 0.04604719579219818, 0.0639977976679802, 0.028096593916416168, 0.01209714449942112, 0.017055366188287735, 0.009233541786670685, -0.004935267847031355, -0.02210540883243084, 0.019809935241937637, 0.04320080950856209, -0.026237260550260544, 0.027591589838266373, -0.0396428257226944, 0.01809980720281601, -0.008877743035554886, -0.006105958949774504, -0.05683591961860657, -0.04122669994831085, 0.01611422188580036, 0.04829675704240799, -0.018030943349003792, -0.06431916356086731, -0.02575520984828472, -0.03514369577169418, 0.00652488274499774, 0.0391378216445446, 0.01423193421214819, 0.0014848842984065413, 0.03174639493227005, 0.043246716260910034, -0.01845560595393181, 0.0036584106273949146, -0.008430126123130322, -0.008332568220794201, 0.044899459928274155, -0.0026914423797279596, 0.03101184405386448, 0.007902166806161404, -0.06404370814561844, 0.008717060089111328, 0.00941717904061079, -0.05651455372571945, -0.013612156733870506, -0.016871729865670204, -0.0287393257021904, 0.0027273092418909073, -0.009405702352523804, 0.005311151500791311, -0.015173078514635563, -0.0020616219844669104, -0.029450923204421997, 0.00043470525997690856, -0.07115967571735382, 0.04694242775440216, -0.01341704186052084, -0.017502984032034874, 0.01756037026643753, 0.008005463518202305, -0.01811128482222557, -0.0034632952883839607, 0.04604719579219818, -0.04570287466049194, 0.048893582075834274, -0.04154806584119797, -0.034983012825250626, -0.0006854140083305538, -0.004926659632474184, -0.005368538200855255, -0.007075796369463205, 0.0009059946169145405, -0.020314939320087433, 0.0322054922580719, -0.005796070210635662, 0.02193324826657772, -0.044715821743011475, 0.009227802976965904, -0.01205123495310545, 0.032802313566207886, -0.0027732187882065773, 0.03440914675593376, -0.029405012726783752, -0.027706362307071686, 0.015000917948782444, 0.010289459489285946, -0.0052910661324858665, -0.03450096398591995, -0.034156642854213715, 0.002163483528420329, 0.031884126365184784, 0.022438252344727516, 0.00600266270339489, 0.0038277017883956432, 0.0017617758130654693, -0.059820033609867096, 0.029818197712302208, -0.014587732963263988, -0.051280874758958817, -0.038150765001773834, -0.003910912666469812, 0.001112587284296751, -0.02293177880346775, 0.00420645484700799, -0.02030346170067787, 0.002658445155248046, -0.028326140716671944, -0.01938527263700962, 0.02248416095972061, -0.0026039276272058487, -0.09953172504901886, 0.01781287230551243, 0.029634561389684677, 0.03796713054180145, -0.018306400626897812, -0.009709851816296577, -0.015942063182592392, 0.011661004275083542, -0.006880681496113539, -0.0458635576069355, -0.013853181153535843, 0.0017789917765185237, -0.0008378477650694549, 0.0005308281979523599, -0.02285143733024597, -0.007431595120579004, -0.04246625676751137, 0.05812138319015503, -0.049811773002147675, -0.02974933385848999, -0.0482049398124218, -0.04939858615398407, 0.011402763426303864, -0.00525663373991847, 0.030736388638615608, -0.01983288861811161, -0.0029927233699709177, 0.01092071458697319, 0.023528601974248886, -0.008826094679534435, 0.0034489487297832966, 0.03181526064872742, -0.0053398446179926395, 0.005159076303243637, -0.0013313745148479939, 0.004906574264168739, -0.009055642411112785, 0.03482232987880707, 0.04613901302218437, 0.020877329632639885, -0.0005405122064985335, -0.04014782980084419, 0.0011879074154421687, 0.03310072422027588, -0.006737214047461748, 0.023161325603723526, -0.002866472350433469, -0.007523413747549057, -0.04372876510024071, -0.00719057023525238, 0.001205123495310545, -0.02584702894091606, 0.03436323627829552, 0.015161600895226002, 0.06757873296737671, 0.004042902495712042, -0.015965016558766365, -0.03002479113638401, -0.018306400626897812, -0.047791752964258194, 0.009744284674525261, 0.013210449367761612, -0.05766228958964348, 0.01710127666592598, -0.025089522823691368, 0.013072720728814602, 0.012039757333695889, -0.029313193634152412, 0.021083923056721687, -0.016447067260742188, -0.04122669994831085, 0.0005577282863669097, 0.06886419653892517, 0.040354419499635696, -0.002507804660126567, -0.07359287142753601, -0.035786427557468414, -0.05449453741312027, -0.006478973664343357, 0.010008263401687145, -0.0085104675963521, -0.002889427123591304, -0.05077587068080902, -0.015161600895226002, -0.002710093278437853, 0.016584794968366623, -0.0671655461192131, 0.04014782980084419, 0.021956201642751694, -0.008705582469701767, 0.001978411106392741, -0.01441557239741087, -0.026902947574853897, 0.01893765479326248, 0.03718666732311249, 0.019706638529896736, -0.025525663048028946, -0.02938205935060978, 0.030965935438871384, -0.0016240474069491029, -0.03665870800614357, 0.02020016498863697, 0.01710127666592598, 0.02511247806251049, -0.023241667076945305, 0.005529221147298813, 0.011397024616599083, 0.00022775398974772543, 0.03310072422027588, 0.011431457474827766, 0.0009562080958858132, -0.009755761362612247, 0.0154141029343009, 0.04531264305114746, -0.03929850459098816, 0.015391148626804352, -0.0009138853056356311, 0.008837572298943996, -0.023058028891682625, -0.006765907630324364, -0.0018952001119032502, -0.029634561389684677, -0.01601092703640461, -0.03229730948805809, -0.011563447304069996, 0.008894959464669228, 0.016401156783103943, -0.008131714537739754, -0.05105132609605789, -0.01720457337796688, 0.0004332705866545439, 0.07005784660577774, -0.04159397631883621, 0.005962491966784, 0.03002479113638401, 0.015230465680360794, 0.005555045325309038, -0.002771784085780382, 0.023080984130501747, 0.016332292929291725, 0.0036268478725105524, 0.00163265538867563, -0.011316683143377304, -0.0015666605904698372, -0.008757230825722218, -0.009497520513832569, 0.015092737041413784, 0.025066569447517395, 0.027912955731153488, -0.0018980695167556405, 0.03902304545044899, 0.014013865031301975, -0.026420898735523224, 0.022862914949655533, -0.041341476142406464, 0.03268754109740257, -0.03048388659954071, -0.04639151692390442, 0.010582132264971733, 0.005560784135013819, -0.022587457671761513, 0.0289459191262722, -0.03204480931162834, -0.018880268558859825, 0.015574786812067032, 0.022679276764392853, -0.015574786812067032, 0.04567991942167282, -0.00959507841616869, 0.010145992040634155, -0.03576347604393959, -0.02492883987724781, -0.030552750453352928, 0.033881187438964844, 0.01191350631415844, 0.030506839975714684, -0.05940685048699379, -0.006283858325332403, -0.03932145982980728, 0.03186117112636566, 0.03468460217118263, -0.03766871616244316, 0.024699293076992035, 0.01611422188580036, 0.0349600575864315, -0.05242861062288284, 0.01210862211883068, -0.021784041076898575, 0.015161600895226002, 0.01064525730907917, -0.024699293076992035, -0.02582407556474209, 0.0020200165454298258, 0.018214581534266472, -0.030988890677690506, 0.019339362159371376, 0.007930859923362732, 0.03574052080512047, 0.012659535743296146, 0.007850518450140953, -0.010036957450211048, 0.016975024715065956, -0.011655265465378761, -0.014036819338798523, -0.04875585436820984, 0.018972087651491165, 0.0007919382769614458, -0.028257276862859726, 0.003618239890784025, 0.030621614307165146, 0.0241024699062109, -0.020349370315670967, -0.011437196284532547, -0.014759893529117107, 0.03436323627829552, 0.021772565320134163, -0.018421173095703125, 0.003956822212785482, 0.004128982778638601, -0.037439171224832535, -0.024791112169623375, 0.033422090113162994, 0.06202368810772896, -0.003764576278626919, 0.005876411683857441, 0.02401065081357956, -0.013084198348224163, 0.013577724806964397, 0.015207510441541672, 0.04694242775440216, -0.0438205860555172, -0.02072812430560589, 0.015689559280872345, -0.0013823052868247032, -0.014140116050839424, 0.01546001248061657, -0.0074143786914646626, -0.010995317250490189, -0.005262372549623251, 0.002507804660126567, -0.010157469660043716, 0.03259572014212608, 0.06358461081981659, -0.020062437281012535, 0.009577862918376923, 0.002030059229582548, -0.0019210242899134755, 0.06064640358090401, -0.06174823269248009, 0.017307868227362633, -0.002344252075999975, -0.013956477865576744, 0.003540767589583993, 0.06863465160131454, -0.014025341719388962, -0.020073914900422096, -0.02655862644314766, -0.024354971945285797, -0.033789366483688354, -0.005500528030097485, 0.025984758511185646, 0.004364268854260445, 0.012326691299676895, -0.032343219965696335, -0.014748415909707546, -0.030277293175458908, -0.026902947574853897, -0.014840235002338886, 0.039528049528598785, -0.016584794968366623, -0.010306674987077713, 0.002635490382090211, -0.0006843379815109074, 0.022231658920645714, 0.004091680981218815, -0.03509778901934624, 0.006840510293841362, -0.04269580543041229, 0.01528785191476345, -0.008625240996479988, 0.01574694737792015, 0.0014303667703643441, 0.02173813246190548, 0.028234321624040604, -0.02083142101764679, 0.014759893529117107, 0.036337342113256454, 0.022713707759976387, 0.001923893578350544, -0.0014576255343854427, 0.0012108621886000037, -0.012613626196980476, -0.010140253230929375, 0.024791112169623375, -0.03250390291213989, 0.02037232555449009, 0.0015695298789069057, 0.016320815309882164, -0.02828023210167885, -0.006685566157102585, 0.03456982970237732, 0.0048032780177891254, 0.004923790227621794, 0.024263152852654457, -0.007833302952349186, -0.03186117112636566, -0.0012825956800952554, 0.0003977624874096364, -0.013922045938670635, -0.030690478160977364, 0.0041433293372392654, -0.00805711094290018, -0.029680470004677773, -0.005629648454487324, -0.0005171988159418106, -0.0004806147189810872, -0.02828023210167885, -0.03186117112636566, 0.0023184281308203936, -0.0170209351927042, -0.00030468820477835834, -0.031516849994659424, -0.019672205671668053, 0.0017459944356232882, 0.00868836697191, 0.013520337641239166, -0.01766366697847843, 3.449934956734069e-05, 0.012739877216517925, 0.007253695745021105, -0.04949040338397026, 0.023712240159511566, 0.014484436251223087, -0.023310530930757523, 0.0003324849531054497, 0.007907905615866184, -0.0026570104528218508, -0.04666697233915329, -0.04478468373417854, 0.01609126850962639, 0.03401891514658928, 0.00964098796248436, 0.02582407556474209, 0.029864108189940453, -0.015620696358382702, -0.08493251353502274, 0.03484528511762619, 0.020510053262114525, -0.02093471586704254, 0.015345239080488682, -0.003294004127383232, -0.002943944651633501, -0.022713707759976387, 0.007879212498664856, 0.028900008648633957, 0.02557157352566719, -0.006467496044933796, -0.049260858446359634, -0.022266091778874397, 0.00836700014770031, -0.016447067260742188, 0.009210586547851562, -0.01456477865576744, 0.02857864275574684, -0.005090211983770132, 0.01064525730907917, -0.010995317250490189, 0.016883205622434616, 0.013830226846039295, 0.010088604874908924, -0.048526305705308914, 0.0014045427087694407, 0.03473051264882088, -0.031884126365184784, 0.007902166806161404, 0.01873106323182583, 0.02137085609138012, -0.004025686532258987, -0.049444496631622314, -0.015196033753454685, -0.001231664908118546, -0.004722936544567347, -0.024699293076992035, 0.023689284920692444, -0.0019425443606451154, -0.0016799995210021734, 0.001609700615517795, -0.022874392569065094, -0.015218988060951233, -0.0009813148062676191, -0.00491231307387352, -0.007448811084032059, 0.008648195303976536, 0.015345239080488682, -0.020418236032128334, 0.02137085609138012, -0.0023987696040421724, 0.01191350631415844, 0.00814893003553152, 0.003646933240815997, 0.019488569349050522, -0.05261224880814552, -0.03174639493227005, -0.024492699652910233, -0.015023873187601566, 0.013784317299723625, -0.02239234186708927, 0.007293866481631994, -0.04976586252450943, 0.01601092703640461, 0.0017919038655236363, 0.0010681124404072762, 0.029703425243496895, -0.04884767159819603, -0.009996786713600159, 0.02910660207271576, -0.0472867488861084, -0.04609310254454613, -0.033789366483688354, 0.0077472226694226265, 0.027706362307071686, 0.016676614060997963, 0.02912955731153488, 0.014128638431429863, -0.01209714449942112, -0.0006301791872829199, 0.007104489952325821, -0.012820218689739704, -0.010335369035601616, 0.048709943890571594, 0.02566339261829853, -0.02002800442278385, -0.01846708357334137, -6.222884985618293e-05, -0.02575520984828472, 0.03048388659954071, 0.009663942269980907, -0.0215544942766428, 0.004981176927685738, 0.03112661838531494, -0.017847305163741112, -0.014541823416948318, 0.0051992470398545265, -0.014886144548654556, -0.03748507797718048, -0.0036813654005527496, -0.0074143786914646626, -0.017778441309928894, -0.02011982351541519, 0.008539160713553429, 0.0043987007811665535, 0.015701036900281906, -0.019901754334568977, 0.009049903601408005, -0.026811128482222557, 0.03856395184993744, -0.016802864149212837, -0.0310347992926836, 0.039160773158073425, -0.02394178695976734, 0.0005419469089247286, 0.014668074436485767, -0.012797263450920582, -0.01329079084098339, -0.005506266839802265, 0.021359378471970558, 0.012946469709277153, -0.0015107083600014448, -0.003996992949396372, -0.02311541698873043, 0.0033456524834036827, -0.00411750515922904, -0.06633917987346649, 0.018260490149259567, 0.045450370758771896, 0.01319897174835205, -0.0028549949638545513, -0.0001817548618419096, -0.01945413649082184, 0.029060691595077515, -0.0005304695223458111, 0.011936461552977562, 0.015276375226676464, -0.024240197613835335, -0.024814067408442497, -0.007397162728011608, -0.029175465926527977, -0.005968230776488781, 0.0005874977214261889, 0.027522725984454155, -0.015127168968319893, -0.02775227278470993, -0.006880681496113539, 0.00987053569406271, 0.004100289195775986, 0.02811954915523529, -0.01636672392487526, 0.024859976023435593, -0.042994216084480286, -0.002522151218727231, 0.028601597994565964, 0.018409695476293564, -0.028624553233385086, 0.024584518745541573, 0.002202219795435667, 0.011890552006661892, -0.010438664816319942, -0.04418786242604256, 0.008849049918353558, 0.007500458974391222, -0.03250390291213989, 0.008120236918330193, 0.01423193421214819, 0.02956569567322731, 0.014955008402466774, -0.03714075684547424, 0.011947938241064548, -0.008935130201280117, 0.03629143163561821, 0.00973854586482048, 0.001489188289269805, 0.03711780533194542, 0.007121705915778875, 0.002821997506543994, -0.0005681296461261809, -0.03355982154607773, -0.026971811428666115, 0.029772289097309113, -0.0004070878494530916, -0.03209071606397629, 0.022782573476433754, 0.0055349599570035934, -0.009841841645538807, 0.002487719291821122, -0.00490944366902113, -0.01078872475773096, -0.03950509428977966, -0.002276822691783309, 0.01563217304646969, 0.02309246174991131, -0.005098820198327303, -0.008567853830754757, 0.005922321230173111, 0.01583876647055149, 0.029978882521390915, 0.011029749177396297, -0.026857037097215652, 0.012705445289611816, -0.011368331499397755, 0.03764576092362404, 0.0012962251203134656, -0.023241667076945305, 0.019396750256419182, -0.027683408930897713, 0.006897897459566593, 0.04632265120744705, 0.039160773158073425, 0.03339913859963417, 0.023230189457535744, -0.02283995971083641, 0.02020016498863697, -0.010358323343098164, 0.040997155010700226, -0.03491415083408356, -0.003962561022490263, 0.06404370814561844, 0.03727848827838898, -0.003279657568782568, -0.0003384029841981828, 0.0314938947558403, 0.021806996315717697, -0.013703975826501846, 0.0093770083039999, 0.01929345354437828, -0.022323478013277054, -0.0014439962105825543, -0.02557157352566719, -0.004986915737390518, -0.007976769469678402, 0.023781104013323784, 0.02747681550681591, 0.021692223846912384, -0.04682765528559685, -0.020062437281012535, 0.06601781398057938, -0.0338352769613266, 0.02648976258933544, 0.054724082350730896, 0.009003994055092335, 0.015391148626804352, 0.041984207928180695, 0.0014719723258167505, 0.006731475703418255, 0.03548801690340042, -0.04214489087462425, 0.01301533356308937, 0.0029927233699709177, 0.03282526880502701, -0.011127307079732418, -0.027775228023529053, -0.0373014397919178, -0.03408777713775635, 0.012831696309149265, 0.007242218125611544, -0.02529611624777317, -0.020521530881524086, -0.01801946572959423, -0.031975943595170975, -0.03785235434770584, -0.018157193437218666, 0.054540447890758514, 0.02139381133019924, 0.004183500073850155, -0.002823432208970189, 0.0075635844841599464, 0.010662473738193512, -0.027430906891822815, -0.011500321328639984, -0.02428610809147358, 0.003494858043268323, 0.0021964809857308865, 0.018053898587822914, 0.02109540067613125, -0.021439719945192337, 0.006920852232724428, 0.012533284723758698, -0.0035522449761629105, 0.017870260402560234, -0.012533284723758698, -0.015678083524107933, 0.03039206750690937, 0.011609355919063091, 0.03764576092362404, 0.01766366697847843, -0.0047774538397789, -0.03957396000623703, -0.037806443870067596, -0.017778441309928894, 0.02600771188735962, 0.03250390291213989, 0.01563217304646969, 0.0021218780893832445, -0.005600954871624708, 0.0049668303690850735, -0.011408502236008644, 0.04418786242604256, 0.024722248315811157, 0.06404370814561844, 0.029267285019159317, 0.003968299366533756, 0.012980901636183262, -0.012166008353233337, 0.021864382550120354, 0.01046735793352127, 0.002262475900352001, 0.017307868227362633, 0.008929391391575336, -0.007907905615866184, 0.03427141532301903, 0.044027179479599, 0.009118767455220222, -0.0028263016138225794, 0.03521256148815155, 0.04464695602655411, -0.008034156635403633, 0.049077220261096954, -0.016883205622434616, -0.012854650616645813, 0.016447067260742188, -0.036888256669044495, 0.014254889450967312, -0.013864658772945404, -0.04439445585012436, 0.00491231307387352, 0.012980901636183262, 0.026948856189846992, -0.015987971797585487, -0.018432650715112686, -0.018719585612416267, -0.02883114479482174, 0.007161876652389765, 0.03675052896142006, -0.0004913747543469071, 0.04893949255347252, 0.012338168919086456, -0.03585529327392578, 0.012671012431383133, 0.007167615462094545, 0.02701772190630436, -0.010719859972596169, -0.01863924413919449, -0.01424341183155775, -0.01209714449942112, -0.028900008648633957, 0.0514645129442215, 0.00013387271610554308, -0.015081259422004223, 0.024263152852654457, -6.814686639700085e-05, 0.017537416890263557, 0.050362683832645416, 0.0018765494460240006, 0.02557157352566719, 0.04921494796872139, 0.02146267518401146, -0.004691373556852341, -0.038334403187036514, -0.00600266270339489, 0.0024016390088945627, 0.01210862211883068, -0.02421724423766136, 0.0024776766076684, 0.019683683291077614, -0.01100679486989975, -0.01909833773970604, -0.028877055272459984, 0.03121843747794628, -0.02166926860809326, -0.007552107330411673, -0.014254889450967312, 0.008034156635403633, 0.011982371099293232, 0.007873473688960075, 0.009750022552907467, 0.0370948500931263, 0.02892296388745308, -0.00766688073053956, 0.0008880612440407276, 0.0044675651006400585, -0.00534271402284503, 0.009520475752651691, 0.013967955484986305, 0.04483059421181679, -0.008441602811217308, -0.0032251400407403708, -0.001137693994678557, 0.015896152704954147, -0.01836378686130047, -0.014358185231685638, -0.011517537757754326, -0.04733265936374664, -0.023322008550167084, -0.05449453741312027, 0.04292535036802292, -0.01863924413919449, 0.011150261387228966, 0.004590946715325117, -0.005489050410687923, 0.006874942686408758, -0.005253764800727367, 0.005460357293486595, -0.010300936177372932, 0.03165457770228386, 0.028004774823784828, 0.024584518745541573, 9.32536058826372e-05, 0.0365898460149765, 0.01874253898859024, -0.006433064118027687, -0.035717565566301346, 0.004332705866545439, 0.01908686012029648, 0.013577724806964397, -0.006364199798554182, 0.013795794919133186, 0.02375814877450466, -0.055274996906518936, -0.011506060138344765, -0.04177761450409889, -0.006897897459566593, -0.005773115437477827, 0.016596272587776184, -0.009399963542819023, 0.018983565270900726, -0.001426780130714178, 0.0005272415583021939, -0.01337113231420517, 0.02021164260804653, -0.015861719846725464, -0.015115692280232906, -0.03805894777178764, -0.0032595722004771233, 0.0067773847840726376, -0.030254337936639786, -0.010708383284509182, -0.006369938608258963, -0.01046735793352127, 0.008699843659996986, -0.003618239890784025, -0.01082889549434185, -0.00245615653693676, 0.014656596817076206, -0.018237534910440445, -0.019132770597934723, 0.02876228094100952, -0.02474520169198513, 0.023872923105955124, 0.0012259262148290873, 0.016045358031988144, -0.013703975826501846, -0.0022050889674574137, 0.03020842932164669, 0.0022811265662312508, 0.024951795116066933, 0.00670852093026042, -0.02391883172094822, 0.021049490198493004, 0.020246075466275215, 0.012498851865530014, -0.04632265120744705, -0.002492023166269064, 0.008740014396607876, -0.03066752292215824, 0.005041433498263359, 0.02667340077459812, -0.017353778705000877, 0.03165457770228386, -0.021967679262161255, 0.025984758511185646, 0.0025881461333483458, -0.010117298923432827, 0.0024948925711214542, 0.0639977976679802, -0.00932535994797945, -0.025043614208698273, -0.0031792304944247007, -0.024400880560278893, -0.004929529037326574, 0.02591589465737343, 0.027362041175365448, -0.03975759819149971, 0.019591864198446274, -0.0009239279897883534, 0.009876273572444916, -0.023218711838126183, 0.0031562757212668657, 0.02547975443303585, 0.018788449466228485, 0.007942337542772293, 0.04783766344189644, -0.012452943250536919, -0.0064961896277964115, -0.017330823466181755, -0.005575130693614483, -0.014759893529117107, -0.02857864275574684, 0.0007761568995192647, 0.00038807844975963235, -0.006961022969335318, -0.02648976258933544, -0.004149068146944046, -0.0019626296125352383, 0.030415020883083344, -0.006536360364407301, -0.010364062152802944, 0.024699293076992035, -0.024722248315811157, -0.007288127671927214, -0.02775227278470993, 0.039252594113349915, 0.014874666929244995, -0.0014834495959803462, 0.007024148479104042, -0.0022969080600887537, -0.02039528079330921, -0.06133504584431648, 0.017319345846772194, 0.006117436569184065, 0.02683408372104168, 0.01718161813914776, 0.008653934113681316, -0.013692498207092285, -0.008114498108625412, -0.004481911659240723, -0.005973969120532274, -0.0032968735322356224, 0.002255302621051669, -0.009101551957428455, 0.016688091680407524, 0.00972706824541092, 0.004151937551796436, -0.0059051052667200565, -0.013841704465448856, 0.03092002496123314, -0.010312413796782494, -0.0023327746894210577, 0.009922183118760586, -0.02320723608136177, -0.008653934113681316, 0.0021692223381251097, -0.005118905566632748, 0.030644569545984268, -0.010972362942993641, 0.014851712621748447, -0.01829492300748825, 0.012361124157905579, -0.012085666880011559, 0.011270773597061634, -0.019982095807790756, 0.014082728885114193, -0.008384216576814651, -0.04857221618294716, -0.011764300987124443, -0.010197640396654606, -0.01984436623752117, -0.009847580455243587, -0.018352309241890907, -0.0050586494617164135, -0.02974933385848999, 0.008384216576814651, -0.0010286589385941625, -0.018535947427153587, -0.027706362307071686, 0.00165417545940727, 0.0008285224321298301, 0.00770705146715045, -0.006301074288785458, -0.01101253367960453, -0.00766688073053956, -0.01891469955444336, -0.009302405640482903, 0.006846249103546143, -0.006117436569184065, 0.0048979660496115685, -0.028440915048122406, -0.008608024567365646, -0.022162795066833496, 0.0006172670982778072, -0.00595675315707922, -8.114856609608978e-05, 0.030001835897564888, -0.02667340077459812, 0.00010473097063368186, -0.004215063061565161, 0.01438114047050476, -0.04685061052441597, 0.002575234044343233, -0.0028277363162487745, 0.02965751476585865, -0.014128638431429863, -0.019993573427200317, -0.03459278121590614, -0.02029198408126831, 0.0451519601047039, -0.014128638431429863, -0.03163162246346474, -0.04079056158661842, -0.00018955588166136295, 0.011603618040680885, -0.0016584794502705336, -0.002745959907770157, 0.023058028891682625, 0.020062437281012535, 0.031700488179922104, -0.014656596817076206, -0.0011240645544603467, -0.02075107954442501, 0.013681020587682724, 0.0414792038500309, 0.028440915048122406, 0.039160773158073425, -0.0003608197148423642, -0.008487512357532978, -0.02582407556474209, 0.004197846632450819, -0.05100541561841965, 0.003055848879739642, -0.01059360895305872, -0.00723074097186327, 0.00928518921136856, -0.0025049352552741766, 0.004229409620165825, 0.03193003311753273, -0.012934992089867592, -0.0041203745640814304, -0.013589202426373959, -0.0019066774984821677, 0.022266091778874397, 0.015781378373503685, -0.0261913500726223, 0.053805895149707794, -0.004390092566609383, -0.003856395138427615, -0.02193324826657772, -0.019970618188381195, -0.05665228143334389, 0.011425718665122986, 0.028877055272459984, -0.03576347604393959, -0.004628248047083616, 0.011752823367714882, 0.001513577764853835, 0.03936736658215523, -0.01857037842273712, 0.02357451058924198, 0.011775778606534004, 0.04386649653315544, 0.01937379501760006, -0.010203379206359386, -0.00714466068893671, -0.032985951751470566, 0.02609953097999096, -0.011902029626071453, -0.03973464295268059, 0.00045837732614018023, 0.041066017001867294, 0.017434120178222656, -0.006105958949774504, 0.025089522823691368, 0.011902029626071453, -0.02837205119431019, -0.006599485874176025, 0.00477171503007412, 0.0011663873447105289, -0.011672481894493103, -0.008240749128162861, -0.01528785191476345, 0.04060692340135574, 0.0014992309734225273, -0.04067578911781311, 0.003337044268846512, 0.005316890310496092, -0.013256358914077282, 0.02403360605239868, 0.005116036161780357, -0.026902947574853897, 0.030277293175458908, 0.02355155721306801, 0.010714122094213963, 0.00770705146715045, -0.0009024079772643745, 0.04792948439717293, 0.0491231307387352, 0.01610274612903595, 0.03939032182097435, 0.01799651049077511, 0.0308282058686018, 0.04930676519870758, 0.014059774577617645, 0.01574694737792015, -0.021152786910533905, 0.00841864850372076, -0.03413368761539459, -0.007861996069550514, -0.005322628654539585, 0.010404232889413834, 0.00964672677218914, -0.023138370364904404, 0.016263429075479507, -0.009072857908904552, 0.006656872574239969, -0.040974199771881104, 0.009399963542819023, -0.04510604962706566, -0.013818749226629734, 0.029359104111790657, 0.05550454556941986, 0.044348545372486115, -0.015253419987857342, 0.02202506735920906, 0.0017947731539607048, -0.025892939418554306, -0.029359104111790657, -0.037806443870067596, -0.0025723648723214865, 0.03268754109740257, -0.006071527022868395, 0.0191098153591156, 0.025273161008954048, -0.04487650468945503, -0.007356991991400719, -0.01674547791481018, -0.010123037733137608, -0.0020931847393512726, -0.029703425243496895, 0.0031993158627301455, -0.008246487937867641, 0.005460357293486595, -0.023528601974248886, -0.009973831474781036, -0.023149847984313965, -0.005491919815540314, 0.010903498157858849, -0.009101551957428455, -0.020601872354745865, -0.012372600845992565, -0.005945276003330946, -0.02382701262831688, -0.00552348280325532, -0.026512717828154564, -0.011672481894493103, 0.021129831671714783, 0.011173216626048088, 0.005253764800727367, 0.012257827445864677, -0.014186025597155094, -0.02357451058924198, 0.00950325932353735, -0.0017904691630974412, -0.016619225963950157, 0.03229730948805809, 0.03094298020005226, -0.03284822404384613, -0.0356716550886631, -0.010369800962507725, 0.014530345797538757, 0.02336791902780533, -0.029060691595077515, 0.012028280645608902, -0.007902166806161404, 0.03890827298164368, 0.009239280596375465, -0.021795518696308136, -0.007356991991400719, -0.01774400845170021, -0.036084841936826706, 0.004883619491010904, -0.027040675282478333, 0.029450923204421997, -0.06188596040010452, -0.02246120572090149, -0.00977871660143137, -0.006174823269248009, 0.015528877265751362, -0.016802864149212837, -0.002777522662654519, 0.018673675134778023, 0.020246075466275215, 0.005844849161803722, -0.014955008402466774, 0.00818336196243763, -0.04742448031902313, -0.013359654694795609, 0.0154141029343009, -0.01828344538807869, -0.02219722792506218, -0.025778165087103844, -0.0008170450455509126, 0.0133252227678895, 0.017445597797632217, 0.06307961046695709, 0.020269028842449188, -0.03514369577169418, 0.03176935017108917, -0.009474566206336021, -0.015299329534173012, 0.06229914724826813, -0.011936461552977562, 0.01191350631415844, 0.020498577505350113, 0.018398217856884003, -0.005004131700843573, 0.003489119466394186, 0.0031247129663825035, -0.028877055272459984, -0.00591084361076355, 0.033904142677783966, -0.020992103964090347, 0.02864750660955906, 0.012762831524014473, -0.02903773821890354, -0.01992470771074295, -0.0051533374935388565, 0.01195941586047411, -0.010880543850362301, -0.04806721210479736, -0.023872923105955124, 0.007115967106074095, 0.01109861396253109, -0.011437196284532547, 0.01314158458262682, 0.05559636279940605, 0.03273344784975052, -0.034064825624227524, -0.044348545372486115, -0.01183316484093666, 0.011798732914030552, -0.05151041969656944, 0.0787806436419487, -0.023241667076945305, 0.041180793195962906, -0.021979156881570816, 0.012257827445864677, -0.0039482139982283115, 0.005841979756951332, -0.004961091559380293, 0.024446791037917137, 0.03649802505970001, 0.007081535179167986, -0.008780185133218765, -0.0026240129955112934, -0.025456799194216728, 0.011448672972619534, 0.0053886235691607, 0.006180562078952789, -0.03209071606397629, 0.05210724472999573, 6.169084372231737e-05, 0.020854374393820763, -0.0016369593795388937, -0.0354650616645813, -0.007070058025419712, 0.03902304545044899, -0.017939124256372452, 0.00030361220706254244, 0.020406758412718773, -0.027063630521297455, -0.00108604587148875, 0.021956201642751694, -0.014668074436485767, 0.004197846632450819] \ No newline at end of file diff --git a/cache/text-embedding-3-small63133d17-e391-593c-a45f-0a3fef1193f5 b/cache/text-embedding-3-small63133d17-e391-593c-a45f-0a3fef1193f5 new file mode 100644 index 0000000000000000000000000000000000000000..afca2125bb1be344e8729acc79bc7264add015fa --- /dev/null +++ b/cache/text-embedding-3-small63133d17-e391-593c-a45f-0a3fef1193f5 @@ -0,0 +1 @@ +[0.0065409839153289795, 0.01671178638935089, 0.09442403167486191, 0.012546021491289139, 0.026699882000684738, 0.017406081780791283, 0.03846634551882744, 0.10095283389091492, 0.018283085897564888, -0.01182127557694912, 0.042534664273262024, -0.0106884790584445, -0.04864932969212532, 0.012083157896995544, 0.026529353111982346, 0.014056416228413582, -0.04994047060608864, 0.012972341850399971, 0.007734682876616716, -0.010115990415215492, 0.02803974784910679, 0.036931589245796204, 0.006875950377434492, 0.03517758101224899, -0.006997756194323301, 0.023849621415138245, -0.019732575863599777, -0.02165711112320423, -0.019403699785470963, -0.03218115121126175, 0.08448465913534164, -0.0363469198346138, -0.02151094563305378, 0.04358219727873802, -0.02003709226846695, 0.04019599035382271, -0.032668378204107285, 0.03364282473921776, 0.020268524065613747, 0.021084623411297798, -0.014811613596975803, -0.034787800163030624, 0.03135287016630173, 0.021352596580982208, 0.0691371038556099, -0.028551332652568817, -0.006924672983586788, -0.05091492086648941, -0.001650471705943346, -0.004930099006742239, -0.0012995180441066623, -0.0060994368977844715, 0.03756497800350189, -0.041755106300115585, -0.01924535259604454, -0.009555683471262455, 0.01790548674762249, 0.01464108470827341, -0.00688204076141119, 0.07829691469669342, 0.031084898859262466, -0.041633300483226776, 0.0070403884164988995, 0.022241780534386635, -0.0248727910220623, 0.0048631057143211365, -0.01736954040825367, 0.03595713898539543, -0.02311878465116024, -0.0051858918741345406, -0.026407547295093536, -0.025847239419817924, -0.009561773389577866, 0.006741963792592287, 0.04292444512248039, -0.004433739464730024, -0.011449766345322132, -0.013557011261582375, 0.0013756467960774899, 0.01483597420156002, -0.030402785167098045, -0.03220551460981369, 0.02365473099052906, -0.04290008172392845, 0.0350070521235466, 0.004068321548402309, -0.015481546521186829, 0.01936715841293335, -0.03006172738969326, 0.02113334648311138, 0.004180992022156715, 0.06002601236104965, -0.009385154582560062, 0.017978569492697716, -0.0060507142916321754, -0.04070757329463959, 0.007271819747984409, 0.002353901509195566, 0.01683359406888485, 0.02672424353659153, 0.053643375635147095, 0.004820473492145538, -0.005934998858720064, -0.0020356832537800074, 0.02162056975066662, -0.021182067692279816, -0.014470556750893593, -0.008301081135869026, 0.005310742650181055, 0.03549427539110184, -0.06723693013191223, -0.014470556750893593, -0.042315416038036346, 0.056859053671360016, -0.01909918524324894, -0.021961627528071404, -0.05033025145530701, -0.044166866689920425, 0.004920963663607836, 0.042144887149333954, 0.04560417681932449, 0.002117902273312211, -0.0031913178972899914, 0.005861915182322264, -0.0360545851290226, -0.009714030660688877, -0.02419067732989788, -0.009232897311449051, -0.026748603209853172, -0.06713948398828506, 0.0024117594584822655, 0.0181734599173069, -0.06903965771198273, -0.028112832456827164, 0.014251305721700191, -0.012838355265557766, -0.008703040890395641, -0.004607312846928835, 0.021157708019018173, -0.023739995434880257, 0.0013086535036563873, -0.008130552247166634, 0.04224232956767082, 0.025457460433244705, -0.04043960198760033, 0.047212015837430954, -0.03218115121126175, 0.030378423631191254, 0.001111480058170855, 0.005840599071234465, -0.04526311904191971, -0.01912354677915573, -0.056030772626399994, 0.00015025916218291968, 0.0023249725345522165, -0.0053259688429534435, -0.030816925689578056, 0.03624947369098663, -0.030256617814302444, -0.05237659439444542, -0.009263348765671253, 0.07659163326025009, -0.005155440419912338, 0.03237604349851608, 0.05841817334294319, -0.041901275515556335, -0.019269714131951332, -0.04092682525515556, -0.07254767417907715, -0.019184449687600136, -0.022400129586458206, -0.0108346464112401, -0.016407271847128868, -0.009050187654793262, -0.0072291879914700985, 0.014921238645911217, -0.05529993772506714, 0.0013330146903172135, -0.008739582262933254, -0.011778643354773521, -0.0026203521993011236, 0.01801511086523533, -0.023715633898973465, -0.013666636310517788, -0.05744372308254242, -0.009275529533624649, -0.043070610612630844, 0.014750709757208824, 0.021535305306315422, 0.02657807618379593, -0.00887356884777546, 0.02833208255469799, 0.04701712727546692, 0.017259914427995682, -0.0022686372976750135, 0.03391079977154732, -0.0026766874361783266, 0.05101236328482628, -0.016663065180182457, 0.005124988500028849, 0.022923894226551056, -0.03220551460981369, 0.05427676811814308, 0.006693241186439991, -0.021316055208444595, 0.02018325962126255, -0.02364255115389824, 0.024556094780564308, -0.001986960880458355, 0.025822877883911133, -0.031206704676151276, -0.008660408668220043, -0.03875868022441864, 0.015213573351502419, -0.016529077664017677, -0.0073083615861833096, -0.016516897827386856, -0.02803974784910679, 0.03644436225295067, -0.018234362825751305, 0.02711402252316475, -0.014872516505420208, 0.007655508816242218, -0.02419067732989788, -0.02042687125504017, 0.042826998978853226, 0.014799432829022408, -0.005146304611116648, 0.006145114079117775, -0.03164520487189293, 0.03422749415040016, -0.04903910681605339, -0.019415881484746933, -0.03671233728528023, -0.0022564567625522614, -0.033472295850515366, -0.01829526573419571, 0.006425268016755581, -0.025554904714226723, -0.051109809428453445, 0.005609167739748955, 0.024653540924191475, 0.0005941850249655545, -0.020219800993800163, 0.012259776704013348, 0.03257093206048012, 0.009634857065975666, -0.021973807364702225, 0.03490960970520973, -0.023191867396235466, -0.018002931028604507, 0.009781024418771267, -0.028526972979307175, 0.026626797392964363, 0.02058521844446659, -0.015993131324648857, -0.005919773131608963, 0.002927912399172783, 0.0323273204267025, -0.03639564290642738, -0.018076015636324883, 0.0007053330191411078, 0.02297261729836464, -0.04126788303256035, -0.017393900081515312, 0.02847824990749359, -0.026919132098555565, 0.030427146703004837, 0.01495778001844883, -0.043070610612630844, -0.00841070618480444, -0.018819032236933708, -0.018782489001750946, 0.0008853775798343122, -0.02096281759440899, -0.009403425268828869, 0.020110175013542175, 0.0070891110226511955, -0.05145086720585823, 0.02764996886253357, -0.031157981604337692, -0.05281509459018707, 0.0406588539481163, -0.02497023530304432, 0.024105412885546684, 0.0056852963753044605, 0.003462336491793394, 0.003693767823278904, 0.007162194699048996, 0.052571482956409454, -0.014969960786402225, -0.0691371038556099, -0.010548402555286884, -0.07542229443788528, 0.006668880116194487, 0.022119974717497826, 0.01711374707520008, -0.0221930593252182, -0.01221714448183775, 0.038027841597795486, 0.035737890750169754, 0.07780969142913818, -0.021584028378129005, -0.06416741758584976, -0.0009988094680011272, 0.036785420030355453, -0.0032278597354888916, -0.010980813764035702, -0.0036237293388694525, 0.031328510493040085, -0.030548952519893646, -0.0074545289389789104, 0.04248594120144844, -0.06148768216371536, -0.03875868022441864, 0.02366691082715988, -0.020073633641004562, -0.03288762643933296, -0.011510670185089111, -0.028380805626511574, -0.0002613120013847947, -0.02113334648311138, -0.007752953562885523, -0.0041474951431155205, 0.057930946350097656, -0.0446784533560276, 0.0312797874212265, 0.04662734642624855, 0.0011579185957089067, -0.025944683700799942, -0.030305340886116028, -0.010262157768011093, -0.004452010150998831, -0.025311293080449104, -0.05544610321521759, 0.01842925138771534, -0.020646121352910995, -0.007868669927120209, -0.022631559520959854, -0.0548127144575119, -0.004799157381057739, -0.007405806798487902, -0.0042023081332445145, -0.026919132098555565, 0.022351406514644623, 0.020682664588093758, -0.028088470920920372, 0.013508289121091366, 0.012454666197299957, 0.024215038865804672, -0.01248511765152216, 0.00597458565607667, 0.04957505315542221, 0.04316805675625801, 0.0026386231184005737, -0.0030223121866583824, 0.02955014258623123, -0.014409652911126614, 0.0024741850793361664, 0.023861801251769066, 0.015493727289140224, -0.015798242762684822, -0.006705421954393387, -0.013508289121091366, 0.052327871322631836, 0.037735506892204285, -0.0011061510303989053, -0.0013193115592002869, 0.011145251803100109, 0.011187884025275707, 0.009391244500875473, -0.03018353320658207, -0.039611320942640305, 0.01565207540988922, -0.04504387080669403, -0.04153585433959961, 0.009202445857226849, 0.025554904714226723, 0.030402785167098045, -0.009372973814606667, 0.04053704813122749, -0.020268524065613747, 0.016127118840813637, 0.008867478929460049, 0.01816127821803093, 0.021596208214759827, 0.006327823270112276, -0.052425313740968704, -0.0009439967107027769, 0.009178084321320057, 0.017978569492697716, 0.047772325575351715, -0.0032430854625999928, -0.006081166211515665, -0.010438776575028896, -0.030159173533320427, 0.003568916581571102, 0.05305870622396469, 0.05369209870696068, 0.006741963792592287, -0.02794230356812477, -0.005892366636544466, -0.03644436225295067, -0.02326495200395584, 0.0216692928224802, -0.030427146703004837, -0.04399633780121803, -0.001066564000211656, -0.01182127557694912, -0.07600696384906769, 0.01577388122677803, -0.06275446712970734, 0.03639564290642738, 0.013849345967173576, 0.003431884804740548, -0.004601222928613424, 0.014677626080811024, -0.011973532848060131, 0.006547074299305677, 0.0320349857211113, 0.04324113950133324, -0.041706383228302, 0.00680895708501339, -0.031231066212058067, 0.032010626047849655, -0.00665060942992568, -0.007466709706932306, -0.008904020301997662, -0.02565234899520874, -0.06012345477938652, -0.033594101667404175, 0.025847239419817924, 0.0074545289389789104, -0.012003984302282333, -0.03846634551882744, 0.018867753446102142, -0.008520332165062428, -0.02794230356812477, 0.026553714647889137, -0.03585969656705856, 0.02231486514210701, 0.008258448913693428, -0.061926186084747314, -0.007143923547118902, 0.005009273067116737, 0.015956589952111244, -0.019537687301635742, 0.04046396166086197, -0.05768733471632004, -0.026017768308520317, 0.003931289538741112, 0.028380805626511574, 0.005128033924847841, -0.015591171570122242, -0.051499590277671814, 0.005070175975561142, 0.03313124179840088, -0.026285741478204727, -0.020901914685964584, 0.02162056975066662, 0.003712038742378354, 0.01183345541357994, 0.06319297105073929, 0.011772552505135536, 0.05466654524207115, 0.008191455155611038, 0.004735209513455629, 0.00995764322578907, -0.029160363599658012, -0.024665720760822296, -0.03437365964055061, 0.017186829820275307, 0.015213573351502419, -0.01814909838140011, -0.023216228932142258, -0.0039282445795834064, -0.00043507589725777507, -0.05934389680624008, 0.002755861496552825, -0.02029288373887539, -0.010219525545835495, -0.04599395766854286, -0.028892390429973602, 0.012655646540224552, -0.012838355265557766, 0.028088470920920372, 0.03020789474248886, -0.026431908831000328, -0.034933969378471375, -0.007752953562885523, 0.031060537323355675, 0.00867867935448885, 0.057248834520578384, -0.012375492602586746, -0.047114573419094086, -0.043728362768888474, -0.0031913178972899914, -0.019318435341119766, 0.004101817961782217, 0.028258997946977615, 0.060172177851200104, 0.015822602435946465, -0.01736954040825367, 0.011918719857931137, 0.037881676107645035, 0.05076875165104866, -0.03651744872331619, -0.011254876852035522, -9.397145186085254e-05, -0.015067405998706818, -0.018819032236933708, 0.06022090092301369, -0.00034638590295799077, -0.004634719341993332, 0.01155939232558012, 0.008154913783073425, 0.01495778001844883, -0.006997756194323301, 0.028405165299773216, -0.02979375422000885, 0.007917392067611217, -0.03878303989768028, 0.04311933368444443, -0.001868200022727251, -0.02376435697078705, 0.019878743216395378, -0.016322007402777672, -0.016675245016813278, -0.005889321677386761, -0.034787800163030624, 0.028161553665995598, -0.05875922739505768, 0.0033527109771966934, 0.024909332394599915, -0.03456855192780495, -0.0011959829134866595, -0.026163935661315918, -0.016127118840813637, -0.0414140485227108, 0.013057606294751167, 0.012570382095873356, 0.01896519958972931, -0.021291693672537804, -0.012546021491289139, 0.0020783154759556055, -0.01602967269718647, -0.02298479713499546, 0.016370730474591255, 0.008989284746348858, 0.026894770562648773, 0.04114607721567154, -0.030110450461506844, 0.0019732576329261065, -0.014653265476226807, 0.03142595663666725, -0.05145086720585823, 0.010798104107379913, 0.024897152557969093, 0.011449766345322132, 0.02645627036690712, 0.0008663453627377748, -0.04331422224640846, -0.01694321818649769, -0.006985575892031193, -0.044410478323698044, 0.003952605649828911, 0.013824984431266785, 0.021340416744351387, -0.04394761472940445, 0.020097995176911354, 0.010591033846139908, 0.02821027673780918, 0.02286299131810665, -0.06431358307600021, 0.039611320942640305, 0.019464602693915367, -0.007430167868733406, -0.013557011261582375, 0.052717648446559906, 0.025433098897337914, -0.020365968346595764, -0.04450792446732521, 0.007612877059727907, -0.009397335350513458, -0.03807656466960907, 0.012223235331475735, 0.015311017632484436, 0.04480025917291641, -0.03142595663666725, -0.01282617449760437, -0.02913600206375122, -0.0220468919724226, 0.04694404453039169, 0.011662927456200123, -0.043752726167440414, -0.019172269850969315, -0.020207621157169342, 0.012302408926188946, 0.008958833292126656, 0.00947650894522667, -0.026504991576075554, 0.009975913912057877, -0.0464811809360981, 0.00393737992271781, -0.027308911085128784, -0.005566535517573357, 0.01034742221236229, 6.704089901177213e-05, 0.015018683858215809, 0.002497023670002818, 0.024629179388284683, 0.01022561639547348, 0.05208425968885422, -0.010865097865462303, 0.015615533106029034, 0.02550618164241314, -0.054958879947662354, -0.010189074091613293, 0.03525066375732422, -0.002612739335745573, 0.034690357744693756, -0.04847880080342293, 0.008355893194675446, -0.016322007402777672, 0.01330121885985136, 0.017052844166755676, -0.018490156158804893, -0.012107519432902336, 0.006492261309176683, -0.015980951488018036, -0.008672589436173439, -0.025603627786040306, -0.0031182344537228346, -0.046432457864284515, 0.013447385281324387, 0.04039087891578674, 0.01792984828352928, -0.006547074299305677, 0.020682664588093758, -0.03276582062244415, -0.006467900238931179, -0.0173573587089777, 0.00962267629802227, -0.051645755767822266, 0.013654455542564392, 0.00988455954939127, 0.005405142437666655, -0.03101181425154209, -0.009598314762115479, 0.013751900754868984, 0.003934334963560104, -0.037223923951387405, 0.07600696384906769, 0.019830022007226944, 0.02177891880273819, -0.008715221658349037, 0.027723051607608795, 0.0011860862141475081, 0.026285741478204727, 0.027601245790719986, -0.03717520087957382, 0.011011265218257904, -0.05223042517900467, 0.029087278991937637, 0.022022530436515808, -0.014969960786402225, -0.03388643637299538, 0.025481821969151497, 0.025481821969151497, -0.019610770046710968, -0.06986793875694275, -0.003023834666237235, 0.05432548746466637, 0.011583753861486912, 0.003858206095173955, -0.008532512001693249, -0.0014373111771419644, -0.0017570520285516977, -0.016784870997071266, 0.019281893968582153, -0.010042906738817692, 0.0104265958070755, -0.025969045236706734, -0.012667827308177948, 0.015968769788742065, -0.024081051349639893, 0.030378423631191254, -0.032960712909698486, 0.01342302467674017, 0.011510670185089111, -0.0023752176202833652, 0.004732164088636637, 0.0068150474689900875, -0.009305980987846851, 0.003316169138997793, -0.016797050833702087, 0.012643465772271156, 0.06748054176568985, -0.024422109127044678, -0.029818115755915642, 0.040025461465120316, -0.003124324604868889, 0.011382773518562317, -0.016894496977329254, -0.052717648446559906, -0.012838355265557766, 0.013252495788037777, 0.019988369196653366, 0.028965473175048828, 0.014434014447033405, -0.03995237872004509, -0.014409652911126614, 0.016492536291480064, -0.01682141236960888, 0.014373111538589, -0.0006824944284744561, -0.018270904198288918, -0.030938731506466866, 0.01049358956515789, -0.008690860122442245, 0.010926000773906708, -0.025067681446671486, 0.0009508483344689012, -0.03812528774142265, -0.011736011132597923, 0.032936349511146545, 0.008398525416851044, 0.007411896716803312, 0.02940397523343563, -0.0077285924926400185, 0.0007167523726820946, -0.028794946148991585, -0.014312208630144596, 0.0033801172394305468, 0.01749134622514248, 0.026626797392964363, -0.0363469198346138, -0.021060261875391006, -0.010189074091613293, -0.004269301425665617, -0.012058797292411327, -0.061536405235528946, 0.011589843779802322, -0.013861525803804398, -0.03130415081977844, 0.011407135054469109, 0.008855298161506653, 0.042973168194293976, 0.018916476517915726, 0.007905211299657822, -0.011066078208386898, 0.008161003701388836, -0.007923481985926628, 0.012667827308177948, 0.02109680511057377, 0.01803947240114212, 0.010944271460175514, -0.00382470921613276, -0.007978294976055622, -0.0045555452816188335, -0.027040937915444374, 0.0002261024492327124, -0.012740910984575748, -0.014336569234728813, 0.022205239161849022, 0.004208398517221212, -0.014190402813255787, 0.030280979350209236, 0.013118509203195572, -0.0027010487392544746, 0.02499459683895111, 0.004954460076987743, -0.02017107792198658, -0.03456855192780495, 0.0060507142916321754, -0.005804057233035564, -0.017795860767364502, -0.03737008944153786, 0.011254876852035522, -0.017393900081515312, 0.022875173017382622, -0.03286326676607132, -0.027698691934347153, 0.018380530178546906, -0.015262295491993427, 0.009988094680011272, 0.012472937814891338, -0.020134536549448967, -0.018063833937048912, -0.030110450461506844, 0.01655343919992447, 0.00021354119235184044, 0.012454666197299957, 0.03685850277543068, -0.00038445027894340456, 0.032522208988666534, -0.012314589694142342, -0.03205934539437294, 0.0075032515451312065, 0.02767433039844036, 0.002675164956599474, 0.016212383285164833, 0.03210806846618652, -0.008337622508406639, 0.023009158670902252, 0.030280979350209236, -0.0023097468074411154, 0.03420313447713852, -0.004235804546624422, -0.01950114592909813, 0.009774933569133282, 0.011254876852035522, -0.0017418261850252748, 0.0070952014066278934, 0.0022351406514644623, -0.006729783024638891, -0.01736954040825367, 0.035348109900951385, -0.02592032216489315, -0.009805385023355484, 0.05198681354522705, -0.02324059046804905, -0.02125515230000019, -0.0003836889809463173, -0.0017524842405691743, 0.018124736845493317, -0.013995512388646603, 0.011242696084082127, 0.0440937839448452, -0.06952688097953796, 0.0018773354822769761, -0.02872186154127121, -0.017138108611106873, -0.008100100792944431, 0.03583533316850662, 0.011803003959357738, 0.03537246957421303, -0.03218115121126175, 0.03717520087957382, 0.0005663980264216661, 0.00860559567809105, -0.0016809231601655483, -0.024129774421453476, 0.02779613621532917, -0.005557400174438953, 0.028429526835680008, 0.05300998315215111, -0.0030816926155239344, -0.0029416156467050314, -0.00688204076141119, 0.005788831505924463, -0.04316805675625801, -0.001504304469563067, -0.016127118840813637, -0.05866178497672081, 0.014068596065044403, 0.005423413589596748, -0.004299752879887819, 0.02618829719722271, 0.028015386313199997, -0.015043044462800026, -0.04197435826063156, 0.014044235460460186, -0.047114573419094086, 0.061390239745378494, -0.02738199569284916, 0.028648778796195984, 0.04355783760547638, 0.03900229185819626, -0.00577969616279006, 0.026821687817573547, 0.005484316498041153, 0.012107519432902336, -0.03878303989768028, 0.05145086720585823, 0.032644014805555344, 0.0005416561616584659, 0.008167094551026821, -0.019744757562875748, 0.0008511196356266737, 0.05856433883309364, -0.01075547281652689, 0.014324389398097992, -0.009245078079402447, 0.0010422028135508299, 0.01643163338303566, 0.03929462656378746, 0.026967855170369148, -0.016066215932369232, -0.018660683184862137, 0.027333272621035576, 0.0397818498313427, 0.023447660729289055, 0.019135726615786552, -0.025969045236706734, 0.004564681090414524, -0.041072994470596313, -0.03566480427980423, 0.03315560147166252, 0.005734018981456757, -0.014872516505420208, 0.02045123279094696, 0.001936715911142528, -0.034690357744693756, 0.017332997173070908, 0.0036846324801445007, 0.00016757844423409551, -0.03330176696181297, 0.010907730087637901, 0.051255978643894196, 0.007137833163142204, -0.00551172299310565, 0.025360016152262688, 0.005947179161012173, -0.012174512259662151, -0.015712978318333626, -0.015481546521186829, -0.0008427454740740359, 0.030037367716431618, -0.03179137408733368, -0.002028070390224457, -0.011918719857931137, -0.01202225498855114, -0.02124297060072422, -0.0022275277879089117, -0.046822238713502884, -0.015091766603291035, -0.017844583839178085, 0.0030908279586583376, 0.0009668353595770895, 0.0679190456867218, -0.015445004217326641, 0.007893030531704426, -0.020085813477635384, -0.04328986257314682, -0.018672864884138107, 0.021730195730924606, 0.014202582649886608, 0.0023158371914178133, -0.005402097478508949, 0.005919773131608963, 0.012412033975124359, -0.006778505630791187, 0.008587324991822243, 0.011279238387942314, 0.010109900496900082, 0.02473880536854267, 0.019549867138266563, 0.0221930593252182, -0.014409652911126614, 0.05266892537474632, -0.06051323562860489, 0.02299697883427143, 0.011163522489368916, -0.01194917131215334, 0.0012964729685336351, 0.014324389398097992, 0.035201940685510635, 0.05300998315215111, -0.030622035264968872, -0.03858815133571625, -0.01897737942636013, 0.00822190660983324, 0.008672589436173439, 0.0021285603288561106, -0.0011480217799544334, -0.05534866079688072, -0.007442348171025515, -0.02794230356812477, -0.03434929996728897, -0.013861525803804398, -0.010219525545835495, 0.027991024777293205, 0.0002523668808862567, 0.02069484442472458, 0.04277827590703964, 0.03125542774796486, 0.030914369970560074, 0.04314369708299637, 0.03756497800350189, 0.005094537045806646, 0.020475594326853752, 0.043630920350551605, -0.002784790238365531, -0.004266256000846624, 0.02750380150973797, 0.0032034986652433872, 0.02006145380437374, 0.03422749415040016, 0.0014966916060075164, 0.03152339905500412, 0.013142870739102364, 0.004716938361525536, 0.04903910681605339, -0.03464163467288017, -0.03391079977154732, -0.005636574234813452, -0.04998919367790222, -0.0028045838698744774, 0.033594101667404175, 0.0106884790584445, 0.007789495401084423, -0.0497455820441246, -0.026772964745759964, -0.01315505150705576, -0.031182343140244484, 0.05715138837695122, 0.03300943225622177, 0.02046341262757778, -0.023204049095511436, -0.008934472687542439, 0.013118509203195572, -0.01629764586687088, 0.036273837089538574, -0.020853191614151, -0.008270629681646824, -0.009001465514302254, -0.015688616782426834, -0.009908920153975487, 0.04560417681932449, 0.011145251803100109, 0.010816375724971294, -0.0032126340083777905, 0.0070769302546978, -0.007661599200218916, 0.0430462509393692, 0.010938181541860104, 0.004762615542858839, 0.05398443341255188, 0.01510394737124443, 0.001915399800054729, -0.04299752786755562, -0.02258283831179142, -0.005919773131608963, -0.018112557008862495, -0.042705193161964417, 0.011340141296386719, 0.00332530471496284, -0.0106884790584445, -0.04236413538455963, 0.0003587568353395909, -0.0063460939563810825, 0.001852974179200828, -0.028015386313199997, 0.018283085897564888, -0.0006208301056176424, -0.019038282334804535, -0.010146441869437695, 0.0433385856449604, -0.0030405831057578325, -0.013106328435242176, -0.004878331441432238, 0.028380805626511574, 0.01383716519922018, -0.013557011261582375, 0.012113609351217747, 0.010871187783777714, -0.015603352338075638, -0.01604185439646244, 0.018124736845493317, 0.019842201843857765, 0.013508289121091366, 0.0001586333237355575, -0.006662789732217789, -0.027991024777293205, -0.02633446268737316, 0.005408187862485647, 0.006218197755515575, 0.048283908516168594, 0.0016519943019375205, 0.03205934539437294, 0.026699882000684738, -0.02976939268410206, 0.00621515279635787, -0.005414277780801058, 0.002591423224657774, -0.011230516247451305, 0.03510449826717377, 0.047772325575351715, -0.015993131324648857, 0.02791794203221798, 0.048698049038648605, -0.013447385281324387, 0.000324689201079309, -0.021876363083720207, -0.01683359406888485, -0.008465519174933434, 0.005596986971795559, 0.024373386055231094, 0.008374164812266827, 0.01221714448183775, -0.024288121610879898, -0.0220468919724226, 0.02136477828025818, -0.02113334648311138, 0.017259914427995682, 0.0221930593252182, -0.014446195214986801, -0.010122081264853477, 0.0012241506483405828, -0.007405806798487902, 0.021535305306315422, -0.0033709818962961435, -0.019951827824115753, -0.04957505315542221, -0.015213573351502419, 0.011382773518562317, 0.005944134201854467, -0.027893580496311188, -0.04365528002381325, 0.007235278375446796, -0.01129750907421112, 0.0022777726408094168, 0.023204049095511436, 0.010712840594351292, -0.0032704919576644897, -0.05383826419711113, -0.012996703386306763, 0.011997893452644348, 0.027966665104031563, 0.0010018545435741544, -0.04000110179185867, 0.019342796877026558, 0.03274146094918251, -0.033058155328035355, 0.011334051378071308, 0.0215231254696846, 0.0024680946953594685, 0.006199927069246769, -0.03819837048649788, -0.013581371866166592, -0.02459263801574707, 0.03807656466960907, 0.027065299451351166, -0.01766187511384487, 0.008252358064055443, -0.022290503606200218, -0.004129224456846714, -0.013483927585184574, -0.011595933698117733, -0.03342357277870178, -0.004180992022156715, 0.001054383465088904, -0.005962405353784561, 0.037345729768276215, 0.015152670443058014, 0.007960024289786816, 0.07215788960456848, -0.0019443287746980786, 0.016541259363293648, 0.01683359406888485, -0.01456800103187561, -0.03315560147166252, 0.003839935176074505, 0.02082883194088936, -0.005606122314929962, 0.01330121885985136, -0.033204324543476105, -0.0009203968220390379, 0.021742375567555428, -0.0076433285139501095, 0.019696034491062164, 0.009531321935355663, -0.02523820847272873, 0.03603022173047066, 0.0173573587089777, -0.021730195730924606, 0.008471609093248844, 0.0042875721119344234, -0.017442623153328896, -0.04104863107204437, -0.017065024003386497, -0.006906401831656694, -0.007204826455563307, 0.023459840565919876, 0.0038003481458872557, 0.0066749705001711845, -0.007320542354136705, 0.034154411405324936, -0.01364227570593357, 0.006863769609481096, 0.004327159374952316, -0.0008945130393840373, 0.01694321818649769, 0.017868945375084877, 0.004351520445197821, 0.00011790442658821121, -0.028405165299773216, -0.002967499429360032, -0.011863906867802143, -0.0016519943019375205, -0.006693241186439991, 0.0037242192775011063, 0.01442183367908001, 0.0033557561691850424, 0.009129362180829048, -0.03780859336256981, -0.008983194828033447, -0.03595713898539543, -0.010304789990186691, -0.017150288447737694, -0.005609167739748955, 0.017954207956790924, 0.00928770937025547, -0.024690082296729088, -0.013374301604926586, -0.013983332552015781, -0.009074549190700054, -0.01121833547949791, 0.0029233447276055813, -0.022010348737239838, -0.023411119356751442, -0.011729920282959938, 0.006419177632778883, 0.024215038865804672, -0.00934861321002245, 0.024154135957360268, -0.018636321648955345, 0.0216692928224802, 0.01449491735547781, 0.02112116478383541, -0.022887352854013443, 0.0008572099031880498, -0.005377736408263445, 0.024117594584822655, -0.04406942054629326, -0.030695119872689247, -0.011273148469626904, 0.007296181283891201, -0.012070977129042149, 0.03020789474248886, 0.0004388823581393808, 0.0031182344537228346, 0.027747413143515587, 0.009165903553366661, 0.02767433039844036, 0.019415881484746933, -0.024787526577711105, -0.016261104494333267, 0.0047504352405667305, 0.008075740188360214, 0.014446195214986801, -0.020999358966946602, -0.015262295491993427, -0.005353374872356653, -0.010986903682351112, -0.032278597354888916, 0.020475594326853752, -0.011059987358748913, 0.005615258123725653, -8.968920883489773e-05, -0.021425681188702583, -0.011260967701673508, 0.009397335350513458, -0.009439967572689056, -0.010475318878889084, -0.00908672995865345, -0.010249977000057697, -0.006340004038065672, 0.014166041277348995, 0.002358469180762768, -0.01672396808862686, 0.03461727499961853, 0.02818591520190239, -0.008033107966184616, -0.002752816304564476, -0.02285081148147583, 0.0329119898378849, 0.021973807364702225, 0.003048195969313383, -0.015554630197584629, -0.04660298675298691, 0.02082883194088936, 0.014482736587524414, 0.021023720502853394, 0.010505770333111286, -0.01041441597044468, 0.0481133833527565, 0.028819305822253227, -0.015871325507760048, 0.003958696033805609, -0.006364365108311176, 0.02606648951768875, 0.0034653814509510994, 0.03617639094591141, 0.02138913795351982, -0.017734957858920097, -0.0014083822024986148, -0.017954207956790924, -0.02376435697078705, 0.03532375022768974, 0.009171994403004646, 0.01395897101610899, -0.017600970342755318, 0.0141538605093956, 0.031060537323355675, 0.016005313023924828, -0.0007293135859072208, -0.01671178638935089, 0.01129750907421112, -0.015554630197584629, -0.02242448925971985, -0.005590896587818861, 0.005088446661829948, 0.011973532848060131, 0.02833208255469799, 0.023727813735604286, 0.04377708584070206, 0.016078395769000053, -0.030256617814302444, -0.035226304084062576, 0.02163275144994259, -0.030914369970560074, 0.014092957600951195, 0.018392710015177727, 0.029452698305249214, 0.00738144526258111, 0.004171856679022312, -0.02270464412868023, -0.017540067434310913, 0.012728730216622353, -8.769082342041656e-05, -0.0006942943437024951, -0.021376958116889, 0.010383963584899902, -0.019537687301635742, -0.01062148530036211, -0.006894221063703299, -0.010785924270749092, 0.009190265089273453, -0.0007011459674686193, -0.010816375724971294, -0.00038007288821972907, 0.0110234459862113, 0.02964758686721325, 0.02497023530304432, 0.0016641748370602727, 0.0020889732986688614, -0.00962876621633768, -8.217149297706783e-05, -0.008739582262933254, -0.0038917027413845062, 0.028624417260289192, -0.01115134172141552, -0.01148630864918232, -0.00487224105745554, 0.004643854685127735, -0.02043905109167099, 0.006705421954393387, -0.01330121885985136, -0.015481546521186829, 0.023679092526435852, -0.03527502715587616, -0.010932090692222118, 0.0008731969865038991, 0.00018366065341979265, 0.037077754735946655, 0.025725433602929115, -0.011528940871357918, 0.015932228416204453, 0.026772964745759964, -0.003791212569922209, 0.014239124953746796, -0.04092682525515556, 0.0045555452816188335, -0.004585997201502323, -0.019854383543133736, -0.047090210020542145, -0.010980813764035702, 0.017065024003386497, -0.002130083041265607, 0.011656836606562138, 0.0063460939563810825, -0.005414277780801058, -0.02309442311525345, 0.012223235331475735, -0.00795393344014883, 0.025603627786040306, -0.023313673213124275, -0.000923441955819726, 0.007338813040405512, 0.004016553983092308, 0.04226669296622276, -0.04165766388177872, 0.010944271460175514, -0.028794946148991585, -0.007003846578299999, -0.01991528645157814, -0.025481821969151497, -0.0005938044050708413, 0.0010330673540011048, 0.020816650241613388, -0.016918856650590897, 0.026699882000684738, 0.004427649080753326, -0.04299752786755562, 0.02149876393377781, 0.0023036564234644175, 0.027625607326626778, -0.0062669203616678715, 0.019939646124839783, 0.0035293297842144966, 0.0027360678650438786, 0.0006097914301790297, -0.027991024777293205, -0.0043149786069989204, 0.0016306781908497214, -0.007984384894371033, -0.025847239419817924, 0.027333272621035576, -0.03822273388504982, -0.0106884790584445, -0.014129498973488808, -0.03140159323811531, 0.0036633163690567017, 0.021949445828795433, -0.026261379942297935, 0.010268248617649078, -3.9658330933889374e-05, -0.00517675606533885, -0.04460536688566208, 0.016894496977329254, 0.020512135699391365, -0.023739995434880257, 0.011285328306257725, -0.009147632867097855, -0.0010528608690947294, 0.042534664273262024, 0.000521482084877789, -0.01912354677915573, -0.01736954040825367, 0.027065299451351166, -0.012923619709908962, 0.007856489159166813, 0.009805385023355484, 0.04740690812468529, -0.0044489651918411255, 0.026553714647889137, -0.013812803663313389, -0.016650883480906487, -0.00787475984543562, -0.010134262032806873, -0.006699331570416689, -0.002764996839687228, -0.01209533866494894, -0.01062148530036211, 0.002478752750903368, -0.008544692769646645, 0.002218392211943865, -0.019939646124839783, -0.024543914943933487, 0.043484751135110855, 0.02538437582552433, 0.030086088925600052, 0.023009158670902252, 0.030695119872689247, -0.02082883194088936, 0.007052569184452295, 0.01791766658425331, -0.009220716543495655, 0.03322868421673775, -0.029842477291822433, 0.00255640409886837, -0.002987292828038335, -0.03205934539437294, 0.012229325249791145, 0.01403205469250679, -0.004381971899420023, 0.009896740317344666, 0.0070342980325222015, -0.0027177969459444284, 0.07819946855306625, -0.002615784527733922, -0.016626523807644844, 0.02728455141186714, 0.0005321400822140276, -0.027893580496311188, 0.03729700669646263, -0.002999473363161087, 0.012850536033511162, -0.0037942577619105577, -0.014446195214986801, -0.004881376400589943, 0.007862579077482224, 0.031596485525369644, 0.0032187243923544884, 0.006772415246814489, 0.05729755759239197, 0.006333913654088974, 0.004622539039701223, 0.006997756194323301, -0.002023502718657255, 0.013678817078471184, 0.005274201277643442, 0.018733767792582512, -0.019440243020653725, -0.005100627429783344, -0.010396144352853298, -0.009251167997717857, -0.0014890787424519658, 0.0036480906419456005, -0.008404616266489029, -0.0518406443297863, 0.05335104092955589, 0.011930900625884533, 0.04406942054629326, 0.015018683858215809, -0.010859007947146893, -0.012040525674819946, -0.013094148598611355, -0.028112832456827164, 0.013532649725675583, 0.030256617814302444, 0.0037485805805772543, 0.016358550637960434, -0.011212244629859924, -0.006748054176568985, -0.02098717913031578, -0.0015895686810836196, 0.034665994346141815, -0.023715633898973465, 0.03162084519863129, -0.020816650241613388, 0.0006607976974919438, 0.0062608299776911736, -0.025311293080449104, -0.006321732886135578, 0.003931289538741112, -0.03822273388504982, 0.02231486514210701, 0.008246268145740032, -0.0070769302546978, 0.02486061118543148, -0.02125515230000019, 0.00624255882576108, -0.007107381708920002] \ No newline at end of file diff --git a/cache/text-embedding-3-small70facfcb-5acf-5ca1-8fa3-7dd127a2cbac b/cache/text-embedding-3-small70facfcb-5acf-5ca1-8fa3-7dd127a2cbac new file mode 100644 index 0000000000000000000000000000000000000000..de9fa0b6a3376e693ac1cb42242f74550f9220c7 --- /dev/null +++ b/cache/text-embedding-3-small70facfcb-5acf-5ca1-8fa3-7dd127a2cbac @@ -0,0 +1 @@ +[0.02323182113468647, 0.018958231434226036, 0.055703118443489075, -0.004263604991137981, 0.022006992250680923, 0.0392744243144989, -0.021927110850811005, 0.10011649876832962, -0.007948079146444798, -0.0010850392282009125, -0.015856217592954636, -0.06965552270412445, -0.0355466827750206, -8.211641397792846e-05, 0.034082215279340744, 0.015390249900519848, 0.02116825059056282, -0.03807622194290161, 0.012980530969798565, -0.03583957627415657, 0.03642536699771881, 0.03810285031795502, 0.02686637081205845, -0.015137295238673687, 0.008274256251752377, 0.008074555546045303, -0.05378599464893341, -0.030088204890489578, 0.013965719379484653, -0.003957397770136595, 0.08989183604717255, -0.033176906406879425, 0.028224332258105278, 0.029955070465803146, 0.019623899832367897, -0.010630721226334572, -0.03815610334277153, 0.02311200089752674, 0.019663840532302856, -0.0035912801977247, 0.018944917246699333, 0.03083375282585621, 0.014285240322351456, -0.019956734031438828, 0.03442836180329323, 0.031765688210725784, 0.014298553578555584, -0.057726748287677765, -0.0009693793836049736, 0.03940755873918533, -0.050697293132543564, -0.0147778345271945, -0.02926277555525303, -0.022832419723272324, -0.008846730925142765, 0.009685472585260868, -0.016641706228256226, -0.007988018915057182, -0.00014582295261789113, 0.0653419941663742, 0.013359961099922657, 0.0021234815940260887, -0.003964054398238659, 0.027505410835146904, -0.02918289601802826, 0.001532701076939702, -0.03562656417489052, 0.0731702521443367, 0.019583959132432938, 0.033922452479600906, 0.017933102324604988, 0.00281078414991498, 0.017081046476960182, 0.019357632845640182, 0.014298553578555584, -0.0066666672937572, -0.04989849030971527, -0.040366120636463165, 0.015177235938608646, 0.013366618193686008, 0.025042438879609108, -0.025827927514910698, -0.031179899349808693, 0.006683309096843004, -0.011103346012532711, -0.020728908479213715, -0.00410384451970458, 0.04494591802358627, -0.03972708061337471, -0.002952238544821739, 0.00539524108171463, -0.008840073831379414, -0.029529042541980743, 0.0028424032498151064, 0.011402896605432034, 0.032884009182453156, -0.02963555045425892, 0.022339826449751854, 0.023498088121414185, 0.03381594642996788, 0.0677916556596756, 0.004300216678529978, 0.03964719921350479, -0.014018973335623741, 0.018385756760835648, -0.040073227137327194, 0.04766184464097023, 0.0009227825794368982, 0.01657513901591301, 0.03828923776745796, -0.04025961458683014, -0.016362125054001808, 0.026546848937869072, 0.04159095138311386, 0.018305877223610878, -0.022166751325130463, -0.009678816422820091, 0.003461474785581231, 0.020369447767734528, 0.007934764958918095, -0.02393743023276329, -0.014178733341395855, 0.014311866834759712, -0.002840739209204912, -0.02542852610349655, 0.021181562915444374, -0.0026726580690592527, 0.027585292235016823, -0.007701781578361988, -0.06518223136663437, 0.03530704230070114, 0.0208753552287817, -0.031392913311719894, 0.012647696770727634, -0.019770346581935883, -0.0035180565901100636, -0.028676986694335938, 0.037144288420677185, -0.01773340255022049, -0.04651689529418945, 0.02496255934238434, -0.03203195706009865, 0.00965218897908926, 0.019117992371320724, -0.026387088000774384, -0.02352471463382244, -0.03663837909698486, 0.02327176183462143, -0.009359295479953289, 0.0010625729337334633, -0.027585292235016823, -0.008260942995548248, -0.03352305293083191, 0.03975370526313782, 0.011709104292094707, -0.02030288055539131, -0.020023301243782043, 0.014005660079419613, 0.00640705693513155, -0.002923947758972645, 0.009905143640935421, 0.013293394818902016, -0.026653356850147247, 0.002472957596182823, 0.02926277555525303, 0.010877018794417381, -0.03256449103355408, -0.04518555849790573, -0.06917624175548553, -0.005874522030353546, -0.04151106998324394, 0.0011075055226683617, -0.05857880413532257, -0.0013496422907337546, -0.01732068695127964, -0.029422536492347717, -0.04899318143725395, -0.04316192865371704, -0.011795640923082829, -0.015350309200584888, 0.011682477779686451, 0.03083375282585621, -0.03940755873918533, -0.03477450832724571, -0.004819437861442566, -0.011735730804502964, -0.006736562587320805, -0.009472458623349667, 0.0396738275885582, 0.03847562521696091, -0.0064569818787276745, 0.005135630257427692, 0.05554335564374924, 0.04084540158510208, -0.005408554337918758, 0.015310369431972504, -0.0009427526383660734, 0.03291063755750656, -0.002168414182960987, 0.010530871339142323, -0.005591613240540028, -0.05724746733903885, 0.03773007541894913, -0.011496090330183506, -0.034668002277612686, 0.01975703239440918, 0.03972708061337471, 0.02719920314848423, 0.00835413672029972, -0.005638210102915764, -0.004726244602352381, -0.012614413164556026, 0.005218838807195425, 0.035733070224523544, -0.009392579086124897, -0.03634548559784889, -0.020782161504030228, -0.021354636177420616, 0.03650524467229843, 0.036478620022535324, 0.02352471463382244, -0.0027658515609800816, 0.02835746668279171, 0.0021600935142487288, -0.023551343008875847, 0.06438343226909637, 0.03245798125863075, 0.0022632719483226538, -0.026679983362555504, -0.03493426740169525, 0.06188051775097847, -0.06097520887851715, -0.016521885991096497, -0.013872525654733181, 0.011649194173514843, 0.03344317153096199, 0.012880680151283741, 0.020649028941988945, 0.007608587853610516, -0.06251955777406693, -0.04992511868476868, 0.0297686830163002, -0.012980530969798565, -0.02303212136030197, -0.07072059065103531, 0.0004484939854592085, -0.012261608615517616, 0.01481777522712946, -0.012854053638875484, 0.036611754447221756, -0.005521717946976423, -0.015550009906291962, -0.0318455696105957, -0.01081045251339674, 0.006586787290871143, -0.01033117063343525, 0.07423532009124756, 0.015310369431972504, -0.0001980363012989983, -0.015297056175768375, -0.010803795419633389, 0.011342986486852169, -0.0050624068826437, -0.060123153030872345, -0.01562988944351673, -0.0005724746733903885, -0.03477450832724571, 0.019038110971450806, -0.015270429663360119, 0.014804461970925331, -0.02071559615433216, -0.0004048094851896167, -0.011203196831047535, -0.039088036864995956, -0.0006149110267870128, 0.0326709970831871, 0.03014145791530609, -0.02020968683063984, -0.01873190328478813, 0.022299885749816895, -0.03341654688119888, -0.05067066475749016, 0.05895157903432846, -0.029209522530436516, 0.030034950003027916, -0.023591281846165657, -0.009685472585260868, -0.014378434047102928, -0.02731902338564396, -4.620673644240014e-05, -0.019171245396137238, -0.0208753552287817, -0.07002829760313034, -0.059377606958150864, 0.011642537079751492, -0.022925613448023796, -0.010903645306825638, -0.06054918095469475, 0.0015127310762181878, 0.04047263041138649, 0.044706277549266815, 0.05692794919013977, -0.02132800966501236, -0.005095690488815308, -0.011615910567343235, 0.0022249959874898195, -0.008973207324743271, -0.001012647757306695, 0.04041937366127968, -0.008014645427465439, -0.00439341040328145, 0.011442837305366993, 0.0520818829536438, -0.007069396786391735, -0.020223001018166542, -0.023737728595733643, -0.0006132468697614968, -0.007355634123086929, -0.02421700954437256, -0.031685806810855865, -0.034454986453056335, -0.03450823947787285, -0.008979864418506622, -0.009419205598533154, 0.031100019812583923, -0.07045432925224304, -0.04137793555855751, 0.00019252373022027314, -0.011735730804502964, -0.04550508037209511, 0.02782493270933628, -0.06065569072961807, -0.015856217592954636, -0.04973873123526573, -0.06262606382369995, -0.015936097130179405, 0.031100019812583923, -0.022020304575562477, 0.00695623317733407, -0.0144716277718544, 0.00645032525062561, -0.018585456535220146, -0.015723083168268204, 0.01091695949435234, 0.001300549367442727, -0.006876352708786726, -0.004939258098602295, 0.03386919945478439, 0.05596938356757164, 0.06358463317155838, -0.015683144330978394, 0.009811949916183949, 0.06060243770480156, 0.032138463109731674, 0.01855883002281189, -0.026799803599715233, 0.03943418711423874, -0.014271927066147327, -0.029236149042844772, -0.003341654548421502, 0.011482777073979378, -0.011030122637748718, -0.035200536251068115, 0.016668332740664482, -0.026773177087306976, -0.01740056835114956, -0.009419205598533154, -0.03394908085465431, 0.009712099097669125, -0.007415544241666794, 0.0019820271991193295, -0.00228324206545949, -0.007841572165489197, -0.0033566320780664682, -0.015736397355794907, 0.010304544121026993, 0.04939258471131325, 0.01901148445904255, 0.04292228817939758, 0.011149942874908447, 0.013792646117508411, 0.012487935833632946, -0.012880680151283741, -0.017933102324604988, -0.005588284693658352, 0.061774011701345444, -0.022539526224136353, -0.05088368058204651, -0.05927110090851784, 0.012621069326996803, 0.012088535353541374, -0.00662339897826314, 0.058632057160139084, -0.011868864297866821, 0.028863374143838882, -0.002957231132313609, 0.03331003710627556, 0.052481282502412796, 0.04337494075298309, -0.0016117491759359837, 0.013406557962298393, 0.00016059246263466775, -0.000515892868861556, -0.028250960633158684, 0.01357963215559721, 0.00710933655500412, -0.02364453487098217, 0.0008017141954042017, -0.050164759159088135, -0.013053754344582558, 0.018532203510403633, -0.04412049055099487, 0.017214180901646614, 0.02769179828464985, -0.026879683136940002, 0.01357963215559721, -0.013326678425073624, 0.024629725143313408, -0.040738895535469055, 0.034907642751932144, 0.00903311837464571, -0.04270927235484123, -0.0029056419152766466, -0.011076719500124454, 0.012241639196872711, 0.04236312583088875, 0.011582626961171627, 0.02016974799335003, -0.012987187132239342, -0.04641038924455643, 0.006427026819437742, 0.02136795036494732, 0.012294892221689224, -0.01269429363310337, -0.021381264552474022, 0.031685806810855865, 0.037437181919813156, 0.011815611273050308, 0.011682477779686451, -0.06486271321773529, -0.051522720605134964, -0.0019770346116274595, -0.012973873876035213, -0.03855550289154053, -0.014484941028058529, -0.005049093626439571, -0.008753537200391293, 0.04686304181814194, -0.005598269868642092, 0.00438342522829771, -0.05312032625079155, 0.0015584958018735051, -0.013859212398529053, -0.015430189669132233, 0.022499585524201393, -0.013060410507023335, 0.019916793331503868, 0.0038941591046750546, 0.01244133897125721, 0.010610751807689667, 0.058632057160139084, 0.0059277755208313465, -0.028969882056117058, 0.0045997672714293, 0.02223331853747368, -0.0034015646670013666, 0.008267599157989025, -0.004553170874714851, 0.0017556999810039997, 0.00555832963436842, 0.022725913673639297, 0.012554503045976162, -0.015882844105362892, 0.027398904785513878, -0.04318855330348015, -0.019650526344776154, -0.0025328677147626877, -0.03741055354475975, -0.0026443670503795147, 0.025415213778614998, 0.0020752206910401583, -0.0091995345428586, -0.044040609151124954, 0.04113829508423805, -0.04481278732419014, 0.023577969521284103, 0.031925447285175323, -0.037224166095256805, -0.012514562346041203, 0.022512899711728096, 0.03956732153892517, -0.006174073088914156, 0.03868863731622696, -0.015270429663360119, -0.03424197435379028, -0.059377606958150864, -0.02195373922586441, 0.018572144210338593, 0.005817940458655357, -0.013087037019431591, 0.08749543130397797, -0.014005660079419613, -0.03517390787601471, 0.004143784753978252, 0.011063406243920326, 0.02380429580807686, -0.008600433357059956, -0.017520388588309288, -0.025441840291023254, 0.04691629856824875, -0.021674158051609993, 0.010324514470994473, -0.008374106138944626, 0.006563488859683275, 0.008280912414193153, 0.040206361562013626, -0.011582626961171627, 0.03136628866195679, 0.0463038831949234, -0.01545681618154049, -0.00041645870078355074, -0.001655017607845366, -0.03650524467229843, 0.041564323008060455, -0.04728906974196434, 0.024323517456650734, -0.026733236387372017, -0.03618572652339935, -0.05317357927560806, -0.04393410310149193, 0.0471293106675148, -0.014405060559511185, -0.006310534663498402, 0.037064407020807266, -0.004653020761907101, -0.022765854373574257, -0.014405060559511185, 0.020329507067799568, 0.0005633217515423894, 0.018838411197066307, 0.011283076368272305, -0.004529872443526983, -0.041111670434474945, -0.00540522625669837, -0.032963890582323074, -0.013320021331310272, -0.0056548514403402805, 0.020436014980077744, -0.013519722037017345, 0.009093028493225574, 0.01997004635632038, -0.026679983362555504, 0.01997004635632038, -0.011895491741597652, 0.02364453487098217, -0.041111670434474945, -0.007535364478826523, 0.01889166422188282, -0.0061840577982366085, -0.016055917367339134, 0.003950741142034531, -0.05439840629696846, 0.0016907972749322653, -0.022539526224136353, -0.04406723752617836, 0.022472959011793137, 0.021314697340130806, -0.026520222425460815, -0.008573806844651699, 0.006922949571162462, 0.0006248960271477699, 0.022499585524201393, -0.02248627319931984, -0.07940090447664261, 0.040898654609918594, 0.0016383759211748838, -0.00843401625752449, 0.015137295238673687, 0.046357136219739914, 0.024563157930970192, 0.011742387898266315, 0.009951740503311157, -0.009951740503311157, -0.0002731319982558489, -0.027958065271377563, -0.03125977888703346, 0.0017823267262429, 0.05522383749485016, -0.004579797387123108, -0.012854053638875484, -0.017626894637942314, -0.01624230481684208, -0.01598935015499592, 0.028783494606614113, -0.040818776935338974, -0.012661010026931763, -0.011216510087251663, 0.004573140759021044, 0.0144716277718544, 0.0020852056331932545, 0.040579136461019516, -0.03187219426035881, -0.011010152287781239, 0.010657348670065403, -0.03874189034104347, 0.014112166129052639, -0.01101680938154459, 0.0023231820669025183, 0.007954735308885574, 0.0056548514403402805, 0.019623899832367897, 0.019583959132432938, 0.0060808793641626835, 0.006446996703743935, -0.015310369431972504, 0.03285738453269005, -0.020555835217237473, 0.035573311150074005, 0.027798306196928024, 0.013153604231774807, 0.012041938491165638, -0.012487935833632946, 0.01732068695127964, 0.016015978530049324, 0.004310201853513718, 0.03607921674847603, 0.01103677973151207, -0.021647531539201736, 0.0051589286886155605, -0.015177235938608646, -0.008946580812335014, -0.011815611273050308, 0.003587951883673668, 0.01649525947868824, -0.025361958891153336, 0.02827758714556694, 0.03509403020143509, -0.01492428220808506, -0.018865037709474564, 0.011516060680150986, 0.0037876523565500975, -0.01724080741405487, 0.004772841464728117, 0.001014311914332211, -0.021567650139331818, -0.004147113300859928, -0.011815611273050308, -0.012860710732638836, -0.0033067069016397, 0.024283576756715775, 0.0046463641338050365, 0.0171609278768301, 0.012594442814588547, 0.02608088217675686, 0.04457314312458038, -0.005042436998337507, 0.06054918095469475, 0.01989016681909561, 0.03650524467229843, 0.049499090760946274, -0.013599601574242115, 0.04997837170958519, 0.009512399323284626, -0.015656515955924988, 0.011962058022618294, 0.031153272837400436, -0.007655184715986252, 0.007249127142131329, 0.0047994679771363735, 0.006463638506829739, -0.02939590997993946, 0.00646031042560935, 0.020941922441124916, 0.005864537321031094, -0.027558665722608566, -0.0260409414768219, 0.0011982028372585773, -0.011183226481080055, -0.028250960633158684, -0.01665501855313778, 0.023418208584189415, -0.01806623674929142, -0.020436014980077744, 0.014231987297534943, 0.01492428220808506, -0.018492262810468674, 0.02030288055539131, -0.010064903646707535, 0.005701448302716017, -0.02170078456401825, 0.024043936282396317, 0.017999669536948204, 0.01744050718843937, 0.00991845689713955, -0.008054585196077824, -0.0396738275885582, 0.005002496764063835, 0.07705775648355484, -0.05554335564374924, -0.0413513109087944, 0.01930437795817852, 0.014604761265218258, -0.02016974799335003, 0.00738891726359725, -0.030354471877217293, 0.022632719948887825, -0.023085374385118484, 0.022299885749816895, 0.011788984760642052, -0.007781661581248045, -0.0022150110453367233, 0.02690630964934826, 0.027145950123667717, -0.020076554268598557, 0.009818606078624725, 0.03690464794635773, 0.01492428220808506, -0.03836911544203758, 0.03786320984363556, -0.017387254163622856, -0.001414544996805489, -0.026014314964413643, -0.02112830989062786, -0.005235480610281229, 0.0051755704917013645, 0.016841406002640724, -0.026972876861691475, 0.0237643551081419, 0.028091199696063995, -0.006606757175177336, 0.026546848937869072, 0.013845899142324924, 0.0017540358239784837, -0.008527209982275963, 0.02806457318365574, -0.02525545284152031, -0.018452323973178864, -0.03338991850614548, -0.023085374385118484, -0.0020951908081769943, 0.059590619057416916, -0.04601098969578743, 0.0018505577463656664, -0.020742222666740417, 0.00039669667603448033, 0.016894659027457237, 0.003303378587588668, 0.05602264031767845, 0.017041107639670372, 0.017826594412326813, -0.016255619004368782, 0.010783825069665909, 0.0004959228099323809, 0.06486271321773529, -0.0032551176846027374, 0.007096023298799992, -0.040525883436203, 0.010317857377231121, -0.00800133217126131, -0.016761526465415955, 0.03285738453269005, -0.0067299059592187405, 0.005718090105801821, 0.012414712458848953, -0.042389754205942154, 0.02174072526395321, -0.018079549074172974, 0.01326676830649376, 0.0007809120579622686, -0.032138463109731674, -0.005445166025310755, 0.0014877684880048037, 0.04907306283712387, -0.024523217231035233, 0.009825263172388077, -0.029742056503891945, -0.028836747631430626, 0.013979032635688782, -0.011003496125340462, 0.0018771843751892447, 0.019850226119160652, -0.032804131507873535, -0.029289402067661285, -0.0293426550924778, -0.04374771565198898, 0.020808789879083633, 0.01254784595221281, -0.030780499801039696, 0.0235646553337574, -0.012288235127925873, 0.02790481224656105, 0.0233516413718462, -0.009372608736157417, 0.016268931329250336, 0.02170078456401825, 0.04428024962544441, 0.007295724004507065, -0.07940090447664261, 0.035573311150074005, 0.0074022309854626656, 0.01314694806933403, 0.03773007541894913, 0.015203862451016903, 0.02224663272500038, 0.015696456655859947, 0.015683144330978394, 0.008986521512269974, 0.0010908638359978795, -0.004539857152849436, -0.008673656731843948, -0.03381594642996788, 0.02670660987496376, -0.015496756881475449, -0.006759861018508673, 0.012241639196872711, -0.01661507971584797, 0.04033949598670006, -0.005994342267513275, 0.005821268539875746, -0.030114831402897835, 0.041404563933610916, -0.03424197435379028, 0.017799967899918556, -0.00876685045659542, -0.00824762973934412, 0.013120320625603199, -0.018465636298060417, 0.059963393956422806, 0.030807126313447952, -0.030887005850672722, -0.029289402067661285, 0.009632219560444355, 0.030247963964939117, 0.036318857222795486, -0.009399235248565674, 0.012880680151283741, -0.006370444782078266, -0.05341321974992752, 0.008686969988048077, 0.05591613054275513, 0.01881178468465805, 0.015084042213857174, 0.023165253922343254, 0.0032418041955679655, 0.04172408580780029, 0.041324682533741, 0.0013097022892907262, 0.003671160200610757, 0.007681811228394508, 0.005468464456498623, 0.01582959108054638, -0.010670661926269531, -0.006087535992264748, 0.022832419723272324, -0.0330703966319561, 0.02301880717277527, -0.005245465785264969, 0.0036312201991677284, -0.004925944842398167, 0.055330343544483185, -0.05751373618841171, 0.000502579496242106, 0.018172742798924446, -0.04207023233175278, -0.0054318527691066265, -0.010843735188245773, 0.015896158292889595, 0.017427194863557816, -0.009399235248565674, -0.01380595937371254, 0.023964056745171547, 0.04798136651515961, 0.0013013813877478242, -0.028676986694335938, 0.02091529592871666, 0.0032401401549577713, 0.021234815940260887, 0.0006286404095590115, 0.016561824828386307, 0.008793476969003677, 0.012780830264091492, 0.016175737604498863, 0.04356132820248604, -0.017014479264616966, 0.01665501855313778, 0.004912631586194038, -0.01144949346780777, 0.01806623674929142, -0.04332168772816658, 0.01266766618937254, 0.04390747845172882, 0.00822765938937664, -0.025495093315839767, -0.03360293060541153, 0.010051590390503407, 0.03275087848305702, -0.0297686830163002, 0.04707605764269829, -0.027212517336010933, 0.007428857497870922, 0.02182060480117798, -0.037969715893268585, -0.011868864297866821, 0.009632219560444355, -0.002687635598704219, 0.0031402898021042347, -0.01698785275220871, -0.0031236482318490744, 0.0010916958563029766, 0.039540693163871765, 0.032724250108003616, 0.04316192865371704, 0.01869196444749832, -0.006323848385363817, -0.024696292355656624, -0.007262440398335457, 0.012428025715053082, -0.022140124812722206, 0.009499086067080498, -0.024869365617632866, -0.013087037019431591, 0.016362125054001808, -0.007781661581248045, -0.02228657156229019, 0.007661841344088316, 0.0023464804980903864, -0.04100516438484192, 0.02423032373189926, 0.061774011701345444, 0.011289733462035656, 0.002674322109669447, -0.008733566850423813, 0.005228823982179165, -0.007096023298799992, -0.015243802219629288, 0.02116825059056282, 0.04944583773612976, 0.013080380856990814, -0.0034182064700871706, 0.013626229017972946, 0.013925779610872269, 0.028783494606614113, -0.024070562794804573, -0.01749376207590103, -0.005228823982179165, -0.010018306784331799, -0.0044067236594855785, 0.01951739192008972, 0.03357630595564842, -0.016854720190167427, 0.03256449103355408, -0.041484445333480835, 0.0008820103830657899, -0.02038276195526123, 0.0024596441071480513, 0.028410719707608223, 0.006922949571162462, 0.026240641251206398, 0.03341654688119888, -0.03477450832724571, -0.007934764958918095, -0.02857048064470291, 0.005002496764063835, -0.0006336329388432205, -0.002191712614148855, 0.016015978530049324, -0.03855550289154053, -0.002472957596182823, -0.008567149750888348, 0.012940590269863605, 0.015483442693948746, -0.003344982862472534, 0.03418872132897377, 0.032591115683317184, -0.02533533237874508, 0.02050258219242096, -0.019117992371320724, 0.0169479139149189, 0.014910968020558357, -0.007934764958918095, 0.050244636833667755, 0.014578134752810001, -0.015696456655859947, 0.004506574012339115, 0.03125977888703346, 0.008860044181346893, -0.018252622336149216, 0.02352471463382244, 0.0146713275462389, -0.03195207566022873, -0.001407056231983006, -0.011236479505896568, -0.0038642040453851223, 0.04760859161615372, -0.004869363270699978, -0.028756868094205856, 0.011103346012532711, -0.04558496177196503, -0.021008489653468132, -0.0017224166076630354, 0.020768849179148674, 0.0024796142242848873, -0.026267267763614655, 0.0016117491759359837, -0.03450823947787285, -0.022845733910799026, 0.01132967323064804, -0.01897154375910759, -0.009246131405234337, -0.019983360543847084, 0.0059610591270029545, 0.025242138653993607, -0.029901817440986633, 0.00695623317733407, -0.02629389613866806, -0.015470129437744617, 0.03533367067575455, 0.014298553578555584, -0.022379765287041664, -0.0053286743350327015, 0.04249626025557518, -0.03291063755750656, 0.019117992371320724, 0.0239773690700531, -0.01223498210310936, 0.027558665722608566, -0.006769845727831125, 0.023245135322213173, 0.0229389276355505, 0.0015992679400369525, 0.00255783018656075, -0.001160759013146162, -0.006243967916816473, 0.001551007037051022, 0.044413384050130844, -0.0016466968227177858, 0.003185222391039133, 0.02753203734755516, 0.0018089534714818, 0.007355634123086929, -0.0075686476193368435, 0.021274756640195847, -0.029529042541980743, -0.04473290592432022, -0.028224332258105278, -0.03498752415180206, 0.0029938428197056055, 0.019251124933362007, 0.023418208584189415, -0.01818605698645115, -0.01967715285718441, -0.010963555425405502, 0.02099517546594143, 0.0009069729712791741, -0.023591281846165657, 0.04145781695842743, 0.012294892221689224, 0.0330703966319561, -0.0037743388675153255, 0.013752705417573452, 0.014618074521422386, -0.019863540306687355, 0.02297886833548546, 0.023591281846165657, 0.005408554337918758, 0.002695956267416477, 0.003353303764015436, 0.015310369431972504, 0.0054152109660208225, -0.002910634269937873, 0.007348977494984865, 0.017786655575037003, 0.004137128125876188, 0.00989848654717207, -0.022512899711728096, -0.023458149284124374, 0.0202629417181015, 0.0024430023040622473, 0.02020968683063984, -0.014192046597599983, 0.034668002277612686, -0.006803129334002733, -0.022552840411663055, -0.04326843470335007, -0.01934431865811348, -0.028996508568525314, -0.00965218897908926, 0.05138958618044853, 0.038262609392404556, 0.004117158241569996, 0.014391747303307056, -0.018279248848557472, 0.003047096310183406, -0.0034182064700871706, -0.006583458743989468, 0.0013305044267326593, 0.021261442452669144, 0.011942087672650814, 0.006942919455468655, -0.018918290734291077, 0.0031619241926819086, -0.0003686137788463384, -0.018345816060900688, -0.0038009656127542257, -0.0177733413875103, 0.0069362628273665905, -0.04004660248756409, 0.0142586138099432, -0.02150108478963375, -0.002050258219242096, -0.03458812087774277, -0.007828257977962494, -0.030434351414442062, 0.009745382703840733, -0.007322350516915321, 0.0004896821919828653, -0.015017475001513958, -0.0027625232469290495, 0.0059610591270029545, -0.009658846072852612, -0.013925779610872269, -0.0355466827750206, 0.04534532129764557, 0.024190383031964302, -0.022459646686911583, -0.0012298220535740256, 0.00998502317816019, 0.0038841741625219584, 0.02331170067191124, -0.007555334363132715, -0.009472458623349667, 0.03216508775949478, 0.02699950337409973, 0.016481945291161537, -0.020702281966805458, -0.009605593048036098, -0.026972876861691475, -0.03903478384017944, -0.017214180901646614, -0.037064407020807266, 0.015044102445244789, 0.031179899349808693, 0.014205359853804111, 0.009399235248565674, 0.009385921992361546, -0.007635214831680059, 0.018239310011267662, 0.07428857684135437, -0.020156433805823326, -0.028384093195199966, 0.027958065271377563, -0.030354471877217293, -0.002050258219242096, -0.012807456776499748, 0.00462972279638052, 0.006390415132045746, 0.002567815128713846, -0.016921287402510643, 0.00820768903940916, -0.010757198557257652, 0.004536529071629047, -0.000697703508194536, 0.008533867076039314, -0.010484274476766586, 0.0007717591361142695, 0.010038277134299278, -0.045744720846414566, -0.013779332861304283, 0.03943418711423874, -0.017839908599853516, 0.010990182869136333, 0.021474456414580345, 0.01310700736939907, 0.006230654660612345, 0.030327845364809036, -0.01091695949435234, 0.016561824828386307, -0.032058581709861755, 0.012647696770727634, -0.031392913311719894, 0.024576470255851746, -0.007135963533073664, -0.0260409414768219, -0.015976037830114365, 0.012641039676964283, 0.014271927066147327, -0.0035646534524858, -0.05969712883234024, 0.013952406123280525, 0.0054484945721924305, -0.024895992130041122, -0.015363622456789017, 0.0006635879981331527, -0.018745217472314835, 0.01248127967119217, -0.02393743023276329, -0.028969882056117058, -0.05035114660859108, -0.029156269505620003, -0.0143651207908988, 0.02150108478963375, -0.005242137238383293, 0.001551007037051022, -0.00179064751137048, -0.017187554389238358, 0.008420703001320362, 0.038715265691280365, 0.05051090568304062, 0.0169479139149189, -0.014897654764354229, 0.003667831886559725, 0.03448161482810974, -0.008394076488912106, 0.02385754883289337, 0.03559993579983711, -0.006626727059483528, -0.011256449855864048, -0.002567815128713846, -0.03344317153096199, 0.004077218007296324, 0.0002733400324359536, -0.021980365738272667, -0.024456650018692017, 0.03874189034104347, 0.022965554147958755, -0.020143121480941772, 0.010630721226334572, -0.016362125054001808, 0.0012131803669035435, 0.03940755873918533, 0.00022986356634646654, -0.008420703001320362, -0.018825097009539604, -0.025934433564543724, -0.0006931270472705364, -0.014285240322351456, 0.010617407970130444, -0.051735736429691315, -0.005937760695815086, 0.03509403020143509, 0.026267267763614655, 0.0022033618297427893, -0.024363458156585693, -0.030274590477347374, 0.013346647843718529, -0.014418373815715313, -0.014644701033830643, -0.020409388467669487, -0.0027375605423003435, -0.01893160492181778, 0.002041937317699194, -0.018532203510403633, 0.0070560830645263195, -0.047315698117017746, -0.006483608391135931, 0.026892997324466705, -0.02099517546594143, -0.02265934646129608, -0.025148946791887283, 0.03421534597873688, -0.041857220232486725, 0.008913297206163406, 0.07764354348182678, 0.029821936041116714, -0.010624065063893795, 0.009598935954272747, -0.0005404393887147307, -0.024616410955786705, 0.02694625034928322, 0.025162259116768837, -0.04864703491330147, -0.031179899349808693, 0.0020951908081769943, 0.023671163246035576, 0.017560327425599098, -0.012328175827860832, -8.15963649074547e-05, 0.02902313508093357, 0.04129805788397789, -0.015589949674904346, 0.027958065271377563, -0.002175071043893695, 0.023125315085053444, 0.013726078905165195, -0.0009768680902197957, 0.02678648941218853, 0.013632885180413723, -0.032351475208997726, 0.011143285781145096, 0.012740889564156532, -0.0019420870812609792, 0.03562656417489052, -0.020236315205693245, 0.001960393041372299, -0.0039041442796587944, 0.009585622698068619, 0.0052953907288610935, 0.004233649931848049, -0.005182227119803429, 0.028623733669519424, -0.025495093315839767, 0.0133333345875144, 0.011136629618704319, -0.007422200869768858, 0.03456149622797966, 0.005252122413367033, 0.030540859326720238, -0.010743885301053524, 0.023418208584189415, -0.02608088217675686, -0.04308204725384712, -0.014058913104236126, -0.00744217075407505, -0.020529208704829216, -0.01290065050125122, -0.014831088483333588, 0.012241639196872711, -0.01500416174530983, 0.005967715755105019, -0.02248627319931984, 0.014524880796670914, -0.029209522530436516, 0.019823599606752396, -0.004506574012339115, 0.017453821375966072, 0.018758531659841537, 0.005118988920003176, 0.008300882764160633, 0.009472458623349667, -0.0035912801977247, 0.005641538184136152, 0.0034015646670013666, 0.011502747423946857, 0.016442004591226578, -4.5764689275529236e-05, -0.02592112123966217, 0.0454784519970417, 0.006783159449696541, -0.03291063755750656, 0.012487935833632946, -0.02104843035340309, 0.016362125054001808, 0.02140789106488228, 0.016402065753936768, 0.026560163125395775, 0.01455150730907917, 0.012201698496937752, 0.018385756760835648, -0.020409388467669487, 0.016801465302705765, 0.02352471463382244, -0.009126311168074608, -0.003481444902718067, -0.03323015943169594, -0.0064403400756418705, 0.00812115240842104, 0.046650029718875885, 0.06827093660831451, 0.003947412595152855, 0.008613746613264084, 0.03541354835033417, 0.00043892499525099993, 0.0003634132444858551, 0.04281578212976456, 0.030993513762950897, -0.02806457318365574, -0.0007817441364750266, 0.0067132641561329365, -0.033629558980464935, -0.02016974799335003, -0.00822765938937664, 0.004839408211410046, -0.0004917624173685908, 0.0022066901437938213, -0.0011857214849442244, 0.004479947034269571, -0.05378599464893341, 0.001288068015128374, -0.013393244706094265, 0.0031452823895961046, -0.01202862523496151, -0.01806623674929142, 0.011203196831047535, -0.05554335564374924, 0.06635381281375885, -0.005794642027467489, 0.016761526465415955, -0.029209522530436516, -0.02857048064470291, -0.018279248848557472, 0.02566816657781601, 0.02926277555525303, -0.01391246635466814, 0.0434015691280365, -0.05059078708291054, -0.013393244706094265, 0.018305877223610878, 0.011562657542526722, 0.022752540186047554, -0.04497254639863968, -0.015190549194812775, -0.010943586006760597, 0.00640705693513155, -0.007548677735030651, -0.006357131525874138, -0.014112166129052639, 0.011090032756328583, -0.015962723642587662, -0.003924114163964987, -0.035972710698843, -0.016961226239800453, -0.024296890944242477, -0.016362125054001808, -0.032804131507873535, -0.0007621901459060609, -0.0086803138256073, -0.04467965289950371, 0.0005013314075767994, 0.016308872029185295, 0.040525883436203, -0.05434515327215195, -0.018665337935090065, 0.0231519415974617, -0.01248127967119217, 0.011942087672650814, -0.005388584453612566, 0.027878185734152794, -0.00588117865845561, 0.014112166129052639, -0.0009444167953915894, -0.04955234378576279, 0.013366618193686008, 0.010670661926269531, 0.0009544018539600074, 0.0004376768774818629, 0.017214180901646614, 0.0065435185097157955, 0.03397570550441742, 0.022100185975432396, -0.024895992130041122, -0.02592112123966217, -0.012541189789772034, -0.02285904623568058, 0.011922118254005909, -0.030700618401169777, 0.006962889805436134, 0.004260276909917593, -0.00017120155098382384, 0.012414712458848953, 0.015323682688176632, 0.005598269868642092, -0.014298553578555584, 0.030247963964939117, 0.0434015691280365, 0.03173905983567238, -0.01769346185028553, -0.02686637081205845, -0.0037410554941743612, -0.028703615069389343, -0.020103180781006813, 0.002651023678481579, -0.0006219837814569473, 0.023711102083325386, 0.02281910739839077, -0.0012173408176749945, 0.0438275970518589, -2.8394910259521566e-05, 0.0004846896918024868, -0.014378434047102928, 0.029795309528708458, -0.043800968676805496, 0.06422366946935654, -0.006024297326803207, 0.021221503615379333, 0.016721585765480995, 0.004722916055470705, 0.008613746613264084, 0.002021967200562358, 0.02191379852592945, -0.0019637213554233313, 0.005095690488815308, 0.01608254387974739, 0.02099517546594143, -0.02389748953282833, 0.01523048896342516, -0.025228826329112053, -0.000640705693513155, 0.003441504668444395, -0.010178067721426487, -0.006463638506829739, -0.0072424705140292645, -0.00663338415324688, 0.044706277549266815, -0.012827427126467228, 0.04390747845172882, 0.004127142950892448, -0.013899153098464012, 0.018865037709474564, 0.04292228817939758, 0.0322449691593647, -0.022100185975432396, -0.025148946791887283, -0.019490765407681465, 0.046942923218011856, -0.009059744887053967, 0.04063238948583603, -0.0001717216073302552, -0.004922616761177778, 0.01910467818379402, 0.0021234815940260887, 0.008440673351287842, -0.0007401398615911603, 0.01190214790403843, -0.03360293060541153, 0.026759862899780273, -0.015443502925336361, -0.002161757554858923, -0.0032384758815169334, 0.0030487605836242437, 0.05463804677128792, -0.033469799906015396, 0.030327845364809036, 0.02678648941218853, -0.024070562794804573, 0.01058412529528141, 0.017547015100717545, -0.0054651363752782345, -0.006260609719902277, 0.02731902338564396, 0.01624230481684208, 0.005644866731017828, -0.008087868802249432, -0.003957397770136595, -0.002968880347907543, 0.003917457535862923, -0.006726577412337065] \ No newline at end of file diff --git a/cache/text-embedding-3-small7207fc36-c323-54a0-a009-2ffe69479452 b/cache/text-embedding-3-small7207fc36-c323-54a0-a009-2ffe69479452 new file mode 100644 index 0000000000000000000000000000000000000000..0a86a330482f5b71b2963505cc7b7f4a3c155299 --- /dev/null +++ b/cache/text-embedding-3-small7207fc36-c323-54a0-a009-2ffe69479452 @@ -0,0 +1 @@ +[-0.040328167378902435, -0.009003814309835434, 0.04568212106823921, 0.009202108718454838, 0.03941105306148529, 0.002878370229154825, 0.014264818280935287, 0.0796152874827385, 0.04149314761161804, -0.02919888123869896, 0.00764673575758934, -0.07059288024902344, -0.0316527783870697, -0.021626506000757217, 0.012864362448453903, 0.07976400852203369, -0.003510434180498123, 0.026571476832032204, -0.004167285282164812, 0.009431387297809124, 0.043005142360925674, -0.007987555116415024, -0.002584026660770178, 0.011216038838028908, -0.03802299126982689, -0.008006145246326923, -0.016582386568188667, 0.00026181084103882313, -0.00953673105686903, -0.06399958580732346, 0.08016059547662735, -0.024340663105249405, 0.0021161753684282303, 0.035519521683454514, 0.009053388610482216, 0.03371008485555649, -0.053291674703359604, 0.01887516863644123, 0.034751128405332565, 0.009939516894519329, -0.03009120747447014, -0.03128097578883171, 0.007553785108029842, -0.008309783414006233, 0.00048450499889440835, -0.018689267337322235, -0.007150999270379543, -0.03978285565972328, -0.0018450693460181355, 0.01647084578871727, 0.0010937186889350414, -0.005927149672061205, 0.0071943760849535465, -0.03606483340263367, -0.037601616233587265, -0.058348190039396286, 0.0063051488250494, 0.03616397827863693, -0.021564539521932602, 0.030512582510709763, -0.0237581729888916, -0.01376908179372549, -0.03502378612756729, 0.026645837351679802, -0.030562156811356544, 0.002852034056559205, -0.015343044884502888, 0.03973328322172165, -0.06231408193707466, 0.027587737888097763, -0.023931680247187614, -0.03219808638095856, 0.020523492246866226, 0.005149463191628456, 0.028727931901812553, -0.04835909605026245, -0.041096556931734085, 0.07436047494411469, 0.00803093146532774, -0.02716636098921299, 0.011786135844886303, -0.01928415149450302, -0.07004757225513458, -0.008948043920099735, -0.03460240736603737, -0.004393464885652065, -0.05006938800215721, 0.04171622917056084, -0.03529644012451172, 0.04880525916814804, -0.0126474779099226, -0.007330704014748335, -0.0029434356838464737, -0.008985224179923534, 0.006317542400211096, 0.0230641420930624, -0.032272446900606155, -0.02887665294110775, -0.0019023888744413853, 0.020399557426571846, 0.03931190446019173, -0.01821831800043583, -0.0028644276317209005, -0.058943070471286774, 0.004421350080519915, -0.007851227186620235, 0.03891531750559807, -0.028480062261223793, 0.005735051818192005, 0.0057846256531775, -0.07882210612297058, -0.02545607089996338, 0.021614111959934235, 0.051507025957107544, 0.05933966115117073, -0.009437584318220615, 0.005326069425791502, -0.02509666047990322, -0.002982164965942502, 0.01764822006225586, -0.012554527260363102, 0.024328269064426422, -0.009102961979806423, -0.02041195146739483, -0.01854054629802704, 0.023894499987363815, -0.049276210367679596, 0.009840370155870914, -0.016247764229774475, -0.05368826538324356, 0.03321434557437897, 0.006878344342112541, 0.011519677005708218, 0.04127006605267525, -0.0028551325667649508, 0.029149306938052177, -0.026125313714146614, -0.0346519835293293, -0.014425932429730892, -0.014723374508321285, -0.024068007245659828, -0.05215148255228996, 0.05014374852180481, 0.022320536896586418, -0.04253419488668442, 0.014834915287792683, -0.0534403957426548, -0.016706321388483047, -0.053093381226062775, 0.005586330778896809, -0.03665971755981445, -0.0649910569190979, -0.0274142287671566, -0.00443374365568161, 0.013347705826163292, 0.01798284240067005, -0.018565332517027855, 0.07872296124696732, -0.0023934778291732073, -0.01928415149450302, -0.01456226035952568, 0.06181834265589714, -0.02607574127614498, 0.004154891707003117, -0.027116788551211357, -0.00011473589256638661, 0.011030137538909912, -0.03522207960486412, -0.08482051640748978, 0.021576931700110435, -0.040650393813848495, -0.05953795462846756, -0.006224591750651598, 0.0447402223944664, -0.04151793196797371, 0.00016982849047053605, 0.02577829919755459, -0.0633055567741394, -0.004901594948023558, 0.008433717302978039, -0.022407291457057, 0.006438378244638443, 0.017375564202666283, -0.0038977283984422684, 0.00017389508138876408, -0.01421524491161108, -0.030190354213118553, -0.014785341918468475, 0.038741808384656906, 0.028727931901812553, -0.05319252982735634, 0.03269382193684578, 0.05453101545572281, 0.058298613876104355, 0.02716636098921299, 0.05477888509631157, -0.0023361584171652794, 0.03695715591311455, -0.029496323317289352, -0.012963510118424892, 0.012108364142477512, -0.024861186742782593, -0.026695411652326584, 0.046797528862953186, -0.008346963673830032, -0.011030137538909912, -0.04652487114071846, 0.027761245146393776, 0.03021514043211937, -0.03745289519429207, 0.013322918675839901, -0.032594677060842514, 0.004951168317347765, 0.020226050168275833, -0.025555217638611794, -0.03256988897919655, -0.004765267483890057, -0.00766532588750124, 0.016086651012301445, 0.023237649351358414, -0.005202135071158409, -0.0017583154840394855, 0.06157047674059868, -0.04082390293478966, -0.012250889092683792, 0.025158628821372986, -0.0066614593379199505, -0.04868132621049881, -0.009084371849894524, -0.02465049922466278, 0.043129079043865204, -0.0331895612180233, -0.01533065177500248, -0.005087496247142553, 0.019123036414384842, 0.0793178454041481, 0.013880622573196888, 0.0021146261133253574, -0.028579210862517357, -0.02659626491367817, -0.02607574127614498, 0.01112308818846941, -0.02969461679458618, -0.0041951704770326614, -0.015789208933711052, -0.006704836618155241, 0.004077432677149773, -0.058546483516693115, 0.0007660678238607943, 0.026695411652326584, 0.015466979704797268, 0.022766700014472008, 0.01593792997300625, -0.011414333246648312, 0.010323712602257729, -0.06414830684661865, 0.023882107809185982, 0.008793126791715622, 0.027761245146393776, -0.007113819010555744, 0.023002173751592636, -0.021440604701638222, 0.03244595602154732, -0.01859011873602867, 0.041294850409030914, -0.05096171423792839, -0.015429799444973469, 0.015318258665502071, 0.001959708519279957, 0.032916903495788574, 0.08491966873407364, 0.014066523872315884, 0.008216832764446735, -0.018453791737556458, 0.015020816586911678, 0.010236958973109722, -0.008043325506150723, -0.04835909605026245, -0.01666914112865925, 0.039064038544893265, -0.009071978740394115, -0.009815583005547523, -0.020102115347981453, -0.01973031274974346, -0.0007598711526952684, -0.004622742999345064, 0.03435454145073891, -0.012851969338953495, -0.03802299126982689, 0.016198189929127693, 0.01376908179372549, -0.05978582426905632, -0.025555217638611794, -0.05120958387851715, 0.031132252886891365, -0.013731901533901691, 0.005598724354058504, -0.020672213286161423, 0.03931190446019173, 0.006193608045578003, 0.06390044093132019, 0.031132252886891365, -0.042112816125154495, 0.007411261089146137, -0.018776020035147667, 0.02761252410709858, -0.01798284240067005, -0.012684658169746399, -0.01073889248073101, -0.03066130355000496, -0.011209841817617416, -0.017437532544136047, 0.0274142287671566, -0.018515758216381073, 0.0024693876039236784, -0.01236242987215519, 0.02114316262304783, -0.00712621258571744, -0.005666888318955898, -0.06766803562641144, -0.0002757534384727478, -0.009809385985136032, -0.03185107186436653, -0.0333382822573185, 0.03673407435417175, -0.08467179536819458, 0.007386473938822746, 0.021824799478054047, -0.01744992472231388, -0.0374281071126461, -0.04055124893784523, -0.017499499022960663, 0.022679945454001427, -0.038989678025245667, -0.04022901877760887, -0.013409673236310482, 0.006351624149829149, -0.00766532588750124, 0.03512293100357056, -0.0011502635898068547, -0.018168743699789047, -0.012319052591919899, 0.0118790864944458, -0.010608761571347713, 0.014178064651787281, -0.026422755792737007, 0.025195809081196785, 0.021118376404047012, 0.005669986363500357, 0.022556012496352196, -0.005208331625908613, -0.03688279539346695, 0.016644353047013283, -0.026323609054088593, -0.009115355089306831, 0.00880551990121603, 0.03021514043211937, -0.015504159964621067, -0.01586356945335865, -0.004523595795035362, -0.02030041068792343, 0.016855042427778244, 0.004216858651489019, 0.011259416118264198, 0.052845511585474014, 0.013149411417543888, 0.012337642721831799, -0.0064259846694767475, 0.004907791502773762, -0.012876756489276886, -0.0021084293257445097, 0.051953189074993134, 0.005388036370277405, 0.017412744462490082, -0.020077329128980637, -0.046624019742012024, -0.010162598453462124, 0.025654364377260208, 0.010515810921788216, 0.021725652739405632, 0.07559981942176819, -0.00517424987629056, -0.04957365244626999, -0.0035754996351897717, -0.014673801138997078, 0.012523544020950794, 0.03960934653878212, -0.05014374852180481, -0.05140787735581398, 0.0006874471437186003, -0.010838039219379425, -0.030413435772061348, 0.028851864859461784, -0.038989678025245667, 0.04206324368715286, -0.03980764374136925, 0.05889349803328514, 0.02074657380580902, 0.028901439160108566, -0.0001053440137184225, -0.02403082698583603, -0.030438221991062164, 0.0360400453209877, -0.010509613901376724, 0.010416663251817226, -0.020796146243810654, 0.005010037217289209, 0.0015941027086228132, 0.019903821870684624, -0.0446658618748188, 0.0011401940137147903, -0.03978285565972328, 0.02696806751191616, -0.023039354011416435, -0.043897468596696854, 0.008365553803741932, -0.017908481881022453, -0.007250146474689245, 0.04657444730401039, 0.05973625183105469, 0.027885179966688156, -0.0490531288087368, -0.036535780876874924, -0.0030425828881561756, 0.02996727265417576, 0.027959540486335754, -0.015752028673887253, -0.008532864972949028, -0.006785393692553043, -0.02684413269162178, -0.055125899612903595, -0.0230641420930624, -0.001536008669063449, 0.010453843511641026, -0.02176283299922943, -0.022382503375411034, 0.017338383942842484, 0.00764673575758934, 0.016817862167954445, -0.019061069935560226, -0.014574653469026089, 0.02147778496146202, 0.03579217568039894, -0.028356129303574562, 0.013855835422873497, -0.038617875427007675, -0.024043221026659012, 0.014834915287792683, -0.01716487668454647, -0.02171325869858265, 0.022556012496352196, 0.00033888238249346614, -0.003460860578343272, -0.012659871019423008, -0.028579210862517357, 0.01425242517143488, 0.06632954627275467, -0.016569992527365685, -0.006339230574667454, 0.029298027977347374, 0.01984185352921486, 0.029942486435174942, 0.00884270016103983, 0.055621638894081116, 0.07455877214670181, -0.018168743699789047, -0.017350777983665466, 0.02509666047990322, 0.012851969338953495, 0.05735671520233154, -0.015528946183621883, -0.029372388496994972, -0.00951814092695713, 0.035445161163806915, -0.06226450577378273, -0.003112295875325799, 0.0245265644043684, -0.02577829919755459, -0.016123829409480095, -0.009511944837868214, -0.009115355089306831, -0.001784651423804462, -0.046995822340250015, 0.013335312716662884, -0.013843442313373089, 0.06008326634764671, 0.04716933146119118, -0.02204788103699684, -0.029595470055937767, 0.003913220018148422, 0.011321382597088814, 0.014178064651787281, 0.03549473360180855, -0.012591707520186901, -0.02798432670533657, -0.01415327750146389, -0.03998114913702011, -0.05844733491539955, -0.032148513942956924, 0.05001981556415558, 0.02297738753259182, -0.015429799444973469, -0.06568508595228195, -0.004096022807061672, -0.00570406811311841, 0.01939569227397442, -0.029744191095232964, -0.0267201978713274, 0.012814789079129696, 0.007956570945680141, -0.00438107131049037, -0.002573182340711355, 0.00874355249106884, 0.006038690451532602, 0.011625021696090698, -0.0035352210979908705, 0.030438221991062164, 0.04213760420680046, 0.009741222485899925, -0.03489984944462776, -0.02696806751191616, 0.023857319727540016, 0.00804952159523964, 0.009301256388425827, -0.0216017197817564, 0.008700176142156124, -0.025852659717202187, -0.06682528555393219, -0.049102701246738434, -0.04298035800457001, 0.013149411417543888, -0.0029604765586555004, 0.003436073660850525, 0.01679307408630848, -0.00691552460193634, -0.003426778595894575, -0.03789905831217766, 0.014797735027968884, 0.015144750475883484, 0.004523595795035362, 0.005208331625908613, 0.015157144516706467, -0.0274142287671566, 0.018726447597146034, -0.034552834928035736, -0.010113025084137917, 0.0033431232441216707, -0.002128568710759282, -0.010360892862081528, 0.04221196472644806, 0.05909179151058197, -0.02989291213452816, 0.013446853496134281, 0.019494839012622833, 0.017945662140846252, -0.015318258665502071, 0.018490971997380257, 0.015466979704797268, -0.023361584171652794, 0.018280284479260445, -0.012442986480891705, -0.0051308730617165565, 0.032024580985307693, -0.006401197984814644, -0.02427869662642479, 0.030115993693470955, 0.00676060700789094, 0.01614861749112606, -0.06018241494894028, 0.02297738753259182, -0.012926329858601093, 0.010441450402140617, 0.040724754333496094, 0.0022571503650397062, 0.031380120664834976, 0.015268685296177864, -0.00886748731136322, -0.025654364377260208, 0.03460240736603737, 0.025927020236849785, -0.030438221991062164, -0.0016219879034906626, -0.0010441450867801905, -0.009388010017573833, -0.025480857118964195, 0.022518832236528397, 0.021626506000757217, 0.014450719580054283, 0.011686988174915314, -0.007429851219058037, -0.0012772961053997278, -0.028133047744631767, -0.011092104949057102, 0.01802002266049385, 0.020895294845104218, -0.024749645963311195, 0.011501086875796318, -0.003155672689899802, -0.005044118966907263, -0.014710981398820877, -0.0023330599069595337, -0.03254510089755058, 0.00019965013780165464, -0.010522007942199707, -0.012492560781538486, -0.035246867686510086, 0.042682915925979614, 8.762530342210084e-05, 0.013310525566339493, 0.016161009669303894, 0.04315386340022087, 0.03425539284944534, 0.02094486728310585, 0.006438378244638443, 0.002040265593677759, 0.010478630661964417, -0.013372492976486683, 0.013645147904753685, 0.04360002651810646, -0.001068931887857616, -0.029595470055937767, -0.0004147920408286154, 0.009065781719982624, -0.008731159381568432, 0.0009279567748308182, 0.015132357366383076, 0.011625021696090698, -0.01671871356666088, 0.028281768783926964, -0.004263333976268768, 0.03549473360180855, -0.004774562548846006, 0.0033183363266289234, -0.023175682872533798, -0.013930195942521095, 0.016136223450303078, -0.01647084578871727, 0.028727931901812553, 0.04258376732468605, -0.0020743475761264563, -0.0216389000415802, -0.0318014994263649, 0.020151689648628235, -0.0359656848013401, 0.006230788305401802, 0.006218395195901394, 0.02313850261271, 0.01736317202448845, 0.0016049470286816359, -0.0031727137975394726, 0.0130130834877491, 0.02952110953629017, 0.08457265049219131, -0.0009511944372206926, 0.02577829919755459, -0.02367141842842102, 0.0023516500368714333, -0.023981254547834396, 0.023250043392181396, 0.03784948214888573, -0.01570245437324047, 0.014178064651787281, -0.004904692992568016, -0.020920081064105034, -0.0063237389549613, 0.011810922995209694, 0.046177856624126434, -0.008613421581685543, 0.04987109452486038, 0.01593792997300625, -0.030066419392824173, 0.026497116312384605, 0.011110695078969002, -0.024216728284955025, 0.03489984944462776, -0.030239928513765335, 0.009858960285782814, -0.037279386073350906, 0.00532916747033596, 0.023274829611182213, 0.011395743116736412, 0.012765215709805489, -0.01071410533040762, 0.0230641420930624, -0.009803189896047115, -0.0028799192514270544, -0.00437177624553442, 0.0039875805377960205, 0.02065981924533844, 0.01720205694437027, 0.024873580783605576, 0.014958849176764488, 0.05279593914747238, 0.01927175745368004, -0.0036808436270803213, -0.002794714644551277, 0.007857424207031727, 0.01841661147773266, -0.04263333976268768, -0.06737059354782104, 0.018007628619670868, 0.004337694495916367, -0.0032191891223192215, -0.023522697389125824, -0.03452804684638977, 0.033040840178728104, -0.01725163124501705, -0.0035785979125648737, 0.029719404876232147, -0.021527359262108803, -0.016681533306837082, -0.01573963463306427, 0.004783857613801956, 0.0041703833267092705, 0.006971294991672039, -0.00249107601121068, -0.011841906234622002, -0.02260558493435383, 0.010342302732169628, -0.011860496364533901, 0.010552991181612015, -0.012777608819305897, -0.012436790391802788, -0.03269382193684578, -0.04164186865091324, 0.032148513942956924, 0.02249404415488243, 0.04518638551235199, 0.021688472479581833, -0.021242309361696243, -0.01854054629802704, -0.0028690751641988754, 0.010491023771464825, -0.0003601835633162409, 0.01075748261064291, -0.006103755906224251, -0.027885179966688156, -0.017722580581903458, 0.0030813124030828476, -0.004291219171136618, -0.01570245437324047, -0.006723426748067141, 0.028356129303574562, 0.0034856474958360195, -0.03408188745379448, 0.001383414724841714, 0.010540598072111607, 0.01618579775094986, 0.0010813252301886678, 0.0010092885931953788, -0.0003468219074420631, 0.009053388610482216, 0.013756688684225082, 0.038617875427007675, -0.014351571910083294, 0.007925587706267834, -0.02753816358745098, -0.006054182071238756, -0.007807850372046232, 0.004232350736856461, -0.00173352868296206, 0.013930195942521095, -0.0115134809166193, 0.004164186771959066, -0.0006266419659368694, 0.004700202029198408, -0.0345776230096817, -0.008923257701098919, 0.0010309770004823804, 0.01907346211373806, 0.03437932953238487, 0.015343044884502888, -0.030884385108947754, -0.020932475104928017, 0.008941847831010818, 0.011284202337265015, 0.0005751317949034274, 0.00025174120673909783, 0.02346073091030121, -0.00842132419347763, -0.0112222358584404, -0.004495710600167513, -0.007002278231084347, -0.0065623121336102486, -0.004136301577091217, -0.012188921682536602, -0.005056512542068958, -0.024749645963311195, -0.026992853730916977, -0.04697103425860405, -0.020164083689451218, -0.004824135918170214, -0.04104698449373245, -0.012381020002067089, -0.02188676781952381, 0.0016994468169286847, -0.026794558390975, -0.06905609369277954, 0.01891234889626503, 0.018490971997380257, -0.007838834077119827, 0.03720502555370331, 0.0022060275077819824, 0.027959540486335754, 0.06459446996450424, 0.047640278935432434, -0.007950374856591225, 0.01647084578871727, -0.031181827187538147, 0.0037985811941325665, -0.006007706746459007, 0.0030797631479799747, 0.013298132456839085, 0.01846618577837944, 0.04248461872339249, 0.01342206634581089, 0.03497420996427536, 0.024873580783605576, 0.01736317202448845, 0.01415327750146389, 0.05839776247739792, -0.051308728754520416, 0.007423654198646545, 0.003023992758244276, 0.0031789103522896767, 0.02351030521094799, -0.015169537626206875, 0.04139399901032448, 0.04265812784433365, 0.019123036414384842, -0.024105187505483627, 0.008563848212361336, 0.0054190196096897125, -0.011928659863770008, 0.045087236911058426, -0.012876756489276886, 0.04248461872339249, -0.023621845990419388, 0.023188075050711632, -0.020870506763458252, 0.005450003314763308, -0.02465049922466278, 0.004824135918170214, 0.027562949806451797, 0.030537370592355728, 0.05120958387851715, 0.016235370188951492, 0.03921275958418846, 0.00040549697587266564, 0.011717972345650196, 0.009933320805430412, -0.011748955585062504, -0.02167607843875885, 0.009741222485899925, -0.024600924924016, 0.052201054990291595, -0.02520820125937462, -0.013855835422873497, -0.015553733333945274, 0.011401940137147903, -0.019655952230095863, -0.020436737686395645, 0.015640487894415855, -0.036461420357227325, 0.030611729249358177, -0.025071874260902405, 0.003606483107432723, 0.035197291523218155, 0.06479275971651077, 0.011848103255033493, 0.016855042427778244, 0.01145151350647211, 0.003770695999264717, -0.005849691107869148, 0.03737853467464447, 0.02461331896483898, -0.04283163696527481, 0.005604920908808708, 0.019941002130508423, -0.040278591215610504, 0.032842542976140976, 0.015590913593769073, -0.0505155511200428, -0.00880551990121603, -0.0015700905350968242, 0.03033907525241375, -0.012740428559482098, 0.014723374508321285, -0.031082680448889732, 0.011779938824474812, 0.03371008485555649, 0.01744992472231388, 0.0274142287671566, -0.016458451747894287, -0.011315186507999897, 0.015640487894415855, -0.029868125915527344, 0.06241322681307793, 0.018726447597146034, 0.018515758216381073, 0.02122991718351841, 0.004678513389080763, 0.026199674233794212, 0.004582464694976807, 0.005332265980541706, 0.0007528998539783061, -0.004477120470255613, -0.003612679895013571, 0.03435454145073891, 0.030239928513765335, 0.004396563395857811, 0.014388752169907093, 0.03854351490736008, -0.007652932312339544, 0.0018094383412972093, -0.04360002651810646, -0.01955680549144745, 0.025431282818317413, 0.025158628821372986, 0.023448336869478226, 0.04067518189549446, 0.004570071119815111, -0.03990678861737251, -0.0002802073140628636, -0.005824903957545757, -0.004396563395857811, -0.04332737252116203, 0.003377204993739724, 0.06449531763792038, 0.005422118119895458, 0.014091311022639275, 0.008607225492596626, 0.005927149672061205, -0.007882210426032543, -0.05611737444996834, -0.0389648899435997, 0.01736317202448845, 0.007962767966091633, -0.016681533306837082, -0.021899159997701645, -0.007429851219058037, 0.05086256563663483, -0.021291883662343025, -0.040898263454437256, 0.02313850261271, -0.006884540896862745, -0.009010011330246925, 0.016731107607483864, 0.014512686990201473, -0.05676183104515076, 0.03512293100357056, -0.020548278465867043, -0.0017970448825508356, -0.020957261323928833, -0.003990679048001766, 0.0361887663602829, -0.009158732369542122, 0.030537370592355728, 0.0606781505048275, -0.009951910935342312, -0.013384886085987091, 0.01854054629802704, -0.0014748161192983389, -0.011625021696090698, 0.009790795855224133, 0.008161062374711037, -0.01376908179372549, 0.0028179523069411516, -0.024266302585601807, 0.01707812398672104, -0.017549073323607445, 0.012399610131978989, 0.00383266294375062, 0.0274142287671566, 0.008972831070423126, -0.012381020002067089, -0.008570045232772827, 0.010918596759438515, -0.0017892989562824368, 0.020511098206043243, 0.017412744462490082, -0.008799322880804539, -0.0005491831107065082, 0.0010759031865745783, 0.012963510118424892, 0.019618771970272064, 0.0015003775479272008, -0.004027859307825565, -0.0031293367501348257, 0.009970501065254211, 0.013508819974958897, -0.011668398045003414, -0.023200469091534615, -0.008979028090834618, -0.014587047509849072, -0.025109054520726204, -0.017908481881022453, -0.038370005786418915, -0.03985721617937088, 0.00994571391493082, 0.024985121563076973, -0.026298822835087776, -0.032966479659080505, -0.015528946183621883, -0.0032253856770694256, 0.007609555497765541, 0.010435253381729126, 0.0021270194556564093, 0.019593985751271248, -0.006481755059212446, 0.02838091552257538, 0.018776020035147667, -0.006069674156606197, -0.037799909710884094, 0.014091311022639275, -0.014178064651787281, -0.006199805065989494, -0.00316186947748065, -0.011482496745884418, 0.019742706790566444, 0.032148513942956924, 0.002441502409055829, 0.005719560198485851, 0.025927020236849785, -0.009908533655107021, 0.04107177257537842, 0.005301282275468111, -0.004548382479697466, 0.035519521683454514, 0.018614906817674637, -0.0003648310957942158, -0.032074153423309326, -0.03460240736603737, -0.01627255044877529, 0.0076219490729272366, -0.030834810808300972, 0.031826283782720566, 0.004904692992568016, 0.039187971502542496, 0.003590991487726569, -0.033610936254262924, 0.00267387880012393, -0.01866447925567627, -0.011910069733858109, -0.017883695662021637, 0.015925535932183266, -0.03001684695482254, 0.02408040128648281, 0.008811716921627522, -0.012040200643241405, 0.002755985129624605, 0.01627255044877529, 0.01638409122824669, 0.016582386568188667, -0.03812213987112045, 0.01570245437324047, 0.02607574127614498, 0.004501907154917717, -0.019755100831389427, -0.010181188583374023, 0.02969461679458618, -0.03832043334841728, -0.005499577149748802, -0.009858960285782814, 0.02058545872569084, -0.0069279177114367485, 0.05656353756785393, 0.00034372357185930014, -0.007770670112222433, 0.008018538355827332, -0.0007621949189342558, 0.020647425204515457, -0.008526667952537537, -0.004774562548846006, 0.00747322803363204, -0.030611729249358177, -0.034428901970386505, 0.032272446900606155, 0.010856629349291325, -0.021440604701638222, 0.023572271689772606, 0.018478577956557274, -0.03871702402830124, -0.04746677353978157, -0.013137017376720905, 0.003116943407803774, -0.006847360637038946, 0.0462026447057724, 0.0027807720471173525, -0.011092104949057102, 0.004842726048082113, 0.01859011873602867, 0.005914756562560797, 0.01352121401578188, -0.021502571180462837, 0.02285345271229744, 0.017474712803959846, -0.0011998373083770275, 0.03693237155675888, -0.018007628619670868, -0.0016808566870167851, 0.010379482991993427, -0.01684264838695526, 0.006407394539564848, -0.0004558452346827835, -0.029372388496994972, 0.0345032624900341, 0.00373661401681602, -0.011501086875796318, -0.009133945219218731, -0.03338785469532013, 0.023039354011416435, 0.040898263454437256, 0.0017954957438632846, 0.009908533655107021, 0.036263126879930496, -0.002314469777047634, 0.009400404058396816, 0.037279386073350906, 0.025604791939258575, -0.015367832034826279, -0.04647529870271683, -0.006921721156686544, 0.019061069935560226, -0.004526694305241108, 0.024179548025131226, -0.016495632007718086, 0.01854054629802704, 0.00955532118678093, -0.01232524961233139, 0.00021010708587709814, -0.016532812267541885, 0.011680792085826397, 0.03978285565972328, -0.0259518064558506, -0.019916214048862457, -0.014996029436588287, -0.007132409140467644, -0.005831100977957249, 0.001961257541552186, -0.02151496522128582, 0.033040840178728104, 0.024229122325778008, 0.005973624996840954, 0.04022901877760887, 0.02721593528985977, -0.008489487692713737, 0.08075547963380814, -0.015466979704797268, 0.00764673575758934, 0.015429799444973469, 0.020387165248394012, 0.017226843163371086, -0.0034081884659826756, -0.012777608819305897, -0.012195118702948093, 0.02786039188504219, -0.020473917946219444, -0.010367089882493019, -0.017759760841727257, -0.00014262108015827835, -0.024303482845425606, 0.0026769773103296757, -0.002048011403530836, 0.004108416382223368, 0.0033090412616729736, -0.016644353047013283, 0.005034823901951313, 0.0007703281007707119, -0.017673006281256676, 0.008681586012244225, 0.00958010833710432, -0.006246280390769243, 0.013682328164577484, 0.026050955057144165, -0.00843991432338953, 0.019866641610860825, 0.00805571861565113, 0.03249552845954895, 0.0122632822021842, 0.051060862839221954, 0.00016605237033218145, 0.003773794276639819, -0.02370859868824482, 0.0017598646227270365, 0.0476650670170784, -0.007020868360996246, -0.03636227548122406, 0.020957261323928833, 0.02008972316980362, -0.043897468596696854, -0.027637310326099396, 0.0016126928385347128, 0.016978975385427475, 0.005267200525850058, -0.02805868722498417, -0.03249552845954895, -0.030735664069652557, -0.006047985516488552, -0.017338383942842484, -0.010528204031288624, 0.00842132419347763, 0.03502378612756729, 0.03770076110959053, 0.012542134150862694, -0.008941847831010818, 0.0028721734415739775, -0.04055124893784523, -0.024786826223134995, 0.004092924762517214, 0.03256988897919655, 0.006580902263522148, -0.0041239080019295216, 0.013384886085987091, 0.023844927549362183, 0.043897468596696854, -0.032966479659080505, 0.0006223816890269518, 0.0237581729888916, 0.024266302585601807, -0.013273345306515694, -0.009121552109718323, -0.0013229968026280403, -0.013645147904753685, 0.01582638919353485, -0.026298822835087776, -0.023150894790887833, -0.00799375120550394, 0.040080297738313675, -0.008935650810599327, 0.008917060680687428, -0.02504708804190159, 0.0017954957438632846, -0.00801234133541584, -0.007950374856591225, 0.033288706094026566, 0.01307505089789629, -0.019259363412857056, 0.005542953964322805, 0.011903873644769192, -0.0005019332165829837, -0.02500990778207779, -0.012938722968101501, -0.020275624468922615, -0.015442192554473877, -0.01980467326939106, -0.01871405355632305, -5.785206303698942e-05, -0.013050263747572899, 0.0032780577894300222, -0.00014891460887156427, -0.02017647586762905, -0.028480062261223793, -0.004229252226650715, -0.005326069425791502, 0.024638105183839798, -0.02472485974431038, -0.03135533630847931, -0.01181711908429861, 0.01456226035952568, -0.0073554906994104385, -0.011804725974798203, 0.03415624797344208, -0.003504237625747919, 0.002799362177029252, 0.018007628619670868, -0.0038543513510376215, 0.026298822835087776, 0.020758965983986855, 0.01939569227397442, 0.003206795547157526, -0.04047688841819763, 0.020969655364751816, 0.0021130768582224846, 0.011333776637911797, -0.003504237625747919, -0.0019813969265669584, 0.026001380756497383, 0.0037211221642792225, 7.910482963779941e-05, 0.016371699050068855, -0.007405064068734646, 0.02513384073972702, 0.029347602277994156, -0.016297338530421257, 0.024464597925543785, -0.052895087748765945, -0.01577681489288807, -0.034627195447683334, -2.2481215182779124e-06, 0.019346117973327637, 0.02028801664710045, -0.009431387297809124, 8.708067070983816e-06, 0.025270169600844383, 0.004638234619051218, 0.02224617637693882, -0.019655952230095863, -0.007417457643896341, 0.04022901877760887, 0.00990233663469553, 0.014450719580054283, 0.010546794161200523, 0.029149306938052177, 0.017623433843255043, 0.029793765395879745, -0.019792281091213226, -0.018441397696733475, 0.03071087785065174, -0.045335106551647186, -0.020511098206043243, -0.016334518790245056, -0.00764673575758934, -0.016483239829540253, 0.01870165951550007, -0.015343044884502888, 0.015057996846735477, -0.006859754212200642, -0.0331895612180233, -0.015256291255354881, -0.010689319111406803, 0.013087444007396698, -0.029397176578640938, -0.025927020236849785, 0.01683025434613228, -0.007398867513984442, -0.03279297053813934, -0.008836503140628338, -0.03497420996427536, 0.021329063922166824, -0.023720992729067802, 0.01529347151517868, 0.0002166910853702575, 0.013273345306515694, 0.005186643451452255, -0.018961921334266663, -0.0060231988318264484, -0.0013632754562422633, -0.007857424207031727, -0.010218368843197823, 0.009741222485899925, 0.006717229727655649, -0.003243975806981325, -0.011463906615972519, -0.024662891402840614, -0.012864362448453903, -0.024600924924016, -0.011910069733858109, 0.0007927911356091499, 0.03537080064415932, 0.024167155846953392, 0.035767391324043274, 0.02090768702328205, -0.026447543874382973, 0.006890737451612949, -0.023113714531064034, 0.01871405355632305, 0.0636029988527298, 0.005855887662619352, 0.03155362978577614, 0.0122446920722723, -0.01150728389620781, 2.0429766664165072e-05, 0.013905409723520279, 0.014314391650259495, 0.012071183882653713, -0.008972831070423126, -0.003652958432212472, -0.020684605464339256, -0.02122991718351841, 0.016260158270597458, 0.001449254690669477, -0.035693030804395676, 0.02558000385761261, -0.00500074215233326, 0.013731901533901691, -0.0318014994263649, 0.01951962523162365, 0.00356310629285872, -0.01345924660563469, 0.012579314410686493, -0.008625815622508526, -0.025356922298669815, -0.023844927549362183, 0.009958107024431229, 0.00115878414362669, 0.003606483107432723, -0.011686988174915314, -0.006286558695137501, 0.013793868944048882, 0.01144531648606062, -0.0037644992116838694, 0.01704094372689724, 0.043253012001514435, 0.014896882697939873, -0.06593295931816101, -0.02142821066081524, 0.03289211913943291, 0.01842900551855564, -0.002927943831309676, -0.018317464739084244, -0.012071183882653713, -0.01606186293065548, 0.005353954620659351, -0.0011998373083770275, -0.03432975336909294, -0.0015879060374572873, 0.02855442278087139, 0.021378638222813606, 0.012368625961244106, -0.016656747087836266, -0.02131666988134384, 0.005642101168632507, -0.0030797631479799747, 0.022345323115587234, 0.011656004935503006, 0.005741248372942209, -0.0032098940573632717, 0.009871353395283222, 0.031008319929242134, -0.014760554768145084, -0.05096171423792839, 0.020349984988570213, 0.013533607125282288, -0.010038664564490318, -0.004312907811254263, -0.011959643103182316, -0.019098250195384026, -0.009685452096164227, 0.008594832383096218, 0.0003985256771557033, 0.027786031365394592, 0.0005139393615536392, 0.0022385602351278067, 0.015169537626206875, 0.04360002651810646, 0.028232194483280182, -0.009022404439747334, 0.028851864859461784, -0.0432034395635128, -0.02175043895840645, -0.0066862464882433414, -0.06196706369519234, -0.009357026778161526, -0.03514771908521652, -0.006847360637038946, -0.010199778713285923, 0.015615700744092464, 0.007702506147325039, -0.01529347151517868, 0.015628093853592873, 0.020734179764986038, 0.04548382759094238, 0.0016762091545388103, 0.016681533306837082, -0.020969655364751816, 0.00749181816354394, 0.02098204754292965, -0.023857319727540016, -0.00890466757118702, 0.006401197984814644, 0.006518935319036245, 0.008384143933653831, 0.0119162667542696, 0.019222183153033257, 0.013694721274077892, 0.014004556462168694, 0.006302050314843655, -0.0004267981566954404, 0.02520820125937462, -0.012381020002067089, 0.04994545504450798, -0.027141574770212173, -0.03680843487381935, -0.04275727644562721, 0.021812407299876213, 0.0073492941446602345, 0.04079911485314369, 0.008272603154182434, 0.020387165248394012, 0.00014862413809169084, -0.0026893706526607275, 0.008086701855063438, 0.0009178871405310929, 0.031504057347774506, -0.021614111959934235, -0.002091388450935483, 0.02577829919755459, 0.009592501446604729, 0.04436841979622841, 0.018961921334266663, -0.014525080099701881, 0.030686089769005775, 0.05063948407769203, -0.015057996846735477, -0.0014453817857429385, 0.0023826337419450283, 0.023088928312063217, 0.013719508424401283, 0.000980628770776093, 0.009016208350658417, -0.029421962797641754, -0.032346807420253754, 0.042162392288446426, -0.012436790391802788, 0.05676183104515076, 0.004805545788258314, -0.0014151728246361017, 0.010404270142316818, -0.0056328061036765575, -0.02907494641840458, 0.002037167316302657, 0.022506438195705414, -0.005886871367692947, 0.015281078405678272, -0.006317542400211096, -0.009140142239630222, -0.004114612936973572, -0.024861186742782593, 0.018689267337322235, -0.02761252410709858, 0.017350777983665466, -0.014822522178292274, -0.007764473091810942, 0.042435046285390854, -0.046624019742012024, -0.015789208933711052, -0.02766209840774536, -0.013223771937191486, 0.008712569251656532, 0.00872496236115694, -0.012151741422712803, 0.01380626205354929, -0.008532864972949028, -0.035445161163806915, 0.011686988174915314] \ No newline at end of file diff --git a/cache/text-embedding-3-small77934f95-4140-5ded-bd96-04dfdcd7d1ac b/cache/text-embedding-3-small77934f95-4140-5ded-bd96-04dfdcd7d1ac new file mode 100644 index 0000000000000000000000000000000000000000..23c78aca3181ca12b945188182c06f086cd0338c --- /dev/null +++ b/cache/text-embedding-3-small77934f95-4140-5ded-bd96-04dfdcd7d1ac @@ -0,0 +1 @@ +[-0.006056988146156073, 0.046703040599823, 0.04809572920203209, 0.07919107377529144, -0.029030323028564453, 0.008704294450581074, -0.008494190871715546, 0.0732361301779747, 0.009070475585758686, -0.013842829503118992, 0.013110468164086342, -0.039763618260622025, -0.0711711123585701, -0.07794245332479477, 0.04691914841532707, 0.07539720088243484, -0.029150381684303284, 0.006032976321876049, -0.033424489200115204, -0.01778077334165573, 0.008140016347169876, -0.03553753346204758, -0.029582595452666283, 0.04374958574771881, -0.0003074641863349825, -0.0108113344758749, -0.028598109260201454, -0.03491322696208954, -0.007449675351381302, -0.031095340847969055, 0.05224977806210518, -0.020446088165044785, 0.03039899840950966, 0.030927259474992752, -0.016604192554950714, -0.002416192088276148, -0.017588676884770393, 0.0341208353638649, 0.0201579462736845, 0.032127849757671356, -0.026437044143676758, -0.010979416780173779, 0.04485413059592247, -0.02233101800084114, 0.018621187657117844, 0.00047423396608792245, -0.013710764236748219, 0.0055107190273702145, 0.019149448722600937, 0.04999266564846039, -0.01114149671047926, 0.011225538328289986, -0.023531610146164894, 0.001884929952211678, -0.042813122272491455, -0.022379040718078613, 0.02255913056433201, -0.0032806184608489275, -0.057820528745651245, 0.036161839962005615, 0.041660554707050323, 0.009562717750668526, 0.006429172120988369, -0.029126370325684547, -0.01579979434609413, -0.00918453186750412, 0.0018188974354416132, 0.10497979074716568, 0.041228342801332474, 0.00493743596598506, -0.0004385913780424744, 0.011489668861031532, -0.005192562006413937, 0.026653150096535683, 0.01726451702415943, 0.009496685117483139, -0.07155530154705048, -0.07107506692409515, 0.01919747143983841, 0.009952910244464874, -0.004712325055152178, -0.06838574260473251, -0.025404533371329308, -0.011453650891780853, 0.013290557079017162, -0.0186932235956192, 0.027493564411997795, 0.033112335950136185, -0.023339515551924706, 0.005732828285545111, 0.021046383306384087, 0.012402119114995003, -0.01245014276355505, -0.01971372589468956, -0.007389646023511887, -0.0057838535867631435, -0.009796833619475365, 0.02121446654200554, 0.0129663972184062, 0.002090531401336193, 0.01793684996664524, 0.016652215272188187, 0.019617678597569466, 0.014959380961954594, 0.011423636227846146, -0.0024281980004161596, 0.011243547312915325, -0.03551352024078369, 0.00521657383069396, 0.014263036660850048, -0.09566319733858109, 0.022114910185337067, 0.023183438926935196, 0.029078345745801926, -0.030927259474992752, -0.015727760270237923, -0.052393849939107895, -0.014671238139271736, 0.035609569400548935, -0.007137521635740995, -0.003037498565390706, 0.020638182759284973, -0.03020690381526947, 0.02351960353553295, 0.002402685349807143, 0.01726451702415943, -0.05594760179519653, 0.04768752679228783, -0.0034727132879197598, -0.022030869498848915, 0.013674747198820114, 0.019053399562835693, 0.02414391189813614, 0.0904766395688057, 0.012882355600595474, -0.024408042430877686, -0.02422795258462429, 0.04735136032104492, -6.52353119221516e-05, -0.05143337696790695, -0.001988481031730771, 0.009274575859308243, 0.028406014665961266, -0.00898643396794796, -0.054218750447034836, 0.0342889167368412, 0.015079439617693424, 0.00036055289092473686, 0.0033166364300996065, -0.000374622322851792, -0.015403599478304386, -0.005807865411043167, -0.07621359825134277, 0.06343930214643478, 0.04430185630917549, 0.01134559791535139, -0.009550712071359158, 0.03296826407313347, -0.0506649985909462, -0.0032716142013669014, -0.013890853151679039, 0.024492083117365837, -0.03068714030086994, 0.005066499579697847, -0.005936929024755955, 0.029462536796927452, 0.0053126211278140545, -0.03647399693727493, -0.10392327606678009, -0.0034877208527177572, -0.055995628237724304, -0.004925430286675692, 0.020181957632303238, 0.0019014381105080247, -0.045982684940099716, -0.01829702779650688, -0.015643717721104622, -0.06588850915431976, -0.006357136648148298, -0.022511105984449387, -0.015139469876885414, 0.022739218547940254, -0.017072422429919243, -0.03647399693727493, -0.0456705316901207, 0.023183438926935196, 0.05820471793413162, -0.02977469004690647, 0.01730053499341011, 0.0013454137369990349, 0.026100877672433853, 0.026028841733932495, 0.044517964124679565, 0.04485413059592247, 0.003886917605996132, 0.023327508941292763, 0.03575364127755165, -0.003997972700744867, -0.040123794227838516, 0.003148553427308798, 0.007005456369370222, -0.05878100171685219, 0.008782332763075829, -0.03870709612965584, -0.008980430662631989, 0.02224697545170784, 0.009430652484297752, 0.04888812080025673, -0.01245014276355505, 0.02893427573144436, -0.012204021215438843, -0.026989316567778587, 0.001935955137014389, -0.0005785354296676815, -0.002984972670674324, -0.0368821956217289, 0.01245014276355505, -0.02838200330734253, 0.05124128237366676, -0.004745341371744871, 0.028430026024580002, 0.0131825041025877, 0.03753051534295082, -0.03443298861384392, 0.006225071381777525, 0.016063924878835678, 0.008656270802021027, 0.06103811413049698, 0.009730800986289978, -0.05661993473768234, 0.004889412317425013, -0.02133452519774437, -0.010931393131613731, -0.05292211100459099, -0.05032883211970329, 0.0010917886393144727, -0.0080139534547925, -0.04446994140744209, -0.026965303346514702, -0.007251577917486429, -0.06708910316228867, 0.0027388513553887606, 0.01096741110086441, -0.017528647556900978, -0.026653150096535683, 0.016688233241438866, 0.027253445237874985, 0.0026322987396270037, -0.03923535719513893, 0.023387538269162178, 0.00783986784517765, 0.02141856774687767, 0.012774302624166012, -0.004244093783199787, 0.0001744610781315714, -0.0066092610359191895, 0.016616197302937508, 0.052633967250585556, 0.024167923256754875, 0.020890306681394577, 0.03724237531423569, -0.0323919802904129, -0.1087256446480751, -0.018657205626368523, 0.03611381724476814, 0.014311060309410095, -0.004892413970082998, 0.012474154122173786, -0.011171511374413967, -0.012438137084245682, -0.006201059557497501, -0.005993957165628672, -0.014875339344143867, -0.035729628056287766, 0.022102905437350273, 0.020097915083169937, 0.030038820579648018, -0.02948654815554619, -0.04658298194408417, 0.04896015673875809, -0.025668663904070854, -0.026461055502295494, 0.010931393131613731, -0.008224057964980602, 0.0019689714536070824, -0.0017378574702888727, -0.0028739178087562323, 0.014911357313394547, -0.017948854714632034, -0.027301469817757607, -0.011225538328289986, 0.04960847645998001, 0.003601777134463191, 9.253002644982189e-05, 0.058492857962846756, 0.006723317317664623, 0.0034727132879197598, -0.06079799681901932, 0.055131200700998306, 0.056860052049160004, 0.00841014925390482, 0.0432453379034996, 0.0062430803664028645, 0.011207529343664646, -0.005843883380293846, 0.005729827098548412, 0.01553566474467516, -0.05902111902832985, -0.003967957571148872, 0.033904727548360825, 0.03971559554338455, 0.007923909462988377, -0.016604192554950714, -0.009310593828558922, -0.050809066742658615, -0.043053239583969116, 0.004256099928170443, -0.010223044082522392, 0.013986900448799133, -0.014791297726333141, -0.011231541633605957, -0.009976922534406185, -0.03376065567135811, -0.01718047633767128, 0.04314928874373436, -0.005219575017690659, 0.02438403107225895, 0.003397676395252347, -0.007959927432239056, -0.021826768293976784, 0.008884383365511894, 0.015235517174005508, -0.0498005710542202, -0.032920241355895996, -0.04984859377145767, -0.024924296885728836, 0.06002961844205856, -0.016964370384812355, 0.01888531818985939, -0.03570561483502388, -0.01476728543639183, 0.010847351513803005, -0.008524205535650253, -0.03772260993719101, 0.0410122349858284, -0.024239959195256233, 0.015235517174005508, 0.017624694854021072, 0.02059015817940235, 0.04999266564846039, 0.033784668892621994, 0.01776876673102379, 0.016063924878835678, 0.0004862399073317647, 0.0249002855271101, -0.048864107578992844, 0.01990582048892975, -0.017996879294514656, -0.013818818144500256, 0.0432453379034996, -0.05724424123764038, 0.04999266564846039, 0.01407094206660986, -0.007401651702821255, 0.004427184350788593, 0.0437735952436924, -0.004955444950610399, 0.017444606870412827, 0.07419660687446594, 0.008830356411635876, 0.002882922301068902, 0.008998439647257328, -0.013146486133337021, -0.02605285309255123, 0.008842363022267818, -0.042212825268507004, 0.019485613331198692, 0.059837523847818375, -0.007353628054261208, -0.02319544367492199, 0.0011938390089198947, 0.04389365762472153, -0.009178528562188148, -0.008134013041853905, 0.01458719652146101, 8.404146501561627e-05, 0.03349652513861656, 0.0033706629183143377, -0.0273975171148777, -0.042020730674266815, 0.01136360689997673, 0.027805719524621964, 0.017120447009801865, -0.0016328055644407868, 0.027613623067736626, -0.027565600350499153, -0.006105012260377407, 0.029390500858426094, 0.0603177584707737, 0.020061897113919258, -0.022619159892201424, -0.05023278295993805, -0.01300241518765688, -0.06665688753128052, 0.005231581162661314, -0.014106960035860538, -0.002030501840636134, 0.009652762673795223, -0.04783159866929054, -0.034625083208084106, 0.003499726764857769, -0.03551352024078369, 0.006951429881155491, 0.018381068482995033, 0.0065732430666685104, 0.008866374380886555, -0.03582567721605301, 0.00823606364428997, 0.009298588149249554, -0.026413030922412872, 0.006915411911904812, -0.0027493564411997795, 0.01245014276355505, -0.03316035866737366, 0.027133386582136154, -0.015847818925976753, 0.0408441498875618, 0.006029975134879351, -0.031335461884737015, -0.023783734068274498, -0.055995628237724304, 0.0007908901898190379, 0.03186371922492981, 0.007275589741766453, -0.0017963863210752606, 0.029870737344026566, 0.02442004904150963, 0.008260075002908707, 0.05830076336860657, -0.023735711351037025, 0.013434628024697304, -0.033352456986904144, -0.012990409508347511, -0.014142978005111217, -0.0313594713807106, -0.00953870639204979, 0.011447647586464882, 0.01935354806482792, -0.014287048950791359, -0.028237931430339813, -0.025428546592593193, 0.020446088165044785, -0.022991342470049858, -0.04185264930129051, -0.020578153431415558, -0.016880327835679054, -0.0005402665701694787, -0.03340047970414162, 0.003499726764857769, 0.04180462658405304, 0.02514040283858776, 0.032079827040433884, 0.05839681252837181, 0.030903246253728867, 0.020806265994906425, -0.034384965896606445, 0.008938410319387913, 0.005675800144672394, 0.0016027907840907574, -0.004181062802672386, 0.005654789973050356, 0.004688313230872154, -0.0391152985394001, 0.005576751660555601, 0.0060089644975960255, -0.0005372650921344757, -0.0004749843501485884, -0.04161253198981285, -0.005219575017690659, -0.029006311669945717, -0.022499101236462593, -0.004832384176552296, -0.06267092376947403, 0.04389365762472153, -0.027661647647619247, -0.00817603338509798, 0.03289623185992241, -0.03702626749873161, -0.034937236458063126, -0.05988554656505585, 0.030735164880752563, 0.020794259384274483, -0.004796366207301617, -0.010763309895992279, 0.019533637911081314, -0.0012786308070644736, -0.0799594521522522, -0.013830823823809624, 0.007317610550671816, 0.018104933202266693, 0.03630591183900833, 0.002570768352597952, 0.030855223536491394, -0.032992277294397354, 0.023783734068274498, -0.055083177983760834, -0.005909916013479233, -0.020758241415023804, -0.056427840143442154, -0.001574276713654399, -0.0527300164103508, 0.008170031011104584, -0.0115016745403409, 0.018176967278122902, -0.029006311669945717, 0.024432053789496422, 0.0008591738878749311, 0.017948854714632034, 0.027133386582136154, 0.003622787306085229, -0.026268960908055305, 0.007761829532682896, -0.04209276661276817, -0.0039019251707941294, -0.023615650832653046, 0.0032776170410215855, -0.03277616947889328, -0.020434081554412842, 0.042621027678251266, -0.008860371075570583, 0.017396582290530205, 0.010397129692137241, -0.0379147045314312, 0.021910810843110085, -0.038178835064172745, -0.0029609608463943005, 0.00046748065506108105, 0.0263650082051754, 0.008260075002908707, 0.05878100171685219, -0.025980819016695023, 0.013950883410871029, -0.016736257821321487, -0.006915411911904812, -0.011693769134581089, 0.01662820391356945, 0.03392874076962471, -0.010763309895992279, -0.012378106825053692, 0.02624494768679142, 0.03712231665849686, -0.0016328055644407868, 0.007431666366755962, -0.008326107636094093, 0.01745661348104477, -0.027925778180360794, -0.017036404460668564, 0.0330883264541626, 0.011021438054740429, 0.018669210374355316, -0.0273975171148777, 0.006513213273137808, 0.012582208029925823, -0.036161839962005615, 0.007629764266312122, 0.009754812344908714, -0.019641689956188202, 0.008878380060195923, -0.03983565419912338, 0.03147953003644943, -0.017996879294514656, -0.0175766721367836, -0.011843843385577202, -0.024432053789496422, 0.0064831986092031, 0.01112348772585392, -0.008224057964980602, -0.012522177770733833, 0.02850206196308136, -0.008680283091962337, -0.007617758587002754, -0.007725811563432217, -0.010126996785402298, -0.018381068482995033, -0.0401478074491024, 0.007389646023511887, -0.008674279786646366, 0.001995984697714448, 0.024444060400128365, 0.03669010102748871, 0.01742059551179409, 0.012954391539096832, 0.0349852591753006, 0.006855382118374109, 0.02260715328156948, -0.0361858531832695, 0.0005826624692417681, 0.02746955305337906, -0.009832851588726044, 0.006423168815672398, -0.026340996846556664, 0.011525686830282211, -0.0401478074491024, -0.028766192495822906, -0.04072409123182297, -0.02303936704993248, 0.01836906373500824, 0.002137054456397891, 0.022415058687329292, 0.014395101927220821, -0.04002774879336357, 0.0263650082051754, 0.0161119494587183, 0.027613623067736626, 0.0016057922039180994, 0.0282619446516037, -0.054650962352752686, 0.02960660681128502, 0.007089497987180948, -0.01023504976183176, 0.03849099203944206, -0.0015112456167116761, -0.00366180669516325, 0.02557261660695076, -0.0011675760615617037, 0.03217587620019913, -0.0204220749437809, 0.013242533430457115, 0.006867388263344765, 0.01207195594906807, 0.0028994304593652487, -0.037746623158454895, -0.02751757577061653, -0.03625788912177086, -0.029990795999765396, 0.009958913549780846, -0.008518202230334282, 0.012834331952035427, -0.0018969358643516898, 0.03203180432319641, -0.004133039154112339, 0.00448421249166131, 0.03522538021206856, -0.0032175874803215265, 0.00555273937061429, -0.005060496740043163, -0.040796127170324326, -0.0007090998697094619, 0.01694035716354847, 0.003934941254556179, 0.015547670423984528, 0.008242066018283367, -0.004547243472188711, 0.016256019473075867, 0.023891787976026535, -0.02953457087278366, 0.010847351513803005, 0.013230527751147747, 0.023663675412535667, 0.03383269160985947, -0.00046110249240882695, 0.0037008258514106274, 0.0007961427909322083, -0.04951242730021477, 0.047087233513593674, 0.04591065272688866, -0.002782372757792473, 0.009550712071359158, -0.0015532663092017174, 0.035849686712026596, -0.07539720088243484, -0.007995945401489735, 0.04535837844014168, 0.0043821618892252445, 0.012654243037104607, 0.00017493005725555122, -0.009484679438173771, 0.009928898885846138, 0.03361658379435539, 0.010319091379642487, 0.006507210433483124, 0.04041193798184395, -0.044205810874700546, 0.015079439617693424, -0.020097915083169937, -0.0233515202999115, 0.017528647556900978, -0.0429091714322567, 0.0144311198964715, 0.01844109781086445, -0.0144311198964715, -0.003556754905730486, 0.03195976838469505, 0.027565600350499153, -0.0034907222725450993, -0.014971386641263962, 0.004361151717603207, 0.055515389889478683, -0.059789497405290604, -0.0339527502655983, 0.03416885808110237, 0.03486520051956177, -0.04137241095304489, -0.02086629532277584, -0.022463083267211914, 0.0021115418057888746, -0.05791657418012619, -0.014899350702762604, 0.030038820579648018, -0.029462536796927452, 0.005645785480737686, 0.009310593828558922, -0.019929833710193634, -0.010847351513803005, -0.00703547103330493, 0.007443672511726618, 0.008326107636094093, -0.04478209465742111, -0.018357057124376297, -0.01766071282327175, 0.004523231647908688, -0.018981365486979485, 0.004814375191926956, -0.03649800643324852, 0.005162546876817942, 0.032488029450178146, 0.015823807567358017, 0.04233288764953613, 0.03138348460197449, -0.011393621563911438, -0.005936929024755955, 0.006567240227013826, -0.004334138240665197, 0.008524205535650253, 0.009862866252660751, 0.014239025302231312, -0.02267918922007084, -0.020482106134295464, -0.012882355600595474, -0.022823261097073555, -0.003943945746868849, -0.019149448722600937, -0.03666609153151512, -0.031215401366353035, -0.009316596202552319, 0.02339954487979412, 0.030615104362368584, 0.02898229844868183, 0.009118499234318733, -0.017708737403154373, 0.010000933893024921, 0.008782332763075829, 0.0013784300535917282, -0.017948854714632034, -0.0033676614984869957, -0.02243907004594803, 0.006441177800297737, -0.03625788912177086, 0.006957432720810175, -0.031095340847969055, 0.004058002028614283, -0.001788882538676262, 0.013158491812646389, -0.0332564078271389, -0.008230060338973999, 0.025068368762731552, -0.008800341747701168, 0.02612488903105259, 0.017432600259780884, -0.03673812747001648, -0.019941838458180428, -0.017036404460668564, 0.002152061788365245, -0.014779292047023773, 0.007077491842210293, -0.028165895491838455, 0.004076011013239622, -0.03736243396997452, 0.023615650832653046, -0.0009492183453403413, -0.012618225067853928, -0.0009747308795340359, -0.021430572494864464, 0.019221482798457146, -0.007329616229981184, -0.007425663527101278, 0.029006311669945717, 0.021790750324726105, 0.015055428259074688, -0.0009822346037253737, 0.009754812344908714, 0.02181476354598999, -0.03863506019115448, -0.018633192405104637, 0.0065732430666685104, 0.026100877672433853, -0.01407094206660986, -0.026989316567778587, 0.0008974427473731339, 0.0224030539393425, -0.011657752096652985, -0.013782800175249577, 0.007719808723777533, -0.0157637782394886, -0.0012568701058626175, -0.011351600289344788, 0.03717033937573433, -0.019737737253308296, -0.04490215331315994, -0.0017663715407252312, -0.018597176298499107, 0.0001571087632328272, -0.024179929867386818, -0.021202459931373596, -0.007587743457406759, 0.0010362612083554268, -0.010030948556959629, 0.0186091810464859, -0.0014557181857526302, -0.009892880916595459, 0.03313634917140007, -0.011621734127402306, -0.03644998371601105, -0.020518122240900993, 0.024528101086616516, 0.030615104362368584, -0.008200045675039291, 0.04005176201462746, 0.05023278295993805, 0.0014212011592462659, -0.014647226780653, 0.001722850021906197, -0.03138348460197449, -0.007911903783679008, 0.006053986959159374, 0.013686752878129482, 0.02066219411790371, -0.09018849581480026, -0.0023846765980124474, 0.011291570961475372, 0.02948654815554619, -0.034937236458063126, 0.02431199513375759, -0.014575190842151642, 0.00394094455987215, 0.03380868211388588, -0.012318077497184277, 0.002765864599496126, 0.029918761923909187, 0.023327508941292763, -0.043485455214977264, -0.005786855239421129, -0.0052495901472866535, 0.012228032574057579, -0.02727745845913887, 0.056908078491687775, -0.005279604811221361, -0.03565759211778641, -0.01116550900042057, 0.02212691679596901, -0.008866374380886555, -0.01498339232057333, 0.00038343918276950717, 0.006327121518552303, 0.03183970972895622, -0.014731268398463726, -0.028670145198702812, 0.04884009808301926, -0.0012110975803807378, 0.013950883410871029, 0.022967331111431122, -0.021646680310368538, -0.041228342801332474, -0.024804238229990005, 0.0075157079845666885, 0.028165895491838455, -0.028718167915940285, -0.02948654815554619, -0.02224697545170784, 0.028838228434324265, 0.026989316567778587, -0.0032175874803215265, 0.053498394787311554, -0.028165895491838455, 0.03155156597495079, 0.011459654197096825, -0.008482185192406178, 0.02267918922007084, -0.004790363367646933, -0.02169470302760601, -0.00035004771780222654, 0.011789816431701183, -0.015439617447555065, -0.005753838922828436, -0.01100342907011509, -0.019221482798457146, -0.0029609608463943005, 0.009274575859308243, -0.013482651673257351, 0.01852514035999775, 0.0036708111874759197, 0.001725851441733539, 0.024636154994368553, 0.02228299342095852, 0.003457705955952406, 0.035729628056287766, -0.022535117343068123, -0.029198406264185905, 0.016652215272188187, 0.02758961170911789, 0.003649800783023238, 0.009190534241497517, 0.002458212897181511, 0.001833904767408967, -0.0052495901472866535, -0.002845403738319874, -0.0131825041025877, 0.037506505846977234, 0.006711311172693968, -0.019149448722600937, -0.03839494287967682, 0.026893269270658493, -0.01413097232580185, -0.026292972266674042, -0.0016132959863170981, 0.01007897313684225, -0.03241599351167679, -0.0036918213590979576, 0.027781706303358078, -0.027973800897598267, 0.0432453379034996, -0.007419660687446594, -0.0349852591753006, 0.01043314766138792, -0.022222964093089104, 0.024047864601016045, -0.002512239385396242, 0.014491149224340916, -0.013962889090180397, 0.008686285465955734, 0.012023932300508022, 0.037554528564214706, -0.0069394237361848354, -0.020638182759284973, -0.01916145347058773, 0.03056708164513111, 0.007953924126923084, 0.03596974536776543, 0.024287983775138855, -0.037194352596998215, -0.002309639472514391, -0.02751757577061653, 0.00044872137368656695, 0.0050875102169811726, 0.0009844857268035412, 0.031575579196214676, 0.03863506019115448, 0.030134867876768112, 0.04197270795702934, -0.007365634199231863, 0.02922241762280464, -0.01916145347058773, 0.014515161514282227, 0.005267599131911993, -0.010925390757620335, 0.018477115780115128, -0.020962342619895935, -0.004676307085901499, 0.005039486568421125, 0.004733335226774216, 0.003199578495696187, 0.011609727516770363, -0.005522724706679583, 0.019053399562835693, -0.02569267526268959, 0.03368861973285675, -0.015427611768245697, 0.03107132948935032, 0.011483665555715561, -0.012498166412115097, -0.003343649674206972, 0.021514615043997765, 0.01591985486447811, -0.003979963716119528, 0.031023306772112846, 0.019617678597569466, -0.019065406173467636, 0.014731268398463726, 0.01223403587937355, -0.00845217052847147, 0.030663128942251205, -0.017912838608026505, -0.0249002855271101, 0.01888531818985939, -0.026076866313815117, -0.002623294247314334, 0.0021805758588016033, -0.007977936416864395, 0.007029468193650246, 0.014203007332980633, 0.028862239792943, -0.02236703597009182, -0.025524593889713287, 0.02224697545170784, -0.018585169687867165, -0.011315583251416683, 0.01845310442149639, 0.016256019473075867, -0.02019396238029003, 0.016880327835679054, 0.01631605066359043, -0.014743274077773094, -0.06262289732694626, -0.018621187657117844, 0.015667730942368507, -0.030591093003749847, -0.015643717721104622, -0.007959927432239056, -0.02806984819471836, 0.03589770942926407, 0.03318437188863754, -0.011819832026958466, -0.011729787103831768, -0.015979884192347527, 8.418216020800173e-05, -0.010625242255628109, 0.010925390757620335, 0.022150928154587746, 0.030182890594005585, 0.018080919981002808, 0.01955764926970005, -0.027877753600478172, -0.013158491812646389, -0.0031125356908887625, 0.029006311669945717, -0.02802182547748089, 0.011999920010566711, 0.00825407262891531, -0.013770794495940208, -0.04060403257608414, -0.02121446654200554, -0.02283526584506035, -0.01173579040914774, -0.034336939454078674, -0.004169057123363018, -0.04747142270207405, -0.01100342907011509, 0.017828796058893204, 0.03464909642934799, -0.006429172120988369, 0.02434801310300827, -0.01804490201175213, -0.033904727548360825, 0.04326934739947319, -0.013194509781897068, 0.021130425855517387, 0.001463221968151629, 0.0036347932182252407, 0.006225071381777525, -0.01151968352496624, 0.007137521635740995, -0.001228356035426259, 0.02588477171957493, 0.029366489499807358, 0.00224660849198699, -0.0026398024056106806, 0.010907381772994995, 0.0019014381105080247, 0.01884930022060871, -0.009052466601133347, 0.010535198263823986, 0.022943319752812386, 0.030783187597990036, -0.00547169940546155, 0.00971879530698061, 0.015403599478304386, -0.003295626025646925, 0.005894908215850592, 0.01043314766138792, -0.0016057922039180994, 0.028357991948723793, -0.002675820142030716, -0.00841615255922079, -0.015151475556194782, -0.02081827074289322, -0.005141536705195904, 0.051289305090904236, 0.02648506686091423, 0.01856115832924843, -0.02137054316699505, 0.012522177770733833, -0.009604739025235176, 0.005408668424934149, 0.024876274168491364, -0.015883836895227432, 0.007197550963610411, -0.009028454311192036, 0.014227019622921944, 0.04149246960878372, -0.018501127138733864, -0.014022918418049812, -0.012678255327045918, 0.009196537546813488, 0.0006753331981599331, 0.019101424142718315, -0.0071435244753956795, 0.028886251151561737, 0.02295532636344433, 0.004955444950610399, -0.0027523578610271215, 0.007257580757141113, -0.022751225158572197, 0.0006438176496885717, -0.015439617447555065, 0.003031495725736022, -0.026965303346514702, -0.008122007362544537, -0.006339127663522959, 0.01892133615911007, -0.011225538328289986, 0.006459186784923077, -0.01278630830347538, 0.012414124794304371, 0.029630618169903755, 0.009100490249693394, 0.011771808378398418, -0.0005398913635872304, -0.0278297308832407, 0.007113509811460972, -0.019821779802441597, 0.008326107636094093, 0.0035327430814504623, 0.01721649430692196, 0.0011540694395080209, -0.04009978473186493, 0.0025347506161779165, -0.01868121698498726, -0.033424489200115204, -0.015211504884064198, -0.010949402116239071, -0.02960660681128502, 0.040363915264606476, 0.019113430753350258, -0.02569267526268959, -0.03440897539258003, -0.022463083267211914, 0.007977936416864395, 0.0685778334736824, 0.018501127138733864, -0.01458719652146101, -0.00712551549077034, 0.008470178581774235, -0.0030570081435143948, 0.028454039245843887, -0.06041380763053894, 0.02960660681128502, -0.023855770006775856, -0.02105838991701603, -0.010745301842689514, 0.004235089290887117, -0.007377639878541231, -0.006435174960643053, 0.05071302130818367, 0.01409495435655117, -0.03644998371601105, 0.03666609153151512, -0.04021984338760376, -0.0233515202999115, -0.007797847036272287, -0.026316983625292778, -0.018825286999344826, -0.020854288712143898, 0.03284820541739464, -0.016292037442326546, -0.02426397055387497, -0.02375972270965576, -0.013974894769489765, 0.023459574207663536, 0.010427144356071949, 0.016460120677947998, 0.02874218113720417, 0.04504622519016266, -0.001157070859335363, -0.01300241518765688, -0.01571575365960598, 0.0069754417054355145, -0.01924549601972103, -0.02426397055387497, -0.003916932735592127, 0.01852514035999775, 0.014647226780653, -0.018657205626368523, -0.005186558701097965, -0.0263650082051754, 0.00692741759121418, -0.03099929355084896, -0.02691728062927723, -0.05450689047574997, -0.023447567597031593, 0.004256099928170443, 0.009064472280442715, -0.019137442111968994, 0.001985479611903429, 0.02514040283858776, -0.0204220749437809, -0.0035927726421505213, 0.015847818925976753, 0.019257500767707825, 0.0054176729172468185, -0.008950415998697281, -0.0020214973483234644, -0.008242066018283367, -0.0065792459063231945, -0.0006333124474622309, 0.020001867786049843, -0.030471034348011017, 0.04082014039158821, 0.0349852591753006, -0.0029609608463943005, -0.02347158081829548, 0.009862866252660751, -0.004733335226774216, 0.0019734736997634172, -0.03949948772788048, -0.007257580757141113, -0.02965463139116764, -0.009112495929002762, -0.017756760120391846, -0.01130357664078474, 0.014154983684420586, 0.0547950342297554, 0.03851500153541565, -0.011651748791337013, -0.004058002028614283, 0.038346920162439346, -0.014166989363729954, 0.0066152638755738735, -0.004262102767825127, 0.003283620113506913, 0.011777810752391815, 0.01658017933368683, -0.02869415655732155, 0.0038569029420614243, -0.04295719414949417, 0.02691728062927723, -0.0045802597887814045, -0.021250484511256218, 0.015451623126864433, -0.029558584094047546, 0.00912450160831213, 0.03575364127755165, 0.0171444583684206, 0.010102984495460987, -0.002245107665657997, 0.0075517259538173676, 0.007209557108581066, 0.007071489002555609, -0.02672518603503704, -0.009748809970915318, 0.03215186297893524, -0.048431895673274994, 0.02806984819471836, 0.0194736085832119, 0.0057778507471084595, 0.028093861415982246, -0.03810679912567139, 0.014863332733511925, -0.02098635397851467, -0.015727760270237923, -0.000690715794917196, -0.009586730040609837, -0.028574097901582718, 0.0058588907122612, 0.00861425045877695, -0.019089417532086372, 0.025740699842572212, 0.01391486544162035, 0.010913384146988392, 0.07813455164432526, -0.009466670453548431, 0.01678428053855896, 0.005603764671832323, 0.022583141922950745, -0.008488187566399574, 0.03191174566745758, 0.0487680621445179, -0.0030600097961723804, -0.04576658084988594, -0.010102984495460987, -0.004793365020304918, -0.0037878688890486956, 0.023963823914527893, -0.0278297308832407, 0.039763618260622025, 0.0028574098832905293, -0.0052135721780359745, -0.024179929867386818, 0.008812347427010536, -0.0005233832052908838, 0.014959380961954594, -0.025908783078193665, 0.04132438823580742, -0.007191548123955727, 0.010301082395017147, 0.013590705581009388, 0.018933340907096863, 0.0033886719029396772, 0.04139642417430878, 0.007071489002555609, 0.007635767105966806, -0.043605513870716095, 0.005168550182133913, 0.005879900883883238, -0.01833304576575756, 0.0156797356903553, 0.02751757577061653, -0.0234355628490448, -0.0012733782641589642, -0.03107132948935032, -0.006165041588246822, -0.015175486914813519, 0.0026893268804997206, -0.03697824478149414, -0.011591719463467598, 0.008067980408668518, -0.01571575365960598, 0.0013994404580444098, -0.006519216578453779, -0.0015577685553580523, -0.022991342470049858, 0.0032866215333342552, -0.019941838458180428, 0.008818350732326508, 0.030062831938266754, -0.002513740211725235, -0.008146018721163273, 0.01793684996664524, 0.039643559604883194, 0.004826381336897612, 0.008722303435206413, -0.0008314101723954082, 0.03611381724476814, -0.017792778089642525, 0.01900537684559822, 0.0036467991303652525, -0.017960861325263977, 0.05585155636072159, 0.004967450629919767, -0.01245014276355505, 0.0108113344758749, -0.018188973888754845, 0.012882355600595474, 0.029558584094047546, -0.018417086452245712, 0.0036437977105379105, -0.030663128942251205, -0.010379120707511902, 0.02169470302760601, 0.005795859731733799, -0.012618225067853928, -0.0013694256776943803, 0.0032145860604941845, 0.006747329141944647, -0.03779464587569237, 0.013062444515526295, -0.011063458397984505, 0.0003766858426388353, -0.003190574236214161, -0.018669210374355316, 0.007203554268926382, -0.0108113344758749, -0.014623214490711689, 0.007761829532682896, 0.003283620113506913, 0.0029609608463943005, -0.02562064118683338, -0.015739765018224716, -0.001989981858059764, -0.000281951593933627, 0.009976922534406185, 0.0027073356322944164, -0.015403599478304386, -0.002303636632859707, -0.04831183701753616, 0.014239025302231312, -0.030230915173888206, -0.005093513056635857, -0.026196924969553947, -0.03959553688764572, -0.000704597623553127, 0.011291570961475372, 0.05796459689736366, 0.005498712882399559, 0.031287435442209244, -0.03138348460197449, -0.029246428981423378, 0.032488029450178146, 0.0014512159395962954, 0.0016328055644407868, -0.004640289582312107, 0.012306071817874908, -0.009016448631882668, 0.0249002855271101, -0.009238557890057564, -0.0069394237361848354, -0.024612143635749817, 0.01385483518242836, -0.05176954343914986, -0.00827208161354065, -0.005843883380293846, 0.005609767511487007, 0.0019254499347880483, 0.01191587932407856, -0.028910264372825623, 0.00015457626432180405, -0.013482651673257351, -0.023663675412535667, 0.015307552181184292, -0.0267972219735384, 0.00859023816883564, -0.030471034348011017, -0.00512652937322855, 0.03419287130236626, 0.0307591762393713, -0.02545255795121193, -0.006495204754173756, 0.004217080771923065, -0.00418706564232707, 0.022667182609438896, 0.03419287130236626, -0.0021910809446126223, 0.034625083208084106, 0.008350119926035404, 0.0001120865490520373, -0.02383175864815712, -0.0025497579481452703, -0.013890853151679039, 0.02746955305337906, -0.032488029450178146, -0.03630591183900833, 0.013374598696827888, 0.017204487696290016, -0.009172525256872177, -0.01845310442149639, 0.024432053789496422, -0.024432053789496422, 0.02802182547748089, 0.05911716818809509, 0.009754812344908714, 0.005111522041261196, -0.026100877672433853, 0.049704521894454956, 0.05018476024270058, 0.013974894769489765, 0.02137054316699505, -0.01183784008026123, -0.004021984525024891, -0.006471192929893732, -0.008302096277475357, -0.010973414406180382, -0.006297106854617596, -0.011621734127402306, 0.02802182547748089, -0.012023932300508022, 0.004793365020304918, 0.023891787976026535, 0.030278939753770828, 0.03673812747001648, -0.0016643211711198092, -0.007155530154705048, 0.0003793121431954205, 0.032079827040433884, -0.012834331952035427, -0.07131518423557281, -0.002254112157970667, -0.0046733058989048, 0.021994851529598236, -0.007785841356962919, 0.019101424142718315, 0.03162360191345215, -0.006297106854617596, 0.016568174585700035, -0.0273975171148777, -0.020614171400666237, -0.015451623126864433, -0.005078505724668503, -0.017348559573292732, 0.04137241095304489, -0.0108113344758749, -0.013662740588188171, -0.023387538269162178, 0.00952069740742445, -0.01553566474467516, -0.009256566874682903, 0.025860758498311043, 0.025188427418470383, 0.013014420866966248, -0.009460668079555035, 0.021562637761235237, 0.015583688393235207, -0.013746782205998898, -0.012318077497184277, -0.03234395757317543, 0.026869256049394608, 0.011135494336485863, 0.051961638033390045, -0.00576884625479579, 0.003781865816563368, 0.017672719433903694, 0.013686752878129482, -0.02109440788626671, 0.0100369518622756, 0.01983378641307354, -0.007197550963610411, -0.015979884192347527, -0.0037548525724560022, -0.020494110882282257, 0.0037848674692213535, 0.03952350094914436, 0.04398970305919647, -0.026893269270658493, -0.00430412357673049, -0.015583688393235207, 0.005297613795846701, 0.013986900448799133, -0.006291104014962912, 0.019605673849582672, 0.03568160533905029, 0.010349106043577194, 0.03702626749873161, 0.03589770942926407, -0.012822326272726059, 0.0282619446516037, -0.0033316437620669603, 0.0215386264026165, -0.012582208029925823] \ No newline at end of file diff --git a/cache/text-embedding-3-small783d53d8-52ce-5fc9-b624-ae065995abe4 b/cache/text-embedding-3-small783d53d8-52ce-5fc9-b624-ae065995abe4 new file mode 100644 index 0000000000000000000000000000000000000000..f582355ac6cb1f9b50f39a07d894ff5a77c18406 --- /dev/null +++ b/cache/text-embedding-3-small783d53d8-52ce-5fc9-b624-ae065995abe4 @@ -0,0 +1 @@ +[0.0014403602108359337, 0.002984236925840378, 0.08304992318153381, 0.04436427727341652, -0.019472960382699966, 0.003028601175174117, -0.013084503822028637, 0.09795632213354111, 0.004578393418341875, -0.009399311617016792, 0.007453198544681072, -0.03030967339873314, -0.06478367745876312, -0.023104915395379066, 0.032746750861406326, 0.029268592596054077, -0.029931098222732544, 0.02631097286939621, -0.02358996495604515, -0.00784951914101839, 0.018124286085367203, 0.003948420751839876, 0.004670079331845045, 0.03560972586274147, -0.00927509181201458, 0.024702029302716255, -0.06024077162146568, -0.07836505770683289, -0.021377665922045708, 0.004344741348177195, 0.0768507570028305, -0.04606786370277405, 0.04102808237075806, 0.0702730119228363, -0.0035432269796729088, 0.03809412568807602, -0.02735205553472042, 0.03407176584005356, 0.02038390561938286, 0.009115380235016346, 0.014717109501361847, -0.020372075960040092, 0.007453198544681072, 0.0038922259118407965, 0.005983262322843075, 0.011505135335028172, 0.02328237146139145, -0.06289079785346985, -0.007376300171017647, 0.02832215465605259, -0.03513650596141815, 0.018254421651363373, -0.020336585119366646, -0.034994542598724365, -0.010440393351018429, -0.01669279858469963, 0.020963599905371666, 0.013403926976025105, -0.012563963420689106, -0.023116745054721832, -0.01440951693803072, -0.02084529399871826, -0.020880786702036858, 0.03317264840006828, -0.015746360644698143, -0.04284997656941414, -0.026381956413388252, 0.05565054714679718, 0.00451332563534379, -0.009653666988015175, -0.0029398726765066385, 0.049262091517448425, 0.01152288168668747, 0.022040173411369324, 0.018751300871372223, -0.027990899980068207, -0.04187987744808197, -0.0026722082402557135, -0.0023099000100046396, -0.02531721442937851, -0.025672128424048424, -0.016030291095376015, -0.029789132997393608, 0.023400677368044853, 0.01430304255336523, 0.03130343183875084, 0.0012074477272108197, 0.037975821644067764, -0.01051729079335928, 0.03007306344807148, 0.003844904014840722, 0.0034929474350064993, 0.005885660648345947, -0.0054627214558422565, 0.016964899376034737, -0.051060326397418976, -0.008985244669020176, -0.014492330141365528, -0.0014965549344196916, 0.006749285385012627, 0.043985702097415924, 0.024631045758724213, -0.0336458683013916, -0.03127977252006531, -0.011913287453353405, 0.038756631314754486, -0.0016089443815872073, 0.007748960517346859, 0.01727249100804329, 0.002269972115755081, -0.03989235684275627, 0.023873895406723022, -0.010836713947355747, 0.013179147616028786, -0.03586999699473381, 0.02482033334672451, -0.03589365631341934, -0.05867914855480194, 0.045239731669425964, 0.018491029739379883, 0.013581383973360062, -0.022276781499385834, -0.02356630377471447, 0.007488689851015806, 0.013226469978690147, 0.02657124400138855, -0.030901197344064713, -0.010783476755023003, -0.017106864601373672, -0.04483749717473984, -0.005572153255343437, 0.02709178440272808, -0.03837805613875389, -0.0005656445282511413, 0.02728107199072838, -0.026452939957380295, 0.0021191337145864964, -0.00783768855035305, -0.013285622000694275, -0.06194436177611351, -0.0017080246470868587, 0.009499870240688324, 0.05924701318144798, -0.03343291953206062, -0.03407176584005356, 0.023530812934041023, -0.008204433135688305, -0.009653666988015175, -0.010038156993687153, -0.012457489036023617, -0.006376625504344702, -0.023388845846056938, -0.06279615312814713, 0.017367135733366013, 0.01595930941402912, 0.037455279380083084, -0.005669754464179277, 0.08513209223747253, -0.01763923652470112, -0.03679277375340462, -0.0015897199045866728, 0.05763806775212288, -0.03882761299610138, 0.01379433274269104, -0.016976729035377502, -0.058584507554769516, -0.04043655842542648, -0.022667188197374344, -0.09066875278949738, -0.031185129657387733, -0.028771711513400078, -0.02579043246805668, -0.011493305675685406, 0.006731539499014616, -0.027446698397397995, 0.012374675832688808, -0.0021634979639202356, -0.011073322966694832, -0.0333382748067379, -0.03388247638940811, 0.028227509930729866, 0.018088795244693756, -0.006589573808014393, -0.05768539011478424, -0.03714768588542938, 0.0026603778824210167, -0.015462429262697697, 0.012847894802689552, -0.0004170241882093251, 0.047534842044115067, -0.009062143042683601, 0.0591050460934639, 0.01379433274269104, 0.008441043086349964, -0.007873180322349072, 0.014137416146695614, 0.004084471147507429, 0.07382215559482574, -0.04131201282143593, -0.006489014718681574, 0.009239600040018559, -0.011197543703019619, 0.0028319195844233036, -0.009227769449353218, -0.016349714249372482, 0.0032592955976724625, -0.01085445936769247, 0.015143006108701229, -0.0024755266495049, -0.018562013283371925, -0.0014684575144201517, 0.00944663304835558, -0.010458138771355152, 0.03837805613875389, 0.019449299201369286, 0.009973089210689068, -0.047250911593437195, 0.016361545771360397, 0.025411857292056084, -0.00644760811701417, 0.012037507258355618, 0.023164067417383194, 0.012504810467362404, -0.008375975303351879, -0.03859100490808487, 0.030215030536055565, 0.032770413905382156, 0.030262351036071777, 0.011445983313024044, -0.057022884488105774, 0.06691315770149231, -0.012025676667690277, -0.02661856636404991, -0.04363078624010086, 0.006749285385012627, -0.0161722581833601, 0.05243266001343727, 0.020596854388713837, -0.051249612122774124, -0.03603562340140343, -0.029197609052062035, 0.06312740594148636, 0.013380265794694424, -0.000651785172522068, 0.025932397693395615, -0.030498960986733437, 0.0415959469974041, -0.03435569629073143, 0.03818877041339874, 0.021176548674702644, -0.010552782565355301, 0.008186687715351582, 0.009239600040018559, -0.010600104928016663, -0.010138715617358685, -0.028700729832053185, 0.014681617729365826, 0.02014729753136635, 0.011475559324026108, -0.038709308952093124, 0.009363819845020771, 0.0069563183933496475, -0.01666913740336895, -0.030948519706726074, -0.03579901531338692, 0.006595489103347063, 0.045500002801418304, -0.017331644892692566, -0.015852835029363632, 0.01930733397603035, 0.012002015486359596, -0.018845945596694946, 0.021259361878037453, -0.019141705706715584, -0.014468668960034847, 0.021649766713380814, -0.011889626272022724, -0.041714251041412354, -0.0422821119427681, 0.047014303505420685, -0.0008222179021686316, 0.014149246737360954, -0.011215289123356342, 0.006832098588347435, 0.0040963017381727695, 0.002241874812170863, 4.3671083403751254e-05, 0.005365119781345129, -0.004797257017344236, 0.08276599645614624, 0.0419035367667675, -0.056549664586782455, 0.014445008710026741, -0.06166042760014534, -0.0029250846710056067, 0.013179147616028786, 0.023968540132045746, -0.03634321689605713, 0.004273758735507727, 0.04521607235074043, 0.019319163635373116, 0.047771453857421875, -0.0021442733705043793, -0.009641836397349834, 0.021626105532050133, 0.044719189405441284, 0.0152731416746974, 0.02231227420270443, -0.016349714249372482, -0.0065067606046795845, -0.038756631314754486, 0.010440393351018429, 0.040483880788087845, -0.02382657490670681, -0.04064950719475746, -0.009908021427690983, -0.00516695948317647, -0.007547842338681221, 0.009635920636355877, -0.04505044221878052, 0.00010601213580230251, -0.035467758774757385, -0.026949819177389145, 0.01868031732738018, 0.04161960631608963, -0.06099792197346687, 0.022608036175370216, 0.035940978676080704, -0.0028496654704213142, -0.01740262657403946, -0.017260661348700523, -0.015213989652693272, 0.022738169878721237, -0.04034191370010376, -0.050729069858789444, 0.0018144989153370261, -0.029434219002723694, 0.0013826866634190083, -0.027730630710721016, -0.008866939693689346, -0.03475793078541756, 0.017804862931370735, 0.02330603264272213, -0.04708528518676758, -0.00028744354494847357, 0.01529680285602808, -0.047061625868082047, 0.03293604031205177, 0.03407176584005356, 0.01009730901569128, -0.00752418115735054, -0.029765471816062927, 0.044529903680086136, 0.01883411407470703, 0.0017642193706706166, -0.029741810634732246, -0.003759132931008935, 0.023897556588053703, 0.01813611574470997, 0.04758216440677643, 0.0018973122350871563, 0.005412441678345203, -0.01789950765669346, -0.009872530587017536, 0.06047738343477249, -0.007411791943013668, -0.04493213817477226, -0.0171660166233778, 0.03913520649075508, 0.00894975382834673, 0.009559023194015026, -0.03407176584005356, -0.000299089151667431, -0.006696048192679882, -0.025719450786709785, -0.04261336475610733, 0.033456578850746155, 0.01591198705136776, 0.036745451390743256, 0.008015145547688007, 0.034710608422756195, -0.0336458683013916, -6.483653851319104e-05, -0.011818643659353256, 0.020253771916031837, 0.013427588157355785, 0.01171808410435915, 0.004060809966176748, -0.015639886260032654, -0.005785101559013128, 0.026902496814727783, 0.01303718239068985, 0.02659490518271923, -0.015462429262697697, -0.028156528249382973, -0.04192719981074333, -0.007133775856345892, 0.07315964996814728, 0.02884269505739212, 0.02806188352406025, -0.014149246737360954, -0.015474259853363037, -0.0047469777055084705, -0.057306814938783646, -0.010067733004689217, 0.006423947401344776, -0.020999090746045113, -0.013865315355360508, -0.000831090786959976, -0.08286064118146896, -0.011889626272022724, -0.06350598484277725, 0.0109727643430233, -0.021590614691376686, -0.00046915223356336355, -0.026027042418718338, -0.05621841177344322, -0.006287897005677223, 0.03109048493206501, 0.04559464752674103, 0.06483099609613419, -0.07940614223480225, -0.004341783933341503, -0.00826950091868639, 0.041477639228105545, -0.0028186102863401175, 0.007861349731683731, -0.022016512230038643, -0.028132867068052292, -0.04483749717473984, -0.024962300434708595, 0.006968148984014988, 0.00579988956451416, 0.008275416679680347, -0.002277366118505597, 0.015438768081367016, 0.0015852834330871701, -0.014859074726700783, 0.014835414476692677, -0.0018026684410870075, 0.012883385643362999, 0.002488835947588086, -0.01965041644871235, -0.03993967920541763, 0.020052652806043625, 0.024465419352054596, 0.01453965250402689, 0.0066073196940124035, -0.02395670861005783, -0.022489730268716812, 0.027777953073382378, 0.000561577791813761, 0.019118046388030052, -0.008299076929688454, -0.05366303026676178, -0.005036824382841587, 0.05271659046411514, -0.06724441051483154, -0.04864690825343132, 0.015923818573355675, 0.0191535372287035, 0.04694331809878349, 0.034213729202747345, 0.0025420731399208307, 0.03156370297074318, 0.006003965623676777, -0.028369475156068802, 0.008577093482017517, -0.010617850348353386, -0.001790837966836989, -0.03691107779741287, 0.0048475367948412895, 0.015462429262697697, 0.023838404566049576, -0.006128185428678989, -0.0018440750427544117, -0.013096334412693977, -0.042755331844091415, -0.005850169342011213, -0.0305462833493948, 0.010629680939018726, -0.030144046992063522, -0.027872595936059952, 0.014149246737360954, 0.02631097286939621, -0.03684009611606598, 0.011664846912026405, 0.00013697470421902835, -0.03085387498140335, 0.017461778596043587, 0.01429121196269989, 0.04284997656941414, 0.0030374741181731224, -0.01120937429368496, -0.04869423061609268, 0.0036970230285078287, -0.04564196616411209, -0.04157228395342827, -0.0064416928216814995, 0.006684217602014542, 0.0577327124774456, 0.008795957081019878, 0.009221854619681835, -0.009884361177682877, 0.036224909126758575, -0.004826833494007587, -0.02832215465605259, -0.005835381336510181, -0.003087753662839532, -0.010807137936353683, -0.002902902429923415, 0.06345865875482559, 0.00525864539667964, -0.0029147330205887556, -0.014350364916026592, 0.0012917398707941175, 0.016314223408699036, 0.011191627942025661, 0.018384555354714394, -0.022430578246712685, 0.024004030972719193, -0.02959984540939331, 0.04512142762541771, 0.009304667823016644, -0.023968540132045746, 0.02348349057137966, 0.006116354838013649, -0.03551508113741875, 0.021259361878037453, -0.04784243553876877, -0.01140457671135664, -0.007938248105347157, 0.02071516029536724, 0.0029960675165057182, -0.012303692288696766, 0.005013163201510906, -0.011842303909361362, -0.009712819010019302, -0.004885985516011715, 0.03560972586274147, 0.021093735471367836, 0.007778536528348923, -0.031752992421388626, 0.010629680939018726, 0.019981669262051582, -0.004022361245006323, 0.018195267766714096, 0.03904056176543236, 0.025672128424048424, 0.029221270233392715, 0.04308658465743065, -0.00902665127068758, 0.015628056600689888, 0.0047174012288451195, 0.012670437805354595, -0.05465678870677948, 0.013451248407363892, 0.03383515402674675, 0.009434802457690239, 0.001001893193461001, 0.025151588022708893, -0.022454239428043365, -0.024418096989393234, -0.001564580132253468, -0.008648076094686985, 0.008612585254013538, 0.01833723485469818, 0.027659647166728973, -0.010996425524353981, 0.020395737141370773, 0.01020378340035677, 0.02019461803138256, -0.0011009734589606524, -0.018349064514040947, 0.011576118879020214, 0.023873895406723022, -0.010286596603691578, -0.01186005026102066, 0.06511493027210236, 0.004829790908843279, -0.015012871474027634, -0.09128393232822418, -0.005530746653676033, 0.0008436606731265783, -0.04982995614409447, 0.04408034682273865, 0.02957618422806263, 0.03513650596141815, 0.014125585556030273, -0.006761115975677967, -0.012374675832688808, -0.037218671292066574, -0.024773012846708298, 0.009369735606014729, -0.016527172178030014, -0.002256662817671895, 0.007991485297679901, -0.020395737141370773, -0.020230110734701157, 0.020738819614052773, -0.042234789580106735, 3.757677404792048e-06, -0.023897556588053703, -0.01171808410435915, -0.027683308348059654, 0.013723349198698997, 0.03407176584005356, -0.01857384294271469, 0.024489080533385277, -0.02782527357339859, 0.051013004034757614, 0.024134166538715363, 0.02328237146139145, -0.021850885823369026, 0.005311882589012384, 0.036721792072057724, -0.05143890157341957, -0.017651066184043884, 0.010061818175017834, 0.011049662716686726, 0.021756241098046303, 0.0021679343190044165, 0.005356247071176767, -0.016680967062711716, 0.012504810467362404, 0.036485180258750916, 0.00016414783021900803, 0.009269176051020622, 0.00031923793721944094, 0.005501170177012682, -0.026145346462726593, -0.016337884590029716, -0.05091835930943489, -0.0323445163667202, -0.01109106931835413, 0.02936323545873165, -0.0026722082402557135, -0.010091394186019897, 0.046754032373428345, -0.03378783166408539, 0.05195944011211395, 0.018301742151379585, 0.026216330006718636, -0.027446698397397995, 0.04041289910674095, -0.007133775856345892, -0.004143623635172844, -0.011363170109689236, 0.006323388312011957, -0.0059921350330114365, 0.018715810030698776, -0.045026782900094986, 0.014788092114031315, 0.00220490456558764, -0.001804147264920175, -0.021626105532050133, 0.003859692020341754, -0.0011845261324197054, 0.005788059439510107, 0.04005798324942589, -0.030144046992063522, 0.02633463405072689, -0.02053770236670971, 0.009044397622346878, -0.006619150284677744, -0.003907014150172472, -0.013119995594024658, -0.045783933252096176, 0.00902665127068758, 0.013699688948690891, -0.07500520348548889, 0.011812727898359299, 0.057022884488105774, -0.025908738374710083, 0.00979563221335411, -0.0017745710210874677, 0.0010174207855015993, -0.058016642928123474, 0.026145346462726593, 0.029741810634732246, 0.012859725393354893, 0.03241549804806709, -0.04505044221878052, -0.027659647166728973, 0.032770413905382156, -0.011445983313024044, 0.03056994453072548, -0.03551508113741875, -0.010724324733018875, 0.02140132710337639, 0.012386506423354149, 0.032746750861406326, 0.028937337920069695, -0.04261336475610733, -0.023767421022057533, -0.0048830281011760235, 0.005288221873342991, 0.028960999101400375, -0.040010660886764526, -0.046304475516080856, 0.036698129028081894, -0.006199168041348457, 0.014563312754034996, -0.05607644468545914, -0.03435569629073143, 0.030475299805402756, -0.033456578850746155, 0.004776553716510534, 0.03880395367741585, -0.051817476749420166, -0.005320755764842033, 0.03539677709341049, 0.0028171315789222717, -0.03213156759738922, -0.0005996571271680295, 0.015426937490701675, -0.008571178652346134, -0.04632813483476639, 0.01930733397603035, -0.01213806588202715, 0.044269632548093796, -0.02484399452805519, -0.017237000167369843, -0.05058710649609566, 0.022501561790704727, 0.05290587991476059, -0.0072225043550133705, -0.01003224216401577, 0.030049404129385948, -0.022927457466721535, -0.029954759404063225, 0.0013257524697110057, -0.003209016053006053, -0.033243630081415176, 0.014788092114031315, 0.06459438800811768, -0.044790174812078476, -0.0028289619367569685, -0.05498804152011871, 0.012126235291361809, 0.0035757606383413076, -0.06213364750146866, -0.017994150519371033, -0.005128510296344757, -0.025956058874726295, 0.0029738852754235268, 0.012859725393354893, 0.0738694816827774, 0.02222946099936962, -0.012705928646028042, 0.001783443964086473, 0.007394046057015657, -0.024985959753394127, 0.008914262056350708, 0.026902496814727783, 0.009091719053685665, -0.005158086773008108, 0.035444099456071854, 0.038259752094745636, -0.028984660282731056, 0.007867265492677689, -0.0009590077679604292, -0.02077431231737137, -0.0068084378726780415, -0.027635985985398293, 0.014646126888692379, -0.029481541365385056, -0.0005527049652300775, -0.00360237923450768, -0.022146645933389664, 0.015852835029363632, 0.011120645329356194, -0.007689808029681444, -0.021377665922045708, 0.04112272709608078, -0.024985959753394127, -0.007902756333351135, -0.022122986614704132, 0.01666913740336895, -0.018727639690041542, 0.0035787182860076427, -0.022903796285390854, 0.002966491272673011, 0.011978354305028915, -0.022761831060051918, 0.009635920636355877, 0.0239330492913723, -0.04117004945874214, -0.01878679171204567, -0.01516666729003191, -0.029434219002723694, -0.005897491239011288, 0.004696697928011417, 0.014172907918691635, -0.01734347455203533, -0.0014632816892117262, 0.009434802457690239, -0.06113988906145096, -0.01742628775537014, 0.02429979294538498, 0.007536011748015881, -0.008920176886022091, 0.027210090309381485, -0.029765471816062927, -0.005066400393843651, 0.018585674464702606, 0.010073648765683174, 0.040744151920080185, -0.02105824276804924, -0.0012429391499608755, -0.020679667592048645, 0.01153471227735281, -0.021436817944049835, 0.025648467242717743, 0.01516666729003191, 0.03132709488272667, -0.016633646562695503, -0.0025746067985892296, 0.006660556886345148, 0.018632996827363968, 0.059767551720142365, 0.012084828689694405, -0.007068708073347807, -0.027139106765389442, -0.026523921638727188, 0.03904056176543236, -0.012575794011354446, 0.0010344270849600434, -0.0012917398707941175, -0.05247998237609863, -0.030475299805402756, -0.008866939693689346, -0.01540327724069357, 0.00010176056093769148, 0.02283281460404396, -0.010469969362020493, 0.022217629477381706, -0.016255071386694908, -0.00021738494979217649, -0.011990184895694256, 0.005941855255514383, -0.0032711259555071592, 0.00872497446835041, -0.005373992491513491, 0.0026603778824210167, 0.015083854086697102, 0.027020802721381187, -0.009612259455025196, -0.00010610456229187548, -0.0008207391365431249, 0.009032567031681538, -0.02202834188938141, -0.021910037845373154, 0.004356571938842535, -0.06085595861077309, 0.049262091517448425, -0.004179114941507578, -0.005740737542510033, 0.020963599905371666, 0.009103549644351006, -0.01540327724069357, -0.013131826184689999, 0.02006448432803154, -0.07207124680280685, 0.01107923872768879, -0.023033931851387024, 0.017414458096027374, 0.011138390749692917, 0.057496100664138794, 0.022087493911385536, -0.00016507208056282252, 0.014989210292696953, 0.026121685281395912, 0.029008321464061737, 0.03284139558672905, 0.02270267903804779, -0.02168525755405426, 0.016680967062711716, -0.024867655709385872, -0.01907072402536869, 0.03284139558672905, -0.018562013283371925, -0.018822284415364265, 0.029741810634732246, -0.01304901298135519, 0.025435518473386765, 0.024394437670707703, -0.029718149453401566, -0.015734530985355377, -0.0069208270870149136, 0.03714768588542938, 0.061565786600112915, 0.002222650218755007, -0.020372075960040092, -0.034213729202747345, 0.013001690618693829, -0.013013521209359169, 0.02090444788336754, -0.009493955411016941, 0.019733229652047157, -0.0036497011315077543, -0.02121203951537609, -0.0018100624438375235, -0.004667121917009354, -0.009724649600684643, 0.02907930500805378, 0.0009161222842521966, -0.014326703734695911, 0.02157878503203392, 0.06213364750146866, -0.04133567586541176, -0.005743694957345724, 0.018491029739379883, 0.005711161065846682, 0.011369084939360619, -0.013285622000694275, -0.00916861742734909, -0.0288663562387228, 0.030002081766724586, -0.008665822446346283, 0.037739209830760956, 0.002618971047922969, 0.015817344188690186, 3.11012081510853e-05, 0.005081188399344683, -0.047061625868082047, -0.011789066717028618, -0.007855434902012348, 0.03442667797207832, -0.011481475085020065, 0.006210998632013798, -0.0007320105796679854, 0.005261603277176619, -0.0047824690118432045, -0.03814144805073738, 0.000876194448210299, 0.0006828401819802821, 0.011735829524695873, -0.004998375196009874, -0.008139366284012794, 0.02986011654138565, -0.030049404129385948, -0.03982137516140938, -0.005971431732177734, -0.00483274832367897, 0.011735829524695873, -0.012410166673362255, 0.012504810467362404, 0.028677068650722504, -0.023601794615387917, 0.017237000167369843, -0.028653407469391823, 0.01995800994336605, -0.023246880620718002, -0.0198042131960392, 0.012481150217354298, 0.015001040883362293, 0.01172991469502449, 0.04859958589076996, -0.014764430932700634, -0.015604394488036633, -0.00851794146001339, 0.017177848145365715, -0.014941887930035591, -0.005320755764842033, 0.007068708073347807, 0.005968473851680756, -0.022217629477381706, -0.03461596742272377, 0.01952028088271618, -0.004492622334510088, 0.007305317558348179, 0.043772753328084946, 0.018644826486706734, 0.014882735908031464, 0.035704370588064194, -0.01708320342004299, 0.03605928272008896, 0.005563280079513788, 0.04616250842809677, 0.007417707238346338, 0.002565734088420868, 0.04109906405210495, 0.005149213597178459, 0.04062584787607193, 0.012061168439686298, 0.028369475156068802, 0.01776937209069729, 0.02879537269473076, -0.01506019290536642, 0.0016326053300872445, 0.012002015486359596, 0.006500845309346914, 0.043465159833431244, -0.03679277375340462, -0.02586141601204872, 8.267467637779191e-05, 0.011144306510686874, 0.01152288168668747, 0.03255746513605118, -0.0016488722758367658, -0.013865315355360508, -0.016870254650712013, -0.023424338549375534, -0.0015497920103371143, 0.008488364517688751, 0.04152496159076691, 0.0008902431582100689, 0.02390938811004162, -0.03636687621474266, 0.02936323545873165, -0.0025124968960881233, -0.030191369354724884, 0.010126885958015919, 0.009174532257020473, -0.0239330492913723, 0.012516641058027744, -0.00430333474650979, -0.0015172582352533937, 0.040980760008096695, 0.032959699630737305, 0.004844578914344311, -0.022383255884051323, -0.00016433266864623874, -0.05143890157341957, 0.023649116978049278, -0.003031558822840452, 0.015580734238028526, 0.021874545142054558, 0.013131826184689999, 0.007577418349683285, -0.011150221340358257, -0.031752992421388626, 0.014622465707361698, 0.0003641567600425333, -0.01952028088271618, 0.01217355765402317, 0.015379616059362888, 0.013119995594024658, 0.022395087406039238, -0.036508843302726746, -0.015344124287366867, -0.0025376365520060062, -0.010351664386689663, -0.019058892503380775, -0.006057202350348234, -0.0013227948220446706, 0.022170307114720345, 0.01664547622203827, -0.0036349131260067225, 0.03511284664273262, -0.01094910316169262, 0.016527172178030014, 0.028890017420053482, 0.022241290658712387, 0.04590223729610443, 0.018987910822033882, -0.023578133434057236, 0.015604394488036633, -0.001971252728253603, 0.02735205553472042, -0.01805330254137516, 0.004315165337175131, -0.010404901579022408, 0.016941238194704056, -0.0587264709174633, 0.012096659280359745, -0.03605928272008896, 0.004486707039177418, 0.012836064212024212, 0.005779186263680458, -0.004436427727341652, -0.016751950606703758, -0.027257410809397697, 0.013261960819363594, 0.004572478123009205, 0.009937598370015621, 0.01453965250402689, 0.03790483623743057, -0.022193968296051025, 0.006678302306681871, 0.044269632548093796, -0.023708269000053406, 0.004380233120173216, -0.04152496159076691, -0.012114404700696468, -0.020372075960040092, -0.001488421461544931, 0.02780161239206791, 0.004803172312676907, 0.0031646518036723137, -0.022300442680716515, 0.03187129646539688, 0.031232450157403946, 0.0067078787833452225, -0.03281773254275322, 0.01627873256802559, -0.02296295017004013, 0.00221081986092031, -0.019319163635373116, -0.021543292328715324, 0.029978420585393906, -0.02285647578537464, -0.0005660142051056027, -0.003590548876672983, -0.0034929474350064993, 0.003942505456507206, -0.019662247970700264, -0.0011601258302107453, -0.04682501405477524, 0.012043422088027, -0.020656006410717964, 0.010546867735683918, 0.008435127325356007, -0.03485257551074028, 0.024914978072047234, 0.00014538543473463506, -0.023424338549375534, 0.008600754663348198, 0.017934998497366905, -0.011203458532691002, -0.03435569629073143, -0.005859042052179575, 0.035444099456071854, 0.006648726295679808, 0.008026976138353348, 0.01277691125869751, 0.005027951207011938, 0.009180448018014431, 0.010747984983026981, -0.014338534325361252, -0.02810920588672161, 0.03982137516140938, 0.013202808797359467, -0.011824558489024639, 0.015982970595359802, -0.0015778894303366542, 0.0017168974736705422, -0.014208398759365082, 0.002377925207838416, -0.03684009611606598, 0.02267901785671711, 0.0212948527187109, 0.025885077193379402, 0.01107923872768879, -0.008967499248683453, -0.0260743647813797, 0.07197660207748413, 0.010493630543351173, 0.011593864299356937, 0.004226436838507652, -0.017485439777374268, -0.03213156759738922, 0.01985153555870056, -0.005391738377511501, -0.0033007021993398666, 0.007015470881015062, -0.007589248940348625, -0.00859483890235424, -0.012966198846697807, -0.00688533578068018, 0.031445398926734924, 0.023767421022057533, 0.009062143042683601, 0.021330343559384346, 0.005427229683846235, -0.019378315657377243, 0.008535686880350113, -0.008837363682687283, 0.010606019757688046, -0.032959699630737305, -0.01368785835802555, -0.018668487668037415, -0.028393136337399483, 0.022170307114720345, 0.019579434767365456, 0.016787441447377205, 0.019662247970700264, 0.01033391896635294, 0.026500260457396507, 0.02661856636404991, -0.037502601742744446, 0.008015145547688007, -0.011972439475357533, -0.0020259686280041933, 0.03106682375073433, 0.009659581817686558, -0.019839704036712646, 0.014965549111366272, 0.006554082501679659, -0.008890600875020027, -0.01140457671135664, -0.016314223408699036, -0.008535686880350113, 0.011777237057685852, -0.0326521061360836, -0.01368785835802555, -0.031208788976073265, -0.021235700696706772, -0.027990899980068207, 0.0004798735899385065, 0.018881436437368393, 0.02084529399871826, 0.03809412568807602, -0.0032859141938388348, 0.020999090746045113, -0.0035343540366739035, -0.002398628508672118, -0.003123244969174266, -0.01807696372270584, -0.008600754663348198, 0.01669279858469963, 0.006163676735013723, 0.027233751490712166, 0.025766771286725998, 0.0009235163452103734, 0.016207749024033546, 0.01226820144802332, 0.004622757434844971, 0.007819943130016327, 0.019035233184695244, -0.014184737578034401, -0.0039750393480062485, -0.006500845309346914, 0.024512741714715958, -0.04339417815208435, -0.016136765480041504, -0.02181539312005043, 0.016397036612033844, -0.014610635116696358, 0.011221203953027725, -0.03310166671872139, 0.005444975569844246, -0.008730889298021793, -0.008653991855680943, 0.013853484764695168, -0.011386831291019917, -0.030002081766724586, 0.02555382251739502, 0.045500002801418304, 0.030002081766724586, -0.00017468433361500502, -0.012492979876697063, -0.041004423052072525, -0.01196652464568615, -0.011664846912026405, 0.008813702501356602, 0.004190945532172918, 0.004977671895176172, -0.015438768081367016, -0.03127977252006531, 0.007867265492677689, 0.012717759236693382, 0.005507085472345352, -0.024914978072047234, 0.004575435537844896, -0.03584633395075798, -0.01289521623402834, 0.006382540799677372, -0.00677294610068202, -0.044033024460077286, 0.01669279858469963, -0.013143656775355339, 0.023767421022057533, -0.017852185294032097, 0.010807137936353683, 0.009511700831353664, 0.012741420418024063, -0.013167317025363445, -0.0049835871905088425, -0.03338559716939926, -0.03033333458006382, 0.005116679705679417, 0.035964641720056534, 0.01455148309469223, 0.021306682378053665, -0.0057555255480110645, 0.026429278776049614, 0.016811102628707886, 0.02309308387339115, 0.01758008450269699, -0.01718967780470848, -0.0036763197276741266, -0.009872530587017536, 0.011984270066022873, 0.045547325164079666, 0.014007280580699444, -0.0273757167160511, -0.03061726689338684, -0.009612259455025196, 0.005731864366680384, 0.029481541365385056, 0.009813377633690834, -0.003229719353839755, 0.0018455538665875793, 0.03655616566538811, -0.008476534858345985, -0.011800897307693958, -0.0029783218633383512, 0.020786141976714134, -0.02103458158671856, 0.008222179487347603, 0.0039306748658418655, 0.035183828324079514, 0.03489989787340164, 0.0007349681691266596, 0.005625390447676182, -0.00571411894634366, 0.009683242999017239, -0.030025742948055267, -0.030948519706726074, -0.00039632085827179253, -0.012421997264027596, -0.01692940853536129, 0.0152731416746974, 0.011191627942025661, 0.013959959149360657, 0.0171660166233778, -0.03560972586274147, -0.004809087608009577, -0.003626040183007717, 0.04180889576673508, 0.0014972942881286144, -0.021436817944049835, 0.016385206952691078, -0.04337051510810852, 0.021093735471367836, -0.018514690920710564, -0.01734347455203533, -0.0135340616106987, -0.013131826184689999, -0.009949428029358387, -0.01530863344669342, -0.015391446650028229, 0.0013723348965868354, -0.012126235291361809, 0.022241290658712387, 0.028464119881391525, -0.02730473317205906, 0.007169267162680626, 0.0014447965659201145, 0.0014536695089191198, 0.016266901046037674, 0.00752418115735054, -0.009139041416347027, 0.009990834631025791, 0.003146905917674303, -0.00441572442650795, 0.006080863531678915, -0.020502211526036263, 0.029292253777384758, 0.007098284084349871, -0.029694488272070885, -0.04178523272275925, 0.009842954576015472, -0.0014529300387948751, 0.005649051163345575, 0.06147114187479019, -0.003723641624674201, 0.014267551712691784, 0.04945138096809387, -0.011948778294026852, -0.009529446251690388, -0.010209699161350727, 0.02806188352406025, -0.009700988419353962, -0.016397036612033844, 0.019863365218043327, -0.017852185294032097, 0.00015841743152122945, -0.0007638049428351223, 0.041264694184064865, -0.03584633395075798, 0.03409542515873909, -0.03657982498407364, 0.0002416004572296515, -0.012859725393354893, 0.009505786001682281, -0.05233801528811455, 0.000987105187959969, -0.0040755984373390675, 0.021981019526720047, 0.019969839602708817, -0.04760582745075226, 0.044742852449417114, -0.022513391450047493, -0.004300377331674099, -0.012824233621358871, -0.028440458700060844, 0.017438117414712906, 0.026476601138710976, 0.0021427946630865335, -0.026287313550710678, 0.018171608448028564, 0.01889326609671116, -0.009109464474022388, -0.01002041157335043, -0.0022832814138382673, 0.028203848749399185, -0.0007963387761265039, -0.007340808864682913, 0.0002983497688546777, -0.0014795486349612474, -0.0005515958182513714, -0.023211389780044556, -0.010434477590024471, -0.02369643934071064, -0.04214014858007431, 0.003705895971506834, 0.026429278776049614, -0.04637545719742775, 0.02348349057137966, 0.004986544605344534, -0.021779902279376984, 0.0242761317640543, -0.014220229350030422, 0.0073585547506809235, -0.01920085959136486, -0.03688741847872734, 0.014835414476692677, -0.006731539499014616, 0.003031558822840452, 0.020182788372039795, -0.004069683142006397, 0.0152731416746974, 0.023625455796718597, 0.017698388546705246, 0.01956760324537754, -0.004894858691841364, 0.009641836397349834, -0.03407176584005356, 0.011061493307352066, 0.01439768634736538, 0.0032977445516735315, -0.004063767846673727, 0.056549664586782455, -0.003368727397173643, 0.0002800494839902967, 0.01063559576869011, -0.02531721442937851, -0.013723349198698997, 0.006169592030346394, -0.023992201313376427, 0.02252522110939026, -0.03392979875206947, 0.010813052766025066, 0.012126235291361809, -0.019875196740031242, 0.006601404398679733, -0.002135400427505374, -0.010629680939018726, 0.01303718239068985, -0.005308925174176693, 0.025956058874726295, 0.01455148309469223, 0.01789950765669346, -0.022773662582039833, -0.011712169274687767, -0.01666913740336895, 0.0007379258167929947, -0.04531071335077286, -0.018905097618699074, -0.0019150578882545233, 0.00782585795968771, -0.0323445163667202, 0.04081513360142708, 0.02962350659072399, 0.008866939693689346, -0.02962350659072399, 0.008346399292349815, -0.03407176584005356, 0.08361779153347015, 0.020809803158044815, -0.014362195506691933, 0.010872205719351768, -0.0176628977060318, -0.04869423061609268, -0.0020333626307547092, 0.008559348061680794, 0.018325403332710266, 0.01978055201470852, -0.008695398457348347, 0.014823583886027336, -0.024489080533385277, 0.06085595861077309, -0.0056342631578445435, -0.023897556588053703, 0.047061625868082047, -0.011505135335028172, 0.018869604915380478, -0.007317148149013519, 0.010274766013026237, 0.011197543703019619, -0.003747302573174238, -0.012232709676027298, -0.016740120947360992, 0.001282867044210434, 0.00018780876416713, 0.018514690920710564, 0.006968148984014988, 0.02215847745537758, -0.011499220505356789, -0.04483749717473984, 0.03691107779741287, 0.01943746767938137, 0.02959984540939331, 0.0005771053256466985, 0.02411050535738468, 0.012575794011354446, -0.0303569957613945, -0.017071373760700226, -0.025175247341394424, 0.02732839435338974, 0.01453965250402689, 0.015568903647363186, -0.01503653172403574, -0.01280057244002819, -0.008541601710021496, -0.014752600342035294, 0.02142498828470707, -0.022264951840043068, 0.023081254214048386, -0.05645501986145973, 0.017804862931370735, 0.035491421818733215, -0.006554082501679659, -0.03752626106142998, 0.009996750392019749, -0.0047410624101758, 0.026145346462726593, 0.01737896539270878, 0.01065925695002079, 0.005314840469509363, -0.028416797518730164, 0.0023409549612551928, 0.00884327944368124] \ No newline at end of file diff --git a/cache/text-embedding-3-small83cc408d-be6c-513c-85b9-25da32f314c6 b/cache/text-embedding-3-small83cc408d-be6c-513c-85b9-25da32f314c6 new file mode 100644 index 0000000000000000000000000000000000000000..cba59a594b339e188bf6c1e40aeacfb31b458817 --- /dev/null +++ b/cache/text-embedding-3-small83cc408d-be6c-513c-85b9-25da32f314c6 @@ -0,0 +1 @@ +[-0.025716664269566536, -0.00890810415148735, 0.04920784756541252, 0.03941573575139046, -0.01587509550154209, 0.016159461811184883, 0.03899536654353142, 0.07027573138475418, 0.056873392313718796, -0.017803844064474106, 0.04878747835755348, -0.03417349234223366, -0.0437677837908268, -0.03155237063765526, -0.012981969863176346, 0.02992035076022148, -0.0589505098760128, 0.017878027632832527, -0.005257697775959969, -0.012209233827888966, -0.010490668006241322, 0.00036086785257793963, -0.015467090532183647, 0.026409035548567772, -0.012709966860711575, 0.003804953536018729, -0.03790735453367233, -0.04094884172081947, -0.007541906554251909, -0.021686071529984474, 0.08387588709592819, -0.02221771515905857, 0.04844129458069801, 0.059890154749155045, 0.004586962983012199, 0.020944245159626007, -0.022056985646486282, 0.008889558725059032, 0.014799445867538452, 0.018248941749334335, -0.011659045703709126, -0.04342160001397133, 0.00416041212156415, 0.025617754086852074, 0.004806419834494591, 0.00426550442352891, -0.013278700411319733, -0.03550877794623375, 0.006472439505159855, 0.02083297073841095, -0.0035144048742949963, -0.005838795565068722, 0.018384942784905434, 0.012295780703425407, -0.033580031245946884, 0.00044973252806812525, 0.007405905053019524, 0.0027926689945161343, 0.009501566179096699, 0.03827826678752899, -0.03585496544837952, 0.008432098664343357, -0.017618387937545776, 0.05499409884214401, -0.029178522527217865, -0.009365564212203026, -0.03872336074709892, 0.059098873287439346, 0.018014028668403625, 0.03320911526679993, -0.044633250683546066, 0.02551884390413761, 0.006268437020480633, 0.029203251004219055, 0.009371746331453323, -0.011980503797531128, -0.05578538030385971, 0.013080880045890808, 0.004234595224261284, -0.0255435723811388, 0.007306994404643774, -0.01849621720612049, -0.03558296337723732, 0.011832138523459435, 0.026112305000424385, -0.01980677805840969, 0.004308777861297131, 0.005378244910389185, -0.04483107104897499, 0.02022714540362358, 0.019843868911266327, 0.0017108381725847721, -0.034989502280950546, 0.005062968470156193, 0.0010207847226411104, 0.025642482563853264, -0.027793779969215393, -0.04530089348554611, -0.004673509392887354, -0.00034637906355783343, 0.011591045185923576, 0.010076481848955154, -0.016752922907471657, -0.010484485886991024, 0.007783000357449055, -0.016357282176613808, -0.01624600775539875, 0.02518502250313759, 0.0023738460149616003, -0.009192471392452717, -0.07141319662332535, -0.017865663394331932, -0.017198018729686737, 0.04485579952597618, 0.04443543031811714, 0.0029812166467309, -0.0440150611102581, -0.07873255759477615, 0.007084446493536234, -0.014020527713000774, -0.01206705067306757, -0.013241609558463097, 0.015528908930718899, 0.0031604915857315063, 0.006911353673785925, 0.03963828086853027, -0.03783316910266876, 0.021859165281057358, -0.023590093478560448, -0.03634951636195183, -0.0197820495814085, -0.0044324155896902084, -0.02284826710820198, 0.028683971613645554, 0.011417951434850693, -0.03766007721424103, -0.031379275023937225, 0.004627144895493984, -0.0153929078951478, -0.04097357019782066, -0.01706201769411564, -0.034494947642087936, 0.09762441366910934, -0.021104974672198296, -0.02848615124821663, 0.0005219833692535758, -0.040132831782102585, -0.03427240252494812, -0.027546504512429237, -0.010027026757597923, 0.00013513225712813437, -0.03298656642436981, -0.030068716034293175, -0.003489677095785737, 0.035335686057806015, 0.016147097572684288, -0.03696770593523979, 0.06221454590559006, -0.012641966342926025, -0.055043552070856094, -0.0434957817196846, 0.02982144057750702, 0.02420828305184841, 0.017618387937545776, 0.0059964340180158615, -0.011053220368921757, -0.02932688780128956, -0.055587559938430786, -0.1021742895245552, 0.005940796807408333, -0.013464157469570637, -0.006144799292087555, -0.03303602337837219, 0.017049653455615044, -0.05717012286186218, -0.022650446742773056, 0.008444462902843952, -0.039663009345531464, 0.013810343109071255, -0.031428731977939606, 0.005220606457442045, 0.006398256868124008, 0.01468817237764597, -0.024047553539276123, -0.023911552503705025, 0.05222461000084877, 0.008382643572986126, -0.007838637568056583, 0.06354983150959015, 0.030118171125650406, -0.03320911526679993, 0.03855026885867119, 0.048466023057699203, 0.003928591497242451, 0.008994651027023792, 0.04310014098882675, 0.02347882091999054, 0.01361252274364233, 0.01706201769411564, -0.022205350920557976, -0.007115356158465147, -0.023985736072063446, -0.02177261933684349, 0.0302665363997221, 0.022971905767917633, 0.020301328971982002, -0.030563266947865486, 0.005514246411621571, 0.017420567572116852, 0.015380543656647205, 0.02106788381934166, 0.008265187963843346, 0.006348801776766777, 0.008432098664343357, -0.023800278082489967, -0.03199746459722519, 0.005755340214818716, -0.037511710077524185, 0.002290390431880951, -0.01426780316978693, 0.013204517774283886, 0.006283891852945089, 0.008932831697165966, -0.0024202100466936827, -0.0377342589199543, 0.03548405319452286, -0.03071163222193718, -0.05667557194828987, 0.007881910540163517, 0.0002362641243962571, 0.004076956771314144, -0.022316625341773033, -0.04829292744398117, -0.017989302054047585, -0.02979671210050583, 0.032689835876226425, 0.013365247286856174, 0.024702833965420723, -0.034445494413375854, -0.05351044610142708, -0.022366080433130264, 0.05830759182572365, 0.013575431890785694, -0.026631584390997887, -0.004166594240814447, -0.008710283786058426, 0.038006264716386795, -0.03639897331595421, 0.04683400318026543, 0.0421852208673954, 0.02992035076022148, 0.02853560633957386, -0.01632019132375717, 0.003044581040740013, 0.05741740018129349, -0.037165526300668716, 0.028659244999289513, 0.01430489495396614, 0.042753953486680984, -0.032739292830228806, 0.00944592896848917, -0.006209709215909243, -0.0013978800270706415, -0.04626527056097984, 0.007306994404643774, -0.03330802544951439, 0.004945512395352125, -0.002743213903158903, -0.0033444028813391924, -0.015887457877397537, -0.0009489202057011425, -0.0018715673359110951, 0.03803098946809769, -0.008314643055200577, -0.037585895508527756, 0.0007936002220958471, -0.024727562442421913, -0.046685636043548584, -0.05301589146256447, 0.05885159969329834, 0.016110006719827652, -0.033505845814943314, -0.032195284962654114, -0.005174242425709963, 0.013006697408854961, 0.03822880983352661, 0.001802021055482328, -0.008500099182128906, -0.027051953598856926, 0.03298656642436981, -0.013686705380678177, -0.05741740018129349, 0.006228254642337561, -0.026161760091781616, 0.03914372995495796, 0.02418355643749237, 0.03071163222193718, -0.019979869946837425, 0.0343218557536602, 0.03867390751838684, 0.052076246589422226, 0.012240143492817879, -0.013241609558463097, -0.0012016049586236477, 0.017890391871333122, 0.05499409884214401, -0.040652111172676086, -0.005950069520622492, 0.01674055866897106, -0.041937943547964096, -0.032764021307229996, -0.04844129458069801, 0.012450327165424824, 0.001900931354612112, 0.006905171554535627, 0.010552487336099148, 0.006800079718232155, 0.009099743328988552, 0.014205984771251678, -0.022724630311131477, -0.0030430355109274387, -0.0263348538428545, -0.025790847837924957, -0.030439628288149834, 0.06770406663417816, -0.03130509331822395, 0.010639033280313015, 0.020313693210482597, -0.009897206909954548, -0.0038853182923048735, -0.03723970800638199, -0.04569653421640396, 0.017148563638329506, -0.05445009097456932, -0.03936627879738808, -0.05326316878199577, 0.012808877043426037, -0.02809051051735878, 0.021104974672198296, 0.010002299211919308, -0.0024696653708815575, -0.01627073623239994, -0.007121537812054157, 0.0217478908598423, -0.004546780604869127, -0.003199128434062004, 0.003857499687001109, 0.024492651224136353, 0.007541906554251909, 0.02429482899606228, -0.007344086188822985, -0.04905948415398598, 0.010793580673635006, -0.0013754706596955657, -0.0014535170048475266, -0.035310957580804825, 0.03288765624165535, 0.008234278298914433, -0.018323123455047607, 0.03805571794509888, 0.002332118107005954, 0.016814742237329483, -0.01016920991241932, 0.011436497792601585, 0.004352050833404064, -0.003823499195277691, 0.003808044595643878, 0.018545672297477722, 0.04010810703039169, -0.02015296369791031, 0.017259838059544563, 0.04990021884441376, 0.026161760091781616, 0.004138775635510683, -0.05578538030385971, -0.034470222890377045, 0.0345938578248024, 0.03427240252494812, 0.023998098447918892, 0.010855400003492832, 0.05534028261899948, -0.026433764025568962, -0.020276600494980812, -0.026854133233428, -0.005211333744227886, 0.016097642481327057, 0.036225877702236176, -0.025790847837924957, -0.009396473877131939, -0.020968971773982048, 0.016777651384472847, -0.01536817941814661, 0.05037004500627518, -0.019262770190835, 0.017099108546972275, -0.044138699769973755, 0.0345938578248024, -0.01580091193318367, 0.05148278549313545, 0.0003307311562821269, -0.04119611904025078, -0.034396037459373474, 0.003984228242188692, -0.042432498186826706, 0.016344917938113213, 0.0034618587233126163, 0.010342302732169628, -0.012011413462460041, -0.020919516682624817, -0.04342160001397133, 0.015838002786040306, -0.061769451946020126, 0.023021360859274864, -0.015293996781110764, -0.024900654330849648, -0.011461225338280201, -0.04918312281370163, -0.05212569981813431, 0.02242789976298809, 0.041443392634391785, 0.032764021307229996, -0.06335201114416122, -0.02001696079969406, -0.0172969289124012, 0.04431179165840149, 0.03934155032038689, 0.03961355611681938, -0.01152922585606575, 0.01042884960770607, -0.042407769709825516, -0.05103768780827522, 0.01889185793697834, -0.006441529840230942, 0.05311480164527893, -0.06048361584544182, 0.02350354753434658, 0.030612722039222717, -0.01828603260219097, 0.0011413315078243613, 0.01884240284562111, 0.009322291240096092, 0.02584030292928219, 0.028313059359788895, 0.01239469088613987, 0.003817317308858037, -0.06730842590332031, -0.02408464625477791, 0.014873628504574299, -0.054301727563142776, 0.000707826460711658, 0.020746424794197083, -0.026705767959356308, 0.024653378874063492, -0.03429712727665901, -0.019349317997694016, -0.0040120468474924564, 0.04394087940454483, -0.012141233310103416, 0.021686071529984474, 0.06295637041330338, 0.023602457717061043, 0.05041949823498726, -0.017074381932616234, 0.016542738303542137, 0.05093877762556076, -0.02984616719186306, 0.007646998390555382, 0.026507945731282234, -0.01149213407188654, 0.018174758180975914, -0.03115672804415226, -0.04084993153810501, 0.003984228242188692, 0.008951377123594284, -0.020795879885554314, 0.021599525585770607, -0.0015361998230218887, -0.04819401726126671, -0.005693521350622177, -0.012635784223675728, 0.014391440898180008, -0.018384942784905434, -0.03743752837181091, 0.0003280265664216131, -0.009693204425275326, 0.05395554006099701, 0.03815462812781334, 0.01218450628221035, -0.027867961674928665, -0.018558034673333168, 0.03152764216065407, 0.008611373603343964, -0.011077947914600372, -0.012920151464641094, -0.01535581611096859, -0.02804105542600155, -0.025086112320423126, -0.01952240988612175, -0.010892490856349468, 0.0115972263738513, 0.06607204675674438, -0.015046721324324608, -0.012283416464924812, -0.017779117450118065, 0.010515395551919937, 0.030835270881652832, 0.0035113138146698475, -0.035360414534807205, -0.03501422703266144, 0.00042036856757476926, 0.020894790068268776, 0.04710600525140762, -0.031057817861437798, -0.01697547174990177, -0.002720031887292862, 0.01131904125213623, 0.03392621502280235, 0.05984070152044296, 0.01364961452782154, -0.04834238439798355, 0.0016691104974597692, -0.004658054560422897, 0.016728196293115616, 0.009730295278131962, -0.03330802544951439, 0.0023506637662649155, -0.015504181385040283, -0.030983636155724525, -0.009829206392168999, -0.03481640666723251, -0.011325223371386528, 0.004098593257367611, -0.01800166442990303, 0.0018375669606029987, -0.01805111952126026, -0.016864197328686714, -0.04399033263325691, 0.011714682914316654, 0.031972736120224, -0.003220764920115471, -0.002635030774399638, 0.02940107136964798, 0.008988468907773495, 0.010540123097598553, -0.003202219260856509, -0.010713215917348862, -0.002927125198766589, 0.027818506583571434, -0.007727363146841526, 0.03209637477993965, 0.0508398674428463, -0.017593661323189735, 0.0020137508399784565, 0.01894131302833557, 0.023231545463204384, -0.008172458969056606, 0.020894790068268776, 0.0038358629681169987, 0.008932831697165966, 0.03585496544837952, 0.018953677266836166, 0.013043789193034172, 0.003944046329706907, -0.00033092431840486825, -0.020956609398126602, -0.011077947914600372, 0.021179156377911568, 0.04171539843082428, -0.03951464593410492, -0.0033876760862767696, -0.025617754086852074, -0.013513612560927868, 0.021240975707769394, 0.03073635883629322, 0.006398256868124008, 0.04265504330396652, -0.021686071529984474, 0.01844676211476326, 0.04156703129410744, 0.029648346826434135, -0.024195918813347816, -0.022502081468701363, -0.014589261263608932, -0.011844501830637455, -0.035360414534807205, 0.013328156433999538, -0.00813536811619997, 0.023281000554561615, -0.0106143057346344, -0.033011294901371, 0.0019550228025764227, -0.03859972581267357, -0.006837171036750078, 0.00399041036143899, 0.005498791579157114, -0.02046205848455429, 0.027422865852713585, 0.02088242582976818, 0.010731762275099754, -0.0002128888590959832, 0.0036102239973843098, -0.025642482563853264, -0.016122370958328247, 0.0004899148480035365, -0.04030592739582062, -0.034420765936374664, 0.0307858157902956, 0.014280167408287525, 0.013810343109071255, -0.012808877043426037, 0.02368900366127491, 0.021154429763555527, 0.0026922132819890976, 0.010212482884526253, -0.010249574668705463, 0.016122370958328247, -0.02310790680348873, -0.004661145620048046, 0.05316425859928131, -0.014020527713000774, 0.0037307708989828825, -0.012382326647639275, 0.0124441459774971, -0.004658054560422897, 0.007783000357449055, -0.0015817912062630057, -0.012821241281926632, 0.0023290272802114487, 0.007319358177483082, -0.007121537812054157, 0.0374622568488121, -0.019670775160193443, -0.03437131270766258, -0.03612696751952171, -0.017655478790402412, -0.009921934455633163, -0.022440262138843536, 0.04354523867368698, 0.04263031855225563, -0.011040856130421162, 0.017779117450118065, -0.01383507065474987, 0.03543459624052048, -0.01975732296705246, 0.028832336887717247, -0.008784466423094273, 0.042753953486680984, 0.0011320586781948805, 0.01687656156718731, 0.005232970230281353, 0.011207767762243748, 0.018038757145404816, 0.04436124488711357, -0.01149213407188654, 0.045869626104831696, -0.037116069346666336, 0.003276401897892356, -0.010299029760062695, 0.01468817237764597, 0.030958907678723335, -0.025568298995494843, 0.01970786787569523, 0.004169685300439596, -0.0072637214325368404, -0.016110006719827652, 0.02898070216178894, 0.02376318722963333, 0.017655478790402412, 0.024690471589565277, -0.025617754086852074, -0.024047553539276123, 0.025135567411780357, 0.050196949392557144, -0.0043705967254936695, 0.014774718321859837, -0.041468121111392975, -0.009798296727240086, -0.027769051492214203, 0.06859425455331802, 0.0021451159846037626, 0.010163027793169022, 0.008178641088306904, -0.03068690374493599, 0.011053220368921757, 0.0263348538428545, 0.009810660034418106, 0.0029873985331505537, -0.0166416484862566, -0.01075648982077837, 0.0006757578812539577, -9.562612103763968e-05, 0.016184190288186073, 0.007424450479447842, -0.01580091193318367, -0.00046982368803583086, -0.002454210538417101, 0.005542065016925335, 0.061769451946020126, -0.05360935628414154, -0.08892031013965607, 0.008765920996665955, -0.01727220229804516, 0.025370478630065918, -0.0324920155107975, -0.030612722039222717, 0.007869546301662922, -0.0217478908598423, 0.01865694485604763, 0.0002971171052195132, -0.015219814144074917, -0.028807610273361206, -0.02720031887292862, -0.013971072621643543, -0.02090715430676937, -0.0010447395034134388, 0.026681039482355118, 0.006719714961946011, -0.00885864906013012, -0.008932831697165966, 0.011232495307922363, 0.004098593257367611, -0.01881767436861992, -0.0033011294435709715, -0.029969805851578712, -0.013241609558463097, 0.02588975802063942, -0.006676441989839077, 0.01706201769411564, 0.038352448493242264, -0.016208916902542114, -0.0035453143063932657, -0.006732078734785318, -0.009421201422810555, -0.023726096376776695, 0.018347851932048798, 0.04223467782139778, -0.04230885952711105, -0.029722530394792557, -0.011906321160495281, 0.007257539313286543, -0.0140823470428586, 0.0008623737376183271, 0.02945052646100521, -0.0023151179775595665, -0.04253140836954117, -0.007158629130572081, 0.0400833785533905, 0.05484573170542717, 0.004908421076834202, 0.013797979801893234, -0.02804105542600155, 0.008605191484093666, 0.01118922233581543, -0.013513612560927868, 0.02190862037241459, 0.01884240284562111, -0.006973172537982464, 0.036695703864097595, 0.0066084410063922405, -0.02523447759449482, 0.0007777591235935688, 0.013204517774283886, -0.018619854003190994, -0.005288607440888882, -0.013439429923892021, 0.004002774134278297, -0.03113200142979622, 0.0014821082586422563, 0.02677994966506958, -0.013983436860144138, -0.010515395551919937, -0.0026628493797034025, -0.029302161186933517, -0.05123550817370415, 0.04225940257310867, -0.015219814144074917, 0.0077026356011629105, -0.024900654330849648, -0.0042593227699398994, -5.7617151469457895e-05, -0.002488211030140519, -0.029104340821504593, -0.035756055265665054, -0.0007595997885800898, 0.0023212998639792204, -0.03647315502166748, 0.028016328811645508, -0.005950069520622492, -0.019089678302407265, -0.03115672804415226, -0.03679461404681206, -0.013105607591569424, -0.016023460775613785, -0.008901922032237053, 0.019769685342907906, 0.014193620532751083, -0.005081513896584511, -0.08481553941965103, 0.004753873683512211, 0.01295724231749773, 0.025370478630065918, 0.0014511988265439868, 0.051581695675849915, 0.015479453839361668, 0.04698236659169197, 0.05736794322729111, 0.004923875909298658, 0.021661344915628433, -0.027101408690214157, 0.021920984610915184, -0.002398573560640216, 0.0010926491813734174, -0.038822270929813385, 0.036670975387096405, 0.001927204430103302, -0.009717931970953941, 0.014144165441393852, 0.01206705067306757, 0.007251357659697533, 0.03464331477880478, 0.05440063774585724, -0.04903475567698479, -0.023515911772847176, -0.008469190448522568, -0.0006753715570084751, 0.026137033477425575, -0.004089320544153452, 0.037091344594955444, 0.043668873608112335, 0.019448228180408478, 0.013093244284391403, 0.007412086706608534, -0.011442678980529308, -0.01891658455133438, 0.016542738303542137, 0.003984228242188692, 0.036670975387096405, -0.020734060555696487, -0.013909253291785717, -0.00792518351227045, -0.013093244284391403, 0.00013339360884856433, 0.028189420700073242, 0.050790414214134216, 0.02769486978650093, 0.04386669397354126, 0.02486356347799301, 0.007405905053019524, -0.002386209787800908, 0.016072915866971016, -0.008716465905308723, -0.04572126269340515, -0.004333505406975746, 0.012190688401460648, -0.02001696079969406, 0.02858506143093109, -0.013909253291785717, -0.010224847123026848, 0.020474420860409737, 0.0011475133942440152, -0.006793897598981857, -0.006218981929123402, -0.0115972263738513, -0.033134933561086655, 0.05583483353257179, -0.023491183295845985, -0.015627820044755936, 0.026928314939141273, 0.045919083058834076, 0.020659878849983215, 0.028857065364718437, 0.010521577671170235, 0.019658412784337997, -0.03555823490023613, 0.043718330562114716, 0.02804105542600155, -0.026186488568782806, 0.02596393972635269, -0.007102992385625839, -0.008518645539879799, 0.0307858157902956, -0.0005552110378630459, -0.013439429923892021, 0.006880444008857012, 0.0033320391084998846, 0.0382535383105278, -0.011356133036315441, 0.005356607958674431, -0.003922409377992153, -0.00656516756862402, 0.04082520678639412, 0.05445009097456932, 0.025345752015709877, -0.0066702598705887794, -0.01902785897254944, 0.04067683964967728, -0.029277432709932327, 0.031774915754795074, 0.03681933879852295, -0.006036615930497646, 0.014638716354966164, -0.019831504672765732, -0.0031898554880172014, -0.03501422703266144, 0.016493283212184906, 0.01404525525867939, -0.017915118485689163, -0.00578315882012248, 0.02544466219842434, 0.01818712241947651, -0.025370478630065918, 0.013933980837464333, 0.056774482131004333, -0.03719025477766991, 0.027348684147000313, -0.0007051218999549747, -0.029697801917791367, 0.0032331286929547787, 0.016110006719827652, -0.021451160311698914, 0.011288132518529892, -0.01659219339489937, -0.039687737822532654, 0.00202456908300519, 0.019262770190835, -0.023379910737276077, -0.015912186354398727, -0.014972538687288761, 0.05489518865942955, -0.007894273847341537, 0.03409930691123009, 0.02083297073841095, -0.00043968696263618767, 0.003582405624911189, -0.05098823457956314, -0.010700852610170841, 0.0041047753766179085, 0.0172969289124012, -0.009204834699630737, -0.01884240284562111, -0.011121220886707306, 0.02992035076022148, -0.017482386901974678, -0.020981336012482643, 0.04661145433783531, -0.02992035076022148, -0.008364098146557808, 0.024195918813347816, 0.012672876007854939, -0.06612150371074677, 0.03827826678752899, -0.03214583173394203, 0.03906954824924469, -0.03024180792272091, 0.0006773034110665321, 0.004679691046476364, 0.017309293150901794, 0.03785789757966995, 0.05007331445813179, -0.021426431834697723, -0.04250667989253998, -0.01378561556339264, -0.00011929116590181366, -0.03763534873723984, 0.02363954856991768, -0.035830236971378326, -0.027991600334644318, -0.022860631346702576, 0.01779148168861866, 0.045449260622262955, -0.02078351564705372, 0.0224031712859869, 0.01582564041018486, 0.04067683964967728, 0.02080824412405491, 0.018088212236762047, -0.003427858231589198, 0.033654212951660156, 0.025086112320423126, 0.04564708098769188, -0.012592511251568794, -0.0035514961928129196, 0.030489083379507065, 0.03333275392651558, 0.01697547174990177, 0.022366080433130264, -0.004877511411905289, -0.006694987416267395, 0.017964573577046394, -0.02635958045721054, 0.028214149177074432, -0.005591520108282566, -0.012203051708638668, 0.00023549138859380037, -0.02078351564705372, -0.030217081308364868, -0.013253972865641117, 0.01954713836312294, -0.005767703987658024, 0.012258688919246197, 0.0063426196575164795, -0.011115038767457008, -0.07566633820533752, -0.01317979022860527, -0.021500615403056145, 0.020919516682624817, 0.05088932439684868, -0.006218981929123402, 0.021784981712698936, -0.03147818520665169, 0.0434957817196846, 0.010039390064775944, -0.010917218402028084, -0.016765287145972252, 0.01577618531882763, 0.003372221253812313, 0.01823657751083374, -0.018619854003190994, 0.0014110165648162365, 0.00207711523398757, -0.017519477754831314, -0.0043891421519219875, -0.03743752837181091, 0.03128036484122276, -0.03696770593523979, 0.027843235060572624, 0.029969805851578712, 0.00847537163645029, -0.007949911057949066, 0.0589505098760128, -0.0038420448545366526, -0.04010810703039169, -0.03110727295279503, -0.00682480726391077, -0.019868595525622368, -0.03738807514309883, 0.024059917777776718, -0.0006842580041848123, 0.03118145652115345, 0.029648346826434135, -0.031033091247081757, -0.008710283786058426, -0.01807584799826145, -9.852388029685244e-05, 0.0018823856953531504, -0.008123003877699375, 0.02673049457371235, 0.03175019100308418, 0.0026922132819890976, -0.006694987416267395, 0.008939013816416264, -0.014589261263608932, 0.03340693563222885, 0.015429998748004436, -4.527752025751397e-05, 0.009112106636166573, 0.013501249253749847, 0.007387359160929918, 0.01671583205461502, 0.0033814941998571157, 0.003434040118008852, 0.017024926841259003, 0.011337587609887123, -0.016443828120827675, 0.014984902925789356, -0.04510307312011719, 0.029623620212078094, -0.02932688780128956, 0.013043789193034172, -0.008728829212486744, 0.014168892987072468, -0.005112423561513424, -0.002877670107409358, -0.03587969392538071, -0.0009612839785404503, 0.021871529519557953, 0.006583713460713625, 0.037017159163951874, 0.005078423302620649, 0.005891341716051102, 0.004194412846118212, 0.03370366618037224, -0.01739583909511566, -0.018582763150334358, -0.051977336406707764, -0.007010263856500387, -0.007344086188822985, 0.03251674398779869, 0.02378791570663452, 0.015677275136113167, 0.03207164630293846, -0.006283891852945089, 0.003539132419973612, 0.029994532465934753, 0.000299821695080027, -0.008450644090771675, 0.004559144377708435, -0.001556290895678103, 0.023169726133346558, -0.04784783348441124, -0.021920984610915184, 0.022996632382273674, -0.0186074897646904, 0.015009630471467972, -0.000341742648743093, 0.0054215178824961185, 0.017494751140475273, 0.006973172537982464, -0.0250242929905653, -0.02048678509891033, -0.034049853682518005, 0.008011730387806892, 0.015244541689753532, 0.012135051190853119, 0.003956410102546215, 0.018904222175478935, 0.001513790455646813, -0.018694037571549416, 0.002588666742667556, 0.030513811856508255, 0.010966673493385315, -0.03644842654466629, -0.011621953919529915, 0.035780783742666245, 0.004899148363620043, 0.03560768812894821, -0.022155895829200745, 0.011547771282494068, -0.01884240284562111, 0.0008677828591316938, -0.005656430032104254, 0.008024093694984913, 0.02366427704691887, 0.01071939803659916, 0.008061185479164124, -0.03128036484122276, -0.011121220886707306, -0.011362315155565739, 0.006472439505159855, -0.0022733903024345636, 0.014564533717930317, 0.01577618531882763, 0.0011791955912485719, -0.006713533308357, 0.034494947642087936, 0.01800166442990303, -0.024121737107634544, 0.07873255759477615, 0.021376976743340492, 0.010367030277848244, 0.009371746331453323, -0.03548405319452286, 0.004849693272262812, 0.009309927001595497, -0.007276085205376148, 0.016765287145972252, 0.030513811856508255, -0.025716664269566536, 0.0018344760173931718, 0.002012205310165882, -0.00426550442352891, 0.04426233470439911, 0.005603883881121874, 0.0345938578248024, -0.0263348538428545, -0.011115038767457008, -0.0251602940261364, 0.018360214307904243, -0.0006873489473946393, -0.004386051557958126, -0.01141177024692297, -0.0034958592150360346, -0.025988668203353882, 0.012870696373283863, 0.03610223904252052, -0.0003846295003313571, 0.030390173196792603, 0.010280484333634377, 0.03318438678979874, -0.004073865711688995, 0.040528472512960434, 0.012549237348139286, 0.007956093177199364, -0.006265345960855484, 0.013155062682926655, 0.031428731977939606, -0.008549554273486137, -0.050740957260131836, 0.0025546662509441376, 0.019608957692980766, -0.03120618313550949, -0.013056152500212193, -0.023862097412347794, 0.007714999374002218, 0.006033525336533785, -0.01496017538011074, -0.00568733923137188, 0.0011467407457530499, 0.0001953090977622196, -0.0217478908598423, -0.010144482366740704, 0.009989934973418713, 0.03382730484008789, 0.022440262138843536, -0.0037894989363849163, -0.009260471910238266, 0.0033042205031961203, -0.03892118111252785, 0.01104703824967146, -0.02626067027449608, 0.00019047950627282262, 0.008969923481345177, -0.005226788576692343, 0.0172969289124012, 0.037091344594955444, 0.014453260228037834, -0.02900543063879013, 0.014836537651717663, 0.026606857776641846, -0.004858965985476971, -0.0013785616029053926, -0.03652260825037956, 0.002808123826980591, -0.020560968667268753, -0.00858046393841505, -0.03204692155122757, 0.014774718321859837, -0.009606657549738884, 0.022971905767917633, 0.0014341985806822777, 0.016579831019043922, -0.005025877151638269, -0.0070906286127865314, -0.0022687537129968405, 0.015788547694683075, 0.020548604428768158, -0.012883059680461884, -0.01842203363776207, -0.004518961999565363, 0.013525976799428463, 0.011115038767457008, 0.011875411495566368, -0.01632019132375717, -0.03034071810543537, -0.025988668203353882, -0.027546504512429237, -0.022180622443556786, 0.013241609558463097, 0.008524826727807522, -0.006302437279373407, -0.01108413003385067, -0.013538340106606483, 0.005415336228907108, -0.03879754617810249, -0.0109419459477067, -0.005229879170656204, -0.02638430893421173, -0.006620804779231548, -0.011461225338280201, 0.01713620126247406, -0.043322689831256866, 0.025741392746567726, 0.022291896864771843, 0.01294487901031971, -0.012221597135066986, 0.016567466780543327, -0.001976659521460533, -0.0037338619586080313, 0.019448228180408478, -0.009415019303560257, -0.006052070762962103, -0.018298396840691566, 0.004293323028832674, 0.01360015943646431, 0.010583397001028061, 0.03073635883629322, -0.01173941045999527, 0.029722530394792557, 0.02898070216178894, 0.006571349687874317, 0.011677591130137444, -0.020734060555696487, 0.01430489495396614, 0.015788547694683075, -0.003090945305302739, 0.019868595525622368, -0.010496850125491619, -0.015442362986505032, -0.008487735874950886, -0.0025809393264353275, 0.021216249093413353, 0.03513786569237709, 0.004061501938849688, 0.000979829696007073, 0.011782683432102203, -0.014651080593466759, 0.033678941428661346, -0.0023877553176134825, -0.015702001750469208, 0.03874808922410011, 0.00918628927320242, 0.01949768327176571, -0.015504181385040283, -0.0002982762234751135, 0.01774202659726143, 0.02769486978650093, -0.016790015622973442, 0.005844977684319019, -0.0010571032762527466, -0.01915149763226509, -0.016790015622973442, -0.0026844858657568693, -0.01116449385881424, -0.029994532465934753, -0.011170675978064537, 0.0007201902335509658, -0.007832455448806286, 0.030142897740006447, -0.015207450836896896, -0.025222113355994225, -0.0025191204622387886, 0.030810542404651642, -0.008506281301379204, -0.012660511769354343, 0.012518328614532948, -0.020103508606553078, -0.01582564041018486, 0.003412403631955385, -0.005508064292371273, 0.0006463939207606018, -0.00787572842091322, -0.014292530715465546, 0.0011119676055386662, 0.0045344168320298195, 0.0018669309793040156, -0.01826130412518978, -0.005220606457442045, 0.026038123294711113, -0.01797693781554699, -0.05583483353257179, 0.0004354369011707604, -0.006732078734785318, -0.007684089709073305, -0.028016328811645508, 0.018137667328119278, -0.01905258744955063, -0.0031156728509813547, -0.02389918826520443, 0.026062849909067154, 0.026681039482355118, 0.0023382999934256077, 0.028832336887717247, -0.004466415848582983, -0.045943811535835266, -0.020091144368052483, 0.0011977412505075336, 0.025222113355994225, 0.06448948383331299, 0.011430315673351288, 0.011405588127672672, 0.028313059359788895, -0.004345869179815054, -0.018768219277262688, -0.017099108546972275, 0.02046205848455429, 0.0001857464958447963, -0.038377176970243454, -0.011325223371386528, 0.018483852967619896, -0.002845215145498514, -0.005928433034569025, 0.01952240988612175, -0.02984616719186306, 0.029524710029363632, -0.03068690374493599, 0.023392273113131523, 0.002441846765577793, 0.019003132358193398, -0.024430831894278526, -0.01364961452782154, 0.028362514451146126, -0.009377927519381046, -0.02151297964155674, -0.014984902925789356, 0.06008797511458397, -0.040998298674821854, -0.006775352172553539, -0.003063126699998975, -0.009452111087739468, 0.0017525659641250968, 0.017989302054047585, -0.004753873683512211, -0.005362790077924728, 0.017779117450118065, 0.017198018729686737, -0.050740957260131836, -0.007745909038931131, 0.021525342017412186, 0.018125303089618683, -0.011591045185923576, -0.04169066995382309, -0.019955143332481384, -0.028436696156859398, 0.0020755697041749954, -0.0030074897222220898, -0.009297563694417477, -0.001360015943646431, 0.0045436895452439785, -0.017037291079759598, 0.004027501679956913, -0.011949594132602215, -0.02410937286913395, -0.00853100884705782, -0.013736160472035408, 0.0434957817196846, 0.024331921711564064, 0.0009481474407948554, 0.0009411928476765752, -0.0015508817741647363, 0.014749990776181221, -0.028832336887717247, -0.03988555818796158, 0.018174758180975914, -0.0243690125644207, -0.0019673865754157305, -0.007937547750771046, -0.03162655234336853, 0.016332555562257767, -0.0027509413193911314, -0.017148563638329506, 0.00885864906013012, 0.0010972855379804969, 0.006855716463178396, 0.015862731263041496, -0.00835791602730751, 0.07240229845046997, 0.00977356918156147, -0.026235943660140038, -0.011343768797814846, -0.0730946734547615, 0.003974955528974533, 0.0032269468065351248, -0.03377785161137581, -0.02022714540362358, -0.03728916496038437, 0.014712899923324585, 0.006243709474802017, -0.007684089709073305, 0.026878859847784042, -0.016777651384472847, -0.0005192788084968925, 0.02504901960492134, 0.00040027740760706365, 0.008642283268272877, 0.027744324877858162, 0.014589261263608932, 0.010917218402028084, -0.011053220368921757, -0.0052484250627458096, -0.010231029242277145, -0.02680467814207077, 0.010360848158597946, 0.01800166442990303, 0.0263348538428545, -0.004537507425993681, 0.022106440737843513, 0.013773252256214619, 0.008982286788523197, -0.005542065016925335, 0.031774915754795074, -0.01957186497747898, 0.054301727563142776, 0.00328258378431201, -0.0032300378661602736, 0.007653180509805679, 0.005208242684602737, -0.008228096179664135, 0.027027225121855736, 0.02389918826520443, 0.006911353673785925, -0.005168060306459665, -0.023825006559491158, 0.03632478788495064, 0.008364098146557808, 0.011757955886423588, -0.0024032099172472954, 0.008654646575450897, 0.046735092997550964, 0.001536972587928176, 0.03501422703266144, -0.030167626217007637, -0.04225940257310867, 0.003594769397750497, 0.0251602940261364, 0.005433881655335426, -0.005919160321354866, -0.009167743846774101, 0.007195720449090004, 0.005557519383728504, 0.021055519580841064, 0.011467406526207924, -0.058109771460294724, -0.041047751903533936, 0.04965294525027275, 0.0025933030992746353, 0.03909427672624588, -0.00014083119458518922, 0.007510996889322996, 0.008537190966308117, -0.010027026757597923, -0.021995166316628456, 0.006596077233552933, 0.049380943179130554, -0.04688345640897751, 0.017519477754831314, 0.010744125582277775, -0.04468270391225815, 0.008704101666808128, -0.013748524710536003, 0.04970239847898483, -0.01629546284675598, 0.02893124707043171, -0.022811176255345345, -0.022464990615844727, -0.009322291240096092, -0.015553636476397514, -0.01727220229804516, -0.027447594329714775, -0.017828572541475296, 0.02677994966506958, -0.002044660272076726, -0.004559144377708435, 0.008611373603343964, -0.014898356050252914, -0.005826431792229414, 0.004667327273637056] \ No newline at end of file diff --git a/cache/text-embedding-3-small88bb9443-f42b-5cda-b784-d50b5db098fb b/cache/text-embedding-3-small88bb9443-f42b-5cda-b784-d50b5db098fb new file mode 100644 index 0000000000000000000000000000000000000000..9ab08ab6b058f9df6a28a175bfa4b5b73119535a --- /dev/null +++ b/cache/text-embedding-3-small88bb9443-f42b-5cda-b784-d50b5db098fb @@ -0,0 +1 @@ +[0.0035326885990798473, -0.004831226542592049, 0.07943055778741837, 0.005680270493030548, -0.020124007016420364, 0.021375929936766624, -0.011906593106687069, 0.0639280155301094, -0.02415946125984192, -0.02020391635596752, 0.02658339962363243, -0.0478927381336689, -0.04661417752504349, -0.019897595047950745, 0.04003491997718811, 0.024266008287668228, -0.013145198114216328, -0.05508463829755783, -0.0307919941842556, -0.029593342915177345, 0.013418223708868027, 0.04642771929502487, -0.014916536398231983, 0.002693633548915386, 0.004441665019840002, 0.025571206584572792, -0.05668283998966217, -0.022761037573218346, 0.009276221506297588, -0.07927073538303375, 0.03638569638133049, -0.04437669739127159, -0.012386052869260311, 0.007851159200072289, 0.005097593180835247, -0.023240497335791588, -0.01532940473407507, 0.06643186509609222, -0.0036891791969537735, 0.01431721169501543, -0.026716582477092743, 0.010881081223487854, 0.021948618814349174, -0.002820157678797841, 0.01984432153403759, 0.011700158007442951, -0.03396175801753998, -0.005480495281517506, 0.005976603366434574, 0.027329226955771446, -0.03798389434814453, -0.02361341007053852, -0.0139709347859025, -0.01755356788635254, -0.013784478418529034, -0.003063217271119356, 0.030845267698168755, 0.00037978068576194346, 0.03124481625854969, 0.05223451554775238, 0.015489225275814533, -0.05060967803001404, 0.03020598739385605, 0.009662453085184097, -0.03555995970964432, 0.03912927210330963, -0.016727831214666367, 0.0832129642367363, 0.027542319148778915, 0.014849944971501827, -0.005410573910921812, 0.0003575141017790884, -0.014357166364789009, 0.034947313368320465, 0.05849413201212883, 0.0018595727160573006, -0.015249495394527912, 0.01835266686975956, -0.009988752193748951, 0.033935122191905975, -0.004251878708600998, -0.019444771111011505, 0.041926123201847076, -0.02601071074604988, -0.020456964150071144, -0.01859239675104618, -0.0006172216380946338, 0.003885624697431922, -0.004764634650200605, 0.0043284595012664795, -0.04112702235579491, 0.04091392830014229, 0.0009855568641796708, 0.020390372723340988, -0.022854264825582504, -0.022281575947999954, -0.02016396075487137, 0.0004197357047814876, 0.008483780547976494, 0.03372202813625336, -0.03918254375457764, -0.05636319890618324, 0.05806794762611389, 0.013611339963972569, -0.021815434098243713, -0.013151857070624828, -0.005160855129361153, -0.0421924889087677, 0.04970403015613556, 0.0056503042578697205, -0.029486795887351036, 0.02077660523355007, -0.020789923146367073, 0.004524904768913984, -0.03856990113854408, 0.010821147821843624, -0.02120279148221016, -0.013138539157807827, 0.006925534922629595, 0.041926123201847076, -0.007997660897672176, 0.018405940383672714, -0.0216556154191494, -0.04730673134326935, -0.0524209700524807, -0.0012569179525598884, -0.04118029773235321, 0.005493813659995794, -0.010308392345905304, -0.0581744946539402, 0.0072851297445595264, 0.024226054549217224, -0.01811293698847294, -0.04080738127231598, -0.012918786145746708, -0.003174758516252041, -0.04653426632285118, -0.0027019574772566557, -0.02828814648091793, -0.03798389434814453, 0.06307563930749893, 0.022441396489739418, -0.0056503042578697205, -0.012119686231017113, -0.05186160281300545, -0.016261689364910126, -0.01951136253774166, -0.03009944036602974, -0.011899933218955994, 0.003719145432114601, -0.03742452338337898, -0.010661328211426735, -0.038143716752529144, -0.009562565945088863, 0.05188823863863945, 0.009163015522062778, -0.02064342051744461, 0.02463892288506031, 0.027568956837058067, 0.010927694849669933, -0.043284591287374496, 0.023799866437911987, -0.009622498415410519, -0.013424882665276527, 0.0650467574596405, -0.03388184681534767, -0.018885400146245956, -0.03718479350209236, -0.11826682835817337, 0.02427932806313038, -0.020097369328141212, -0.025291521102190018, -0.002067671623080969, -0.007717975880950689, 0.02943352237343788, -0.009382767602801323, -0.04096720367670059, -0.03694506362080574, -0.0026253771502524614, 0.020323781296610832, -0.033349115401506424, 0.0017330484697595239, 0.005100922659039497, -0.014450394548475742, -0.05186160281300545, -0.012459303252398968, -0.03374866396188736, 0.016101868823170662, 0.005730214063078165, 0.03500058874487877, 0.023919731378555298, 0.017966436222195625, 0.0581744946539402, 0.0022957483306527138, -0.004831226542592049, 0.024705514311790466, 0.009322835132479668, -0.020323781296610832, 0.007731294259428978, 0.028474602848291397, 0.016954241320490837, -0.03476085886359215, 0.060944706201553345, 0.03569314256310463, -0.06201017275452614, 0.009276221506297588, -0.002562114968895912, 0.031191544607281685, 0.013584703207015991, 0.020563511177897453, 0.022188348695635796, -0.0008398875943385065, -0.056043557822704315, 0.038356807082891464, -0.010761215351521969, -0.043071500957012177, -0.05428553745150566, -0.0012386052403599024, 0.04173966497182846, -0.015236176550388336, 0.015063038095831871, -0.022148393094539642, 0.005074286367744207, 0.0019894265569746494, -0.020923105999827385, 0.08523735404014587, 0.014770034700632095, -0.016008639708161354, 0.024998517706990242, -0.010934353806078434, 0.028421329334378242, -0.054924819618463516, -0.047253455966711044, 0.023546818643808365, -0.0091230608522892, 0.02189534530043602, 0.003915590699762106, -0.011134129017591476, 0.037797439843416214, -0.026596717536449432, -0.02633035182952881, 0.022761037573218346, -0.011853319592773914, 0.015129630453884602, -0.028900789096951485, 0.022601217031478882, 0.023973004892468452, -0.013378269039094448, -0.030925177037715912, 0.003655883250758052, -0.0030349160078912973, -0.03934236615896225, -0.019711138680577278, 0.010934353806078434, -0.020017459988594055, 0.012752306647598743, 0.03265656158328056, 0.027728775516152382, -0.00046988754183985293, 0.017966436222195625, 0.05026340112090111, 0.0535929836332798, 0.03151118382811546, 0.007085354998707771, 0.024598967283964157, 0.014144073240458965, 0.025118382647633553, 0.019244996830821037, 0.017700068652629852, 0.05636319890618324, 0.006276266183704138, 0.0038057146593928337, -0.026170531287789345, 0.005480495281517506, -0.02350686304271221, -0.00458816671743989, 0.045442163944244385, 0.044296786189079285, -0.04035455733537674, 0.01723392680287361, -0.014357166364789009, 0.005250754300504923, 0.023107312619686127, -0.052074696868658066, 0.028208237141370773, -0.021935299038887024, 0.02177548035979271, -0.0079776830971241, -0.01895199343562126, 0.05146205052733421, -0.03891617804765701, -0.0027851969934999943, 0.005367289762943983, -0.053086888045072556, 0.005796805955469608, 0.011280630715191364, 0.007131969090551138, -0.02670326456427574, -0.0020094038918614388, 0.030925177037715912, 0.025038471445441246, 0.04911802336573601, -0.0205102376639843, -0.050130218267440796, 0.0399283729493618, 0.018499169498682022, -0.01037498377263546, -0.020323781296610832, 0.004405039828270674, 0.009382767602801323, -0.01106087863445282, 0.0019927560351788998, 0.0696282610297203, -0.021069608628749847, 0.0031114963348954916, -0.008843375369906425, -0.00033940948196686804, -0.03143127262592316, -0.0012177954195067286, -0.011473746970295906, -0.025371430441737175, -0.04173966497182846, 0.0069321938790380955, -0.029220430180430412, 0.025717707350850105, -0.03486740589141846, -0.028927426785230637, -0.009988752193748951, 0.017766660079360008, -0.059133414179086685, 0.002057682955637574, 0.0012128009693697095, -0.030312534421682358, -0.034601036459207535, -0.03207055479288101, 0.0020693365950137377, 0.007118650712072849, -0.0062995729967951775, -0.013677931390702724, -0.049997035413980484, -0.05087604373693466, -0.009382767602801323, -0.01949804462492466, -0.016168460249900818, 0.04592162370681763, 0.007105332333594561, -0.013904343359172344, 0.012119686231017113, 0.07719307392835617, 0.06195690110325813, -0.019684500992298126, -0.01026177778840065, 0.046347811818122864, 0.0015857144026085734, 0.024772105738520622, -0.00470470217987895, 0.03167100250720978, -0.031404636800289154, 0.033935122191905975, 0.0027352534234523773, -0.027675502002239227, 0.010594736784696579, -0.009935478679835796, -0.04472297430038452, 0.01904522068798542, 0.048984840512275696, -0.010348347015678883, -0.018725581467151642, 0.047253455966711044, -0.0038556584622710943, 0.011520360596477985, -0.011859978549182415, -0.034494489431381226, 8.421506208833307e-06, -0.03809044137597084, 0.013930980116128922, 0.009116400964558125, 0.03686515614390373, 0.029966257512569427, 0.044190239161252975, 0.021695569157600403, -0.023333724588155746, -0.0176601130515337, 0.024545693770051003, -0.04469633847475052, 0.03380193933844566, 0.0019644545391201973, -0.04911802336573601, -0.04355096071958542, -0.03172427788376808, -0.0002615804551169276, 0.036998338997364044, 0.026849765330553055, 0.02815496362745762, 0.008363915607333183, 0.0055437576957046986, 0.01993754878640175, 0.04807919263839722, 0.028447967022657394, -0.0043550957925617695, 0.019364861771464348, -0.011926569975912571, 0.0003812373906839639, -0.04621462523937225, -0.03782407566905022, -0.02008405141532421, -0.009322835132479668, 0.041233569383621216, -0.06850951910018921, -0.07021427154541016, 0.010135253891348839, -0.052953705191612244, 0.035639867186546326, 0.049331117421388626, -0.003809044137597084, -0.021642295643687248, 0.01803302764892578, 0.005706907249987125, -0.01413075439631939, 0.053193435072898865, 0.014397121965885162, -0.046480994671583176, -0.005613678600639105, 0.030072802677750587, 0.027915233746170998, 0.024479102343320847, 0.000588504015468061, 0.02268112637102604, 0.008010979741811752, -0.04397714510560036, -0.05106250196695328, 0.03231028467416763, 0.007904432713985443, 0.024372555315494537, -0.01823280192911625, 0.030845267698168755, 0.009163015522062778, 0.028021778911352158, 0.016354916617274284, -0.03217710182070732, 0.014876581728458405, 0.025398068130016327, -0.0153959970921278, -0.04472297430038452, -0.041340116411447525, 0.01447703130543232, -0.014370485208928585, 0.006116446107625961, -0.022521305829286575, -0.006359505467116833, -0.03100508637726307, 0.01642150804400444, -0.008790101855993271, 0.03851662948727608, -0.021256064996123314, -0.043737415224313736, 0.05737539380788803, -0.019244996830821037, 0.006702452898025513, 0.020963061600923538, 0.03846335411071777, 0.01168684009462595, 0.005840090569108725, -0.0002611642412375659, -0.017753342166543007, -0.03952882066369057, 0.011447110213339329, 0.015036401338875294, -0.003659212961792946, 0.013305017724633217, 0.011826682835817337, 0.03297619894146919, 0.022521305829286575, -0.03569314256310463, 0.0026020698715001345, -0.03742452338337898, -0.008537053130567074, -0.10239136964082718, 0.01847253181040287, -0.020044095814228058, -0.011633566580712795, -0.00615640077739954, -0.020496919751167297, -0.009089764207601547, 0.0003656299377325922, 0.019817683845758438, -0.022441396489739418, 0.00021933634707238525, -0.029912983998656273, 0.041446663439273834, 0.05796140059828758, 0.035533320158720016, 0.04086065664887428, -0.014956491999328136, -0.022521305829286575, -0.007245175074785948, -0.0165546927601099, 0.0159553661942482, -0.022294895723462105, -0.017287200316786766, 0.04363086819648743, 0.020230552181601524, -0.022414760664105415, -0.011753431521356106, 0.021522430703043938, -0.0029849722050130367, -0.08033620566129684, 0.009229606948792934, -0.0074982233345508575, 0.03161773085594177, -0.002555455779656768, 0.04381732642650604, -0.001288549043238163, 0.04195275902748108, 0.0018778854282572865, 0.020230552181601524, 0.0014924861025065184, -0.010807829909026623, 0.03617260232567787, 0.0045914966613054276, -0.008264027535915375, 0.001866231905296445, 0.01094767265021801, 0.01385106984525919, -0.01972445659339428, 0.007951046340167522, -0.03944891318678856, -0.05487154424190521, -0.011786727234721184, -0.01346483826637268, 0.026037348434329033, -0.027462409809231758, -0.039076000452041626, 0.02430596388876438, 0.008723510429263115, -0.01207973062992096, 0.014836627058684826, 0.032097190618515015, -0.00421525351703167, 0.017193973064422607, 0.001513295923359692, 0.006885579787194729, -0.027568956837058067, -0.006442745216190815, -0.017407065257430077, -0.012372734025120735, -0.004754646215587854, 0.023693319410085678, 0.010980968363583088, 0.014037526212632656, 0.028661059215664864, 0.002092643640935421, 0.014463713392615318, 0.010321710258722305, 0.01180670503526926, -0.031857460737228394, -0.010468211956322193, 0.01572895608842373, 0.03159109503030777, -0.0028850845992565155, 0.016967561095952988, -0.01180670503526926, 0.0040754107758402824, -0.03524031862616539, -0.0019960857462137938, -0.012352757155895233, 0.0021708887070417404, -0.057748306542634964, -0.052740611135959625, -0.008810079656541348, 0.00974902231246233, 0.010055343620479107, -0.020257189869880676, -0.05119568482041359, 0.03864981234073639, 0.03292292729020119, -0.00878344289958477, -0.03590623289346695, 0.03691842779517174, 0.016834376379847527, -0.0010629696771502495, -0.021748842671513557, 0.027888596057891846, -0.006609224248677492, -0.013331654481589794, 0.015689000487327576, -0.025171656161546707, 0.0740499496459961, -0.0002900900144595653, 0.014783353544771671, -0.023347044363617897, 0.005833431147038937, 0.02850124053657055, -0.00043492691474966705, -0.010847784578800201, -0.014184027910232544, -0.0068988981656730175, -0.010348347015678883, 0.025864209979772568, 0.03364211693406105, -0.002130933804437518, -0.023746592923998833, 0.004864522255957127, 0.010155231691896915, -0.03508049622178078, 0.007777908351272345, -0.005547087173908949, -0.03492067754268646, -0.013218448497354984, -2.1317142454790883e-05, 0.002676985692232847, 0.013984252698719501, -0.0026736559811979532, -0.021402565762400627, 0.005060967989265919, -0.0020127336028963327, 0.009489314630627632, -0.010015388950705528, 0.008463802747428417, 0.01973777450621128, 0.003134803380817175, -0.01983100362122059, -0.002913386095315218, 0.01528945006430149, 0.017953116446733475, 0.0199641864746809, -0.03558659553527832, -0.018445895984768867, 0.019138449802994728, 0.008117525838315487, 0.0013368279905989766, -0.03896945342421532, -0.01345817930996418, -0.03249673917889595, 0.014010889455676079, -0.011673522181808949, 0.0035726437345147133, -0.003251338843256235, 0.05439208447933197, -0.02041701041162014, 0.021735524758696556, -0.021016335114836693, 0.002725264523178339, -0.017313838005065918, -0.010574758984148502, 0.00998209323734045, 0.00014192351954989135, -0.029033973813056946, -0.03262992575764656, 0.033242568373680115, -0.005034331232309341, -0.035160407423973083, 0.01779329776763916, 0.05029003694653511, 0.029513433575630188, -0.02233484946191311, -0.020616784691810608, -0.009436041116714478, 0.014516986906528473, 0.016821058467030525, -0.02177548035979271, 0.015928730368614197, -0.03044571727514267, -0.0006987964734435081, 0.025291521102190018, 0.05010358244180679, -0.055031366646289825, 0.026756538078188896, 0.002593745943158865, 0.013478156179189682, -0.07628743350505829, 0.04632117226719856, 0.0444832444190979, 0.030152713879942894, 0.005130888894200325, -0.024026278406381607, -0.0319107323884964, 0.004518245812505484, 0.019311588257551193, -0.008217413909733295, 0.005693588871508837, 0.011313926428556442, -0.015236176550388336, 0.012745647691190243, -0.01823280192911625, -0.02360009215772152, -0.00036583805922418833, -0.011014264076948166, 0.03350893408060074, 0.023347044363617897, -0.009609179571270943, 0.00843716599047184, 0.05460517853498459, -0.02988634631037712, -0.0026037348434329033, -0.04120693355798721, 0.009269562549889088, 0.06717769056558609, -0.03444121778011322, -0.033828575164079666, -0.007404995150864124, 0.05119568482041359, -0.015342723578214645, -0.021269382908940315, -0.031191544607281685, -0.011234017089009285, -0.00952926930040121, 0.03044571727514267, 0.04264531284570694, 0.002608729060739279, -0.026024028658866882, -0.010667987167835236, 0.01454362366348505, -0.048851657658815384, 0.039848461747169495, 0.0012727335561066866, 0.006925534922629595, -0.024425828829407692, 9.562149352859706e-05, -0.006659168284386396, -0.002057682955637574, 0.0050010355189442635, 0.024492420256137848, -0.025837572291493416, -0.02727595344185829, 0.02290753833949566, 0.04514915868639946, 0.013424882665276527, 0.03843671828508377, -0.025691071525216103, -0.011646885424852371, -0.017486976459622383, -0.02097637951374054, -0.013378269039094448, 0.01960459165275097, -0.0012569179525598884, -0.026956312358379364, -0.013691249303519726, -0.014010889455676079, -0.0003604274825192988, 0.003211383940652013, -0.024905288591980934, 0.008217413909733295, -0.04640108346939087, -0.019005265086889267, 0.020017459988594055, 0.014064162969589233, 0.012346098199486732, 0.01230614259839058, -0.0003506468201521784, -0.034387946128845215, 0.011367199942469597, 0.0072518340311944485, 0.028767606243491173, -0.001425894326530397, -0.02427932806313038, 0.01459689624607563, -0.04608144238591194, -0.011473746970295906, -0.03350893408060074, -0.0021642297506332397, 0.014290574938058853, -0.022627852857112885, 0.001962789800018072, 0.014956491999328136, -0.008144162595272064, -0.007418313529342413, 0.02348022721707821, -0.017473656684160233, -0.011387177743017673, 0.03145791217684746, -0.0017463668482378125, 0.00929619837552309, -0.02599739283323288, -0.018778854981064796, -0.039955008774995804, -0.0199508685618639, 0.03569314256310463, 0.03159109503030777, -0.003565984545275569, -0.02770213969051838, -0.019577953964471817, -0.0029816424939781427, -0.02439919300377369, -0.04070083424448967, 0.027062859386205673, 0.017393747344613075, -0.009908841922879219, -0.0013418224407359958, 0.0065126665867865086, 0.024785423651337624, 0.03009944036602974, -0.005860067903995514, 0.0033945110626518726, 0.023187223821878433, 0.00888998992741108, 0.043178047984838486, -0.04698709025979042, 0.030818630009889603, 0.03809044137597084, -0.021349292248487473, 0.010115276090800762, 0.029247066006064415, 0.02898070029914379, 0.015316086821258068, 0.028314782306551933, 0.007664702367037535, 0.057748306542634964, -0.01584882102906704, -0.023213859647512436, -0.034601036459207535, 0.04299158975481987, -0.03337575122714043, -0.0014500338584184647, 0.017846571281552315, -0.02007073350250721, 0.0003650056605692953, 0.014969809912145138, 0.012159640900790691, -0.03398839384317398, 0.01860571652650833, -0.049437664449214935, -0.026170531287789345, 0.0006625872338190675, 0.0062329815700650215, 0.04205930605530739, -0.012958740815520287, 0.034707583487033844, 0.03380193933844566, -0.03566650301218033, -0.0014067492447793484, -0.02316058613359928, -0.008810079656541348, -0.001773003488779068, 0.002041035098955035, -0.006532643921673298, 0.043391138315200806, -0.009509292431175709, -0.007651384454220533, 0.014770034700632095, 0.021802116185426712, -0.019764410331845284, 0.013484815135598183, 0.0153959970921278, -0.025957437232136726, 0.04807919263839722, 0.01191325206309557, 0.010408279486000538, 0.018179528415203094, -0.014796671457588673, 0.002632036106660962, -0.04040783271193504, -0.023400316014885902, 0.0342281237244606, -0.03127145394682884, 0.036545515060424805, 0.0038190330378711224, -0.0015640720957890153, 0.0004744657198898494, 0.010421598330140114, -0.060731612145900726, -0.01640819013118744, 0.0059133414179086685, -0.055031366646289825, 0.043737415224313736, -0.0014899888774380088, 0.008643600158393383, 0.03257665038108826, 0.03478749468922615, -0.021842071786522865, 0.02545134164392948, 0.028314782306551933, -0.028714332729578018, -0.058440860360860825, 0.04712027311325073, 0.02510506473481655, -0.029247066006064415, 0.04251212999224663, -0.015302768908441067, 0.021708888933062553, 0.0072118788957595825, 0.0038190330378711224, 0.01756688579916954, -0.02305404096841812, 0.001738042919896543, -0.025824254378676414, -0.009922160767018795, -0.014024208299815655, -0.029619980603456497, 0.0009530934621579945, 0.013198471628129482, 0.021535750478506088, 0.007678020745515823, -0.0433112308382988, 0.003695838386192918, -0.01049484871327877, -0.007305107545107603, 0.010594736784696579, -0.027968505397439003, 0.04056765139102936, 0.020696694031357765, 0.014410439878702164, -0.02178879827260971, -0.01973777450621128, -0.03811707720160484, 0.015569135546684265, -0.0019461419433355331, -0.044536516070365906, 0.02019059844315052, 0.03577305004000664, 0.007451609242707491, 0.01596868596971035, 0.023533500730991364, 0.007844500243663788, 0.02601071074604988, -0.006113116163760424, -0.04142002761363983, -0.04022137448191643, 0.01676778495311737, -0.06659168004989624, 0.013891024515032768, 0.013891024515032768, 0.005317345727235079, -0.02884751558303833, 0.024891970679163933, 0.020044095814228058, -0.006486029829829931, 0.017313838005065918, 0.04640108346939087, -0.0002328627888346091, 0.028581149876117706, 0.005204139743000269, -0.005510461516678333, 0.01037498377263546, -0.018286075443029404, 0.05870722606778145, 0.012419348582625389, 0.010867762379348278, 0.000849876319989562, 0.014010889455676079, -0.013105242513120174, 0.05116904899477959, -0.0038190330378711224, -0.009888865053653717, 0.015689000487327576, 0.006625872105360031, 0.015182903036475182, 0.0072118788957595825, 0.03156445547938347, -0.0171140618622303, 0.0018562431214377284, -0.07799217849969864, -0.025691071525216103, -0.035400137305259705, -0.01350479293614626, 0.02954006940126419, 0.0010171879548579454, 0.06312891095876694, 0.03257665038108826, -0.03292292729020119, -0.010661328211426735, -0.009189652279019356, 0.012179618701338768, -0.016781102865934372, -0.007591451518237591, 0.00421858299523592, 0.002946681808680296, 0.025171656161546707, -0.02578429877758026, -0.004621462896466255, 0.02325381524860859, 0.007658043410629034, -0.009236265905201435, -0.02029714547097683, 0.01895199343562126, 0.06424765288829803, 0.0065692695789039135, 0.027568956837058067, 0.010461552999913692, 0.006838965695351362, 0.018272757530212402, 0.007757931016385555, 0.02486533485352993, -0.016248369589447975, 0.011307267472147942, 0.022414760664105415, 0.007411654107272625, 0.030072802677750587, 0.006539303343743086, 0.00015420136332977563, 0.0376376174390316, -0.009089764207601547, -0.021162835881114006, 0.014010889455676079, -0.013824433088302612, -0.015156267210841179, -0.005910011939704418, -0.05441872403025627, -0.0010105287656188011, 0.014503668062388897, 0.044296786189079285, -0.0031497864983975887, -0.029273703694343567, -0.016834376379847527, -0.001924499636515975, -0.04094056412577629, 0.009429382160305977, 0.013944298028945923, -0.017247244715690613, -0.008450484834611416, 0.02257457934319973, 0.025837572291493416, -0.03830353543162346, 0.03936900198459625, -0.030126076191663742, -0.010155231691896915, 0.006669156718999147, 0.01857907883822918, 0.008563689887523651, 0.023773230612277985, -0.0040587629191577435, 0.004072081297636032, 0.015768909826874733, 0.007504882290959358, 0.0031680993270128965, 0.01744702085852623, 0.005287379492074251, -0.04118029773235321, 0.04232567176222801, -0.0011811699951067567, 0.013824433088302612, 0.023799866437911987, -0.014237301424145699, -0.018539125099778175, 0.0075315190479159355, -0.02633035182952881, -0.00821075402200222, -0.0023273793049156666, 0.019231677055358887, -0.027728775516152382, 0.00040059059392660856, 0.004178627859801054, -0.018778854981064796, -0.023546818643808365, -0.005653633736073971, -0.004688054323196411, -0.012552532367408276, 0.005174173507839441, 0.00844382494688034, -0.010521485470235348, 0.020443646237254143, 0.011407154612243176, -0.007078695576637983, 0.008636941201984882, -0.0387829951941967, 0.0547117255628109, 0.00888998992741108, 0.0002230821264674887, -0.03217710182070732, 0.0011711812112480402, 0.008843375369906425, -0.004381732549518347, 0.02405291609466076, 0.040088191628456116, -0.009209629148244858, -0.023014085367321968, 0.022721081972122192, 0.012745647691190243, 0.01937817968428135, 0.00421858299523592, 0.017873207107186317, -0.008690214715898037, -0.001072958461008966, 0.02407955192029476, -0.005780158098787069, -0.005490484181791544, -0.005320675205439329, 0.01504972018301487, 0.04163311794400215, 0.017180653288960457, 0.04485615715384483, -0.01606191322207451, -0.023759912699460983, 0.0026586728636175394, -0.013797796331346035, 0.03774416446685791, 0.00612976448610425, -0.0052907089702785015, 0.01754024811089039, 0.005124229937791824, 0.011553656309843063, -0.000366046151611954, -0.009802295826375484, 0.008796760812401772, -0.026263758540153503, 0.011420473456382751, 0.018632352352142334, -0.0011778404004871845, -0.011000946164131165, 0.014210664667189121, 0.01837930455803871, 0.0017164006130769849, -0.022734399884939194, -0.01755356788635254, -0.00027593926643021405, -0.03614596650004387, 0.013904343359172344, 0.01470344327390194, 0.005640315357595682, -0.021695569157600403, 0.007065377198159695, -0.009262902662158012, -0.004721350036561489, 0.0016256694216281176, -0.016594646498560905, -0.0056103491224348545, -0.006452734116464853, 0.010667987167835236, 0.01767343282699585, 0.026996267959475517, -0.011653544381260872, -0.015995321795344353, 0.033935122191905975, 0.029380250722169876, -0.008137503638863564, -0.005014353431761265, -0.015609090216457844, -0.007684680167585611, -0.008577008731663227, -0.014916536398231983, -0.013651294633746147, -0.011014264076948166, 0.026183849200606346, 0.0199508685618639, -0.019364861771464348, 0.022534625604748726, -0.0031431273091584444, 0.027462409809231758, -0.008017638698220253, -0.02895406261086464, -0.027076177299022675, 0.028021778911352158, 0.03044571727514267, -0.002781867515295744, 0.04831892251968384, 0.00974236335605383, -0.002705286955460906, 0.0741032212972641, -0.01949804462492466, 0.004498268011957407, 0.013984252698719501, 0.004901147913187742, 0.022028528153896332, -0.020470282062888145, -0.008616963401436806, 0.02804841659963131, -0.0222149845212698, -0.014250620268285275, -0.008530394174158573, -0.011000946164131165, 0.012419348582625389, 0.015662362799048424, 0.0006734083872288465, -0.021921981126070023, 0.0053140162490308285, 0.016141824424266815, -0.03239019215106964, 0.02360009215772152, 0.02245471440255642, -0.027196042239665985, -0.010807829909026623, 0.0016489764675498009, 0.03401502966880798, 0.004494938533753157, 0.012073071673512459, 0.019764410331845284, 0.019764410331845284, -0.0017297188751399517, 0.013930980116128922, -0.021615659818053246, 0.017873207107186317, 0.009109742008149624, 0.004574848338961601, 0.003266321960836649, 0.019418135285377502, 0.0036359059158712626, -0.028581149876117706, -0.0410471111536026, -0.001138717751018703, -0.015342723578214645, -0.035746414214372635, -0.006276266183704138, 0.002728594234213233, -0.012758966535329819, -0.009502632543444633, 0.016914287582039833, -0.024345919489860535, -0.029140518978238106, -0.01948472671210766, -0.010528144426643848, 0.010621373541653156, -0.034041669219732285, 0.005134218838065863, 0.0014949832111597061, 0.02780868671834469, -0.007797886151820421, -0.030738720670342445, 0.01675446704030037, -0.004038785584270954, 0.01767343282699585, 0.03944891318678856, -0.008583667688071728, 0.0069055575877428055, -0.013824433088302612, 0.015116311609745026, 0.01277228444814682, -0.006519325543195009, 0.01586213894188404, -0.00663919048383832, 0.03385521098971367, 0.01459689624607563, 0.02029714547097683, 0.007644725032150745, 0.02533147484064102, 0.007944387383759022, 0.0014417099300771952, -0.026290396228432655, 0.010121935978531837, -0.006739078089594841, 0.03225700929760933, -0.01504972018301487, -0.004132013767957687, 0.013917661271989346, -0.0069055575877428055, -0.011120811104774475, -0.028447967022657394, 0.00259208120405674, -0.003064882243052125, -0.04301822558045387, 0.026250440627336502, 0.025704389438033104, -0.010921035893261433, -0.022894220426678658, -0.03524031862616539, 0.017966436222195625, -0.0022008551750332117, -0.018299393355846405, 0.007125310134142637, -0.03806380555033684, 0.012339438311755657, 0.005833431147038937, -0.02097637951374054, -0.023759912699460983, -0.022840946912765503, 0.0034660969395190477, 0.03228364884853363, -0.015422633849084377, -0.019910912960767746, -0.011673522181808949, 0.0037058270536363125, 0.007391676772385836, -0.028554512187838554, 0.015382678247988224, 0.019897595047950745, -0.004088729154318571, 0.00354933668859303, -0.029353613033890724, 0.0016856018919497728, 0.004847874399274588, 0.00687226140871644, -0.018206166103482246, -0.02655676193535328, 0.006173049099743366, 0.007937728427350521, -0.020337099209427834, -0.00013651294284500182, 0.01169349905103445, 0.03508049622178078, 0.01845921389758587, 0.01584882102906704, -0.005956626031547785, -0.005860067903995514, 0.07335739582777023, 0.0013285040622577071, 0.027968505397439003, 0.05641647428274155, -0.02097637951374054, -0.039422277361154556, -0.008010979741811752, 0.012832216918468475, 0.022201666608452797, -0.011853319592773914, -0.020923105999827385, 0.015356041491031647, -0.005470506846904755, 0.0014616873813793063, 0.007385017350316048, -0.026636673137545586, -0.003361215116456151, 0.0014816649490967393, -0.011353882029652596, -0.00222582696005702, -0.001811293768696487, -0.00493111414834857, -0.000807007949333638, -0.006978808436542749, 0.03750443458557129, 0.004185287281870842, -0.0037890668027102947, -0.002908391645178199, -0.06115780025720596, 0.017247244715690613, -0.04048774391412735, -0.018752217292785645, 0.021535750478506088, 0.0025687741581350565, -0.006912216544151306, -0.024465784430503845, 0.002930033951997757, -0.03670533373951912, 0.009815613739192486, 0.008863353170454502, -0.007025422528386116, -0.021029653027653694, 0.03183082491159439, 0.006143082864582539, -0.014357166364789009, -0.028661059215664864, 0.001420067623257637, -0.021748842671513557, 0.013637976720929146, 0.03958209604024887, 0.026317032054066658, 0.01756688579916954, -0.01407748181372881, 0.0014300564071163535, 0.04027464985847473, 0.05039658397436142, -0.02234816923737526, 0.008050934411585331, 0.0038589879404753447, 0.03132472559809685, 0.011493723839521408, 0.017700068652629852, 0.011886615306138992, -0.01466348860412836, -0.005170844029635191, -0.032336920499801636, 0.021828753873705864, -0.011713476851582527, 0.020803241059184074, 0.023853139951825142, 0.016568010672926903, 0.0053140162490308285, -0.018619034439325333, -0.017074106261134148, 0.026516808196902275, 0.033562205731868744, 0.010448235087096691, 0.031298089772462845, 0.038037169724702835, 0.006659168284386396, -0.003978853113949299, -0.03345566242933273, 0.009902182966470718, -0.01972445659339428, -0.02462560310959816, -0.022747717797756195, -0.04261867702007294, -0.01628832519054413, -0.006486029829829931, 0.03089854121208191, 0.014650169759988785, -0.0011029246961697936, -0.005830101668834686, -0.005154196172952652, -0.0365188792347908, 0.0021592353004962206, -0.0188054908066988, 0.019711138680577278, 0.0076979985460639, -0.02268112637102604, 0.024146143347024918, -0.026157213374972343, -0.0003027840575668961, -0.0005339820636436343, 0.019524680450558662, -0.037451162934303284, -0.02839469350874424, 0.00833061896264553, 0.017580203711986542, 0.017753342166543007, 0.009702407754957676, 0.03294956311583519, -0.024678876623511314, -0.01690096966922283, 0.032550014555454254, 0.0001530568115413189, 0.003702497575432062, -0.01675446704030037, 0.003512711264193058, -0.008909966796636581, 0.022974129766225815, -0.004917795769870281, 0.011746772564947605, 0.0176601130515337, -0.004514915868639946, -0.010894399136304855, -0.011147447861731052, -0.02884751558303833, -0.035639867186546326, -0.03686515614390373, 0.01871226169168949, -0.013917661271989346, 0.02074996754527092, 0.035639867186546326, 0.005723555106669664, -0.022268258035182953, 0.009662453085184097, -0.009955456480383873, -0.017180653288960457, 0.017633477225899696, 0.004767964594066143, -0.008410529233515263, 0.016781102865934372, -0.031750913709402084, 0.022601217031478882, 0.00289507326669991, 0.000765804317779839, -0.012985377572476864, 0.0012211250141263008, 0.009436041116714478, 0.007451609242707491, 0.011640225537121296, 0.015209539793431759, 0.012326120398938656, 0.00890330784022808, 0.051009226590394974, 0.0006525985081680119, -0.013651294633746147, -0.02005741372704506, -0.02521160989999771, -0.0153959970921278, -0.0029799777548760176, -0.005040990188717842, -0.011273971758782864, -0.007038740906864405, -0.004871181678026915, 0.01643482781946659, 0.02198857255280018, -0.013211789540946484, -0.017726706340909004, 0.005500473082065582, 0.008403870277106762, 0.008610304445028305, 0.02578429877758026, -0.015196221880614758, -0.006745737511664629, 0.01883212849497795, -0.031537819653749466, -0.0007966029806993902, -0.021162835881114006, 0.02403959631919861, -0.018672307953238487, 0.0002630371309351176, 0.004568189382553101, 0.005400585476309061, 0.019444771111011505, 0.027755413204431534, 0.006173049099743366, 0.02666330896317959, 0.10276428610086441, -0.017034152522683144, -0.024319281801581383, 0.030179349705576897, 0.00905646849423647, -0.030019529163837433, 0.03033917024731636, -0.0010604725684970617, 0.01791316270828247, -0.011706817895174026, 0.03755770996212959, 0.023320406675338745, -0.026263758540153503, 0.03169764205813408, 0.017020834609866142, -0.00951595138758421, -0.004508256912231445, 0.03806380555033684, -0.032896291464567184, 0.025717707350850105, 0.009189652279019356, 0.002915050834417343, -0.014037526212632656, 0.032443467527627945, -0.0035060520749539137, -0.003955545835196972, -0.012798921205103397, -0.0015732285100966692, 0.0033745334949344397, -0.01675446704030037, -0.0319373719394207, -0.00289507326669991, 0.034973952919244766, 0.009788976982235909, 0.030845267698168755, -0.03127145394682884, 0.0222283024340868, -0.0011653543915599585, -0.0076047698967158794, -0.031404636800289154, 0.023893095552921295, 0.012785603292286396, 0.01868562586605549, -0.008350596763193607, -0.010854444466531277, 0.013165175914764404, -0.005004364997148514, -0.0013368279905989766, 0.05324671044945717, -0.048532016575336456, 0.024425828829407692, -0.009888865053653717, -0.011160765774548054, 0.029939619824290276, 0.012632441706955433, -0.009356130845844746, 0.017154017463326454, 0.05226115137338638, 0.026610035449266434, 0.017486976459622383, -0.014303892850875854, 0.05428553745150566, 0.018858764320611954, 0.017633477225899696, -0.007345062680542469] \ No newline at end of file diff --git a/cache/text-embedding-3-small8a92c220-717f-52f7-9280-9ad8515f1be0 b/cache/text-embedding-3-small8a92c220-717f-52f7-9280-9ad8515f1be0 new file mode 100644 index 0000000000000000000000000000000000000000..b8eabaf18d41d2dd27f43a5e72bcd15728f9787b --- /dev/null +++ b/cache/text-embedding-3-small8a92c220-717f-52f7-9280-9ad8515f1be0 @@ -0,0 +1 @@ +[-0.017290987074375153, -0.005242612212896347, 0.031250566244125366, -0.009322961792349815, 0.02988320030272007, -0.010304979979991913, 0.028466109186410904, 0.08880431950092316, 0.05350136756896973, -0.009130286984145641, 0.015948479995131493, -0.07065562158823013, -0.0926329493522644, 0.013996873050928116, 0.04069783538579941, 0.03798796236515045, -0.05106496810913086, 0.021741146221756935, -0.025035260245203972, 0.01568743772804737, -0.014854585751891136, 0.045719802379608154, 0.0390072725713253, 0.026079431176185608, 0.025656791403889656, -0.0014722510240972042, -0.046241890639066696, -0.0499710738658905, -0.00983261689543724, 0.007638613227754831, 0.08258900791406631, -0.03264279663562775, 0.0176390428096056, 0.05638527125120163, -0.02590540237724781, 0.00962129607796669, -0.019366899505257607, 0.024712063372135162, 0.01056602317839861, -0.009900985285639763, -0.018285434693098068, -0.02563192881643772, 0.015314518474042416, 0.007153819315135479, 0.025756236165761948, 0.008713861927390099, 0.05573888123035431, -0.003210206516087055, -0.013039715588092804, 0.014817293733358383, -0.0074708000756800175, -0.03565100580453873, -0.01489187777042389, -0.03495489060878754, -0.006706316955387592, -0.020933156833052635, 0.02005058340728283, 0.016383551061153412, -0.003968473989516497, 0.004956707824021578, 0.026427488774061203, -0.05926917493343353, -0.010684113949537277, 0.007570244837552309, -0.0043289619497954845, -0.004484344739466906, -0.00020063790725544095, 0.04604300111532211, -0.06399280577898026, 0.020249472931027412, -0.019006410613656044, 0.010255257599055767, 0.0045900046825408936, 0.028068330138921738, 0.024115394800901413, -0.034756001085042953, -0.020398641005158424, 0.04661480709910393, -0.005829958710819483, 0.0253708865493536, -0.0080115320160985, -0.021803298965096474, -0.016035493463277817, 0.003256821306422353, 0.053551092743873596, 0.013611524365842342, -0.06180502101778984, 0.0021334043703973293, -0.01709209568798542, 0.02928652986884117, 0.023071222007274628, -0.018297865986824036, 0.0042326245456933975, 0.03010695055127144, -0.011678563430905342, -0.028938472270965576, -0.004565143492072821, 0.004276131745427847, -0.01606035605072975, -0.004502990283071995, -0.011069463565945625, 0.004667696077376604, -0.014009303413331509, -0.020087875425815582, 0.009080564603209496, 0.003772691823542118, -0.00425748573616147, -0.030231257900595665, 0.02433914504945278, 0.03880838304758072, -0.02757110446691513, -0.0016688101459294558, -0.02568165212869644, 0.034383080899715424, -0.016532719135284424, -0.01115026231855154, -0.06926339119672775, 0.01778821088373661, 0.020187320187687874, 0.032220155000686646, 0.027272770181298256, 0.001828854321502149, -0.004630404524505138, 0.014332499355077744, 0.029013056308031082, 0.027049019932746887, -0.0003424246096983552, 0.02294691652059555, -0.012710303999483585, -0.04803190007805824, 0.02493581548333168, 0.010528731159865856, -0.032493628561496735, 0.023717613890767097, 0.03756532073020935, 0.004639727063477039, -0.0034774646628648043, -0.004394222516566515, -0.02433914504945278, -0.038882967084646225, 0.01203905139118433, -0.028292080387473106, 0.05061746761202812, -0.005634176544845104, -0.05394887179136276, 0.030678758397698402, -0.025395747274160385, 0.04967274144291878, 0.021840590983629227, -0.037217263132333755, 0.020883433520793915, -0.059318896383047104, -0.02359330840408802, -0.0020572668872773647, 0.028466109186410904, -0.0048292940482497215, 0.021753577515482903, 0.07294285297393799, -0.034855447709560394, -0.043233681470155716, -0.05255664139986038, 0.06608115136623383, 0.006706316955387592, 0.037217263132333755, 0.01607278548181057, 0.03771448880434036, -0.015985772013664246, -0.07229646295309067, -0.03495489060878754, -0.06185474246740341, -0.01699265092611313, 0.020174888893961906, -0.0017713627312332392, 0.021915175020694733, -0.06091001629829407, 0.009148932993412018, 0.009795324876904488, -0.05588804930448532, -0.023779766634106636, -0.0247742161154747, -0.04601813852787018, 0.022076772525906563, 0.013263466767966747, 0.01284082606434822, -0.07115284353494644, -0.02563192881643772, 0.01961551047861576, 0.014705418609082699, 0.01026147324591875, 0.026676101610064507, -0.001257822965271771, 0.0011482781264930964, 0.028292080387473106, 0.017402861267328262, -0.00798045564442873, 0.017328277230262756, -0.0008281897753477097, 0.034532248973846436, -0.020187320187687874, -0.009024626575410366, 0.00857090950012207, -0.004938061814755201, 0.008061254397034645, 0.033786412328481674, -0.0006941721658222377, 0.010827066376805305, -0.035228364169597626, -0.00707923574373126, 0.038609493523836136, 0.022337816655635834, 0.015488547272980213, 0.0361233688890934, -0.023531155660748482, -0.005059260409325361, -0.007489446084946394, 0.03199640288949013, -0.052705809473991394, -0.04460104927420616, -0.0394299142062664, 0.04293534532189369, 0.049797046929597855, 0.002725412370637059, 0.02113204635679722, -0.0005920080584473908, -0.04089672490954399, -0.025358455255627632, 0.03236932307481766, -0.0050685834139585495, -0.021405519917607307, -0.008285005576908588, 0.025706512853503227, 0.012561136856675148, -0.014854585751891136, -0.005227074027061462, 0.02037377841770649, -0.010758697986602783, -0.01112540066242218, 0.012237940914928913, -0.06533531844615936, -0.02568165212869644, -0.024227268993854523, 0.02918708510696888, 0.004388007335364819, 0.009764248505234718, -0.04611758515238762, 0.045496053993701935, 0.0016998866340145469, -0.011690993793308735, 0.017315847799181938, 0.0040585957467556, 0.0426618717610836, 0.02532116323709488, 0.03214557096362114, 0.016843484714627266, 0.006439059041440487, -0.0033935580868273973, 0.043183960020542145, 0.03239418566226959, -0.009689664468169212, -0.04445188120007515, 0.005043722223490477, -0.04256242886185646, -0.028739582747220993, -0.0043289619497954845, -0.014257916249334812, -0.027546243742108345, 0.029908061027526855, -0.0033314048778265715, 0.03333891183137894, 0.005028184037655592, -0.005699437111616135, 0.003143391804769635, 0.019603081047534943, -0.004617973696440458, -0.01998843066394329, 0.028515832498669624, 0.006426628213375807, -0.003169806906953454, -0.041095614433288574, 0.03572558984160423, 0.030330702662467957, 0.00646392023190856, -0.015215073712170124, 0.01443194504827261, 0.0215049646794796, -0.0088195214048028, 0.028292080387473106, 0.03144945576786995, 0.011411305516958237, 0.04569494351744652, 0.016470566391944885, -0.04025033488869667, 0.004319638945162296, -0.09889797866344452, 0.01822328194975853, -0.011535611003637314, -0.0029165332671254873, -0.04639105871319771, -0.016023064032197, 0.029808616265654564, 0.03997686132788658, -0.0005096552195027471, 0.007477015256881714, -0.05384942516684532, 0.007390000857412815, 0.023779766634106636, -0.04621702805161476, -0.00442219153046608, -0.025283871218562126, 0.029908061027526855, -0.04126964509487152, -0.04917551577091217, 0.03333891183137894, 0.01364881545305252, 0.006762254983186722, -0.019118286669254303, -0.010143382474780083, -0.03284168615937233, 0.042761318385601044, -0.043507155030965805, 0.00752673763781786, -0.034631695598363876, -0.05024454742670059, -0.0036048784386366606, 0.0002107377804350108, -0.024090532213449478, 0.004279239568859339, 0.0011109862243756652, -0.003174468409270048, -0.052755530923604965, -0.038882967084646225, -0.018869673833251, -0.0035800172481685877, -0.03015667386353016, -0.05767805501818657, -0.046092722564935684, -0.0450485497713089, 0.009733172133564949, 0.02047322317957878, -0.053203035145998, 0.013959581032395363, -0.04867829009890556, 0.02767055109143257, 0.005842389538884163, -0.021790869534015656, -0.02697443589568138, -0.0010931172873824835, -0.02467477135360241, -0.012592213228344917, 0.023879213258624077, -0.04368118196725845, 0.0029849016573280096, 0.03796309977769852, -0.018136268481612206, 0.01967766508460045, 0.02171628549695015, 0.01741529256105423, 0.008303651586174965, 0.00798045564442873, 0.013375341892242432, 0.01201418973505497, 0.03580017387866974, -0.031896959990262985, -0.020348917692899704, 0.08587069064378738, 0.033512938767671585, -0.041692283004522324, -0.03497975319623947, 0.0019034380093216896, 0.004154933150857687, -0.025022828951478004, -0.007383785676211119, -0.0012718073558062315, 0.00900598056614399, -0.04658994823694229, -0.06573309749364853, 0.02113204635679722, 0.022748026996850967, 0.007657259237021208, -0.04445188120007515, 0.022114064544439316, -0.011175123043358326, -0.015140489675104618, -0.006986006163060665, -0.0051058754324913025, -0.021567117422819138, -0.004356930963695049, -0.03112626075744629, -0.049100931733846664, -0.02386678196489811, -0.011249707080423832, 0.004207763355225325, 0.025557344779372215, -0.005006430204957724, 0.010193104855716228, -0.006184231024235487, -0.005938726477324963, 0.04681369662284851, -0.013611524365842342, 0.009925846941769123, 0.007209756877273321, -0.033140022307634354, -0.020933156833052635, -0.04136908799409866, 0.021156907081604004, 0.0008639277657493949, 0.019168009981513023, 0.005861035082489252, -0.003803768428042531, -0.04233867675065994, 0.009521851316094398, -0.05046829953789711, 0.03933046758174896, -0.01950363628566265, -0.02697443589568138, -0.04890204221010208, -0.03376155346632004, -0.004036842379719019, -0.002514092018827796, 0.03371182829141617, 0.03771448880434036, -0.05777750164270401, -0.008278789930045605, -0.039628803730010986, 0.05064232647418976, -0.023518724367022514, 0.00036806275602430105, -0.05752888694405556, 0.026601517572999, -0.03512892127037048, -0.02998264506459236, -0.032543350011110306, -0.015525839291512966, -0.004757818300276995, 0.033562660217285156, 0.017651474103331566, 0.003263036487624049, 0.02111961506307125, -0.006212200038135052, -0.051462747156620026, -0.018633492290973663, 0.012635720893740654, -0.005867250729352236, -0.023133374750614166, 0.00556270033121109, 0.010367133654654026, -0.026402628049254417, 0.015302088111639023, -0.019640373066067696, 0.003284790087491274, 0.01613493822515011, -0.030455008149147034, 0.0430099293589592, -0.01709209568798542, -0.06394308805465698, -0.028341803699731827, 0.03311515972018242, 0.004670803900808096, -0.011305645108222961, 0.031250566244125366, 0.026576656848192215, 0.05718083307147026, -0.014083887450397015, 0.02757110446691513, 0.06802032887935638, -0.02016245760023594, -0.01161019504070282, 0.0470871701836586, 0.00018344869022257626, -0.0024068779312074184, -0.011516964994370937, -0.005056153051555157, 0.02042350172996521, 0.030653897672891617, -0.03236932307481766, -0.015563130378723145, -0.010217965580523014, -0.011473458260297775, 0.05703166499733925, 0.004745387472212315, -1.6412297554779798e-05, -0.012505198828876019, -0.04534688591957092, -0.007464584428817034, -0.04920037463307381, 0.011199984699487686, 0.015662575140595436, 0.008583339862525463, -0.06449003517627716, 0.04002658277750015, 0.02160440944135189, 0.008036392740905285, -0.020547807216644287, -0.01265436690300703, -0.012766242027282715, -0.0394299142062664, -0.011199984699487686, -0.040822140872478485, 0.003918751608580351, -0.0037354000378400087, 0.06657837331295013, -0.04375576600432396, -0.03348807990550995, -0.006849269382655621, -0.022984208539128304, -0.02412782423198223, -0.00903084222227335, -0.04149339348077774, -0.052755530923604965, 0.0011249707313254476, 0.013636385090649128, -0.006830623373389244, -0.047112032771110535, -0.034159332513809204, -0.00491630844771862, 0.056683607399463654, 0.00034300729748792946, -0.00561863835901022, 0.020895864814519882, -0.0016579333459958434, -0.002781350165605545, 0.0029693632386624813, 0.029709171503782272, 0.01961551047861576, -0.027869440615177155, 0.00686791492626071, -0.021268783137202263, 0.026203738525509834, -0.007601321209222078, -0.027073880657553673, 0.050393715500831604, -0.0028543800581246614, 0.023928934708237648, 0.01568743772804737, -0.01591118797659874, -0.01238710805773735, 0.006600657012313604, 0.005093444604426622, 0.009577789343893528, 0.04636619612574577, 0.013288328424096107, -0.013375341892242432, 7.560339145129547e-05, -0.003915643785148859, 0.025880541652441025, 0.015190212056040764, 0.034805722534656525, 0.017241263762116432, 0.007607536856085062, 0.019851693883538246, 0.0031620378140360117, 0.0092421630397439, 0.008390665054321289, 0.010497654788196087, 0.015339379198849201, -0.032070986926555634, 0.020808851346373558, 0.03030584007501602, 0.013785552233457565, 0.024687202647328377, 0.035178642719984055, -0.025383317843079567, 0.0019842369947582483, 0.019951138645410538, -0.04305965080857277, -0.012505198828876019, 0.003924966789782047, 0.05852333828806877, -0.022126495838165283, 0.016855914145708084, -0.0063955518417060375, 0.001676579238846898, 0.04703744873404503, -0.006488781422376633, 0.006793331354856491, 0.02998264506459236, 0.02048565447330475, -0.011765577830374241, 0.056783050298690796, -0.0040585957467556, -0.015128059312701225, -0.03972824662923813, -0.0022918947506695986, 0.009944492019712925, -0.04030005633831024, 0.032319601625204086, 0.0072905560955405235, 0.0020510514732450247, 0.0048665860667824745, -0.00032746902434155345, -0.015525839291512966, -0.02918708510696888, 0.009956923313438892, 0.019590649753808975, 0.04435243457555771, -0.016594871878623962, 0.026079431176185608, 0.009652373380959034, 0.046788837760686874, -0.02305879257619381, -0.0009726956486701965, -0.016619732603430748, -0.0030890079215168953, 0.011429950594902039, -0.022399969398975372, 0.018944257870316505, 0.05454554036259651, -0.030280979350209236, -0.003505433676764369, -0.0011296322336420417, 0.01785036362707615, 0.03957907855510712, 0.04803190007805824, -0.0028590415604412556, 0.009136502631008625, -0.012679227627813816, -0.025880541652441025, 0.026104291900992393, 0.01864592358469963, 0.007974239997565746, 0.032816823571920395, -0.012051481753587723, 0.00533273397013545, -0.012728950008749962, 0.006681455764919519, -0.0025311841163784266, -0.02095801755785942, -0.0022328493651002645, 0.0158490352332592, -0.03756532073020935, -0.0002474469365552068, 0.005342056974768639, 0.0006840723217464983, -0.0031977759208530188, -0.036471426486968994, 0.032816823571920395, -0.013512078672647476, -0.005506762769073248, 0.05026941001415253, -0.04934954270720482, 0.00988855492323637, -0.04191603511571884, 0.01499132253229618, -0.004605542868375778, 0.0016998866340145469, -0.03353780135512352, -0.028988195583224297, 0.018248144537210464, 0.01177179254591465, 0.011025955900549889, 0.008471464738249779, 0.01133672147989273, 0.026949575170874596, 0.000837512721773237, 0.020137596875429153, -0.003151161130517721, 0.028192635625600815, 0.02278531901538372, -0.006930068135261536, 0.011380228213965893, -0.004645942710340023, 0.0463164746761322, -0.016383551061153412, -0.029211945831775665, -0.01699265092611313, -0.02509741298854351, 0.020771559327840805, 0.011299429461359978, 0.015065905638039112, -0.019739817827939987, -0.07776593416929245, -0.006762254983186722, 0.006644164212048054, 0.018347589299082756, 0.014071457087993622, -0.006861699745059013, 0.03704323619604111, -0.06115862727165222, 0.03025611862540245, -0.005003322847187519, 0.021430380642414093, -0.00407102657482028, -0.031573764979839325, -0.03473113849759102, 0.007427292875945568, -0.005957372486591339, 0.011541826650500298, -0.023891642689704895, 0.032070986926555634, -0.03875865787267685, -0.003921859432011843, 0.0020759128965437412, 0.03669517859816551, -0.03885810449719429, 0.0017775780288502574, -0.04763411730527878, -0.042761318385601044, 0.04363146051764488, -0.028565553948283195, -0.04703744873404503, 0.03604878485202789, 0.02509741298854351, -0.013474787585437298, -0.03540239483118057, -0.03898240998387337, 0.02757110446691513, -0.0031915605068206787, 0.003614201443269849, 0.03759017959237099, -0.015016183257102966, -0.03435822203755379, -0.03649628907442093, -0.00642041303217411, -0.033140022307634354, -0.014929168857634068, -0.011840160936117172, 0.002747165970504284, -0.0017263017361983657, -0.00549743976444006, -0.01934203691780567, 0.016197092831134796, 0.008334727957844734, -0.007557814475148916, -0.053551092743873596, 0.022884763777256012, 0.01579931192100048, -0.042114924639463425, 0.050766635686159134, 0.05494331941008568, -0.01794980838894844, -0.013338050805032253, -0.004207763355225325, -0.004304100759327412, -0.011050817556679249, -0.005951157305389643, 0.05897083878517151, -0.035452116280794144, -0.01730341650545597, -0.038882967084646225, -0.029634587466716766, -0.00817312952131033, -0.03885810449719429, 0.005115198437124491, -0.020274333655834198, -0.011461027897894382, 0.010112306103110313, 0.01951606571674347, 0.06692643463611603, 0.024960676208138466, 0.015413963235914707, -0.02913736365735531, 0.007974239997565746, 0.022698303684592247, 0.02121906168758869, 0.004241947550326586, -0.004860370885580778, -0.015351810492575169, 0.04741036891937256, 0.0042326245456933975, -0.020821280777454376, -0.016781330108642578, 0.007831287570297718, 0.006892776116728783, 0.027695411816239357, -0.015724727883934975, 0.019528497010469437, -0.041841451078653336, 0.012828395701944828, 0.03075334243476391, -0.011659917421638966, 0.015675006434321404, -0.015463685616850853, -0.008235283195972443, 0.0042108711786568165, 0.023195529356598854, -0.02251184545457363, 0.02553248405456543, -0.01924259215593338, 0.02037377841770649, -0.027397077530622482, 0.008409311063587666, 0.0032878979109227657, 0.010677898302674294, 0.0069549293257296085, -0.0036110938526690006, 0.008881675079464912, 0.01885724440217018, -0.03580017387866974, -0.03241904452443123, -0.005155597813427448, -0.0321207121014595, -0.031076539307832718, -0.010708975605666637, -0.01837245002388954, -0.02488609217107296, 0.0013409527018666267, -0.0345073901116848, -0.05837417021393776, 0.044700492173433304, 0.016097648069262505, 0.013251036405563354, 0.012604644522070885, 0.043407708406448364, -0.04649050161242485, 0.03552670031785965, 0.037764210253953934, -0.0005935619119554758, 0.012219294905662537, -0.019951138645410538, -0.014009303413331509, 0.008409311063587666, -0.002841949462890625, -0.025880541652441025, -0.004751602653414011, 0.004217086359858513, -0.0014015518827363849, 0.005528516136109829, 0.019379328936338425, 0.00988855492323637, -0.01133672147989273, 0.03030584007501602, -0.03811226785182953, 0.02365546114742756, -0.02359330840408802, -0.014257916249334812, 0.025196857750415802, -0.027745133265852928, 0.04263701289892197, 0.013797983527183533, -0.0006118193850852549, -0.002360263140872121, -0.024761786684393883, 0.02063482254743576, -0.025035260245203972, 0.01133672147989273, -0.008807091042399406, 0.005596884526312351, -0.00579266669228673, 0.0008165360777638853, -0.0040772417560219765, -0.0316980704665184, -0.022188648581504822, 0.045769527554512024, 0.033512938767671585, 0.037117816507816315, 0.02391650341451168, 0.007222187705338001, -0.008701430633664131, 0.003390450496226549, 0.009956923313438892, 0.01606035605072975, -0.03686920553445816, -0.05250691995024681, 0.007147604133933783, -0.02752138301730156, 0.026477210223674774, 0.0036639238242059946, -0.0036670316476374865, -0.01118133869022131, -0.004804432857781649, -0.007091666106134653, -0.009509420953691006, 0.012337385676801205, -0.019155578687787056, 0.04723633825778961, 0.009932061657309532, -0.03460683301091194, 0.0032164216972887516, 0.047062311321496964, 0.02111961506307125, 0.004599327687174082, -0.017924947664141655, -0.004885232076048851, -0.015500977635383606, 0.026576656848192215, 0.03617309033870697, -0.02913736365735531, -0.009043272584676743, -0.01123727671802044, -0.011386443860828876, 0.008235283195972443, -0.02257399819791317, 0.003468141658231616, -0.03465655446052551, 0.00485104788094759, 0.008272574283182621, -0.008900321088731289, -0.017875224351882935, -0.0008041054243221879, -0.0022623720578849316, 0.03371182829141617, 0.023046361282467842, -0.009211085736751556, -0.061456963419914246, -0.019640373066067696, 0.018869673833251, 0.023518724367022514, 0.032816823571920395, -0.0288141667842865, 0.007048158906400204, 0.023556016385555267, 0.024264561012387276, 0.00945969857275486, -0.014270346611738205, 0.0034836800768971443, 0.012977562844753265, -0.031250566244125366, 0.0015328503213822842, -0.0011739162728190422, 0.06404253095388412, -0.0316980704665184, -0.0041735791601240635, 0.04524743929505348, -0.004562036134302616, 0.008825737051665783, -0.03197154402732849, -0.010298765264451504, -0.014680556952953339, 0.04099617153406143, 0.02230052463710308, 0.028789306059479713, 0.005972910672426224, 0.021591980010271072, 0.006756039336323738, 0.003143391804769635, -0.008657923899590969, -0.013325619511306286, 0.011616410687565804, 0.030504731461405754, -0.008266359567642212, 0.025184426456689835, 0.022188648581504822, -0.002037067199125886, -0.047758426517248154, -0.020572667941451073, 0.0002185069170081988, 6.90967426635325e-05, 0.022586427628993988, -0.018695645034313202, -0.039852552115917206, -0.011330505833029747, 0.015600422397255898, -0.012753811664879322, -0.011933390982449055, 0.019118286669254303, 0.029858337715268135, 0.007613752037286758, 0.02928652986884117, 0.05220858380198479, -0.015587992034852505, 0.006563364993780851, 0.0013774675317108631, 0.00748323043808341, -0.0031387305352836847, -0.01118133869022131, 0.01201418973505497, 0.004990892019122839, -0.016619732603430748, 0.031026815995573997, -0.025557344779372215, -0.029485419392585754, 0.02095801755785942, 0.04201548174023628, -0.029709171503782272, -0.0029553789645433426, -0.007265694905072451, 0.0001497500779805705, 0.006662809755653143, 0.048728011548519135, 0.06180502101778984, 0.04052380844950676, -0.015165351331233978, 0.00026007177075371146, 0.002246833872050047, -0.018931826576590538, 0.012206864543259144, -0.03903213143348694, 0.05014510452747345, -0.013101869262754917, 0.01666945591568947, 0.014543820172548294, -0.00916136335581541, -0.011678563430905342, 0.01438222173601389, 0.021678993478417397, -0.015898756682872772, 0.00665037939324975, 0.03500461205840111, 0.020224612206220627, -0.012523844838142395, 0.015811743214726448, 0.02946055866777897, -0.0261788759380579, 0.012517630122601986, 0.021417951211333275, -0.0483550950884819, -0.0174650140106678, 0.010516300797462463, 0.0063365064561367035, 0.03052959218621254, 0.0286401379853487, -0.026352904736995697, -0.0014100979315117002, -0.019304746761918068, 0.017601750791072845, 0.007632398046553135, 0.02655179426074028, -0.012101204134523869, 0.014605972915887833, -0.0018987765070050955, 0.002776688663288951, -0.017589321359992027, -0.012349816970527172, -0.021405519917607307, 0.010447932407259941, -0.010118520818650723, -0.015401532873511314, -0.027695411816239357, -0.019379328936338425, -0.003968473989516497, 0.0235435850918293, 0.005708760116249323, -0.006364475004374981, 0.010895434767007828, -0.04030005633831024, 0.025433039292693138, -0.001976467901840806, 0.024202408269047737, 0.0013906750828027725, 0.024973107501864433, 0.0006646494730375707, -0.031200844794511795, -0.037739347666502, -0.0062992144376039505, -0.02149253338575363, -0.006780900992453098, 0.0043134237639606, -0.009627511724829674, -0.010224181227385998, -0.0020432823803275824, -0.02466234192252159, 0.017726058140397072, 0.010336057282984257, -0.04353201389312744, 0.009291885420680046, 0.023419279605150223, -0.0052022128365933895, 0.03868407383561134, 0.028888750821352005, -0.009080564603209496, 0.014829724095761776, 0.0057025449350476265, 0.041244782507419586, 0.0048665860667824745, -0.005342056974768639, 0.0397779680788517, 0.023779766634106636, 0.00569632975384593, -0.020137596875429153, -0.02430185303092003, 0.022909624502062798, -0.010410640388727188, 0.021616840735077858, -0.026775546371936798, 0.007825072854757309, -0.03401016443967819, 0.05961723253130913, -0.016358690336346626, 0.01507833693176508, -0.030231257900595665, 0.01751473732292652, 0.00838445033878088, 0.024525605142116547, -0.013934720307588577, 0.021032601594924927, 0.004782679490745068, 0.017987100407481194, 0.04920037463307381, 0.018409742042422295, -0.0014318515313789248, 0.03010695055127144, 0.015737159177660942, -0.007961809635162354, -0.022909624502062798, -0.05663388594985008, 0.0023322943598031998, 0.019553357735276222, 0.015065905638039112, -0.006140724290162325, -0.005028184037655592, 0.028093190863728523, -0.03565100580453873, -0.0006052156095393002, 0.03413446992635727, -0.005823743529617786, -0.009049488231539726, 0.024649910628795624, -0.021206630393862724, -0.011001095175743103, -0.041567977517843246, -0.032767102122306824, -0.017067234963178635, -0.04412868618965149, 0.015724727883934975, -0.003061039140447974, -0.01056602317839861, 0.02284747175872326, 0.021417951211333275, -0.011479673907160759, -0.013586662709712982, -0.02074669674038887, -0.010205535218119621, 0.013536940328776836, 0.002629075199365616, -0.01702994294464588, 0.02263615094125271, 0.01096380315721035, 0.005217751022428274, 0.005631068721413612, -0.003259928897023201, 0.004832401871681213, -0.004304100759327412, 0.014717848971486092, 0.021517395973205566, -0.011697209440171719, 0.007427292875945568, 0.027073880657553673, 0.0013595985947176814, -0.05220858380198479, 0.018621062859892845, 0.005236397031694651, 0.01357423234730959, 0.03575044870376587, 0.027968885377049446, -0.017179111018776894, -0.028714722022414207, -0.04537174850702286, 0.004515421111136675, -0.012505198828876019, -0.03167320787906647, -0.029261669144034386, 0.02993292175233364, 0.016955358907580376, -0.013785552233457565, 0.0033966656774282455, 0.02757110446691513, -0.047808147966861725, 0.09800297021865845, 0.0017977777170017362, 0.02435157634317875, 0.0014108748873695731, -0.03296599164605141, -0.025408178567886353, 0.016296537593007088, -0.0016812407411634922, -0.02370518445968628, 0.03271738067269325, -0.009422406554222107, -0.007613752037286758, 0.04330826550722122, -0.003259928897023201, 0.017440153285861015, 0.05663388594985008, 0.03530294820666313, 0.02779485657811165, 0.0006052156095393002, -0.0034961106721311808, 0.0030113165266811848, -0.007694551255553961, 0.0029957783408463, -0.04199061915278435, 0.012269017286598682, -0.010926511138677597, -0.0014761355705559254, 0.026004847139120102, -0.01709209568798542, 0.012853256426751614, 0.03182237595319748, 0.015339379198849201, -0.01545125525444746, -0.0014178671408444643, -0.033189743757247925, 0.016147369518876076, -0.0006693109753541648, 0.026253459975123405, 0.0009400653070770204, -0.024202408269047737, -0.0026539363898336887, 0.0061189704574644566, 0.02896333485841751, 0.009465913288295269, 0.004997107665985823, 0.005655929911881685, -0.006743608973920345, -0.009354038164019585, -0.007961809635162354, 0.008856813423335552, 0.0010814635315909982, -0.008452818728983402, -0.003468141658231616, 0.020038152113556862, 0.035327810794115067, 0.02063482254743576, -0.0015957802534103394, 0.009652373380959034, 0.0044128685258328915, 0.011355367489159107, -0.0072532640770077705, -0.008869243785738945, 0.019168009981513023, 0.007974239997565746, 0.015476115979254246, -0.0024954460095614195, -0.008309866301715374, 0.008204205892980099, 0.013934720307588577, 0.023991087451577187, 0.005814420524984598, -0.012144711799919605, -0.00036301283398643136, 0.007949378341436386, 0.02121906168758869, -0.01478000171482563, 0.02401595003902912, 0.004148717969655991, -0.033885858952999115, -0.013524509966373444, 0.001494004623964429, 0.020622391253709793, 0.009422406554222107, 0.031300291419029236, 0.00021190315601415932, 0.013623954728245735, -0.023294974118471146, 0.0076261828653514385, 0.031573764979839325, -0.037167541682720184, -0.00645148940384388, -0.001373582985252142, -0.006606872193515301, 0.011032171547412872, -0.01628410629928112, -0.011187554337084293, -0.02375490590929985, 0.0022173109464347363, 0.016246814280748367, 0.00900598056614399, -0.0029507174622267485, 0.017775779590010643, -0.004636619705706835, -0.028565553948283195, 0.019553357735276222, 0.0060972170904278755, 0.0019080995116382837, -0.005258150398731232, 0.034905169159173965, -0.02849097177386284, 0.0018304081168025732, -0.015563130378723145, 0.007371354848146439, -0.0206969752907753, 0.04042436182498932, 0.014829724095761776, 0.046788837760686874, 0.028043469414114952, -0.0015748036094009876, 0.007570244837552309, 0.028292080387473106, -0.0028854566626250744, 0.011697209440171719, -0.027372214943170547, -0.013002423569560051, 0.009018411859869957, 0.016023064032197, 0.0065012117847800255, 0.0019873445853590965, 0.02956000342965126, -0.016520287841558456, 0.03149918094277382, 0.01859620027244091, -0.002276356564834714, -0.0057615903206169605, 0.025408178567886353, 0.007365139666944742, 0.013909858651459217, -0.01354937069118023, -0.006482566241174936, 0.005189782008528709, -0.013387773185968399, -0.010870573110878468, 0.006519857794046402, -0.01670674793422222, 0.006911422125995159, -0.0031884529162198305, 0.02632804401218891, -0.03274223953485489, 0.019429052248597145, -0.00546636339277029, -0.002632182789966464, 0.0008336281753145158, 0.018956689164042473, -0.005136951804161072, -0.023854350671172142, 0.024500742554664612, -0.0036701392382383347, 0.006432843394577503, 0.012144711799919605, -0.0034836800768971443, 0.003151161130517721, -0.03525322675704956, -0.04199061915278435, -0.023904073983430862, 0.023183098062872887, -0.037068095058202744, 0.016781330108642578, 0.030057229101657867, -0.018882105126976967, 0.017067234963178635, -0.015065905638039112, -0.023730045184493065, 0.01149831898510456, 0.0018941150046885014, -0.008390665054321289, 0.01157911866903305, 6.370690243784338e-05, -0.03139973431825638, -0.006681455764919519, -0.02118176966905594, -0.005152489989995956, 0.008850598707795143, -0.022648582234978676, -0.0027642580680549145, -0.033836133778095245, -0.012598428875207901, -0.00557513115927577, -0.04067297279834747, -0.007228402886539698, 0.012803534045815468, -0.000806436175480485, 0.004879016429185867, -0.011597764678299427, -0.004325854126363993, -0.008055038750171661, -0.007321632467210293, 0.017166679725050926, -0.0026166446041315794, -0.012368462048470974, 0.024861231446266174, 0.038410600274801254, -0.028988195583224297, 0.01056602317839861, 0.009298100136220455, -0.00022685872681904584, -0.04760925844311714, -0.02121906168758869, -0.021616840735077858, 0.018882105126976967, 0.020087875425815582, -0.011144046671688557, -0.010124736465513706, 0.027397077530622482, 0.022561566904187202, -0.019068563356995583, -0.0044719139114022255, 0.018310297280550003, -0.014394653029739857, -0.010031506419181824, -0.05305386707186699, -0.05325275659561157, 0.013661246746778488, 0.01864592358469963, 0.032046128064394, -0.03391071781516075, 0.012324955314397812, -0.030007505789399147, 0.019752247259020805, -0.03167320787906647, 0.04310937598347664, -0.05648471787571907, -0.02499796822667122, 0.02042350172996521, 0.02428942359983921, -0.01998843066394329, -0.013860136270523071, 0.031896959990262985, -0.01443194504827261, 0.0245628971606493, 0.016644593328237534, -0.05757861211895943, 0.023046361282467842, 0.021057462319731712, -0.020920725539326668, 0.009963138028979301, 0.028391525149345398, 0.011603979393839836, -0.02121906168758869, -0.01561285275965929, 0.003291005501523614, -0.010193104855716228, 0.003440172877162695, 0.005397995002567768, -0.0008849044679664075, -0.013561801984906197, -0.035601284354925156, -0.019540928304195404, 0.009204871021211147, 0.004760925658047199, -0.02310851402580738, -0.008521187119185925, 0.021529825404286385, -0.006401767022907734, -0.0154263935983181, 0.015401532873511314, -0.01203905139118433, -0.010876788757741451, 0.013375341892242432, -0.010255257599055767, -0.0029957783408463, 0.009279454126954079, 0.028292080387473106, 0.000613373180385679, -0.025781096890568733, 0.04658994823694229, 0.004704988095909357, 0.0056434995494782925, 0.005214643198996782, -0.012157142162322998, 0.00916136335581541, -0.01655757986009121, -0.024040810763835907, -0.0385846309363842, -0.023071222007274628, 0.019963568076491356, 0.012300093658268452, -0.03398530185222626, 0.03376155346632004, 0.013362911529839039, -0.02121906168758869, -0.020174888893961906, -0.017166679725050926, -0.003210206516087055, -0.005475685931742191, -0.03177265450358391, 0.009322961792349815, -0.0705561712384224, 0.019168009981513023, 0.018024392426013947, 0.009465913288295269, -0.029584864154458046, -0.009291885420680046, -0.006550934631377459, 0.037540458142757416, -0.011548042297363281, 0.018074115738272667, 0.011653701774775982, -0.012436830438673496, -0.0013922289945185184, 0.0014419513754546642, 0.025296302512288094, -0.03801282122731209, 0.019553357735276222, -0.008763584308326244, 0.0197149571031332, 0.031946681439876556, -0.04815620556473732, 0.037540458142757416, 0.027645688503980637, 0.0061189704574644566, 0.0015678113559260964, 0.015103197656571865, -0.006087894085794687, 0.004872801247984171, 0.010460362769663334, -0.005208428017795086, 0.0034898952580988407, -0.008005316369235516, 0.017290987074375153, 0.0034898952580988407, 0.011044601909816265, 0.0009478344582021236, -0.01392228901386261, 0.019739817827939987, -0.03572558984160423, -0.014307638630270958, 0.014904308132827282, 0.029211945831775665, -0.00323196011595428, 0.04865342751145363, 0.020933156833052635, 0.006526072975248098, -0.003657708643004298, -0.03226987645030022, 0.020013291388750076, 0.002638398203998804, 0.0051276287995278835, -0.01833515800535679, -0.0014908969169482589, 0.012461692094802856, -0.019652802497148514, 0.00881330668926239, -0.018422171473503113, -0.014655695296823978, -0.04644078016281128, 0.03709295764565468, 0.044103823602199554, 0.0725947916507721, 0.008477679453790188, -0.005811312701553106, -0.008776014670729637, 0.011641271412372589, -0.007825072854757309, -0.025706512853503227, -0.012542490847408772, 0.017875224351882935, 0.010304979979991913, -0.01982683129608631, -0.009347822517156601, -0.0017604859312996268, -0.002234403043985367, 0.006494996603578329, -0.03177265450358391, 0.015140489675104618, 0.020386209711432457, -0.006081678438931704, 0.031200844794511795, -0.07289312779903412, -0.0030594852287322283, 0.017987100407481194, 0.03495489060878754, 0.028689861297607422, 0.007327847648411989, -0.015525839291512966, 0.021243922412395477, -0.0070978812873363495, 0.013027285225689411, 0.02729763090610504] \ No newline at end of file diff --git a/cache/text-embedding-3-small8b18ee60-ac62-5ef1-9864-7c844d3ffb9e b/cache/text-embedding-3-small8b18ee60-ac62-5ef1-9864-7c844d3ffb9e new file mode 100644 index 0000000000000000000000000000000000000000..2a7ab8a463783c8ee7b573a68b3a4b603c8f942f --- /dev/null +++ b/cache/text-embedding-3-small8b18ee60-ac62-5ef1-9864-7c844d3ffb9e @@ -0,0 +1 @@ +[-0.004995420109480619, -0.036922670900821686, 0.030429765582084656, -0.011922706849873066, -0.009093493223190308, 0.03591672703623772, 0.002957814373075962, 0.0923181027173996, -0.00047010675189085305, -0.012379953637719154, 0.010030848905444145, -0.05427518114447594, -0.030841289088129997, -0.01968446932733059, 0.017169613391160965, 0.029698170721530914, -0.03093273751437664, 0.020896174013614655, 0.005724156741052866, 0.021227676421403885, -0.012299935333430767, -0.002617737278342247, -0.01035092119127512, 0.04218100756406784, 0.019821643829345703, 0.032395925372838974, -0.039300352334976196, -0.018575645983219147, 0.03644255921244621, -0.01102536078542471, 0.050388582050800323, -0.02170778624713421, 0.05953351780772209, 0.09483296424150467, 0.018518490716814995, -0.004618191625922918, -0.05683576315641403, -0.00031167789711616933, -0.009253529831767082, 0.019855936989188194, 0.02786918543279171, -0.019993111491203308, 0.024279799312353134, 0.022862333804368973, 0.03879738226532936, -0.026291683316230774, 0.017112456262111664, -0.005235474556684494, 0.0029978235252201557, 0.0651119276881218, 0.015043416060507298, 0.0017303929198533297, 0.010362353175878525, -0.005275483708828688, -0.03301320970058441, -0.029492409899830818, 0.0063728755339980125, -0.019272947683930397, 0.018198417499661446, -0.021810665726661682, 0.00602994067594409, -0.020873310044407845, -0.030086832121014595, 0.027777735143899918, -0.03760853782296181, -0.033127520233392715, -0.02956099808216095, 0.04240962862968445, -0.0003275743802078068, 0.006412884686142206, 0.014403270557522774, 0.035871002823114395, 0.023388167843222618, 0.02310238778591156, 0.004398141521960497, -0.042638253420591354, -0.0756286010146141, 0.006338581908494234, 0.01732964813709259, -0.024714183062314987, -0.01903289370238781, 0.0037094135768711567, -0.02686324156820774, 0.051440250128507614, 0.023296717554330826, 0.006264279596507549, 0.0016375146806240082, 0.014197509735822678, -0.0022433665581047535, 0.03134426102042198, -0.012700026854872704, -0.022347930818796158, -0.013637382537126541, 0.005984215997159481, -0.016255119815468788, -0.019135773181915283, 0.03710556775331497, 0.028783679008483887, 0.013980316929519176, 0.0026205950416624546, 0.013237291015684605, -0.029652446508407593, -0.0010088004637509584, -0.022313637658953667, 0.032167304307222366, 0.0033178962767124176, -0.023731103166937828, -0.009430713020265102, -0.016220826655626297, 0.005961353424936533, -0.0529034398496151, -0.0244169719517231, 0.013614519499242306, 0.06428888440132141, -0.036876942962408066, 0.003195011056959629, -0.032807450741529465, -0.046067602932453156, 0.03026973083615303, 0.02407403662800789, 0.0030321169178932905, -0.02309095673263073, -0.00610995851457119, -0.019158635288476944, 0.011379726231098175, 0.0326702743768692, -0.05646996572613716, -0.012688594870269299, -0.059030547738075256, -0.05816177651286125, 0.012539990246295929, 0.015043416060507298, -0.06799258291721344, 0.004143797792494297, 0.023376736789941788, -0.009459290653467178, -0.0129057876765728, -0.008539081551134586, -0.013157272711396217, -0.021159090101718903, -0.010122298263013363, 0.0017546841409057379, -0.004140940029174089, -0.0014674760168418288, -0.07238215208053589, 0.018186986446380615, -0.047416482120752335, -0.002413405105471611, -0.023662514984607697, -0.010956773534417152, -0.013728831894695759, -0.0034579280763864517, -0.03829440847039223, 0.0367397703230381, -0.011591203510761261, 0.022256482392549515, 0.033104658126831055, 0.04579325392842293, -0.04796517640352249, 0.002424836391583085, 0.06451750546693802, 0.08431628346443176, -0.01730678603053093, 0.014894810505211353, 0.05953351780772209, -0.010442370548844337, 0.00748741440474987, -0.007550285663455725, -0.07027881592512131, -0.014060335233807564, -0.008527650497853756, -0.004086642060428858, -0.0023291001562029123, 0.005421231035143137, -0.007401680573821068, -0.022942351177334785, -0.009270676411688328, 0.010642416775226593, -0.004655342549085617, -0.015317763201892376, -0.009299254044890404, 0.04318694770336151, 0.02617737278342247, -0.05706438422203064, 0.0013217286905273795, 0.008247586898505688, -0.014666187576949596, -0.03374480456113815, -0.007115901447832584, 0.009070631116628647, -0.012231349013745785, 0.06831265240907669, 0.027754873037338257, 0.021513456478714943, -0.022199325263500214, 0.034796472638845444, 0.02210787683725357, 0.07242787629365921, 0.0027934913523495197, 0.011625496670603752, 0.04462727531790733, -0.003966615069657564, 0.004589613527059555, -0.02482849545776844, -0.03625966235995293, 0.0009109211387112737, -0.04855959862470627, 0.020964760333299637, 0.014311821199953556, 0.022553691640496254, 0.01220848597586155, 0.006824406795203686, -0.027686286717653275, 0.042615391314029694, -0.02175351046025753, 0.009916537441313267, -0.01567213051021099, -0.04240962862968445, 0.007190203759819269, -0.0017675441922619939, -0.012151330709457397, 0.04108361527323723, 0.0077960556373000145, 0.005064006894826889, -0.062414173036813736, -0.013100117444992065, 0.007533139083534479, -0.0015503519680351019, -0.024874219670891762, 0.011128241196274757, 0.03847730904817581, -0.004755365662276745, -0.022176463156938553, -0.04647912457585335, -0.02274802140891552, 0.014814792200922966, 0.030361179262399673, 0.021662062034010887, -0.03122994862496853, -0.03676263242959976, -0.030498353764414787, 0.038202960044145584, 0.03184723109006882, 0.0014689048985019326, -0.014357545413076878, -0.007213066332042217, 0.04167803376913071, -0.05637851357460022, 0.052491918206214905, 0.0019104337552562356, 0.023593928664922714, 0.007287369109690189, 0.019158635288476944, -0.015146296471357346, 0.016598055139183998, 0.013145841658115387, 0.0100137023255229, -0.02690896764397621, 0.0033636209554970264, -0.03904886543750763, -0.0011831257725134492, 0.004355274606496096, 0.018815699964761734, -0.04851387068629265, -0.03898027911782265, 0.006784397643059492, -0.01662091724574566, -0.015134865418076515, 0.014151784591376781, 0.013248722068965435, -0.040329158306121826, -0.008973466232419014, 0.009516446851193905, 0.009830803610384464, -0.05752163007855415, 0.03776857629418373, -0.03491078317165375, 0.01170551497489214, -0.050800107419490814, 0.02312524989247322, -0.01459760032594204, -0.01798122562468052, -0.04732502996921539, -0.04259252920746803, 0.010499526746571064, 0.017215337604284286, -0.000781606009695679, -0.017455391585826874, 0.006973011884838343, 0.05029713362455368, 0.026085922494530678, -0.034453537315130234, 0.028692228719592094, -0.0467991977930069, 0.005166887305676937, 0.025308603420853615, 0.04110647737979889, -0.010482380166649818, 0.003623679978772998, 0.026748931035399437, 0.020210303366184235, 0.04307263717055321, 0.007773193530738354, -0.01665521040558815, 0.03671690821647644, 0.011945569887757301, 0.02956099808216095, -0.006681517232209444, 0.03132139891386032, -0.03605389967560768, -0.034156326204538345, -0.010659563355147839, 0.04275256395339966, -0.006281426176428795, -0.0013410188257694244, -0.034453537315130234, -0.0015589253744110465, 0.010836746543645859, -0.024737045168876648, -0.018907150253653526, 0.013157272711396217, -0.008327605202794075, 0.00025827292120084167, 0.005692721344530582, -0.02145630121231079, -0.021261969581246376, 0.04791945219039917, 0.035848140716552734, 0.019593020901083946, -0.05025140941143036, -0.040214844048023224, -0.01836988516151905, 0.004818236920982599, -0.018529921770095825, -0.05628706514835358, -0.02143343724310398, -0.022999508306384087, 0.012688594870269299, 0.030726976692676544, -0.026588894426822662, -0.01411749143153429, 0.031115636229515076, 0.00899061281234026, -0.03429350256919861, 0.02510284259915352, -0.023982588201761246, 0.015306332148611546, 0.009053484536707401, -0.036488283425569534, 0.08728838711977005, -0.015706423670053482, -0.009767931886017323, 0.012368522584438324, 0.036579735577106476, -0.03401915356516838, -0.0060985274612903595, -0.025651538744568825, 0.03671690821647644, 0.040923576802015305, 0.05985359102487564, -0.006864415947347879, -0.010711003094911575, -0.029149476438760757, 0.025331465527415276, 0.0016060789348557591, 0.025079980492591858, -0.05884764716029167, -0.02720617689192295, 0.04554177075624466, 0.01255142129957676, -0.050845831632614136, -0.02784632332623005, 0.02716045267879963, -0.007881789468228817, -0.03454498574137688, -0.0738910660147667, 0.011379726231098175, 0.0169752836227417, 0.013877436518669128, -0.02615451067686081, -0.02315954491496086, -0.022656572982668877, -0.01120254397392273, -0.06090525910258293, 0.013077255338430405, -0.011339717544615269, 0.020187441259622574, -0.04929119348526001, 0.010711003094911575, -0.028097808361053467, 0.016826678067445755, 0.04117506369948387, 0.002017600927501917, 0.025079980492591858, 0.004641053732484579, -0.027274765074253082, 0.019147204235196114, 0.01292864978313446, 0.05066293105483055, 0.005109731573611498, -0.01934153400361538, -0.020176010206341743, -0.018815699964761734, -0.04983988776803017, -0.01291721872985363, -0.029149476438760757, -0.06410598754882812, 0.014643324539065361, -0.03500223159790039, -0.046067602932453156, 0.019135773181915283, -0.06707808375358582, 0.01734108105301857, -0.03358476981520653, -0.018186986446380615, -0.039597563445568085, -0.03625966235995293, 0.022873764857649803, -0.027411937713623047, 0.0347050242125988, 0.04240962862968445, -0.044695861637592316, -0.04149513691663742, 0.01339732762426138, 0.04394140467047691, 0.01510057132691145, 0.010065142065286636, -0.03543661907315254, 0.004972557537257671, -0.008259017951786518, -0.06780967861413956, 0.004581040237098932, 0.015775009989738464, -0.024028312414884567, -0.021330557763576508, 0.02789204753935337, 0.026954691857099533, 0.004475302062928677, 0.019650176167488098, -0.03509368374943733, 0.021593473851680756, 0.020576100796461105, 0.012665732763707638, -0.03511654585599899, 0.005772739183157682, -0.013648813590407372, 0.02645171992480755, -0.018575645983219147, -0.028417881578207016, -0.02144486829638481, 0.001012372667901218, -0.014826223254203796, 0.016563760116696358, -0.017912639304995537, -0.05221756920218468, 0.010510957799851894, 0.04110647737979889, 0.013031530193984509, -0.03765426203608513, -0.02104477770626545, 0.018164124339818954, -0.0038894545286893845, -0.005009708926081657, 0.024737045168876648, 0.025240017101168633, -0.009762216359376907, -0.01204845029860735, 0.021319126710295677, -0.02450842224061489, 7.604405254824087e-05, -0.007973238825798035, 0.030155418440699577, 0.02110193483531475, -0.014083197340369225, -0.015832165256142616, -0.014654755592346191, -0.03763139992952347, -0.041632309556007385, -0.01704386994242668, -0.004803948104381561, 0.013717399910092354, 0.0005515537923201919, -0.04117506369948387, -0.0002638098958414048, 0.02043892629444599, 0.007424542680382729, 0.029743896797299385, 0.0011674079578369856, -0.06922714412212372, -0.027091866359114647, 0.016049358993768692, 0.003552235197275877, 0.00313785532489419, -0.00988795980811119, -0.012459971942007542, -0.051806047558784485, -0.021673493087291718, -0.029446685686707497, 0.0034350657369941473, -0.015089140273630619, 0.0509830042719841, 0.004846814554184675, 0.007956092245876789, 0.013797418214380741, 0.06566062569618225, 0.011619781143963337, -0.06588924676179886, -0.004461012780666351, -0.030818425118923187, 0.009665051475167274, -0.008641961961984634, 0.052857715636491776, -0.02786918543279171, -0.00263631297275424, -0.0009080633171834052, 0.022279344499111176, 0.02038177102804184, 0.0009044910548254848, 0.019250085577368736, -0.040260568261146545, 0.010133729316294193, -0.005869904067367315, 0.011574056930840015, 0.01626655086874962, -0.007807487156242132, 0.017466822639107704, 0.007407396100461483, 0.009739354252815247, -0.0007312374655157328, -0.011957000941038132, 0.023045232519507408, 0.003903743578121066, 0.003426492214202881, 0.00029220920987427235, 0.005361217074096203, -0.01700957678258419, -0.02615451067686081, -0.03150429576635361, 0.0544123537838459, 0.005224043503403664, 0.015763578936457634, 0.020850447937846184, 0.001119539956562221, 0.03351617977023125, -0.0007373102707788348, -0.021616335958242416, -0.028760815039277077, 0.029743896797299385, 0.02786918543279171, 0.018861426040530205, 0.04855959862470627, -0.03918604180216789, 0.014711911790072918, 0.030406903475522995, 0.014368976466357708, -0.039917636662721634, -0.009007759392261505, 0.0275262501090765, 0.04526742175221443, 0.05166887491941452, 0.013351603411138058, -0.02246224321424961, 0.009705061092972755, 0.010105151683092117, -0.010808167979121208, 0.00646432489156723, 7.019451004453003e-05, 0.045701805502176285, -0.03173292055726051, 0.0033178962767124176, 0.000412950903410092, 0.026657480746507645, 0.028440743684768677, -0.006973011884838343, 0.033196110278367996, -0.008281880058348179, 0.004655342549085617, 0.035139407962560654, 0.06616359204053879, 0.013534501194953918, -0.005692721344530582, -0.06867845356464386, -0.024942805990576744, -0.01801551878452301, -0.052263293415308, 0.013523070141673088, 0.04085499048233032, -0.012608577497303486, 0.014723342843353748, -0.004129508975893259, -0.01662091724574566, -0.0014774783048778772, -0.0005083297146484256, 0.015374919399619102, 0.02450842224061489, -0.012482834048569202, -0.001351020997390151, -0.02339959889650345, 0.022599417716264725, 0.028097808361053467, -0.034110601991415024, 0.008367613889276981, -0.03870593011379242, -0.010105151683092117, -0.02240508794784546, -0.017066732048988342, 0.023045232519507408, 0.007470267359167337, 0.01635799929499626, -0.04224959388375282, 0.025651538744568825, 0.027686286717653275, 0.04135796055197716, -0.003586528589949012, 0.02170778624713421, 0.0134430518373847, -0.01694098860025406, -0.0013474487932398915, 0.0051125893369317055, 0.0003602603683248162, 0.0268861036747694, -0.0021404859144240618, 0.011345433071255684, -0.005524111445993185, 0.016575191169977188, -0.0010923908557742834, -0.007738899905234575, -0.023239562287926674, 0.04108361527323723, -0.005564120598137379, -0.01020231656730175, -0.018472766503691673, -0.03061266429722309, -0.015614974312484264, 0.015386350452899933, -0.004935406148433685, -0.0028006359934806824, 0.007121616974473, 0.0320301279425621, -0.024897081777453423, 0.05953351780772209, -0.013866005465388298, -0.005109731573611498, 0.02277088537812233, 0.016449449583888054, -0.004538173321634531, 0.032121580094099045, -0.021627767011523247, 0.0034350657369941473, 0.025765851140022278, 0.007927514612674713, -0.012780044227838516, 0.027343351393938065, -0.007710322272032499, 0.03237306326627731, -0.02239365689456463, -0.017066732048988342, 0.02341102994978428, 0.005209754221141338, 0.02921806275844574, -0.0033950565848499537, 0.06282569468021393, -0.0051125893369317055, -0.0058098905719816685, -0.016197962686419487, -0.026588894426822662, -0.006224270444363356, 0.0015132006956264377, -0.033836252987384796, -0.024279799312353134, -0.07027881592512131, -0.013065823353827, 0.0578417032957077, 0.012848631478846073, -0.00021522743918467313, -0.028646504506468773, -0.0025005678180605173, -0.017946932464838028, 0.01838131621479988, -0.003232162445783615, -0.02411976270377636, 0.015020553022623062, -0.05176032334566116, -0.02277088537812233, 0.03868306800723076, -0.03264741227030754, -0.0018575646681711078, -0.030841289088129997, 0.030681252479553223, 0.0563327893614769, -0.014711911790072918, 0.024256935343146324, -0.008316174149513245, -0.03527658060193062, 0.011031076312065125, -0.028074946254491806, 0.002643457381054759, 0.02652030810713768, -0.03607676178216934, -0.0925467237830162, 0.023731103166937828, 0.011288276873528957, 0.0173525121062994, 0.02278231643140316, -0.037174154072999954, 0.030452629551291466, -0.03356190770864487, 0.015134865418076515, 0.02754911221563816, 0.011945569887757301, -0.016220826655626297, -0.012837200425565243, -0.00364940008148551, -0.05395510792732239, 0.005129736382514238, 0.03150429576635361, 0.0077674780040979385, 0.04483303800225258, 0.023285286501049995, 0.034476399421691895, 0.02001597359776497, -0.02553722634911537, -0.014231802895665169, -0.0347050242125988, 0.021970702335238457, 0.0044524394907057285, -0.01326015405356884, -0.032464515417814255, 0.0258115753531456, -0.0186328012496233, 0.028120670467615128, -0.019593020901083946, 0.007996100932359695, -0.01256285235285759, -0.01255142129957676, 0.042615391314029694, -0.008973466232419014, -0.00885343924164772, -0.012471402995288372, -0.032121580094099045, 0.00245912978425622, -0.03241879120469093, 0.032761722803115845, -0.020804723724722862, -0.020999053493142128, -0.015866460278630257, 0.03358476981520653, 0.04492448642849922, -0.013534501194953918, -0.020244596526026726, -0.046044740825891495, 0.005138309672474861, -0.016129376366734505, -0.00669866381213069, 0.016895264387130737, 0.006670085713267326, -0.021890684962272644, 0.051851771771907806, -0.004746791906654835, -0.03571096435189247, 0.030704114586114883, 0.03093273751437664, 0.0017546841409057379, 0.003540803911164403, -0.0032435934990644455, 0.003412203397601843, -0.02239365689456463, -0.0023133824579417706, -0.018461335450410843, -0.028280707076191902, 0.04213527962565422, 0.021273402497172356, 0.024302661418914795, -0.02720617689192295, -0.001901860348880291, 0.0017618285492062569, -0.018427040427923203, 0.003295033937320113, -0.0006372875650413334, -0.024005450308322906, 0.0027106155175715685, -0.016438018530607224, -0.02139914408326149, 0.00045617501018568873, -0.021867822855710983, -0.03660259768366814, 0.02072470635175705, -0.058619022369384766, 0.0042295316234230995, -0.018198417499661446, 0.009447859600186348, 0.01391172967851162, 0.004398141521960497, 0.014334683306515217, -2.0339439288363792e-05, 0.030704114586114883, -0.016712365671992302, -0.029492409899830818, 0.008922025561332703, 0.010922480374574661, -0.00664150808006525, 0.003612248692661524, -0.004175233654677868, -0.025240017101168633, -4.983274266123772e-05, 0.047782279551029205, -0.008790567517280579, 0.047462206333875656, -0.009602179750800133, -0.0037151293363422155, 0.003092130646109581, 0.010808167979121208, -0.0023648226633667946, 0.012391384690999985, 0.011854120530188084, 0.020187441259622574, 0.025605814531445503, -0.0021547749638557434, 0.01665521040558815, -0.0019761628936976194, -0.008859154768288136, -0.017924070358276367, -0.020930467173457146, -0.007007305510342121, -0.004589613527059555, 0.05345213785767555, -0.0007437402964569628, 0.006584352347999811, 0.05582981929183006, -0.017569703981280327, -0.022290775552392006, 0.0025891594123095274, -0.013603088445961475, -0.021582042798399925, 0.0058641885407269, -0.016072221100330353, 0.037928611040115356, 0.005481244530528784, 0.0005076152738183737, -0.00848764181137085, 0.036213938146829605, -0.04078640416264534, 0.02347961626946926, -0.012139899656176567, -0.013465914875268936, 0.021902116015553474, 0.051440250128507614, 0.0037351336795836687, -0.011076800525188446, 0.015912184491753578, 0.033150382339954376, -0.027000416070222855, -0.044695861637592316, 0.003086415119469166, -0.05345213785767555, 0.039620425552129745, -0.000710518448613584, 0.00024398397363256663, 0.04458155110478401, -0.024897081777453423, -0.0069158561527729034, -0.029309511184692383, 0.003340758616104722, -0.0529034398496151, 0.028783679008483887, -0.016815247014164925, 0.036168213933706284, -0.026611756533384323, 0.06428888440132141, 0.0023648226633667946, -0.007561716716736555, 0.015614974312484264, 0.02109050378203392, -0.005949922371655703, 0.04659343510866165, 0.033173248171806335, -0.04135796055197716, 0.0030178281012922525, -0.015729285776615143, -0.025354327633976936, 0.05500677600502968, -0.002406260697171092, 0.009036337025463581, -0.01511200238019228, -0.007195919752120972, 0.019535863772034645, -0.0002693468704819679, 0.03795147314667702, -0.03715129196643829, 0.029035164043307304, 0.04083212837576866, 0.013614519499242306, 0.011488323099911213, 0.008053257130086422, -0.0354594811797142, 0.029515273869037628, 0.009122070856392384, 0.03971187397837639, 0.015169158577919006, 0.02248510532081127, -0.0132830161601305, -0.003257882548496127, -0.03527658060193062, 0.03527658060193062, -0.006995873991400003, 0.008504788391292095, -0.031184222549200058, -0.03132139891386032, 0.05299488827586174, 0.021856391802430153, -0.026566032320261, -0.03198440372943878, 0.03920890390872955, -0.028395019471645355, 0.008459063246846199, -0.014883379451930523, -0.02070184238255024, 0.00019986681581940502, 0.015820734202861786, -0.022290775552392006, 0.03664832189679146, 0.006921571679413319, 0.0026020193472504616, -0.014700480736792088, 0.018518490716814995, -0.013660244643688202, -0.013328740373253822, -0.0046753473579883575, 0.014300390146672726, 0.02416548691689968, 0.048422422260046005, -0.0002195141278207302, -0.024622732773423195, -0.019261516630649567, -0.016815247014164925, -0.01053953543305397, 0.01699814572930336, 0.019787350669503212, -0.0068472689017653465, -0.02073613740503788, 0.03269313648343086, -0.023045232519507408, -0.0177297405898571, -0.0007312374655157328, 0.010362353175878525, 0.02139914408326149, 0.004378136713057756, -0.001048809615895152, 0.03205299377441406, -0.059624966233968735, 0.050480034202337265, -0.00610995851457119, 0.01874711364507675, -0.0007373102707788348, -0.02610878460109234, 0.007996100932359695, -0.0028763674199581146, 0.07764048874378204, -0.019250085577368736, -0.019227223470807076, -0.002130483742803335, -0.04750793054699898, 0.010030848905444145, -0.0033121805172413588, -0.024028312414884567, -0.014026042073965073, -0.017123887315392494, -0.019890230149030685, 0.01668950356543064, 0.015432075597345829, 0.008842007257044315, -0.0003965185896959156, 0.004643911495804787, 0.006738672964274883, -0.023548204451799393, 0.0019447272643446922, -0.0037094135768711567, 0.013968885876238346, 0.026428857818245888, 0.01208274345844984, 0.022610848769545555, -0.022999508306384087, -0.00884772278368473, 0.015146296471357346, -0.0010152305476367474, 0.005584124941378832, 0.03269313648343086, -0.012139899656176567, 0.011505469679832458, -0.0032864604145288467, 0.009282107464969158, 0.034133464097976685, 0.023228131234645844, 0.038271546363830566, -0.025697262957692146, -0.019147204235196114, -0.010973920114338398, 0.050480034202337265, 0.01634656824171543, 0.023845413699746132, 0.0029220920987427235, 0.04723358154296875, -0.017158182337880135, 0.0004883251385763288, -0.011133956722915173, -0.0204046331346035, 0.035893864929676056, -0.023502478376030922, 0.0063728755339980125, -0.021662062034010887, 0.009430713020265102, 0.010007986798882484, -0.009973692707717419, 0.023708241060376167, -0.02242795005440712, 0.0008952032658271492, 0.004123793449252844, 0.017878344282507896, -0.032784584909677505, -0.02101048454642296, 0.014574738219380379, -0.00628714170306921, 0.010825315490365028, -0.027251901105046272, -0.009053484536707401, 0.043004050850868225, 0.011494038626551628, 0.027457663789391518, 0.017535410821437836, -0.0015975055284798145, -0.004621049389243126, -0.0018875714158639312, -0.06396880745887756, 0.01085960865020752, -0.007127332501113415, -0.037860024720430374, 0.04355274513363838, 0.0033836252987384796, 0.03335614502429962, 0.009733638726174831, -0.02855505421757698, -0.010396646335721016, 0.03326469659805298, -0.045701805502176285, -0.020816154778003693, 0.010785305872559547, -0.018529921770095825, 0.02073613740503788, 0.01221991702914238, 0.004343843553215265, 0.017558272927999496, -0.0029049452859908342, 0.013705968856811523, 0.011979863047599792, 0.024256935343146324, 0.032738860696554184, -0.004012339748442173, 0.026040198281407356, 0.027709148824214935, 0.019958818331360817, 0.010899617336690426, 0.015912184491753578, -0.002772057894617319, -0.01931867189705372, 0.009196373634040356, -0.015534956008195877, 0.014586169272661209, -0.005755592603236437, 0.022942351177334785, 0.012494265101850033, 0.01327158510684967, -0.007658881600946188, -0.015557818114757538, -0.011785533279180527, 0.02892085164785385, 0.034133464097976685, -0.0034407812636345625, -0.0008887732401490211, 0.02620023488998413, -0.003040690440684557, 0.0004979702061973512, 0.014883379451930523, -0.027617698535323143, -0.004123793449252844, -0.005887051112949848, -0.014414701610803604, 0.010219463147222996, -0.005915628746151924, 7.774086407152936e-05, -0.000768031517509371, 0.03742564097046852, -0.010670994408428669, -0.01511200238019228, 0.0011431167367845774, -0.023731103166937828, -0.02510284259915352, 0.015832165256142616, 0.022496536374092102, 0.02106763981282711, -0.013328740373253822, 0.006555774249136448, -0.0007119473884813488, -0.01700957678258419, -0.008493357338011265, -0.005927060265094042, 0.004086642060428858, 0.054915327578783035, -0.028052084147930145, 0.007698890753090382, -0.039963360875844955, -0.009876527823507786, -0.012539990246295929, 0.014643324539065361, 0.015855029225349426, 0.00747598335146904, 0.008093265816569328, 0.014586169272661209, -0.01055668294429779, 0.007738899905234575, -0.000621212471742183, -0.0007987527642399073, -0.04993133619427681, 0.014711911790072918, 0.04204383119940758, -0.0013417332665994763, 0.033767666667699814, 0.04869677126407623, -0.006310004275292158, -0.023182407021522522, -0.007504560984671116, -0.03058980219066143, -0.028303569182753563, 0.03198440372943878, 0.00048618181608617306, -0.014723342843353748, 0.011596919037401676, -0.01511200238019228, -0.021570611745119095, -0.030452629551291466, 0.002836358267813921, 8.765383245190606e-05, 0.007247359957545996, 0.03678549453616142, 0.008984897285699844, 0.02274802140891552, 0.0013681678101420403, -0.029743896797299385, 0.08989469707012177, 0.014769067987799644, -0.0052154697477817535, 0.0037751428317278624, -0.01459760032594204, -0.02482849545776844, -0.007481698878109455, -0.01761542819440365, 0.009407849982380867, -0.007750330958515406, -0.01866709627211094, -0.012688594870269299, 0.025262879207730293, 0.005269767716526985, 0.018827131018042564, 0.04613618925213814, 0.022587986662983894, 0.010951058007776737, -0.014940534718334675, 0.0009895103285089135, 0.008356182835996151, 0.0002745266247075051, 0.0007055173045955598, -0.009104924276471138, -0.0056612854823470116, 0.007681744173169136, -0.004086642060428858, 0.007470267359167337, -0.014780499041080475, 0.014357545413076878, -0.02411976270377636, 0.024988530203700066, -0.022702297195792198, 0.04341557249426842, -0.045381732285022736, 0.04243249073624611, -0.014414701610803604, 0.00815613754093647, -0.002414833987131715, 0.011899844743311405, -0.03134426102042198, 0.010699572041630745, -0.013111548498272896, 0.0013838856248185039, 0.0025391478557139635, -0.023593928664922714, -0.003572239773347974, -0.010522388853132725, -0.012254211120307446, -0.0325559638440609, -0.033127520233392715, 0.0077446154318749905, -0.02039320208132267, 0.005741303786635399, -0.012345660477876663, 0.05939634144306183, 0.026314545422792435, -0.0072702220641076565, -0.007150195073336363, 0.019638745114207268, -0.0022062151692807674, 0.03159574419260025, 0.025925885885953903, -0.011368295177817345, 0.013500208035111427, -0.005055433604866266, 0.023731103166937828, 0.043644193559885025, 0.021524887531995773, 0.02757197432219982, 0.0058470419608056545, 0.010099436156451702, 0.0036436845548450947, 0.013877436518669128, 0.0036408265586942434, 0.002702041994780302, -0.021833529695868492, 0.02782345935702324, -0.02549150213599205, 0.006281426176428795, -0.009202089160680771, 0.002266228897497058, -0.025079980492591858, 0.03056694008409977, -0.012277073226869106, -0.008253302425146103, -0.015752147883176804, -0.017101025208830833, 0.010465233586728573, -0.04490162432193756, -0.0333104208111763, -0.01600363291800022, 0.015306332148611546, 0.013637382537126541, -0.003597959876060486, -0.0026806085370481014, -0.04851387068629265, -0.004252394195646048, -0.0020833301823586226, -0.006378591060638428, 8.055400394368917e-05, 0.003583670826628804, -0.010173738934099674, 0.0037608540151268244, -0.014323252253234386, -0.010076574049890041, -0.003743707202374935, -0.016735227778553963, -0.01104822289198637, -0.025354327633976936, -0.013968885876238346, -0.010316628031432629, 0.018221279606223106, -0.018552783876657486, 0.00817899964749813, -0.047416482120752335, 0.027594836428761482, -0.0025334323290735483, -0.0033521896693855524, -8.452811744064093e-05, 0.0074416897259652615, 0.006973011884838343, -0.005309776868671179, -0.018884288147091866, -0.040306296199560165, 0.011425451375544071, 0.03326469659805298, 0.010791021399199963, 0.0007037312025204301, -0.0045210267417132854, 0.03536802902817726, 0.027960633859038353, 0.01704386994242668, -0.00915636494755745, -0.014769067987799644, 0.009830803610384464, 0.008150422014296055, 0.026611756533384323, -0.006241417024284601, 0.006732957437634468, -0.03708270564675331, -0.034179188311100006, -0.02341102994978428, 0.019181497395038605, 0.023502478376030922, 0.016369430348277092, -0.02478276938199997, 0.008933456614613533, 0.0230795256793499, -0.027640562504529953, -0.03264741227030754, 0.007327377796173096, 0.03429350256919861, -0.024691320955753326, -0.00030614095157943666, -0.041655171662569046, 0.015740716829895973, -0.007578863762319088, 0.03840871900320053, 0.03705984354019165, -0.011356864124536514, -0.0036436845548450947, -0.023868275806307793, -0.03845444694161415, 0.004783943295478821, 0.017409667372703552, -0.01426609605550766, -0.00772175332531333, 0.007693175226449966, 0.00915636494755745, 0.02549150213599205, -0.025742987170815468, 0.0180498119443655, -0.010105151683092117, 0.03134426102042198, 0.026314545422792435, -0.007876073941588402, 0.02926378697156906, -0.05061720684170723, 0.0400548093020916, 0.02818925678730011, 0.014769067987799644, 0.00936784129589796, -0.018461335450410843, -0.02135341987013817, 0.008070403710007668, 0.023936863988637924, -0.009716492146253586, -0.002310524694621563, -0.012448540888726711, 0.041266512125730515, -0.02171921730041504, 0.013077255338430405, -0.0040609221905469894, 0.00705303018912673, -0.012791476212441921, -0.016552329063415527, 0.029149476438760757, 0.022302206605672836, -0.020301751792430878, -0.01495196670293808, 0.031161360442638397, -0.03699125722050667, -0.016369430348277092, 0.007984669879078865, -0.05363503471016884, -0.017455391585826874, -0.012277073226869106, -0.026634618639945984, 0.022622279822826385, 0.04085499048233032, -0.011053938418626785, 0.001548923086374998, 0.04846814647316933, -0.0009209233685396612, 0.015020553022623062, -0.006144252140074968, 0.02549150213599205, 0.020244596526026726, -0.014551875181496143, 0.013854574412107468, 0.0010731008369475603, -0.0031835800036787987, 0.018918581306934357, 0.038591619580984116, -0.04037488251924515, -0.03301320970058441, -0.041975244879722595, 0.014334683306515217, -0.02066754922270775, 0.02620023488998413, -0.0488339439034462, 0.016883833333849907, 0.02313668094575405, 0.0008787709521129727, 0.013866005465388298, -0.01020231656730175, 0.025422915816307068, -0.00800181645900011, -0.03596245124936104, -0.003129282034933567, -0.01738680526614189, -0.04115220159292221, 0.008264733478426933, -0.0030264013912528753, -0.004026628565043211, 0.013248722068965435, -0.0007101612281985581, 0.01665521040558815, 0.01933010295033455, 0.02450842224061489, 0.042615391314029694, -0.012094174511730671, 0.0033636209554970264, 0.0013981745578348637, -0.004715356510132551, 0.007161626126617193, -0.022199325263500214, 0.0015889322385191917, -0.015820734202861786, -0.00783034972846508, -0.011145387776196003, -0.0035379461478441954, -0.00560698751360178, 0.006367160007357597, 0.009590748697519302, 0.02885226532816887, 0.0037237026263028383, 0.003803720697760582, 0.011619781143963337, 0.0014446136774495244, -0.017546841874718666, 0.004206669516861439, -0.01737537421286106, -0.0016503747319802642, 0.0062985727563500404, -0.0012402816209942102, -0.017158182337880135, -0.010145160369575024, -0.004749649669975042, -0.0028692230116575956, 0.015043416060507298, -0.037905748933553696, -0.012974373996257782, 0.016175100579857826, 0.005358359310775995, 0.0146204624325037, -0.01934153400361538, 0.06021938845515251, -0.008316174149513245, 0.02853219211101532, 0.016438018530607224, -0.04183807224035263, -0.019627314060926437, -0.009299254044890404, -0.026680342853069305, -0.009802225977182388, -0.0309555996209383, 0.0049268328584730625, -0.02003883570432663, -0.027617698535323143, -0.0048239524476230145, 0.014163215644657612, -0.014483288861811161, 0.03193867951631546, 0.014186077751219273, 0.0320301279425621, 0.01427752710878849, -0.030475491657853127, -0.018792837858200073, -0.01255142129957676, 0.036122485995292664, -0.01795836351811886, -0.028486467897892, 0.005658427719026804, 0.01460903137922287, 0.03223589062690735, -0.02512570470571518, 0.015855029225349426, 0.03392770513892174, 0.013020099140703678, -0.031481433659791946, 0.030726976692676544, 0.007858927361667156, 0.04277542605996132, -0.007447405252605677, -0.014357545413076878, 0.006458609364926815, 0.007104470394551754, 0.004578182473778725, -0.0038808812387287617, -0.009893675334751606, 0.037882886826992035, -0.029766758903861046, 0.002049036556854844, 0.008796283043920994, -0.011991294100880623, 0.05578409507870674, -0.02271372824907303, 0.0032293046824634075, -0.009379272349178791, -0.011482607573270798, -0.0016232257476076484, -0.013134410604834557, -0.004732503090053797, 0.01599220186471939, 0.02282804064452648, -0.012299935333430767, 0.015374919399619102, -0.005301203578710556, -0.008161853067576885, -0.012962942942976952, -0.008681971579790115, -0.0014731916598975658, -0.021261969581246376, -0.06904424726963043, 0.04236390441656113, -0.00610995851457119, 0.062368445098400116, 0.011625496670603752, 0.0038808812387287617, -0.007561716716736555, -0.007824634201824665, -0.0007587437285110354, -0.03173292055726051, 0.050159960985183716, 0.016815247014164925, -0.016483742743730545, 0.024691320955753326, -0.008081834763288498, -0.006252848077565432, -0.06566062569618225, 0.02411976270377636, -0.0010852464474737644, 0.023205269128084183, -0.01799265667796135, 0.022668004035949707, -0.010991066694259644, 0.004663916304707527, -0.017203906551003456, 0.0033379008527845144, -0.0064414627850055695, -0.003380767535418272, 0.004649627022445202, 0.015763578936457634, 0.03351617977023125, -0.007138763554394245, -0.0009237811900675297, 0.0005347642581909895] \ No newline at end of file diff --git a/cache/text-embedding-3-small916092b0-ff39-5d26-8841-043471b41090 b/cache/text-embedding-3-small916092b0-ff39-5d26-8841-043471b41090 new file mode 100644 index 0000000000000000000000000000000000000000..da084acdbfc7998df82cf0f454ed783ccdbffa24 --- /dev/null +++ b/cache/text-embedding-3-small916092b0-ff39-5d26-8841-043471b41090 @@ -0,0 +1 @@ +[0.03499710187315941, 0.013347310945391655, 0.07687146216630936, 0.030336854979395866, -0.012713879346847534, 0.03834524005651474, -0.003427318064495921, 0.11591800302267075, -0.00601194566115737, 0.0008624851470813155, -0.007437166757881641, -0.055153802037239075, -0.04732639715075493, -0.008692719042301178, 0.007380610331892967, 0.058501943945884705, -0.024454988539218903, 0.0040013655088841915, -0.001439360436052084, -0.014150411821901798, -0.005802686791867018, -0.005353063344955444, 0.007934863679111004, 0.011175544932484627, 0.020315060392022133, 0.01541727501899004, -0.009467542171478271, -0.05461086332798004, 0.011333903297781944, -0.019455403089523315, 0.05669213831424713, -0.029771290719509125, 0.05940684676170349, 0.031739454716444016, 0.014636796899139881, -0.00028260526596568525, -0.003981570713222027, 0.028436558321118355, -0.0025393825490027666, 0.02658150903880596, -0.012521587312221527, -0.04379727691411972, -0.004145584534853697, -0.005039175506681204, 0.03947636857628822, 0.020846689119935036, 0.016899053007364273, -0.020303748548030853, -0.010796617716550827, 0.03784754499793053, -0.003421662375330925, 0.001004583085887134, -0.023844178766012192, -0.001723556313663721, -0.015485143288969994, 0.03420531377196312, 0.009659833274781704, -0.002437580842524767, -0.04180649295449257, 0.01470466423779726, 0.014467127621173859, 0.0025096903555095196, -0.03081192821264267, 0.03348138928413391, -0.0019724045414477587, -0.0725279301404953, -0.03289320319890976, 0.04972438886761665, -0.016899053007364273, 0.032576486468315125, -0.009784257970750332, 0.02245289273560047, -0.0045471349731087685, 0.05379645153880119, -0.008726652711629868, -0.04124093055725098, -0.08908764272928238, -0.010168841108679771, 0.016752006486058235, 0.020756199955940247, -0.006175959017127752, -0.030359476804733276, -0.060492727905511856, 0.022351089864969254, 0.0023824383970350027, -0.012329296208918095, -0.03221452608704567, 0.02875327505171299, -0.048367034643888474, 0.015338096767663956, 0.0425756610929966, 0.018776725977659225, 0.008811487816274166, -0.009823847562074661, 0.016231687739491463, 0.018720168620347977, 0.013268131762742996, -0.014580240473151207, -0.007329709827899933, 0.029793912544846535, 0.05863767862319946, 0.04800507426261902, -0.005692401900887489, 0.016774628311395645, -0.0045867240987718105, -0.026310037821531296, 0.005751786287873983, -0.024138271808624268, 0.019534582272171974, 0.0036394044291228056, -0.04427235201001167, -0.017464617267251015, 0.022995833307504654, 0.032757468521595, -0.001233636518009007, -0.0036450601182878017, 0.0008907633600756526, -0.02524677850306034, 0.05062929168343544, 0.00581399817019701, -0.0034358014818280935, -0.0328705795109272, 0.01651446893811226, 0.022283222526311874, 0.001336851972155273, 0.024907439947128296, -0.031875189393758774, 0.023572709411382675, -0.0422363206744194, -0.019534582272171974, 0.02250944823026657, 0.01987391896545887, -0.04574281722307205, 0.025653984397649765, 0.02123127318918705, -0.007838717661798, -0.0266720000654459, 0.004832744598388672, -0.01229536160826683, -0.05972355976700783, 0.004764876794070005, -0.03289320319890976, 0.02861754037439823, 0.0010074109304696321, -0.08637294173240662, 0.05189615488052368, -0.03162634000182152, 0.008240267634391785, -0.008879355154931545, -0.026174303144216537, -0.030472589656710625, -0.003964603878557682, -0.054294146597385406, 0.0328705795109272, 0.03646756708621979, -0.004408571403473616, 0.004844055976718664, 0.02461334690451622, -0.06651032716035843, -0.037870168685913086, 0.005989322904497385, 0.02949981950223446, -0.019410157576203346, -0.014546306803822517, -0.003319860901683569, 0.0005111285136081278, -0.052393849939107895, -0.02805197611451149, -0.0587281696498394, 0.009394018910825253, -0.002465859055519104, 0.019998343661427498, 0.013403867371380329, -0.014274835586547852, -0.010457279160618782, 0.007488067727535963, -0.00922434963285923, -0.040697988122701645, -0.039408501237630844, -0.04311859980225563, 0.011684552766382694, 0.010010483674705029, -0.02123127318918705, -0.03203354775905609, -0.011203823611140251, -0.020224569365382195, -0.002416372299194336, 0.0010151874739676714, -0.009829502552747726, 0.039295390248298645, 0.03262173384428024, 0.045584458857774734, 0.049045711755752563, 0.014240901917219162, 0.002805197611451149, 0.009507130831480026, 0.009705078788101673, 0.07293513417243958, -0.034522026777267456, 0.0013743205927312374, 0.01860705576837063, -0.08103401213884354, -0.006142025347799063, -0.02931883931159973, -0.008093221113085747, 0.007974452339112759, -0.007997075095772743, 0.05741605907678604, 0.02811984345316887, 0.010621292516589165, 0.007736915722489357, 0.0113169364631176, -0.040630120784044266, 0.039408501237630844, 0.0030483901500701904, 0.016627581790089607, -0.008817142806947231, -0.022271910682320595, 0.0157339908182621, -0.01770215481519699, 0.010706126689910889, 0.03273484483361244, 0.05465610697865486, -0.04434021934866905, -0.05176042020320892, -0.013584847562015057, 0.008002731017768383, 0.029002122581005096, -0.02049604058265686, -0.01782657764852047, 0.037281978875398636, -0.0411730594933033, 0.019975721836090088, -0.04931718483567238, 0.014648107811808586, -0.017928380519151688, 0.042032718658447266, 0.01096063107252121, -0.06800341606140137, -0.05393218621611595, -0.04809556528925896, 0.036580681800842285, 0.012431097216904163, -0.013234198093414307, -0.02127651870250702, 0.01848263293504715, -0.0018649473786354065, -0.019613759592175484, 0.07859078049659729, 0.0047931550070643425, -0.01197864580899477, -0.03474825248122215, -0.01646922528743744, -0.008885011076927185, 0.0051635997369885445, -0.02116340585052967, 0.018041491508483887, 0.02332386001944542, 0.004086200147867203, -0.027848372235894203, 0.010932352393865585, -0.0010491212597116828, -0.023459596559405327, -0.045403480529785156, 0.007131762336939573, 0.008562639355659485, 0.0031728141475468874, 0.005802686791867018, -0.011650619097054005, -0.005720680113881826, -0.03350401297211647, -0.0006701933452859521, 0.006040223874151707, -0.05153419449925423, -0.011548817157745361, 0.033074185252189636, -0.01780395582318306, -0.04513200744986534, -0.03624134138226509, 0.03142273798584938, 0.007680359296500683, -0.04167075827717781, 0.013155018910765648, -0.06298121064901352, 0.029974892735481262, -0.007488067727535963, -0.005211672279983759, 0.02461334690451622, -0.01980605162680149, 0.01996440999209881, 0.04377465695142746, -0.03572102263569832, -0.02188732847571373, -0.058456696569919586, 0.046873945742845535, -0.010061384178698063, 0.002194388536736369, -0.041987475007772446, -0.0006786768208257854, 0.051715172827243805, 0.04372940957546234, 0.06990371644496918, -0.019987031817436218, -0.025156287476420403, 0.01925179921090603, -0.006407840643078089, 0.01713659055531025, 0.010033105500042439, 0.028549671173095703, -0.014942201785743237, -0.019670316949486732, 0.02386680245399475, 0.035969872027635574, -0.04038127139210701, -0.0781383290886879, -0.0422363206744194, -0.01229536160826683, -0.008008386939764023, -0.001801321399398148, 0.0025902832858264446, 6.666365152341314e-06, -0.02266780659556389, -0.05533478409051895, -0.0197155624628067, 0.03235026076436043, -0.0493624284863472, 0.003978742752224207, -0.0028363035526126623, -0.030653569847345352, -0.029974892735481262, -0.009705078788101673, -0.010462934151291847, 0.018629679456353188, -0.046195268630981445, -0.06004027649760246, -0.08325102180242538, 0.005206016823649406, 0.0009381293202750385, -0.004029643721878529, -0.046127401292324066, -0.00735233211889863, -0.015236294828355312, 0.007007338106632233, -0.012238805182278156, 0.023776311427354813, -0.021072914823889732, 0.03363974764943123, 0.050267331302165985, -0.0035573977511376143, 0.07067287713289261, 0.015620877966284752, -0.0019667488522827625, 0.02676248922944069, 0.031151266768574715, -0.026943469420075417, -0.03569840267300606, 0.025133665651082993, 0.009094269946217537, -0.009201726876199245, 0.04940767213702202, -0.007799128070473671, 0.0061703035607934, -0.013211575336754322, -0.01127734687179327, 0.019636383280158043, 0.006973404437303543, -0.03359450399875641, -0.0005560201243497431, 0.03970259428024292, 0.03992881998419762, -0.00953540951013565, 0.002757124602794647, -0.01202389132231474, 0.007069550454616547, 0.002885790541768074, -0.04927193745970726, 0.03753082826733589, 0.03440891578793526, 0.004674386698752642, -0.0280745979398489, -0.018109360709786415, 0.02327861450612545, -0.012397163547575474, -0.00893591158092022, 0.024341875687241554, -0.0024559618905186653, 0.0013608884764835238, -0.03619609773159027, -0.006792423781007528, -0.021514056250452995, 0.037281978875398636, 0.04049438610672951, 0.05723508074879646, -0.002416372299194336, 0.03418269008398056, -0.05746130645275116, 0.034001708030700684, 0.057732775807380676, 0.01577923633158207, 0.030404722318053246, -0.011616685427725315, -0.046263135969638824, 0.003039906732738018, -0.059271108359098434, 0.02612905763089657, 0.011729798279702663, -0.029024746268987656, -0.007646425627171993, -0.010389410890638828, -0.038684580475091934, -0.028346069157123566, -0.06569591909646988, 0.033843349665403366, 0.011175544932484627, 0.0018875699024647474, 0.012351918034255505, -0.04569757357239723, 0.019387533888220787, -0.007227908354252577, 0.027056582272052765, 0.07433773577213287, -0.03160371631383896, -0.0029946614522486925, -0.01229536160826683, 0.0136866495013237, 0.01272519025951624, 0.03002013824880123, 0.022170109674334526, -0.014184345491230488, -0.029228348284959793, -0.04524512216448784, 0.00375817297026515, 0.018041491508483887, 0.013811073265969753, -0.01976080797612667, 0.01642397977411747, 0.008811487816274166, 0.02255469374358654, 0.007029960863292217, -0.06420283019542694, 0.01850525476038456, -0.008353380486369133, 0.007165696006268263, -0.03970259428024292, 0.009405329823493958, 0.003014456247910857, 0.01713659055531025, 0.0422363206744194, -0.01123775728046894, -0.002263670088723302, -0.013245509937405586, -0.002752882894128561, 0.01332468818873167, -0.013754516839981079, -0.018618367612361908, 0.025111041963100433, 0.008556983433663845, -0.013245509937405586, -0.016966920346021652, 0.04596904292702675, 0.03506496921181679, 0.022792229428887367, 0.04581068456172943, 0.002492723520845175, 0.06148812174797058, 0.014636796899139881, 0.001954023726284504, 0.014659419655799866, -0.0340469554066658, -0.03572102263569832, 0.023844178766012192, 0.008025353774428368, -0.02526940032839775, 0.03633183240890503, -0.02592545561492443, -0.0004782550677191466, -0.006255138199776411, -0.005194705445319414, 0.016073329374194145, 0.022758295759558678, -0.03343614563345909, 0.011113333515822887, -0.034589894115924835, 0.01924048736691475, -0.037259358912706375, -0.0005295093287713826, 0.0661936104297638, -0.022464202716946602, -0.005785719957202673, -0.030359476804733276, 0.00462348572909832, 0.031829942017793655, 0.0329836942255497, -0.00885673239827156, 0.0002642244508024305, -0.02386680245399475, -0.03348138928413391, 0.003189781215041876, 0.028979500755667686, 0.010711782611906528, 0.08696112781763077, -0.04710017144680023, -0.01270256843417883, -0.005126838106662035, 0.013675338588654995, 0.01848263293504715, -0.003992882091552019, -0.039996687322854996, -0.03619609773159027, 0.03694264218211174, -0.026423150673508644, 0.012317984364926815, -0.019342290237545967, 0.01903688535094261, -0.015134492889046669, 0.024409743025898933, 0.0014294630382210016, 0.0183695200830698, 0.05320826172828674, -0.018969018012285233, -0.024839572608470917, -0.018708858639001846, 0.01365271583199501, 0.026196924969553947, -0.029703423380851746, 0.0011735453736037016, -0.02465859241783619, 0.04318647086620331, 0.006990371271967888, -0.045584458857774734, 0.0369652658700943, -0.027056582272052765, 0.0018409108743071556, -0.0016585164703428745, -0.018222473561763763, -0.03961210325360298, -0.014817777089774609, -0.0022976037580519915, 0.023075012490153313, 0.004959996324032545, -0.010451623238623142, -0.015485143288969994, -0.0396573506295681, -0.011418737471103668, -0.020371615886688232, -0.011430049315094948, 0.017419371753931046, 0.02391204610466957, -0.01652578078210354, 0.010434656403958797, 0.041444532573223114, -0.04728115350008011, 0.03225977346301079, 0.017577730119228363, 0.024794327095150948, -0.034612517803907394, 0.017679531127214432, 0.025043174624443054, -0.0021449015475809574, 0.0218194592744112, 0.031151266768574715, -0.019353600218892097, -0.008964190259575844, -0.013347310945391655, -0.03377548232674599, 6.417826170945773e-06, 0.01059866975992918, 0.01297403872013092, -0.014308770187199116, 0.025518249720335007, -0.0035545697901397943, 0.01538334134966135, 1.739772233122494e-05, -0.045493971556425095, 0.002502620918676257, 0.022905342280864716, -0.019987031817436218, 0.014817777089774609, 0.07248268276453018, 0.012804369442164898, -0.0197721179574728, -0.038707200437784195, -0.014614174142479897, -0.03214665874838829, -0.018177228048443794, 0.0012908999342471361, 0.02732805348932743, 0.008500427007675171, -0.017543796449899673, -0.0006175252492539585, -0.034431539475917816, -0.022215355187654495, 0.006577509455382824, 0.020722266286611557, -0.014693353325128555, -0.020032277330756187, -0.009586310014128685, 0.002884376561269164, 0.009880403988063335, -0.002495551249012351, -4.429514956427738e-05, -0.025043174624443054, -0.013607470318675041, -0.0397704616189003, -0.03203354775905609, -0.016899053007364273, 0.01856181211769581, -0.017317570745944977, 0.026445774361491203, 0.010479900985956192, 0.0031841255258768797, 0.04022291302680969, 0.009461886249482632, 0.010649570263922215, 0.0018324274569749832, -0.0003506497014313936, -0.059180621057748795, 0.024251384660601616, 0.01840345375239849, -0.014127789065241814, 0.022837474942207336, -0.015145804733037949, 0.008042320609092712, 0.03164896368980408, 0.010938008315861225, 0.040064554661512375, -0.0038232128135859966, -0.015157115645706654, 0.018901150673627853, -0.029771290719509125, -0.008477805182337761, -0.008664441294968128, 0.0012979694874957204, -0.020903246477246284, 0.0017433511093258858, 0.015157115645706654, 0.0039306702092289925, 0.024500234052538872, 0.0287758968770504, -0.014772532507777214, 0.01905950717628002, -0.015473831444978714, 0.027870995923876762, -0.023041078820824623, -0.008251579478383064, -0.004216279834508896, 0.0006822115974500775, -0.013743205927312374, 0.009597621858119965, 0.01130562461912632, 0.0023824383970350027, -0.020778821781277657, 0.013946808874607086, 0.007007338106632233, 0.020869312807917595, -0.03698788583278656, 0.0005341045325621963, 0.01851656660437584, 7.74557629483752e-05, 0.02947719767689705, -0.04327695816755295, 0.03336827829480171, -0.01704609952867031, -0.02798410877585411, 0.008715341798961163, -0.004663075320422649, 0.014376637525856495, 0.028436558321118355, -0.01201257947832346, -0.0034131789579987526, -0.023414351046085358, -0.02404778264462948, 0.042055342346429825, -0.003546086372807622, -0.016220375895500183, -0.020869312807917595, 0.01982867531478405, -0.005353063344955444, 0.021378319710493088, 0.011407426558434963, 0.050991252064704895, 0.001573681947775185, -0.04038127139210701, 0.002856098348274827, 0.016978232190012932, 0.024183517321944237, 0.01432008109986782, -0.022362401708960533, -0.0004938080674037337, 0.014410571195185184, -0.013867629691958427, 0.011808976531028748, 0.01564350165426731, -0.014817777089774609, -0.011435704305768013, -0.00770863750949502, -0.009546720422804356, 0.03368499502539635, -0.05669213831424713, -0.03875244781374931, 0.022000441327691078, 0.013505669310688972, -0.0047224597074091434, -0.0085400165989995, -0.038028523325920105, 0.03542692959308624, -0.01650315895676613, -0.0266720000654459, 0.05945209041237831, -0.019704250618815422, -0.005661295726895332, -0.0005630896775983274, -0.029250971972942352, -0.03361712396144867, -0.0024276836775243282, 0.028572294861078262, -0.01064391527324915, -0.03739509359002113, 0.020778821781277657, 0.0016076157335191965, 0.008794520981609821, -0.033209919929504395, -0.01396943163126707, 0.010904074646532536, 0.02253207005560398, 0.031106021255254745, -0.022758295759558678, 0.015971528366208076, 0.04015504568815231, -0.04719066247344017, 0.008687063120305538, 0.003922186326235533, -0.020145390182733536, -0.014896956272423267, -0.005370030645281076, 0.00205582519993186, -0.002574730198830366, -0.017294947057962418, -0.045493971556425095, -0.011565783992409706, 0.03291582688689232, -0.06243826821446419, -0.0031671584583818913, -0.007069550454616547, -0.022124864161014557, 0.012001268565654755, 0.04010980203747749, 0.06370513141155243, -0.004538651090115309, 0.028165088966488838, -0.0253825131803751, 0.005966700613498688, 0.02814246527850628, 0.010479900985956192, 0.0017179007409140468, 0.023844178766012192, -0.009196070954203606, 0.015553010627627373, 0.0013085737591609359, -0.011650619097054005, 0.00479032751172781, 0.0031162577215582132, -0.003271787893027067, -0.01439926028251648, -0.029907025396823883, 0.018799347802996635, -0.0383678637444973, 0.0036591992247849703, -0.011045465245842934, -0.04723590612411499, 0.006028912495821714, 0.0051918779499828815, 0.019647695124149323, -0.02999751642346382, 0.028323447331786156, -0.013980742543935776, 0.012826992198824883, -0.03710100054740906, 0.03569840267300606, -0.018889838829636574, -0.005449209362268448, -0.018064115196466446, -0.02261124923825264, 0.012091758660972118, -0.003724239068105817, -0.007821750827133656, 0.0246812142431736, -0.041286174207925797, 0.005672607105225325, 0.01851656660437584, 0.004171034786850214, 0.030495211482048035, 0.009987860918045044, 0.020948491990566254, -0.003936325665563345, 0.052303362637758255, -0.020959801971912384, -0.0477336049079895, 0.014444504864513874, 0.02334648370742798, 0.012578143738210201, -0.005403964314609766, 0.030517835170030594, -0.009032057598233223, 0.023459596559405327, 0.011933401226997375, 0.022056996822357178, 0.030359476804733276, -0.00894156750291586, -0.025653984397649765, -0.029907025396823883, 0.024364497512578964, -0.011899467557668686, -0.012137004174292088, -0.0003220180224161595, -0.011407426558434963, 0.016797251999378204, 0.005256917793303728, -0.0004029643605463207, -0.012713879346847534, 0.04594642296433449, -0.011808976531028748, -0.0038458353374153376, 0.005887521430850029, -0.009433607570827007, 0.009507130831480026, -0.02400253713130951, 0.057144589722156525, 0.05800424516201019, -0.007855684496462345, -0.0136866495013237, -0.015677435323596, 0.006962093058973551, 0.012317984364926815, 0.008398625999689102, 0.024477610364556313, 0.033798106014728546, -0.055153802037239075, 0.022090930491685867, -0.004385949112474918, -0.008483460173010826, 0.01910475268959999, 0.019704250618815422, 0.012408474460244179, 0.0091847600415349, 0.021547989919781685, 0.0012032374506816268, 0.004301114473491907, -0.004651763942092657, 0.02395729161798954, -0.005893177352845669, -0.03214665874838829, -0.015010069124400616, -0.008443870581686497, -0.04637625068426132, 0.024862194433808327, 0.0040013655088841915, -0.0012703981483355165, 0.005904488265514374, 0.02054128609597683, -0.03278009220957756, -0.010157530196011066, 0.004015504382550716, -0.039996687322854996, 0.04253041371703148, -0.008364692330360413, 0.020009655505418777, -0.0027627802919596434, 0.01858443394303322, 0.010298920795321465, 0.007663392461836338, 0.03142273798584938, 0.018867215141654015, -0.022882720455527306, 0.036693792790174484, 0.031897809356451035, -0.008636162616312504, -0.011232101358473301, -0.01265732292085886, -0.045403480529785156, 0.0067754569463431835, -0.012566832825541496, 0.0026015944313257933, -0.023459596559405327, 0.03508759289979935, 0.02059784159064293, 0.034499406814575195, 0.015620877966284752, -0.01847132109105587, 0.02194388397037983, 0.06438381224870682, 0.025608738884329796, -0.038707200437784195, -0.02522415481507778, -0.010434656403958797, 0.023459596559405327, -0.024907439947128296, 0.007205285597592592, -0.007075205910950899, 0.04379727691411972, -0.00510704331099987, -0.013087151572108269, -0.01718183420598507, 0.025676606222987175, 0.008421248756349087, 0.014308770187199116, -0.015044002793729305, -0.021434877067804337, 0.05325350910425186, 0.03628658875823021, -0.012419786304235458, 0.029748667031526566, 0.02109553851187229, -0.01844869926571846, -0.018912460654973984, -0.003944809082895517, -0.008409936912357807, 0.012951415963470936, 0.0001358237350359559, 0.008534361608326435, -0.004680042155086994, 0.01365271583199501, -0.002129348460584879, -0.01265732292085886, -0.0008356208563782275, 0.002860340056940913, -0.01202389132231474, -0.018041491508483887, 0.07800258696079254, 0.023663198575377464, 0.010434656403958797, -0.02318812534213066, -0.00925828330218792, -0.02517891116440296, -0.028346069157123566, -0.0330968052148819, 0.04087896645069122, 0.0036365767009556293, -0.001850808272138238, 0.004501889459788799, 0.03262173384428024, 0.0394311249256134, -0.010615636594593525, -0.0011664758203551173, -0.009591965936124325, -0.0028447869699448347, -0.023018455132842064, 0.03142273798584938, 0.043525807559490204, -0.05610395222902298, 0.0293640848249197, -0.0382547490298748, 0.02474908158183098, -0.031038153916597366, 0.002142073819413781, 0.028210334479808807, 0.017543796449899673, 0.03266697749495506, 0.03411482274532318, 0.008313790895044804, 0.009625899605453014, -0.035562664270401, 0.020043589174747467, -0.008715341798961163, -0.0023796106688678265, 0.004510372877120972, -0.03983832895755768, 0.0024559618905186653, 0.02262256108224392, -0.007278808858245611, 0.007171351928263903, 0.01654840260744095, 0.0408337228000164, 0.022905342280864716, 0.007312742993235588, 0.00680939108133316, -0.0001825711369747296, 0.018708858639001846, 0.024160895496606827, 0.023097634315490723, 0.019670316949486732, 0.008528705686330795, 0.01096063107252121, 0.02112947218120098, 0.04253041371703148, 0.02057521976530552, 0.014863022603094578, -0.0053360965102910995, -0.0004347773501649499, -0.02119733951985836, 0.00266663427464664, 0.004122961778193712, 0.006888569798320532, 0.035178083926439285, -0.025540871545672417, -0.04388776794075966, -0.02058652974665165, -0.004807294346392155, -0.03069881536066532, 0.03368499502539635, 0.004877989646047354, -0.002850442659109831, -0.01636742241680622, 0.0030540458392351866, -0.006990371271967888, -0.0027641942724585533, 0.02741854451596737, -0.005649984814226627, 0.025608738884329796, -0.013505669310688972, 0.017939690500497818, 0.020654398947954178, -0.03370761498808861, -0.001545403734780848, 0.006385217886418104, 0.0273732990026474, -0.00992564857006073, -0.020134080201387405, -0.027667392045259476, -0.006798079703003168, 0.011865532957017422, -0.011198167689144611, -0.02809722162783146, 0.02529202401638031, -0.024454988539218903, 0.005539699457585812, 0.0006991785485297441, 0.022905342280864716, 0.032418131828308105, 0.00964286644011736, 0.03011062927544117, -0.009806879796087742, -0.00012221485667396337, 0.0008964189910329878, 0.003031423082575202, -0.02201175130903721, 0.004841228015720844, 0.018041491508483887, 0.014987446367740631, -0.0038203850854188204, -0.04314122349023819, 0.001284537254832685, -0.010875795967876911, -0.05940684676170349, 0.01996440999209881, -0.02318812534213066, 0.0021745937410742044, 0.03771181032061577, 0.03687477484345436, 0.0008589503704570234, 0.009744668379426003, -0.026287415996193886, -0.007278808858245611, 0.022396335378289223, -0.00961458869278431, 0.02590283192694187, 0.012646012008190155, 0.005593428388237953, 0.021672412753105164, 0.005437897983938456, 0.045471347868442535, -0.02247551456093788, 0.01851656660437584, -0.000950854504480958, 0.023731065914034843, -0.019387533888220787, 0.03782492130994797, -0.015055314637720585, 0.004663075320422649, -0.023052388802170753, 0.008709685876965523, 0.016763318330049515, 0.013166330754756927, -0.012872236780822277, 0.02400253713130951, -0.018878526985645294, 0.03549479693174362, -0.0004602277185767889, 0.029771290719509125, -0.006803735159337521, 0.0027118795551359653, 0.005186222027987242, -0.03074406087398529, 0.0035149804316461086, -0.03967997059226036, -0.04078847914934158, 0.009518442675471306, 0.03771181032061577, 0.055741991847753525, 0.009665489196777344, 0.04660247638821602, -0.023798935115337372, 0.0022523587103933096, 0.022192731499671936, -0.024997929111123085, 9.137393499258906e-05, 0.01088710781186819, 0.004829916637390852, 0.0022990177385509014, -0.013426490128040314, 0.020020967349410057, 0.002467273036018014, 0.0029183104634284973, -0.011367836967110634, 0.00010489445412531495, -0.007934863679111004, -0.019659005105495453, -0.008732308633625507, -0.014896956272423267, -0.022418957203626633, -0.014501061290502548, -0.0008568295161239803, 0.023086324334144592, -0.016865119338035583, 0.003291582688689232, -0.00928656104952097, 0.006503986194729805, -0.01270256843417883, 0.013087151572108269, -0.0001493442541686818, -0.013109774328768253, -0.012770435772836208, 0.04574281722307205, 0.018618367612361908, -0.01985129714012146, 0.004292631056159735, 0.024206141009926796, 0.015202361159026623, 0.017951002344489098, -0.015304162167012691, -0.003345311153680086, -0.002545038005337119, 0.026264794170856476, -0.0008971259230747819, -0.026898225769400597, -0.00010604325507301837, -0.011865532957017422, -0.032485999166965485, -0.029273593798279762, -0.028187710791826248, -0.0019596794154495, 0.021321764215826988, 0.011141611263155937, -0.016932986676692963, 0.011933401226997375, -0.01436532661318779, -0.0116958636790514, 0.0807172954082489, 0.0017179007409140468, -0.014478439465165138, 0.01403729896992445, -0.0197721179574728, -0.015044002793729305, 0.02391204610466957, -0.02120865136384964, 0.020168013870716095, 0.0013410936808213592, 0.0018479804275557399, -0.01403729896992445, 0.012385851703584194, -0.017668219283223152, 0.004739426542073488, 0.009501475840806961, 0.00893025565892458, -0.0002741218195296824, 0.018109360709786415, -0.02477170340716839, 0.010061384178698063, 0.024183517321944237, -0.01846000924706459, -0.03020111843943596, 0.0001690506178420037, 0.0011396114714443684, 0.0013474562438204885, 0.02115209400653839, 0.010734405368566513, 0.015519076958298683, -0.010112284682691097, 0.03633183240890503, -0.0006779698887839913, 0.03490661084651947, -0.02459072321653366, -0.002906999085098505, -0.05013159662485123, -0.008964190259575844, 0.016073329374194145, -0.013516980223357677, -0.04228156805038452, 0.002091173082590103, 0.006543575786054134, 0.0014351187273859978, -0.03902391716837883, 0.02060915343463421, -0.005692401900887489, -0.002820750465616584, -0.008274201303720474, -0.0019950270652770996, -0.024522855877876282, -0.030359476804733276, 0.010123596526682377, 0.003294410416856408, 0.006430462934076786, 0.04443071037530899, 0.029974892735481262, 6.221204239409417e-05, -0.01770215481519699, 0.02597069926559925, 0.004937374033033848, 0.008834109641611576, -0.010055728256702423, -0.04594642296433449, 0.01913868635892868, -0.0021335904020816088, -0.004663075320422649, 0.02517891116440296, -0.006068502087146044, 0.01973818428814411, -0.003724239068105817, -0.005681090522557497, 0.0011417323257774115, -0.011452671140432358, -0.007663392461836338, 0.006996027193963528, 0.0028292341157794, 0.005025036167353392, -0.02660413086414337, 0.0004294751852285117, -0.020824067294597626, 0.0031982646323740482, -0.0045471349731087685, 0.05347973480820656, 0.004598035477101803, -0.010440312325954437, 6.795605440856889e-05, -0.0003011628577951342, -0.0246812142431736, -0.017928380519151688, -0.055651500821113586, 0.0007903757505118847, 0.056465912610292435, 0.0029465886764228344, 0.01336993370205164, 0.001416737912222743, -0.040132422000169754, 0.02459072321653366, -0.012227494269609451, -0.02318812534213066, 0.01467073056846857, -0.013460423797369003, 0.010310232639312744, 0.018935084342956543, -0.0027458134572952986, 0.05352497845888138, 0.01534940768033266, 0.004762049298733473, 0.01301928423345089, -0.031920433044433594, 0.006142025347799063, -0.014455816708505154, 0.028527049347758293, -0.018211161717772484, 0.0437520332634449, 0.017294947057962418, 0.009037713520228863, -0.018143294379115105, -0.007572902366518974, 0.027622146531939507, -0.0054690041579306126, 0.008415592834353447, -0.0033566225320100784, -0.0253825131803751, -0.05252958834171295, -0.010621292516589165, 0.02864016219973564, 0.006413496099412441, 0.0009989275131374598, 0.023086324334144592, 0.0280745979398489, 0.07008469104766846, 0.0016231687040999532, 0.03425055742263794, -0.007951830513775349, 0.024884816259145737, 0.0022990177385509014, 0.026898225769400597, 0.024206141009926796, 0.016887741163372993, 0.002649667439982295, -0.0199417881667614, -0.0012569660320878029, 0.00549445440992713, 0.03291582688689232, -0.004812949802726507, -0.011203823611140251, 0.03280271217226982, 0.0190708190202713, 0.01851656660437584, 0.007137417793273926, -0.007273153401911259, 0.03569840267300606, -0.04015504568815231, 0.02798410877585411, -0.00017117148672696203, 0.029024746268987656, 0.0559229701757431, 0.0053360965102910995, -0.0034697353839874268, 0.030268985778093338, 0.01788313500583172, -0.025540871545672417, -0.01909344084560871, -0.01917262002825737, -0.012001268565654755, -0.00231174286454916, -0.00044608861207962036, -0.004326564725488424, -0.019636383280158043, 0.024115649983286858, -0.02870802953839302, -0.027192318812012672, -0.006175959017127752, 0.03465776517987251, 0.026513641700148582, 0.01403729896992445, 0.031083399429917336, -0.015553010627627373, 0.02336910553276539, -0.003625265322625637, -0.007437166757881641, -0.03687477484345436, 0.0020996564999222755, -0.012453719973564148, -0.024228762835264206, 0.03834524005651474, 0.01648053526878357, -0.01270256843417883, 0.005056142341345549, 0.013188953511416912, -0.043367449194192886, 0.034522026777267456, -0.011124644428491592, -0.023776311427354813, -0.00664537725970149, 0.014195657335221767, 0.040811099112033844, 0.01258945558220148, 0.025111041963100433, 0.014433193951845169, 0.01194471213966608, -0.00767470384016633, -0.009942615404725075, -0.0006984715582802892, -0.01301928423345089, -0.025676606222987175, 0.00529650691896677, 0.008381659165024757, 0.0010081179207190871, 0.05004110559821129, -0.0016528608975932002, 0.012849614955484867, 0.015869727358222008, -0.015010069124400616, 0.02249813638627529, 0.009716389700770378, 0.024816948920488358, -0.02257731556892395, 0.005155116319656372, 0.010536457411944866, -0.013845006935298443, 0.006096780300140381, -0.03857146576046944, 0.014591552317142487, -0.0034640796948224306, 0.006826357915997505, -0.02193257212638855, 0.029024746268987656, -0.022204043343663216, 0.011073743924498558, -0.03624134138226509, 0.012498964555561543, 0.006283416412770748, 0.007205285597592592, 0.005678263027220964, -0.0575517937541008, 0.08279857039451599, 0.0031784698367118835, 0.014093855395913124, -0.015123181976377964, -0.03151322901248932, 0.013449112884700298, 0.0381416380405426, 0.03610560670495033, -0.02542775869369507, 0.03133224695920944, -0.021038981154561043, -0.025133665651082993, -0.003990054130554199, 0.0013502840884029865, 0.028210334479808807, -0.0035149804316461086, 0.006815046537667513, 0.018855905160307884, 0.005474659614264965, 0.007929207757115364, 0.007895274087786674, 0.00395612046122551, 0.02327861450612545, -0.020891934633255005, -0.03212403506040573, 0.014218279160559177, -0.029726045206189156, -0.018697546795010567, -0.004122961778193712, -0.0035828480031341314, -0.002758538583293557, 0.007165696006268263, -0.04651198536157608, 0.01769084297120571, -0.003136052517220378, 0.05040306597948074, -0.027463790029287338, -0.012035202234983444, 0.020054901018738747, 0.003365105949342251, 0.004439677577465773, -0.010904074646532536, 0.014059921726584435, -0.026852980256080627, -0.00893025565892458, 0.010581702925264835, -0.025767097249627113, -0.002340021077543497, 0.006990371271967888, 0.010219741612672806, -0.014568929560482502, 0.021649790927767754, 0.006962093058973551, -0.01270256843417883, -0.011684552766382694, -0.05266532301902771, 0.006062846165150404, 0.014059921726584435, -0.05949733406305313, -0.004538651090115309, 0.0009579240577295423, -0.015541699714958668, 0.02676248922944069, 0.02673986740410328, 0.0013969431165605783, 0.0022056996822357178, 0.0012463617604225874, 0.030268985778093338, 0.030992908403277397, 0.038548845797777176, 0.03949899226427078, -0.04746213182806969, 0.01973818428814411, -0.016582338139414787, 0.0003381012356840074, -0.004168206825852394, -0.018245095387101173, -0.005726335570216179, 0.028346069157123566, 0.024319253861904144, -0.01649184711277485, 0.05325350910425186, 0.03852622210979462, 0.007838717661798, -0.020699642598628998, 0.013935497961938381, -0.004145584534853697, 0.03979308530688286, -0.0018635335145518184, -0.022973211482167244, 0.02732805348932743, -0.0027712637092918158, -0.004360498860478401, -0.010151874274015427, 0.005372858140617609, 0.02470383606851101, -0.02470383606851101, 0.030336854979395866, 0.031807322055101395, -0.014659419655799866, 0.035200703889131546, -0.021491432562470436, -0.01272519025951624, 0.03083455003798008, -0.026830356568098068, -0.0018691890873014927, -0.019625071436166763, -0.008845421485602856, 0.017340192571282387, 0.031762074679136276, 0.01435401476919651, 0.010185807943344116, -0.006413496099412441, 0.0012272739550098777, 0.007058239076286554, 0.00858526211231947, -0.037870168685913086, -0.0246812142431736, -0.04576544091105461, 0.0395442359149456, -0.009501475840806961, 0.07736916095018387, 0.007075205910950899, -0.009903025813400745, 0.02054128609597683, -0.006277760490775108, 0.007589869201183319, -0.003059701295569539, 0.033843349665403366, -0.009003778919577599, 0.00893025565892458, 0.01230667345225811, -0.015994150191545486, 0.009405329823493958, -0.01499875821173191, 0.04872899502515793, -0.0260838121175766, 0.02125389687716961, -0.01851656660437584, -0.001208893139846623, -0.020111456513404846, -0.00716004054993391, -0.03504234552383423, -0.005200361367315054, 0.0043831211514770985, 0.004801638424396515, 0.013403867371380329, -0.009665489196777344, 0.0007225080626085401, -0.01704609952867031, -0.003031423082575202, -0.0030285953544080257] \ No newline at end of file diff --git a/cache/text-embedding-3-smalla2832f4d-778f-56d1-9dc0-1c9cdd03cf65 b/cache/text-embedding-3-smalla2832f4d-778f-56d1-9dc0-1c9cdd03cf65 new file mode 100644 index 0000000000000000000000000000000000000000..ed8d65e87f4719f72b501734426fe0e5f358d9b1 --- /dev/null +++ b/cache/text-embedding-3-smalla2832f4d-778f-56d1-9dc0-1c9cdd03cf65 @@ -0,0 +1 @@ +[-0.014372850768268108, 0.002509692218154669, 0.06727086752653122, -0.04240237921476364, -0.04941593483090401, 0.017200497910380363, 0.023646054789423943, 0.06302321702241898, -0.012594765983521938, -0.03864864259958267, 0.036500126123428345, -0.0750252902507782, -0.043538376688957214, -0.014372850768268108, 0.017484499141573906, 0.019311973825097084, -0.04852689057588577, 0.020645538344979286, 0.01132294163107872, 0.022682925686240196, 0.022102579474449158, 0.00915590114891529, 0.002927974332123995, 0.054923057556152344, 0.011872419156134129, 0.031486913561820984, -0.018719280138611794, -0.017336323857307434, 0.017533889040350914, -0.0414639450609684, 0.07808754593133926, -0.02357196807861328, 0.04968758672475815, 0.07487712055444717, -0.013730764389038086, -0.03128935024142265, -0.043340813368558884, 0.010810507461428642, 0.014138242229819298, -0.035635776817798615, 0.0322524793446064, -0.015743456780910492, 0.006238730624318123, 0.003938951063901186, 0.018077192828059196, -0.03813003748655319, 0.013298590667545795, 0.010328942909836769, 0.00029480396187864244, 0.06292443722486496, 0.024325184524059296, 0.020633189007639885, -0.00518299313262105, -0.00643320893868804, -0.02672065980732441, -0.03561108186841011, 0.03205491229891777, -0.02672065980732441, 0.011001897975802422, 0.0012023679446429014, 0.03896968811750412, -0.014842066913843155, 0.006445556413382292, 0.022534752264618874, -0.0037444732151925564, -0.058676790446043015, -0.0500086285173893, 0.03168448060750961, 0.003966733813285828, 0.0043340809643268585, -0.013533199205994606, 0.01778084598481655, 0.004991602152585983, 0.04694637283682823, 0.009532509371638298, -0.0016978238709270954, -0.012076158076524734, -0.01901562698185444, -0.0061584701761603355, 0.006612251978367567, -0.0032042565289884806, -0.013743111863732338, 0.013372677378356457, -0.004506950732320547, 0.014397545717656612, -0.002054366748780012, -0.015755804255604744, -0.006667817011475563, 0.0329192616045475, -0.007686511613428593, -0.0013868133537471294, 0.0005691568367183208, -0.025029009208083153, 0.006902425549924374, -0.008266858756542206, -0.013026938773691654, 0.04546463489532471, 0.02199144847691059, 0.01079198531806469, 0.027733180671930313, 0.02197910100221634, -0.017607975751161575, -0.01831180229783058, -0.024967271834611893, 0.03395647555589676, 0.030894219875335693, -0.017447454854846, 0.009402857162058353, -0.017064673826098442, -0.007896424271166325, -0.07398807257413864, -0.004050081595778465, 0.01743510738015175, 0.010446246713399887, -0.0849035382270813, 0.005821992177516222, -0.02731335535645485, -0.044526200741529465, 0.06336896121501923, -0.003401821479201317, 0.026967616751790047, -0.02527596615254879, -0.013446765020489693, -0.021509883925318718, 0.015817543491721153, 0.03968586027622223, -0.05388583987951279, 0.007995206862688065, 0.007353120483458042, -0.05037906393408775, 0.0194107573479414, -0.009532509371638298, -0.059071920812129974, 0.02283109910786152, 0.008359466679394245, -0.035783953964710236, -0.0003974451101385057, -0.031239958480000496, -0.005618253257125616, -0.001682389061897993, -0.02144814468920231, 0.033339086920022964, -0.04358776658773422, -0.011403202079236507, -0.029042048379778862, 0.047563761472702026, -0.008779292926192284, 0.02152223140001297, 0.020312147215008736, -0.014891458675265312, 0.01895388774573803, -0.0260044876486063, -0.04665002599358559, -0.0042723421938717365, 0.015126067213714123, 0.02837526611983776, -0.0028986483812332153, 0.07991502434015274, 0.017002934589982033, 0.01691649854183197, 0.014002416282892227, 0.06178843975067139, -0.058084096759557724, -0.02092953771352768, 0.02178153581917286, -0.044402722269296646, -0.03477143123745918, -0.0028924744110554457, -0.08218701928853989, -0.031215263530611992, -0.010643811896443367, -0.00651964358985424, 0.004787863232195377, -0.01280467864125967, -0.009125031530857086, -0.03336378186941147, -0.024189358577132225, -0.02291753515601158, 0.008377988822758198, -0.024399271234869957, -0.0062140352092683315, 0.026350226253271103, 0.031758565455675125, -0.011835375800728798, 0.0062202089466154575, -2.8023740014759824e-05, -0.031091785058379173, -0.01188476663082838, -0.0120082451030612, 0.01901562698185444, -0.005312644876539707, 0.05388583987951279, 0.010952507145702839, 0.02607857435941696, -0.032153695821762085, -0.00561207951977849, 0.04502011463046074, 0.0194107573479414, -0.017657367512583733, 0.027288658544421196, 0.05349070951342583, -0.028474049642682076, 0.017212847247719765, 0.007705033291131258, -0.022423623129725456, -0.019731799140572548, -0.02489318512380123, -0.03119056671857834, -0.03457386791706085, -0.01703997701406479, 0.009180596098303795, 0.0031039307359606028, -0.03299334645271301, 0.023683099076151848, -0.02877039648592472, 0.0031764740124344826, -0.0051675583235919476, -0.029535960406064987, 0.027930745854973793, 0.025288313627243042, 0.01600276120007038, 0.022954577580094337, 0.01276763528585434, -0.012125548906624317, -0.04904549941420555, 0.025226574391126633, -0.001995714846998453, 0.019521886482834816, -0.009415204636752605, -0.050527237355709076, 0.040327947586774826, 0.015249544754624367, -0.03990812227129936, -0.0240164902061224, 0.006065861321985722, 0.017916671931743622, 0.03529004007577896, -0.003472821554169059, -0.03146221861243248, 0.0355616919696331, -0.03803125396370888, 0.06035609170794487, -0.0011051289038732648, 0.004602645989507437, -0.018608149141073227, -0.00819894578307867, 0.029461873695254326, -0.052700452506542206, 0.009100335650146008, -0.037092819809913635, 0.00839651096612215, 0.012335461564362049, -0.003191908821463585, 0.02074432000517845, 0.010119030252099037, 0.03249943628907204, 0.03810533881187439, -0.034129347652196884, 0.011063637211918831, -0.016286760568618774, 0.038278210908174515, 0.01606450043618679, 0.027338050305843353, 0.0120082451030612, -0.0355369970202446, 0.01823771558701992, -0.026350226253271103, 0.012928157113492489, 0.00290327868424356, 0.015718761831521988, -0.04027855396270752, -0.039068467915058136, -0.026844138279557228, 0.0335860438644886, -0.024263445287942886, 0.027091095224022865, -0.03165978565812111, -0.030301524326205254, -0.0253377053886652, 0.016953542828559875, 0.005729383789002895, -0.007575381081551313, -0.00958190020173788, -0.035388823598623276, -0.006717208307236433, 0.02264588326215744, -0.017669714987277985, -0.009131205268204212, 0.013631981797516346, 0.03447508439421654, 0.01685475930571556, -0.011236506514251232, -0.0072111207991838455, -0.027560310438275337, -0.04403229057788849, 0.01658310741186142, 0.007834685035049915, -0.020052842795848846, -0.0015650849090889096, 0.03973525017499924, -0.01395302452147007, 0.05023089051246643, -0.020250407978892326, -0.01227372232824564, 0.01724988967180252, 0.019633017480373383, 0.00924850907176733, 0.0020312147680670023, 0.012174940668046474, -0.014212328940629959, -0.012026766315102577, 0.017756151035428047, 0.036500126123428345, 0.021942058578133583, -0.007167903706431389, -0.040327947586774826, -0.04830463230609894, -0.01869458332657814, -0.0005324992816895247, -0.03956238180398941, -0.024658575654029846, -0.07077764719724655, -0.015471805818378925, 0.06529521942138672, -0.014496328309178352, -0.01770675927400589, 0.04390881210565567, 0.04830463230609894, -0.015607631765305996, -0.05818288028240204, -0.01723754219710827, -0.05363888666033745, 0.012940504588186741, 0.015138414688408375, -0.06652999669313431, -0.006556686945259571, 0.012854069471359253, 0.002173214452341199, 0.06559156626462936, -0.044328637421131134, -0.0115143321454525, 0.02086779847741127, 0.023522578179836273, -0.01797841116786003, 0.025461183860898018, -0.009655986912548542, -0.010125203989446163, -0.011298245750367641, 0.012878765352070332, 0.05754079297184944, -0.029239613562822342, -0.022423623129725456, -0.004855776205658913, 0.04099472612142563, 0.012841721996665001, -0.005908426828682423, -0.006896251812577248, 0.026770051568746567, 0.0427975095808506, 0.08060649782419205, -0.0013891286216676235, -0.0017533890204504132, -0.060652442276477814, 0.04469906911253929, -0.013903633691370487, 0.02343614213168621, 0.01132294163107872, -0.025313010439276695, 0.04195785894989967, 0.010044943541288376, -0.030227437615394592, -0.02805422432720661, -0.053737666457891464, 0.01082902867347002, -0.05339192971587181, -0.020163973793387413, -0.012755287811160088, 0.028646918013691902, 0.01723754219710827, -0.009365813806653023, -0.007884076796472073, -0.03193143755197525, 0.02647370472550392, -0.05215714871883392, 0.010946333408355713, 0.027140485122799873, -0.018188323825597763, -0.06529521942138672, -0.0017009107396006584, 0.0011545201996341348, -0.014780327677726746, 0.014434589073061943, 0.026967616751790047, 0.017595628276467323, 0.023991793394088745, 0.014323459006845951, -0.013508503325283527, 0.027263963595032692, 0.04087125137448311, 0.002202540636062622, 0.02449805475771427, -0.03306743502616882, 0.04494602605700493, -0.06529521942138672, -0.014928502030670643, -0.008087815716862679, -0.06228234991431236, -0.03198082745075226, -0.06475191563367844, -0.05912131071090698, 0.005111993290483952, -0.050255585461854935, 0.014162937179207802, -0.015484153293073177, 0.011069810949265957, -0.0625293105840683, -0.03245004266500473, -0.007989033125340939, -0.005738644395023584, 0.06430739164352417, 0.026152661070227623, -0.055515751242637634, 0.0036395168863236904, -0.021732144057750702, 0.028819788247346878, 0.04568689689040184, -0.02013927698135376, -0.029535960406064987, 0.01737336814403534, -0.013088678009808064, -0.06445556879043579, 0.005346601363271475, -0.003445038804784417, -0.0024664748925715685, -0.009476943872869015, 0.017929019406437874, 0.012403374537825584, -0.015212501399219036, -0.004448298364877701, -0.05442914366722107, 0.017200497910380363, -0.0053280796855688095, 0.03437630087137222, -0.013372677378356457, -0.0054299491457641125, -0.020892493426799774, -0.010619116015732288, -0.04576098173856735, -0.008834857493638992, -0.02232483960688114, -0.043488986790180206, -0.012681200169026852, 0.035117171704769135, -0.005195341072976589, -0.06361591815948486, -0.013644329272210598, 0.05050254240632057, 0.00485268933698535, -0.04830463230609894, -0.03338847681879997, -0.00523238442838192, -0.012545374222099781, 0.03934011980891228, 0.033215608447790146, 0.011353811249136925, -0.020028147846460342, 0.0002868936280719936, 0.009464596398174763, 0.0037815168034285307, -0.019324321299791336, -0.00826068501919508, 0.05640479549765587, -0.006865382194519043, -0.003343169344589114, -0.004053168464452028, 0.0019509539706632495, -0.017496846616268158, -0.0434395931661129, 0.004105646628886461, -0.030968306586146355, 0.009427553042769432, -0.007958163507282734, -0.02171979658305645, 0.019114408642053604, 0.020287450402975082, 0.002475735731422901, 0.03343786671757698, 0.026893530040979385, -0.048551589250564575, -0.00968068279325962, 0.05675053223967552, 0.017521541565656662, 0.009902942925691605, -0.012026766315102577, -0.03454917296767235, -0.032227784395217896, 0.03924134001135826, -0.026177356019616127, 0.004124168306589127, -0.015434762462973595, 0.06030670180916786, -0.004861949943006039, 0.013903633691370487, 0.009810335002839565, 0.04892202094197273, -0.002040475606918335, -0.06262809038162231, 0.011619288474321365, 0.00822364166378975, 0.02047266811132431, -0.004124168306589127, 0.04882323741912842, -0.009495466016232967, -0.047094546258449554, 0.0253377053886652, 0.010859898291528225, 0.0007177164079621434, 0.0072172945365309715, 0.03363543376326561, -0.012977547943592072, 0.00528177572414279, -0.03257352113723755, 0.05055193230509758, 0.026374921202659607, 0.020176321268081665, 0.04272342100739479, -0.012224331498146057, 0.028004832565784454, -0.0010634551290422678, -0.008637293241918087, 0.05961522459983826, 0.021015971899032593, -0.03943890333175659, 0.013385025784373283, 0.01280467864125967, -0.008538510650396347, -0.018003106117248535, 0.0010758029529824853, 0.008334771730005741, -0.018126584589481354, 0.03995751217007637, -0.003908081911504269, -0.001098955050110817, 0.010971029289066792, -0.012625635601580143, 0.02054675482213497, -0.010835203342139721, 0.021880319342017174, 0.016360847279429436, 0.009186770766973495, 0.022892838343977928, 0.014693893492221832, 0.011718071065843105, 0.030227437615394592, -0.01010668184608221, -0.06988859921693802, -0.043217334896326065, 0.026350226253271103, 0.009909117594361305, 0.042550552636384964, 0.01653371751308441, -0.025584662333130836, 0.01723754219710827, -0.0003715918865054846, -0.006096730940043926, -0.012656505219638348, -0.0025791486259549856, 0.040253859013319016, -0.029733525589108467, 0.002833822276443243, 0.002850800519809127, 0.009865899570286274, 0.013533199205994606, 0.011063637211918831, 0.013792503625154495, 0.006828338839113712, -0.013977720402181149, 0.03395647555589676, 0.04331611469388008, -0.025708138942718506, 0.01816362887620926, -0.030499089509248734, -0.015422414056956768, -0.013459112495183945, -0.03803125396370888, 0.0037568211555480957, -0.02988169901072979, -0.011100680567324162, -0.009773291647434235, 0.014323459006845951, -0.013854242861270905, -0.018138932064175606, 0.006013383157551289, 0.003648777725175023, 0.033339086920022964, -0.013940677046775818, 0.008970683440566063, -0.051119931042194366, 0.026572486385703087, 0.008044597692787647, -0.011897115036845207, 0.010896941646933556, -0.03635195270180702, -0.020954232662916183, -0.0520089752972126, -0.004797123838216066, 0.03585803881287575, -0.006883903872221708, -0.0006937925354577601, -0.041760291904211044, 0.020620841532945633, -0.010717898607254028, 0.029116135090589523, -0.021621014922857285, 0.01444693747907877, -0.010520333424210548, 0.006389991380274296, 0.010180769488215446, -0.0011668680235743523, 0.006785121280699968, 0.028795091435313225, -0.0015349871246144176, 0.02607857435941696, 0.03324030339717865, 0.03526534512639046, 0.03272169455885887, 0.005010123830288649, -0.02258414402604103, 0.01145876757800579, 0.0005529503687284887, -0.016694238409399986, -0.011501984670758247, -0.0260044876486063, -0.046625327318906784, -0.011427897959947586, 0.03086952492594719, 0.031215263530611992, 0.012131722643971443, 0.014311111532151699, -0.0012455852702260017, 0.06815990805625916, -0.03840168938040733, -0.0015349871246144176, -0.005713948979973793, 0.0062202089466154575, -0.002117649419233203, 0.013224503956735134, -0.021040666848421097, -0.017817888408899307, 0.024374576285481453, 0.0005826622946187854, -0.010470942594110966, 0.04427924379706383, 0.006143035367131233, 0.025029009208083153, 0.0012895743129774928, -0.003219691338017583, 0.010724072344601154, 0.027486223727464676, 0.05931887775659561, -0.04383472353219986, 0.01155755016952753, 0.022732317447662354, 0.0008682053885422647, -0.0009284009574912488, 0.00021164918143767864, -0.009402857162058353, -0.015410066582262516, -0.03509247675538063, 0.006047339644283056, -0.08189067244529724, -0.007470424752682447, 0.04566219821572304, 0.01738571561872959, -0.02822709269821644, -0.00024329042935278267, -0.04284689947962761, -0.017953714355826378, 0.015879282727837563, 0.024646228179335594, -0.012304591946303844, -0.008131032809615135, -0.02120118960738182, -0.014138242229819298, 0.01837354153394699, -0.026646573096513748, 0.01653371751308441, -0.0073592946864664555, 0.029832307249307632, 0.04403229057788849, 0.007377816364169121, 0.010971029289066792, 0.019460147246718407, -0.03501838818192482, -0.01624971814453602, 0.00388338603079319, -0.0005263253697194159, 0.0348702147603035, -0.03773490712046623, -0.05428097024559975, 0.022226057946681976, 0.015471805818378925, 0.0026347138918936253, -0.004574863240122795, -0.04976167157292366, 0.012255201116204262, -0.026868833228945732, 0.01559528335928917, 0.023250926285982132, -0.002907909220084548, -0.018583454191684723, -0.007495120633393526, 0.027560310438275337, -0.031239958480000496, -0.0052262102253735065, 0.014496328309178352, -0.007235816214233637, 0.021299971267580986, -0.0038586906157433987, 0.002123823156580329, 0.035586386919021606, 0.005967079196125269, -0.017916671931743622, -0.03588273376226425, 0.03763612359762192, 0.008056946098804474, 0.0031826479826122522, 0.019595973193645477, 0.05576270818710327, -0.0035252997186034918, -0.00030445068841800094, -0.016163282096385956, 0.014533371664583683, -0.027288658544421196, -0.0055318186059594154, 0.04220481216907501, -0.01553354412317276, -0.02448570728302002, -0.03934011980891228, -0.010119030252099037, 0.014372850768268108, -0.02428814209997654, 0.014298763126134872, -0.020188668742775917, -0.027263963595032692, 0.012465113773941994, 0.028745701536536217, 0.06746843457221985, -0.02223840542137623, 0.00413034250959754, -0.021559275686740875, 0.008538510650396347, -0.01974414847791195, 0.013409721665084362, -0.004636602476239204, -0.0013790959492325783, 0.004204429220408201, 0.009137379005551338, 0.024670923128724098, -0.02975822053849697, 0.03595682233572006, -0.01227989699691534, 0.03973525017499924, 0.018731627613306046, 0.01670658588409424, -0.006525817327201366, -0.0017858019564300776, 0.006828338839113712, 0.009470770135521889, 0.003451212774962187, -0.0010210095206275582, 0.005294123198837042, 0.013977720402181149, -0.037808991968631744, -0.0017749976832419634, -0.03541351854801178, 0.01468154601752758, 0.002826104871928692, -0.01557058747857809, 0.005775687750428915, 0.014718589372932911, -0.02153458073735237, -0.006340600084513426, 0.018645193427801132, -0.05418219044804573, -0.04546463489532471, -0.006976512260735035, -0.04376063868403435, -0.00162991089746356, -0.0011213354300707579, 0.013508503325283527, 0.013681372627615929, -0.004812558647245169, 0.014990241266787052, 0.03566047549247742, 0.0190897136926651, 0.00455942889675498, -0.030178045853972435, 0.012533026747405529, -0.028202397748827934, -0.021275276318192482, 0.013125721365213394, 0.012391027063131332, -0.014434589073061943, 0.010909290052950382, 0.05433036386966705, -0.0021624101791530848, 0.04766254499554634, 0.0026378007605671883, -0.004352603107690811, -0.033734217286109924, 0.01836119219660759, -0.02000345103442669, 0.008155728690326214, 0.03699403628706932, 0.019731799140572548, 0.033734217286109924, 0.011705723591148853, 0.007488946430385113, -0.007785293739289045, 0.012421896681189537, -0.02909144014120102, -0.0025606269482523203, -0.007223468739539385, 0.0023507142905145884, 0.042748115956783295, 0.001299606985412538, 0.02817770093679428, 0.005970166064798832, -0.037883080542087555, -0.014323459006845951, -0.009946160949766636, -0.019633017480373383, -0.0072543383575975895, -0.011477288790047169, -0.026745354756712914, 0.01464450266212225, 0.010020247660577297, 0.016558412462472916, 0.0008018359076231718, 0.029116135090589523, -0.03664829954504967, 0.015607631765305996, -0.0021654970478266478, -0.008328597992658615, 0.018398236483335495, 0.03279578313231468, 0.03672238439321518, 0.01600276120007038, -0.02988169901072979, 0.001622193492949009, -0.049341846257448196, -0.028869178146123886, 0.013619634322822094, -0.0335613451898098, 0.07196303457021713, -0.03961177170276642, 0.014064155519008636, 0.044205158948898315, -0.04726741462945938, -0.011341462843120098, -0.0018274758476763964, 0.016558412462472916, -0.046501852571964264, 0.023312663659453392, -0.023683099076151848, 0.01881806179881096, -0.014730936847627163, 0.03178326040506363, -0.014953197911381721, -0.004235298838466406, -0.02553527057170868, 0.00014190335059538484, 0.003076147986575961, 0.02691822499036789, 0.047958891838788986, -0.007538337726145983, -0.017064673826098442, -0.0158051960170269, 0.00819894578307867, 0.03245004266500473, 0.012792331166565418, 0.015607631765305996, -0.0018923018360510468, -0.020559102296829224, -0.013162764720618725, -0.0027381267864257097, 1.4433913747780025e-05, -0.022201361134648323, 0.034598562866449356, 0.01260711345821619, 0.055910881608724594, 0.012533026747405529, 0.0009955421555787325, -0.02507840096950531, 0.004161211661994457, 0.012347809970378876, 0.017867280170321465, 0.04699576273560524, -0.020719625055789948, -0.015558240003883839, -0.015014936216175556, -0.00980416126549244, 0.05437975376844406, -0.021040666848421097, 0.022658230736851692, -0.011890940368175507, -0.018941540271043777, -0.0011884766863659024, 0.024707967415452003, 0.01276763528585434, 0.014002416282892227, 0.046032633632421494, -0.02144814468920231, 0.0008736075251363218, 0.04168620705604553, -0.031486913561820984, 0.0002425186976324767, 0.022929882630705833, -0.029140830039978027, 0.03877212107181549, 0.014879110269248486, 0.023720141500234604, 0.00911885779350996, 0.03963647037744522, 0.01731162890791893, -0.0028924744110554457, -0.01559528335928917, -0.025387097150087357, 0.025708138942718506, 0.06336896121501923, 0.014879110269248486, -0.02837526611983776, -0.01960832253098488, -0.03343786671757698, 0.02323857694864273, 0.009890595450997353, 0.03524065017700195, 0.002018866827711463, -0.007822337560355663, 0.016817716881632805, -0.028943264856934547, -0.035388823598623276, 0.016768325120210648, 0.004494602791965008, 0.01464450266212225, -0.018398236483335495, -0.01276763528585434, 0.026621878147125244, -0.004491515923291445, 0.0434395931661129, -0.02751092053949833, -0.013607285916805267, 0.024325184524059296, -0.043735940009355545, 0.0069085992872715, 9.053452959051356e-05, 0.03462325781583786, 0.005846688058227301, -0.0355369970202446, -0.04415576905012131, -0.03798186406493187, 0.028202397748827934, -0.023707794025540352, -0.03341317176818848, -0.004442124627530575, -0.01915145292878151, -0.025288313627243042, -0.01653371751308441, 0.023090403527021408, 0.0008002924150787294, -0.03277108818292618, 0.02805422432720661, 0.016175631433725357, -0.022485360503196716, 0.006297382991760969, -0.0014585850294679403, 0.034647952765226364, 0.042427074164152145, -0.010211638174951077, 0.0074210334569215775, -0.00911268312484026, -0.003272169502452016, 0.018706930801272392, -0.003336995607241988, 0.01138468086719513, 0.049588803201913834, -0.0037691688630729914, 0.019200844690203667, 0.01645963080227375, -0.0032042565289884806, 0.003985255490988493, 0.0031209089793264866, 0.03837699070572853, -0.041241683065891266, -0.0035530822351574898, -0.03198082745075226, 0.055910881608724594, -0.0003796951496042311, 0.01411354634910822, 0.011477288790047169, 0.04331611469388008, -0.03904377296566963, -0.0037444732151925564, -0.027609702199697495, -0.031758565455675125, 0.04484724625945091, -0.016607804223895073, -0.02468327060341835, 0.007884076796472073, 0.0051706451922655106, 0.0031131915748119354, -0.005528731737285852, 0.0038401687052100897, -0.018003106117248535, -0.024127619341015816, 0.018151279538869858, 0.024374576285481453, -0.02607857435941696, -8.932868513511494e-05, 0.004454472102224827, 0.05028028041124344, 0.023139795288443565, -0.03442569449543953, -0.027017006650567055, 0.0008574010571464896, 0.013977720402181149, 0.0110265938565135, 0.037685513496398926, -0.001148346345871687, -0.006649295333772898, -0.008803987875580788, -0.02355962060391903, 0.014409894123673439, -0.02349788136780262, -0.011736593209207058, 0.04351368173956871, 0.004812558647245169, 0.019435452297329903, -0.0006027274648658931, 0.00032702402677387, -0.02099127694964409, 0.034252822399139404, -0.035117171704769135, 0.011755114421248436, -0.0030838653910905123, 0.005695427302271128, 0.0260044876486063, 0.0006355263176374137, -0.0381794273853302, -0.010507985949516296, 0.023263273760676384, -0.022547099739313126, 0.005115080159157515, 0.022473013028502464, 0.025263618677854538, 0.004389646463096142, -0.008106336928904057, -0.003855603514239192, 0.0005695426953025162, 0.01974414847791195, -0.007402511779218912, -0.0025575400795787573, -0.0021191928535699844, 0.011977375485002995, 0.02197910100221634, -0.01810188964009285, -0.0013443677453324199, 0.01981823518872261, 0.027436833828687668, 0.019398408010601997, -0.008692857809364796, -0.004235298838466406, -0.004886645823717117, 0.023473186418414116, 0.006016470026224852, -0.032227784395217896, 0.002511235885322094, 0.014422241598367691, -0.0036827342119067907, 0.014842066913843155, 0.017447454854846, 0.007711207028478384, -0.005460818763822317, 0.013718416914343834, 0.001046476885676384, -0.005578123033046722, -0.0008666618959978223, 0.031882043927907944, 0.026819443330168724, 0.02430048957467079, -0.004917514976114035, 0.010810507461428642, -0.012218157760798931, -0.002440235810354352, 0.003593212692067027, -0.02936309203505516, 0.01670658588409424, -0.013347982428967953, 0.01557058747857809, 0.03279578313231468, -0.01016842108219862, -0.04427924379706383, 0.0043340809643268585, -0.0005259395111352205, 0.023325012996792793, 0.0026038442738354206, -0.009600422345101833, 0.015126067213714123, -0.024732662364840508, 0.008032250218093395, 0.02000345103442669, 0.028646918013691902, -0.01010668184608221, -0.012286070734262466, -0.007661815732717514, -0.011853897012770176, -0.02593040093779564, 0.016286760568618774, -0.0014508676249533892, -0.0009353465866297483, -0.02580692246556282, 0.021213537082076073, 0.01954658329486847, -0.03079543635249138, 0.031363435089588165, 0.03427752107381821, -0.007989033125340939, -0.03580864891409874, 0.006488773971796036, -0.007272860035300255, 0.013829546980559826, 0.018805714324116707, 0.0030529960058629513, -0.017002934589982033, 0.028449352830648422, -0.020633189007639885, -0.0473908931016922, -0.01705232448875904, 0.018410583958029747, -0.020904840901494026, 0.015619979240000248, 0.03516656160354614, -0.006828338839113712, 0.0007107707788236439, 0.025313010439276695, -0.011742766946554184, 0.08801518380641937, -0.009637465700507164, 0.007525989785790443, -0.012656505219638348, 0.00648260023444891, -0.02961004711687565, -0.00585594866424799, -0.027683788910508156, 0.028399962931871414, -0.020386233925819397, -0.00648260023444891, 0.025782225653529167, 0.025559965521097183, 0.020386233925819397, 0.01069320272654295, 0.01691649854183197, -0.022633535787463188, 0.01804015040397644, -0.0030499089043587446, -0.001547334948554635, -0.01171189732849598, 0.02197910100221634, -0.00421368982642889, -0.006096730940043926, -0.023670751601457596, 0.008328597992658615, -0.002170127583667636, 0.021509883925318718, -0.004797123838216066, 0.038673341274261475, -0.03627786412835121, 0.010088160634040833, -0.005158297251909971, 0.022263100370764732, -0.015335979871451855, 0.025436487048864365, 0.005507123190909624, 0.004408168140798807, -0.02447335794568062, -0.0030113221146166325, -0.02909144014120102, 0.006976512260735035, 0.01703997701406479, -0.023547273129224777, 0.01579284854233265, 0.011242680251598358, -0.023485533893108368, 0.03773490712046623, -0.023534925654530525, -0.022670578211545944, -0.026819443330168724, -0.009297900833189487, -0.017682062461972237, 0.010526508092880249, -0.03000517748296261, 0.045983243733644485, -0.002001888584345579, -0.01987997442483902, 0.010810507461428642, 0.01454572007060051, 0.017089368775486946, 0.022275447845458984, -0.023510228842496872, 0.011681027710437775, 0.003361691255122423, -0.014965545386075974, 0.006692512892186642, 0.02460918389260769, 0.02421405538916588, 0.020892493426799774, 0.021929709240794182, 0.005970166064798832, -0.02185562252998352, 0.012039114721119404, 0.012391027063131332, -0.016471978276968002, -0.010026421397924423, 0.0126688526943326, -0.014558067545294762, 0.0030391046311706305, 0.0013551721349358559, -0.005229297559708357, -0.006575208622962236, 0.008989205583930016, 0.01731162890791893, 0.01664484664797783, -0.0053219059482216835, -0.0038092993199825287, 0.02968413382768631, -0.014212328940629959, -0.005723209585994482, -0.03207961097359657, -0.004395820200443268, -0.0007663359283469617, 0.0026038442738354206, -0.01138468086719513, -0.06346774101257324, -0.00044876569882035255, -0.003877212293446064, -0.012329287827014923, 0.007785293739289045, -0.004969993606209755, -0.019139105454087257, -0.0144839808344841, 0.02126292884349823, -0.025979790836572647, -0.0020096059888601303, -0.04363716021180153, 0.01934901811182499, -0.010915463790297508, -0.022164318710565567, -0.01697823777794838, -0.013409721665084362, -3.6874611396342516e-05, -0.008513814769685268, -0.0030036047101020813, 0.026177356019616127, -0.0063220784068107605, -0.025313010439276695, 0.012854069471359253, -0.007272860035300255, -0.016212673857808113, 0.0051737320609390736, 0.010328942909836769, -0.014533371664583683, -0.0008188141509890556, 0.051712628453969955, 0.012681200169026852, 0.009760943241417408, -0.010625289753079414, 0.008174249902367592, 0.022127274423837662, -0.011372332461178303, -0.031635086983442307, -0.019460147246718407, 0.015249544754624367, 0.003438865067437291, 0.01797841116786003, -0.00012801206321455538, 0.02620205283164978, -0.06262809038162231, -0.014805023558437824, -0.0017425846308469772, 0.04180968180298805, 0.023312663659453392, -0.027338050305843353, 0.011403202079236507, -0.028474049642682076, 0.0126688526943326, -0.02086779847741127, -0.017398063093423843, 0.001995714846998453, 0.024461010470986366, -0.00724199041724205, 0.026177356019616127, -0.04721802473068237, 0.037364471703767776, -0.012218157760798931, 0.02317683957517147, 0.012551548890769482, 0.01270589604973793, -0.005241645034402609, -0.007383990101516247, -0.03701873496174812, -0.017854932695627213, 0.017867280170321465, -0.003343169344589114, 0.019102061167359352, 0.012434244155883789, 0.007840858772397041, 0.010174594819545746, -0.010088160634040833, -0.0011035854695364833, 0.007982859387993813, 0.023003969341516495, -0.0005340427742339671, -0.021213537082076073, 0.012681200169026852, -0.032277174293994904, 0.016669543460011482, 0.028992656618356705, 0.025905704125761986, -0.0022735404781997204, -0.00017624569591134787, -0.03240065276622772, 0.015027284622192383, 0.03378360718488693, -0.008495292626321316, -0.0007385533535853028, 0.010316594503819942, 0.035783953964710236, -0.0158051960170269, 0.000856629281770438, 0.0026810180861502886, 0.013150417245924473, -0.005507123190909624, 0.005701601039618254, 0.009723899886012077, 0.03259821608662605, -0.01438519824296236, 0.004997775889933109, 0.01691649854183197, -0.025881009176373482, -0.014755632728338242, 0.029387786984443665, -0.018867453560233116, -0.029116135090589523, -0.021732144057750702, -0.026770051568746567, 0.02711579017341137, 0.0010704006999731064, -0.0004977710777893662, 0.011255028657615185, 0.06149209290742874, -0.011168593540787697, 0.0007038251496851444, -0.013026938773691654, 0.029634743928909302, -0.0036827342119067907, -0.014805023558437824, 0.0014547263272106647, -0.019521886482834816, -0.02322622947394848, 0.0322524793446064, 0.0651964321732521, -0.034598562866449356, -0.03474673628807068, -0.023411447182297707, 0.005880644544959068, -0.051762018352746964, 0.025029009208083153, -0.030597873032093048, -0.004525472410023212, 0.017669714987277985, 0.008742249570786953, 0.014607458375394344, -0.008748423308134079, -0.020176321268081665, -0.042155422270298004, -0.0072666858322918415, -0.009896769188344479, -0.025881009176373482, -0.039982207119464874, 0.025979790836572647, -0.014434589073061943, 0.01691649854183197, 0.03605560585856438, -0.040574900805950165, 0.012205809354782104, 0.03264760971069336, -0.01703997701406479, 0.020373886451125145, -0.01822536624968052, -0.003401821479201317, -0.020250407978892326, -0.023127447813749313, -0.015582935884594917, -0.024448662996292114, -0.012915808707475662, -0.01783023774623871, -0.023880664259195328, -0.0023754099383950233, -0.008618771098554134, 0.017323976382613182, -0.006538165267556906, 0.0021994535345584154, 0.0015403892612084746, 0.007544511463493109, -0.019892321899533272, 0.021966753527522087, -0.04860097914934158, -0.021053016185760498, 0.03514186665415764, -0.03252413123846054, -0.021682754158973694, -0.007124686148017645, 0.0012293787440285087, 0.020423276349902153, -0.01579284854233265, 0.0007319935830309987, 0.028350571170449257, 0.007390163838863373, -0.02770848572254181, -0.05442914366722107, 0.039537686854600906, 0.025979790836572647, -0.003367864992469549, -0.010921637527644634, 0.0486997626721859, -0.013063982129096985, 0.03566047549247742, 0.028745701536536217, -0.023868316784501076, -0.017854932695627213, -0.007297555450350046, -0.010625289753079414, 0.01060059480369091, -0.04311855137348175, 0.015089022926986217, -0.019571278244256973, -0.019904669374227524, 0.023781880736351013, -0.017817888408899307, -0.013298590667545795, 0.029857004061341286, 0.057244446128606796, 0.011489637196063995, 0.01624971814453602, 0.00977946538478136, -0.015965718775987625, 0.001682389061897993, -0.0034079954493790865, -0.05121871456503868, -0.024535097181797028, -0.01737336814403534, 0.004689080640673637, 0.021238232031464577, -0.026350226253271103, -0.00643320893868804, 0.011897115036845207, 0.009353465400636196, -0.030103959143161774, 0.028745701536536217, -0.005840513855218887, 0.06410982459783554, 0.01718815043568611, -0.027091095224022865, 0.0033030391205102205, 0.0015056610573083162, -0.03612969070672989, 0.010390682145953178, -0.025831617414951324, 0.009563378989696503, -0.02995578572154045, 0.019065018743276596, 0.005334253888577223, -0.013409721665084362, 0.04126637801527977, 0.025436487048864365, 0.0005652981344610453, -0.01863284409046173, 0.007982859387993813, -0.01764502003788948, 0.008550858125090599, -0.004994689021259546, 0.01066233403980732, 0.008174249902367592, 0.022547099739313126, -0.02738744206726551, -0.006464078556746244, 0.010415377095341682, 0.01141554955393076, -0.021090058609843254, -0.007630946580320597, 0.004818732850253582, -0.05714566260576248, 0.02363370731472969, -0.0093843350186944, 0.032548826187849045, 0.013878937810659409, 0.0062603396363556385, -0.009402857162058353, -0.0023908447474241257, 0.0011738137109205127, -0.0018969322554767132, 0.008087815716862679, 0.004670558962970972, -0.01699058525264263, 0.0072111207991838455, -0.022757012397050858, -0.0008296184823848307, -0.0664806067943573, 0.024325184524059296, -0.035388823598623276, -0.0026378007605671883, 0.0025266704615205526, 0.010779637843370438, 0.005803470499813557, 0.032548826187849045, -0.03835229575634003, 0.012261374853551388, 0.015126067213714123, 0.0036919950507581234, -0.005352775566279888, -0.01685475930571556, 0.03417873755097389, -0.051959581673145294, 0.008612597361207008, -0.009723899886012077] \ No newline at end of file diff --git a/cache/text-embedding-3-smalla993d80a-bc52-53f4-8b4c-d1274ed316c3 b/cache/text-embedding-3-smalla993d80a-bc52-53f4-8b4c-d1274ed316c3 new file mode 100644 index 0000000000000000000000000000000000000000..1fa21f4022a646726b7ff7fcf5123b93b3efdf0e --- /dev/null +++ b/cache/text-embedding-3-smalla993d80a-bc52-53f4-8b4c-d1274ed316c3 @@ -0,0 +1 @@ +[-0.029010506346821785, 0.009938557632267475, 0.01650894619524479, -0.0040104566141963005, -0.0072034564800560474, -0.0010279676644131541, 0.001604182762093842, 0.0681009367108345, 0.03894291818141937, -0.03938545286655426, 0.009870948269963264, -0.03835287317633629, -0.03149361163377762, -0.02878924086689949, 0.027953345328569412, 0.02442537248134613, -0.023724693804979324, 0.019446874037384987, -0.011831616051495075, 0.03569767624139786, 0.037713658064603806, 0.035918939858675, 0.025888189673423767, 0.010190554894506931, -0.050940483808517456, -0.02197914756834507, -0.053300660103559494, -0.04285196214914322, -0.025888189673423767, -0.06126625835895538, 0.0945054143667221, -0.026822427287697792, 0.027584567666053772, 0.02876465581357479, -0.0018654002342373133, 0.05153052881360054, -0.03567308932542801, 0.058611057698726654, -0.014320864342153072, 0.013595602475106716, -0.04695768654346466, -0.025593167170882225, -0.01748006045818329, 0.008328228257596493, 0.009391536936163902, 0.004336210433393717, -0.010165969841182232, -0.010405675508081913, -0.018303662538528442, 0.019422288984060287, -0.002644442953169346, -0.013718527741730213, 0.01629997231066227, -0.022102072834968567, -0.001250002533197403, -0.008180717006325722, -0.019385410472750664, -3.874446065310622e-06, -0.007867256179451942, 0.04088514670729637, -0.037369467318058014, 0.019791066646575928, -0.030461031943559647, 0.018574099987745285, -0.0035679235588759184, 0.023810742422938347, -0.03751697763800621, 0.076017364859581, -0.013263702392578125, 0.023859912529587746, -0.009618950076401234, -0.031616535037755966, 0.033952128142118454, -0.006834678817540407, 0.0035095338243991137, -0.029723476618528366, -0.07823003083467484, 0.04499087110161781, 0.02363864704966545, -0.004452989902347326, -0.0046312324702739716, -0.05423489585518837, -0.04017217829823494, -0.01748006045818329, -0.03901667520403862, -0.004044261295348406, -0.04624471440911293, -0.01909038797020912, -0.034689683467149734, 0.019201021641492844, 0.02724037505686283, -0.02405659481883049, -0.011899225413799286, 0.02797793038189411, 0.020651547238230705, -0.0030823664274066687, -0.022237291559576988, -0.0473756343126297, -0.008445007726550102, 0.02542107179760933, 0.03709902986884117, 0.019729603081941605, 0.008580226451158524, -0.026773255318403244, -0.018856829032301903, 0.016754796728491783, 0.035009291023015976, -0.0023202260490506887, -0.01913955993950367, 0.017529230564832687, -0.03626313433051109, -0.014800275675952435, 0.04875240474939346, 0.02647823467850685, 0.02392137609422207, 0.032796625047922134, -0.041057243943214417, -0.020122965797781944, -0.012993264943361282, 0.010467138141393661, -0.012944094836711884, -0.005590054206550121, 0.020860521122813225, 0.004993863869458437, -0.033976711332798004, 0.012304880656301975, -0.03909042850136757, 0.011776299215853214, -0.021622661501169205, -0.0042040650732815266, 0.003466509748250246, 0.005789808928966522, 0.014222524128854275, 0.06588827073574066, 0.016041826456785202, -0.008180717006325722, -0.05039960891008377, -0.000997236231341958, -0.01722191460430622, -0.025937359780073166, -0.003924408461898565, -0.02763373777270317, 0.05231725424528122, 0.010460992343723774, 0.0033866078592836857, -0.016754796728491783, -0.06293804943561554, -0.011923810467123985, -0.036902349442243576, -0.026674915105104446, -0.013128483667969704, -0.05010458827018738, -0.037320297211408615, 0.003527972614392638, 0.020307354629039764, 0.022569190710783005, -0.0007913353620097041, 0.04135226458311081, -0.008850662969052792, -0.025593167170882225, -0.03911501541733742, 0.05000624805688858, -0.004035042133182287, 0.02326986938714981, -0.02234792523086071, 0.002519980538636446, 0.014579009264707565, -0.04990790784358978, -0.05339900031685829, 0.021880805492401123, -0.02883841097354889, -0.001671791891567409, -0.03793492540717125, 0.027953345328569412, -0.05069463327527046, -0.015230515971779823, 0.05032585561275482, -0.1100432425737381, -0.031198587268590927, -0.02684701234102249, -0.02883841097354889, 0.017676740884780884, -0.014382327906787395, -0.025519412010908127, 0.008574079722166061, -0.027830418199300766, -0.04390912503004074, 0.002957904012873769, 0.04233567416667938, 0.02962513640522957, -0.018733903765678406, 0.06957604736089706, 0.028985921293497086, 0.004843279719352722, 0.04022134840488434, 0.028346708044409752, 0.024486834183335304, 0.03751697763800621, -0.0020129112526774406, -0.008783053606748581, 0.0050092292949557304, -0.06151210889220238, -0.004646598361432552, 0.06500320136547089, -0.06972356140613556, -0.021807050332427025, -0.04250776767730713, -0.008697005920112133, 0.03913959860801697, 0.013472676277160645, 0.029477626085281372, 0.035058461129665375, -0.009901679120957851, 0.016631871461868286, -0.03343584015965462, 0.02689618244767189, -0.007707452401518822, -0.02229875512421131, 0.013472676277160645, 0.014640471898019314, 0.024855611845850945, -0.010977281257510185, 0.04095890372991562, -0.046465981751680374, -0.0435403473675251, 0.040762219578027725, -0.012372490018606186, -0.028912166133522987, -0.011880786158144474, -0.03496012091636658, 0.02135222591459751, -0.010319627821445465, -0.030583959072828293, -0.010331920348107815, 0.02124159224331379, 0.006143220700323582, -0.0037584586534649134, 0.014456083066761494, -0.036238547414541245, -0.019778773188591003, -0.058611057698726654, 0.018807658925652504, 0.02915801852941513, -0.022384801879525185, -0.017307963222265244, -0.0004002773785032332, -0.010553186759352684, -0.02610945701599121, 0.02456059120595455, 0.02400742471218109, 0.024892490357160568, 0.03151819482445717, 0.003801482729613781, -0.013804576359689236, 0.023540304973721504, -0.02285192161798477, 0.017357133328914642, 0.023798450827598572, 0.005365714430809021, -0.009784899652004242, 0.027855003252625465, -0.04009842127561569, 0.019913991913199425, -0.013140776194632053, -0.03063312917947769, -0.0323295071721077, 0.009213294833898544, 0.01814385876059532, 0.03830370306968689, 0.030854394659399986, 0.02165954001247883, 0.026699500158429146, 0.03343584015965462, -0.00841427594423294, -0.03896750509738922, 0.002848807256668806, 0.004714207258075476, -0.02689618244767189, -0.03977881371974945, 0.03832828998565674, -0.02571609430015087, -0.03488636389374733, -0.013140776194632053, -0.02837129309773445, -0.035476408898830414, 0.004502160474658012, 0.04083597660064697, 0.023909082636237144, -0.016496652737259865, 0.04083597660064697, -0.0070497989654541016, -0.018229907378554344, 0.005387226585298777, -0.0434911772608757, 0.040393441915512085, -0.006594973150640726, -0.013374335132539272, -0.017898008227348328, 0.03515680134296417, -0.0007294882670976222, 0.06578993052244186, 0.029059678316116333, -0.00047172806807793677, 0.003343583783134818, -0.0072403340600430965, -0.0008036279468797147, -0.04939161613583565, -0.009987727738916874, 0.013804576359689236, -0.02276587300002575, -0.040418028831481934, -0.0607253834605217, 0.0007759695872664452, -0.013521846383810043, 0.0036140207666903734, 0.005614639259874821, 0.017701325938105583, 0.008303643204271793, 0.005122935865074396, -0.05167803913354874, -0.006570388097316027, 1.6116014194267336e-06, -0.02694535255432129, -0.010000020265579224, 0.03709902986884117, -0.04934244602918625, 0.007713598664849997, -0.014099597930908203, -0.05452992022037506, 0.010295041836798191, -0.019274776801466942, -0.03444382920861244, 0.03333749994635582, -0.04877698794007301, -0.07070696353912354, 0.008199156261980534, -0.0006952994735911489, -0.00907192938029766, 0.009520608931779861, 0.02920718863606453, 0.011260010302066803, -0.04626930132508278, -0.016263093799352646, 0.008131546899676323, 0.025298146530985832, 0.014173354022204876, -0.011278449557721615, 0.03141985461115837, 0.049145765602588654, 0.019078096374869347, 0.00813769269734621, -0.03515680134296417, 0.03562391921877861, -0.05153052881360054, -0.023146942257881165, -0.013632480055093765, 0.015513245947659016, -0.031960729509592056, -0.017947178333997726, 0.0003482259635347873, -0.04324532300233841, 0.03677942231297493, -0.004133382812142372, 0.016816260293126106, 0.05580834671854973, -0.03793492540717125, 0.019274776801466942, 0.008488032035529613, -0.0009964678902179003, -0.03933628275990486, 0.011284595355391502, 0.023146942257881165, -0.0038567993324249983, 0.03953296318650246, -0.026011114940047264, -0.049784980714321136, 0.023097772151231766, 0.04255693778395653, 0.024548297747969627, 0.017529230564832687, 0.06569159030914307, 0.011333766393363476, -0.018488051369786263, -0.04206523671746254, -0.04518755152821541, -0.002066691406071186, 0.013239117339253426, -0.019963162019848824, 0.004093431867659092, -0.013878331519663334, 0.009434561245143414, -0.0037984095979481936, 0.05389070510864258, 0.023589475080370903, -0.01650894619524479, -0.04216357693076134, 0.0417947992682457, 0.05752931162714958, 0.02694535255432129, 0.011173962615430355, -0.010307335294783115, -0.06028284877538681, -0.009250172413885593, -0.017492352053523064, 0.02696993760764599, 0.019078096374869347, 0.03264911472797394, -0.02326986938714981, -0.009760314598679543, -0.03291954845190048, -0.0035679235588759184, -0.0755748301744461, 0.04317156970500946, -0.005565469153225422, -0.019360825419425964, -0.019360825419425964, -0.02534731663763523, -0.025961944833397865, 0.038918331265449524, 0.0018269858555868268, 0.05182554945349693, -0.03864789754152298, -0.0005908124730922282, 0.0003733873600140214, 0.029379284009337425, 0.0038506530690938234, 0.022753579542040825, -0.02408117987215519, -0.02486790530383587, -0.05620171129703522, -0.04521213844418526, 0.013743112795054913, 0.03028893657028675, 0.004827913828194141, -0.013804576359689236, 0.007867256179451942, 0.030805224552750587, 0.008285203948616982, -0.009280904196202755, -0.04580218344926834, -0.038131605833768845, 0.027904173359274864, 0.04314698278903961, -0.026625744998455048, 0.002593735931441188, -0.018229907378554344, -0.021893098950386047, 0.040393441915512085, -0.048359040170907974, -0.021253883838653564, 0.011063328944146633, -0.03437007591128349, 0.014652764424681664, 0.007695159874856472, -0.005918880924582481, -0.01748006045818329, 0.04248318448662758, 0.005236642435193062, 0.024671223014593124, 0.04511379823088646, 0.009078076109290123, 0.03820536285638809, 0.0012315636267885566, 0.01761527918279171, 0.024019716307520866, 0.0007137383799999952, 0.0037461661268025637, 0.009213294833898544, 0.0416472889482975, 0.023810742422938347, -0.047154366970062256, -0.03473885357379913, -0.018229907378554344, 0.015734512358903885, -0.02583901956677437, -0.006711753085255623, 0.03532889857888222, -0.019078096374869347, 0.05900442227721214, 0.021106373518705368, 0.0035156800877302885, 0.0021819344256073236, -0.04877698794007301, 0.010411822237074375, -0.012231124565005302, 0.012784291058778763, 0.0027335642371326685, 0.012808876112103462, 0.0013252946082502604, -0.008143839426338673, 0.018131567165255547, 0.009643535129725933, -7.125859701773152e-05, -0.012501562014222145, -0.006180098280310631, -0.022224998101592064, 0.010891232639551163, -0.04651515185832977, -0.038451213389635086, 0.04821152985095978, 0.08029518276453018, -0.020602377131581306, -0.015279687009751797, -0.017811959609389305, 0.0007586831343360245, 0.03146902471780777, -0.012120491825044155, -0.03759073466062546, -0.04880157485604286, -0.012735120952129364, -0.01572221890091896, 0.010989573784172535, -0.010393382981419563, -0.005405665375292301, -0.010362651199102402, 0.032034482806921005, -0.0016702553257346153, 0.04292571544647217, 0.011296887882053852, -0.05197305977344513, -0.0070129213854670525, 0.013571016490459442, 0.013140776194632053, -0.009809484705328941, -0.015636172145605087, -0.006791654974222183, -0.012507707811892033, -0.027363300323486328, -0.059299442917108536, -0.0322311669588089, 0.030092254281044006, -0.014579009264707565, -0.005525518208742142, 0.04467126354575157, -0.01671792007982731, -0.003629386657848954, -0.030854394659399986, -0.016594992950558662, 0.007818086072802544, -0.009772607125341892, -0.0008236033609136939, -0.008236033841967583, -0.021020324900746346, 0.022200413048267365, -0.00402274914085865, 0.004575915634632111, -0.02119242213666439, 0.032009899616241455, -0.004698841832578182, 0.019987747073173523, 0.03754156455397606, -0.011186255142092705, 0.02211436629295349, 0.006773215718567371, 0.02419181354343891, -0.023257575929164886, 0.024572882801294327, 0.001968350727111101, 0.0004010456905234605, -0.012065174989402294, 0.004698841832578182, -0.04513838142156601, -0.007492332253605127, -0.027486225590109825, -0.04017217829823494, 0.012102052569389343, -0.007971743121743202, 0.013349750079214573, -0.02724037505686283, 0.004665037151426077, -0.009797192178666592, -0.004677329678088427, 0.025691509246826172, -0.009323927573859692, -0.004843279719352722, 0.03837746009230614, -0.013546431437134743, -0.03033810667693615, 0.007258773315697908, 0.027068277820944786, -0.02258148416876793, -0.0031469024252146482, 0.03363252058625221, -0.010829770006239414, -0.020971154794096947, 0.007344821002334356, -0.02618321217596531, 0.014394620433449745, 0.029674306511878967, -0.015378027223050594, -0.009114953689277172, -0.0060571725480258465, 0.0024600541219115257, 0.02276587300002575, 0.03107566200196743, -0.032378677278757095, 0.015230515971779823, -0.01953292265534401, 0.020024625584483147, -0.034345488995313644, -0.006392145529389381, -0.0340258814394474, -0.010651526972651482, -0.022815043106675148, -0.02163495495915413, -0.011782445013523102, 0.01861097849905491, -0.009508316405117512, -0.0029118068050593138, 0.014345450326800346, -0.003368169069290161, 0.0378611721098423, 0.019016632810235023, 0.005353421904146671, -0.013730820268392563, 0.0036478254478424788, -0.03483719378709793, 0.0019360826117917895, 0.03070688433945179, 0.015156760811805725, -0.026797842234373093, -0.01858639344573021, 0.007006775122135878, 0.008623250760138035, -0.008524909615516663, 0.05393987521529198, -0.014468375593423843, 0.0030055376701056957, -0.016545822843909264, -0.016730211675167084, 0.01971731148660183, 0.013558723963797092, -0.018992047756910324, -0.020577792078256607, -0.04272903501987457, 0.017074404284358025, 0.021991439163684845, 0.02532273158431053, 0.02542107179760933, -0.017283378168940544, -0.016939185559749603, -0.016029534861445427, 0.034714266657829285, -0.040688466280698776, 0.03722195699810982, -0.0022802751045674086, -0.0017808886477723718, 0.03220658004283905, 0.042630694806575775, 0.014468375593423843, -0.0035863625817000866, 0.009815631434321404, 0.058906082063913345, -0.023491134867072105, 0.02773207798600197, 0.0026736378204077482, 0.0073386747390031815, -0.005928100552409887, 0.03264911472797394, 0.0038690920919179916, -0.011075621470808983, 0.03977881371974945, -3.798217585426755e-05, 0.007756622973829508, -0.007775061763823032, 0.014197939075529575, 0.030903566628694534, 0.010811330750584602, 0.00822988711297512, -0.004001237452030182, -0.03437007591128349, 0.01909038797020912, 0.010878940112888813, -0.011063328944146633, 0.0014643545728176832, -0.03250160068273544, 0.011634934693574905, -0.07749247550964355, 0.0454334057867527, -0.009950850158929825, 0.04132768139243126, 0.006588826887309551, -0.007553795352578163, -0.006183171644806862, 0.01955750770866871, -0.0037584586534649134, -0.010239725932478905, -0.01708669774234295, 0.006361414212733507, 0.015845146030187607, 0.02620779722929001, -0.0012930266093462706, 0.04292571544647217, -0.026232382282614708, 0.019803358241915703, -0.05561166629195213, 0.006619558669626713, 0.06519988924264908, -0.03141985461115837, -0.06146293878555298, 0.02121700718998909, 0.007947158068418503, -0.009483731351792812, -0.055562496185302734, -0.009348512627184391, -0.02800251543521881, 0.0009496023994870484, -0.0004617403319571167, 0.04213899001479149, 0.030116839334368706, -0.026404477655887604, -0.02287650667130947, 0.007393991574645042, -0.019102681428194046, 0.017689034342765808, 0.005556249525398016, -0.010774453170597553, 0.017049819231033325, -6.395987293217331e-05, -0.00841427594423294, 0.01782425306737423, -0.0036847032606601715, -0.019864821806550026, -0.02842046320438385, 0.0063491216860711575, 0.024720393121242523, 0.002243397291749716, 0.005811321083456278, 0.06259385496377945, -0.02844504825770855, 0.009483731351792812, 0.013337457552552223, -0.007387845311313868, -0.0170375257730484, 0.025642337277531624, -0.010405675508081913, -0.05875856801867485, -0.027166619896888733, -0.009711144492030144, -0.02342967316508293, 0.018045518547296524, -0.009348512627184391, 0.009870948269963264, 0.020258184522390366, 0.001049479702487588, -0.022470850497484207, 0.028518803417682648, 0.038500383496284485, 0.007584526669234037, 0.02308548055589199, 0.00784881692379713, 0.00859866477549076, 0.0013898307224735618, -2.7082107408205047e-05, 0.003312852466478944, 0.031985312700271606, -0.061217088252305984, 0.018709318712353706, 0.006515071727335453, -0.04479419067502022, 0.015795975923538208, 0.041843969374895096, -0.030854394659399986, -0.0021281542722135782, -0.03498470410704613, 0.007043652702122927, -0.030436446890234947, 0.007744330447167158, 0.004542111419141293, 0.0009903216268867254, 0.0004352344258222729, -0.002834978047758341, -0.040811389684677124, -0.02728954516351223, 0.038451213389635086, -0.013841453939676285, -0.024855611845850945, -0.003672410501167178, -0.004087285604327917, -0.031714875251054764, 0.003610947635024786, -0.035746846348047256, 0.002890294650569558, 0.003060854272916913, -0.01671792007982731, -0.0017655228730291128, -0.010897379368543625, -0.018623270094394684, -0.007756622973829508, -0.024302445352077484, -0.010614649392664433, 0.03577142953872681, -0.02950221113860607, 0.0019913993310183287, -0.023515719920396805, 0.010368797928094864, -0.0031653414480388165, -0.07670574635267258, 0.03820536285638809, 0.017885714769363403, 7.71888062445214e-06, 0.008629396557807922, 0.03304247558116913, 0.01759069226682186, 0.06972356140613556, 0.06598661094903946, 0.01800864189863205, -0.005952685605734587, -0.03968047350645065, -0.015341149643063545, -0.001311465515755117, 0.014406912960112095, -0.04693309962749481, 0.021868513897061348, -0.004237869754433632, -0.000925785512663424, 0.03414880856871605, 0.02324528433382511, -0.0005266605294309556, 0.022827334702014923, 0.03599269688129425, -0.02999391406774521, -0.010110653005540371, -0.006951458286494017, -0.0014497570227831602, 0.03176404535770416, -0.014579009264707565, 0.05807018652558327, 0.014234816655516624, 0.009575925767421722, 0.009809484705328941, 0.04014759138226509, -0.0033712422009557486, 0.005719126667827368, 0.03336208313703537, 0.01932394877076149, 0.04140143468976021, -0.002988635329529643, 0.02389679104089737, 0.011813176795840263, 0.012980972416698933, 0.013411213643848896, 0.032796625047922134, 0.02269211784005165, 0.005525518208742142, 0.029403870925307274, -0.0019099608762189746, -0.0007951767765916884, 0.010829770006239414, 0.012390928342938423, -0.019987747073173523, -0.026256967335939407, -0.026822427287697792, 0.026650330051779747, -0.012710535898804665, 0.06554407626390457, 0.0018008641200140119, -0.04282737523317337, -0.010633088648319244, 0.01690230891108513, 0.0037215808406472206, -0.008500324562191963, -0.004846352618187666, -0.05580834671854973, 0.02800251543521881, 0.014062720350921154, -0.02444995753467083, 0.055513326078653336, 0.04496628791093826, -0.002633686875924468, 0.023958252742886543, 0.011622642166912556, -0.007719744928181171, -0.0416964590549469, 0.016545822843909264, 0.025543997064232826, -0.024806441739201546, 0.005955758970230818, 0.021413687616586685, 0.007854963652789593, 0.013730820268392563, 0.01666874997317791, -0.008488032035529613, -0.027805833145976067, 0.02765832282602787, 0.03704985976219177, 0.009815631434321404, 0.009047344326972961, -0.004886303562670946, -0.022126657888293266, 0.036238547414541245, 0.032452430576086044, 0.028199195861816406, -0.03803326562047005, -0.011634934693574905, 0.03210823982954025, -0.03454217314720154, 0.05644756183028221, 0.030067669227719307, 0.006189317908138037, -0.007197310216724873, -0.0005923490971326828, 0.023220697417855263, -0.012624487280845642, 0.03102649189531803, -0.010706843808293343, -0.018660148605704308, -0.02184392884373665, 0.0034234856721013784, 0.06795342266559601, -0.03815619274973869, 0.03827911987900734, 0.016263093799352646, -0.008438861928880215, -0.012095906771719456, -0.03178863227367401, -0.014173354022204876, 0.009956995956599712, 0.022089779376983643, -0.009428414516150951, 0.038500383496284485, -0.01955750770866871, -0.027486225590109825, 0.004514453001320362, 0.003982798662036657, -0.019631262868642807, -0.025937359780073166, -0.011315327137708664, 0.060872893780469894, -0.012771998532116413, -0.0014958542305976152, 0.0189059991389513, 0.03026435151696205, -0.018623270094394684, -0.02615862712264061, -0.03830370306968689, 0.016570407897233963, -0.008352813310921192, -0.0001386757503496483, -0.043737027794122696, -0.012507707811892033, 0.032378677278757095, -0.044204145669937134, -0.0006653363234363496, 0.01653353124856949, -0.009772607125341892, -0.02029506303369999, 0.0004748011997435242, 0.026625744998455048, -0.03636147454380989, 0.018844537436962128, -0.013755405321717262, 0.010995719581842422, -0.031198587268590927, 0.013349750079214573, -0.0011140158167108893, 0.023577183485031128, 0.012808876112103462, 0.03822994977235794, -0.020553207024931908, -0.006306097377091646, -0.0006092513795010746, 0.013595602475106716, -0.05718511715531349, 0.03414880856871605, -0.0013437335146591067, -0.03151819482445717, -0.007098969537764788, -0.030411861836910248, 0.004068846348673105, -0.021413687616586685, 0.03178863227367401, 0.007000628858804703, 0.02421639859676361, 0.04098348692059517, -0.02329445444047451, -0.02578984946012497, 0.03641064465045929, -0.02456059120595455, 0.020209014415740967, 0.012735120952129364, 0.017947178333997726, 0.01722191460430622, -0.023675523698329926, 0.013988965190947056, -0.0015918901190161705, 0.002890294650569558, -0.015218223445117474, 0.02797793038189411, -0.012341758236289024, 0.009883240796625614, -0.029305528849363327, 0.0012069784570485353, -0.02537190169095993, 0.005387226585298777, -0.033558763563632965, -0.04887532815337181, -0.010030752047896385, -0.021180128678679466, 0.009305489249527454, -0.004210211336612701, -0.03589435666799545, -0.033853787928819656, -0.003488021669909358, 0.015709927305579185, 0.014923201873898506, 0.019459165632724762, 0.008531056344509125, 0.052120573818683624, -0.015132175758481026, 0.011659519746899605, 0.015341149643063545, 0.009766461327672005, -0.018672440201044083, 0.00017987513274420053, -0.0002191537932958454, 0.02043028175830841, -0.02696993760764599, -0.03065771423280239, 0.013337457552552223, -0.000730256550014019, 0.008438861928880215, -0.023749278858304024, 0.02031964808702469, -0.011505861766636372, 0.0060571725480258465, -0.0036017282400280237, -0.016976064071059227, 0.011561178602278233, 0.027363300323486328, -0.005464055109769106, -0.012341758236289024, -0.02810085564851761, -0.028346708044409752, -0.011548886075615883, -0.0017394011374562979, 0.003641679184511304, -0.009625095874071121, 0.014603594318032265, 0.049489960074424744, -0.02610945701599121, 0.009784899652004242, -0.017713619396090508, -0.02426556870341301, 0.012747413478791714, 0.029108848422765732, -0.0027274179738014936, 0.021327638998627663, 0.038524970412254333, -0.031346097588539124, -0.00042563086026348174, 0.008285203948616982, 0.015046127140522003, 0.004714207258075476, 0.00035206740722060204, 0.042311087250709534, 0.027781248092651367, 0.019041217863559723, -0.010184409096837044, 0.010405675508081913, 0.02103261835873127, -0.014738813042640686, 0.0053933728486299515, -0.006883849389851093, 0.017209623008966446, -0.0567917563021183, 0.03520597144961357, 0.005906588397920132, 0.011112499050796032, -0.009711144492030144, 0.014652764424681664, 0.005857418291270733, 0.022839628159999847, -0.010282749310135841, 0.005135228391736746, -0.011364497244358063, -0.01777508109807968, 0.022286461666226387, -0.01853722147643566, -0.004081139340996742, 0.030239766463637352, 0.02874007076025009, -0.010547040030360222, -0.008469592779874802, -0.008100815117359161, 0.007990182377398014, 0.014431498013436794, 0.024781856685876846, -0.004938547033816576, 0.004563623107969761, -0.007006775122135878, 0.0013560260413214564, 0.007369406521320343, 0.004717280622571707, -0.00015260095824487507, -0.014591301791369915, 0.0023647865746170282, -0.0006810862105339766, 0.025248974561691284, -0.04779358208179474, 0.0034480709582567215, 0.033165402710437775, -0.02350342832505703, -0.025015415623784065, -0.012009858153760433, -0.016705626621842384, 0.026429064571857452, 0.008094669319689274, -0.018414296209812164, -0.011751714162528515, -0.008826077915728092, -0.01643518917262554, 0.05241559445858002, -0.007320235949009657, -0.017504645511507988, 0.030878979712724686, 0.017418596893548965, 0.008432715199887753, 0.009379244409501553, 0.04127851128578186, 0.021696416661143303, -0.016238508746027946, 0.02481873519718647, 0.030092254281044006, 0.004787962883710861, 0.011536593548953533, -0.009078076109290123, 0.01669333502650261, -0.004413038957864046, -0.007762769237160683, -0.025568582117557526, 0.015095298178493977, 0.020577792078256607, 0.011997565627098083, -0.025691509246826172, -0.004409966059029102, -0.027461640536785126, -0.04022134840488434, 0.0012008321937173605, -0.02156119979918003, -0.012452390976250172, 0.0042593814432621, -0.0045390380546450615, -0.0036324597895145416, 0.02140139602124691, 0.05561166629195213, -0.053989045321941376, 0.05492328107357025, -0.013423506170511246, -0.0017286451766267419, 0.013202238827943802, -0.02413034997880459, 0.0004463745863176882, -0.016631871461868286, -0.011770152486860752, -0.008100815117359161, 0.03210823982954025, -0.023724693804979324, 0.012464684434235096, -0.013300579972565174, 0.0024984683841466904, 0.028248365968465805, 0.0059219542890787125, 8.06220923550427e-05, -0.03264911472797394, -0.031665705144405365, -0.0029456112533807755, -0.0019283996662124991, 0.0006653363234363496, -0.010596211068332195, 0.0025384193286299706, -0.020921984687447548, -0.006198537535965443, -0.010940402746200562, 0.02542107179760933, 0.011751714162528515, 0.018647855147719383, 0.023835327476263046, 0.03114941716194153, 0.015132175758481026, 0.02315923571586609, 0.026650330051779747, -0.020122965797781944, -0.037713658064603806, -0.0019775701221078634, 0.016558116301894188, -0.015107590705156326, -0.018119273707270622, -0.03149361163377762, 0.03110024705529213, -0.010891232639551163, -0.014910909347236156, -0.025224389508366585, 0.015353442169725895, -0.0016087924595922232, -0.022077487781643867, 0.005611566361039877, -0.033485010266304016, -0.020073795691132545, -0.01590660773217678, 0.0031653414480388165, 0.02684701234102249, 0.024831026792526245, 0.04887532815337181, -0.015119883231818676, 0.005378006957471371, -0.008869102224707603, -0.009895533323287964, -0.03815619274973869, -0.0009496023994870484, 0.001558085554279387, 0.0004820999165531248, 0.004652744624763727, 0.005399519111961126, 0.012698243372142315, 0.026379892602562904, -0.015488660894334316, 0.008531056344509125, 0.004173333756625652, 0.021389102563261986, -0.0004133382753934711, -0.004532891791313887, 0.010946549475193024, 0.0018853757064789534, -0.0002433548215776682, -0.061610449105501175, -0.02079905942082405, -0.026379892602562904, 0.06279053539037704, 0.013337457552552223, 0.03257535770535469, -0.02413034997880459, 0.02255689911544323, -0.021499736234545708, -0.022249583154916763, 0.032378677278757095, -0.012464684434235096, -0.006459754891693592, 0.006084830965846777, 0.022409386932849884, -0.013915209099650383, -0.009704997763037682, -0.016558116301894188, -0.00897973496466875, 0.014357742853462696, -0.012200393714010715, -0.034763436764478683, 0.02581443451344967, -0.002633686875924468, 0.020676132291555405, 0.009078076109290123, -0.014185646548867226, 0.0029794159345328808, -0.01645977422595024, -0.0012784291757270694, 0.036582741886377335, -0.020122965797781944, -0.018598685041069984, -0.030461031943559647, -0.003389680990949273, -0.014025842770934105, 0.023626353591680527, 0.05467743054032326, 0.02923177368938923, -0.019643554463982582, 0.010768306441605091, 0.01634914241731167, 0.027510810643434525, -0.001939155743457377, 0.016226215288043022, -0.019065802916884422, -0.053644854575395584, -0.023577183485031128, -0.001311465515755117, 0.010135238990187645, 0.005909661762416363, 0.01722191460430622, 0.01759069226682186, 0.017135867848992348, 0.017934884876012802, 0.010596211068332195, -0.006508925464004278, 0.009139538742601871, 0.02313465066254139, 0.016558116301894188, 0.019409995526075363, 0.0012300270609557629, -0.012046735733747482, -0.024204105138778687, 0.014886323362588882, 0.005175179336220026, 0.02500312402844429, 0.002716661896556616, 0.00015845913731027395, 0.04145060479640961, -0.017283378168940544, 0.019446874037384987, 0.012120491825044155, -0.03301789239048958, 0.03139526769518852, -0.005205911118537188, 0.011192400939762592, -0.0037922633346170187, -0.0020282769110053778, 0.0038813846185803413, 0.028690900653600693, 0.012077467516064644, -0.012046735733747482, 0.006004929076880217, -0.0454334057867527, -0.041106414049863815, 0.019078096374869347, -0.027535397559404373, -0.008660128340125084, 0.01669333502650261, 0.029403870925307274, -0.015083005651831627, 0.023036310449242592, -0.03820536285638809, -0.04656432196497917, 0.013583309948444366, -0.01805781200528145, -0.015070712193846703, -0.030043084174394608, 0.0007110493606887758, -0.017148159444332123, -0.043024055659770966, 0.008770761080086231, 0.0006100196624174714, 0.004446843639016151, -0.005768296774476767, -0.019729603081941605, -0.015488660894334316, -0.028690900653600693, 0.011087913997471333, -0.02437620237469673, 0.021536612883210182, -0.02279045805335045, -0.010000020265579224, -0.026355307549238205, 0.017283378168940544, 0.005832832772284746, -0.014222524128854275, 0.007627550512552261, 0.019520629197359085, -0.04086056351661682, 0.019618969410657883, -0.010915817692875862, 0.015783682465553284, 0.01588202267885208, 0.03948379307985306, -0.007738184183835983, 0.002627540612593293, -0.029379284009337425, -0.04484336078166962, -0.0017409377032890916, 0.002752003027126193, 0.036238547414541245, 0.01824220083653927, 0.016705626621842384, 0.019250191748142242, 0.019287070259451866, -0.02287650667130947, -0.016103290021419525, 0.027363300323486328, 0.04371244087815285, -0.029797233641147614, -0.018315955996513367, -0.011094060726463795, 0.012188101187348366, -0.005940393079072237, 0.031616535037755966, 0.001497390796430409, 0.02768290787935257, -0.02392137609422207, 0.017369426786899567, -0.015488660894334316, 0.04811318963766098, -0.036558154970407486, -0.03365710377693176, 0.02837129309773445, -0.003229877445846796, -0.005642297677695751, -0.011413667351007462, 0.055562496185302734, -0.017492352053523064, -0.030977321788668633, -0.0037707514129579067, -0.05349734053015709, 0.018574099987745285, 0.015181345865130424, 0.013620187528431416, 0.011382936500012875, 0.012366343289613724, 0.044523753225803375, -0.03496012091636658, -0.02269211784005165, 0.012661365792155266, 0.022827334702014923, -0.01895517110824585, -0.02768290787935257, -0.028346708044409752, -0.005783662665635347, -0.0029717329889535904, 0.0008551031351089478, 0.02140139602124691, 0.0028534168377518654, -0.008488032035529613, -0.00024508347269147635, 0.003466509748250246, -0.04894908517599106, -0.014714227989315987, -0.017332548275589943, -0.017738204449415207, -0.006515071727335453, -0.010325773619115353, 0.012520000338554382, -0.013767698779702187, -0.036164794117212296, 0.023749278858304024, -0.026453649625182152, -0.028125440701842308, 0.002894904464483261, 0.02456059120595455, -0.014333157800137997, 0.00420713797211647, 0.015169053338468075, -0.005740638356655836, -0.015095298178493977, 0.014861738309264183, 0.015660757198929787, 0.006803947500884533, -0.014615886844694614, 0.013484968803822994, -0.0022295680828392506, 0.033902958035469055, 0.019262485206127167, -0.005052253603935242, 0.005181325599551201, -0.04196689650416374, -0.012698243372142315, -0.0019622042309492826, -0.0321819931268692, -0.006730191875249147, -0.038549553602933884, -0.0031469024252146482, 0.013398921117186546, 0.012249563820660114, 0.005119862966239452, -0.017725910991430283, 0.004031968768686056, 0.003617093898355961, 0.0028457341250032187, 0.007627550512552261, 0.009366951882839203, 0.006090977229177952, 0.012145076878368855, 0.009551340714097023, -0.0008274448337033391, 0.0008689322858117521, -0.02290109172463417, 0.005565469153225422, 0.004649671260267496, 0.03555016219615936, -0.014861738309264183, 0.04157353192567825, 0.028617143630981445, -0.015808267518877983, 0.0340258814394474, 0.020553207024931908, 0.008574079722166061, 0.0567917563021183, -0.001507378532551229, -0.006846971344202757, -0.02883841097354889, -0.003254462732002139, 0.008721590973436832, 0.012599902227520943, 0.004904742352664471, -0.0005312702851369977, -0.002192690270021558, 0.026674915105104446, -0.0040104566141963005, -0.00045905131264589727, 0.026797842234373093, 0.013030143454670906, 0.0046404520981013775, 0.010608503594994545, -0.012698243372142315, 0.02657657489180565, -0.0015519391745328903, -0.045630086213350296, 0.020258184522390366, -0.007990182377398014, 0.008561787195503712, -0.005946539342403412, -0.0342225655913353, 0.04685934633016586, 0.002118934877216816, 0.025543997064232826, 0.0006549644167535007, -0.053595684468746185, 0.007375552784651518, 0.05620171129703522, 0.009741876274347305, 0.055562496185302734, -4.350423478172161e-05, 0.014161061495542526, -0.019422288984060287, 0.0007417808519676328, 0.003168414579704404, -0.006084830965846777, 0.014837153255939484, -0.01740630343556404, 0.0002556474064476788, -0.047178950160741806, 0.003604801371693611, -0.016472067683935165, -0.023048602044582367, 0.022151242941617966, -0.04331908002495766, 0.011143230833113194, -0.011948395520448685, -0.013644772581756115, 0.018463466316461563, -0.033189985901117325, -0.001115552382543683, 0.015291979536414146, -0.0033866078592836857, 0.002988635329529643, 0.0017916447250172496, -0.0033189987298101187, -0.009754168801009655, -0.000915797776542604, -0.012151222676038742, -0.012378635816276073] \ No newline at end of file diff --git a/cache/text-embedding-3-smallb39466d6-0c8d-5aa8-b277-871b510757be b/cache/text-embedding-3-smallb39466d6-0c8d-5aa8-b277-871b510757be new file mode 100644 index 0000000000000000000000000000000000000000..170aefc022022e4817d8d41fd06fe9c23ee4d70d --- /dev/null +++ b/cache/text-embedding-3-smallb39466d6-0c8d-5aa8-b277-871b510757be @@ -0,0 +1 @@ +[0.008973459713160992, -0.014792612753808498, 0.025628745555877686, 0.03902095556259155, -0.005679792258888483, 0.01065258402377367, 0.02296390011906624, 0.07505075633525848, 0.01745745725929737, 0.019592054188251495, 0.03148868680000305, -0.025601552799344063, -0.0396735705435276, -0.0010528519051149487, 0.04350768402218819, 0.07178767770528793, -0.04486729949712753, 0.012474468909204006, 0.00013394333655014634, 0.021699456498026848, -0.04157702997326851, 0.008280056528747082, -0.027450628578662872, 0.03785168379545212, -0.029394878074526787, -0.019143380224704742, -0.04380679875612259, -0.008551979437470436, 0.028551917523145676, 0.017783766612410545, 0.07923837006092072, -0.04100599139928818, 0.040788453072309494, 0.0005757120088674128, -0.0429910309612751, 0.020163092762231827, -0.025098495185375214, -0.008388825692236423, 0.04736899212002754, -0.009428930468857288, 0.0150917274877429, -0.012052987702190876, 0.02942207083106041, 0.056668758392333984, 0.035050876438617706, -0.01382728572934866, -0.02715151384472847, -0.06411945074796677, -0.016519322991371155, 0.027137918397784233, -0.031434301286935806, 0.005564224906265736, 0.02519366890192032, -0.0016782749444246292, -0.02769535966217518, -0.04619972035288811, -0.008545180782675743, -0.000638594210613519, 0.015023747459053993, -0.051393453031778336, -0.011889833956956863, -0.01600266993045807, 0.031026417389512062, 0.03369126096367836, 0.019211361184716225, -0.03804203122854233, 0.02057097665965557, 0.09011528640985489, -0.02269197627902031, 0.0020921076647937298, -0.01869470812380314, 0.01834120787680149, 0.01896663010120392, 0.025791898369789124, 0.010088344104588032, -0.015309265814721584, -0.033201802521944046, 0.03431668505072594, 0.00992519035935402, 0.004629489500075579, -0.026757225394248962, -0.019986342638731003, -0.03312022611498833, 0.046471644192934036, 0.02603662945330143, -0.021876206621527672, 0.00583614781498909, 0.03186937794089317, -0.01872190088033676, 0.040598105639219284, 0.009660065174102783, 0.009680459275841713, 0.03195095434784889, 0.012508459389209747, -0.00386470602825284, 0.027124321088194847, -0.015853112563490868, 0.0013018314493820071, -0.02296390011906624, 0.04114195331931114, -0.0005727378884330392, -0.0051189507357776165, 0.006451373919844627, 0.0009032943053171039, 0.033364955335855484, 0.0083616329357028, -0.03899376094341278, -0.027980878949165344, 0.02473139949142933, 0.004136628936976194, -0.08706974983215332, -0.011930623091757298, -0.05522756651043892, 0.05095837637782097, -0.0022722568828612566, -4.1346109355799854e-05, -0.023086264729499817, -0.03257637843489647, 0.029857147485017776, -0.00040066157816909254, -0.030319416895508766, -0.014139996841549873, -0.01169268973171711, 0.0257647056132555, -0.002200877061113715, 0.055091604590415955, -0.02469061128795147, 0.030237840488553047, -0.0074778832495212555, -0.034479837864637375, 0.01009514182806015, 0.03760695457458496, -0.00635620066896081, 0.0002591766242403537, -0.016736861318349838, 0.017335092648863792, -0.05302498862147331, 0.007613844703882933, -0.04380679875612259, 0.019184168428182602, -0.007620642893016338, -0.014507093466818333, 0.034778956323862076, -0.004656681790947914, -0.05900729447603226, 0.05161099135875702, 0.009632873348891735, 0.0311895702034235, 0.056505605578422546, -0.004140028264373541, -0.010027161799371243, -0.0013638639356940985, -0.04644445329904556, 0.06716498732566833, -0.009415335021913052, -0.0436980314552784, -0.017824554815888405, -0.011087661609053612, -0.06988421827554703, -0.005948316305875778, 0.014330343343317509, 0.08358913660049438, 0.014833400957286358, 0.022161725908517838, 0.03641049191355705, -0.04913648962974548, -0.023562129586935043, -0.034670185297727585, -0.05446618050336838, -0.01600266993045807, -0.01453428529202938, -0.008239267393946648, -0.03241322562098503, 0.028715072199702263, -0.03548595309257507, -0.05237237364053726, -0.012889151461422443, 0.01390206441283226, 0.010163122788071632, -0.029558032751083374, 0.000925388012547046, 0.06743691116571426, -0.0019663432613015175, -0.06727375835180283, 0.023140650242567062, -0.0013171271421015263, 0.0018643722869455814, 0.05068645253777504, -0.01554040051996708, -0.01938811130821705, -0.012318112887442112, -0.023059071972966194, 0.07853136956691742, 0.05131187289953232, 0.018898651003837585, 0.0265668798238039, -0.01044184435158968, 0.0668930634856224, 0.025519976392388344, 0.009993171319365501, -0.0019918361213058233, 0.005910926498472691, 0.018980227410793304, -0.015975477173924446, -0.04834791272878647, 0.023834053426980972, -0.039945490658283234, 0.06303175538778305, 0.015621977858245373, -0.0038817012682557106, 0.018626727163791656, -0.02038063108921051, -0.007987738586962223, 0.02095166966319084, -0.03312022611498833, 0.007702219765633345, -0.035132452845573425, 0.009619276970624924, 0.02511209063231945, 0.04704268276691437, 0.00037559366319328547, 0.04644445329904556, 0.00948331505060196, 0.003475516103208065, -0.05318814516067505, 0.03407195582985878, 0.025778302922844887, -0.03744380176067352, -0.02456824481487274, -0.035322800278663635, 0.014371131546795368, -0.02095166966319084, -0.004952398128807545, -0.07825944572687149, -0.019279342144727707, -0.002115901093930006, 0.040706876665353775, -0.018517958000302315, -0.04652602970600128, 0.008891883306205273, -0.04361645132303238, 0.007457489147782326, 0.05830029770731926, -0.008898681029677391, -0.04160422086715698, 0.047287411987781525, 0.04233841598033905, -0.05335129797458649, -0.016396958380937576, 0.030047494918107986, -0.0051393453031778336, 0.011121652089059353, 0.0008591067744418979, -0.002404819242656231, 0.015676362439990044, -0.02961241640150547, 0.01865391992032528, 0.02368449606001377, -0.01588030532002449, -0.031787801533937454, 0.005003383848816156, 0.018898651003837585, 0.03358249366283417, -0.0689052939414978, -0.031135186553001404, 0.012556045316159725, 0.007083594799041748, -0.004636287689208984, 0.0038817012682557106, -0.03654645383358002, -0.012318112887442112, -0.036628030240535736, 0.006033292040228844, -0.029476456344127655, -0.009585286490619183, 0.020870091393589973, 0.01592109352350235, 0.00328856916166842, -0.0033565498888492584, 0.02456824481487274, 0.00986400805413723, -0.019795995205640793, -0.010387459769845009, -0.043942760676145554, 0.008851094171404839, -0.008538383059203625, 0.008579171262681484, -0.006339205428957939, 0.00030888756737113, 0.024010803550481796, 0.01267161313444376, -0.042474377900362015, 0.029095763340592384, -0.052671488374471664, 0.049435604363679886, -0.004292984958738089, 0.052970606833696365, -0.05310656502842903, -0.002338537946343422, 0.03660083934664726, 0.05506441369652748, 0.01896663010120392, 0.02519366890192032, 0.022392861545085907, 0.026104610413312912, 0.02307266928255558, 0.011889833956956863, 0.010904112830758095, -0.032712340354919434, -0.009279373101890087, -0.042365606874227524, 0.020027130842208862, -0.03945603221654892, -0.03211411088705063, -0.03991829976439476, -0.04745056852698326, -0.007980940863490105, -0.029965916648507118, 0.0035214030649513006, -0.00136556348297745, 0.011665497906506062, -0.0275729950517416, -0.023698091506958008, 0.02126437984406948, 0.004187614656984806, -0.07749806344509125, -0.012637622654438019, 0.017620611935853958, 0.027015551924705505, 0.001057950546965003, -0.026662051677703857, -0.02614539861679077, 0.004813037347048521, 0.042746298015117645, -0.054901257157325745, -0.022243304178118706, -0.025438398122787476, 0.02653968706727028, -0.0005986555479466915, -0.06286860257387161, 0.01722632348537445, -0.025791898369789124, 0.02130516804754734, -0.047205835580825806, -0.004891215357929468, 0.004411951173096895, -0.006257628556340933, -0.013059102930128574, 0.005737575702369213, 0.049435604363679886, -0.0020428216084837914, -0.03483333811163902, 0.004915008787065744, 0.003701552050188184, -0.013548565097153187, -0.017335092648863792, 0.022664783522486687, 0.03975514695048332, 0.033093031495809555, 0.007627440616488457, 0.003633571323007345, -0.02365730330348015, 0.021142015233635902, 0.015268477611243725, -0.0027141317259520292, 0.002595165278762579, -0.04214806854724884, -0.021930592134594917, 0.03722626343369484, -0.020217476412653923, 0.02273276448249817, -0.00522092217579484, -0.024201149120926857, -0.043779607862234116, 0.007314729504287243, -0.010027161799371243, 0.008830700069665909, 0.04019022360444069, 0.01380689162760973, 0.010530219413340092, 0.005309297237545252, -0.02895980142056942, -0.06526152789592743, -0.027518609538674355, -0.024255534633994102, -0.00013011941337026656, 0.010897315107285976, -0.041685800999403, 0.0027617181185632944, -0.06672991067171097, 0.04625410586595535, 0.006597532425075769, -0.020027130842208862, 0.0008786512771621346, -0.054167065769433975, -0.013670929707586765, 0.016356170177459717, 0.07646475732326508, 0.03975514695048332, 0.02895980142056942, -0.04481291398406029, -0.001277188421227038, -0.04726022109389305, -0.025125687941908836, 0.05628806725144386, -0.006767484359443188, -0.029965916648507118, -0.010910911485552788, -0.026281360536813736, -0.006757287308573723, 0.01615222729742527, -0.04296383634209633, 0.05438460409641266, 0.014738228172063828, -0.0321413017809391, 0.0008416867349296808, 0.015322862192988396, -0.02803526446223259, 0.030890455469489098, 0.03983672335743904, 0.016369765624403954, -0.03265795484185219, -0.0277225524187088, 0.017620611935853958, 0.02530243806540966, -0.041277915239334106, 0.021250784397125244, 0.01915697753429413, 0.02503051422536373, -0.022991091012954712, 0.004775648005306721, 0.00028233256307430565, 0.0005153791280463338, 0.04342610761523247, -0.020584572106599808, -0.014126401394605637, -0.009014247916638851, 0.008490796200931072, 0.016057055443525314, 0.037634145468473434, -0.0001171605836134404, 0.02076132223010063, -0.013507775962352753, 0.007906162180006504, -0.011080862954258919, -0.02658047527074814, 0.011583920568227768, -0.027056340128183365, 0.00445953756570816, -0.018626727163791656, -0.003317460883408785, 0.0040822443552315235, -0.015186901204288006, -0.05065925791859627, -0.03711749240756035, 0.018789881840348244, 0.055744219571352005, 0.011679094284772873, -0.0030625329818576574, 0.04323576018214226, 0.004486729856580496, 0.0380692221224308, -0.003592782886698842, 0.03268514573574066, 0.02622697502374649, 0.014425516128540039, -0.005832748953253031, -0.05011541396379471, -0.04437783733010292, 0.04829352721571922, -0.022583207115530968, 0.03548595309257507, 0.04057091474533081, -0.01999993808567524, -0.01745745725929737, 0.024065187200903893, 0.003721946384757757, -0.019782399758696556, 0.03246760740876198, -0.05264429748058319, 0.025832686573266983, -0.012352103367447853, -0.03757976368069649, 0.03135272487998009, -0.023099860176444054, 0.02572391740977764, 0.03972795233130455, -0.010149526409804821, -0.03991829976439476, -0.017552630975842476, 0.03303864598274231, -0.015322862192988396, 0.003684557043015957, -0.015268477611243725, 0.04345329850912094, 0.009415335021913052, -0.007246748544275761, -0.03176061064004898, 0.03570349141955376, 0.020244669169187546, 0.028823841363191605, -0.06885091215372086, -0.021631477400660515, -0.007518671452999115, 0.01861313171684742, 0.03135272487998009, -0.019986342638731003, 0.003946282900869846, -0.0016238903626799583, 0.03350091725587845, -0.06145460158586502, 0.01225013192743063, -0.01661449670791626, 0.009592084214091301, -0.00891907513141632, -0.03453422337770462, 0.009510507807135582, 0.016410553827881813, 0.03796045482158661, -0.030210647732019424, -0.03339214622974396, 0.009490113705396652, -0.005156340543180704, 0.018735496327280998, -0.03771572187542915, -0.00068745540920645, 0.006097873672842979, -0.010571007616817951, -0.022950302809476852, -0.07102629542350769, 0.007137979380786419, -0.03129833936691284, -0.0032477807253599167, 0.029829956591129303, 0.00988440215587616, 0.015812324360013008, 0.005027176812291145, -0.002134595764800906, 0.026063822209835052, 0.04652602970600128, 0.005927921738475561, 0.008755921386182308, 0.0019493481377139688, 0.019632842391729355, -0.023439764976501465, 0.006386791821569204, 0.019564861431717873, 0.04807598888874054, 0.005771566182374954, -0.005142744164913893, 0.02565593644976616, -0.02726028300821781, -0.004887816496193409, -0.006662114057689905, 0.03292987868189812, 0.010326276533305645, -0.012576439417898655, 0.008973459713160992, -0.01540443953126669, -0.019524073228240013, 0.030101878568530083, -0.016369765624403954, 0.0034279297105968, -0.01564916968345642, -0.04214806854724884, 0.01447990071028471, 0.015064535662531853, 0.060203757137060165, -0.03850429877638817, 0.004748455714434385, 0.00287048751488328, 0.011461555026471615, 0.04910929873585701, -0.003973475191742182, 0.012685209512710571, -0.001796391443349421, 0.018069284036755562, -0.0051631382666528225, 0.0380692221224308, -0.0036437686067074537, -0.002987754298374057, -0.020557381212711334, -0.026512494310736656, -0.018857860937714577, 0.005346686579287052, 0.018137264996767044, -0.01718553528189659, -0.03181499242782593, -0.028932610526680946, -0.014316746965050697, -0.019823187962174416, -0.051094334572553635, -0.026322148740291595, 0.01980959251523018, -0.00830724835395813, 0.006821868941187859, 0.009653267450630665, 0.006570340134203434, 0.010149526409804821, 0.01953766867518425, -0.0064649698324501514, 0.007926556281745434, -0.006753887981176376, 0.01282796822488308, -0.031243955716490746, 0.020163092762231827, -0.02746422588825226, -0.04261033609509468, 0.009510507807135582, -0.021006053313612938, 0.042093683034181595, 0.02803526446223259, 0.017566226422786713, 0.03146149218082428, -0.018504362553358078, 0.013351420871913433, -0.03768853098154068, -0.02814403362572193, 0.00447993166744709, -0.02572391740977764, -0.009109421633183956, 0.0002364455722272396, 0.01115564163774252, 0.014670247212052345, 0.007382709998637438, 0.0267708208411932, -0.01819165050983429, 0.011862642131745815, 0.0702105239033699, -0.030210647732019424, -0.005669595208019018, 0.02700195647776127, 0.002782112453132868, -0.002911275951191783, -0.002455804729834199, -0.006580537185072899, -0.042827874422073364, -0.017525438219308853, 0.004167220555245876, 0.03222287818789482, 0.016777651384472847, -0.004588700830936432, -0.005655998829752207, 0.009823218919336796, -0.0285791102796793, -0.04402433708310127, -0.01661449670791626, 0.0007635088404640555, 0.020244669169187546, 0.013378612697124481, 0.06270544975996017, 0.004211407620459795, 0.021142015233635902, 0.01949688047170639, 0.016736861318349838, -0.012311315163969994, 0.03208691626787186, -0.010101940482854843, -0.035241223871707916, 0.011080862954258919, 0.005608412437140942, 0.014275958761572838, -0.014683843590319157, -0.038939375430345535, 0.008565574884414673, 0.007042806129902601, 0.03556753322482109, 0.032712340354919434, 0.027137918397784233, 0.0020190284121781588, -0.05090399086475372, -0.001251695677638054, 0.03796045482158661, -0.0209924578666687, 0.025207264348864555, -0.014126401394605637, 0.025411207228899002, -0.007858575321733952, 0.004357566591352224, 0.016437746584415436, 0.03589383885264397, 0.009619276970624924, -0.03007468581199646, 0.009680459275841713, 0.024486668407917023, 0.012277324683964252, 0.012080180458724499, -0.011373180896043777, 0.039782337844371796, 0.03325618430972099, -0.0004903111839666963, 0.009095825254917145, 0.023167841136455536, 0.017253516241908073, 0.0013060802593827248, -0.04592780023813248, 0.024133168160915375, 0.03945603221654892, -0.056124910712242126, -0.010686574503779411, 0.02426913008093834, 0.03265795484185219, -0.0009423832525499165, -0.041169144213199615, -0.04141387715935707, 0.0031152181327342987, -0.0031509080436080694, 0.00581575371325016, 0.019320130348205566, -0.018436381593346596, -0.034017570316791534, -0.019007420167326927, -0.029177339747548103, -0.030972031876444817, -0.019904766231775284, 0.014004035852849483, -0.0256151482462883, -0.018817072734236717, 0.01695439964532852, -0.04658041521906853, -0.00557782081887126, -0.014683843590319157, -0.02273276448249817, -0.04054372385144234, 0.0046056960709393024, 0.04696110635995865, -0.04677075892686844, -0.02399720624089241, 0.017906131222844124, 0.008572373539209366, 0.0219985730946064, -0.017430266365408897, -0.010115536861121655, -0.05191010609269142, 0.03453422337770462, 0.028062455356121063, -0.018939439207315445, 0.0076682292856276035, -0.02277355268597603, -0.01443911250680685, 0.03785168379545212, -0.03137991577386856, 0.009530901908874512, -0.034942109137773514, -0.002265458693727851, 0.024867361411452293, 0.007974142208695412, 0.020516593009233475, -0.007688623387366533, -0.006903445813804865, 0.008259661495685577, 0.011971411295235157, 0.008592767640948296, 0.009612479247152805, 0.024948937818408012, -0.001464135479182005, -0.007858575321733952, 0.014507093466818333, 0.02784491702914238, -0.008810305967926979, 0.03426229953765869, -0.0315430723130703, -0.027015551924705505, 0.04252875968813896, -0.0020870091393589973, 0.000679382705129683, -0.026893187314271927, -0.02261039987206459, -0.017090361565351486, -0.041087567806243896, 0.02723309025168419, 0.022528821602463722, -0.0063086142763495445, -0.005445258691906929, 0.030047494918107986, 0.025982245802879333, 0.009503710083663464, -0.021563496440649033, 0.008551979437470436, -0.05065925791859627, 0.025316033512353897, -0.01783815026283264, -0.02180822566151619, 0.030972031876444817, -0.04704268276691437, 0.0001187538800877519, 0.04021741449832916, -0.044976066797971725, 0.036899954080581665, 0.009544498287141323, -0.003412633901461959, -0.028361571952700615, -0.022746361792087555, -0.007069998420774937, 0.0062644267454743385, 0.013772901147603989, -0.0150917274877429, -0.06248791143298149, 0.006529551465064287, 0.033283378928899765, -0.03292987868189812, -0.004150225315243006, 0.017321497201919556, 0.004935402888804674, 0.04973472282290459, 0.0201902836561203, 0.0019969346467405558, 0.038205184042453766, -0.014833400957286358, 0.013276641257107258, -0.0014590369537472725, -0.012943536043167114, 0.0298843402415514, 0.016981592401862144, 0.007158373482525349, -0.03007468581199646, -0.0038952974136918783, 0.0033344561234116554, 0.018776284530758858, -0.056016143411397934, 0.029965916648507118, -0.032630763947963715, 0.013759304769337177, -0.018409188836812973, -0.004279388580471277, 0.0439971461892128, -0.004306580871343613, -0.010591401718556881, 0.0002477048838045448, -0.013140680268406868, -0.009782430715858936, -0.012379295192658901, -0.02868787944316864, -0.025166476145386696, 0.017335092648863792, -0.01623380370438099, 0.016260996460914612, 0.030319416895508766, -0.0010061152279376984, -0.003939484711736441, -0.020815707743167877, 0.00993878673762083, -0.020067919045686722, 0.025751110166311264, 0.03312022611498833, 0.027083532884716988, 0.024051591753959656, -0.010564209893345833, -0.01447990071028471, 0.006937436293810606, -0.03980953246355057, -0.017702188342809677, -0.014833400957286358, 0.017199130728840828, -0.053786374628543854, 0.03137991577386856, -0.010938103310763836, -0.019972745329141617, -0.0049286046996712685, 0.012868757359683514, -0.04361645132303238, -0.045166414231061935, 0.014969362877309322, -0.027083532884716988, 0.033473722636699677, 0.005305897910147905, -0.01438472792506218, -0.0013766102492809296, 0.01842278428375721, 0.0024218144826591015, 0.031515877693891525, 0.00552003737539053, 0.029122956097126007, -0.013670929707586765, 0.00834803655743599, 0.009184200316667557, -0.059551142156124115, -0.010367065668106079, -0.04364364594221115, -0.018354803323745728, 0.02761378325521946, 0.013609747402369976, 0.019673630595207214, -0.01791972666978836, -0.004632888361811638, 0.032440416514873505, -0.01568995788693428, 0.03741660714149475, -0.04092441499233246, -0.0074778832495212555, 0.034751761704683304, 0.012331709265708923, -0.004065249115228653, -0.0265668798238039, -0.0001356428547296673, -0.012535651214420795, -0.005927921738475561, 0.04421468451619148, 0.005319494288414717, 0.00574097502976656, -0.010530219413340092, -0.024636225774884224, 0.037824492901563644, 0.01714474707841873, 0.0024880957789719105, 0.016396958380937576, 0.02511209063231945, -0.02456824481487274, -0.010686574503779411, 0.027437033131718636, -0.03953760862350464, 0.0016774251125752926, 0.05911606550216675, 0.014860592782497406, 0.016913611441850662, 0.004813037347048521, -0.031026417389512062, -0.010503026656806469, -0.0005251513211987913, -0.01443911250680685, -0.015186901204288006, 0.030591340735554695, 0.01941530406475067, -0.01695439964532852, -0.03611137717962265, -0.05884414166212082, -0.036628030240535736, -0.016560113057494164, 0.027328263968229294, -0.020489400252699852, 0.004510523285716772, -0.02250163070857525, -0.01941530406475067, -0.02180822566151619, -0.010917709209024906, 0.00221107411198318, -0.006872854195535183, 9.894386312225834e-05, -0.018137264996767044, 0.037171877920627594, 0.018599534407258034, -0.0018864659359678626, -0.018599534407258034, -0.022025763988494873, -0.00164428458083421, 0.028008071705698967, 0.007743007969111204, 0.006342604756355286, 0.03502368554472923, -0.00013914810551796108, -0.013031911104917526, 0.016900015994906425, 0.03034660965204239, -0.005543830804526806, 0.009612479247152805, 0.020829303190112114, -0.006665512919425964, 0.03339214622974396, 0.015282073989510536, -0.02168586105108261, -0.05248114466667175, -0.018123669549822807, 0.0006878802669234574, 0.001796391443349421, -0.0004949848516844213, -0.01653292030096054, 0.023018283769488335, -0.012868757359683514, 0.03312022611498833, -0.037280645221471786, -0.0003441525623202324, 0.05033295229077339, 0.053623221814632416, 0.025547167286276817, -0.020367033779621124, -0.011298401281237602, -0.010407853871583939, 0.031515877693891525, -0.0010868423851206899, -0.012773583643138409, 0.026050224900245667, 0.018327612429857254, -0.0008115202654153109, 0.02549278363585472, 0.03157026320695877, -0.020027130842208862, -0.012120968662202358, 0.011379978619515896, 0.02456824481487274, -0.004935402888804674, 0.00726714264601469, -0.013521372340619564, 0.013038708828389645, -0.011787863448262215, -0.016587303951382637, -0.008912277407944202, -0.0123045165091753, -0.036709606647491455, 0.001888165483251214, 0.01259683445096016, 0.02545199543237686, -0.0033820425160229206, -0.004571706056594849, 0.020312650129199028, -0.02227049507200718, 0.0040380568243563175, 0.03230445459485054, -0.018939439207315445, 0.037661340087652206, -0.0007371663232333958, -0.0010664480505511165, 0.051012758165597916, 0.02803526446223259, 0.008973459713160992, -0.013596151024103165, -0.024989726021885872, -0.012739594094455242, 0.008592767640948296, -0.009931988082826138, -0.006359599530696869, -0.003871503984555602, -0.008599565364420414, 0.02168586105108261, 0.017783766612410545, 0.01753903552889824, 0.008198479190468788, -0.011910228058695793, 0.02507130242884159, 0.03796045482158661, 0.020897284150123596, 0.007097190711647272, -0.032250069081783295, -0.012719199061393738, 0.017321497201919556, 0.01583951525390148, -0.03602980077266693, 0.02042141929268837, 0.0403805673122406, -0.019605649635195732, -0.011889833956956863, -0.03034660965204239, -0.006872854195535183, -0.025084899738430977, -0.02418755367398262, -0.020475802943110466, 0.0009330358589068055, 0.0244594756513834, 0.010169921442866325, 0.03480614721775055, 0.039782337844371796, 0.021509110927581787, 0.000224124058149755, 0.01768859289586544, 0.011339190416038036, -0.022542418912053108, 0.024717802181839943, 0.028660686686635017, 0.010543814860284328, -0.0060740807093679905, -0.006257628556340933, -0.0121549591422081, -0.010013565421104431, -0.009116219356656075, -0.01228412240743637, -0.0019697423558682203, -0.0003112244012299925, -0.018735496327280998, -0.028660686686635017, 0.03684556856751442, -0.010237901471555233, -0.0002005432324949652, 0.006505758501589298, 0.0019884370267391205, -0.015989074483513832, 0.014765419997274876, 0.037090301513671875, 0.026471706107258797, 0.03325618430972099, 0.020557381212711334, 0.04484010487794876, -0.01861313171684742, 0.010754555463790894, 0.023670898750424385, -0.01796051487326622, -0.03785168379545212, -0.011570325121283531, -0.02414676360785961, 0.030863262712955475, -0.004867421928793192, 0.007341921795159578, 0.004534316249191761, -0.01623380370438099, -0.02111482247710228, -0.002584968227893114, 0.014099208638072014, -0.019442496821284294, 0.05133906751871109, 0.01159751694649458, 0.0041264318861067295, -0.005768167320638895, 0.0033021653071045876, -0.002061516512185335, 0.037824492901563644, -0.010244700126349926, 0.010625392198562622, -0.03883060812950134, 0.013242651708424091, 0.005659398157149553, -0.017946919426321983, -0.012148161418735981, 0.014275958761572838, -0.011985007673501968, 0.031135186553001404, 0.005407869350165129, -0.011665497906506062, 0.010706968605518341, 0.01781095750629902, 0.002148191910237074, 0.011781064793467522, 0.023167841136455536, -0.0525355264544487, 1.4220193406799808e-05, -0.013759304769337177, 0.010856526903808117, 0.016125034540891647, 0.02711072564125061, 0.002306247130036354, 0.010550613515079021, 0.025234457105398178, 0.022950302809476852, -0.005768167320638895, 0.021862611174583435, 0.03135272487998009, 0.0015117221046239138, -0.02868787944316864, 0.0067436909303069115, -0.028008071705698967, -0.0564512200653553, -0.00695103220641613, 0.024976130574941635, -0.02311345748603344, 0.036519262939691544, -0.0015440129209309816, 0.001308629522100091, 0.0109992865473032, 0.007416700478643179, 0.018599534407258034, 0.08842936903238297, -0.0009483315516263247, -0.001774297677911818, -0.006539748515933752, -0.00717196986079216, 0.004010864533483982, 0.010727363638579845, 0.0076682292856276035, -0.016682477667927742, 0.021590687334537506, -0.014711035415530205, 0.009503710083663464, 0.008076113648712635, -0.012263728305697441, 0.01172668021172285, 0.012936737388372421, 0.013521372340619564, 0.013691323809325695, -0.007559460122138262, -0.015621977858245373, -0.004915008787065744, 0.029204532504081726, 0.0029775570146739483, -0.025016918778419495, -0.009816421195864677, 0.010251497849822044, -0.00786537304520607, -0.009034642018377781, 0.004041456151753664, 0.03007468581199646, 0.021468322724103928, 0.02418755367398262, -0.04323576018214226, 0.04881018400192261, -0.0011480250395834446, -0.018789881840348244, -0.01695439964532852, 0.02422834187746048, 0.02622697502374649, 0.00027362254331819713, -0.022623995319008827, -0.007940152660012245, -0.019605649635195732, -0.02953083999454975, -0.02319503389298916, -0.04464976117014885, 0.032250069081783295, -0.01749824732542038, -0.010972093790769577, 0.0011862642131745815, -0.011087661609053612, -0.014615862630307674, 0.01330383401364088, 0.010210709646344185, -0.02391562983393669, -0.028334379196166992, 0.018259631469845772, -0.014724631793797016, -0.013779698871076107, -0.01484699733555317, -0.008082912303507328, 0.019428899511694908, 0.005152941215783358, -0.0030642326455563307, -0.0020530188921839, -0.033174607902765274, 0.004007465671747923, 0.004799441434442997, 0.015798727050423622, 0.0032613768707960844, 0.03292987868189812, -0.00014647727948613465, 0.020353438332676888, -0.004932004027068615, -0.032440416514873505, 0.006080878432840109, -0.005319494288414717, 0.02053018845617771, -0.024513861164450645, -0.022447245195508003, -0.004377960693091154, -0.008368430659174919, -0.003990470431745052, 0.013874872587621212, -0.008558777160942554, -0.007416700478643179, -0.03589383885264397, 0.01278718002140522, -0.0015499612782150507, -0.036328915506601334, -0.030781686305999756, 0.008728728629648685, 0.01953766867518425, 0.03872183710336685, 0.014670247212052345, 0.019945554435253143, -0.015744343400001526, -0.022216111421585083, -0.01218894962221384, -0.022066554054617882, -0.007233152631670237, 0.0056322054006159306, -4.939226710121147e-05, -0.004408551845699549, 0.012848363257944584, -0.00033438034006394446, -0.001368962461128831, 0.0031814994290471077, 0.0489189513027668, -0.028823841363191605, -0.02868787944316864, -0.005458854604512453, 0.010591401718556881, -0.0463084913790226, 0.028252802789211273, 0.005135945975780487, 0.010543814860284328, -0.011889833956956863, 0.005088359583169222, -0.0020632159430533648, -0.02010870724916458, -0.010788545943796635, -0.0244594756513834, -0.030047494918107986, -0.032168492674827576, -0.009857209399342537, 0.00024706756812520325, 0.005404470022767782, 0.033555302768945694, 0.04111476242542267, 0.04149545356631279, 0.052209220826625824, 0.0321413017809391, -0.0011072366032749414, -0.011060468852519989, 0.04119633883237839, 0.04592780023813248, 0.025737514719367027, 0.027178706601262093, 0.0012627425603568554, 0.0037899271119385958, -0.03072730079293251, 0.0221481304615736, -0.01392245851457119, -0.022025763988494873, 0.005203926935791969, 0.01968722604215145, 0.048211950808763504, 0.020475802943110466, -0.01680484227836132, -0.007246748544275761, 0.003732143435627222, -0.004745056852698326, -0.006750489119440317, 0.001470083836466074, -0.0007112486637197435, -0.009639671072363853, -0.020095111802220345, 0.02507130242884159, 0.002746422542259097, 0.006213441025465727, -0.01157712284475565, -0.02138674631714821, -0.05131187289953232, 0.006199845112860203, 0.011033277027308941, -0.007647835183888674, 0.0042148069478571415, -0.01568995788693428, -0.01945609226822853, 0.010571007616817951, -0.01815086230635643, 0.02906857058405876, 0.0037627348210662603, 0.002148191910237074, 0.00502037862315774, 0.0008408369612880051, -0.005655998829752207, -0.02841595560312271, -0.0028908816166222095, 0.016940804198384285, -0.027287475764751434, -0.014411920681595802, -0.0036437686067074537, -0.005156340543180704, -0.004476532805711031, -0.006471768021583557, -0.006607729475945234, -0.024024398997426033, -0.0027804130222648382, 0.03567630052566528, -0.028932610526680946, 0.013772901147603989, 0.003453422337770462, -0.02407878451049328, -0.0035689896903932095, -0.015214093029499054, -0.005390874110162258, 0.0062202392145991325, -0.010700170882046223, 0.01503734290599823, 0.025873474776744843, 0.0015066234627738595, -0.0012797376839444041, 0.017389478161931038, -0.0006564391660504043, 0.007960546761751175, 0.019102592021226883, -0.008898681029677391, 0.00523791741579771, 0.04584622010588646, -0.011699488386511803, 0.015078132040798664, 0.014357536099851131, 0.010156325064599514, 0.037280645221471786, 0.00940173864364624, 0.005465652793645859, -0.009265776723623276, -0.0010180118260905147, -0.040326185524463654, -0.01968722604215145, -0.005887133534997702, -0.008205276913940907, 0.023643705993890762, -0.03186937794089317, 0.0015669564018025994, -0.02607741765677929, 0.008184882812201977, -0.05169256776571274, -0.007131181191653013, -0.04225683957338333, -0.019605649635195732, -0.011917026713490486, 0.01097889244556427, 0.028606301173567772, -0.050632067024707794, 0.03189656883478165, 0.020870091393589973, -0.012127767316997051, -0.0018252832815051079, -0.013072699308395386, -0.02103324607014656, 0.01764780469238758, 0.009354151785373688, 0.019592054188251495, 0.0003826041938737035, -0.05998621881008148, 0.003769533010199666, -0.029639609158039093, -0.025859879329800606, -0.0018762688850983977, -0.033283378928899765, -0.03192376345396042, -0.023670898750424385, 0.0008030227036215365, -0.029122956097126007, -0.00834803655743599, -0.01684563048183918, 0.025832686573266983, -0.0029571629129350185, -0.007987738586962223, -0.009163806214928627, 0.0013392209075391293, -0.0006891548982821405, -0.008116901852190495, -0.018123669549822807, 0.010842930525541306, 0.0005871838075108826, 0.004092441406100988, 0.005737575702369213, -0.01438472792506218, -0.026512494310736656, -0.0008540082490071654, -0.020584572106599808, 0.02319503389298916, 0.004952398128807545, -0.012834766879677773, 0.002154989866539836, 0.030156264081597328, -0.010367065668106079, -0.010047555901110172, -0.01564916968345642, -0.012202546000480652, 0.0077566043473780155, -0.011733478866517544, -0.012345305643975735, -0.0030744296964257956, 0.0551459901034832, 0.0007728562341071665, -0.030564147979021072, -0.01714474707841873, -0.023942822590470314, -0.04437783733010292, -0.025139283388853073, -0.015173304826021194, -0.0026274563279002905, -0.03951041400432587, -0.019292939454317093, 0.005642402917146683, -0.02658047527074814, -0.004891215357929468, -0.004330374300479889, 0.03491491451859474, 0.029286108911037445, -0.004354167263954878, 0.012916343286633492, -0.01274639181792736, -0.008076113648712635, -0.02769535966217518, -0.009646469727158546, -0.02096526511013508, -0.001615392742678523, -0.031216762959957123, -0.024160360917448997, 0.011230421252548695, 0.05394952744245529, 0.005781763233244419, 0.033745646476745605, 0.009694055654108524, 0.0006288220174610615, 0.034017570316791534, 0.0022892518900334835, -0.004116234835237265, 0.043126992881298065, -0.006682508159428835, -0.015431631356477737, -0.015173304826021194, 0.016247401013970375, 0.019483285024762154, -0.008069315925240517, 0.032630763947963715, -0.01796051487326622, 0.032521992921829224, 0.005571023095399141, -0.026444513350725174, -0.008293651975691319, 0.013684526085853577, -0.008150892332196236, 0.009571690112352371, 0.03227726370096207, 0.005635604728013277, 0.013235853053629398, -0.017443861812353134, -0.038749031722545624, 0.0017539034597575665, 0.0011140346759930253, 0.011087661609053612, 0.02061176486313343, 0.023670898750424385, 0.004157023038715124, -0.021876206621527672, -0.02584628388285637, 0.0004074596508871764, -0.02277355268597603, -0.036356110125780106, 0.051366258412599564, -0.006546546705067158, 0.07080875337123871, -0.01684563048183918, 0.005469051655381918, 0.003142410423606634, -0.027586590498685837, 0.012719199061393738, 0.012005401775240898, 0.028470341116189957, -0.03679118677973747, -0.00930656585842371, 0.01555399689823389, -0.028633493930101395, -0.007375911809504032, -0.001600097049959004, 0.024744994938373566, -0.009469719603657722, 0.03491491451859474, -0.02658047527074814, 0.024677013978362083, -0.01172668021172285, -0.009789228439331055, 0.00552003737539053, 0.040978800505399704, 0.00524131627753377, 0.0021294972393661737, -0.0059415181167423725, -0.014588669873774052, 0.003164504189044237, -0.0012100574094802141, -0.012161756865680218, 0.005380677059292793] \ No newline at end of file diff --git a/cache/text-embedding-3-smallb4e8ceb0-43c9-5139-ae70-4bb7893aa5e2 b/cache/text-embedding-3-smallb4e8ceb0-43c9-5139-ae70-4bb7893aa5e2 new file mode 100644 index 0000000000000000000000000000000000000000..552671e43c9b8a2ff1ffff1b57a44f77598152f6 --- /dev/null +++ b/cache/text-embedding-3-smallb4e8ceb0-43c9-5139-ae70-4bb7893aa5e2 @@ -0,0 +1 @@ +[-0.0010541516821831465, -0.010430228896439075, 0.08492568135261536, 0.029479151591658592, -0.010584795847535133, 0.042957454919815063, 0.02168894000351429, 0.11297044157981873, 0.03432639688253403, -0.02042766846716404, -0.01648310013115406, -0.05119282379746437, -0.04839823767542839, 0.010918662883341312, 0.0456283874809742, 0.021144861355423927, 0.0022134094033390284, 0.02311096340417862, -0.029404960572719574, -0.0050481813959777355, 0.012711647897958755, 0.029306035488843918, -0.022134095430374146, 0.01898091472685337, 0.017670180648565292, 0.03445005044341087, 0.030938271433115005, -0.06405285745859146, 0.020489495247602463, -0.020526591688394547, 0.05782068520784378, -0.03524143621325493, 0.020501859486103058, 0.02421148493885994, -0.0008338927291333675, 0.04325422644615173, -0.06059053912758827, 0.017410505563020706, -0.012860032729804516, 0.023209886625409126, -0.049214355647563934, -0.02982538379728794, 0.03526616841554642, 0.02471846714615822, 0.02445879392325878, 0.007592365611344576, 0.0004277661209926009, -0.03291673958301544, 0.00659694941714406, 0.007202854845672846, -0.016112137585878372, -0.005007993429899216, 0.0001767868088791147, 0.01621106080710888, -0.02351902239024639, -0.018238989636301994, 0.021280881017446518, -0.015765905380249023, 0.010696085169911385, 0.05851314961910248, 0.035637129098176956, -0.03457370400428772, 0.009051484987139702, -0.008408483117818832, -0.052379902452230453, -0.013700881041586399, 0.011172153986990452, 0.05435837060213089, -0.03202642872929573, 0.03417801111936569, -0.007833491079509258, 0.015098173171281815, 0.03205115720629692, 0.040063947439193726, 0.06217331439256668, -0.030913541093468666, -0.02638779766857624, 0.007579999975860119, 0.00020654109539464116, -0.004105318337678909, -0.009620293974876404, -0.013886362314224243, 0.02466900460422039, -0.007629461586475372, 0.020947014912962914, -0.010943393222987652, -0.0414983369410038, 0.0793365091085434, 0.008470309898257256, 0.015926655381917953, -0.011487471871078014, 0.036898400634527206, -0.012006819248199463, 0.06009592115879059, -0.01905510574579239, -0.034474778920412064, -0.01303314883261919, -0.010943393222987652, -0.00013862790365237743, 0.020143263041973114, 0.002992430701851845, -0.004398996941745281, 0.026832953095436096, -0.004794690292328596, -0.01639654114842415, 0.008260098285973072, 0.015345481224358082, -0.017373409122228622, -0.00368798547424376, 0.055446527898311615, 0.006355823948979378, 0.0036292497534304857, -0.03153181076049805, 0.042561762034893036, -0.04060802608728409, -0.02531200647354126, -0.0742914229631424, -0.035365089774131775, 0.01140709687024355, 0.05430890619754791, 0.035093050450086594, -0.03984137251973152, 0.012872397899627686, -0.0005842659156769514, -0.016285253688693047, 0.004794690292328596, -0.03858009725809097, 0.0031562724616378546, 0.013713246211409569, -0.06138192489743233, 0.0073512401431798935, 0.018016410991549492, -0.06885063648223877, -0.004411362111568451, 0.06652593612670898, -0.027772724628448486, 0.008037520572543144, 0.024471158161759377, -0.050747666507959366, -0.046716541051864624, 0.02831680327653885, 0.007209037430584431, 0.024928679689764977, 0.013465938158333302, -0.06059053912758827, 0.034697357565164566, -0.03390597179532051, 0.04894231632351875, -0.011308172717690468, -0.013292822055518627, -0.010244747623801231, -0.02794584073126316, -0.027203915640711784, -0.021763132885098457, 0.02015562914311886, 0.006881353911012411, 0.010424045845866203, 0.07063125818967819, -0.0382833294570446, -0.023259347304701805, -0.04201768338680267, 0.04458969086408615, -0.018857259303331375, 0.004222789779305458, 0.033436086028814316, 0.007907683961093426, -0.0032953834161162376, -0.03585970774292946, -0.07617096602916718, -0.013750342652201653, -0.02764907106757164, -0.008915465325117111, 0.020712072029709816, 0.02834153361618519, -0.0378381721675396, -0.008927830494940281, -0.007907683961093426, -0.04065748676657677, -0.023358270525932312, 0.009465726092457771, -0.015469135716557503, 0.00770365446805954, -0.03205115720629692, -0.004995628260076046, -0.0396682545542717, 0.008464127779006958, -0.019846493378281593, -0.018671778962016106, -0.007641827221959829, 0.044119805097579956, 0.02925657480955124, 0.01882016286253929, 0.03464789688587189, -0.023209886625409126, -0.01288476400077343, 0.034103818237781525, -0.016309984028339386, 0.031581271439790726, 0.014653017744421959, 0.004034216981381178, 0.018993278965353966, 0.00894019566476345, 0.005542797967791557, 0.02985011413693428, -0.016062675043940544, 0.016359446570277214, -0.03318877890706062, 0.025893181562423706, 0.016816966235637665, -0.008062250912189484, 0.015296019613742828, 0.01052296906709671, -0.046716541051864624, 0.04565311595797539, -0.019735204055905342, 0.015197096392512321, -0.0074316151440143585, -0.016606753692030907, 0.005171835422515869, -0.0016105955000966787, 0.01195735763758421, -0.003307748818770051, 0.053913213312625885, -0.02375396527349949, -0.017113735899329185, 0.011889347806572914, 0.03133396431803703, 0.025645872578024864, -0.021590016782283783, 0.03390597179532051, 0.03299092873930931, -0.07434087991714478, -0.03049311600625515, -0.016656216233968735, 0.035637129098176956, -0.03744247928261757, -0.025027602910995483, 0.03583497554063797, -0.047285351902246475, -0.055792756378650665, -0.04674127325415611, -0.011920261196792126, 0.0014877141220495105, 0.014096574857831001, -0.014282056130468845, 0.022542154416441917, 0.011264894157648087, -0.04787889122962952, 0.0071472106501460075, 0.02388998493552208, 0.000875626050401479, 0.023815792053937912, 0.022566884756088257, -0.002250505844131112, -0.022702904418110847, 0.004330987110733986, 0.02928130514919758, 0.01717556267976761, -0.011363817378878593, -0.00045674756984226406, 0.004296982195228338, -0.0028950530104339123, 0.026165220886468887, -0.041968222707509995, 0.01368851587176323, 0.02196097932755947, 0.03395543247461319, 0.020835725590586662, 0.0018718148348852992, 0.0005827202112413943, -0.017546525225043297, 0.006105424370616674, 0.023197520524263382, -0.02345719374716282, -0.047334812581539154, 0.0279705710709095, 0.037862904369831085, -0.00920605193823576, -0.05970022827386856, 0.05312182754278183, 0.006535122636705637, -0.054506756365299225, 0.009199869818985462, -0.037590865045785904, 0.018127700313925743, -0.06751517206430435, 0.0348457433283329, 0.008284828625619411, -0.008859820663928986, 0.0378381721675396, -0.0039971210062503815, -0.056435760110616684, -0.01211810763925314, -0.07661611586809158, 0.014393344521522522, 0.003483955981209874, -0.0025209991727024317, -0.028118956834077835, -0.010677536949515343, 0.02829207293689251, 0.05124228447675705, 0.00996034312993288, 0.038827408105134964, -0.03432639688253403, 0.025893181562423706, 0.021837325766682625, 0.004967805929481983, 0.012946590781211853, -0.01396055519580841, -0.02950388379395008, -0.04501011595129967, 0.0030712601728737354, 0.03135869652032852, -0.031606003642082214, -0.022245382890105247, -0.018276086077094078, 0.02405073493719101, -0.001612141146324575, 0.018127700313925743, -0.018931452184915543, 0.0017759829061105847, -0.017249755561351776, -0.03432639688253403, -0.00849504116922617, 0.0014274327550083399, -0.038975790143013, 0.04429291933774948, 0.00904530193656683, 0.009391533210873604, -0.013490669429302216, -0.029009265825152397, -0.018004046753048897, 0.01265600323677063, -0.020959381014108658, -0.0648937076330185, -0.053616445511579514, -0.04938747361302376, 0.03200169652700424, -0.009694485925137997, -0.04486173018813133, -0.06316254287958145, -0.014368613250553608, -0.00920605193823576, -0.04028652608394623, -0.012433426454663277, -0.0006186572136357427, -0.011289625428617, -0.011295807547867298, 0.05599060282111168, 0.038481175899505615, -0.02005670592188835, -0.015666982159018517, 0.022480325773358345, -0.051390670239925385, 0.035389821976423264, 0.011481288820505142, 0.02572006545960903, 0.009348254650831223, 0.03642851486802101, 0.014146036468446255, 0.002287602052092552, -0.011951174587011337, -0.017830930650234222, -0.02079862914979458, 0.036576900631189346, 0.023148059844970703, -0.03017161600291729, -0.016408907249569893, 0.07028502225875854, 0.0039043801371008158, 0.0191416647285223, -0.013515399768948555, -0.06187654286623001, -0.02072443813085556, -0.03148235008120537, -0.03427693247795105, 0.007617096416652203, 0.012724013067781925, 0.08057305216789246, -0.03907471522688866, 0.03845644369721413, -0.010918662883341312, -0.01091247983276844, 3.687888602144085e-05, -0.02480502426624298, -0.009051484987139702, 0.011332903988659382, -0.05173690244555473, 0.015877194702625275, -0.059551846235990524, -0.0034592251759022474, 0.04560365527868271, 0.024087831377983093, 0.0007562224636785686, 0.0033510278444737196, -0.023951811715960503, 0.005147104617208242, 0.07305487990379333, -0.010813556611537933, 0.04125102981925011, -0.017274485900998116, -0.006093058735132217, -0.04931328073143959, -0.0257942583411932, 0.012773474678397179, 0.029009265825152397, -0.010083996690809727, 0.005446965806186199, -0.027253378182649612, -0.06390447169542313, 0.008006607182323933, -0.055199217051267624, 0.04936274141073227, 0.013107340782880783, 0.00955846719443798, -0.027747994288802147, -0.0069617293775081635, 0.026783492416143417, -0.017855660989880562, 0.04461442306637764, 0.03561239689588547, -0.06390447169542313, 0.022678174078464508, -0.008835090324282646, 0.0018579037860035896, 0.0010982034727931023, 0.012315954081714153, 0.006222895812243223, 0.024038368836045265, -0.07112587243318558, -0.013503034599125385, -0.014084208756685257, 0.027104992419481277, 0.009564649313688278, -0.015617520548403263, 0.009199869818985462, -0.003233556402847171, 0.023556116968393326, 0.04844770208001137, 0.020229820162057877, -0.019685743376612663, 0.01637181080877781, -0.00019060129125136882, 0.0005035042995586991, 0.03138342499732971, 0.004732863046228886, 0.03385651111602783, 0.024916313588619232, -0.032496314495801926, -0.007734567858278751, 0.002126851584762335, 0.010590978898108006, 0.023617945611476898, -0.023259347304701805, -0.043229494243860245, -0.006559853442013264, 0.03296620026230812, 0.0020495676435530186, -0.03200169652700424, -0.00943481270223856, 0.056089527904987335, 0.039099447429180145, 0.03793709725141525, 0.028094226494431496, 0.03296620026230812, 0.0020974837243556976, -0.010189102962613106, 0.0414983369410038, -0.028217880055308342, 0.0006661867955699563, -0.036947865039110184, 0.0012033095117658377, 0.026931876316666603, 0.026659836992621422, -0.021763132885098457, -0.003898197552189231, -0.009088580496609211, -0.014937423169612885, -0.015357847325503826, -0.01464065257459879, 0.012835302390158176, 0.00880417600274086, 0.003592153312638402, 0.004182601813226938, -0.018436836078763008, -0.02099647745490074, 0.031037194654345512, -0.0396682545542717, -0.03768979012966156, 0.04238864779472351, 0.03939621523022652, 0.03951986879110336, -0.007456345949321985, -0.01145037543028593, -0.017200293019413948, -0.0055273412726819515, -0.062123849987983704, 0.018585219979286194, 0.03618120774626732, -0.01368851587176323, 0.018436836078763008, 0.004182601813226938, -0.03257050737738609, 0.005539706442505121, 0.019129298627376556, 0.018597586080431938, -0.05866153538227081, -0.016260521486401558, -0.03672528639435768, -0.0017373409355059266, -0.028737226501107216, 0.05752391740679741, -0.004284616559743881, 0.01464065257459879, -0.0018609951948747039, 0.018560489639639854, 0.013886362314224243, 0.016866426914930344, 0.026659836992621422, -0.0431058406829834, -0.01882016286253929, 0.01669331267476082, 0.04993155226111412, 0.032867275178432465, -0.051390670239925385, 0.015803001821041107, -0.017707275226712227, -0.011901712976396084, 0.022641077637672424, -0.030319999903440475, 0.016656216233968735, -0.03454897180199623, 0.013391746208071709, 0.014702480286359787, -0.011468923650681973, -0.007097749039530754, 0.0030898083932697773, 0.00934207160025835, -0.012074829079210758, 0.03296620026230812, 0.02343246340751648, -0.00558298546820879, -0.021923882886767387, 0.013948189094662666, 0.024434061720967293, -0.011932626366615295, 0.009774861857295036, 0.025992104783654213, -0.006182708311825991, 0.013391746208071709, 0.02826734073460102, -0.03168019652366638, -0.0038116395007818937, 0.015296019613742828, 0.01919112540781498, -0.07201618701219559, 0.03670055419206619, 0.047235891222953796, 0.005079094786196947, 0.016198694705963135, 0.009811957366764545, -0.019376607611775398, -0.01870887540280819, 0.005202748812735081, -0.01591429114341736, -0.004164054058492184, 0.016903523355722427, 0.008915465325117111, -0.04308110848069191, -0.01747233234345913, 0.019957780838012695, 0.031235041096806526, 0.0263630673289299, -0.017868027091026306, 0.037244632840156555, 0.013762707822024822, 0.012309771962463856, -0.026907145977020264, 0.0502035915851593, 0.023531386628746986, -0.017064275220036507, -0.062024928629398346, -0.009070033207535744, -0.03561239689588547, -0.05351752042770386, 0.015283654443919659, 0.027550147846341133, 0.014801403507590294, -0.05401213839650154, -0.005573711358010769, -0.02262871153652668, 0.00585811585187912, 0.04075641185045242, 0.015518597327172756, -0.01037458423525095, -0.024730833247303963, 0.014665383845567703, 0.026313604786992073, 0.012724013067781925, 0.010733181610703468, -0.023024404421448708, -0.042240262031555176, 0.00046099818428047, 0.01051060389727354, -0.05900776758790016, -0.0020758442115038633, 0.017979314550757408, -0.02673402987420559, 0.00016741614672355354, -0.025299642235040665, 0.039742447435855865, 0.011790424585342407, 0.025843719020485878, -0.014999249950051308, 0.025324372574687004, 0.015939021483063698, -0.019574454054236412, -0.005926125682890415, 0.048274584114551544, -0.011858434416353703, 0.010906296782195568, -0.0175341609865427, -0.022096998989582062, -0.0053325858898460865, 0.001695607672445476, 0.026313604786992073, -0.011400913819670677, 0.006708238273859024, 0.0016415090067312121, -0.017348678782582283, -0.011252528987824917, -0.02090991847217083, -0.02201044000685215, -0.0038209136109799147, -0.010547700338065624, 0.03078988566994667, -0.006025048904120922, -0.009638842195272446, 0.05371536687016487, -0.007567634806036949, 0.02705552987754345, -0.019042741507291794, 0.03556293621659279, -0.05994753912091255, 0.0018594494322314858, 0.00987996719777584, -0.017595987766981125, -0.035389821976423264, -0.01290949434041977, -0.012513801455497742, 0.04743373766541481, 0.002737394068390131, 0.03924782946705818, 0.008952561765909195, 0.001777528552338481, -0.012149021029472351, 0.009230783209204674, 0.02322225086390972, -0.022158825770020485, 0.010609527118504047, -0.004507194273173809, 0.024916313588619232, -0.00460302596911788, -0.012285040691494942, 0.038753215223550797, 0.0035148696042597294, 0.0014884870033711195, 0.0031933686695992947, 0.006114698480814695, -0.0005065956502221525, -0.07285702973604202, 0.010189102962613106, 0.03907471522688866, -0.009861418977379799, -0.004287708085030317, -0.019203491508960724, -0.011215432547032833, -0.044441305100917816, -0.01605031080543995, 0.02732756920158863, 0.006695873104035854, 0.024681370705366135, -0.010887748561799526, -0.027822187170386314, 0.00698646018281579, -0.012291223742067814, 0.022863654419779778, -0.023395366966724396, 0.005041998345404863, 0.03798655793070793, 0.011926444247364998, 0.004887430928647518, 0.009039118885993958, -0.024594813585281372, -0.004766867961734533, -0.02888561226427555, -0.01726212166249752, 0.03932202234864235, -0.042611222714185715, -0.051341209560632706, 0.010083996690809727, 0.026931876316666603, 0.012872397899627686, -0.007307961117476225, -0.01900564506649971, -0.007926232181489468, 0.0009598654578439891, 0.028687765821814537, 0.025596411898732185, -0.033164046704769135, -0.015432039275765419, 0.00783967413008213, -0.006491843611001968, -0.04050910472869873, -0.006235260982066393, 0.02469373680651188, -0.0013887907844036818, -0.020897554233670235, 0.01983412727713585, -0.007685106247663498, 0.0149003267288208, -0.027451224625110626, -0.017966950312256813, -0.05633683502674103, 0.016792235895991325, 0.042240262031555176, 0.0010634257923811674, 0.007456345949321985, 0.021478727459907532, -0.022270115092396736, 0.015963751822710037, -0.025349102914333344, 0.001538721495307982, 0.0042506116442382336, 0.017435237765312195, 0.054803524166345596, -0.0257942583411932, -0.018622316420078278, 0.013799804262816906, 0.01659438945353031, -0.016099771484732628, -0.05821637809276581, -0.006943181157112122, -0.015926655381917953, -0.01161112543195486, 0.010232381522655487, 0.021441631019115448, 0.05099497735500336, -0.002865685150027275, -0.0008493495406582952, -0.03845644369721413, 0.007542904000729322, -0.018102969974279404, 0.012822936289012432, 0.028143687173724174, -0.006541305221617222, -0.04045964032411575, -0.003307748818770051, -0.0019413703121244907, -0.01101758610457182, 0.005372773390263319, 0.01943843439221382, -0.0006800979026593268, 0.003941476345062256, -0.00018335593631491065, 0.02405073493719101, -0.06860332936048508, -0.017187928780913353, 0.013589592650532722, 0.013107340782880783, 0.053863752633333206, -0.011023768223822117, 0.0051285563968122005, -0.05762283876538277, 0.02180022932589054, -0.0015619066543877125, -0.013367014937102795, -0.01836264319717884, 0.03237266093492508, -0.020947014912962914, -0.015159999951720238, -0.004062039311975241, -0.010572430677711964, 0.01290949434041977, -0.023333540186285973, 0.01115360576659441, -0.004924526903778315, -0.026635106652975082, -0.02005670592188835, -0.006936998572200537, 0.014813768677413464, 0.009039118885993958, -0.004797781351953745, 0.017435237765312195, 0.014492267742753029, 0.03200169652700424, -0.0064732953906059265, -0.0426359549164772, 0.030097423121333122, 0.02928130514919758, 0.0007198990788310766, 0.00018374236242379993, 0.02574479579925537, -0.03259523585438728, 0.04157252982258797, 0.058612070977687836, 0.017694910988211632, 0.028143687173724174, -0.014554094523191452, 0.0061981650069355965, -0.003347936552017927, 0.029033998027443886, -0.009274061769247055, 0.0018609951948747039, 0.024767927825450897, 0.031012464314699173, 0.002913601230829954, 0.0327930822968483, 0.01319389883428812, -0.025917911902070045, 0.01951262727379799, 0.0194878950715065, -0.007456345949321985, -0.010850653052330017, -0.00598486140370369, 0.0074192495085299015, -0.012247945182025433, 0.02099647745490074, 0.023358270525932312, -0.049535855650901794, -0.01811533421278, -0.027104992419481277, 0.0004022624343633652, -0.029454421252012253, 0.03046838566660881, -0.008964926935732365, 0.05007993429899216, -0.024953410029411316, -0.00753672095015645, 0.005205840338021517, 0.0009822777938097715, -0.007493442390114069, 0.007103931624442339, 0.015122904442250729, 0.007270864676684141, 0.016878793016076088, 0.015605155378580093, 0.013391746208071709, 0.02487921714782715, 0.016816966235637665, 0.010343670845031738, -0.0364532470703125, -0.056089527904987335, -0.0014490722678601742, -0.05000574141740799, 0.023927079513669014, -0.015333116054534912, -1.5227334188239183e-05, -0.003381941234692931, -0.006868988741189241, -0.036601632833480835, -0.051687438040971756, 0.007221403066068888, -0.03939621523022652, 0.034375857561826706, 0.00526766711845994, -0.010739363729953766, 0.007029739208519459, 0.0380607508122921, 0.003576696617528796, 0.03427693247795105, -0.0026461989618837833, 0.006763882469385862, -0.0223566722124815, 0.04496065154671669, 0.02423621527850628, -0.013453572988510132, 0.0241867545992136, -0.02987484633922577, -0.006763882469385862, 0.022208288311958313, 0.0011167516931891441, 0.02705552987754345, 0.0015510868979617953, 0.03994029387831688, 0.03212535008788109, -0.0010611072648316622, -0.010603344067931175, 0.0011260256869718432, 0.024038368836045265, 0.026560913771390915, 0.020390572026371956, -0.007233768701553345, -0.013589592650532722, -0.0023803426884114742, -0.011580212041735649, 0.006652594078332186, 0.018857259303331375, -0.014504632912576199, 0.04973370581865311, 0.029676998034119606, 0.004383540246635675, -0.014541729353368282, 0.014232594519853592, -0.0060466886498034, 0.008278646506369114, 0.009360619820654392, -0.022072268649935722, 0.01997014693915844, 0.04914016276597977, -0.011907896026968956, -0.01021383423358202, 0.01726212166249752, 0.014282056130468845, -0.004757593851536512, -0.004785416182130575, -0.015023980289697647, -0.0061981650069355965, 0.043180033564567566, 0.00451646838337183, -0.016124501824378967, 0.0021299428772181273, 0.01605031080543995, -0.027797454968094826, 0.027747994288802147, -0.00018789636669680476, -0.009255514480173588, 0.02703079953789711, 0.014158401638269424, -0.02858884260058403, 0.028539380058646202, -0.004337169695645571, -0.014554094523191452, -0.030270539224147797, -0.0036818026565015316, -0.004021851811558008, 0.03858009725809097, -0.0015874103410169482, 0.00030121381860226393, -0.01235923357307911, -0.010473507456481457, 0.010189102962613106, -0.02675876021385193, -0.029108189046382904, -0.002780672861263156, 0.022220652550458908, 0.000866351998411119, 0.035018857568502426, 0.04787889122962952, -0.03076515533030033, 0.029775923117995262, -0.020019609481096268, 0.005824110936373472, 0.0004965487169101834, -0.0051378305070102215, -0.016767503693699837, -0.004797781351953745, 0.05054982006549835, 0.058612070977687836, -0.03259523585438728, -0.024124927818775177, -0.030864078551530838, 0.0028703222051262856, -0.005317129194736481, -0.01806587353348732, -0.03677474707365036, -0.0014173858799040318, -0.0073265088722109795, -0.0030913541559129953, 0.02478029392659664, -0.018473932519555092, 0.03578551486134529, 0.04050910472869873, 0.010832104831933975, -0.01682933233678341, 0.029157651588320732, 0.0026755668222904205, 0.04362518712878227, 0.026635106652975082, 0.029330767691135406, 0.01462828740477562, -0.003279926721006632, 0.009298793040215969, 0.026511453092098236, 0.01726212166249752, 0.016606753692030907, 0.001289867446757853, 0.03022107668220997, -0.004309347365051508, -0.02407546527683735, 0.013799804262816906, 0.006906085181981325, 0.010974306613206863, 0.030369462445378304, -0.026832953095436096, -0.0332382395863533, 0.004735954571515322, 0.025002870708703995, 0.017200293019413948, 0.03153181076049805, 0.013503034599125385, -0.0009281790698878467, -0.008223001845180988, -0.014986884780228138, 0.04137468338012695, -0.019883589819073677, 0.03135869652032852, -0.003245921805500984, 0.034994129091501236, -0.022270115092396736, 0.014331517741084099, -0.007320326287299395, -0.0010881565976887941, -0.0015510868979617953, 0.03051784634590149, -0.03076515533030033, 0.004967805929481983, -0.018300816416740417, -0.023098597303032875, 0.037219904363155365, 0.022987307980656624, 0.02464427426457405, 0.0018749062437564135, -0.002276782179251313, -0.01540730893611908, 0.03511778265237808, -0.020971745252609253, 0.016977716237306595, 0.0355382077395916, 0.01682933233678341, 0.011444192379713058, -0.021491093561053276, -0.019067471846938133, 0.014146036468446255, 0.015642251819372177, -0.04016287252306938, 0.011932626366615295, 0.023605579510331154, -0.03145761787891388, -0.025077063590288162, -0.007814942859113216, -0.0035736053250730038, 0.015159999951720238, -0.01645836979150772, 0.012958955951035023, 0.03078988566994667, -0.01368851587176323, 0.036898400634527206, 0.005907577462494373, 0.02423621527850628, -0.004071313422173262, 0.014269690029323101, 0.02609102800488472, 0.006210530176758766, 0.006868988741189241, 0.029701730236411095, 0.02056368626654148, -0.018288450315594673, -0.008513589389622211, -0.0007160349050536752, 0.0350683219730854, -0.019710473716259003, 0.010015986859798431, -0.014875595457851887, -0.0014807585394009948, -0.03964352607727051, 0.0023695228155702353, -0.005276941228657961, 0.05267667397856712, -0.02539856545627117, 0.016260521486401558, -0.004176419228315353, -0.034425318241119385, 0.003833279013633728, 0.03205115720629692, -0.009861418977379799, 0.014541729353368282, 0.014108940027654171, 0.04335314780473709, 0.00880417600274086, 0.01884489506483078, 0.014739575795829296, -0.0229254812002182, -0.0035705140326172113, -0.07082910090684891, -0.002958425786346197, 0.02581898868083954, -0.003703442169353366, 0.01916639506816864, -0.01052296906709671, 0.03514251112937927, -0.028390996158123016, -5.820440128445625e-05, 0.016384176909923553, -0.02104593813419342, -0.013787439092993736, 0.009935611858963966, -0.012322137132287025, 0.010090179741382599, -0.007493442390114069, -0.02448352426290512, -0.005950856488198042, -0.009793410077691078, 0.024743197485804558, 0.02989957667887211, -0.03741775080561638, 0.0006422288133762777, 8.090653136605397e-05, -0.01739814132452011, -0.010009804740548134, -0.02510179579257965, -0.021466363221406937, 0.022084632888436317, -0.0029182382859289646, -0.010757911950349808, 0.009212234988808632, 0.012822936289012432, -0.014826133847236633, 0.021602382883429527, 0.007740750443190336, 0.019092202186584473, -0.010331305675208569, 0.015296019613742828, 0.017806198447942734, 0.001085838070139289, -0.020501859486103058, 0.017645448446273804, -0.017917487770318985, -0.008464127779006958, -0.015197096392512321, -0.009577014483511448, -0.0012210848508402705, 0.04496065154671669, 0.028118956834077835, -0.01477667223662138, 0.009539918974041939, -0.03949514031410217, 0.006362006533890963, -0.02700606919825077, -0.020304013043642044, -0.0012033095117658377, 0.012662186287343502, -0.012872397899627686, -0.02572006545960903, 0.018758336082100868, -0.023160424083471298, -0.027896378189325333, 0.11029951274394989, 0.00039685258525423706, 0.02574479579925537, 0.007301778066903353, -0.005242936313152313, 0.0014274327550083399, 0.021911516785621643, -0.012365416623651981, -0.006182708311825991, -0.01992068625986576, 0.0008184359758161008, 0.00010868041863432154, 0.03454897180199623, 0.010195286013185978, -0.010726998560130596, 0.046370312571525574, 0.03835752233862877, 0.032545775175094604, 0.002411256078630686, 0.006423833779990673, -0.011722414754331112, -0.008408483117818832, -0.008185905404388905, -0.03964352607727051, 0.023012040182948112, 0.000801433518063277, -0.015963751822710037, 0.01997014693915844, 0.006355823948979378, -0.002211863873526454, 0.03717043995857239, 0.03642851486802101, -0.006204347591847181, 0.04189402982592583, -0.011264894157648087, 0.0037621778901666403, -0.010863018222153187, 0.006170342676341534, 0.0013748797355219722, -0.0433284193277359, -0.026610376313328743, -0.006337275728583336, 0.01413367036730051, 0.010040718130767345, 0.009917063638567924, -0.010096362791955471, -0.00021059848950244486, -0.01927768439054489, -0.02405073493719101, 0.008352838456630707, -0.009218418039381504, -0.03581024706363678, -0.014887961558997631, -0.00795714557170868, 0.0017357952892780304, 0.027550147846341133, 0.00863106083124876, -0.0021794047206640244, 0.03234792873263359, 0.01696535013616085, -0.0004895931924693286, -0.016680946573615074, 0.02391471527516842, -0.003040346782654524, 0.009391533210873604, -0.008247732184827328, 0.01101758610457182, 0.019228221848607063, 0.008006607182323933, 0.002912055468186736, 0.011901712976396084, -0.004726680461317301, 0.020254552364349365, 0.00863106083124876, 0.0006847348995506763, 0.00777784688398242, -0.009663572534918785, 0.024149658158421516, -0.024978140369057655, 0.008315742015838623, -0.015518597327172756, 0.02730283886194229, -0.01235923357307911, 0.009750130586326122, 0.0035828794352710247, -0.015877194702625275, 0.016792235895991325, 0.011481288820505142, 0.022109365090727806, -0.004828695207834244, -0.026288874447345734, -0.03113611787557602, 0.019883589819073677, 0.04787889122962952, 0.015246558003127575, -0.03793709725141525, -0.033436086028814316, -0.021639477461576462, -0.02638779766857624, -0.0332382395863533, 0.045677848160266876, 0.004701949656009674, 0.009428629651665688, -0.0036508890334516764, 0.006167251151055098, -0.006232169922441244, -0.001409657415933907, -0.0020665701013058424, 0.018189527094364166, -0.021948613226413727, -0.01478903740644455, -0.03479628264904022, 0.022616345435380936, -0.029998499900102615, 0.02539856545627117, 0.013787439092993736, 0.031902775168418884, 0.0012736378703266382, 0.007889135740697384, -0.007103931624442339, 0.02539856545627117, -0.007629461586475372, 0.011951174587011337, -0.04557892307639122, -0.050747666507959366, 0.010492055676877499, 0.027129722759127617, 0.011963539756834507, -0.016112137585878372, -0.01026947796344757, 0.039470408111810684, 0.026486720889806747, 0.0228141937404871, 0.014838499017059803, 0.028193149715662003, 0.032224275171756744, 0.0007399928872473538, -0.00012152885756222531, 0.02102120779454708, -0.01763308420777321, 0.013070245273411274, 0.03383177891373634, -0.007598548196256161, 0.0005591486697085202, -0.0064485645852983, -0.011172153986990452, 0.003143907058984041, 0.0027868556790053844, 0.008457944728434086, -0.026165220886468887, -0.030864078551530838, 0.003077442990615964, 0.0002907805028371513, 0.0018130791140720248, -0.009199869818985462, -0.009267879649996758, 0.020823361352086067, 0.04864554852247238, -0.0027250286657363176, 0.05153905600309372, 0.007505807559937239, 0.03229846805334091, 0.015827732160687447, -0.04221552982926369, 0.012315954081714153, -0.01997014693915844, -0.025299642235040665, 0.021194323897361755, 0.022999674081802368, 0.005780831910669804, 0.018622316420078278, -0.0035736053250730038, -0.01771964132785797, 0.01558042410761118, 0.035340361297130585, -0.018671778962016106, -0.0007133299368433654, 0.010850653052330017, -0.011796606704592705, 0.013082610443234444, -0.026882415637373924, -0.015827732160687447, -0.005969404708594084, -0.02311096340417862, 0.010733181610703468, -0.04033598676323891, -0.015469135716557503, -0.008513589389622211, -0.026239413768053055, -0.019401337951421738, 0.022888384759426117, -0.023951811715960503, 0.008018972352147102, 0.017509428784251213, 0.005876664072275162, 0.029973769560456276, 0.007456345949321985, 0.04238864779472351, -0.03605755418539047, -0.02700606919825077, -0.02297494374215603, 0.03261996805667877, -0.025645872578024864, -0.0013756525004282594, 0.02528727613389492, -0.042586494237184525, -0.03333716094493866, -0.008340473286807537, -0.0069617293775081635, 0.016173964366316795, 0.05475406348705292, -0.00810553040355444, -0.0007040558848530054, 0.029701730236411095, -0.013589592650532722, 0.00683807535097003, -0.04681546613574028, 0.01884489506483078, -0.013923458755016327, -0.014183131977915764, -0.007654192857444286, -0.022987307980656624, -0.023209886625409126, 0.0012141292681917548, 0.023370636627078056, -0.059205614030361176, 0.022863654419779778, -0.015296019613742828, 0.015951387584209442, -0.02104593813419342, 0.012785840779542923, -0.03699732571840286, 0.005715913604944944, 0.010856835171580315, -0.00349941267631948, 0.01701481267809868, -0.029429690912365913, 0.013243360444903374, -0.022826557978987694, -0.015642251819372177, 0.000366132240742445, -0.024928679689764977, -0.019388971850275993, 0.011660587042570114, -0.00973158236593008, -0.004198058973997831, 0.045455269515514374, 0.0015781362308189273, -0.01367615070194006, 0.014282056130468845, -0.011493653990328312, -0.0074192495085299015, 0.023630309849977493, 0.01575354114174843, -0.0009274061885662377, 0.003205734072253108, -0.029033998027443886, -0.00822918489575386, -0.01882016286253929, 0.02193624898791313, -0.00838993489742279, -0.018214257434010506, 0.013119706884026527, -0.008124078623950481, -0.033114586025476456, 6.12957519479096e-05, -0.028143687173724174, 0.02120668813586235, 0.002082027029246092, -0.01710136979818344, -0.0074316151440143585, -0.013305188156664371, -0.01413367036730051, 0.009663572534918785, 0.024928679689764977, 0.013379380106925964, -0.005004902370274067, 0.0036292497534304857, 0.022665807977318764, -0.01172859687358141, 0.015283654443919659, 0.005076003260910511, 0.00038120258250273764, -0.006071419455111027, -0.01935187727212906, -0.0013748797355219722, 0.03266942873597145, -0.007202854845672846, 0.023444829508662224, 0.0110608646646142, 0.018436836078763008, -0.018238989636301994, -0.014986884780228138, -0.0051285563968122005, -0.012130473740398884, -0.06276684999465942, 0.01383690070360899, -0.02641252987086773, 0.004952349234372377, 0.02086045779287815, 0.002330880844965577, 0.008872185833752155, -0.018189527094364166, -0.019079837948083878, 0.012649821117520332, -0.03487047553062439, 0.016099771484732628, 0.028143687173724174, -0.004559747409075499, 0.003292292123660445, -0.009688303805887699, -0.01591429114341736, -0.02410019561648369, -0.0012218577321618795, -0.009317341260612011, 0.017546525225043297, 0.01999487727880478, -0.02895980514585972, -0.001823898870497942, 0.04179510846734047, 0.02675876021385193, -0.011660587042570114, -0.004433001857250929, 0.0031717291567474604, 0.049832627177238464, -0.02332117408514023, -0.04063275828957558, 0.010869201272726059, -0.016408907249569893, -0.02139217033982277, 0.02730283886194229, -0.023420099169015884, 0.02668456733226776, 0.010343670845031738, 0.033436086028814316, -0.007746933028101921, -0.010992854833602905, 0.033164046704769135, -0.008427031338214874, -0.003641615156084299, 0.030641501769423485, -0.005660269409418106, -0.009125676937401295, 0.02434750460088253, 0.00477923359721899, 0.025893181562423706, -0.007901500910520554, -0.007827308028936386, -0.012124290689826012, -0.008575416170060635, 0.011252528987824917, 0.01396055519580841, 0.02157765068113804, -0.01811533421278, -0.028712496161460876, -0.018140066415071487, 0.030938271433115005, 0.0263630673289299, 0.053913213312625885, 0.0037992740981280804, 0.024594813585281372, 0.023815792053937912, 0.0004671808856073767, -0.031210310757160187, 0.004822512157261372, -0.0001936926564667374, -0.00044360931497067213, 0.019908320158720016, -0.011104144155979156, 0.011895530857145786, 0.019500261172652245, -0.015382577665150166, 0.008544502779841423, -0.05722714588046074, 0.03833279013633728, -0.020823361352086067, -0.004222789779305458, -0.033807046711444855, -0.022591615095734596, -0.013255726546049118, -0.01130199059844017, 0.012983687222003937, 0.005542797967791557, 0.011215432547032833, 0.016656216233968735, 0.004655579105019569, 0.016037944704294205, 0.0016816966235637665, -0.0060961502604186535] \ No newline at end of file diff --git a/cache/text-embedding-3-smalld8606e2a-f1e3-519e-a3fb-dfa06bee2780 b/cache/text-embedding-3-smalld8606e2a-f1e3-519e-a3fb-dfa06bee2780 new file mode 100644 index 0000000000000000000000000000000000000000..d5532dc014af5583e45f0f2645f61a7740aedc61 --- /dev/null +++ b/cache/text-embedding-3-smalld8606e2a-f1e3-519e-a3fb-dfa06bee2780 @@ -0,0 +1 @@ +[0.03760219365358353, 0.010040161199867725, 0.08487486094236374, 0.04126382991671562, 0.012264136224985123, 0.02207544445991516, 0.029222678393125534, 0.10703245550394058, 0.0021755637135356665, 0.00023105279251467437, -0.006624980363994837, -0.0569431446492672, -0.05530010536313057, -0.05403261259198189, 0.004644528031349182, 0.04797682911157608, 0.018014783039689064, -0.01498689129948616, 0.02642950601875782, -0.04546532407402992, 0.03776649758219719, -0.031217800453305244, 0.01355509739369154, 0.04656850919127464, -0.024129247292876244, 0.010104709304869175, -0.06670750677585602, 0.0033535663969814777, 0.00986998900771141, -0.027180612087249756, 0.052107907831668854, -0.027861300855875015, 0.008796143345534801, 0.046545036137104034, 0.0039785089902579784, 0.009823044762015343, -0.031194329261779785, 0.018272975459694862, 0.027368387207388878, 0.02241578884422779, -0.029668645933270454, -0.004219097550958395, 0.00360882468521595, 0.0018968334188684821, 0.015374179929494858, -0.00871399138122797, -0.005152110476046801, -0.022051973268389702, -0.0023193301167339087, 0.05684925615787506, 0.003438652493059635, 0.012721840292215347, 0.018155615776777267, -0.03325986862182617, -0.02884712629020214, -0.008297362364828587, 0.02417619153857231, 0.00408706720918417, -0.008702254854142666, 0.04905654489994049, 0.023730222135782242, -0.004981938283890486, -0.022533148527145386, 0.04034842178225517, -0.03729705512523651, 0.006525224540382624, -0.03347111493349075, 0.05548787862062454, -0.028588933870196342, 0.005941357929259539, 0.030114615336060524, -0.009512040764093399, -0.012757048942148685, 0.06018228456377983, -0.0029457397758960724, 0.010321825742721558, -0.029926838353276253, -0.0023398681078106165, -0.014846059493720531, 0.019223593175411224, 0.03283737227320671, -0.023342933505773544, -0.014165370725095272, -0.023636335507035255, 0.018038256093859673, -0.004541838075965643, -0.00404892535880208, -0.0060968599282205105, -3.045748144359095e-06, 0.034574300050735474, 0.0016078341286629438, 0.04572351649403572, 0.007857262156903744, 0.007299801334738731, -0.021922877058386803, 0.021922877058386803, 0.0014655349077656865, -0.011571710929274559, -0.04835238307714462, 0.045653097331523895, 0.07351440191268921, -0.01668861322104931, 0.007745769806206226, -0.021089619025588036, 0.04192104563117027, -0.02910531684756279, 0.05412650108337402, -0.03818899393081665, -0.010779529809951782, 0.03225056827068329, -0.08440542221069336, -0.048774879425764084, -0.0025071061681956053, 0.0700874850153923, -0.016125284135341644, -0.024598687887191772, -0.012557536363601685, 0.010503733530640602, -0.0034210484009236097, 0.02018594555556774, -0.0028547856491059065, 0.02929309383034706, -0.025913121178746223, 0.018519431352615356, 0.014529187232255936, -0.004961400292813778, -0.0062318239361047745, 0.03917481750249863, -0.021746836602687836, -0.05149763450026512, 0.005982433911412954, 0.023108214139938354, -0.0023648070637136698, 0.02556104026734829, 0.007469973526895046, -0.04025453329086304, -0.043869223445653915, 0.0216529481112957, -0.011348727159202099, -0.04091174900531769, 0.003221536288037896, -0.02734491601586342, 0.02957475744187832, -0.01511598750948906, 0.0016298390692099929, 0.011078798212110996, -0.004078265279531479, 0.023601125925779343, 0.03309556469321251, 0.009699816815555096, -0.030795304104685783, -0.025467153638601303, -0.06267032027244568, 0.019493522122502327, 0.013942386023700237, 0.06130894273519516, -0.016160493716597557, 0.05975978821516037, -0.007164837326854467, 0.002394147217273712, -0.03133516013622284, 0.02133607491850853, -0.042766038328409195, 0.00939468014985323, 0.020608441904187202, -0.08158877491950989, -0.02354244701564312, -0.031194329261779785, -0.0850156918168068, -0.011659731157124043, -0.024716047570109367, -0.010926229879260063, -0.07187135517597198, -0.013132601045072079, -0.021641211584210396, -0.002599527360871434, -0.0016225040890276432, -0.03837677091360092, -0.012698368169367313, -0.02823685295879841, 0.008813747204840183, -0.010932098142802715, 0.012076359242200851, -0.031851544976234436, -0.020667122676968575, -0.0031892622355371714, -0.028776708990335464, -0.00931839644908905, 0.006448940373957157, 0.018836304545402527, -0.01367245800793171, 0.08431152999401093, 0.02706325054168701, 0.017416246235370636, 0.018754152581095695, 0.039221763610839844, 0.012158512137830257, 0.01444703433662653, -0.02757963538169861, 0.03377625346183777, 0.016183964908123016, -0.02012726664543152, 0.040770918130874634, -0.004066529218107462, -0.023237310349941254, 0.010926229879260063, -0.016031397506594658, -0.010333561338484287, -0.04109952598810196, 0.015338972210884094, -0.022873492911458015, -0.0012051420053467155, 0.012557536363601685, 0.013918913900852203, -0.013825026340782642, -0.04623990133404732, -0.026992835104465485, -0.030983079224824905, 0.009911064989864826, -0.011741883121430874, 0.009377076290547848, -0.0034034443087875843, 0.0314994640648365, -0.0046063861809670925, -0.01674729399383068, 0.03842371329665184, -0.0141066899523139, -0.016183964908123016, -0.00926558393985033, -0.01027488149702549, 0.081354059278965, -0.055440936237573624, -0.022920437157154083, -0.009336000308394432, -0.012299343943595886, -0.0029589429032057524, 0.003588286694139242, 0.00369684468023479, -0.016676876693964005, -0.018272975459694862, -0.07299801707267761, 0.052342627197504044, -0.0025115073658525944, -0.01598445326089859, -0.020819690078496933, 0.031475991010665894, 0.04281298443675041, -0.015726260840892792, 0.02706325054168701, 0.00934186764061451, 0.02931656688451767, 0.0004980471567250788, -0.0282133799046278, -0.003262612270191312, 0.004154549445956945, -0.006090991664677858, 0.028964485973119736, 0.03403444588184357, 0.030278919264674187, -0.021512115374207497, 0.04443255439400673, 0.028025604784488678, -0.024129247292876244, -0.07778631150722504, 0.03532540425658226, 0.030959608033299446, -0.008813747204840183, 0.04403352737426758, -0.007399557624012232, -0.0071531012654304504, 0.024692576378583908, 0.018179086968302727, -0.030114615336060524, 0.0017677373252809048, -0.007845526561141014, -0.016277853399515152, 0.003139384090900421, -0.024481328204274178, -0.03222709894180298, 0.05844535678625107, 0.00105624133720994, -0.03171071410179138, 0.001827884349040687, -0.008690519258379936, 0.00939468014985323, 0.02750921994447708, -0.04990153759717941, 0.0024513602256774902, -0.003209800226613879, -0.006677792873233557, -0.013461209833621979, -0.01155997533351183, -0.0026141973212361336, -0.05755341798067093, -0.004474355839192867, -0.021030940115451813, 0.022603565827012062, -0.004092935472726822, -0.003972641192376614, 0.015162931755185127, 0.016148757189512253, 0.0224392618983984, -0.009899328462779522, -0.0069887968711555, 0.018836304545402527, 0.029222678393125534, 0.008526215329766273, -0.03131168708205223, 0.02286175824701786, -0.01968129724264145, 0.014810850843787193, -0.02385931834578514, 0.058304522186517715, -0.01698201335966587, -0.07919462770223618, 0.0021095487754791975, 0.049244318157434464, 0.01171841099858284, -0.028612405061721802, -0.04905654489994049, -0.03377625346183777, -0.010310089215636253, -0.015468068420886993, 0.0028122426010668278, 0.05708397924900055, -0.044127415865659714, 0.011172686703503132, 0.025443680584430695, 0.015338972210884094, -0.04635725915431976, -0.03044322319328785, 0.014118426479399204, 0.0024454921949654818, -0.02490382455289364, -0.05464288592338562, -0.03523151949048042, 0.0433058962225914, -0.0422496534883976, 0.0182377677410841, -0.07205913215875626, -0.046075597405433655, -0.012733576819300652, -0.006759944837540388, -0.02207544445991516, -0.028612405061721802, 0.0031335160601884127, -0.035395823419094086, -0.005909083876758814, 0.05952506884932518, 0.048962656408548355, -0.009740892797708511, -0.03605303913354874, 0.050324033945798874, 0.02375369518995285, 0.007792714051902294, 0.007434765808284283, -0.0076049380004405975, -0.008526215329766273, -0.00879027508199215, 0.013825026340782642, 0.03422221913933754, 0.012639688327908516, -0.006953589152544737, 0.044972408562898636, 0.004245503339916468, 0.033025145530700684, 0.0018542903708294034, 0.0035560126416385174, 0.014658283442258835, -0.011160950176417828, -0.0022005029022693634, -0.024293551221489906, -0.02729797177016735, 0.004934994503855705, -0.039878979325294495, -0.016465628519654274, 0.0047266799956560135, 0.02488035149872303, 0.02779088355600834, 0.006859700661152601, 0.033189449459314346, 0.015702787786722183, 0.00627289991825819, -0.013742873445153236, -0.007957017980515957, 0.05750647559762001, -0.03283737227320671, -0.06943026930093765, -0.03734400123357773, 0.018331656232476234, 0.016524309292435646, -0.009124752134084702, 0.026147842407226562, -0.023366406559944153, -0.0004522033268585801, -0.0005622284952551126, 0.008121322840452194, 0.012240664102137089, 0.056755371391773224, -0.011882715858519077, 0.01645389385521412, 0.0020582035649567842, -0.022087180987000465, -0.024387439712882042, -0.012299343943595886, 0.0077516380697488785, -0.013871969655156136, -0.015937509015202522, 0.009629400447010994, -0.010632829740643501, -0.03509068489074707, -0.07229385524988174, 0.022556621581315994, -0.0028445166535675526, -0.04107605293393135, -0.010556546039879322, -0.04328242316842079, -0.03173418343067169, 0.035419292747974396, 0.04886876791715622, 0.04004328325390816, -0.003057231893762946, -0.012240664102137089, -0.06323365122079849, 0.01766270212829113, 0.052342627197504044, 0.026758113875985146, 0.031382106244564056, 0.008802011609077454, -0.07543910294771194, -0.06609723716974258, -0.011172686703503132, 0.014388354495167732, -0.017416246235370636, -0.027462275698781013, 0.003136449959129095, 0.005360424984246492, -4.533952596830204e-05, 0.017334094271063805, -0.07205913215875626, -0.031851544976234436, -0.030255448073148727, 0.01789742335677147, -0.0017105242004618049, -0.003899291157722473, 0.020268097519874573, -0.0032156682573258877, 0.02375369518995285, -0.042578261345624924, -0.04692059010267258, -0.019176648929715157, -0.02029157057404518, 0.004914456512778997, -0.028330741450190544, -0.014247522689402103, -0.0012440176215022802, 0.018272975459694862, -0.034104861319065094, -0.007522785570472479, 0.034316107630729675, 0.02333119884133339, -0.0073056695982813835, 0.01442356314510107, 0.04858710244297981, 0.045817404985427856, -0.03638164699077606, 0.03556012734770775, 0.027650052681565285, 0.00027652987046167254, -0.0144352987408638, 0.010374637320637703, 0.04201493412256241, -0.028096020221710205, 0.03708580881357193, 0.000328791793435812, 0.0028122426010668278, -0.005383897107094526, -0.04375186562538147, -0.035630542784929276, -0.033846668899059296, -0.0045799799263477325, -0.00973502453416586, -0.05778813734650612, 0.027650052681565285, -0.06210699304938316, 0.010979042388498783, 0.018308183178305626, -0.005691967438906431, -0.0288705974817276, -0.01755707897245884, 0.05238957330584526, 0.0028459837194532156, -0.023425085470080376, -0.011049458757042885, -0.00016998883802443743, -0.019693033769726753, -0.037461359053850174, -0.019493522122502327, -0.043634504079818726, 0.025208961218595505, 0.0847809761762619, 0.009113015606999397, -0.00843819510191679, 0.010022557340562344, 0.04044230654835701, 0.016759030520915985, -0.009036731906235218, 0.0034034443087875843, 0.005072892643511295, 0.0003364935691934079, 0.032978203147649765, 0.022826548665761948, 0.004045991227030754, 0.026499921455979347, 0.012170247733592987, 0.04241395741701126, 0.01973997801542282, 0.01857811212539673, 0.0257253460586071, -0.010896890424191952, -0.03002072684466839, -0.007569729816168547, 0.025255905464291573, 0.04170979931950569, 0.008009830489754677, 0.02509159967303276, -0.029926838353276253, -0.04990153759717941, -0.04217923805117607, -0.007716429885476828, 0.02957475744187832, 0.02417619153857231, -0.03159335255622864, 0.027955187484622, -0.051403746008872986, -0.002094878815114498, -0.00940641574561596, 0.020397193729877472, -0.0020626047626137733, 0.013191280886530876, 0.012299343943595886, -0.02666422724723816, -0.029457397758960724, -0.0028665217105299234, -0.02362459897994995, 0.017909159883856773, -0.020150737836956978, -0.02401188760995865, -0.02750921994447708, 0.02664075419306755, 0.044127415865659714, -0.03980856388807297, -0.004920324310660362, 0.0007184642017818987, 0.0008266555960290134, -0.007839658297598362, 0.015432859770953655, 0.02296738140285015, -0.020960522815585136, 0.046521563082933426, -1.2836266250815243e-05, -0.02642950601875782, 0.008948711678385735, -0.017709646373987198, 0.004670933820307255, 0.021723363548517227, 0.007188309449702501, 0.007340877316892147, -0.06755250692367554, 0.0027652985882014036, -0.010990777984261513, -0.0010870484402403235, -0.03241487219929695, -0.023084741085767746, 0.03581831976771355, 0.023213837295770645, -0.04839932546019554, -0.013531625270843506, 0.02929309383034706, -0.01934095285832882, 7.229569018818438e-05, -0.027603108435869217, -0.04084133356809616, -0.022169332951307297, -0.02443438395857811, 0.003585352562367916, -0.005157978739589453, 0.022615300491452217, 0.012803992256522179, 0.030724888667464256, -0.005433775018900633, -0.012944824993610382, 0.007041608914732933, 0.02661728300154209, 0.0064078643918037415, 0.010885153897106647, -0.0359591506421566, 0.01986907422542572, -0.0020596706308424473, 0.007593201939016581, 0.008215210400521755, 0.032297514379024506, 0.00660150870680809, -0.01653604581952095, -0.03398749977350235, -0.013613777235150337, 0.01070911344140768, -0.009705684147775173, 0.012158512137830257, -0.006859700661152601, -0.018096935003995895, -0.0012234796304255724, 0.044291719794273376, 0.0032479423098266125, -0.018589848652482033, 0.02955128625035286, -0.027673523873090744, 0.014611339196562767, 0.03487943857908249, 0.025255905464291573, -0.008391250856220722, -0.02955128625035286, 0.028776708990335464, 0.02262703701853752, 0.027931716293096542, 0.03966773301362991, -0.007205913309007883, -0.026171313598752022, 0.010855814442038536, 0.013226489536464214, -0.0014200578443706036, -0.01734583079814911, 0.015714524313807487, -0.02729797177016735, 0.002917866688221693, 0.06126200035214424, 0.010380505584180355, -0.025044657289981842, -0.015491539612412453, -0.05018319934606552, -0.019481785595417023, 0.004421543795615435, 0.00503181666135788, -0.04281298443675041, 0.03203932195901871, -0.0008134525269269943, 0.026992835104465485, -0.007880734279751778, -0.0075873336754739285, -0.0062318239361047745, -0.015761468559503555, -0.037461359053850174, 0.02908184565603733, 0.03640512004494667, 0.03218015283346176, -0.02711019478738308, 0.017017222940921783, 0.01006363332271576, 0.031241271644830704, 0.04560615494847298, -0.037179697304964066, 0.011818167753517628, 0.01711110956966877, 0.0077399020083248615, 0.0022811880335211754, 0.024152718484401703, -0.01997469738125801, -0.021371284499764442, 0.025936594232916832, 0.023213837295770645, -0.08473403006792068, 0.025701873004436493, 0.05398567020893097, 0.0019320414867252111, 0.02120697870850563, -0.007323273457586765, -0.0007628409657627344, -0.06947720795869827, 0.004538903944194317, 0.02753269113600254, 0.008848955854773521, 0.0038435449823737144, -0.03971467539668083, -0.014916474930942059, 0.010873418301343918, -0.004494893830269575, 0.04905654489994049, -0.0027374255005270243, 0.01532723568379879, 0.006401996128261089, -0.006536960601806641, -0.007112025283277035, 0.034973327070474625, -0.023812374100089073, -0.021793780848383904, 0.00034584570676088333, 0.0351611003279686, 0.049197375774383545, -0.043399784713983536, -0.0028987957630306482, 0.03891662508249283, 0.021160036325454712, -0.039832036942243576, -0.010580018162727356, -0.01245191227644682, -0.009699816815555096, 0.02445785515010357, 0.005034750327467918, 0.02800213173031807, -0.045676570385694504, -0.0011141879949718714, 0.007534521631896496, 0.003010287880897522, 0.006847965065389872, -0.0045653097331523895, 0.009928668849170208, -0.008350174874067307, -0.026312146335840225, 0.021688155829906464, -0.018061727285385132, 0.01776832714676857, -0.022850021719932556, -0.02033851481974125, -0.04349367320537567, 0.0068186246789991856, 0.032062795013189316, 0.01819082349538803, 0.05637981742620468, 0.03929217904806137, -0.007945282384753227, 0.0064078643918037415, 0.009242111817002296, -0.014130162075161934, -0.03868190571665764, 0.023155158385634422, 0.008191738277673721, -0.017287150025367737, -0.023507239297032356, -0.02184072509407997, 0.009647004306316376, 0.017568815499544144, -0.02383584715425968, 0.006419600453227758, -0.041193414479494095, 0.001506611006334424, -0.004914456512778997, 0.006067520007491112, 0.02645297907292843, -0.012181983329355717, 0.021617740392684937, -0.024363966658711433, 0.00739368936046958, 0.004568243864923716, 0.0012938956497237086, -0.016911597922444344, 0.024129247292876244, -0.02973906323313713, -0.027650052681565285, 0.020831426605582237, -0.058727018535137177, 0.009558984078466892, 0.0017222602618858218, 0.0033653024584054947, -0.02774393931031227, 0.0007390021928586066, 0.00978783704340458, 0.004148681182414293, 0.002894394798204303, -0.0085966307669878, -0.0038523469120264053, -0.000617241021245718, 0.005290009081363678, 0.0046034520491957664, -0.021711628884077072, 0.039878979325294495, -0.022908702492713928, -0.005712505429983139, -0.00911888387054205, 0.00470320787280798, -0.003344764234498143, 0.005835733376443386, -0.0025555172469466925, -0.02600700967013836, -0.010192729532718658, -0.013848497532308102, -0.036733727902173996, 0.008966315537691116, -0.040935222059488297, -0.010756057687103748, 0.0019481785129755735, 0.006202484015375376, 0.04133424535393715, -0.01442356314510107, 0.017263678833842278, 0.022192804142832756, 0.032766953110694885, 0.005196120589971542, -0.02422313578426838, 0.008144794963300228, 0.012510592117905617, 0.01978692226111889, 0.005524729378521442, 0.04682670161128044, 0.01531550008803606, 0.010280749760568142, 0.042977288365364075, -0.016935069113969803, 0.0010738454293459654, 0.02222801372408867, -0.0011068528983741999, -0.014400091022253036, 0.052999842911958694, -0.018754152581095695, 0.01532723568379879, -0.019505256786942482, -0.006190747953951359, 0.0291287899017334, -0.0018440213752910495, -0.011542370542883873, 0.012956560589373112, 0.07004053890705109, 0.0014589333441108465, -0.023554181680083275, 0.008402986451983452, -0.01755707897245884, 0.021195244044065475, -0.045911289751529694, 0.05666148290038109, 0.04175674170255661, 4.332240132498555e-05, -0.003817138960584998, 0.015479804016649723, -0.02012726664543152, 0.011025986634194851, 0.015421124175190926, 0.009688080288469791, 0.013531625270843506, -0.03182807192206383, 0.03823593631386757, 0.0033653024584054947, 0.01301524043083191, -0.008802011609077454, 0.013367321342229843, 0.010392241179943085, 0.0015594230499118567, 0.0362173430621624, -0.005240130703896284, 0.049244318157434464, 0.014693491160869598, -0.01729888655245304, -0.031475991010665894, -0.06210699304938316, 0.00043863357859663665, -0.023108214139938354, -0.030748359858989716, 0.023577654734253883, 0.030983079224824905, -0.024504799395799637, 0.006536960601806641, 0.005888545420020819, -0.005504190921783447, 0.006149671971797943, 0.013390793465077877, -0.028354212641716003, 0.0045917159877717495, -0.05994756519794464, 0.024340495467185974, 0.02668769843876362, 0.008103718049824238, -0.005222526844590902, 0.0005002476391382515, 0.011213762685656548, 0.01566758006811142, -0.03394055739045143, 0.04525407403707504, 0.001506611006334424, -0.0385880172252655, 0.020056849345564842, -0.0018322854302823544, 0.02002164162695408, 0.03459777310490608, -0.0221810694783926, -0.006173144094645977, -0.03466818854212761, -0.00335650029592216, -0.008485139347612858, -0.04795335978269577, -0.008250419050455093, -0.03304861858487129, 0.014036274515092373, 0.008549687452614307, 0.03602956607937813, -0.008854823186993599, -0.03044322319328785, -0.005779987666755915, -0.0006066052592359483, -0.0357009582221508, 0.028025604784488678, 0.006343316286802292, -0.02645297907292843, -0.0017061232356354594, -0.019117968156933784, -0.02351897396147251, 0.006795153021812439, -0.026758113875985146, 0.03293125703930855, -0.010984910652041435, -0.006642584688961506, 0.021171770989894867, 0.032743483781814575, 0.010351165197789669, 0.024058831855654716, 0.015831883996725082, -0.004556507803499699, -0.005196120589971542, -0.007135497406125069, -0.038541074842214584, 0.004383401479572058, -0.0036352307070046663, -0.013238225132226944, -0.007029873318970203, 0.027837827801704407, -0.038071632385253906, -0.003242074279114604, 0.003262612270191312, 0.027180612087249756, -0.024340495467185974, 0.029433926567435265, 0.018437279388308525, -0.02556104026734829, 0.04347020015120506, 0.0023882791865617037, 0.0036117585841566324, 0.015338972210884094, -0.02621825784444809, -0.026805058121681213, 0.018366863951086998, 0.011114006862044334, -0.0007562394603155553, -0.016360005363821983, -0.0030513638630509377, 0.0060968599282205105, -0.03917481750249863, -0.016418686136603355, -0.007370217703282833, -0.017568815499544144, -0.002779968548566103, 0.011935527436435223, 0.009289056062698364, -0.016230909153819084, 0.057224810123443604, -0.002181431744247675, 0.0148930037394166, -0.011419142596423626, -0.03947995603084564, 0.04135771840810776, 0.04102911055088043, 0.04152202233672142, 0.03931565210223198, -0.013379056937992573, -0.0006597841274924576, -0.030466696247458458, 0.03002072684466839, -0.02375369518995285, -0.0036058907862752676, -0.011020118370652199, -0.05159152299165726, 0.005615683272480965, -0.03706233575940132, -0.006636716425418854, 0.02076101116836071, 0.00014321606431622058, 0.025701873004436493, 0.009600060060620308, -0.015045571140944958, 0.016207436099648476, -0.02840115688741207, 0.04001981019973755, 0.03391708433628082, 0.0031980641651898623, 0.026077425107359886, 0.03178112953901291, 0.043822281062603, 0.007516917772591114, 0.006619112566113472, 0.025490624830126762, 0.02642950601875782, 0.03063100017607212, 0.028096020221710205, -0.04971376061439514, -0.0020890107844024897, 0.0018865644233301282, -0.011419142596423626, -0.002191700739786029, -0.022744396701455116, -0.002721288474276662, -0.016547782346606255, -0.0666605681180954, -0.012000075541436672, 0.002160893753170967, 0.001794143347069621, -0.018859775736927986, -0.025021184235811234, 0.007387821562588215, -0.03304861858487129, -0.006495884619653225, 0.034081388264894485, 0.015127724036574364, 0.021030940115451813, -0.023295989260077477, 0.009165828116238117, 0.017545342445373535, -0.006331580225378275, 0.02868282049894333, -0.035442765802145004, 0.005557003431022167, 0.01333211362361908, 0.022368844598531723, -0.009852385148406029, 0.01695854216814041, 0.006484148558229208, -0.016829445958137512, 0.031640298664569855, 0.017052430659532547, -0.01553848385810852, 0.0002972512738779187, 0.014576130546629429, -0.00765775004401803, 0.03994939476251602, -0.0019936556927859783, 0.020045114681124687, -0.006008839700371027, -0.0023398681078106165, -0.02385931834578514, -0.00042249655234627426, -0.010427449829876423, 0.042061880230903625, -0.01813214272260666, 0.0181086715310812, 0.022239748388528824, -0.013085656799376011, -0.019458312541246414, -0.0016386411152780056, -0.04811766371130943, 0.0005629619699902833, -0.021136563271284103, -0.0207375381141901, -0.01022206898778677, 0.01532723568379879, -0.030771831050515175, -0.018988871946930885, -0.007299801334738731, 0.0014860728988423944, 0.03063100017607212, -0.03600609302520752, 0.00988172460347414, -0.003300754353404045, -0.003963839262723923, 0.003423982532694936, -0.0026053953915834427, -0.010896890424191952, -0.016524309292435646, 0.026053953915834427, 0.022145859897136688, -0.011043590493500233, 0.010685642249882221, 0.013390793465077877, 0.007651881780475378, 0.014048010110855103, 0.0003084371564909816, 0.01095557026565075, 0.015245083719491959, 0.02797866053879261, -0.010509601794183254, 0.011923791840672493, 0.002334000077098608, 0.012193719856441021, 0.04178021475672722, -0.005442576948553324, 0.022486204281449318, -0.007123761344701052, 0.011647994630038738, -0.032743483781814575, -0.026969362050294876, 0.014400091022253036, -0.0257253460586071, 0.0025247102603316307, 0.0033388964366167784, 0.040324948728084564, -0.017498398199677467, 0.0056215510703623295, -0.00047310811351053417, 0.0018718944629654288, 0.010574149899184704, -0.019622618332505226, 0.022943910211324692, 0.013437737710773945, -0.0171932615339756, 0.014963419176638126, -0.004368731752038002, 0.0023046599235385656, -0.0017721382901072502, -0.04579393193125725, -0.014306202530860901, -0.05506538227200508, 0.009535511955618858, -0.012850936502218246, -0.005028882529586554, 0.0014501314144581556, -0.025467153638601303, 0.003999046981334686, -0.018777623772621155, -0.014881267212331295, -0.01698201335966587, -0.008244550786912441, 0.058069802820682526, -0.029152261093258858, 0.009300791658461094, 0.007340877316892147, 0.0014376618200913072, 0.01734583079814911, -0.04663892462849617, 0.017627494409680367, 0.02042066678404808, -0.010081237182021141, -0.00469147227704525, -0.0023780101910233498, -0.017650967463850975, -0.00988172460347414, -0.026241730898618698, -0.027274498715996742, 0.017838742583990097, 0.026053953915834427, 0.021582532674074173, -0.032978203147649765, -0.00333302840590477, -0.029903367161750793, -0.01001082081347704, -0.021688155829906464, -0.02123045176267624, -0.006853832863271236, 0.04706142097711563, 0.026053953915834427, -0.012264136224985123, 0.009242111817002296, -0.011237234808504581, -0.017932631075382233, 0.04947904124855995, -0.00871399138122797, 0.018061727285385132, 0.03459777310490608, -0.00201125955209136, -0.03685108944773674, -0.014834322966635227, -0.02396494336426258, 0.01802651956677437, 0.012921352870762348, -0.04314159229397774, 0.03330681100487709, -0.007059213239699602, -0.00024443920119665563, 0.016043132171034813, -0.02150038070976734, -0.012099831365048885, 0.009652872569859028, 0.030560582876205444, -0.02534979209303856, -0.03422221913933754, 0.0009484167094342411, -0.028142964467406273, -0.012721840292215347, -0.015256819315254688, 0.003600022755563259, -0.018918456509709358, -0.0076049380004405975, 0.007857262156903744, 0.03931565210223198, 0.01265142485499382, 0.016571253538131714, -0.005119836423546076, 0.02973906323313713, 0.018953664228320122, 0.012064623646438122, -0.009682212956249714, 0.0038347430527210236, 0.005442576948553324, -0.023131685331463814, -0.029175734147429466, 0.024786464869976044, 0.010926229879260063, -0.020702330395579338, -0.032978203147649765, -0.01367245800793171, -0.03980856388807297, -0.011542370542883873, 0.012287608347833157, -0.002448426093906164, -0.03039627894759178, -0.01388370618224144, -0.01532723568379879, -0.0036469667684286833, -0.0147639075294137, 0.0011061194818466902, 0.012463647872209549, -0.01531550008803606, -0.03401097282767296, -0.013073921203613281, 0.030044198036193848, 0.016524309292435646, -0.0022269089240580797, -0.007387821562588215, -0.001136926468461752, -0.0037848649080842733, -0.008039170876145363, 0.00864944327622652, -0.033893611282110214, -0.008402986451983452, 0.015303763560950756, -0.005779987666755915, 0.005468983203172684, -0.013954121619462967, -0.008003962226212025, -0.0024880352430045605, 0.005290009081363678, -0.008508611470460892, -0.024023622274398804, -0.05281206965446472, 0.007704693824052811, 0.017967838793992996, 0.029926838353276253, 0.032297514379024506, 0.004330589435994625, -0.008878295309841633, -0.02666422724723816, -0.038541074842214584, -0.0011361929355189204, 0.019035816192626953, -0.01840207166969776, 0.009470963850617409, 0.006008839700371027, 0.05361011624336243, 0.01923532970249653, -0.010110576637089252, -0.04445602744817734, -0.0042983153834939, -0.007112025283277035, -0.01853116787970066, 0.009887592867016792, -0.04769516736268997, -0.016477365046739578, 0.0284715723246336, 0.010849946178495884, -0.0024264210369437933, -0.011489558964967728, -0.03530193492770195, 0.016031397506594658, -0.016547782346606255, -0.03663983941078186, -0.005477785132825375, -0.004882182460278273, -0.026711171492934227, -0.01510425191372633, 0.018765889108181, 0.0056362212635576725, 0.001160398474894464, -0.026711171492934227, -0.004412741865962744, -0.014587867073714733, 0.003990245051681995, 0.0016738491831347346, -0.016078341752290726, -0.017052430659532547, 0.01117855403572321, 0.020009905099868774, 0.01866026408970356, 0.005897347815334797, 0.0028254457283765078, 0.023824110627174377, 0.027931716293096542, -0.005427907221019268, 0.0023692080285400152, -0.05755341798067093, 0.02042066678404808, 0.0045946501195430756, 0.003840611083433032, 0.024622159078717232, -0.0322740413248539, -0.004207361489534378, 0.0012154111173003912, 0.01178295910358429, 0.031663767993450165, 0.026147842407226562, -0.03370583429932594, 0.006853832863271236, 0.03581831976771355, -0.015092515386641026, 0.02997378259897232, -0.013449473306536674, -0.01679423823952675, 0.0023648070637136698, 0.0055012572556734085, 0.04001981019973755, -0.02212238870561123, 0.036522477865219116, 0.029856422916054726, -0.005278273019939661, 0.008678783662617207, 0.012569271959364414, 0.015338972210884094, -0.0022811880335211754, -0.02668769843876362, -0.018179086968302727, -0.013930650427937508, -0.0007613739580847323, 0.011976603418588638, 0.0071178930811584, 0.013144336640834808, -0.010574149899184704, -0.008003962226212025, -0.03579484671354294, 0.0035824186634272337, -0.002331065945327282, -0.018143879249691963, -0.021664684638381004, 0.00803330261260271, -0.009512040764093399, -0.021817252039909363, 0.009124752134084702, -0.0046063861809670925, -0.007246989291161299, -0.006313976366072893, -0.0018762954277917743, 0.009283187799155712, 0.0010672438656911254, -0.006771680898964405, 0.004697340074926615, 0.026805058121681213, 0.010515470057725906, -0.033447641879320145, -0.006126199848949909, -0.014857795089483261, 0.007194177247583866, 0.028776708990335464, -0.011008381843566895, -0.02089010737836361, -0.014505715109407902, -0.020514555275440216, -0.0022782539017498493, -0.02301432564854622, 0.017122846096754074, 0.012358023785054684, 0.02031504176557064, -0.0028357147239148617, -0.012698368169367313, -0.012428440153598785, -0.008784407749772072, 0.039832036942243576, 0.03513763099908829, -0.021699892356991768, -0.0022694519720971584, 0.013390793465077877, 0.0030425619333982468, 0.008350174874067307, 0.006190747953951359, 0.006284635979682207, 0.017381038516759872, 0.0027051514480262995, -0.02955128625035286, -0.002895861864089966, -0.03403444588184357, -0.029034901410341263, 0.013531625270843506, -0.023084741085767746, -0.006912513170391321, 0.02033851481974125, -0.010269013233482838, -0.04361103102564812, 0.04196799173951149, 0.012287608347833157, -0.024762991815805435, 0.0003625328536145389, -0.02687547542154789, 0.006419600453227758, -0.021136563271284103, 0.0259835384786129, -0.019434841349720955, -0.024129247292876244, -0.03154641017317772, -0.02488035149872303, 0.0031305821612477303, 0.02600700967013836, 0.020056849345564842, 0.0110905347391963, 0.03065447136759758, -0.01497515570372343, -0.03969120234251022, 0.04037189111113548, -0.019669560715556145, 0.005457247141748667, 0.012404968030750751, 0.001918838475830853, -0.018777623772621155, -0.0015491540543735027, 0.003922763280570507, 0.006801020819693804, -0.012088095769286156, -0.012358023785054684, 0.0018894984386861324, -0.02036198601126671, 0.03349458798766136, -0.03220362588763237, -0.03239140287041664, 0.006894908845424652, -0.038048163056373596, 0.012088095769286156, 0.011554107069969177, -0.03685108944773674, -0.018484223634004593, 0.007487577851861715, 0.012569271959364414, -0.022556621581315994, -0.01768617518246174, 0.03290778771042824, -0.012017679400742054, 0.02863587625324726, -0.015127724036574364, 0.018941927701234818, 0.006583904381841421, 0.0018410873599350452, -0.0068186246789991856, -0.01266316045075655, 0.011137478053569794, 0.02188766747713089, 0.0016826512292027473, 0.009781968779861927, 0.028260324150323868, -0.014024537988007069, 0.031640298664569855, 0.004650395829230547, -0.016547782346606255, 0.0071296291425824165, -0.013367321342229843, -0.01761575974524021, -0.00959419272840023, -0.01409495435655117, -0.01666514202952385, 0.000494379666633904, 0.017474927008152008, -0.030325863510370255, -0.0209957305341959, -0.0073174056597054005, 0.024786464869976044, 0.05281206965446472, -0.009564852342009544, 0.0362173430621624, 0.049244318157434464, -0.007651881780475378, -0.010885153897106647, 0.012475384399294853, 0.001431060372851789, 0.018824568018317223, -0.03128821775317192, 0.012710104696452618, 0.0008200540905818343, -0.014693491160869598, 0.030349334701895714, -0.0008948711329139769, 0.020221153274178505, -0.0007775109843350947, 0.01908276043832302, -0.026382561773061752, 0.08201127499341965, 0.0019232394406571984, -0.03579484671354294, -0.00197458453476429, 0.003482662606984377, 0.016970278695225716, 0.02023288980126381, 0.026288673281669617, 0.02317862957715988, -0.00018768454901874065, -0.007229385431855917, 0.025936594232916832, -0.022920437157154083, 0.03605303913354874, 0.02084316313266754, -0.013801554217934608, 0.02008032239973545, 5.8634232118492946e-05, 0.005985367577522993, 1.2836266250815243e-05, 0.011196158826351166, -0.00360882468521595, 0.036099981516599655, 0.016277853399515152, -0.0656277984380722, 0.00843819510191679, 0.0009682212257757783, 0.011383934877812862, 0.014693491160869598, -0.01574973203241825, -0.020948786288499832, -0.03257917985320091, 0.03861149027943611, -0.005586343351751566, 0.041874103248119354, -0.010292485356330872, 2.2348856987264298e-07, 0.0027374255005270243, 0.004339391831308603, -0.0085966307669878, 0.004134011454880238, 0.03776649758219719, 0.006619112566113472, 0.035865262150764465, -0.0017736053559929132, -0.014001065865159035, -0.03997286781668663, 0.028096020221710205, 0.04731961339712143, -0.052718181163072586, -0.008784407749772072, -0.030302390456199646, -0.035419292747974396, 0.01874241605401039, 0.0017031892202794552, -0.018730679526925087, 0.0001453248696634546, 0.014939947053790092, 0.022920437157154083, 0.014059746637940407, -0.016336532309651375, 0.03668678179383278, -0.005424973089247942, -0.021324340254068375, 0.006853832863271236] \ No newline at end of file diff --git a/cache/text-embedding-3-smalld9347aa7-bdf6-5051-af1d-b6dc336ddf3c b/cache/text-embedding-3-smalld9347aa7-bdf6-5051-af1d-b6dc336ddf3c new file mode 100644 index 0000000000000000000000000000000000000000..4e24dfbfa218999180185cee781d5b2c5b2e9d49 --- /dev/null +++ b/cache/text-embedding-3-smalld9347aa7-bdf6-5051-af1d-b6dc336ddf3c @@ -0,0 +1 @@ +[0.002171196974813938, -0.015058603137731552, 0.11231829226016998, 0.029620222747325897, 0.010759694501757622, 0.021544238552451134, 0.024550989270210266, 0.12255614995956421, 0.02912323921918869, -0.00990861002355814, 0.03712467476725578, -0.050071097910404205, -0.08399022370576859, 0.02494857646524906, 0.07280809432268143, 0.002124604769051075, -0.007678396534174681, -0.002503554802387953, -0.036577992141246796, -0.01766776666045189, 0.045026712119579315, 0.023171860724687576, -0.012219583615660667, 0.06182475760579109, 0.04271573945879936, 0.007995223626494408, -0.003960337955504656, -0.049872301518917084, 0.0036310863215476274, -0.036627691239118576, 0.06162596493959427, -0.03329790011048317, 0.029968110844492912, 0.05036928877234459, -0.0027737896889448166, 0.04316302388906479, -0.05655673146247864, 0.026389827951788902, -0.003752226009964943, 0.025333737954497337, -0.051338404417037964, -0.018636884167790413, 0.010200588032603264, 0.03702527657151222, 0.02347004972398281, 0.017941107973456383, 0.03461490571498871, -0.01318249013274908, -0.023035189136862755, 0.022252440452575684, -0.026514073833823204, 0.010349683463573456, 0.025818297639489174, -0.05243176966905594, -0.020239656791090965, 0.003404337679967284, 0.010393169708549976, -0.016760772094130516, -0.0204757247120142, 0.023892486467957497, 0.03660283982753754, -0.023147011175751686, -0.011790935881435871, 0.038044095039367676, -0.041522979736328125, 0.001936682965606451, 0.014760412275791168, 0.050120797008275986, -0.014275853522121906, 0.024936150759458542, -0.018276572227478027, -0.00015530736709479243, 0.012505349703133106, 0.025718901306390762, 0.05377362295985222, -0.016052570194005966, -0.035161588340997696, 0.019680550321936607, 0.025197068229317665, 0.024265224114060402, 0.014039786532521248, -0.017245329916477203, 0.03195604309439659, -0.003121678251773119, 0.04525035619735718, -0.005976227577775717, -0.045175809413194656, 0.055016081780195236, -0.008293413557112217, 0.035186439752578735, 0.006171914748847485, 0.03605616092681885, -0.030241452157497406, 0.019568728283047676, 0.01640045829117298, 0.004084583837538958, -0.008753123693168163, 0.03044024482369423, 0.025197068229317665, 0.04805831238627434, 0.038715023547410965, -0.0009108777157962322, 0.016847744584083557, -0.012822176329791546, 0.0037491200491786003, 0.0013503975933417678, 0.002354459837079048, -0.007610061205923557, 0.003618661779910326, 0.019568728283047676, -0.02271215058863163, -0.008858732879161835, -0.055562764406204224, 0.05978712439537048, -0.029421428218483925, -0.030688736587762833, -0.037298619747161865, -0.03471430391073227, 0.016798045486211777, 0.01354280300438404, 0.011430623009800911, -0.02417825162410736, -0.013281886465847492, -0.0023482474498450756, -0.03056449070572853, -0.003755332203581929, -0.05238207057118416, -0.0017378894845023751, -0.0068770102225244045, -0.08225078135728836, 0.01425100490450859, 0.025147369131445885, -0.058445271104574203, -0.019394785165786743, 0.040802352130413055, -0.012555047869682312, -0.011455471627414227, 0.03881441801786423, -0.02135786972939968, -0.006411088164895773, -0.00029450160218402743, -0.010480141267180443, 0.057202812284231186, 0.025147369131445885, -0.0437842532992363, 0.024675235152244568, -0.0036310863215476274, 0.0482819564640522, -0.003357745474204421, -0.02269972488284111, -0.04192056506872177, -0.03044024482369423, 0.003320471616461873, -0.009337078779935837, 0.025743750855326653, 0.012530199252068996, -0.006628518458455801, 0.04040476679801941, -0.03523613512516022, -0.052779655903577805, -0.03324820101261139, 0.023681268095970154, -0.027508040890097618, 0.0275577399879694, 0.021034831181168556, -0.008436296135187149, -0.0298687145113945, -0.031036624684929848, -0.08791639655828476, -0.040056876838207245, -0.0241409782320261, -0.021544238552451134, 0.002062481828033924, 0.004690282512456179, -0.0369507297873497, -0.00291046011261642, -0.04604553058743477, -0.04885348677635193, -0.043486062437295914, -0.018748706206679344, 0.0011764533119276166, 0.02052542194724083, -0.014511920511722565, -0.0038019244093447924, -0.041547827422618866, -0.008591603487730026, -0.0367022380232811, 0.007877189666032791, 0.0062122950330376625, 0.022401535883545876, 0.009399201720952988, 0.003879578085616231, 0.02477463148534298, -0.000990084488876164, 0.01172881294041872, 0.027383795008063316, -0.007175200618803501, 0.008510843850672245, 0.019444482401013374, -0.028750501573085785, -0.0099148228764534, -0.015418916009366512, 0.022563055157661438, 0.018686583265662193, -0.023122161626815796, 0.0024010520428419113, -0.012194734998047352, 0.020898159593343735, 0.008218865841627121, 0.018699007108807564, 0.005917211063206196, 0.026514073833823204, -0.044306088238954544, 0.0397835373878479, -0.0014389228308573365, 0.011393348686397076, -0.0039044274017214775, -0.016027720645070076, 0.020388752222061157, -0.026514073833823204, 0.020016014575958252, -0.002578102285042405, 0.028104422613978386, -1.6804742699605413e-05, 0.0018015655223280191, 0.012958846986293793, -0.02133302018046379, -0.016089843586087227, 0.015394066460430622, -0.00846114568412304, 0.008088408038020134, -0.028228668496012688, -0.014921932481229305, 0.01093363855034113, -0.0029151192866265774, -0.006752764340490103, -0.030837832018733025, 0.03829258680343628, -0.047213442623615265, -0.06828554719686508, -0.035136740654706955, 0.0171210840344429, -0.017965957522392273, 0.013890691101551056, -0.04308847710490227, 0.028005026280879974, 0.02120877429842949, -0.02554495632648468, 0.005044383462518454, 0.009597995318472385, -0.0011088945902884007, 0.021830003708600998, -0.03690103068947792, 0.002343588275834918, 0.004264740273356438, -0.0023202921729534864, 0.04609522968530655, 0.03483854979276657, 0.013145215809345245, -0.028203818947076797, 0.025023123249411583, 0.00856675487011671, 0.03739801421761513, -0.022997915744781494, -0.02048814855515957, 0.03635434806346893, 0.014014936983585358, 0.0466170608997345, -0.00423057284206152, 0.0021416887175291777, -0.020910585299134254, 0.0054575009271502495, 0.040752653032541275, -0.0042181480675935745, -0.02837776392698288, -0.0018807722954079509, 0.0075603630393743515, -0.015220122411847115, -0.07718155533075333, 0.06122837960720062, -0.009504810906946659, -0.04626917093992233, 0.00818159244954586, -0.014487071894109249, 0.022140618413686752, -0.022128194570541382, -0.00654775882139802, 0.03404337540268898, 0.00038205613964237273, 0.051437802612781525, 0.017903834581375122, -0.03896351531147957, -0.018028080463409424, -0.0625702366232872, 0.01908417046070099, 0.007709458004683256, -0.025047972798347473, -0.03476400300860405, -0.015779228881001472, 0.018959924578666687, 0.022997915744781494, 0.06863343715667725, 0.03809379041194916, -0.051437802612781525, 0.028253518044948578, 0.03135966509580612, 0.023793090134859085, -0.019432058557868004, -0.010548477061092854, 0.014648591168224812, -0.02760743908584118, -0.03056449070572853, 0.04037991538643837, -0.0312851183116436, -0.030986927449703217, -0.01765534281730652, -0.0005412462051026523, 0.006802462972700596, 0.021643634885549545, -0.008380386047065258, -0.020289355888962746, -0.03044024482369423, -0.032875463366508484, 0.0009613526053726673, 0.030092356726527214, -0.040752653032541275, 0.03203059360384941, 0.052034180611371994, -0.0027349628508090973, 0.001764291781000793, -0.018251722678542137, -0.040156275033950806, 0.004482170566916466, -0.030639037489891052, -0.07757914066314697, -0.05089111998677254, -0.029346881434321404, 0.0022581692319363356, -0.02066209353506565, -0.06237144023180008, -0.03359609097242355, -0.017220482230186462, 0.005796071141958237, -0.002640225226059556, -0.004932562354952097, -0.004171555861830711, 0.001845051534473896, -0.005600383970886469, 0.02701105736196041, 0.0782749131321907, -0.010828030295670033, 0.0009333973284810781, 0.02120877429842949, -0.018152326345443726, 0.02209092117846012, 0.013020969927310944, 0.022587904706597328, -0.03409307450056076, 0.029322031885385513, 0.02899899333715439, 0.00145523005630821, -0.008001435548067093, -0.004634371958673, -0.01529467012733221, 0.043063629418611526, 0.021705757826566696, -0.024538565427064896, 0.00022752530639991164, 0.03883926942944527, 0.023147011175751686, 0.03188149631023407, -0.03339729830622673, -0.05735190585255623, -0.008703425526618958, -0.03921200707554817, -0.008343111723661423, -0.010418018326163292, 0.031483910977840424, 0.08891036361455917, -0.025321314111351967, 0.026663169264793396, -0.0298687145113945, -0.008597816340625286, 0.009051313623785973, 0.0026246944908052683, 0.02686196379363537, 0.018015654757618904, -0.045821886509656906, -0.01631348580121994, -0.012722779996693134, 0.008852520026266575, 0.037994395941495895, 0.01351795345544815, 0.003811242990195751, -0.008473570458590984, -0.01766776666045189, -0.02119635045528412, 0.042939383536577225, 0.03267667070031166, 0.046418268233537674, -0.0368264839053154, 0.0039013212081044912, -0.04733768850564957, -0.057252511382102966, 0.021842429414391518, 0.02773168496787548, -0.009200409054756165, -0.00459399214014411, -0.03891381621360779, -0.06913042068481445, 0.012306556105613708, -0.04758618026971817, 0.04703949764370918, 0.02276184782385826, 0.008871156722307205, -0.05153719708323479, 0.004488382954150438, -0.006485635880380869, -0.0021649848204106092, 0.03056449070572853, 0.006926708854734898, -0.03665253892540932, -0.017170783132314682, -0.022264864295721054, 0.03859077766537666, 0.0031542927026748657, -0.0006988832028582692, 0.025147369131445885, -0.017357151955366135, -0.06962740421295166, -0.020115410909056664, -0.001224598614498973, 0.02062481828033924, -0.026563772931694984, -0.03993263095617294, 0.024538565427064896, -0.016611676663160324, 0.011467896401882172, 0.037969544529914856, -0.008280988782644272, -0.02629043161869049, 0.008405234664678574, -0.0077280947007238865, 0.025694051757454872, 0.0009069950319826603, -0.010188163258135319, -0.012101550586521626, 0.016909867525100708, -0.03483854979276657, -0.017369575798511505, -0.03322335332632065, -0.011449259705841541, 0.019568728283047676, 0.01529467012733221, -0.02201637253165245, -0.028651103377342224, 0.03456521034240723, -0.03660283982753754, -0.04234300181269646, 0.010964700020849705, 0.009156922809779644, 0.02050057239830494, 0.01904689520597458, 0.007740519475191832, 0.04892803356051445, 0.011952455155551434, 0.00026576974778436124, 0.009597995318472385, -0.007752944249659777, 0.0031900133471935987, -0.024662811309099197, 0.008896006271243095, 0.007964162155985832, 0.0074858153238892555, 0.007187625393271446, 0.01243080198764801, -0.009045101702213287, -0.04134903475642204, -0.024563413113355637, 0.007665971759706736, 0.03759680688381195, -0.036503445357084274, 0.00777779333293438, 0.006116004195064306, 0.014772837050259113, 0.0021665378008037806, 0.03876471891999245, -0.03560887277126312, -0.015915898606181145, 0.017357151955366135, 0.024451592937111855, 0.014735563658177853, 0.03816834092140198, -0.01236867904663086, -0.010206800885498524, -0.0553639717400074, -0.018860526382923126, 0.015754379332065582, 0.02407885529100895, 0.015145574696362019, 0.04209451004862785, -0.005774328019469976, -0.002314079785719514, 0.012486713007092476, 0.05327663943171501, 0.01774231344461441, -0.04333696886897087, -0.013766445219516754, -0.020749064162373543, -0.018897801637649536, -0.03980838507413864, 0.03314880654215813, 0.020985132083296776, -0.015456189401447773, 0.005469925701618195, 0.028005026280879974, 0.0025905270595103502, 0.021631211042404175, 0.026588622480630875, -0.013890691101551056, 0.01626378856599331, -0.004280271008610725, 0.06992559134960175, 0.01976752281188965, -0.041423581540584564, -0.02187970280647278, -0.020960282534360886, 0.03898836299777031, -0.0032148626632988453, -0.028228668496012688, 0.038665324449539185, -0.04942501708865166, -0.00918798428028822, 0.024998275563120842, -0.03352154418826103, -0.017568370327353477, 0.0024507504422217607, 0.005392272025346756, -0.012921573594212532, 0.025793448090553284, 0.03468945622444153, -0.004426260013133287, -0.002424348145723343, -0.0038764721248298883, 0.007200049702078104, -0.026663169264793396, 0.0047896793112158775, 0.014126759022474289, -0.00549788074567914, -0.0069888317957520485, 0.05760039761662483, -0.029595373198390007, 0.0028576557524502277, 0.010070130228996277, 0.01234382949769497, -0.04462912678718567, 0.03180694952607155, 0.038615625351667404, 0.012306556105613708, -0.001899409107863903, 0.024439167231321335, -0.04343636706471443, -0.023606721311807632, 0.01130637712776661, -0.028725652024149895, -0.0028390188235789537, 0.025122521445155144, -0.0032894101459532976, -0.04405759647488594, -0.009337078779935837, -0.004385880194604397, 0.01635076105594635, 0.009809213690459728, -0.030216602608561516, 0.029570523649454117, -0.0016742134466767311, -0.011523807421326637, -0.03319850564002991, 0.0482819564640522, 0.023084888234734535, -0.006081836763769388, -0.0441569909453392, -0.017183206975460052, -0.007405055686831474, -0.06908071786165237, -0.004019354935735464, 0.0078212795779109, 0.03742286562919617, -0.02904869057238102, -0.018748706206679344, -0.03048994392156601, -0.01418888196349144, 0.04343636706471443, 0.028675952926278114, -0.042864833027124405, -0.0298687145113945, 0.01991661824285984, 0.02621588483452797, 0.02561950497329235, -0.008454933762550354, -0.015493463724851608, -0.010200588032603264, -0.007541725877672434, 0.01904689520597458, -0.041498128324747086, -0.008280988782644272, 0.014151607640087605, 0.0010638554813340306, 0.00047096959315240383, -0.023743391036987305, 0.03121056966483593, 0.023271257057785988, 0.04025566950440407, -0.017555944621562958, 0.011890332214534283, 0.0156425591558218, -0.04179631918668747, 0.009504810906946659, 0.013530378229916096, -0.015978021547198296, 0.013965238817036152, -0.016860168427228928, -0.020078137516975403, -0.014598893001675606, 0.030738435685634613, 0.016624100506305695, -0.009132073260843754, -0.009330866858363152, -0.013244613073766232, -0.03126026690006256, -0.018935075029730797, -0.011803360655903816, -0.013940389268100262, -0.008374173194169998, -0.012256857939064503, 0.0356585718691349, 0.012648232281208038, -0.02482433058321476, 0.0262655820697546, -0.025246767327189445, 0.004246103577315807, -0.03558402508497238, 0.02257547900080681, -0.046418268233537674, -0.0032272872049361467, -0.005314618349075317, -0.012536411173641682, -0.01985449530184269, 0.0015499675646424294, 0.015568011440336704, 0.036553144454956055, -0.010753482580184937, 0.06117868050932884, 0.004385880194604397, 0.03193119540810585, -0.01490950770676136, 0.023693691939115524, 0.020202383399009705, 0.004820740781724453, 0.04033022001385689, -0.02624073438346386, 0.006827312055975199, -0.02468765899538994, 0.010411806404590607, 0.01769261620938778, 0.0030611082911491394, -0.0016043251380324364, 0.01025028619915247, 0.00329562253318727, -0.015071026980876923, -0.07410025596618652, 0.012461863458156586, 0.033770035952329636, 0.009716029278934002, -0.0190593209117651, 0.02210334502160549, -0.027781382203102112, -0.02969476953148842, -0.0035254773683845997, 0.03170755133032799, 0.006684429477900267, 0.023979458957910538, -0.03595676273107529, -0.014996480196714401, 0.02120877429842949, -0.005792965181171894, 0.020836036652326584, -0.028104422613978386, 0.012747629545629025, -0.005963803268969059, 0.0036714663729071617, 2.605645249786903e-06, 0.01838839240372181, -0.028974143788218498, 0.009765727445483208, -0.022426385432481766, 0.008734486997127533, 0.09711059182882309, -0.03968413919210434, -0.07971616834402084, 0.030241452157497406, 0.005149992648512125, 0.027458343654870987, -0.0023218451533466578, -0.00952344760298729, -0.022438809275627136, -0.0030067507177591324, 0.0030253876466304064, 0.006926708854734898, -0.04316302388906479, -0.022128194570541382, 0.00995209626853466, 0.005280450452119112, -0.05183538794517517, 0.010529839433729649, 0.015791652724146843, -0.009268743917346, -0.019369935616850853, 0.019655700773000717, -0.011225616559386253, 0.0190593209117651, -0.017208056524395943, -0.013580076396465302, -0.027135303243994713, -0.006448362022638321, 0.04629402235150337, 0.021134227514266968, 0.03384458273649216, 0.03237847983837128, -0.0270359069108963, 0.02273700013756752, -0.010852878913283348, 0.014648591168224812, -0.007119290065020323, 0.024625536054372787, 0.038019243627786636, -0.0410756953060627, -0.03660283982753754, -0.012592322193086147, 0.007709458004683256, -0.011225616559386253, -0.03697557747364044, 0.020264506340026855, -0.018984772264957428, -0.030291149392724037, -0.007541725877672434, -0.004802104085683823, 0.04042961448431015, 0.032974861562252045, 0.008430084213614464, -0.010585750453174114, 0.009306017309427261, -0.005948272533714771, 0.029471127316355705, 0.027831081300973892, 0.015418916009366512, -0.04626917093992233, 0.009927247650921345, -0.004084583837538958, -0.010181951336562634, -0.006032138131558895, 0.013468255288898945, -0.00336395762860775, 0.0261413361877203, -0.010486354120075703, 0.0297444686293602, -0.029545674100518227, -0.018885375931859016, 0.030738435685634613, 0.00811946950852871, 0.015828927978873253, 0.01413918286561966, -0.00013802942703478038, -0.037919849157333374, 0.02773168496787548, -0.008622664958238602, -0.025259191170334816, -0.04477822035551071, 0.005379847250878811, -0.028253518044948578, -0.014499496668577194, -0.023706117644906044, -0.04452972859144211, 0.0037863936740905046, -0.022314563393592834, -0.011256678029894829, 0.01061681192368269, -0.021034831181168556, -0.02476220764219761, -0.0035782819613814354, 0.008399022743105888, 0.008628877811133862, -0.010380744934082031, 0.026414677500724792, 0.01318249013274908, 0.008709637448191643, -0.0013418557355180383, -0.056507036089897156, 0.0540718138217926, 0.013592501170933247, 0.017593219876289368, 0.032925162464380264, 0.02984386496245861, -0.015853775665163994, 0.024563413113355637, 0.03143421187996864, 0.01621408946812153, 0.006109791807830334, 0.003056449117138982, -0.009790576994419098, -0.003500628285109997, 0.018537487834692, -0.03208028897643089, 0.01836354285478592, 0.003947913181036711, 0.01381614338606596, 0.0012983696069568396, 0.039435647428035736, 0.002034526551142335, -0.0025905270595103502, 0.04689040035009384, -0.019419634714722633, -0.008374173194169998, -0.006970194634050131, 0.009653906337916851, 0.015431340783834457, -0.039336252957582474, 0.025818297639489174, 0.008268564939498901, -0.07996466010808945, -0.00918177142739296, -0.022973066195845604, 0.00693292124196887, -0.026489226147532463, 0.02763228677213192, -2.0784495063708164e-05, 0.021693333983421326, -0.03531068563461304, 0.021059678867459297, 0.016114693135023117, 0.016127116978168488, 0.0030083036981523037, -0.008666151203215122, 0.011356075294315815, 0.004858014639467001, 0.041572678834199905, 0.029520824551582336, 0.011175918392837048, 0.025718901306390762, 0.0007221793057397008, 0.01830141991376877, -0.022153044119477272, -0.039336252957582474, 0.0013092411682009697, -0.052879054099321365, 0.0066595799289643764, -0.01785413548350334, 0.007622485980391502, 0.021842429414391518, -0.007498240098357201, 0.0034571420401334763, -0.059190746396780014, 0.0069142840802669525, -0.04626917093992233, 0.03958474472165108, -0.01836354285478592, 0.005870618857443333, 0.018264146521687508, 0.043635159730911255, 0.015133149921894073, 0.019742673262953758, 0.0016633420018479228, 0.023755814880132675, -0.059936221688985825, 0.05660643056035042, 0.016102267429232597, -0.0011997494148090482, 0.018872952088713646, -0.0314093641936779, 0.011828209273517132, 0.029247485101222992, -0.0032086502760648727, 0.010709996335208416, -0.005432651843875647, 0.04681585356593132, 0.003665253985673189, 0.001827967818826437, -0.023010339587926865, 0.010809392668306828, 0.0008875816129148006, 0.040802352130413055, 0.02406642958521843, -0.0016322805313393474, 0.012176098302006721, -0.01490950770676136, 0.003109253477305174, -0.012747629545629025, 0.0024554096162319183, 0.020960282534360886, 0.06614851951599121, 0.022873669862747192, -0.010063917376101017, 0.005028852727264166, 0.0005509529146365821, -0.010355895385146141, 0.018065353855490685, -0.0008386598201468587, -0.017605643719434738, 0.005805389489978552, 0.04823225736618042, -0.008647514507174492, -0.011511382646858692, 0.009262531995773315, -0.0031061475165188313, 0.005053701810538769, -0.02048814855515957, -0.011977304704487324, -0.015095876529812813, 0.06237144023180008, -0.0312851183116436, -0.0011290846159681678, -0.010032855905592442, -0.018935075029730797, -0.01837596856057644, 0.04380910471081734, 0.005153098609298468, -0.01348068006336689, 0.02046329900622368, 0.026712868362665176, -0.023594295606017113, 0.05168629437685013, 0.010573325678706169, 0.00014589185593649745, -0.013667048886418343, -0.02202879823744297, -0.0033142592292279005, 0.032825767993927, 0.023109737783670425, 0.01618923991918564, -0.033620938658714294, 0.0039758686907589436, 0.0051810541190207005, -0.01852506399154663, -0.011182131245732307, 0.025867996737360954, 0.018152326345443726, 0.0026930298190563917, 0.01710866019129753, 0.019668126478791237, -0.027259549126029015, 0.05051838234066963, -0.05461849644780159, -0.010765907354652882, -0.006429725326597691, -0.0031542927026748657, 0.01781686209142208, 0.0011189896613359451, 0.012946422211825848, 0.05056808143854141, -0.037248920649290085, -0.01986691914498806, -0.05576155707240105, 0.02912323921918869, -0.002352906623855233, -0.024389469996094704, -0.0060663060285151005, -0.03039054572582245, -0.023209134116768837, -6.983978528296575e-05, 0.0061750211752951145, 0.006485635880380869, 0.010946063324809074, 0.04465397447347641, 0.021121801808476448, 0.006982619408518076, 0.034416113048791885, 0.002124604769051075, 0.016661375761032104, 0.026017090305685997, 0.032825767993927, 0.0032148626632988453, -0.007597636431455612, 0.02052542194724083, 0.024476442486047745, 0.004267846699804068, 0.01986691914498806, 0.0063210101798176765, 0.03118572011590004, 0.016611676663160324, -0.017220482230186462, 0.026066789403557777, 0.014400099404156208, 0.02262517809867859, 0.035782817751169205, -0.02976931631565094, -0.03193119540810585, -0.012983696535229683, 0.04169692471623421, 0.01713350974023342, 0.04070295765995979, 0.016872592270374298, 0.014288278296589851, -0.036453746259212494, -0.029396578669548035, 0.0427405871450901, -0.018922649323940277, 0.060582298785448074, -0.01064166147261858, 0.014984055422246456, -0.014313127845525742, 0.013331584632396698, -0.003249030327424407, 0.029371730983257294, -0.0052866628393530846, -0.006013501435518265, -0.05760039761662483, -0.018723856657743454, -0.010846666991710663, -0.021830003708600998, 0.023743391036987305, 0.022177893668413162, -0.0029182254802435637, -0.019531454890966415, 0.0013263250002637506, -0.027905628085136414, 0.04612007737159729, 0.00813810620456934, 0.01979237236082554, 0.03563372418284416, 0.052779655903577805, 0.0071938373148441315, -0.05735190585255623, -0.011169706471264362, 0.021072104573249817, 0.013654624111950397, -0.04450488090515137, 0.010362108238041401, 0.02120877429842949, -0.022140618413686752, -0.022277290001511574, 0.012822176329791546, -0.018189599737524986, 0.019307812675833702, -0.025023123249411583, 0.0034136560279875994, 0.020165110006928444, -0.0019102806691080332, 0.03548462688922882, 0.016574403271079063, 0.00995209626853466, 0.014387674629688263, -0.006653368007391691, 0.0205999705940485, 0.006010395474731922, -0.005240070633590221, 0.030365698039531708, 0.01710866019129753, 0.0027644713409245014, -0.015331943519413471, -0.018077777698636055, 0.02421552501618862, 0.004944986663758755, 0.021792730316519737, -0.0025641247630119324, 0.011269102804362774, -0.02837776392698288, -0.00743611715734005, 0.01856233738362789, 0.06023441255092621, -0.031558457762002945, 0.014213730581104755, 0.005948272533714771, -0.003320471616461873, -0.010523627512156963, 0.013567651621997356, -0.012424590066075325, 0.011995941400527954, 0.037919849157333374, -0.0020314203575253487, -0.0026976889930665493, 0.0219542495906353, 0.025284040719270706, -0.044256389141082764, -0.029471127316355705, -0.04539944976568222, -0.01907174475491047, 0.019606003537774086, -0.02199152298271656, 0.03384458273649216, -0.016599252820014954, 0.03255242481827736, -0.02127089723944664, -0.004699600860476494, 0.0137788699939847, -0.012809752486646175, 0.00016287861217278987, 0.02471250854432583, -0.0367022380232811, 0.018785979598760605, -0.007808854803442955, -0.013716747052967548, -0.005771222058683634, -0.014400099404156208, -0.007075803820043802, -0.006572607904672623, -0.022252440452575684, -0.011784723028540611, -0.00013540861255023628, -0.010852878913283348, 0.0019941467326134443, -0.018264146521687508, -0.030837832018733025, 0.0005664836498908699, 0.00016501407662872225, -0.010722421109676361, -0.010088766925036907, -0.013033394701778889, -0.017344728112220764, 0.032254233956336975, 0.014511920511722565, 0.023159435018897057, -0.024252798408269882, -0.016201665624976158, 0.01830141991376877, -0.0116853266954422, 0.010399381630122662, 0.017170783132314682, -0.002780002076178789, -0.01354280300438404, 0.0016120905056595802, -0.005100294016301632, 0.02770683541893959, 0.0569046214222908, 0.005923422984778881, -0.018003230914473534, -0.0010708443587645888, -0.030216602608561516, -0.009964521043002605, -0.0037118461914360523, -0.018972348421812057, -0.021805154159665108, 0.01851263828575611, -0.005435757804661989, -0.023755814880132675, 0.00034400582080706954, -0.00036419578827917576, -0.029322031885385513, 0.07509422302246094, 0.005560004152357578, 0.004628159571439028, 0.0068770102225244045, -0.012331405654549599, -0.013592501170933247, 0.022935792803764343, -0.014561619609594345, -0.01093363855034113, -0.006808675359934568, -0.00656639551743865, 0.0049977912567555904, 0.036627691239118576, 0.01520769763737917, 0.012722779996693134, 0.023668844252824783, 0.019432058557868004, 0.017978381365537643, 0.004944986663758755, 0.00155617983546108, 0.0047151315957307816, 0.007361569441854954, -0.005000897217541933, -0.036528293043375015, 0.0015538502484560013, -0.01025649905204773, -0.005103400442749262, 0.04825710505247116, 0.028725652024149895, 0.004261634312570095, 0.03175725042819977, 0.029570523649454117, -0.004966729786247015, -0.004444897174835205, -0.007492027711123228, 0.017531096935272217, -0.0038826842792332172, 0.0003185742534697056, 0.0042554219253361225, -0.0233706533908844, -0.037174373865127563, 0.018736280500888824, -0.008044921793043613, -0.01704653725028038, -0.0014288278762251139, -0.014300703071057796, 0.022140618413686752, 0.013617350719869137, -0.014661015942692757, -0.009703604504466057, 0.0015414257068186998, -0.030191753059625626, -0.013679473660886288, -0.019630851224064827, -0.009877548553049564, -0.005827132612466812, -0.013592501170933247, -0.02199152298271656, 0.025209492072463036, 0.0030812982004135847, -0.011896545067429543, -0.032328780740499496, -0.0008836989291012287, -0.005988652352243662, 0.0008813693420961499, -0.0016120905056595802, -0.00327387941069901, 0.0032707732170820236, 0.012194734998047352, -0.005153098609298468, -0.002938415389508009, 0.01234382949769497, 0.032825767993927, 0.021805154159665108, -0.030017808079719543, 0.0021059680730104446, -0.03538523241877556, 0.0148722343146801, -0.02969476953148842, -0.02902384102344513, -0.020811187103390694, 0.026638319715857506, -0.019481757655739784, 0.0035658571869134903, -0.0018466046312823892, 0.017307452857494354, 0.028203818947076797, 0.003947913181036711, 0.017531096935272217, -0.005233858246356249, -0.008107044734060764, -0.013381282798945904, 0.023606721311807632, 0.018177174031734467, 0.026389827951788902, -0.03379488363862038, -0.025358587503433228, 0.003683890914544463, -0.01929538883268833, -0.03744771331548691, 0.022960642352700233, 0.007746731862425804, -0.009455112740397453, -0.013642199337482452, -0.012561260722577572, -0.008821458555758, 0.002668180735781789, -0.0164128839969635, 0.001899409107863903, -0.0298687145113945, -0.006078730337321758, -0.013306736014783382, 0.02338307723402977, -0.009076163172721863, 0.011834422126412392, 0.035186439752578735, 0.0410756953060627, -0.03123541921377182, -0.002360671991482377, -0.024563413113355637, 0.011561080813407898, 0.015940748155117035, 0.001275073504075408, -0.024513715878129005, -0.03344699740409851, 0.020152684301137924, 0.007951737381517887, 0.011853058822453022, 0.004867332987487316, -0.016860168427228928, 0.03252757713198662, 0.026588622480630875, 0.013555227778851986, 0.03178210183978081, -0.013667048886418343, 0.015915898606181145, -0.0020469510927796364, 0.013393707573413849, 0.034515511244535446, -0.02753289043903351, 0.008293413557112217, -0.021134227514266968, -0.0240167323499918, 0.01707138679921627, 0.01104546058923006, 0.010181951336562634, -0.009498598985373974, -0.008299626410007477, 0.025371013209223747, -0.0164128839969635, -0.010467716492712498, -0.01632591150701046, 0.016176816076040268, 0.0022566160187125206, -0.024613112211227417, -0.004696494899690151, -0.0041094329208135605, 0.011436834931373596, 0.010629236698150635, 0.030315998941659927, -0.005047489423304796, 0.014263428747653961, -0.005730842240154743, -0.04122478887438774, 0.011877907440066338, -0.024364620447158813, -0.011561080813407898, 0.0003888508363161236, 0.013406132347881794, -0.005072338972240686, -0.006398663856089115, -0.009088587015867233, -0.0036590415984392166, 0.02847716026008129, -0.0006837407127022743, 0.005612808279693127, 0.02262517809867859, -0.021395143121480942, -0.034465812146663666, 0.005044383462518454, -0.040081728249788284, 0.006392451468855143, 0.009293593466281891, -0.03178210183978081, 0.027160152792930603, -0.0028436779975891113, -0.00818159244954586, 0.00481452839449048, -0.002298549050465226, -0.0057867527939379215, 0.012983696535229683, -0.011579717509448528, 0.029371730983257294, -0.01273520477116108, -0.016549553722143173, 0.023643994703888893, -0.007032318040728569, 0.021121801808476448, 0.0053487857803702354, -0.029495976865291595, -0.017990805208683014, 0.013033394701778889, -0.009604208171367645, 0.003146527335047722, 0.02351974882185459, -0.03690103068947792, -0.011679114773869514, 0.010094978846609592, 0.007889614440500736, 0.048654694110155106, 0.0283280648291111, -0.006734127644449472, 0.002224001567810774, 0.04018112272024155, 0.007262172643095255, 0.0034385051112622023, -0.040106575936079025, -0.00656639551743865, -0.012238221243023872, 0.013443405739963055, -0.009790576994419098, -0.018624460324645042, 0.009262531995773315, 0.005333255045115948, 0.03777075186371803, -0.04656736180186272, 0.03190634772181511, -0.019568728283047676, 0.054270606487989426, -0.012424590066075325, 0.028104422613978386, -0.023532172664999962, 0.003005197737365961, 0.0014598893467336893, -0.001963085262104869, 0.014487071894109249, -0.0397835373878479, 0.021159077063202858, -0.03329790011048317, -0.020711790770292282, 0.0007951737497933209, -0.05700401961803436, -0.002714772941544652, 0.008411447517573833, 0.004494595341384411, -0.014710714109241962, 0.04308847710490227, 0.004137388430535793, -0.03769620507955551, -0.016052570194005966, 0.020016014575958252, -0.006647155620157719, 0.017394425347447395, 0.031657855957746506, -0.010355895385146141, -0.01708381064236164, -0.03215483948588371, -0.028849897906184196, -0.01847536489367485, -0.00847978238016367, -0.021134227514266968, -0.029446277767419815, 0.002949286950752139, -0.023706117644906044, -0.012561260722577572, 0.009411626495420933, -0.020836036652326584, 0.03121056966483593, -0.009374353103339672, -0.016512280330061913, -0.024451592937111855, -0.011940030381083488, -0.015828927978873253, -0.03048994392156601, 0.0017938001547008753, 0.012256857939064503, -0.03215483948588371, 0.01847536489367485, -0.010455292649567127, -0.005855088122189045, 0.036478593945503235, -0.012033214792609215, -0.01838839240372181, -0.023929759860038757, 0.009945884346961975, 0.011107583530247211, 0.020885735750198364, -0.008001435548067093, 0.055662162601947784, 0.005081657320261002, 0.0297444686293602, -0.005587959196418524, -0.016077419742941856, -0.003590706503018737, -0.02128332294523716, -0.06093018874526024, 0.0017083811108022928, 0.0009341738186776638, 0.011933818459510803, -0.00388889666646719, -0.010778331197798252, -0.006153278052806854, -0.015369217842817307, -0.02686196379363537, 0.03339729830622673, -0.02561950497329235, 0.025694051757454872, 0.025768598541617393, -0.011449259705841541, 0.012120187282562256, 0.0008844754775054753, -0.00711307767778635, -0.008057346567511559, 0.006429725326597691, -0.015468614175915718, 0.02066209353506565, 0.0226003285497427, -0.007541725877672434, 0.0021680910140275955, 0.039385948330163956, 0.01626378856599331, -0.011281527578830719, -0.010691359639167786, 0.01064166147261858, 0.06465756148099899, -0.0014583362499251962, -0.031036624684929848, 0.0051779476925730705, -0.02344520017504692, 0.0037056338042020798, 0.047809820622205734, 0.009504810906946659, 0.040727805346250534, 0.006901859771460295, 0.009318442083895206, -0.020003588870167732, -0.009809213690459728, 0.011213192716240883, 0.008113257586956024, -0.0006095814169384539, 0.024662811309099197, -0.0035037342458963394, 0.01768019050359726, -0.007255960255861282, -0.0037863936740905046, 0.015095876529812813, -0.008572966791689396, 0.020214807242155075, -0.01704653725028038, -0.035931915044784546, -0.009119648486375809, -0.008647514507174492, 0.006423512939363718, -0.00995209626853466, -0.03613070771098137, -0.025358587503433228, 0.04684070497751236, 0.00604456290602684, 0.06445877254009247, -0.014387674629688263, 0.0018186493543908, 0.021842429414391518, 0.0017301241168752313, -0.001496386481449008, 0.018288996070623398, 0.024650385603308678, -0.007970374077558517, 0.01132501382380724, 0.026563772931694984, -0.02056269533932209, 0.0016788727371022105, -0.020885735750198364, 0.028551707044243813, -0.03133481368422508, 0.0011407326674088836, -0.01240595243871212, -0.020264506340026855, 0.00690807169303298, 0.0033546392805874348, 0.001955319894477725, -0.016524704173207283, -0.011971091851592064, 0.023855213075876236, 0.01784171164035797, -0.016885017976164818, 0.02120877429842949, 0.004712025634944439, 0.008734486997127533, -0.004802104085683823] \ No newline at end of file diff --git a/cache/text-embedding-3-smalle8920016-2984-557d-afce-7235b7f9fa89 b/cache/text-embedding-3-smalle8920016-2984-557d-afce-7235b7f9fa89 new file mode 100644 index 0000000000000000000000000000000000000000..a61a69f052942c384a109cefca14e6c94ea673cc --- /dev/null +++ b/cache/text-embedding-3-smalle8920016-2984-557d-afce-7235b7f9fa89 @@ -0,0 +1 @@ +[-0.01476211566478014, -0.039870735257864, 0.058622293174266815, 0.020846901461482048, 0.0018260276410728693, 0.014442487619817257, 0.004785553552210331, 0.06037433072924614, 0.03762149438261986, 0.016454964876174927, -0.002067229012027383, -0.06870836019515991, -0.08750727027654648, 0.013010076247155666, 0.023025112226605415, -0.002042073057964444, -0.020941605791449547, -0.009944007731974125, -0.022812027484178543, 0.023628856986761093, 0.02426811307668686, 0.048062704503536224, -0.010328746400773525, 0.03463829308748245, -0.003758598119020462, -0.010814107954502106, -0.02620956301689148, -0.06761924922466278, -0.010802269913256168, -0.018396414816379547, 0.08859637379646301, -0.03473299741744995, 0.014478001743555069, 0.05213501304388046, -0.006303790491074324, 0.04394304379820824, -0.027061905711889267, 0.02044440619647503, 0.008416892029345036, -0.009322507306933403, -0.013957125134766102, -0.02947687916457653, 0.005081506446003914, 0.04098351672291756, 0.059900809079408646, 0.04929386451840401, -0.020385215058922768, -0.059900809079408646, -0.02351047471165657, 0.04706830158829689, -0.030921127647161484, 0.004164053127169609, -0.0002796752087306231, -0.045718759298324585, -0.02916908822953701, 0.00482106814160943, -0.014182048849761486, -0.02942952699959278, 0.007440248504281044, 0.015282992273569107, -0.00800255872309208, -0.0281510129570961, 0.017425689846277237, 0.04432186111807823, -0.027961602434515953, -0.00647544302046299, -0.0026487759314477444, 0.0494832769036293, -0.05507086217403412, 0.023877456784248352, -0.026588382199406624, 0.007386977318674326, 0.04079410806298256, 0.023214522749185562, -0.020361538976430893, -0.03662709519267082, -0.054739393293857574, 0.030305547639727592, 0.013128457590937614, -0.005244280211627483, -0.024670610204339027, 0.006084785796701908, -0.009221883490681648, 0.02722764015197754, 0.022835703566670418, -0.021545350551605225, -0.037810906767845154, 0.02132042497396469, -0.00455175107344985, 0.009730922058224678, 0.000576367718167603, 0.006143976002931595, -0.0009270715527236462, 0.057249072939157486, -0.0022226041182875633, -0.0383317805826664, 0.00795520655810833, 0.007286353036761284, 0.0031104618683457375, 0.042546145617961884, -0.004317948594689369, -0.0012888736091554165, 0.01692848838865757, -0.01860949955880642, -0.0015404332662001252, 0.024315467104315758, -0.00022122457448858768, 0.0016114619793370366, -0.012216923758387566, 0.02075219713151455, -0.03359654173254967, -0.005566868465393782, -0.03425947204232216, 0.07093392312526703, -0.03845016285777092, -0.021557187661528587, -0.03298095986247063, -0.06278930604457855, 0.03721899911761284, 0.046026550233364105, 0.025522952899336815, -0.03953927010297775, 0.023735398426651955, -0.0057059661485254765, -0.03182082623243332, 0.02115469239652157, -0.04671315848827362, 0.004732282366603613, -0.023486798629164696, -0.04723403602838516, 0.007487601134926081, -0.007629658095538616, -0.017922889441251755, 0.013554629869759083, 0.034354180097579956, -0.012737800367176533, 0.0029106938745826483, -0.001369520672596991, -0.02779586799442768, -0.0008109101327136159, 0.03364389389753342, -0.00851751584559679, 0.06416252255439758, -0.030258195474743843, -0.062647245824337, 0.026446325704455376, -0.040462639182806015, -0.010814107954502106, 0.002767156809568405, -0.023936646059155464, -0.009944007731974125, -0.024386495351791382, 0.003134138183668256, -0.007440248504281044, 0.017922889441251755, 0.013661172240972519, 0.02753543108701706, 0.08476082980632782, -0.05582850053906441, -0.024457523599267006, -0.03044760413467884, 0.03809501975774765, 0.00793152954429388, 0.013826905749738216, 0.014324106276035309, -0.023498637601733208, 0.011080465279519558, -0.06766660511493683, -0.06605662405490875, -0.018088623881340027, -0.0031193403992801905, -0.01800575666129589, -0.0282457172870636, 0.027653811499476433, -0.054692041128873825, 0.005164373200386763, 0.026896173134446144, -0.01420572493225336, 0.0021752517204731703, -0.015235640108585358, -0.01564997434616089, -0.011459285393357277, -0.004181810189038515, -0.003276195377111435, -0.04749447479844093, -0.026848820969462395, 0.003693488659337163, -0.015614459291100502, 0.019568385556340218, 0.016940327361226082, 0.02687249705195427, -0.0021737718489021063, 0.017224442213773727, 0.01739017479121685, -0.014170210808515549, 0.02233850210905075, 0.009707245975732803, 0.027346020564436913, -0.01456086803227663, 0.03262581676244736, 0.026233239099383354, -0.006226842757314444, -0.023474961519241333, 0.0038562624249607325, -0.035419609397649765, 0.005575747229158878, -0.016892975196242332, 0.023498637601733208, 0.03672179952263832, -0.009985441341996193, 0.025617657229304314, 0.017366498708724976, -0.04557670280337334, 0.03942088782787323, -0.0016824905760586262, -0.0010698686819523573, -0.03601151332259178, -0.011713803745806217, 0.0026384175289422274, -0.0031400572042912245, -0.019402652978897095, 0.01196240447461605, 0.058716997504234314, 0.03279154747724533, -0.007031833752989769, 0.01506990659981966, -0.02039705403149128, 0.0005367840640246868, -0.009695407003164291, -0.03407006338238716, -0.0054514468647539616, -0.021391455084085464, -0.017982080578804016, -0.010731241665780544, 0.007700686808675528, -0.029997756704688072, -0.021190207451581955, 0.03826075419783592, -0.08258261531591415, -0.05507086217403412, -0.042546145617961884, 0.042972318828105927, 0.011536232195794582, 0.04365892708301544, -0.009417211636900902, -0.021580863744020462, 0.041788507252931595, -0.04891504719853401, 0.0496726855635643, 0.008174210786819458, 0.006747719366103411, 0.03596416115760803, 0.022658132016658783, -0.014809468761086464, -0.00034718940150924027, -0.004205486737191677, -0.0036461360286921263, 0.0005808069836348295, 0.0028648213483393192, -0.030352899804711342, -0.022468721494078636, -0.03274419531226158, 0.010026874020695686, -0.022823864594101906, 0.0021693326998502016, -0.0016262595308944583, 0.03773987665772438, -0.020681168884038925, 0.005312349181622267, -0.019450005143880844, -0.013957125134766102, 0.03362021595239639, 0.030281871557235718, -0.01881074719130993, -0.029689965769648552, 0.028884975239634514, 0.0015145374927669764, -0.008837144821882248, -0.06733513623476028, 0.04754182696342468, 0.02722764015197754, -0.01942632906138897, -0.028056306764483452, -0.031181566417217255, 0.040415287017822266, -0.02130858786404133, 0.011589503847062588, -0.004454086534678936, -0.022776512429118156, 0.05421851947903633, 0.04053366929292679, -0.07164420932531357, -0.031418327242136, -0.08499758690595627, 0.0064221713691949844, 0.020527273416519165, 0.03089745156466961, -0.028837621212005615, -0.01553159300237894, 0.014312268234789371, 0.07652150839567184, 0.03385697677731514, 0.01933162473142147, -0.0465000718832016, -0.03705326467752457, 0.017520394176244736, -0.028387773782014847, 0.037147972732782364, 0.02161637879908085, 0.013815067708492279, -0.046949923038482666, -0.014087344519793987, 0.04034426063299179, -0.03726635128259659, -0.03691120818257332, -0.020432567223906517, 0.004818108398467302, -0.023273713886737823, -0.0036757313646376133, -0.03456726297736168, -0.008813468739390373, -0.035514313727617264, -0.06733513623476028, 0.01601695455610752, 0.03231802582740784, -0.07140744477510452, 0.05895375832915306, 0.041883211582899094, 0.0017106060404330492, -0.02606750652194023, -0.023214522749185562, -0.028174689039587975, 0.016999518498778343, -0.06510957330465317, -0.057249072939157486, -0.0313236229121685, -0.006161733064800501, 0.0382370762526989, -0.022291149944067, -0.013708524405956268, -0.027038229629397392, -0.01754407025873661, 0.0061498950235545635, -0.024362819269299507, -0.014773954637348652, -0.015330345369875431, 0.0034892812836915255, 0.005170292221009731, 0.024031352251768112, 0.03397535905241966, 0.002369100693613291, -0.0266120582818985, 0.03736105561256409, 0.0015152773121371865, -0.027109259739518166, 0.01591041311621666, -0.0027050068601965904, 0.020219482481479645, -0.012654933147132397, 0.048630934208631516, 0.014489839784801006, -0.005401134956628084, 0.028364097699522972, -0.020669329911470413, 0.0429486408829689, -0.012524714693427086, -0.029405850917100906, 0.023699885234236717, 0.011364580132067204, -0.008736521005630493, -0.003477443242445588, -0.0378582589328289, -0.011684209108352661, -0.01564997434616089, -0.021864978596568108, -0.02845880202949047, 0.02590177208185196, 0.03738473355770111, 0.03456726297736168, 8.356037142220885e-05, 0.01876339502632618, 0.008582625538110733, -0.0331466905772686, -0.015306669287383556, -0.007967044599354267, -0.03260213881731033, -0.019402652978897095, -0.04335113614797592, -0.01611166074872017, -0.04462965205311775, -0.0046020629815757275, -0.024599580094218254, 0.0481337308883667, -0.017058707773685455, -0.007801310624927282, -0.04354054853320122, -0.014454325661063194, 0.023640694096684456, 0.018183328211307526, 0.0026694925036281347, -0.014158372767269611, -0.05355558544397354, -0.029027031734585762, -0.025475600734353065, -0.004220284055918455, 0.019497357308864594, 0.022681808099150658, 0.0014042950933799148, -0.011707885190844536, -0.06477810442447662, 0.021651891991496086, -0.07737384736537933, 0.023238198831677437, 0.032104939222335815, 0.005933849606662989, 0.009837464429438114, -0.03743208572268486, 0.019852500408887863, 0.026138534769415855, 0.06155814230442047, 0.0531294122338295, -0.01211629994213581, -0.017271794378757477, -0.024102380499243736, 0.03040025196969509, 0.046689484268426895, 0.016691727563738823, -0.029453203082084656, -0.007404734380543232, -0.01305742934346199, -0.0036786908749490976, 0.014951526187360287, -0.03075539506971836, -0.0036224599462002516, -0.01902383379638195, 0.04702094942331314, 0.011648694984614849, 0.005815468728542328, 0.02178211137652397, -0.03783458098769188, -0.0198406632989645, 0.058669645339250565, 0.005895375739783049, 0.016904812306165695, 0.001236342010088265, -0.012418171390891075, 0.01254839077591896, 0.015164611861109734, -0.05810141563415527, -0.023179007694125175, 0.018491119146347046, 0.00905614998191595, 0.00905614998191595, -0.004525115247815847, 0.006712205242365599, 0.008659573271870613, 0.048725638538599014, -0.012560228817164898, 0.0004483681987039745, 0.03492240607738495, 0.05128266662359238, 0.040675725787878036, 0.0070259147323668, 0.016052469611167908, 0.031891852617263794, -0.011074546724557877, 0.0038296268321573734, 0.02101263590157032, -0.003199247643351555, -0.011571747250854969, -0.013838743790984154, -0.004533994011580944, 0.012808828614652157, 0.0462159588932991, -0.0007350723026320338, 0.007055510301142931, -0.01506990659981966, -0.06316812336444855, -0.024552227929234505, 0.0029698843136429787, -0.01586305908858776, -0.013862419873476028, -0.03523019701242447, -0.020432567223906517, -0.029405850917100906, -0.00905614998191595, 0.03605886548757553, 0.010068307630717754, -0.02952423132956028, 0.00776579650118947, 0.03717164695262909, 0.02212541736662388, 0.005205806344747543, -0.010885137133300304, -0.005256118252873421, -0.02564133331179619, -0.028269393369555473, -0.011666451580822468, -0.0028174687176942825, 0.00349224079400301, 0.02013661526143551, -0.013128457590937614, -0.016952164471149445, 0.015496078878641129, 0.014371458441019058, -0.009434969164431095, -0.029713641852140427, -0.039136771112680435, -0.0496726855635643, -0.003362021641805768, 0.008061748929321766, 0.017911052331328392, -0.006058149971067905, -0.01646680384874344, 0.004998639691621065, 0.0003113051352556795, 0.0014642254682257771, 0.04657110199332237, 0.021024473011493683, -0.034709323197603226, -0.00979603175073862, -0.0008856381755322218, -0.0010454525472596288, 0.013637496158480644, -0.03231802582740784, 0.009423131123185158, -0.008819387294352055, -0.0005415932973846793, -0.022764675319194794, -0.046429045498371124, 0.021095501258969307, -0.0165733452886343, -0.030873775482177734, 0.016940327361226082, -0.008724682964384556, -0.008624059148132801, 0.0005841364618390799, 0.02907438389956951, 0.0002628429210744798, 0.031844500452280045, 0.015294830314815044, 0.025996476411819458, 0.016999518498778343, -0.011524394154548645, 0.006374819204211235, -0.01911853812634945, -0.005815468728542328, -0.015354021452367306, 0.005484001711010933, 0.023747237399220467, 0.06615132838487625, -0.006090704817324877, 0.012406333349645138, 0.013755877502262592, 0.030565984547138214, -0.05194560065865517, 0.023877456784248352, 0.016762755811214447, 0.0281036589294672, 0.00478259427472949, 0.008570787496864796, -0.019568385556340218, 0.0006555350264534354, -0.007233081851154566, -0.0007565288688056171, 0.021237559616565704, -0.011524394154548645, 0.0281036589294672, -0.03345448151230812, 0.03539593145251274, 0.008931850083172321, 0.014016315340995789, 0.025357220321893692, -0.029903052374720573, 0.005504718516021967, 0.042498793452978134, 0.026185886934399605, -0.017473042011260986, 0.0761900395154953, 0.051330018788576126, -0.04261717572808266, -0.056728195399045944, -0.00964213628321886, -0.024410171434283257, -0.014821306802332401, -0.001191209303215146, 0.010932489298284054, 0.02916908822953701, 0.009932169690728188, -0.015792030841112137, -0.0032643573358654976, -0.03260213881731033, -0.02412605658173561, -0.0012755556963384151, 0.02474163845181465, -0.027985278517007828, 0.00874244049191475, 0.007250838913023472, 0.004880258347839117, 0.02045624516904354, -0.02606750652194023, -0.011530313640832901, -0.029003355652093887, -0.011305389925837517, -0.019556548446416855, -0.005581666249781847, 0.017875537276268005, -0.009624378755688667, -0.005566868465393782, -0.008837144821882248, 0.01881074719130993, 0.05166148766875267, 0.0017254037084057927, -0.011471123434603214, -0.009275155141949654, -0.009926250204443932, -0.040415287017822266, -0.008049910888075829, 0.0529400035738945, 0.025665009394288063, 0.016656212508678436, 0.014300430193543434, 0.02713293582201004, -0.0027138853911310434, -0.00639849528670311, 0.02545192465186119, 0.0050667086616158485, 0.022764675319194794, -0.0023646613117307425, 0.0006433269591070712, 0.01471476349979639, 0.02549927681684494, -0.03137097507715225, -0.028979679569602013, -0.01882258616387844, 0.02095344476401806, -0.01511725876480341, 0.014738439582288265, 0.045979198068380356, -0.010719403624534607, 0.000708436535205692, 0.005540232639759779, 0.028482478111982346, -0.014975202269852161, 0.00306014996021986, -0.016230041161179543, -0.02355782687664032, -0.02295408397912979, 0.014939687214791775, -0.004060469567775726, 0.0498620942234993, -0.011358660645782948, 0.03885265812277794, 0.0015285952249541879, 0.01015117485076189, -0.01698767952620983, 0.0027227639220654964, 0.013684848323464394, 0.01637209765613079, 0.02039705403149128, 0.00933434534817934, 0.030021432787179947, -0.019414491951465607, -0.025475600734353065, -0.012169571593403816, -0.004448167514055967, 0.033880654722452164, -0.00768884876742959, 0.022705484181642532, -0.022717321291565895, -0.06013756990432739, 0.011903214268386364, 0.05109325796365738, 0.022965922951698303, -0.019296109676361084, -0.03013981319963932, 0.01295088604092598, -0.047044627368450165, 0.005057829897850752, 0.02258710376918316, -0.0020642695017158985, 0.013673010282218456, -0.00596640445291996, -0.00635114312171936, 0.027417048811912537, -0.004462965298444033, 0.029050707817077637, -0.03283889964222908, -0.0021456563845276833, -0.006067028269171715, -0.005078546702861786, 0.02448119968175888, 0.0531294122338295, -0.04493744298815727, 0.017567746341228485, -0.032057587057352066, -0.050667084753513336, 0.04635801538825035, -0.042498793452978134, -0.07325419038534164, 0.018230680376291275, 0.0183017086237669, 0.028008954599499702, -0.026730438694357872, 0.004936489276587963, -0.015590783208608627, 0.00800255872309208, 0.018573986366391182, 0.04915180802345276, -0.0014782833168283105, -0.011849942617118359, 0.010524074546992779, -0.019544709473848343, -0.027985278517007828, -0.008896335028111935, -0.013554629869759083, 0.0037319622933864594, -0.0012570586986839771, 0.020787710323929787, -0.014028153382241726, 0.050004154443740845, -0.008754278533160686, 0.012927209958434105, -0.032507434487342834, 0.00447480333968997, 0.018538471311330795, -0.01769796572625637, 0.02528619021177292, 0.035727400332689285, -0.013933449052274227, 0.007564548868685961, -0.026327943429350853, -0.011453365907073021, -0.018420090898871422, 0.013471762649714947, 0.017982080578804016, -0.0315130352973938, -0.020988959819078445, -0.031134214252233505, -0.01896464265882969, 0.005469204392284155, -0.032554786652326584, 0.03916044905781746, 0.0019014955032616854, -0.04915180802345276, -0.017023194581270218, 0.028956003487110138, 0.04167012870311737, 0.032554786652326584, -0.009849302470684052, -0.02233850210905075, 0.0061913286335766315, -0.0038029910065233707, 0.007848663255572319, 0.007487601134926081, 0.011992000043392181, -0.01836089976131916, 0.029595261439681053, -0.006712205242365599, -0.018183328211307526, 0.027203964069485664, 0.03127627074718475, -6.446217594202608e-05, -0.003246600041165948, -0.0215690266340971, 0.013862419873476028, -0.04062837362289429, -0.0032318024896085262, -0.005774035584181547, 0.006339305080473423, 0.009624378755688667, 0.001511577982455492, 0.010891055688261986, -0.011317227967083454, 0.04626331105828285, 0.0030290749855339527, 0.0003070508246310055, 0.006777314934879541, 0.016028793528676033, -0.007227162830531597, 0.011033113114535809, -0.01851479522883892, 0.004460006020963192, 0.013554629869759083, -0.01911853812634945, 0.0034360098652541637, 0.034496236592531204, -0.009991359896957874, -0.007369219791144133, -0.02575971558690071, -0.017555909231305122, -0.0043090698309242725, 0.009215964004397392, -0.012962724082171917, 0.012418171390891075, 0.03892368823289871, 0.005788832902908325, -0.08793343603610992, 0.027346020564436913, 0.03681650385260582, 0.03792928531765938, 0.007150215096771717, 0.024599580094218254, -0.030281871557235718, 0.0496726855635643, 0.07178626209497452, 0.015934089198708534, 0.06217372417449951, 0.01330602914094925, 0.004492560401558876, -0.007096943445503712, 0.023948485031723976, -0.025665009394288063, 0.015093582682311535, -0.0037704361602663994, 0.01581570692360401, 0.01774531789124012, 0.015354021452367306, 0.004347543697804213, -0.007428410463035107, 0.04512685537338257, -0.023747237399220467, -0.0025037589948624372, -0.041883211582899094, -0.009476402774453163, 0.036390334367752075, -0.017934728413820267, -0.004655334632843733, 0.026683086529374123, 0.006416252348572016, 0.007310029584914446, -0.02819836512207985, -0.00047722356976009905, -0.020172130316495895, 0.00028300468693487346, -0.022859379649162292, 0.003859221935272217, -0.02249239757657051, -0.0009374298970215023, 0.005664533004164696, 0.009399455040693283, -0.008766116574406624, 0.0007150954916141927, 0.010683889500796795, 0.01244184747338295, 0.04290128871798515, 0.04384833946824074, 0.005862821359187365, 0.002435690024867654, 0.0025422328617423773, 0.011074546724557877, -0.03579842671751976, -0.05076179280877113, 0.003471523988991976, -0.036129895597696304, -0.008132778108119965, -0.02417340874671936, -0.009079826064407825, 0.008345863781869411, 0.011163332499563694, -0.02625691518187523, -0.015081744641065598, 0.013353381305932999, -0.06989216804504395, 0.023084303364157677, 0.006836505141109228, -0.002802671166136861, 0.00953559298068285, 0.05014621093869209, 0.022374017164111137, 0.01913037709891796, 0.01886993832886219, -0.001407254603691399, -0.002037633676081896, 0.036082543432712555, 0.025049429386854172, -0.06814012676477432, 0.022196445614099503, -0.006978562567383051, -0.001661773887462914, 0.029500555247068405, 0.0024682446382939816, 0.001114261569455266, 0.024552227929234505, 0.003560309763997793, 0.02519148588180542, -0.0028529830742627382, -0.02952423132956028, -0.019911691546440125, 0.020574625581502914, 0.05762789025902748, 0.04420348256826401, 0.0046198200434446335, -0.016892975196242332, 0.005853942595422268, 0.022326664999127388, -0.012252437882125378, 0.00296396529302001, -0.0015078785363584757, 0.021355940029025078, 0.006658933591097593, -0.004533994011580944, -0.0006340784602798522, -0.017733480781316757, -0.0011438567889854312, 0.00153007498010993, 0.005466244649142027, -0.034756675362586975, 0.05147207900881767, 0.01527115423232317, -0.030637014657258987, 0.0006152114947326481, 0.021024473011493683, 0.006102542858570814, -0.012323466129601002, -0.02013661526143551, -0.04079410806298256, -0.005208766087889671, 0.04396671801805496, -0.0038177885580807924, 0.03773987665772438, 0.006641176529228687, -0.00564677594229579, 0.013945287093520164, 0.0034360098652541637, -0.044440243393182755, -0.018633175641298294, 0.009281073696911335, 0.03229434788227081, -0.023285550996661186, 0.034851379692554474, -0.0031015833374112844, -0.02912173606455326, -0.010458964854478836, -0.05194560065865517, -0.040509991347789764, 0.02890865132212639, 0.022374017164111137, -0.017626937478780746, -0.024362819269299507, 0.0004502178926486522, 0.02457590401172638, -0.022172769531607628, -0.043327461928129196, 0.022563427686691284, 0.014963364228606224, 0.01012157928198576, 0.03288625553250313, 0.038473840802907944, -0.06866100430488586, 0.046334341168403625, -0.010743079707026482, 0.02912173606455326, -0.0075882249511778355, -0.016514156013727188, -0.004451127257198095, 0.01712973602116108, 0.02280018851161003, 0.04453494772315025, -0.026280591264367104, -0.004610941745340824, -0.05147207900881767, 0.030637014657258987, -0.021344102919101715, 0.03951559215784073, 0.007357381749898195, -0.003918412607163191, 0.0006122519844211638, 0.029287470504641533, 0.005232442170381546, -0.015247478149831295, 0.023806428536772728, 0.04590816795825958, -0.01126987487077713, -0.003604702651500702, 0.003128219163045287, -0.0064221713691949844, 0.010624698363244534, 0.01055367011576891, 0.03693488612771034, -0.018834423273801804, -0.012335305102169514, 0.034093741327524185, 0.02938217483460903, 0.046736836433410645, 0.012986400164663792, 0.009127178229391575, 0.030281871557235718, 0.013637496158480644, -0.0042735557071864605, 0.0012259837239980698, 0.010263636708259583, -0.00040619494393467903, 0.0011682729236781597, -0.017319146543741226, -0.03942088782787323, -0.019497357308864594, 0.03191553056240082, 0.013270515017211437, 0.0330519862473011, -0.0025807067286223173, -0.018680527806282043, -0.0024223721120506525, -0.009878898039460182, -0.011980162002146244, -0.001047672238200903, 0.0379529632627964, -0.015436887741088867, 0.06307341903448105, -0.021000796929001808, 0.022918570786714554, 0.008203806355595589, 0.014182048849761486, 0.016715403646230698, 0.028269393369555473, -0.01196240447461605, 0.008606301620602608, -0.02876659296452999, -0.031394653022289276, 0.004016076680272818, 0.02212541736662388, 0.026967201381921768, -0.01826619543135166, 0.005963445175439119, -0.013732201419770718, 0.03991808742284775, -0.018337223678827286, 0.033880654722452164, 0.006108461879193783, 0.0281510129570961, 0.03395168483257294, 0.003471523988991976, -0.015626298263669014, -0.008026234805583954, -0.011187008582055569, 0.00022399912995751947, 0.020693005993962288, -0.009298831224441528, -0.01039977464824915, 0.007777634542435408, -0.03013981319963932, 0.02310797944664955, 0.00296396529302001, -0.054644688963890076, -0.02625691518187523, 0.009476402774453163, 0.004501439165323973, 0.029926728457212448, 0.014087344519793987, 0.007351462729275227, 0.0009374298970215023, 0.0006851303041912615, 0.040675725787878036, -0.002061309991404414, -0.022314826026558876, 0.028956003487110138, 0.01876339502632618, -0.02111917734146118, 0.00151083804666996, -0.016348421573638916, 0.024244436994194984, -0.005513597279787064, 0.019307948648929596, -0.00721532478928566, 0.0005604602629318833, -0.0378582589328289, 0.022871216759085655, -0.008730601519346237, 0.016999518498778343, -0.01672724075615406, 0.02024315856397152, 0.004439289215952158, -0.04396671801805496, -0.004797391593456268, 0.03331242501735687, -0.01224059984087944, -0.007268595974892378, 0.021793950349092484, 0.030637014657258987, 0.019201405346393585, 0.03743208572268486, 0.02193600684404373, -0.046594779938459396, -0.006327466573566198, -0.06165284663438797, -0.020112939178943634, -0.005247239954769611, 0.028056306764483452, -0.0024223721120506525, 0.0005549111519940197, 0.03193920478224754, -0.03198655694723129, -0.00839321594685316, 0.027653811499476433, -0.0132586769759655, -0.028742916882038116, -0.014987040311098099, -0.00051976676331833, 0.0053182682022452354, -0.02146248333156109, -0.0157565176486969, -0.023545989766716957, -0.019698604941368103, 0.010541832074522972, -0.012299790047109127, -0.002031714655458927, 0.005155494436621666, -0.0011601342121139169, 0.014063667505979538, -0.023841941729187965, -0.02682514488697052, -0.019094862043857574, 0.011915052309632301, 0.005667492281645536, -0.02233850210905075, 0.007777634542435408, 0.0008471643668599427, 0.022089902311563492, 0.012358981184661388, 0.0003372009960003197, -0.00768884876742959, -0.006357062142342329, 0.00874835904687643, 0.01361382007598877, -0.0017638775752857327, 0.0007025175145827234, -0.014442487619817257, 0.03930250555276871, -0.01177891343832016, -0.011891376227140427, -0.0032998714596033096, -0.002323227934539318, 0.03575107455253601, 0.02326187491416931, -0.03693488612771034, -0.0054129729978740215, -0.013708524405956268, -0.04155174642801285, 0.02304878830909729, -0.027203964069485664, -0.022977760061621666, 0.03610621765255928, 0.004871380049735308, -0.006587904877960682, 0.021083664149045944, 0.015673650428652763, 0.006765476427972317, 0.09811420738697052, 0.024504875764250755, 0.009127178229391575, -0.0060788667760789394, -0.013377058319747448, -0.012122218497097492, -0.011613179929554462, 0.006741800345480442, -0.016395773738622665, 0.002386857755482197, 0.012358981184661388, -0.032554786652326584, 0.013945287093520164, -0.00506078964099288, 0.013850581832230091, 0.015685487538576126, 0.03901839256286621, -0.029760994017124176, 0.016348421573638916, -0.018597662448883057, 0.028364097699522972, -0.009452726691961288, 0.00017479700909461826, -0.02030234970152378, 0.029950404539704323, -0.01953287236392498, -0.0006244599935598671, 0.04039161279797554, -0.0005301251076161861, 0.00549288047477603, 0.012335305102169514, 0.009423131123185158, -0.005634937435388565, 0.013755877502262592, -0.021888654679059982, 0.021853139623999596, -0.008695087395608425, 0.01692848838865757, 0.0015892655355855823, 0.0015789071330800653, -0.0010817067231982946, 0.005895375739783049, 0.017011355608701706, 0.008612221106886864, -0.01866869069635868, -0.0012563187628984451, -0.02132042497396469, 0.005845063831657171, -0.017828185111284256, 0.00639849528670311, 0.0030083581805229187, -0.005288673099130392, -0.021545350551605225, 0.01270228624343872, 0.017023194581270218, 0.045624054968357086, 0.032365377992391586, -0.003871060209348798, -0.0020820265635848045, 0.03705326467752457, -0.03298095986247063, -0.019852500408887863, 0.03885265812277794, 0.00976643618196249, 0.0027153652627021074, -0.012998238205909729, 0.008055830374360085, 0.029358498752117157, -0.0009485281188972294, -0.027298668399453163, -0.019556548446416855, -0.001917772926390171, 0.029334822669625282, -0.013294191099703312, -0.002018396742641926, -0.00899695884436369, 0.0198406632989645, -0.01506990659981966, -0.06700366735458374, -0.013365219347178936, -0.013826905749738216, 0.017070546746253967, -0.0005556510295718908, 0.03040025196969509, -0.0060788667760789394, -0.015993278473615646, 0.011678289622068405, -0.014643735252320766, 0.007653334643691778, -0.02278835140168667, -0.0345909409224987, 0.03331242501735687, 0.03676915168762207, -0.005188049282878637, -0.0015152773121371865, 0.008754278533160686, -0.0095829451456666, -0.024043189361691475, -0.01078451331704855, -0.010891055688261986, 0.040060143917798996, 0.019142214208841324, -0.0036846098955720663, -0.016857460141181946, 0.014264916069805622, 0.017070546746253967, -0.019698604941368103, -0.01850295625627041, 0.026896173134446144, -0.05308206006884575, -0.004303150810301304, -0.018881775438785553, -0.008227482438087463, -0.03790561109781265, 0.0050075179897248745, 0.02590177208185196, 0.023593341931700706, 0.02549927681684494, 0.002033194527029991, 0.0025333543308079243, 0.040154848247766495, -0.014016315340995789, 0.004093024414032698, -0.031228918582201004, -0.025996476411819458, 0.017721641808748245, 0.04406142607331276, 0.017023194581270218, -0.016194526106119156, 0.01224059984087944, 0.019296109676361084, 0.03473299741744995, 0.03165509179234505, 0.011944646947085857, -0.006877938751131296, 0.04391936585307121, 0.010086065158247948, 0.0010979841463267803, 0.012264275923371315, -0.008144616149365902, -0.014442487619817257, -0.018585823476314545, -0.016750916838645935, -0.02227931283414364, -0.007150215096771717, 0.02509678155183792, -0.011589503847062588, 0.017461203038692474, -0.016336584463715553, 0.01310478150844574, 0.002821908099576831, -0.0010824466589838266, 0.02090609259903431, 0.006516876630485058, -0.010926569811999798, -0.0032318024896085262, 0.020574625581502914, 0.0207995492964983, 0.012512876652181149, 0.012891695834696293, 0.0004831426194868982, 0.022551588714122772, -0.03556166589260101, -0.07093392312526703, 0.010168931446969509, -0.023131655529141426, 0.0016943287337198853, 0.013329705223441124, 0.031086862087249756, -0.005507678259164095, 0.018183328211307526, -0.03300463408231735, -0.0007443208014592528, 0.019307948648929596, 0.03655606508255005, -0.005694128107279539, 0.006990400608628988, 0.016147173941135406, -0.01542504969984293, 0.0030394333880394697, -0.0266120582818985, -0.016147173941135406, -0.0022403611801564693, -0.031134214252233505, -0.010299150831997395, 0.0029891212470829487, -0.022681808099150658, -0.004400815349072218, -0.036485038697719574, 0.005344904027879238, 0.019615739583969116, -0.013661172240972519, 0.028719240799546242, -0.0036135814152657986, -0.024457523599267006, 0.013755877502262592, 0.018597662448883057, -0.000830886943731457, -0.004921691957861185, 0.01922508142888546, -0.0022507195826619864, 0.01456086803227663, -0.005421851761639118, 0.002935849828645587, 0.01285618171095848, -0.02351047471165657, -0.04238041490316391, -0.001925171702168882, -0.009186369366943836, 0.0346856452524662, 0.028174689039587975, 0.018431928008794785, -0.0015100982272997499, -0.014951526187360287, 0.00941129308193922, 0.011258036829531193, 0.01048264093697071, 0.025972800329327583, -0.009032473899424076, -0.012785152532160282, -0.009748678654432297, -0.029808346182107925, -0.00956518854945898, 0.007967044599354267, 0.028222041204571724, -0.01729547046124935, 0.015058068558573723, -0.03890001028776169, 0.02126123569905758, -0.033833302557468414, 0.037763550877571106, -0.049341220408678055, 0.0019384896149858832, 0.024457523599267006, 0.016135336831212044, 0.002614741213619709, -0.02748807892203331, 0.04091249033808708, -0.012560228817164898, 0.008410973474383354, 0.024137895554304123, -0.014844982884824276, 0.0036106219049543142, 0.041125573217868805, 0.026020152494311333, -0.016230041161179543, 0.03667444735765457, 0.029618937522172928, -0.0046050227247178555, 0.01396896317601204, 0.00022603380784858018, 0.014217562973499298, 0.0036017431411892176, 0.011992000043392181, 0.015721002593636513, -0.007446167524904013, -0.003145976224914193, -0.003663893323391676, 0.012962724082171917, -0.00045946642057970166, -0.02509678155183792, -0.028032630681991577, 0.02758278325200081, -0.01718892715871334, -0.023628856986761093, -0.005901295226067305, -0.01978147216141224, 0.022906731814146042, -0.014489839784801006, -0.03260213881731033, 0.021000796929001808, -0.023948485031723976, 0.01805310882627964, -0.008014396764338017, -0.008499759249389172, 0.033738598227500916, -0.01537769753485918, 0.011707885190844536, -0.008322187699377537, 0.018396414816379547, -0.031891852617263794, 0.012891695834696293, -0.026730438694357872, -0.030779071152210236, -0.043019670993089676, 0.0018423049477860332, 0.013282353058457375, 0.0016469762194901705, 0.048062704503536224, 0.012145894579589367, 0.039136771112680435, -0.01557894516736269, -0.015945926308631897, 0.007475763093680143, 0.008961444720625877, -0.04891504719853401, 0.010701646097004414, -0.043161727488040924, -0.007327786646783352, 0.01978147216141224, 0.0033353858161717653, -0.02793792635202408, -0.024315467104315758, -0.01876339502632618, 0.011329066008329391, -0.009446807205677032, 0.02233850210905075, 0.015827545896172523, 0.0026295389980077744, -0.02264629304409027, -0.026683086529374123, 0.0064458479173481464, -0.029855698347091675, 0.0239248089492321, -0.011553989723324776, -0.0035839860793203115, 0.004323867615312338, -0.021592702716588974, 0.012370819225907326, 0.042356736958026886, -0.001735761994495988, -0.0013458444736897945, 0.022705484181642532, -0.007085105404257774, 0.06307341903448105, 0.00039398690569214523, -0.03085009939968586, 0.0069075338542461395, 0.003145976224914193, -0.005117020569741726, 0.006664852611720562, 0.01611166074872017, 0.029950404539704323, 0.006052230950444937, 0.017200766131281853, 0.007280434016138315, -0.005191008560359478, 0.03376227244734764, -0.04384833946824074, -0.004853622987866402, 0.028387773782014847, 0.0033649811521172523, 0.02375907450914383, -0.028435125946998596, -0.01866869069635868, 0.03818972408771515, -0.005540232639759779, 0.013992639258503914, -0.012891695834696293, -0.0011164812603965402, -0.022705484181642532, -0.0018822585698217154, -0.014229401014745235, 0.021036311984062195, -0.005741480737924576, -0.02952423132956028, 0.05715436860918999, 0.012891695834696293, 0.05383969843387604, 0.007363300770521164, 0.0053389850072562695, -0.026848820969462395, -0.01506990659981966, 0.014442487619817257, -0.009198207408189774, 0.01901199482381344, -0.019556548446416855, 0.01683378405869007, -0.01865685172379017, -0.0068897767923772335, -0.0016351381782442331, -0.0022507195826619864, 0.00347448349930346, -0.011192928068339825, 0.01586305908858776, -0.04155174642801285, -0.007487601134926081, 0.03094480372965336, -0.030163489282131195, -0.02064565382897854, 0.0012511396780610085, 0.03203390911221504, 0.01407550647854805, 0.008103182539343834, 0.026091182604432106, 0.024339143186807632, 0.013223162852227688, -0.012583904899656773, 0.02625691518187523] \ No newline at end of file diff --git a/chainlit.md b/chainlit.md index 4507ac4676a6387c4b52a0d1111e94753a102b32..c68239653fc507ec3da1676dae3f1b54311e07b5 100644 --- a/chainlit.md +++ b/chainlit.md @@ -1,14 +1,8 @@ -# Welcome to Chainlit! 🚀🤖 +# Sales Buddy -Hi there, Developer! 👋 We're excited to have you on board. Chainlit is a powerful tool designed to help you prototype, debug and share applications built on top of LLMs. -## Useful Links 🔗 +An AI-powered sales assistant developed for the AI Engineering Bootcamp Cohort 4. +AI Makerspace -- **Documentation:** Get started with our comprehensive [Chainlit Documentation](https://docs.chainlit.io) 📚 -- **Discord Community:** Join our friendly [Chainlit Discord](https://discord.gg/k73SQ3FyUh) to ask questions, share your projects, and connect with other developers! 💬 +Developers: Aaron Moss, Nitin Gupta, Richard Gower -We can't wait to see what you create with Chainlit! Happy coding! 💻😊 - -## Welcome screen - -To modify the welcome screen, edit the `chainlit.md` file at the root of your project. If you do not want a welcome screen, just leave this file empty. diff --git a/classes.py b/classes.py new file mode 100644 index 0000000000000000000000000000000000000000..3fb1a34fa76e1c108414332bb8bd918aa127fe4d --- /dev/null +++ b/classes.py @@ -0,0 +1,152 @@ +class SessionState: + session_stage = "" + do_evaluation = False + do_opportunity_analysis = False + do_customer_research = False + do_objections = False + add_objections_to_analysis = True + do_ragas_evaluation = False + customer_research_report_md = "HSBC Quarterly Report 2024-10-16.md" + customer_research_report_pdf = "HSBC Quarterly Report 2024-10-16.pdf" + bettetech_value_proposition_pdf = "BetterTech Lending Analytics Solution.pdf" + do_voice = True + status = "active" + scenario = None + qa_mode = "single" + questions = [] + start_time = None + end_time = None + duration_minutes = None + attitude = "Happy" + mood_score = 5 + num_questions = 1 + current_question_index = 0 + previous_answer = None + question = "" + ground_truth = "" + rep_answer = "" + responses = [] + queries = [] + llm_responses = [] + command = "" + scores = [] + llm_next_steps = "" + def __init__(self): + self.session_stage = "research" + self.do_evaluation = False + self.do_opportunity_analysis = False + self.do_customer_research = True + self.do_objections = False + self.add_objections_to_analysis = True + self.do_ragas_evaluation = False + self.customer_research_report_md = "HSBC Quarterly Report 2024-10-16.md" + self.customer_research_report_pdf = "HSBC Quarterly Report 2024-10-16.pdf" + self.bettetech_value_proposition_pdf = "BetterTech Lending Analytics Solution.pdf" + self.do_voice = True + self.status = "active" + self.scenario = None + self.qa_mode = "single" + self.questions = [] + self.start_time = None + self.end_time = None + self.duration_minutes = None + self.attitude = "Happy" + self.mood_score = 5 + self.num_questions = 1 + self.current_question_index = 0 + self.previous_answer = None + self.question = "" + self.ground_truth = "" + self.rep_answer = "" + self.responses = [] + self.queries = [] + self.llm_responses = [] + self.command = "" + self.scores = [] + self.llm_next_steps = "" + self.company = None + self.customer = None + self.opportunity = None + self.scenario = None + class Company: + def __init__(self, name, description, product, product_summary, product_description): + self.name = name + self.description = description + self.product = product + self.product_summary = product_summary + self.product_description = product_description + + class Customer: + def __init__(self, name, contact_name, contact_role): + self.name = name + self.contact_name = contact_name + self.contact_role = contact_role + self.background = None + + + class Opportunity: + def __init__(self, id, name, stage, description, value, close_date, activity, next_steps): + self.id = id + self.name = name + self.stage = stage + self.description = description + self.value = value + self.close_date = close_date + self.activity = activity + self.next_steps = next_steps + + def __init__(self): + self.company = None + self.customer = None + self.opportunity = None + self.scenario = None + + def add_company_info(self, name, description, product, product_summary, product_description): + self.company = self.Company(name, description, product, product_summary, product_description) + + def add_customer_info(self, name, contact_name, contact_role): + self.customer = self.Customer(name, contact_name, contact_role) + + def add_opportunity_info(self, id, name, stage, description, value, close_date, activity, next_steps): + self.opportunity = self.Opportunity(id, name, stage, description, value, close_date, activity, next_steps) + + def add_scenario_info(self, scenario_data): + self.scenario = scenario_data + self.add_opportunity_info( + id=scenario_data['Opportunity ID'], + name=scenario_data['Opportunity Name'], + stage=scenario_data['Opportunity Stage'], + description=scenario_data['Opportunity Description'], + value=scenario_data['Opportunity Value'], + close_date=scenario_data['Close Date'], + activity=scenario_data['Activity'], + next_steps=scenario_data['Next Steps'] + ) + self.add_customer_info( + name=scenario_data['Customer Name'], + contact_name=scenario_data['Customer Contact'], + contact_role=scenario_data['Customer Contact Role'] + ) + + def get_opening(self): + output_lines = [ + "**Simulation Scenario**", + f"**Customer:** {self.customer.name if self.customer else 'Unknown'}", + f"**Opportunity:** {self.opportunity.name if self.opportunity else 'Unknown'}", + f"**Value:** {self.opportunity.value if self.opportunity and hasattr(self.opportunity, 'value') else 'Unknown'}", + f"**Stage:** {self.opportunity.stage if self.opportunity else 'N/A'}", + f"**Target Close Date:** {self.opportunity.close_date if self.opportunity and hasattr(self.opportunity, 'close_date') else 'Unknown'}", + f"**Opportunity Description:** {self.opportunity.description if self.opportunity else 'Unknown'}", + f"**Meeting with:** {self.customer.contact_name} ({self.customer.contact_role})", + f"**Activity:** {self.opportunity.activity if self.opportunity and hasattr(self.opportunity, 'activity') else 'Unknown'}", + f"**Current Meeting:** {self.opportunity.next_steps if self.opportunity and hasattr(self.opportunity, 'next_steps') else 'Unknown'}" + ] + output = "\n".join(output_lines) + return output + + def __str__(self): + company_info = f"{self.company.name} - " if self.company else "" + customer_info = f"for {self.customer.name}" if self.customer else "No Customer" + opportunity_info = f"{self.opportunity.name} ({self.opportunity.stage})" if self.opportunity else "No opportunity set" + return f"{company_info}SessionState: {customer_info} {opportunity_info}".strip() + diff --git a/data/AIE4_SalesBuddy_QandA.csv b/data/AIE4_SalesBuddy_QandA.csv new file mode 100644 index 0000000000000000000000000000000000000000..503b921888b3fd0e3f9a9250b35849d317c2f36d --- /dev/null +++ b/data/AIE4_SalesBuddy_QandA.csv @@ -0,0 +1,93 @@ +Stage,Customer Question (Provided by Claude),Salesperson Response (Provided by Claude),Ground Truth (Provided by Nitin). Marked as Salesperson 2 by Claude,Rating of Salesperson response (per Claude),Rating of Groundtruth (per Claude),Comments (per Claude) +Discovery,What exactly does your software do?,"""Our software is a comprehensive financial data analytics platform. It aggregates data from multiple sources, provides real-time insights, and helps financial institutions make data-driven decisions more efficiently.""","Our software is a comprehensive financial data analytics platform. It aggregates data from multiple sources, provides real-time insights, and helps financial institutions make data-driven decisions. +Our customer list includes 15 of the Fortune 100 companies. PNC bank is one of our customers and they aggregated data from their different loan systems to reduce charge-offs by 17%, and costs by 30%. +Can you share a little about your data challenges in your organization?",7,9,Salesperson 2 provides more specific details and examples +Discovery,How is your solution different from what we're currently using?,"""I'd love to learn more about your current system. Our solution stands out with its AI-powered predictive analytics and ability to integrate seamlessly with a wide range of financial systems. Could you tell me about your current pain points?""","The main reasons cited by our customers for selecting our software are the AI-powered predictive analytics and ability to integrate seamlessly with a wide range of financial systems. A large credit union customer said that our AI capabilities were far superior than what they would have developed internally. +It will be super helpful for me to learn about your current system and your pain points to explore if there is a fit",8,9,Salesperson 2 offers concrete examples and asks about pain points +Discovery,Can your software handle the volume of transactions we process daily?,"Absolutely. Our platform is designed to handle high-volume, high-frequency data. We currently serve clients processing millions of transactions daily. May I ask what volume you're dealing with so I can provide more specific information?""","Absolutely. Our platform is designed to handle high-volume, high-frequency data. PNC bank processes 3.5 million deposit and payment transactions every hour with our systems. May I ask what volume you're dealing with so I can provide more specific information?""",7,9,Salesperson 2 gives a specific example with numbers +Discovery,Does your solution comply with financial regulations like GDPR and CCPA?,"""Yes, regulatory compliance is a top priority for us. Our solution is fully compliant with GDPR, CCPA, and other major financial regulations. We also regularly update our system to adapt to new regulations. Are there any specific compliance concerns you have?""","Regulatory compliance is a top priority for us. Our solution is fully compliant with GDPR, CCPA, and other major financial regulations. We also regularly update our system to adapt to new regulations. We produce the detailed compliance findings in the SOC2 report that I am happy to share with you. +Can you share the compliance requirements for your firm?",8,9,Salesperson 2 mentions SOC2 report and asks about specific requirements +Discovery,How does your software integrate with legacy systems?,"""We have extensive experience integrating with legacy systems common in the financial sector. Our platform uses APIs and custom connectors to ensure smooth data flow. Could you share what systems you're currently using? This will help me explain how we'd approach integration in your specific case.""",We offer many integration options for our software. Most customers feed data into our software from their internal system via APIs. Others build customer connectors to ensure smooth data flows. Can you share what systems you're currently using? This will help me explain how we'd approach integration in your specific case.,8,7,Salesperson 1 provides more detailed integration options +Discovery,What kind of support do you offer for implementation and ongoing use?,"""We provide comprehensive support throughout the journey. This includes a dedicated implementation team, 24/7 technical support, regular training sessions, and a customer success manager. How hands-on would you like the support to be?""","For implementation, our customers use a combination of our professional services team and resources from our certified SI partners. +For ongoing support, we offer a couple of support options, ranging from developer support to enterprise support. How do you typically implement and support software within your organization?",7,9,Salesperson 2 gives more specific implementation and support options +Discovery,Can your solution help us with risk management and fraud detection?,"""Definitely. Our AI algorithms are particularly strong in risk assessment and fraud detection. They can identify unusual patterns and potential risks in real-time. What are your current challenges in risk management and fraud detection?""","Some of our customers have used the aggregation and analytics capabilities of our solution to ascertain supplier and vendor risk in their organization. A large retail customer aggregated all their supplier data sources including shipping, land transportation etc to review risk to the shipping timelines to determine appropriate inventory levels. +Can you tell me more about the risk and fraud use cases you are thinking about so we can determine if our solution is a fit?",7,9,Salesperson 2 provides a specific example and asks about use cases +Discovery,How scalable is your solution?,"""Our solution is highly scalable, designed to grow with your business. We use cloud infrastructure that can easily expand to handle increased data volume and user base. What kind of growth are you anticipating in the next few years?""","One of the reasons customers choose our solution is because it can be scaled up or down depending on their business needs. During the pandemic, some of our large online retail customers had to scale overnight as the ecommerce volumes went up 10X. They depended on our platform for their analytics needs. +As you think about scalability, can you give me some idea of the data volumes within your org?",8,9,Salesperson 2 gives a concrete example of scalability during the pandemic +Discovery,Do you have experience working with companies of our size?,"""Yes, we work with several large financial institutions. While I can't name them due to confidentiality, I can share that we serve three of the top 10 banks in the country. Would you be interested in case studies or speaking with references in your industry?""","Our customers range from large Fortune 100 enterprises to young startups innovating on a business idea. +Can you tell me more about some of the intended use cases and things you are struggling with regarding your analytics needs?",7,8,Salesperson 2 asks about specific use cases and challenges +Discovery,How does your pricing model work?,"""Our pricing is based on the modules you choose and the volume of data processed. We aim to align our pricing with the value we provide. To give you an accurate quote, could you share more about your specific needs and usage expectations?""","We have a consumption based pricing model, based on the modules you choose and the volume of data processed. We will be providing you a dashboard so you can get a daily view of the costs incurred. You can set limits at an org level or a user level so you can keep a tab of the costs.",7,9,Salesperson 2 explains the consumption-based model and mentions a dashboard +Qualification,What's the total cost of ownership for your solution?,"""The total cost includes the software license, implementation, training, and ongoing support. For a company of your size, we estimate the first-year cost to be between $500,000 to $750,000, with annual renewals at about 20% of that. Would you like a detailed breakdown?""","Our customers have to consider annual running costs (consumption), one time implementation fee, training costs, and support costs as they come on to our platform. Customers have cited productivity gains of 25% and analytics costs going down by 30% within 18 months post implementation. ",9,8,Salesperson 1 provides specific numbers while 2 focuses on ROI +Qualification,How long does the implementation usually take?,"""For a company of your size and complexity, implementation typically takes 3-6 months. This includes system integration, data migration, and user training. Do you have any specific timeline constraints we should be aware of?""","Implementation ranges from 8-16 weeks. Our platform is modular but the key things that impact the implementation timeframe are the number of data sources we have to connect to, and the number of downstream systems we need to integrate with. +Do you have any specific timeline constraints we should be aware of?""",8,9,Salesperson 2 gives more detail on factors affecting implementation time +Qualification,What kind of ROI can we expect?,"""Based on our experience with similar clients, most see a full ROI within 12-18 months. This comes from improved efficiency, better risk management, and data-driven decision making. One client reduced operational costs by 22% in the first year. What specific metrics are most important to you?""","Customers have cited productivity gains of 25% and analytics costs going down by 30% within 18 months post implementation. +Over the long run, our customers have also been to consolidate the number of vendor systems, reducing their technical debt, seeing ROI of 75% within 3 years.",8,9,Salesperson 2 provides more detailed ROI figures and timeframes +Qualification,Who will be our main point of contact during and after implementation?,"""You'll have a dedicated project manager during implementation and a customer success manager post-launch. Both will be deeply familiar with the financial services sector. How hands-on do you prefer your points of contact to be?""","Our Customer Success and Professional services teams works with customers during the entire implementation phase. During the implementation phase, the project lead from the Professional Services team will be the main point of contact, and then they will hand over to the customer success manager who will be the POC post implementation to drive training and adoption.",8,9,Salesperson 2 provides more detailed information about the process +Qualification,What happens if we need to scale up or down?,"""Our contracts are flexible. You can easily add users or increase data processing capacity as you grow. If you need to scale down, we can adjust at your annual renewal. What kind of fluctuations do you anticipate in your usage?""","We run on a highly secure and scalable infrastructure backend which allows you to scale up or down, on-demand, depending on your business needs. During the pandemic, some of our large online retail customers had to scale overnight as the ecommerce volumes went up 10X and they needs stronger real time analytics to run their business. +They were not only able to scale up, but also scale down as the business volume decreased as they dealt with inflationary pressures last year. ",8,9,Salesperson 2 gives a specific example of scaling during the pandemic +Qualification,How often do you release updates and how disruptive are they?,"""We release major updates quarterly and minor ones monthly. Updates are scheduled during off-hours and typically take less than an hour. We always notify clients in advance and provide detailed release notes. How does this align with your change management processes?""","We have 4 major releases a year, and 8 minor releases a year. The releases are all made into the core platform and available to all customers. Updates are scheduled during off-hours and typically take less than an hour. We always notify clients in advance and provide detailed release notes. +How does this align with your change management processes?""",9,9,Both provide similar comprehensive information +Qualification,What kind of training do you provide for our staff?,"""We offer a mix of online and on-site training. This includes admin training, end-user workshops, and ongoing webinars. We also provide a comprehensive knowledge base. How many users would need training, and do you have any specific training preferences?""","We offer a mix of online and in-person trainings on our platform and solution. Prior to launch, we will conduct a half day training delivered in a hybrid environment with our team at your office so we can walk you through different functionality and how to use the platform. Post launch, there are different trainings available on-demand. We can also provide customized training at any team for your team. +What is the size and makeup of your team that will need to be trained on the solution?",8,9,Salesperson 2 offers more detailed training options and asks about team size +Qualification,Can we customize the solution to our specific needs?,"""Absolutely. While our core product is robust, we understand that every financial institution has unique needs. We offer customization services to tailor the solution to your specific workflows and requirements. What kind of customizations do you think you'd need?""","Abolutely. Our platform is highly configurable and can be tailored to meet different customer needs and use cases. To give you a couple of examples, we have retail customers running their supply chain risk analysis on our platform and we have financial services customers running loan loss forecasting analysis on their credit card portfolios. +Can you tell me more about your needs and the use case you have in mind?",8,9,Salesperson 2 provides specific examples of customization +Qualification,What security measures does your solution have in place?,"""Security is paramount for us. We use bank-grade encryption, multi-factor authentication, and regular third-party security audits. We're also SOC 2 Type II compliant. Are there any specific security protocols or certifications you require?""","Security is job zero for us. Our customers put confidential data into our platform and we need to make sure we have the right protections in place to safeguard their data. Security measures include masking of data to remove any PII, encryption of data both at rest and transit, and deleting data copies on a periodic basis. We also partner with leading security companies like Palo Alto and Crowdstrike to use their tooling to monitor our securty posture. I can share with you our security whitepaper and also share the SOC Type II report that outlines our security certifications. +Are there any specific security protocols or certifications you require?",8,10,Salesperson 2 provides extensive details on security measures and offers documentation +Qualification,"If we decide to proceed, what are the next steps?,","""Great question! The next steps would be a technical deep dive with your IT team, followed by a customized demo for your key stakeholders. Then we'd move to contract discussions and implementation planning. Does this align with your decision-making process?""","We should first identify the 1-2 use cases you want to tackle in phase 1 of the project. Following that, we will sit down with your team to understand your technical landscape and the integration requirements. We can then discuss timelines, and provide you a pricing and implementation proposal. +Does this sound reasonable to you? ",8,9,Salesperson 2 outlines a more specific action plan +Technical Assessment,Can you walk us through how your system handles data encryption?,"""Certainly. We use AES-256 encryption for data at rest and TLS 1.3 for data in transit. All encryption keys are managed through a robust key management system with regular rotation. Would you like me to go into more technical detail on any specific aspect of our encryption process?""","Security is job zero for us. Our customers put confidential data into our platform and we need to make sure we have the right protections in place to safeguard their data. Security measures include masking of data to remove any PII, encryption of data both at rest and transit, and deleting data copies on a periodic basis. We use AES-256 encryption for data at rest and TLS 1.3 for data in transit. All encryption keys are managed through a robust key management system with regular rotation. I can share with you our security whitepaper and also share the SOC1 report that outlines our security certifications. +Can you talk about your policies and compliance requirements regarding data encryption?",9,10,Salesperson 2 provides more comprehensive information on encryption and security +Technical Assessment,How does your solution integrate with our core banking system?,"""We have pre-built connectors for most major core banking systems. Our integration process typically involves setting up secure API connections, defining data mapping rules, and establishing real-time or batch data synchronization based on your needs. Which core banking system are you using? I can provide more specific integration details.""","We have pre-built connectors for most major core banking systems. Our integration process typically involves setting up secure API connections, defining data mapping rules, and establishing real-time or batch data synchronization based on your needs. We use data masking so no PII gets included in the data that gets sent to us. We will use encryption at rest and in transit when dealing with any data transfers. Our customers have integrated our analytics engine with core banking providers like FIS, Jack Henry, and Temenos. +Which core banking provider do you use?",8,9,Salesperson 2 mentions specific core banking providers and data protection measures +Technical Assessment,What's your system's average response time for complex queries?,"""Our system is optimized for performance. For complex queries involving large datasets, the average response time is under 2 seconds. This is achieved through advanced indexing, in-memory processing, and distributed computing architecture. What kind of response times are you currently experiencing with your system?""","We have designed our platform to be highly scalable and process thousands of queries per minute. One of our banking customers runs their entire credit decisioning process on our platform, getting the entire loan approval process in under 3 minutes. +What kind of response time are you looking for?",9,8,Salesperson 1 provides more specific response time information +Technical Assessment,How do you handle data backups and disaster recovery?,"""We maintain real-time replicas across multiple geographically distributed data centers. Full backups are performed daily, with incremental backups every hour. Our disaster recovery plan ensures a Recovery Time Objective (RTO) of 4 hours and a Recovery Point Objective (RPO) of 15 minutes. How do these metrics compare to your current system and requirements?""","""We maintain real-time replicas across multiple geographically distributed data centers. Full backups are performed daily, with incremental backups every hour. Our disaster recovery plan ensures SLAs for Recovery Time Objective (RTO) and a Recovery Point Objective (RPO). +What recovery metrics are you looking to meet? ",9,8,Salesperson 1 provides more specific RTO and RPO metrics +Technical Assessment,Can your system handle real-time fraud detection?,"""Yes, our system excels at real-time fraud detection. We use machine learning models that analyze transaction patterns in real-time. The system can flag suspicious activities instantly and even automate certain preventive actions. What specific fraud scenarios are you most concerned about?""","Fraud detection is a common use case for our software. Our platform can process both structured and unstructured data to make real time fraud detection better, and reduce the chances of false positives. We also use both predictive and generative AI for better pattern matching and detect fraud across our network of customers. One of our large banking customers migrated to our platform from a large legacy provider and they saw 40% reduction in false positives and 20% reduction in overall fraud cases. ",8,10,Salesperson 2 provides a specific customer example with impressive results +Technical Assessment,How flexible is your reporting module?,"""Our reporting module is highly flexible. It includes a drag-and-drop report builder, a library of pre-built financial reports, and the ability to create custom reports using SQL. Reports can be scheduled, exported in various formats, and even embedded in other applications. What are your most critical reporting needs?""","Our customers run a variety of reports on our platform. The reporting module is highly configurable allowing you to select data from different table structures. You can configure report, table, and field level permissions to ensure only the authorized users in your organization get access to the right data. Reports can be scheduled, exported in various formats, and even embedded in other applications. What are your most critical reporting needs?",9,9,Both provide comprehensive information on reporting capabilities +Technical Assessment,What APIs do you offer for extending the system's functionality?,"""We provide a comprehensive set of RESTful APIs that cover all major functionalities of our system. This includes APIs for data ingestion, analytics, reporting, and administrative functions. We also offer SDKs for popular programming languages. Are there specific integrations or extensions you're considering?""","We have existing integrations with many 3rd party systems include core banking, payment, risk, and transaction processing systems to ensure we can exchange data feeds from upstream or downstream systems. In addition, we provide a comprehensive set of RESTful APIs that cover all major functionalities of our system. This includes APIs for data ingestion, analytics, reporting, and administrative functions. We also offer SDKs for popular programming languages. +Can you share some details of your integration requirements?",8,9,Salesperson 2 mentions existing integrations in addition to APIs +Technical Assessment,How does your system handle data governance and lineage?,"""Data governance is built into our system's core. We provide full data lineage tracking, allowing you to trace any piece of data back to its source. Our governance module includes features for data classification, access control, and audit trails. How complex are your data governance requirements?""","We comply with the data governance and sovereignty requirements of different states and countries. In the insurance sector, each state has different data governance requriements and our system can be configured to ensure those requirements are always adhered to. Similarly, in the case of a country specific sovereign requirements, we will ensure that the data stays within that country only. +For lineage, we provide an audit trail so you know each step when your data was enhanced or modified, offering you complete transparency. ",8,9,Salesperson 2 provides more specific information on governance and compliance +Technical Assessment,Can you explain your approach to ensuring system scalability?,"""Our system is built on a microservices architecture deployed on cloud infrastructure. This allows us to scale individual components independently based on demand. We use auto-scaling groups to handle traffic spikes and have successfully scaled to handle over 10 million transactions per hour for some clients. What kind of growth do you anticipate in your transaction volume?""","Our system is built on a microservices architecture deployed on cloud infrastructure. This allows us to scale individual components independently based on demand. We offer deployment to multiple cloud providers including AWS, Azure, and GCP giving you choice and freedom of deployment options. +We use auto-scaling groups to handle traffic spikes and have successfully scaled to handle over 10 million transactions per hour for some clients. +What kind of growth do you anticipate in your transaction volume? ",9,9,Both provide comprehensive information on scalability +Technical Assessment,How do you ensure the accuracy of your AI/ML models in financial predictions?,"Technical Assessment,,""We take a rigorous approach to model accuracy. Our models are trained on vast amounts of anonymized financial data and are continuously refined. We use techniques like cross-validation, backtesting, and A/B testing to ensure accuracy. Models are monitored in real-time and retrained regularly. We also provide transparency reports on model performance. What specific predictive capabilities are you most interested in?""","We take a rigorous approach to model accuracy. Our models are trained on vast amounts of anonymized financial data and are continuously refined. We use techniques like cross-validation, backtesting, and A/B testing to ensure accuracy. Models are monitored in real-time and retrained regularly. We also provide transparency reports on model performance. +For unstructured data, we use a number of techniques including RAG and fine-tuning to minimize hallucinations in our predictions. Post model runs, we run different evaluations to calculate model drift, precision, and relevancy. +As we are running across hundreds of customers, we have been able to achieve very high levels of accuracy in our AI/ML models",9,10,Salesperson 2 provides more detailed information on AI/ML model accuracy and techniques +Proposal,Can you provide a detailed breakdown of the costs?,"""Certainly. For your organization, we're proposing our Enterprise plan, which includes all modules. The first-year cost breaks down as follows: Software license: $400,000, Implementation and integration: $150,000, Training: $50,000, First-year support: $100,000. This totals $700,000 for the first year, with subsequent annual costs of $500,000 for license renewal and ongoing support. Would you like me to walk you through each component in more detail?""","Our customers have to consider annual running costs (consumption), one time implementation fee, training costs, and support costs as they come on to our platform. Actual costs depend on the size of the datasets and number of use cases we are getting deployed. If you would like, we can do a business and technical assessment so I can provide you a cost proposal. Would you want that?",9,8,Salesperson 1 provides specific numbers while 2 offers to do an assessment +Proposal,What specific ROI can we expect in the first year?,",""Based on our analysis of your current processes and the efficiencies our system will bring, we project a first-year ROI of 120%. This comes from a 15% reduction in operational costs, 20% improvement in fraud detection, and 10% increase in customer retention due to improved service quality. I'd be happy to provide a detailed ROI report with all our assumptions clearly stated. Would that be helpful?""","Customers have cited productivity gains of 25% and analytics costs going down by 30% within 18 months post implementation. +Over the long run, our customers have also been to consolidate the number of vendor systems, reducing their technical debt, seeing ROI of 75% within 3 years.",9,8,Salesperson 1 provides more detailed first-year ROI projections +Proposal,How quickly can we get the system up and running?,"""Given the scope of the project, we estimate a 4-month implementation timeline. This includes 1 month for initial setup and data migration, 2 months for integration and customization, and 1 month for testing and training. We can start within two weeks of contract signing. Does this timeline align with your expectations?""","We have seen customers get up and running in as little as 8 weeks. Our platform is modular but the key things that impact the implementation timeframe are the number of data sources we have to connect to, and the number of downstream systems we need to integrate with. +We would need to do a technical assessment to provide you a good estimate. Do you have a technical lead identified for this project? If so, can you make an introduction?",9,8,Salesperson 1 provides a more detailed timeline +Proposal,What guarantees do you offer if the system doesn't perform as promised?,"""We're confident in our solution, but we also understand the need for assurances. We offer a performance guarantee in our Service Level Agreement. If we don't meet the agreed-upon performance metrics, you're entitled to service credits. Additionally, we offer a 90-day warranty period post-implementation. If you're not satisfied during this period, we'll work to resolve issues at no additional cost. Would you like to discuss specific performance metrics for your guarantee?""","We offer Service Level Agreements (SLAs) for uptime and response time. We will work with you to fine tune the data models or the underlying infrastructure if performance is not performing for any reason. Our goal is to have a long term relationship, and we want to make sure you are a happy and satisfied customer. ",9,8,Salesperson 1 offers more specific guarantees and warranty information +Proposal,Can you provide customer references in our industry?,"""Absolutely. We have several clients in the financial services sector who have agreed to serve as references. I can arrange calls with two of our clients: a large national bank and a regional credit union. They can speak to their experiences with implementation, day-to-day use, and the ROI they've seen. Would you like me to set up these reference calls?""","Absolutely. We have a number of customers across the financial services industry running mission critical workloads on our platform. +PNC bank has aggregated data from their different loan systems to reduce charge-offs by 17%, and costs by 30%. They also process 3.5 million deposit and payment transactions every hour with our systems. +One other large banking customers is running their fraud detection process on us and saw 40% reduction in false positives and 20% reduction in overall fraud cases. +What use cases did you have in mind so I can share more relevant case studies?",8,9,Salesperson 2 provides specific customer examples and results +Proposal,What kind of ongoing support and maintenance is included?,"""Our proposal includes our Premium Support package. This provides 24/7 technical support with a 1-hour response time for critical issues, quarterly system health checks, and a dedicated customer success manager. It also covers all software updates and patches. Is there any specific area of support you'd like more information about?""","For ongoing support, we offer a couple of support options, ranging from developer support to enterprise support. Depending on your needs, we can price the support option and include them into the proposal. +We maintain and update the platform on a regular basis. We have 4 major releases a year, and 8 minor releases a year. The releases are all made into the core platform and available to all customers.",8,9,Salesperson 2 provides specific customer examples and results +Proposal,How do you ensure business continuity during the transition to your system?,"""We understand the critical nature of your operations. Our implementation plan includes a phased approach with parallel running of systems to ensure no disruption. We also provide a rollback plan at each stage. Your dedicated project manager will work closely with your team to minimize any potential business impact. Would you like to review our detailed transition plan?""","We take full back-up of your data before you start the transition process. Our implementation plan includes a phased approach with parallel running of systems to ensure no disruption. Your dedicated project manager will work closely with your team to minimize any potential business impact. +Would you like to review our detailed transition plan?""",8,9,Salesperson 2 provides more options for ongoing support +Proposal,What training options are available for our team?,"""We offer a comprehensive training program tailored to different user roles. This includes on-site workshops for administrators and power users, web-based training for end-users, and a full e-learning platform with on-demand courses. We also provide train-the-trainer sessions if you prefer to manage ongoing training internally. How would you like to approach training for your team?""","We offer a mix of online and in-person trainings on our platform and solution. Prior to launch, we will conduct a half day training delivered in a hybrid environment with our team at your office so we can walk you through different functionality and how to use the platform. Post launch, there are different trainings available on-demand. We can also provide customized training at any team for your team. +What is the size and makeup of your team that will need to be trained on the solution?",9,8,Salesperson 1 provides more detailed information on the transition process +Proposal,Can you outline the key milestones in the implementation process?,"""Certainly. The key milestones in our 4-month implementation plan are: Month 1 - Project kickoff and initial setup, Month 2 - Data migration and basic integration, Month 3 - Custom feature development and advanced integration, Month 4 - User acceptance testing and staff training. We have checkpoints and sign-offs at each milestone. Would you like a more detailed project plan?""","There are 5 major checkpoints for us during the implemenation process. First is to ensure that we have done all the integrations with the data feeds and the internal systems. Second is to run a Proof of Concept for a small use case to ensure we have got the models and analytics running correctly. Third is to scale the use case to the larger organization. Fourth is User acceptance testing and staff training. And fiith and final is going into Production with the launch. +Would you like a more detailed project plan?",9,9,Both provide comprehensive information on training options +Proposal,What makes your solution the best fit for our company compared to other options?,"""Based on our discussions, I believe our solution is the best fit for three main reasons: 1) Our deep expertise in the financial sector, which means faster implementation and industry-specific features, 2) Our advanced AI capabilities, which align with your goals for improved risk management and fraud detection, and 3) Our scalable architecture, which can support your projected growth. Moreover, our commitment to ongoing innovation ensures you'll always have cutting-edge capabilities. How do these align with your decision criteria?""","Our customers cite the advanced analytics, precision of the AI models, and the configrability of the platform as the key reasons to select us. PNC bank has aggregated data from their different loan systems to reduce charge-offs by 17%, and costs by 30%. They also process 3.5 million deposit and payment transactions every hour with our systems. They went live with our system in 16 weeks. Some of the other reasons include the underlying scalability of the platform and enterprise grade security. ",9,9,Both provide strong arguments for their solution's fit +Negotiation,Your pricing seems high compared to some other solutions we've seen. Is there any flexibility?,"""I appreciate your concern about the pricing. While our initial quote reflects the comprehensive nature of our solution, we do have some flexibility. We could look at adjusting the feature set or exploring a phased implementation to reduce the initial investment. Alternatively, we could discuss a longer contract term in exchange for a discount. What approach would you prefer to explore?""",We think we have a best in class solution and have a number of customers today running varied use cases on our platform. We offer a very transparent pricing model which allows us to scale across many customers. Some of the possibilities are discounts against commitments for long term or volume commitments. ,9,8,Salesperson 1 offers more specific options for flexibility +Negotiation,Can we spread out the payments over a longer period to reduce the upfront cost?,"""Absolutely, we can discuss alternative payment structures. One option is to spread the implementation cost over the first year, combined with quarterly payments for the license fee. This would reduce your initial outlay. We could also explore a pay-as-you-go model for certain modules. How would you like to structure the payments to best fit your budgeting process?""","Potentially. I will need to understand this more before I can make any commitments. As you can understand, we are a young company and have cash flow considerations as well. Can you help me understand how you want to structure the payments?",9,7,Salesperson 1 offers more specific payment structure options +Negotiation,What kind of discount can you offer for a three-year commitment?,"""For a three-year commitment, we can offer a 15% discount on the annual license fee. This would bring your annual cost down from $500,000 to $425,000 after the first year. Additionally, we could lock in this price for the full three years, protecting you from any potential price increases. Would you like me to draw up a comparison of the one-year versus three-year terms?""","Absolutely, we do offer price reductions to customers who are willing to do a longer term commitment to us. There is a 15% discount if you were to make a three-year commitment. +Would you like me to draw up a comparison of the one-year versus three-year terms?",9,8,Salesperson 1 provides more specific discount information +Negotiation,Can we start with a smaller implementation and scale up over time?,"""That's definitely an option. We could begin with core modules like data aggregation and basic analytics, then add advanced features like AI-driven predictions in subsequent phases. This approach would reduce your initial investment to about $400,000 for the first year. We can then add modules as your needs grow and as you realize ROI from the initial implementation. How does this aligned approach sound to you?""","Absolutely. Many of our customers start with 1-2 use cases and then scale up over time. What we do suggest however that you pick a use case that is a material and challenging use case for you so you are able to get a good idea of the results. +Do you have such a use case already identified?",9,8,Salesperson 1 provides more specific information on a phased approach +Negotiation,Is there any room for negotiation on the support costs?,"""I understand your concern about the support costs. While our support is comprehensive, we could look at tailoring it more specifically to your needs. For instance, we could reduce the cost by adjusting the support hours or response times. Alternatively, if you have a strong internal IT team, we could explore a co-support model. What aspects of the support package are most valuable to you?""","I understand your concern about the support costs. While our support is comprehensive, we could look at tailoring it more specifically to your needs. For instance, we could reduce the cost by adjusting the support hours or response times. Alternatively, if you have a strong internal IT team, we could explore a co-support model. One other option available to you is a discount if you were to commit to a longer term contract. +What aspects of the support package are most valuable to you?",9,9,Both offer similar levels of flexibility on support costs +Negotiation,Can you include additional training or consulting hours in the package without increasing the price?,"""I appreciate you asking about this. While our proposed package already includes substantial training, I understand the value of additional support. I can offer an additional 20 hours of consulting time at no extra cost. This could be used for advanced training, workflow optimization, or custom report development. Would this added value address your concerns?""","I appreciate you asking about this. Our goal is to ensure you gain adoption and value from the platform within your organzation. What we have done with other customers is offered additional training linked to adoption goals within their organization. +Is that something you are willing to consider?",9,8,Salesperson 1 offers a specific number of additional hours +Negotiation,What guarantees can you offer on the implementation timeline?,"""We're confident in our 4-month implementation estimate, but I understand the importance of timely delivery. We can add a clause to our contract that provides a service credit if we exceed the agreed-upon timeline. For instance, we could offer a 5% credit for each week of delay, up to a maximum of 20%. Would this type of guarantee give you the assurance you're looking for?""","Our implementation resources are available on a T&M basis. There are many dependencies on the implementation timeline including availability of your resources and integration with your internal systems. While we have done many such integrations offer, it is hard for us to offer guarantees in this area since we do not control availability of resources to guide these decisions. ",9,7,Salesperson 1 offers specific guarantees while 2 explains limitations +Negotiation,"If we commit to becoming a reference customer, can you offer any additional incentives?","""We greatly value reference customers and would be delighted to have you as one. In exchange for agreeing to be a reference (including potential case studies and peer recommendations), we can offer an additional 5% discount on your annual license fee. We would also prioritize your feature requests in our product roadmap. How does this sound to you?""",I would be happy to discuss that. We have offered some incentives to customers who agreed to becoming lighthouse customers for us and agreed to produce case studies and participate in joint speaking sessions. Is that something you are willing to consider?,9,8,Salesperson 1 offers more specific incentives for being a reference customer +Negotiation,Can we include a performance-based pricing component?,"""That's an interesting proposal. We're open to exploring a performance-based pricing model. We could structure it so that a portion of your fee is tied to agreed-upon KPIs","We have a consumption based pricing model, based on the modules you choose and the volume of data processed. We will be providing you a dashboard so you can get a daily view of the costs incurred. +On the performance, we will work with you to fine tune the data models or the underlying infrastructure if performance is not performing for any reason. Our goal is to have a long term relationship, and we want to make sure you are a happy and satisfied customer. ",8,7,Salesperson 1 is more open to performance-based pricing +Negotiation,"The incumbent provider just offered us a 25% discount so we stay on their platform, and now your pricing is much higher than theirs. Can you match their pricing so we can reconsider you?","I understand the appeal of a 25% discount from your current provider. While we may not be able to directly match that price, I'm confident our solution offers superior value that more than justifies the cost difference. Our advanced features like AI-driven analytics and real-time fraud detection often lead to cost savings and revenue increases that far exceed the price gap. +Would you be open to a detailed ROI analysis comparing our solution to your discounted current system? We could also explore performance-based pricing to align our fees with the value we deliver. Our goal is to be a long-term partner in driving your business success, not just a low-cost provider.","Looks like we are already delivering value for you! I am definitely willing to go back to my executives to see if there are any reductions possible but I wanted you to consider a few things. 1. our customers choose us because of the the advanced analytics, precision of the AI models, and the configrability of the platform. Those were some of the things you had cited were missing from the incumbent provider and reasons for the migration. 2. we offer very transparent pricing which has allowed us to scale quickly across many customers. Offering bait and switch pricing techniques erode customer trust and slow us down in terms of pricing. +What I have seen work in terms of a discount is when are customers are willing to do a longer term contract or agree to be a reference customer. Are you willing to consider those?",8,10,Salesperson 2 provides a more strategic and value-focused response \ No newline at end of file diff --git a/data/BetterTech Lending Analytics Solution.pdf b/data/BetterTech Lending Analytics Solution.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d6d539983f450c62aa3049f9d835f8a135e1c75a Binary files /dev/null and b/data/BetterTech Lending Analytics Solution.pdf differ diff --git a/data/BetterTechLendingAnalyticsSolution.txt b/data/BetterTechLendingAnalyticsSolution.txt new file mode 100644 index 0000000000000000000000000000000000000000..152f4c05f59792cdefda4327bb3adfe82af84f79 --- /dev/null +++ b/data/BetterTechLendingAnalyticsSolution.txt @@ -0,0 +1,39 @@ +Real-time analysis with BetterTech Lending Analytics + + +While most technologies on the market are able to fulfill regulatory risk management requirements, they often fall short of meeting the team’s actual needs. What works when Lending Analytics calculations are run weekly or monthly is simply not enough on a day-to-day basis. Maintaining regulations is no longer enough + + +There are three functions that an efficient Lending Analytics solution must be able to fulfill: report, explain and optimize. + + +Reporting is what every solution made for Lending Analytics can do: calculating risk figures and generating reports at the right level of aggregation that are ready to be sent to internal and external auditors. With the data volumes involved with Lending Analytics, however, reporting alone is simply not enough. Explaining is the most critical need for business users. Regulators ask for detailed explanations of what is included in the report, request that banks test alternative stress scenarios, and demonstrate the accuracy of their models — particularly with the Internal Models Approach. With a solution that only reports, business teams end up scrambling to answer those requests as best as they can, falling back on other tools such as Excel or PowerBI, which are simply not designed to analyze data at this scale. Optimizing is where growth and profitability reside. +Lending Analytics framework creates many decision points that are crucial to improving performance: +• How best to organize or reorganize loan portfolios? +• What would be the impact of changing positions or making certain loans? +• How can we improve our models? + + +BetterTech Lending Analytics handles this level of analysis deftly and can quickly answer these questions. By relying on inadequate tools to perform analysis, organizations often see reduced productivity and accuracy. Inaccurate reporting negatively impacts relationships with regulators, potentially leading to fines, leading to fines. Furthermore, companies that do not have the analytical capabilities to optimize their risk management and, by extension their capital charge, risk falling behind other, better equipped organizations. How can you get ahead if you cannot efficiently simulate different scenarios to choose the best outcome, while your competitors do it dozens of times a day? A robust analytics solutions that is affordable and easy to implement + + +BetterTech’s Lending Analytics represents an attractive offering for any bank looking to drastically improve their analytics capabilities within a short timeframe, while keeping their costs under control. BetterTech Lending Analytics can be used to build or replace your risk analysis and reporting system top to bottom, or simply complement your existing reporting capabilities with much improved analytics. Its capabilities and flexibility adapt to your architecture and always deliver the same outcome: putting into the hands of business users and executive managers the tools they need to maximize productivity and profitability. + + +BetterTech Lending Analytics is in production today at many banks of all sizes around the world, including HSBC, Erste Bank, CIBC and Mizuho. It has successfully passed the ISDA Lending Analytics SA Regulatory Benchmarking Unit Test. It has even been selected by one of the most important global regulators to serve as the benchmark against which to test other banks’ architectures. + + +Available as SaaS or on-premise, BetterTech Lending Analytics can run on any Cloud platform or in-house hardware and be fully deployed within 4 to 6 weeks. +Runs anywhere BetterTech Lending Analytics can be deployed under several configurations that all bring the same benefits. Reach out to our team of experts to find the setup that will work best for your organization. + + +On-premise: BetterTech Lending Analytics can be deployed on a large variety of hardware that are able to provide the requisite capabilities. We have partnerships in place with most global providers to ensure compatibility. In the Cloud: We have extensively tested BetterTech Lending Analytics on all the main cloud platforms (Azure, AWS, Google Cloud...). In fact, it has been deployed in production on those platforms. + + +As SaaS: We can provide BetterTech Lending Analytics under a managed services contract. This configuration offers the fastest time-to-production while giving you complete control over your investment. The future of market risk analytics Organizations who want to outsmart the competition in their trading strategies must take the long-term view for their market risk architecture. In a sense, Lending Analytics has created a new, level playing field; simply meeting its requirements only puts you in the middle of the pack. The cloud has reached maturity for the financial industry, and makes the best technologies now not just available, but also scalable, affordable and quick to deploy. It is for this new world that BetterTech Lending Analytics was designed, not just to walk along with the rest, but to run ahead. To get ahead, the time is ripe to expand capabilities and onboard new technology. Don’t get left behind. + + +About BetterTech + + +Founded by industry experts, BetterTech understands the data analytics challenges faced by financial institutions across lending desks, risk, and compliance. BetterTech pioneered the use of high-performance analytics in finance, helping the banks and lenders make better decisions, explain results with confidence, and simulate the impact of their decisions. BetterTech’s mission is to deliver train-of-thought analysis on terabytes of data in the most cost-effective way so clients can explain their results with confidence and model the scenarios that will optimize their business. BetterTech specializes in risk data analytics for one of the fastest moving and most regulated industries with a presence in the world’s leading financial marketplaces - London, New York, Singapore, Sydney, Hong Kong, Paris and Frankfurt. \ No newline at end of file diff --git a/data/Opportunity_Information.csv b/data/Opportunity_Information.csv new file mode 100644 index 0000000000000000000000000000000000000000..1e95ea2bb3b86938f69e0d3c72b59eacf9da7eb5 --- /dev/null +++ b/data/Opportunity_Information.csv @@ -0,0 +1,3 @@ +Opportunity ID,Customer Name,Opportunity Name,Opportunity Stage,Opportunity Description,Opportunity Value,Close Date,Customer Contact,Customer Contact Role,Activity,Next Steps +XFR0001,HSBC,Lending - Loan Origination System,Qualification,Developing analytic capabilities for the loan origination system,"$250,000",12/30/2024,John Smith,"VP, Information Technology",Had first meeting with John on 9/16. Identified that they are unhappy with the analytic capability of their current lending solution. Next step is to meet with them to understand their business drivers and pain points better. Will also use the next meeting to explain our company's value proposition.,Meet with John on 10/12 to qualify the opportunity better and share our value proposition +XFR0002,Citi,Competitive Analysis SaaS,Negotiation,Develop SaaS for analysis of Citi's competitors in foreign markets,"$100,000",11/15/2024,Peter Branson,"CEO",Contract finally ironed out by both parties' lawyers. Have verbal agreement that this will be moving forwards.,Finalize contract with Peter and lawyers on October 25th \ No newline at end of file diff --git a/public/custom_styles.css b/public/custom_styles.css new file mode 100644 index 0000000000000000000000000000000000000000..640978571c6082c98d222c0c568e1b669af183a2 --- /dev/null +++ b/public/custom_styles.css @@ -0,0 +1,13 @@ +.message { + background-color: #E3F2FD !important; /* Light Blue background */ + color: #1A237E !important; /* Dark Indigo text */ +} + +.MuiToolbar-root { + background-color: #b7dcf1 !important; /* Medium Blue background */ +} + +.css-h5tjrl { + background-color: #1fa11f !important; /* Light Green background */ + color: #d3e6d3 !important; /* Dark Green text */ +} \ No newline at end of file diff --git a/reports/HSBC Quarterly Report 2024-10-16 00:39:38.pdf b/reports/HSBC Quarterly Report 2024-10-16 00:39:38.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3af11ff784f71b792d0ec491d5672c91a574aed6 Binary files /dev/null and b/reports/HSBC Quarterly Report 2024-10-16 00:39:38.pdf differ diff --git a/reports/HSBC Quarterly Report 2024-10-16 09:36:43.pdf b/reports/HSBC Quarterly Report 2024-10-16 09:36:43.pdf new file mode 100644 index 0000000000000000000000000000000000000000..736c8dcf9c193589b0f6ba9762a4f2afb61b7009 Binary files /dev/null and b/reports/HSBC Quarterly Report 2024-10-16 09:36:43.pdf differ diff --git a/reports/HSBC Quarterly Report 2024-10-16.md b/reports/HSBC Quarterly Report 2024-10-16.md new file mode 100644 index 0000000000000000000000000000000000000000..d152fe06027631262a00105edb3cc1f0dfaf9dc5 --- /dev/null +++ b/reports/HSBC Quarterly Report 2024-10-16.md @@ -0,0 +1,29 @@ +### HSBC Quarterly Report - Q3 2024 + +#### Overview +HSBC Holdings plc, one of the world's largest banking and financial services organizations, has been navigating a transformative period marked by strategic shifts, leadership changes, and a focus on digital innovation. As of October 2024, the bank is actively pursuing cost-cutting measures, expanding its wealth management services, and launching new ventures in embedded finance. + +#### Key Developments +1. **Cost-Cutting Initiatives**: HSBC is reportedly considering a cost-cutting plan aimed at saving up to $300 million, primarily targeting senior management positions. This move is part of a broader strategy to enhance operational efficiency and respond to changing market conditions ([Reuters](https://www.reuters.com/business/finance/hsbc-mulls-cost-cutting-plan-save-up-300-mln-ft-reports-2024-10-10/)). + +2. **Leadership Changes**: The bank has seen significant leadership transitions, with Noel Quinn announcing his retirement as Group Chief Executive after nearly five years. Georges Elhedery has been appointed as his successor, tasked with leading HSBC through its next phase of development ([HSBC News](https://www.hsbc.com/news-and-views/news)). + +3. **Expansion of Wealth Management**: HSBC aims to double its assets under management in the UK wealth business to £100 billion ($131 billion) over the next five years. This initiative is part of a strategy to target the 'mass affluent' market, which is increasingly becoming a focus for major banks ([Financial Express](https://today.thefinancialexpress.com.bd/trade-market/hsbc-looks-to-double-uk-wealth-business-as-banks-target-mass-affluent-1724516994)). + +4. **Launch of Embedded Finance Venture**: In October 2024, HSBC launched a joint venture called SemFi with Tradeshift, aimed at providing embedded finance solutions to business clients. This venture will initially operate in the UK and is designed to integrate HSBC's financial services into e-commerce platforms, enhancing accessibility for SMEs ([Finextra](https://www.finextra.com/newsarticle/44827/hsbc-launches-embedded-finance-venture)). + +5. **Market Outlook and Economic Implications**: As the US elections approach, HSBC's market insights suggest that while election outcomes may introduce volatility, historical trends indicate that US equity markets tend to perform positively in the six months following elections, regardless of the political party in power ([HSBC UK](https://www.hsbc.co.uk/wealth/insights/market-outlook/special-coverage/2024-10-14/)). + +6. **Write-Offs and Strategic Divestments**: HSBC has also been restructuring its portfolio, including writing off its remaining $5.8 million stake in UK fintech Monese and considering the sale of its South African business to focus on more lucrative markets ([FinTech Futures](https://www.fintechfutures.com/2024/10/hsbc-reportedly-writes-off-remaining-5-8m-stake-in-uk-fintech-monese/), [FinTech Futures](https://www.fintechfutures.com/2024/08/hsbc-reportedly-considering-sale-of-its-south-african-business/)). + +#### Conclusion +HSBC is positioning itself for future growth through strategic cost management, leadership renewal, and a focus on digital transformation. The bank's initiatives in wealth management and embedded finance reflect its commitment to adapting to the evolving financial landscape while maintaining a strong operational foundation. As it navigates these changes, HSBC remains focused on delivering value to its shareholders and clients alike. + +### Citations +- [HSBC mulls cost-cutting plan of up to $300 mln, targeting top ranks, FT ...](https://www.reuters.com/business/finance/hsbc-mulls-cost-cutting-plan-save-up-300-mln-ft-reports-2024-10-10/): "HSBC mulls cost-cutting plan of up to $300 mln, targeting top ranks." +- [News: Latest Articles and Media Releases | HSBC Holdings plc](https://www.hsbc.com/news-and-views/news): "Georges Elhedery becomes our new Group Chief Executive." +- [HSBC looks to double UK wealth business as banks target 'mass affluent' - Finance News: Latest Financial News, Finance News today in Bangladesh](https://today.thefinancialexpress.com.bd/trade-market/hsbc-looks-to-double-uk-wealth-business-as-banks-target-mass-affluent-1724516994): "HSBC aims to double the assets under management in its British wealth business to 100 billion pounds ($131 billion) in the next five years." +- [HSBC launches embedded finance venture - Finextra](https://www.finextra.com/newsarticle/44827/hsbc-launches-embedded-finance-venture): "HSBC launches embedded finance venture." +- [Special Coverage | Market and Economic News | HSBC UK](https://www.hsbc.co.uk/wealth/insights/market-outlook/special-coverage/2024-10-14/): "For the overall market direction, the election result may matter less than is sometimes assumed." +- [HSBC reportedly writes off remaining $5.8m stake in UK fintech Monese - FinTech Futures](https://www.fintechfutures.com/2024/10/hsbc-reportedly-writes-off-remaining-5-8m-stake-in-uk-fintech-monese/): "HSBC reportedly writes off remaining $5.8m stake in UK fintech Monese." +- [HSBC reportedly considering sale of its South African business - FinTech Futures](https://www.fintechfutures.com/2024/08/hsbc-reportedly-considering-sale-of-its-south-african-business/): "HSBC reportedly considering sale of its South African business." diff --git a/reports/HSBC Quarterly Report 2024-10-16.pdf b/reports/HSBC Quarterly Report 2024-10-16.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f32ca959aec3c610c032a57a3706c90d87149f02 Binary files /dev/null and b/reports/HSBC Quarterly Report 2024-10-16.pdf differ diff --git a/requirements.txt b/requirements.txt index db6e421eba248c21fc0ce42702cd1aadfbc2fe96..732322bbb74178536a82a894247e2cba0cf79f69 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ ## midterm depends chainlit==0.7.700 -langchain==0.2.16 -langchain-community==0.2.17 -langchain-core==0.2.41 -langchain-openai==0.1.25 +#langchain==0.2.16 +#langchain-community==0.2.17 +#langchain-core==0.2.41 +#langchain-openai==0.1.25 langchain-qdrant jsonpointer==3.0.0 jiter==0.5.0 @@ -16,6 +16,7 @@ PyMuPDFb==1.24.10 marshmallow==3.22.0 multidict==6.1.0 idna==3.10 +#httpx==0.24.1 httpx==0.24.1 opentelemetry-api==1.27.0 opentelemetry-exporter-otlp==1.27.0 @@ -27,6 +28,28 @@ opentelemetry-proto==1.27.0 opentelemetry-sdk==1.27.0 opentelemetry-semantic-conventions==0.48b0 sniffio==1.3.1 -git+https://github.com/explodinggradients/ragas +#git+https://github.com/explodinggradients/ragas nltk -python-dotenv \ No newline at end of file +python-dotenv +# Richards dependencies +openai>=1.26.0 +langchain==0.3.0 +langchain-core==0.3.1 +langchain-community==0.3.0 +langchain-openai==0.2.0 +pyttsx3==2.90 +comtypes==1.2.0 +pandas==2.1.4 +tabulate==0.9.0 +datasets==2.14.5 +ragas==0.1.0 +nltk==3.9.1 +rouge-score==0.1.2 +sentence-transformers==2.3.0 +pydantic==2.7.4 +#openai-whisper==20240607 + +# Nitins dependencies +fpdf==1.7.2 +tavily-python==0.5.0 +langgraph==0.2.34 \ No newline at end of file diff --git a/utils_actions.py b/utils_actions.py new file mode 100644 index 0000000000000000000000000000000000000000..197e1ea517a4575d489f43bcad970fca167abc51 --- /dev/null +++ b/utils_actions.py @@ -0,0 +1,10 @@ +import chainlit as cl + +async def offer_actions(): + actions = [ + cl.Action(name="Get Latest News on this Customer", value="HSBC", description="Get Latest News"), + cl.Action(name="Enter Meeting Simulation", value="enter-meeting-simulation", description="Enter Meeting Simulation"), + cl.Action(name="Review Another Opportunity", value="review-another-opportunity", description="Review Another Opportunity"), + ] + await cl.Message(content="Select an action", actions=actions).send() + diff --git a/utils_callbacks.py b/utils_callbacks.py new file mode 100644 index 0000000000000000000000000000000000000000..6782fe4070738aee5bb4b8dabb987c4c316a764e --- /dev/null +++ b/utils_callbacks.py @@ -0,0 +1,85 @@ + +import asyncio +import chainlit as cl +from datetime import datetime +from utils_data import get_company_data, get_opportunities, get_questions, get_customer_background +from utils_output import display_evaluation_results, display_llm_responses +from utils_objections import create_objections +# async def callback_show_scenarios(): +# scenarios = get_opportunities() +# cl.user_session.set("scenarios", scenarios) +# scenarios = cl.user_session.get("scenarios", None) +# if scenarios is None: +# await cl.Message(content="No scenarios found.").send() +# return + +# scenario_actions = [] +# for idx, row in scenarios.iterrows(): +# if row['Opportunity Description'] != "": +# scenario_action = cl.Action( +# name="Scenario", +# value=f"{idx}", # Send the row index as value +# description=f"{row['Customer Name']}: {row['Opportunity Name']} ({row['Opportunity Stage']}) " +# f"Value: {row['Opportunity Value']}. Meeting with {row['Customer Contact']} " +# f"({row['Customer Contact Role']})" +# ) +# scenario_actions.append(scenario_action) +# await cl.Message(content="Select a scenario (hover for details):", actions=scenario_actions).send() + + +async def callback_run_scenario(action): + await cl.Message(content="*Preparing simulation - please wait ...*").send() + index = 0 + opportunities = cl.user_session.get("opportunities", None) + if opportunities is None: + await cl.Message(content="No scenarios found.").send() + return + await cl.Message(content="*Gathering opportunity information ...*").send() + await asyncio.sleep(1) + + await cl.Message(content="*Customizing questions for this opportunity ...*").send() + await asyncio.sleep(1) + + selected_opportunity = opportunities.iloc[index] + session_state = cl.user_session.get("session_state", None) + session_state.add_scenario_info(selected_opportunity) + get_customer_background(session_state, selected_opportunity['Customer Name']) + print("creating objections") + session_state.objections = await create_objections(session_state) + for obj in session_state.objections: + print(obj) + print("questions created") + session_state.questions = get_questions(session_state.opportunity.stage, session_state.num_questions) + for q in session_state.questions: + print(q) + opening_message = session_state.get_opening() + await cl.Message(content=opening_message).send() + start_actions = [ + cl.Action(name="Start Simulation", value="start_simulation", description="Start Simulation"), + ] + await cl.Message(content="Click to start simulation", actions=start_actions).send() + + +async def callback_start_scenario(): + print("callback_start_scenario()") + session_state = cl.user_session.get("session_state", None) + start_time = datetime.now() + print("setting start time") + session_state.start_time = start_time + output = f"{session_state.customer.contact_name} joins the zoom call" + print(output) + await cl.Message(content=output).send() + +async def callback_evaluate_performance(): + session_state = cl.user_session.get("session_state", None) + if session_state is None: + await cl.Message(content="No session found.").send() + return + await display_evaluation_results(cl, session_state) + +async def callback_display_queries_responses(): + session_state = cl.user_session.get("session_state", None) + if session_state is None: + await cl.Message(content="No session found.").send() + return + await display_llm_responses(cl, session_state) \ No newline at end of file diff --git a/utils_chain_parameters.py b/utils_chain_parameters.py new file mode 100644 index 0000000000000000000000000000000000000000..677553533c45727a63d654185299794a46879320 --- /dev/null +++ b/utils_chain_parameters.py @@ -0,0 +1,78 @@ +def prepare_chain_parameters(session_state, message, history): + message = message.content + previous_question = "" + rep_answer = "" + next_question = "" + ground_truth = "" + command = "" + if session_state.current_question_index == 0: + previous_question = "" + rep_answer = "" + ground_truth = "" + next_question = session_state.questions[session_state.current_question_index]["question"] + command = "You should greet the rep" + elif session_state.current_question_index >= len(session_state.questions): + next_question = "" + previous_question = session_state.questions[session_state.current_question_index - 1]["question"] + rep_answer = session_state.previous_answer + ground_truth = session_state.questions[session_state.current_question_index - 1]["ground_truth"] + command = """Thank the customer, offer a comment on the answer and overall performance. + Conclude the conversation with a summary and give a farewell. + If the answers were good, give a positive farewell and offer a follow up meeting. + If the answers were poor, give a poor farewell. + You can add additional comments as needed. + """ + else: + previous_question = session_state.questions[session_state.current_question_index - 1]["question"] + rep_answer = session_state.previous_answer + next_question = session_state.questions[session_state.current_question_index]["question"] + ground_truth = session_state.questions[session_state.current_question_index]["ground_truth"] + command = "You should respond to the answer based on how well the rep answered the previous question." + session_state.ground_truth = ground_truth + session_state.question = previous_question + session_state.rep_answer = rep_answer + print("--------------------------------") + print(f"Message: {message}") + print("Sending the following:") + print(f"Command: {command}") + print(f"Previous question: {previous_question}") + print(f"Rep answer: {rep_answer}") + print(f"Next question: {next_question}") + + rep_company_details = f""" + Name: {session_state.company.name} + Description: {session_state.company.description} + Product: {session_state.company.product} + Product Summary: {session_state.company.product_summary} + Product Description: {session_state.company.product_description} + """ + company_details = f""" + Name: {session_state.customer.name} + Description: {session_state.customer.background} + """ + scenario = f""" + Opportunity Name: {session_state.opportunity.name} + Opportunity Description: {session_state.opportunity.description} + Opportunity Stage: {session_state.opportunity.stage} + Opportunity Value: {session_state.opportunity.value} + Opportunity Close Date: {session_state.opportunity.close_date} + """ + parm = {"conversation_mode": session_state.qa_mode, + "message": message, + "name": session_state.customer.contact_name, + "company": company_details, + "role": session_state.customer.contact_role, + "sales_rep": "Tony Snell", + "rep_company": rep_company_details, + "attitude": session_state.attitude, + "mood_score": session_state.mood_score, + "scenario": scenario, + "stage": session_state.opportunity.stage, + "previous_question": previous_question, + "next_question": next_question, + "rep_answer": rep_answer, + "conversation_history": history, + "command": command, + } + return parm + diff --git a/utils_control_messages.py b/utils_control_messages.py new file mode 100644 index 0000000000000000000000000000000000000000..50bfd6d2a6f6637af4b315c03a83ec81fcbd1a95 --- /dev/null +++ b/utils_control_messages.py @@ -0,0 +1,26 @@ +async def handle_control_message(cl, command): + command_parts = command.split() + main_command = command_parts[0].lower() + + if main_command == 'start': + await cl.Message(content="Starting new session...").send() + + elif main_command == 'stop': + session_state = cl.user_session.get("session_state") + end_time = datetime.now() + duration = end_time - session_state.start_time + duration_minutes = round(duration.total_seconds() / 60) + session_state.end_time = end_time + session_state.duration_minutes = duration_minutes + + await cl.Message(content=f"Ending current session after {session_state.duration_minutes} minutes").send() + elif main_command == 'pause': + await cl.Message(content="Ending current session...").send() + + elif main_command == 'time': + session_state = cl.user_session.get("session_state") + duration = session_state.get_session_duration() + await cl.Message(content=f"Current session duration: {duration}").send() + + else: + await cl.Message(content=f"Unknown command: {main_command}").send() diff --git a/utils_customer_research.py b/utils_customer_research.py new file mode 100644 index 0000000000000000000000000000000000000000..1f4b3b6b582ed8a287f97992ef51a5a7e8991590 --- /dev/null +++ b/utils_customer_research.py @@ -0,0 +1,337 @@ +import asyncio +import chainlit as cl +import json +import operator +import os + +from typing import TypedDict, List, Annotated, Literal, Dict, Union, Optional +from datetime import datetime + + + +from langchain_core.tools import tool +from langchain_core.messages import AnyMessage, AIMessage, SystemMessage, HumanMessage, ToolMessage +from langchain_core.pydantic_v1 import BaseModel, Field, conlist +from langchain_openai import ChatOpenAI +from langgraph.graph import StateGraph, START, END, add_messages + +from tavily import AsyncTavilyClient, TavilyClient + +from utils_actions import offer_actions +from utils_pdf import generate_pdf_from_md + + +async def get_latest_news(customer): + + session_state = cl.user_session.get("session_state", None) + + await cl.Message(content=f"*Researching Latest News on {customer}*").send() + + if session_state.do_customer_research: + print("Searching for news items ...") + workflow = StateGraph(ResearchState) + + # Add nodes + workflow.add_node("research", research_model) + workflow.add_node("tools", tool_node) + workflow.add_node("curate", select_and_process) + workflow.add_node("write", write_report) + workflow.add_node("publish", generete_pdf) + # Set the entrypoint as route_query + workflow.set_entry_point("research") + + # Determine which node is called next + workflow.add_conditional_edges( + "research", + # Next, we pass in the function that will determine which node is called next. + should_continue, + ) + + # Add a normal edge from `tools` to `research`. + # This means that after `tools` is called, `research` node is called next in order to determine if we should keep or move to the 'curate' step + workflow.add_edge("tools", "research") + workflow.add_edge("curate","write") + workflow.add_edge("write", "publish") # Option in the future, to add another step and filter the documents retrieved using rerhank before writing the report + workflow.add_edge("publish", END) # Option in the future, to add another step and filter the documents retrieved using rerhank before writing the report + + app = workflow.compile() + + company = "HSBC" + company_keywords = "banking, financial services, investment, wealth management, digital banking" + # (Optional) exclude_keywords: Use this field when you need to differentiate the company from others with the same name in a different industry + # or when you want to exclude specific types of documents or information. Leave it as an empty string ("") if not needed. + exclude_keywords = "insurance" + # You may uncomment your_additional_guidelines and HumanMessage and update the content with some guidelines of your own + # your_additional_guidelines=f"Note that the {company} is ... / focus on ...." + messages = [ + SystemMessage(content="You are an expert researcher ready to begin the information gathering process.") + # ,HumanMessage(content=your_additional_guidelines) + ] + async for s in app.astream({"company": company, "company_keywords": company_keywords, "exclude_keywords": exclude_keywords, "messages":messages}, stream_mode="values"): + message = s["messages"][-1] + if isinstance(message, tuple): + print(message) + else: + message.pretty_print() + else: + await cl.Message(content=f"*Searching for news items ...*").send() + await asyncio.sleep(2) + + await cl.Message(content=f"*Curating 8 documents ...*").send() + await asyncio.sleep(3) + + await cl.Message(content=f"*Research complete. Generating report*").send() + await asyncio.sleep(1) + + markdown_file_path = f'reports/{session_state.customer_research_report_md}' + await cl.Message(content=read_markdown_file(markdown_file_path)).send() + + await offer_actions() + + +def read_markdown_file(file_path): + try: + with open(file_path, 'r', encoding='utf-8') as file: + content = file.read() + return content + except FileNotFoundError: + return f"Error: The file {file_path} was not found." + except Exception as e: + return f"An error occurred while reading the file: {str(e)}" + + +# Define the research state +class ResearchState(TypedDict): + company: str + company_keywords: str + exclude_keywords: str + report: str + # Declare a dictionary where: + # - The outer dictionary has string keys. + # - The inner dictionary can have keys of different types (e.g., str, int). + # - The inner dictionary values can be of different types (e.g., str, float). + documents: Dict[str, Dict[Union[str, int], Union[str, float]]] + RAG_docs: Dict[str, Dict[Union[str, int], Union[str, float]]] + messages: Annotated[list[AnyMessage], add_messages] + +# Define the structure for the model's response, which includes citations. +class Citation(BaseModel): + source_id: str = Field( + ..., + description="The url of a SPECIFIC source which justifies the answer.", + ) + quote: str = Field( + ..., + description="The VERBATIM quote from the specified source that justifies the answer.", + ) + + +class QuotedAnswer(BaseModel): + """Answer the user question based only on the given sources, and cite the sources used.""" + answer: str = Field( + ..., + description="The answer to the user question, which is based only on the given sources. Include any relevant sources in the answer as markdown hyperlinks. For example: 'This is a sample text ([url website](url))'" + ) + citations: List[Citation] = Field( + ..., description="Citations from the given sources that justify the answer." + ) + +# Add Tavily's arguments to enhance the web search tool's capabilities +class TavilyQuery(BaseModel): + query: str = Field(description="web search query") + topic: str = Field(description="type of search, should be 'general' or 'news'. Choose 'news' ONLY when the company you searching is publicly traded and is likely to be featured on popular news") + days: int = Field(description="number of days back to run 'news' search") + # raw_content: bool = Field(description="include raw content from found sources, use it ONLY if you need more information besides the summary content provided") + domains: Optional[List[str]] = Field(default=None, description="list of domains to include in the research. Useful when trying to gather information from trusted and relevant domains") + + +# Define the args_schema for the tavily_search tool using a multi-query approach, enabling more precise queries for Tavily. +class TavilySearchInput(BaseModel): + sub_queries: List[TavilyQuery] = Field(description="set of sub-queries that can be answered in isolation") + + +class TavilyExtractInput(BaseModel): + urls: List[str] = Field(description="list of a single or several URLs for extracting raw content to gather additional information") + + +@tool("tavily_search", args_schema=TavilySearchInput, return_direct=True) +async def tavily_search(sub_queries: List[TavilyQuery]): + """Perform searches for each sub-query using the Tavily search tool concurrently.""" + # Define a coroutine function to perform a single search with error handling + async def perform_search(itm): + try: + # Add date to the query as we need the most recent results + query_with_date = f"{itm.query} {datetime.now().strftime('%m-%Y')}" + # Attempt to perform the search, hardcoding days to 90 (days will be used only when topic is news) + response = await tavily_client.search(query=query_with_date, topic=itm.topic, days=itm.days, max_results=1) + return response['results'] + except Exception as e: + # Handle any exceptions, log them, and return an empty list + print(f"Error occurred during search for query '{itm.query}': {str(e)}") + return [] + + # Run all the search tasks in parallel + search_tasks = [perform_search(itm) for itm in sub_queries] + search_responses = await asyncio.gather(*search_tasks) + + # Combine the results from all the responses + search_results = [] + for response in search_responses: + search_results.extend(response) + await cl.Message(content=f"Searching for news items ...").send() + return search_results + +# Code for adding Tavily Extract as a tool (found it more useful to use Tavily Extract in a separate node) +# @tool("tavily_extract", args_schema=TavilyExtractInput, return_direct=True) +# async def tavily_extract(urls: TavilyExtractInput): +# """Extract raw content from urls to gather additional information.""" +# try: +# response = await tavily_client.extract(urls=urls) +# return response['results'] +# except Exception as e: +# # Handle any exceptions, log them, and return an empty list +# print(f"Error occurred during extract: {str(e)}") +# return [] + + +tools = [tavily_search] +tools_by_name = {tool.name: tool for tool in tools} +tavily_client = AsyncTavilyClient() + + +# Define an async custom research tool node to store Tavily's search results for improved processing and later on filtering +async def tool_node(state: ResearchState): + docs = state.get('documents',{}) + docs_str = "" + msgs = [] + for tool_call in state["messages"][-1].tool_calls: + tool = tools_by_name[tool_call["name"]] + new_docs = await tool.ainvoke(tool_call["args"]) + for doc in new_docs: + # Make sure that this document was not retrieved before + if not docs or doc['url'] not in docs: + docs[doc['url']] = doc + docs_str += json.dumps(doc) + # For Tavily Extract tool, checking if raw_content was retrieved a document + # if doc.get('raw_content', None) and doc['url'] in docs: + # docs[doc['url']]['raw_content'] = doc['raw_content'] # add raw content retrieved by extract + # docs_str += json.dumps(doc) + msgs.append(ToolMessage(content=f"Found the following new documents/information: {docs_str}", tool_call_id=tool_call["id"])) + return {"messages": msgs, "documents": docs} + +# Invoke a model with research tools to gather data about the company +def research_model(state: ResearchState): + prompt = f"""Today's date is {datetime.now().strftime('%d/%m/%Y')}.\n +You are an expert researcher tasked with gathering information for a quarterly report on recent developments in portfolio companies.\n +Your current objective is to gather documents about any significant events that occurred in the past quarter for the following company: {state['company']}.\n +The user has provided the following company keywords: {state['company_keywords']} to help you find documents relevant to the correct company.\n +**Instructions:**\n +- Use the 'tavily_search' tool to search for relevant documents +- Focus on gathering documents by making appropriate tool calls +- If you believe you have gathered enough information, state 'I have gathered enough information and am ready to proceed.' +""" + messages = state['messages'] + [SystemMessage(content=prompt)] + model = ChatOpenAI(model="gpt-4o-mini",temperature=0) + response = model.bind_tools(tools).invoke(messages) + return {"messages": [response]} + + +# Define the function that decides whether to continue research using tools or proceed to writing the report +def should_continue(state: ResearchState) -> Literal["tools", "curate"]: + messages = state['messages'] + last_message = messages[-1] + # If the LLM makes a tool call, then we route to the "tools" node + if last_message.tool_calls: + return "tools" + # Otherwise, we stop (reply to the user with citations) + return "curate" + +async def select_and_process(state: ResearchState): + + prompt = f"""You are an expert researcher specializing in analyzing portfolio companies.\n +Your current task is to review a list of documents and select the most relevant URLs related to recent developments for the following company: {state['company']}.\n +Be aware that some documents may refer to other companies with similar or identical names, potentially leading to conflicting information.\n +Your objective is to choose the documents that pertain to the correct company and provide the most consistent and synchronized information, using the following keywords provided by the user to help identify the correct company as a guide:{state['company_keywords']}.\n""" + # Optionally include exclusion keywords if provided by the user + if state['exclude_keywords'] != "": + prompt += f"""Additionally, if any form of the following exclusion words are present in the documents, do not include them and filter out those documents: {state['exclude_keywords']}.\n""" + # Append the list of gathered documents to the prompt + prompt += f"""\nHere is the list of documents gathered for your review:\n{state['documents']}\n\n""" + + # Use the model to filter documents and obtain relevant URLs structured as TavilyExtractInput + messages = [SystemMessage(content=prompt)] + model = ChatOpenAI(model="gpt-4o-mini",temperature=0) + relevant_urls = model.with_structured_output(TavilyExtractInput).invoke(messages) + + # Create a dictionary of relevant documents based on the URLs returned by the model + RAG_docs = {url: state['documents'][url] for url in relevant_urls.urls if url in state['documents']} + + try: + # Extract raw content from the selected URLs using the Tavily client + response = await tavily_client.extract(urls=relevant_urls.urls) + + # Save the raw content into the RAG_docs dictionary for each URL + msg += "Extracted raw content for:\n" + for itm in response['results']: + url = itm['url'] + msg += f"{url}\n" + raw_content = itm['raw_content'] + RAG_docs[url]['raw_content'] = raw_content + except Exception as e: + print(f"Error occurred during Tavily Extract request") + + msg += f"ֿֿ\n\nState of RAG documents that will be used for the report:\n\n{RAG_docs}" + + return {"messages": [AIMessage(content=msg)],"RAG_docs": RAG_docs} + +# Define the function to write the report based on the retrieved documents. +async def write_report(state: ResearchState): + # Create the prompt + prompt = f"""Today's date is {datetime.now().strftime('%d/%m/%Y')}\n. +You are an expert researcher, writing a quarterly report about recent events in portfolio companies.\n +Your task is to write an in-depth, well-written, and detailed report on the following company: {state['company']}. in markdown syntax\n +Here are all the documents you should base your answer on:\n{state['RAG_docs']}\n""" + # messages = [state['messages'][-1]] + [SystemMessage(content=prompt)] + # Create a system message with the constructed prompt (no need to include entire chat history) + messages = [SystemMessage(content=prompt)] + model = ChatOpenAI(model="gpt-4o-mini",temperature=0) + response = model.with_structured_output(QuotedAnswer).invoke(messages) + full_report = response.answer + msg = "Curating Documents ...\n" + await cl.Message(content=f"*Curating {len(response.citations)} documents ...*").send() + # Add Citations Section to the report + full_report += "\n\n### Citations\n" + for citation in response.citations: + doc = state['RAG_docs'].get(citation.source_id) + full_report += f"- [{doc.get('title',citation.source_id)}]({citation.source_id}): \"{citation.quote}\"\n" + # We return a list, because this will get added to the existing list + return {"messages": [AIMessage(content=f"Generated Report:\n{full_report}")], "report": full_report} + +async def generete_pdf(state: ResearchState): + await cl.Message(content=f"*Research complete. Generating report*").send() + directory = "reports" + file_name = f"{state['company']} Quarterly Report {datetime.now().strftime('%Y-%m-%d')}" + # Check if the directory exists + if not os.path.exists(directory): + # Create the directory + os.makedirs(directory) + + markdown_file_path = f'{directory}/{file_name}.md' + pdf_file_path = f'{directory}/{file_name}.pdf' + + session_state = cl.user_session.get("session_state", None) + session_state.customer_research_report_md = f"{file_name}.md" + session_state.customer_research_report_pdf = f"{file_name}.pdf" + + for file_path in [markdown_file_path, pdf_file_path]: + if os.path.exists(file_path): + os.remove(file_path) + print(f"Existing file deleted: {file_path}") + with open(markdown_file_path, 'w', encoding='utf-8') as md_file: + md_file.write(state['report']) + + await cl.Message(content=state['report']).send() + + msg = generate_pdf_from_md(state['report'], filename=pdf_file_path) + + return {"messages": [AIMessage(content=msg)]} \ No newline at end of file diff --git a/utils_data.py b/utils_data.py new file mode 100644 index 0000000000000000000000000000000000000000..a797edbfb57af6e38a34e7cea819ed65e3ba12ec --- /dev/null +++ b/utils_data.py @@ -0,0 +1,173 @@ +import pandas as pd +import os + +def get_questions(stage=None, num_questions=0): + q_and_a_filename = "AIE4_SalesBuddy_QandA.csv" + data = read_csv_from_data_folder(q_and_a_filename) + if data is None: + print(f"Error: Failed to read {q_and_a_filename}") + return [] + questions = [] + for index, row in data.iterrows(): + if stage is not None and row['Stage'] != stage: + continue + question = { + 'stage': row['Stage'], + 'question': row['Customer Question (Provided by Claude)'], + 'ground_truth': row['Ground Truth (Provided by Nitin). Marked as Salesperson 2 by Claude'], + } + if num_questions == 0 or num_questions > len(questions): + print(f"Adding question: {question['question']}") + questions.append(question) + print(f"Returned {len(questions)} questions for stage {stage}") + return questions + +def get_customer_background(scenario, customer_name="HSBC" ): + background_filename = f"{customer_name}_background.txt" + data = read_txt_from_data_folder(background_filename) + scenario.customer.background = data + print(f"Read background for {customer_name} - {background_filename}") + +def get_company_data(scenario): + company = { + "name": "BetterTech", + "description": """ + Founded by industry experts, BetterTech understands the data analytics challenges faced by financial + institutions across lending desks, risk, and compliance. + BetterTech pioneered the use of high-performance analytics in finance, helping the banks and lenders + make better decisions, explain results with confidence, and simulate the impact of their decisions. + BetterTech’s mission is to deliver train-of-thought analysis on terabytes of data in the most + cost-effective way so clients can explain their results with confidence and model the scenarios + that will optimize their business. BetterTech specializes in risk data analytics for one of the + fastest moving and most regulated industries with a presence in the world’s leading + financial marketplaces - London, New York, Singapore, Sydney, Hong Kong, Paris and Frankfurt. + """, + "product": "BetterTech Lending Analytics Solution", + "product_summary": """ + A comprehensive solution for real-time analysis in lending, surpassing basic regulatory compliance + by enabling reporting, explaining, and optimizing. Deployed as SaaS, on-premise, or in the cloud, it + empowers organizations to improve performance, enhance decision-making, and stay competitive by + simulating various scenarios efficiently and accurately. + """, + "product_description": """ + Real-time analysis with BetterTech Lending Analytics + While most technologies on the market are able to fulfill regulatory risk management requirements, + they often fall short of meeting the team’s actual needs. What works when Lending Analytics calculations + are run weekly or monthly is simply not enough on a day-to-day basis. Maintaining regulations is no + longer enough + + There are three functions that an efficient Lending Analytics solution must be able to fulfill: + report, explain and optimize. + + Reporting is what every solution made for Lending Analytics can do: calculating risk figures and + generating reports at the right level of aggregation that are ready to be sent to internal and + external auditors. With the data volumes involved with Lending Analytics, however, reporting alone + is simply not enough. Explaining is the most critical need for business users. Regulators ask for + detailed explanations of what is included in the report, request that banks test alternative stress + scenarios, and demonstrate the accuracy of their models — particularly with the Internal Models Approach. + With a solution that only reports, business teams end up scrambling to answer those requests as best + as they can, falling back on other tools such as Excel or PowerBI, which are simply not designed to + analyze data at this scale. Optimizing is where growth and profitability reside. + Lending Analytics framework creates many decision points that are crucial to improving performance: + • How best to organize or reorganize loan portfolios? + • What would be the impact of changing positions or making certain loans? + • How can we improve our models? + + BetterTech Lending Analytics handles this level of analysis deftly and can quickly answer these questions. + By relying on inadequate tools to perform analysis, organizations often see reduced productivity and + accuracy. Inaccurate reporting negatively impacts relationships with regulators, potentially leading + to fines, leading to fines. Furthermore, companies that do not have the analytical capabilities to + optimize their risk management and, by extension their capital charge, risk falling behind other, + better equipped organizations. How can you get ahead if you cannot efficiently simulate different + scenarios to choose the best outcome, while your competitors do it dozens of times a day? + + A robust analytics solutions that is affordable and easy to implement + + BetterTech Lending Analytics is in production today at many banks of all sizes around the world, + including HSBC, Erste Bank, CIBC and Mizuho. It has successfully passed the ISDA Lending Analytics + SA Regulatory Benchmarking Unit Test. It has even been selected by one of the most important global + regulators to serve as the benchmark against which to test other banks’ architectures. + + Available as SaaS or on-premise, BetterTech Lending Analytics can run on any Cloud platform or + in-house hardware and be fully deployed within 4 to 6 weeks. + + Runs anywhere BetterTech Lending Analytics can be deployed under several configurations that all + bring the same benefits. Reach out to our team of experts to find the setup that will work best for + your organization. + + On-premise: BetterTech Lending Analytics can be deployed on a large variety of hardware that are + able to provide the requisite capabilities. We have partnerships in place with most global providers + to ensure compatibility. In the Cloud: We have extensively tested BetterTech Lending Analytics on + all the main cloud platforms (Azure, AWS, Google Cloud...). In fact, it has been deployed in production + on those platforms. + + As SaaS: We can provide BetterTech Lending Analytics under a managed services contract. This + configuration offers the fastest time-to-production while giving you complete control over your + investment. The future of market risk analytics Organizations who want to outsmart the competition + """, + } + scenario.add_company_info( + name=company['name'], + description=company['description'], + product=company['product'], + product_summary=company['product_summary'], + product_description=company['product_description'] + ) + +def get_q_and_a(): + q_and_a_filename = "AIE4_SalesBuddy_QandA.csv" + data = read_csv_from_data_folder(q_and_a_filename) + return data + +def get_opportunities(): + opportunities_filename = "Opportunity_Information.csv" + data = read_csv_from_data_folder(opportunities_filename) + return data + +def read_csv_from_data_folder(filename, handle_nan='drop'): + data_folder = "./data/" + file_path = os.path.join(data_folder, filename) + + try: + df = pd.read_csv(file_path) + print(f"Successfully read {filename}") + # Handle NaN values + if handle_nan == 'drop': + df = df.dropna() + elif handle_nan == 'fill_na': + df = df.fillna('N/A') + elif handle_nan == 'fill_empty': + df = df.fillna('') + else: + print(f"Warning: Unknown NaN handling method '{handle_nan}'. NaN values were not processed.") + + # Reset index if rows were dropped + df = df.reset_index(drop=True) + return df + except FileNotFoundError: + print(f"Error: File '{filename}' not found in the data folder.") + return None + except pd.errors.EmptyDataError: + print(f"Error: File '{filename}' is empty.") + return None + except Exception as e: + print(f"An error occurred while reading '{filename}': {str(e)}") + return None + +def read_txt_from_data_folder(filename): + data_folder = "./data/" + file_path = os.path.join(data_folder, filename) + + try: + with open(file_path, 'r', encoding='utf-8') as file: + data = file.read() + print(f"Successfully read {filename}") + return data + except FileNotFoundError: + print(f"Error: File '{filename}' not found in the data folder.") + return None + except Exception as e: + print(f"An error occurred while reading '{filename}': {str(e)}") + return None + + \ No newline at end of file diff --git a/utils_evaluate.py b/utils_evaluate.py new file mode 100644 index 0000000000000000000000000000000000000000..a969865b0954956549ad6c58ec99c0aab9a29a89 --- /dev/null +++ b/utils_evaluate.py @@ -0,0 +1,80 @@ +import pandas as pd +from datasets import Dataset +from nltk.translate.bleu_score import sentence_bleu + +from ragas import evaluate +from ragas.metrics import ( + answer_relevancy, + answer_correctness, +) +from rouge_score import rouge_scorer +from sentence_transformers import SentenceTransformer, util + +def evaluate_answers(session): + ragas_results = evaluate_with_ragas(session) + session.ragas_results = ragas_results + scores = [] + for response in session.responses: + bleu_score = calculate_bleu_score(response.get("response", ""), response.get("ground_truth", "")) + rouge_score = calculate_rouge_score(response.get("response", ""), response.get("ground_truth", "")) + semantic_similarity_score = calculate_semantic_similarity(response.get("response", ""), response.get("ground_truth", "")) + all_scores = { + "bleu_score": bleu_score, + "rouge_score": rouge_score, + "semantic_similarity_score": semantic_similarity_score + } + scores.append(all_scores) + session.scores = scores + return scores + + + +def evaluate_with_ragas(session): + questions = [] + answers = [] + ground_truths = [] + contexts = [] + for i, response in enumerate(session.responses, 1): + questions.append(response.get("question", "")) + answers.append(response.get("response", "")) + ground_truths.append(response.get("ground_truth", "")) + contexts.append([session.company.product_description]) + + evaluation_dataset = Dataset.from_dict({ + "question" : questions, + "answer" : answers, + "contexts" : contexts, + "ground_truth" : ground_truths + }) + + print(evaluation_dataset) + + metrics = [ + # faithfulness, + answer_relevancy, + # context_recall, + # context_precision, + answer_correctness, + ] + results = evaluate(evaluation_dataset, metrics) + print(results) + return results + +def calculate_bleu_score(answer, ground_truth): + bleu_score = sentence_bleu([ground_truth.split()], answer.split()) + print(f"BLEU score: {bleu_score}") + return bleu_score + +def calculate_rouge_score(answer, ground_truth): + scorer = rouge_scorer.RougeScorer(['rouge1', 'rougeL'], use_stemmer=True) + rouge_scores = scorer.score(ground_truth, answer) + print(f"ROUGE score: {rouge_scores}") + return rouge_scores + +def calculate_semantic_similarity(answer, ground_truth): + model = SentenceTransformer('all-MiniLM-L6-v2') + answer_embedding = model.encode(answer) + ground_truth_embedding = model.encode(ground_truth) + similarity_score = util.cos_sim(answer_embedding, ground_truth_embedding) + print(f"Semantic Similarity: {similarity_score.item()}") + return similarity_score.item() \ No newline at end of file diff --git a/utils_objections.py b/utils_objections.py new file mode 100644 index 0000000000000000000000000000000000000000..ca309f4e2829ac8f3364b518e22e3d08166a7dc9 --- /dev/null +++ b/utils_objections.py @@ -0,0 +1,192 @@ +import chainlit as cl +import tempfile +import uuid +from chainlit.types import AskFileResponse +from langchain_community.document_loaders import PyMuPDFLoader +from langchain_core.prompts import ChatPromptTemplate +from langchain_core.runnables.passthrough import RunnablePassthrough +from langchain_openai import ChatOpenAI +from langchain_openai.embeddings import OpenAIEmbeddings +from langchain_qdrant import QdrantVectorStore +from langchain_text_splitters import RecursiveCharacterTextSplitter +from langchain.embeddings import CacheBackedEmbeddings +from langchain.storage import LocalFileStore +from operator import itemgetter +from qdrant_client import QdrantClient +from qdrant_client.http.models import Distance, VectorParams + + + +async def create_objections(session_state): + customer_document_file = session_state.customer_research_report_pdf + customer_file_path = "reports/" + customer_document_file + bettertech_document_file = session_state.bettetech_value_proposition_pdf + bettertech_file_path = "data/" + bettertech_document_file + objections = await process_files(customer_file_path, bettertech_file_path) + return objections + + + +def process_value_prop_pdf(file_path) -> str: + """ + Process the value proposition PDF file and return its content as a string. + + Args: + file (AskFileResponse): The uploaded PDF file. + + Returns: + str: The extracted content from the PDF. + """ + # Create a temporary file to store the uploaded content + # with tempfile.NamedTemporaryFile(mode="wb", delete=False) as temp_file: + # temp_file.write(file.content) + # temp_file_path = temp_file.name + + # Load the PDF using PyMuPDFLoader + loader = PyMuPDFLoader(file_path) + documents = loader.load() + + # Combine the content of all pages into a single string + value_prop_text = "\n".join(doc.page_content for doc in documents) + + # Return the text extracted from the PDF + return value_prop_text + +def process_text_file(file_path: str): + # import tempfile + text_splitter = RecursiveCharacterTextSplitter(separators=["\n\n","\n"],chunk_size=200, chunk_overlap=20) + # with tempfile.NamedTemporaryFile(mode="w", delete=False) as temp_file: + # with open(temp_file.name, "wb") as f: + # f.write(file.content) + + loader = PyMuPDFLoader(file_path) + documents = loader.load() + docs = text_splitter.split_documents(documents) + for i, doc in enumerate(docs): + doc.metadata["source"] = f"source_{i}" + return docs + +# Function to generate a response to the user's objection +def generate_response_to_objection(user_response, num): + from langchain_openai import ChatOpenAI + from ragas.llms.base import LangchainLLMWrapper + openai_model = LangchainLLMWrapper(ChatOpenAI(model_name="gpt-4o")) + scorer = SatisfyRate(llm=openai_model) + + satify_0_1 = scorer.single_turn_ascore(user_response['objection'][num], user_response['response'][num]) + # Implement your logic to generate a response based on the user's input + return f"Response to your objection: {user_response['objection'][num],user_response['response'][num], satify_0_1}" + + +async def process_files(customer_document, bettertech_document): + objections = [] + core_embeddings = OpenAIEmbeddings(model="text-embedding-3-small") + collection_name = f"pdf_to_parse_{uuid.uuid4()}" + qdrant_client = QdrantClient(":memory:") + qdrant_client.create_collection( + collection_name=collection_name, + vectors_config=VectorParams(size=1536, distance=Distance.COSINE), + ) + + # msg = cl.Message( + # content=f"Processing Customer Business Domain...", disable_human_feedback=True + # ) + # await msg.send() + # Process the customer + texts = process_text_file(customer_document) + print(f"Processing {len(texts)} text chunks from Customer Research Report") + + + # Notify the user that the second file is being processed + # msg = cl.Message( + # content=f"Processing BetterTech Value Proposition...", disable_human_feedback=True + # ) + # await msg.send() + + # Process the second file + value_prop_content = process_value_prop_pdf(bettertech_document) + print(f"Processing {len(value_prop_content)} text chunks from BetterTech Value Proposition") + + + # Create a Local File Store for caching + store = LocalFileStore("./cache/") + cached_embedder = CacheBackedEmbeddings.from_bytes_store( + core_embeddings, store, namespace=core_embeddings.model + ) + + # QDrant Vector Store Setup + vectorstore = QdrantVectorStore( + client=qdrant_client, + collection_name=collection_name, + embedding=cached_embedder + ) + vectorstore.add_documents(texts) + retriever = vectorstore.as_retriever(search_type="mmr", search_kwargs={"k": 5}) + + chat_openai = ChatOpenAI() #model='gpt-4o') + + # RAG Chain for generating objections + objection_prompt_template = """\ + Internally, review the value proposition information of sales rep's company then review your Context. + Internally, find areas where the sales' product/service could help add value and where it fails to fit. + Internally, review this final list and think step-by-step on what likely objections to buying product/service. + Using these thoughts, generate 5 Context-based sales objections. + The output is numbered objections only. + For example: + '1. Our current pricing structure is already optimized and we do not see the immediate need for AI assistance in pricing complex structural options in Foreign Exchange.' + '2. We have a dedicated team handling customer experience and efficiency, and we do not see how integrating AI for pricing options would significantly improve these aspects.', + '3. While we acknowledge the importance of technology and innovation in banking, we are currently focusing on other areas for digital transformation and do not prioritize the use of AI in pricing at this time.' + '4. Our customer base might not be ready for a shift towards AI-driven pricing models, and introducing such a change could potentially create confusion and resistance among our clients.', + '5. We are cautious about the potential risks and uncertainties associated with relying heavily on AI for pricing, especially in the volatile Foreign Exchange market where human expertise and judgment are highly valued.' + The output is NOT intro phrases or ** text **: + Context: {context} + Value Proposition: {{value_prop_content}} + Sales Opportunity: {{sales_opportunity}} + """ + + # Create a chain for generating objections with the retrieved context + objection_chain = ( + {"context": itemgetter("question") | retriever} + | RunnablePassthrough.assign(context=itemgetter("context")) + | ChatPromptTemplate.from_messages([ + ("system", "You a potential customer interested in the offering from this sales rep. Please use context business name and your name found in sales_opportunity."), + ("human", objection_prompt_template) + ]) + | chat_openai + ) + + # Ask the user for the sales opportunity + # sales_opportunity = await cl.AskUserMessage( + # content="Please describe the sales opportunity you want to discuss.", timeout=300 + # ).send() + sales_opportunity = "Developing analytic capabilities for the loan origination system" + #print(sales_opportunity['content']) + # Retrieve the documents based on the query (here we're simulating with the sales opportunity) + retrieved_docs = retriever.get_relevant_documents(value_prop_content) + + # Extract the content of the retrieved documents (chunks) + context_chunks = [doc.page_content for doc in retrieved_docs] + + # Combine the retrieved context chunks into a single string + context = "\n\n".join(context_chunks) + + # Log and display the retrieved chunks to Chainlit + # await cl.Message(content=f"Retrieved context chunks:\n{context}", author="retriever").send() + + #print (sales_opportunity["content"]) + # Generate objections using the chain, with the context included + #print ({"question": "Generate sales objections from {{value_prop_content}}", "sales_opportunity": sales_opportunity["content"], "context": context}) + objection_response = objection_chain.invoke({"question": "Generate 3 sales objections", "sales_opportunity": sales_opportunity, "context": context}) + + objections.extend(objection_response.content.split('\n')) # Assuming each objection is on a new line + # Remove empty strings or strings with only spaces + cleaned_objections = [objection for objection in objections if objection.strip()] + + # Output the cleaned list + # print(cleaned_objections) + + # Store the objection chain in user session + cl.user_session.set("objection_chain", objection_chain) + cl.user_session.set("objections", objections) + return cleaned_objections + #await cl.Message(content="We are ready to enter Sales simulation. Ok? ").send() \ No newline at end of file diff --git a/utils_output.py b/utils_output.py new file mode 100644 index 0000000000000000000000000000000000000000..5e9ce1dc8a1e622adaa2f7075a1716293c03c5fb --- /dev/null +++ b/utils_output.py @@ -0,0 +1,122 @@ +import asyncio +import json +import re +from datetime import datetime + +from utils_evaluate import evaluate_answers + +async def display_llm_responses(cl, session_state): + output = f"**Responses**" + await cl.Message(content=output).send() + for query, response in zip(session_state.queries, session_state.llm_responses): + query_display = { + "command": query["command"], + "message": query["message"], + "mood_score": query["mood_score"], + "previous_question": query["previous_question"], + "rep_answer": query["rep_answer"], + "next_question": query["next_question"], + } + query_json = json.dumps(query_display, indent=2) + await cl.Message(content="Query:").send() + await cl.Message(content=query_json).send() + await cl.Message(content="Response:").send() + await cl.Message(content=response).send() + + remaining_queries = session_state.queries[len(session_state.llm_responses):] + remaining_responses = session_state.llm_responses[len(session_state.queries):] + + for query in remaining_queries: + await cl.Message(content=f"**Query:** {query}").send() + + for response in remaining_responses: + await cl.Message(content=f"**Response:** {response}").send() + +def format_score(score): + if isinstance(score, (int, float)): + return f"{score*100:.1f}%" + return score + +def format_rogue_score(score): + if isinstance(score, str): + match = re.search(r'precision=([\d.]+), recall=([\d.]+), fmeasure=([\d.]+)', score) + if match: + precision = float(match.group(1)) + recall = float(match.group(2)) + fmeasure = float(match.group(3)) + return f"Precision: {precision*100:.1f}%, Recall: {recall*100:.1f}%, FMeasure: {fmeasure*100:.1f}%" + else: + precision = score.precision + recall = score.recall + fmeasure = score.fmeasure + return f"Precision: {precision*100:.1f}%, Recall: {recall*100:.1f}%, FMeasure: {fmeasure*100:.1f}%" + return score # + +def format_datetime(dt): + if isinstance(dt, datetime): + return dt.strftime("%Y-%m-%d %H:%M") + return str(dt) # + +async def display_evaluation_results(cl, session_state): + out_text = "*Preparing evaluation results ...*" + await cl.Message(content=out_text).send() + + evaluate_answers(session_state) + await asyncio.sleep(1) + + output = f"**Session Summary**" + await cl.Message(content=output).send() + output = f"**Start Time:** {format_datetime(session_state.start_time)} \n" + output = output + f"**End Time:** {format_datetime(session_state.end_time)} \n" + output = output + f"**Duration:** {session_state.duration_minutes} minutes \n" + output = output + f"**Total Number of Questions:** {len(session_state.questions)} \n" + output = output + f"**Total Questions Answered:** {len(session_state.responses)} \n" + await cl.Message(content=output).send() + + results_df = session_state.ragas_results.to_pandas() + columns_to_average = ['answer_relevancy', 'answer_correctness'] + averages = results_df[columns_to_average].mean() + + await cl.Message(content="**Overall Summary (By SalesBuddy)**").send() + output = f"**Overall Score:** {session_state.responses[-1]['overall_score']} \n" + output = output + f"**Overall Evaluation:** {session_state.responses[-1]['overall_evaluation']} \n" + output = output + f"**Final Mood Score:** {session_state.responses[-1]['mood_score']} \n" + output = output + f"**Customer Next Steps:** {session_state.llm_next_steps} \n" + await cl.Message(content=output).send() + + if session_state.do_ragas_evaluation: + await cl.Message(content="**Average Scores - Based on RAGAS**").send() + output = "Answer Relevancy: " + str(format_score(averages['answer_relevancy'])) + "\n" + output = output + "Answer Correctness: " + str(format_score(averages['answer_correctness'])) + "\n" + await cl.Message(content=output).send() + + await cl.Message(content="**Individual Question Scores**").send() + + for index, resp in enumerate(session_state.responses): + scores = session_state.scores[index] + relevancy = results_df.iloc[index].get('answer_relevancy', 'N/A') + correctness = results_df.iloc[index].get('answer_correctness', 'N/A') + bleu_score = scores.get('bleu_score', 'N/A') + rouge1_score = scores.get('rouge_score', {}).get('rouge1', 'N/A') + rouge1_output = format_rogue_score(rouge1_score) + rougeL_score = scores.get('rouge_score', {}).get('rougeL', 'N/A') + rougeL_output = format_rogue_score(rougeL_score) + semantic_similarity_score = scores.get('semantic_similarity_score', 'N/A') + output = f""" + **Question:** {resp.get('question', 'N/A')} + **Answer:** {resp.get('response', 'N/A')} + **Ground Truth:** {resp.get('ground_truth', 'N/A')} + """ + if session_state.do_ragas_evaluation: + numbers = f""" + **Answer Relevancy:** {format_score(relevancy)} + **Answer Correctness:** {format_score(correctness)} + **BLEU Score:** {format_score(bleu_score)} + **ROUGE 1 Score:** {rouge1_output} + **ROUGE L Score:** {rougeL_output} + **Semantic Similarity Score:** {format_score(semantic_similarity_score)} + """ + await cl.Message(content=output).send() + await cl.Message(content=numbers).send() + else: + await cl.Message(content=output).send() diff --git a/utils_pdf.py b/utils_pdf.py new file mode 100644 index 0000000000000000000000000000000000000000..fa3eeb53cc071a6944cf599bedb9d9d3af6af207 --- /dev/null +++ b/utils_pdf.py @@ -0,0 +1,104 @@ +import re +from fpdf import FPDF + +class PDF(FPDF): + def header(self): + self.set_font("Arial", "B", 12) + self.cell(0, 10, "", 0, 1, "C") + + def footer(self): + self.set_y(-15) + self.set_font("Arial", "I", 8) + self.cell(0, 10, f"Page {self.page_no()}", 0, 0, "C") + +def sanitize_content(content): + try: + # Use 'utf-8' encoding to handle Unicode characters + encoded_content = content.encode('utf-8', 'ignore').decode('utf-8') + return encoded_content + except UnicodeEncodeError as e: + print(f"Encoding error: {e}") + + # Remove problematic characters using 'ascii' encoding + sanitized_content = content.encode('ascii', 'ignore').decode('ascii') + return sanitized_content + +def replace_problematic_characters(content): + # Replace or remove problematic characters + replacements = { + '\u2013': '-', # en dash to hyphen + '\u2014': '--', # en dash to double hyphen + '\u2018': "'", # left single quotation mark to apostrophe + '\u2019': "'", # right single quotation mark to apostrophe + '\u201c': '"', # left double quotation mark to double quote + '\u201d': '"', # right double quotation mark to double quote + '\u2026': '...', # horizontal ellipsis + '\u2010': '-', # dash + '\u2022': '*', # bullet + '\u2122': 'TM' # TradeMark Symbol + } + + for char, replacement in replacements.items(): + content = content.replace(char, replacement) + + return content + +def generate_pdf_from_md(content, filename='output.pdf'): + try: + pdf = PDF() + pdf.add_page() + pdf.set_auto_page_break(auto=True, margin=15) + pdf.set_font('Arial', '', 12) + + sanitized_content = sanitize_content(content) + sanitized_content = replace_problematic_characters(sanitized_content) + + lines = sanitized_content.split('\n') + + for line in lines: + if line.startswith('#'): + header_level = min(line.count('#'), 4) + header_text = re.sub(r'\*{2,}', '', line.strip('# ').strip()) + pdf.set_font('Arial', 'B', 12 + (4 - header_level) * 2) + pdf.multi_cell(0, 10, header_text) + pdf.set_font('Arial', '', 12) + else: + parts = re.split(r'(\*\*\*.*?\*\*\*|\*\*.*?\*\*|\*.*?\*|\[.*?\]\(.*?\)|\([^ ]+?\))', line) + for part in parts: + if re.match(r'\*\*\*.*?\*\*\*', part): # Bold Italic + text = part.strip('*') + pdf.set_font('Arial', 'BI', 12) + pdf.write(10, text) + elif re.match(r'\*\*.*?\*\*', part): # Bold + text = part.strip('*') + pdf.set_font('Arial', 'B', 12) + pdf.write(10, text) + elif re.match(r'\*.*?\*', part): # Italic + text = part.strip('*') + pdf.set_font('Arial', 'I', 12) + pdf.write(10, text) + elif re.match(r'\[.*?\]\(.*?\)', part): # Markdown-style link + display_text = re.search(r'\[(.*?)\]', part).group(1) + url = re.search(r'\((.*?)\)', part).group(1) + pdf.set_text_color(0, 0, 255) # Set text color to blue + pdf.set_font('', 'U') + pdf.write(10, display_text, url) + pdf.set_text_color(0, 0, 0) # Reset text color + pdf.set_font('Arial', '', 12) + # elif re.match(r'\([^ ]+?\)', part): # Plain URL + # url = part[1:-1] + # pdf.set_text_color(0, 0, 255) # Set text color to blue + # pdf.set_font('', 'U') + # pdf.write(10, url, url) + else: + pdf.write(10, part) + pdf.set_text_color(0, 0, 0) # Reset text color + pdf.set_font('Arial', '', 12) # Reset font + + pdf.ln(10) + + pdf.output(filename) + return f"PDF generated: {filename}" + + except Exception as e: + return f"Error generating PDF: {e}" \ No newline at end of file diff --git a/utils_pose_objections.py b/utils_pose_objections.py new file mode 100644 index 0000000000000000000000000000000000000000..fbf89fd8834a67f4e191fcc18e26b82e11efbee8 --- /dev/null +++ b/utils_pose_objections.py @@ -0,0 +1,46 @@ +import chainlit as cl +import pandas as pd +from datetime import datetime + +async def pose_objections(session_state): + await cl.AskUserMessage( + content="Are you ready?", timeout=300 + ).send() + objection_chain = cl.user_session.get("objection_chain") + # Retrieve the list of objections + objections = cl.user_session.get("objections") + #print (objections[0]) + objection_responses = {} + + # Iterate through each objection + for i, objection in enumerate(objections): + # Return the objection in the form of a question + await cl.Message(content=f"Objection: {objection}").send() + + # Capture user input + user_response = await cl.AskUserMessage( + content="How would you respond to this objection?", timeout=600 + ).send() + + objection_responses[objection] = user_response['content'] + + # Process the user's response (you can implement your logic here) + # new_objection_response = generate_response_to_objection(user_response.content) + + # Send the response back to the user + # await cl.Message(content=f"Response to objection {i + 1}: {new_objection_response}").send() + print (objection_responses) + data = [] + for objection, response in objection_responses.items(): + data.append({ + "timestamp": datetime.now(), # Capture the current timestamp + "objection": objection, + "response": response + }) + + # Create a DataFrame + user_response = pd.DataFrame(data) + timestamp = datetime.now().strftime('%Y%m%d_%H%M%S') + + #r esponse = await generate_response_to_objection(user_response, 0) + # user_response.to_csv(f'data/user_response_{timestamp}.csv', index=Fals \ No newline at end of file diff --git a/utils_prep.py b/utils_prep.py new file mode 100644 index 0000000000000000000000000000000000000000..b64e2e5912006e7719db9b88d5e0f2d024aa2c05 --- /dev/null +++ b/utils_prep.py @@ -0,0 +1,136 @@ +import asyncio +import chainlit as cl +from langchain_openai import ChatOpenAI + +from utils_actions import offer_actions +from utils_data import get_company_data, get_opportunities +from utils_prompt import get_chat_prompt +from utils_objections import create_objections + + +async def prep_start(session_state): + + get_company_data(session_state) + chat_prompt = get_chat_prompt() + chat_model = ChatOpenAI(model=session_state.llm_model) + simple_chain = chat_prompt | chat_model + cl.user_session.set("chain", simple_chain) + + welcome_message = f"**Welcome to {session_state.company.name} SalesBuddy**\n*Home of {session_state.company.product}*" + await cl.Message(content=welcome_message).send() + await cl.Message(content=session_state.company.product_summary).send() + + opportunities = get_opportunities() + cl.user_session.set("opportunities", opportunities) + +async def prep_opportunities(session_state): + + research_title = "**Upcoming Opportunities**" + await cl.Message(content=research_title).send() + opportunities = cl.user_session.get("opportunities", None) + if opportunities is None: + await cl.Message(content="No scenarios found.").send() + return + opportunity_actions = [] + for idx, row in opportunities.iterrows(): + if row['Opportunity Description'] != "": + customer_name = row['Customer Name'] + opportunity_name = row['Opportunity Name'] + opportunity_stage = row['Opportunity Stage'] + name = f"{customer_name}: {opportunity_name} ({opportunity_stage})" + opportunity_action = cl.Action( + name=name, + value=f"{idx}", # Send the row index as value + description=f"{row['Customer Name']}: {row['Opportunity Name']} ({row['Opportunity Stage']}) " + f"Value: {row['Opportunity Value']}. Meeting with {row['Customer Contact']} " + f"({row['Customer Contact Role']})" + ) + opportunity_actions.append(opportunity_action) + await cl.Message(content="Select an opportunity (hover for details):", actions=opportunity_actions).send() + +async def prep_opportunity_analysis(): + + session_state = cl.user_session.get("session_state", None) + opportunity_analysis_message = "Retrieving and Reviewing HSBC Opportunitiy - please wait..." + await cl.Message(content=opportunity_analysis_message).send() + + if session_state.do_opportunity_analysis: + pass + else: + + agent_1_message = "*Retrieving data from SalesForce CRM ...*" + await cl.Message(content=agent_1_message).send() + await asyncio.sleep(2) + + if session_state.add_objections_to_analysis: + agent_3_message = "*Evaluating opportunity and identifying risks ...*" + await cl.Message(content=agent_3_message).send() + session_state.objections = await create_objections(session_state) + else: + agent_2_message = "*Evaluating opportunity ...*" + await cl.Message(content=agent_2_message).send() + await asyncio.sleep(1.5) + + agent_3_message = "*Determining next steps ...*" + await cl.Message(content=agent_3_message).send() + await asyncio.sleep(1) + output_message = "**Analysis Results**" + await cl.Message(content=output_message).send() + output_messages = get_opportunity_analysis() + for output_message in output_messages: + await cl.Message(content=output_message).send() + await cl.Message(content="").send() + + if session_state.add_objections_to_analysis: + output_message = "**Risks**" + await cl.Message(content=output_message).send() + for obj in session_state.objections: + await cl.Message(content=obj).send() + + output_message = "**Next Steps**" + await cl.Message(content=output_message).send() + output_messages = get_next_steps() + for output_message in output_messages: + await cl.Message(content=output_message).send() + await cl.Message(content="").send() + + await offer_actions() + +async def prep_research(session_state): + research_title = "**Customer Research**" + await cl.Message(content=research_title).send() + research_message = "Enter customer name to research" + await cl.Message(content=research_message).send() + + +def get_opportunity_analysis(): + output_1 = "**Summary:** The HSBC opportunity involves replacing the existing analytics engine for their loan origination system, valued at $250,000. The current system is slow and lacks flexibility, creating urgency due to an impending renewal with the existing vendor. Multiple meetings have been conducted, culminating in a proposal review. The decision process is progressing, with a meeting scheduled to discuss the next steps on October 18, 2024." + output_2 = "**Score: 75**" + output_3 = "**MEDDIC Evaluation:**" + output_4 = "**Metrics: 70** - The proposal discussed expected performance improvements and ROI, but specific quantitative metrics driving the decision were not detailed." + output_5 = "**Economic Buyer: 65** - There is no direct mention of engagement with the ultimate economic buyer, although the CFO's involvement in the proposal review suggests some level of engagement." + output_6 = "**Decision Criteria: 75** - The decision criteria seem to be partially understood, as there has been discussion about ROI, performance improvements, and contract terms, but further clarity is needed." + output_7 = "**Decision Process: 80** - The decision process appears to be well-understood, with clear next steps and urgency due to the vendor renewal timeline." + output_8 = "**Identify Pain: 85** - The pain points related to the existing system's performance and flexibility are clearly identified, driving the opportunity forward." + output_9 = "**Champion: 75** - John Smith, the VP of IT, appears to be a potential champion, as he is involved in every meeting, but his level of influence and commitment is not fully confirmed." + outputs = [output_1, output_2, output_3, output_4, output_5, output_6, output_7, output_8, output_9] + return outputs +def get_next_steps(): + output_10 = "Engage with the CFO and other key stakeholders to refine the understanding of the decision criteria and ensure alignment with their expectations. Confirm John Smith's role as a champion and clarify his influence on the decision-making process." + output_11 = "**Talking Points:**" + output_12 = " 1. Discuss specific quantitative metrics and performance benchmarks that demonstrate the expected improvements and ROI to solidify the business case" + output_13 = " 2. Address the decision criteria with more clarity, ensuring that all stakeholders, including the CFO, have a shared understanding of what is needed to move forward" + output_14 = " 3. Highlight the urgency of the situation due to the impending vendor renewal and how your solution can address the identified pain points in a timely manner" + outputs = [output_10, output_11, output_12, output_13, output_14] + return outputs + + +async def prep_latest_news(): + latest_news_message = "Retrieving latest news on this customer - please wait..." + await cl.Message(content=latest_news_message).send() + await asyncio.sleep(2) + agent_1_message = "Agent 1: Processing data..." + await cl.Message(content=agent_1_message).send() + await asyncio.sleep(1) + agent_2_message = "Agent 2: Evaluating opportunity..." + await cl.Message(content=agent_2_message).send() \ No newline at end of file diff --git a/utils_prompt.py b/utils_prompt.py new file mode 100644 index 0000000000000000000000000000000000000000..a7d6d7d69d9888b89b7240e9bc81832f5cc16658 --- /dev/null +++ b/utils_prompt.py @@ -0,0 +1,274 @@ +from langchain_core.prompts import ChatPromptTemplate + +def get_user_template(): + # user_template = get_user_template_openai_long() + user_template = get_user_template_openai_short() + return user_template + +def get_user_template_openai_short(): + user_template = """ + Conversation Mode: + {conversation_mode} + + Name: + {name} + + Sales Rep: + {sales_rep} + + Command: + {command} + + Next Question: + {next_question} + + Previous Question: + {previous_question} + + Message: + {message} + + Rep Answer: + {rep_answer} + + """ + return user_template + +def get_user_template_openai_long(): + user_template = """ + Conversation Mode: + {conversation_mode} + + Name: + {name} + + Company: + {company} + + Role: + {role} + + Sales Rep: + {sales_rep} + + Rep Company: + {rep_company} + + Attitude: + {attitude} + + Mood Score: + {mood_score} + + Scenario: + {scenario} + + Stage: + {stage} + + Command: + {command} + + Next Question: + {next_question} + + Previous Question: + {previous_question} + + Message: + {message} + + Rep Answer: + {rep_answer} + + Conversation History: + {conversation_history} + """ + return user_template + + +def get_system_template(): + # system_template = get_system_template_openai_long() + system_template = get_system_template_openai_short() + return system_template + +def get_system_template_openai_short(): + system_template = """ + You are playing a role in a conversation with a sales representative. + Your name is in the 'Name:' section. + If the sales rep gets your name wrong, you can correct them, politely + They can use your first name, full name or address you with a title and last name. + Your name does not need to match exactly what they say. + Your compnay information is in the 'Company:' section. + The sales rep's details is in the 'Sales rep:' section. + You do not need to use the sales rep's name in your response except in the greeting. + The sales rep's company information is in the 'Rep company:' section. + You are to have a conversation with the sales rep and evaluate their responses. + The previous question you asked is in the 'Previous question:' section. + The rep's answer to the previous question is in the 'Rep answer:' section. + You are given a command in the 'Command:' section. + You can make conversation but you must follow the command. + If a previous question and answer are provided, you must evaluate the rep's answer. + You will perform evaluation based on how well and thoroughly the rep answered the previous question. + You will ALWAYS provide your response in valid JSON format + Remember all string values must be enclosed in double quotes. + You will include with the following fields in JSON format: + - Continue: Yes or No depending on if you want to continue the conversation based on the reps answer to your question. + - Ask Follow Up: Yes or No depending on if you want to ask a follow up question. + - Response: Your response to the message but do not include a question in the response. + - Question: The next question to ask. + - Score: A score from 1 to 10 based on how well the rep answered your previous question. + - Evaluation: A evaluation of the rep based on their answer to your previous question. + - Mood Score: A score from 1 to 10 based on how you feel the conversation is going. + - Overall Score: A score from 1 to 10 the rep based on all of their answers to your questions. + - Overall Evaluation: A text evaluation of the rep based on all of their answers to your questions. + - Conclusion: A conclusion of the conversation - only at the end of the conversation. + You will not add any other fields to the JSON response + """ + return system_template + +def get_system_template_openai_long(): + system_template = """ + You playing a role in a conversation with a sales representative. + You are a customer of the sales rep's company. + You are to ask questions to the sales rep and evaluate their responses. + You are asking him questions about the product. + He will talk to you through the 'Message:' section and the 'Rep answer:' section. + Check the message section first to see if he has said anything. + If there is no rep answer, respond to the message and then ask your question. + If there is a rep answer, evaluate it before asking your question. It may be a multi part question. + If it is a multi part question, answer each part of it. + If he greets you, respond with a greeting and then ask your question. + Always reply by including the message section. + The question you ask is in the 'Next Question:' section. + + Your name is in the 'Name:' section. + Your compnay information is in the 'Company:' section. + The sales rep's details is in the 'Sales rep:' section. + The sales rep's company information is in the 'Rep company:' section. + You role is defined by the 'Role:' section. + The scenario you are in is defined by the 'Scenario:' section. + Your attitude is defined by the 'Attitude:' section. + Your mood score is defined by the 'Mood score:' section. + Your attitude and moode score should influence how you respond to the rep. + Your attitude and mood score will change as the conversation goes on. + You are in the 'Stage:' of the sales process. + The previous question you asked is in the 'Previous question:' section. + The sales reps answer will be found in the 'Rep answer:' section. + The next question you will ask is in the 'Next question:' section. + Use the question as provided to you. Do not alter it. + if the previous question is empty there will be no rep answer. + if the next question is empty you will: + - not ask any more questions + - wrap up the conversation with a pleasantry based on your currentmood score + - You will still evaluate the previous rep answer. + - You will now provide an overall evaluation of the rep based on all of their answers to your questions. + If the rep answer is present you will evaluate it event if it doesnt answer the question. + The conversation mode is defined by the 'conversation mode' section. + If the conversation mode is set to 'single', you will ask one question and get one response. You will not ask any follow up questions + If the conversation mode is set to 'follow up', you will ask follow up questions until + - the sales rep can't answer anymore + - the sales rep has satisfied your questions + - you run out of follow up questions. + + For the evaluations you will only look in the 'Rep answer:' section for information: + You will rank how you are feeling the rep did based on their answer to your question. + You will provide a mood score from 1 to 10 based on how you feel the conversation is going. + A mood score of 1 is extremely negative and means you will walk away. + A mood score of 10 is extremely positive and means you will continue the conversation. + + Your response must be in JSON format. + You must include the following fields: + - Continue: Yes or No depending on if you want to continue the conversation based on the reps answer to your question. + - Ask Follow Up: Yes or No depending on if you want to ask a follow up question. + - Response: Your response to the message + - Question: A question from you to the rep if you want to continue the conversation. + - Score: A score from 1 to 10 based on how well the rep answered your question. + - Message: The message the rep sent you. + - Rep Answer: The rep's answer to your question. + - Evaluation: A evaluation of the rep based on their answer to your question. + - Mood Score: A score from 1 to 10 based on how you feel the conversation is going. + - Overall Evaluation: A score from 1 to 10 the rep based on all of their answers to your questions. + You may not always have an rep answer to evaluate or score. + If there is no rep answer, there should be no score or evaluation. + You will always include the continue field with either Yes or No. + Do not belabor the point. Keep it short and concise. + Do not repeat yourself. + Stop asking follow up questions when the number of follow up questions reaches 5 or the rep says they can't answer the question. + If the rep says they can't answer the question, set the score to a 1. + If they have satisfied your questions thank them. + REMEMBER NEVER ASK FOLLOW UP QUESTIONS IF THE CONVERSATION MODE IS SINGLE. + The Command: section will tell you if you can ask an original question or a follow up question or end the session. + """ + return system_template + + +def get_chat_prompt(): + system_template = get_system_template() + user_template = get_user_template() + chat_prompt = ChatPromptTemplate.from_messages([ + ("system", system_template), + ("human", user_template) + ]) + return chat_prompt + +############################################################################ + +def old_get_user_template(): + user_template = """ + Conversation History: + {conversation_history} + + Question: + {question} + + Company: + {company} + + Role: + {role} + + Attitude: + {attitude} + + Personality: + {personality} + Twist: + {twist} + + Answer: + {answer} + + Number of Follow Up Questions: + {follow_up_questions} + + """ + return user_template + +def old_get_system_template(): + system_template = """ + You playing a role in a conversation with a sales representative. + You are a customer of his. + You are asking him questions about the product. + You role is defined by the {role} section. + Your attitude is defined by the {attitude} section. + There may be a twist that you should keep in mind. This is found in the {twist} section. + The customers answer will be found in the {answer} section. + The twist will not always be present. + The response needs to be in JSON format. + I need the following fields: + - Continue: Yes or No depending on if you want to continue the conversation based on the reps answer to your question. + - Question: A question from you to the rep if you want to continue the conversation. + - Score: A score from 1 to 10 based on how well the rep answered your question. + - Evaluation: A evaluation of the rep based on their answer to your question. + You will not always have a question or score. + If there is no answer, there should be no score or evaluation. + You will always have continue. + Do not belabor the point. Keep it short and concise. + Do not repeat yourself. + Stop asking follow up questions when the number of follow up questions reaches 5 or the rep says they can't answer the question. + If the rep says they can't answer the question, set the score to a 1. + If they have satisfied your questions thank them. + If they have not satisfied your questions, ask them to move on to the next question. + """ + return system_template \ No newline at end of file diff --git a/utils_simulation.py b/utils_simulation.py new file mode 100644 index 0000000000000000000000000000000000000000..a2b91202aade9f2d32ac9488940dc25458e254b8 --- /dev/null +++ b/utils_simulation.py @@ -0,0 +1,81 @@ +import asyncio +import json +import chainlit as cl +from datetime import datetime +from utils_chain_parameters import prepare_chain_parameters +from utils_output import display_evaluation_results +from utils_voice import reply_with_voice + + +async def do_simulation(client, session_state, message): + if session_state.status == "active": + chain = cl.user_session.get("chain") + history = cl.user_session.get("history", []) + history.append({"role": "user", "content": message}) + session_state.previous_answer = message.content + prompt_parm = prepare_chain_parameters(session_state, message, history) + session_state.queries.append(prompt_parm) + response_content = chain.invoke(prompt_parm) + json_str = response_content.content.strip('```json\n').strip('```') + try: + this_response = json.loads(json_str) + except json.JSONDecodeError as e: + print(f"JSON Decode Error: {e}") + print(response_content.content) + print(f"Error at position {e.pos}: {json_str[max(0, e.pos-10):e.pos+10]}") + this_response = {"Response": "Error receiving response from LLM"} + llm_response = this_response.get("Response", "No response from LLM") + print("LLM Response:") + print(llm_response) + session_state.llm_responses.append(this_response) + print("Next question:") + print(this_response.get("Question", "No question")) + + if session_state.question != "": + session_state.responses.append({ + "question_number": session_state.current_question_index, + "question": session_state.question, + "response": session_state.rep_answer, + "ground_truth": session_state.ground_truth, + "response_score": this_response.get("Score", "No score"), + "response_evaluation": this_response.get("Evaluation", "No evaluation"), + "mood_score": this_response.get("Mood Score", "No mood score"), + "overall_score": this_response.get("Overall Score", "No overall score"), + "overall_evaluation": this_response.get("Overall Evaluation", "No overall evaluation"), + }) + message_to_rep = llm_response + "\n\n" + this_response.get("Question", "No question") + print("Checking to continue") + print(session_state.current_question_index) + print(len(session_state.questions)) + if session_state.current_question_index < len(session_state.questions): + if session_state.do_voice: + await reply_with_voice(cl, client, message_to_rep) + else: + await cl.Message(message_to_rep).send() + # await cl.Message(this_response).send() + history.append({"role": "assistant", "content": response_content}) + cl.user_session.set("history", history) + session_state.current_question_index += 1 + else: + final_message = message_to_rep + conclusion = this_response.get("Conclusion", "") + if conclusion != "": + final_message = final_message + "\n\n" + conclusion + if session_state.do_voice: + await reply_with_voice(cl, client, final_message) + else: + await cl.Message(message_to_rep).send() + session_state.status = "complete" + end_time = datetime.now() + duration = end_time - session_state.start_time + duration_minutes = round(duration.total_seconds() / 60) + session_state.end_time = end_time + session_state.duration_minutes = duration_minutes + if session_state.do_evaluation: + await display_evaluation_results(cl, session_state) + else: + evaluate_actions = [ + cl.Action(name="Evaluate Performance", value="evaluate", description="Evaluate Performance"), + cl.Action(name="Display Queries and Responses", value="display_llm_responses", description="Display LLM Responses") + ] + await cl.Message(content="Click to evaluate", actions=evaluate_actions).send() \ No newline at end of file diff --git a/utils_voice.py b/utils_voice.py new file mode 100644 index 0000000000000000000000000000000000000000..82b0c9f7b88344f3ff7b8e2c93a3366cafa8346f --- /dev/null +++ b/utils_voice.py @@ -0,0 +1,26 @@ +import os + +async def reply_with_voice(cl,client, assistant_message): + + try: + speech_file_path = "response.mp3" + response = client.audio.speech.create( + model="tts-1", + voice="alloy", + input=assistant_message + ) + + with open(speech_file_path, "wb") as file: + file.write(response.content) + + # Send audio file to user + elements = [ + cl.Audio(name="Voice", path=speech_file_path, display="inline") + ] + await cl.Message(content=assistant_message, elements=elements).send() + except Exception as e: + await cl.Message(content=f"Error generating or sending audio: {e}").send() + finally: + if os.path.exists(speech_file_path): + os.remove(speech_file_path) + return