From 0d0656a125655145a9c869d993a7ef61e0b64165 Mon Sep 17 00:00:00 2001
From: ziming <2216646743@qq.com>
Date: Mon, 25 Sep 2023 21:57:22 +0800
Subject: [PATCH] =?UTF-8?q?=E4=B8=BA=E4=BA=86=E6=96=B9=E4=BE=BF=E5=90=84?=
=?UTF-8?q?=E4=BD=8D=E5=B0=BD=E5=BF=AB=E4=BD=BF=E7=94=A8=EF=BC=8C=E6=88=91?=
=?UTF-8?q?=E4=BB=AC=E7=8E=B0=E5=9C=A8=E6=8F=90=E4=BA=A4=E7=AC=AC=E4=B8=80?=
=?UTF-8?q?=E7=89=88=E6=96=B0=E7=89=88=E8=AE=B0=E5=BF=86=E6=A0=BC=E5=BC=8F?=
=?UTF-8?q?=EF=BC=8C=E4=BB=A5=E5=8F=8Aretrive=E5=92=8Creflect=EF=BC=8C?=
=?UTF-8?q?=E6=96=B9=E4=BE=BF=E7=BC=96=E5=86=99?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../reflect_and_retrieve/GA_memory_storage.py | 91 ++++++++++++
.../Prompt_template/poignancy_chat_v1.txt | 17 +++
.../__MACOSX/GA_memory_stream/._.DS_Store | Bin 0 -> 120 bytes
.../agent_memories/._.DS_Store | Bin 0 -> 120 bytes
.../agent_memories/John_memory.json | 1 +
metagpt/reflect_and_retrieve/gpt_structure.py | 67 +++++++++
metagpt/reflect_and_retrieve/reflect.py | 46 ++++++
metagpt/reflect_and_retrieve/retrive.py | 132 ++++++++++++++++++
metagpt/reflect_and_retrieve/run_gpt.py | 58 ++++++++
9 files changed, 412 insertions(+)
create mode 100644 metagpt/reflect_and_retrieve/GA_memory_storage.py
create mode 100644 metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt
create mode 100644 metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/._.DS_Store
create mode 100644 metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/agent_memories/._.DS_Store
create mode 100644 metagpt/reflect_and_retrieve/agent_memories/John_memory.json
create mode 100644 metagpt/reflect_and_retrieve/gpt_structure.py
create mode 100644 metagpt/reflect_and_retrieve/reflect.py
create mode 100644 metagpt/reflect_and_retrieve/retrive.py
create mode 100644 metagpt/reflect_and_retrieve/run_gpt.py
diff --git a/metagpt/reflect_and_retrieve/GA_memory_storage.py b/metagpt/reflect_and_retrieve/GA_memory_storage.py
new file mode 100644
index 000000000..83e3ee5a1
--- /dev/null
+++ b/metagpt/reflect_and_retrieve/GA_memory_storage.py
@@ -0,0 +1,91 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# @Desc : 对应 GA中 concept node 实现 & AssociativeMemory 实现
+# author: didi
+# Date:9.24
+
+from run_gpt import run_gpt_prompt_chat_poignancy,run_gpt_random_concept
+from gpt_structure import embedding
+from retrive import agent_retrive
+from reflect import *
+import time
+import json
+
+# Meomry_basic 类
+class Meomry_basic:
+ def __init__(
+ self,created_time,accessed_time,
+ description,
+ poignancy,
+ embedding_key = None) -> None:
+ self.created_time = created_time # 记忆创建时间
+ self.accessed_time = accessed_time # 记忆上次调用时间
+ self.description = description # 记忆描述
+ self.poignancy = poignancy # 记忆心酸程度
+ if embedding_key == None: # 记忆emmbeding key(避免重复向量化花钱)
+ self.embedding_key = embedding(self.description)
+ else:
+ self.embedding_key = embedding_key
+
+# Agent Memory 类
+class Agent_memeory:
+
+ def __init__(self,name,iss,
+ memory_forget = 0.99,
+ memories_list=[],memory_path = None) -> None:
+ self.name = name # agent name
+ self.iss = iss # agent iss(性格特征)
+ self.memories_list = memories_list # agent 记忆列表
+ self.concept_forget = memory_forget # agent 记忆遗忘速率(计算近因性)
+ self.memory_path = memory_path # agent 记忆JSON文件存储地址
+ self.curr_time = time.time() # agent 当前时间(现在使用的time.time(),等到环境搭好之后使用游戏内时间)
+ # 若给到memory_path 进行记忆初始化
+ if memory_path:
+ self.memories_list = self.memory_load(memory_path)
+
+ def memory_save(self,PATH):
+ # 将Memory存储在指定PATH的JSON文件中,命名为"{self.name}'s memory"
+ with open(PATH, 'w') as file:
+ memory_data = [mem.__dict__ for mem in self.memories_list]
+ json.dump(memory_data, file)
+
+ def memory_load(self,PATH):
+ """
+ 将Memory从指定路径的JSON文件中Load出来,返回一个记忆列表;如果load失败,返回一个空列表
+ """
+ try:
+ with open(PATH,'r') as file:
+ memory_data = json.load(file)
+ self.memories_list = [Meomry_basic(**mem) for mem in memory_data]
+ return self.memories_list
+ except:
+ return []
+
+
+if __name__ == "__main__":
+ # 例子,构建John Agent,实现retrive
+ John_iss = "John Lin is a pharmacy shopkeeper at the Willow Market and Pharmacy who loves to help people. He is always looking for ways to make the process of getting medication easier for his customers; John Lin is living with his wife, Mei Lin, who is a college professor, and son, Eddy Lin, who is a student studying music theory; John Lin loves his family very much; John Lin has known the old couple next-door, Sam Moore and Jennifer Moore, for a few years; John Lin thinks Sam Moore is a kind and nice man; John Lin knows his neighbor, Yuriko Yamamoto, well; John Lin knows of his neighbors, Tamara Taylor and Carmen Ortiz, but has not met them before; John Lin and Tom Moreno are colleagues at The Willows Market and Pharmacy; John Lin and Tom Moreno are friends and like to discuss local politics together; John Lin knows the Moreno family somewhat well — the husband Tom Moreno and the wife Jane Moreno."
+ John = Agent_memeory("John",John_iss,memory_path="agent_memories/John_memory.json")
+
+ # for i in range(3):
+ # memory = run_gpt_random_concept()
+ # curr_time = time.time()
+ # poignancy = run_gpt_prompt_chat_poignancy(John,memory)
+ # M = Meomry_basic(curr_time,curr_time,memory,poignancy)
+ # John.memories_list.append(M)
+
+ # John.memory_save(John.memory_path)
+
+ for i in range(len(John.memories_list)):
+ print(f"John记忆为:{John.memories_list[i].description}")
+ print(f"心酸程度为:{John.memories_list[i].poignancy}")
+ query = "How has John's personal connection with his neighbors, such as the Moores and Yuriko, influenced his role as a pharmacy shopkeeper?"
+
+ Top_v = agent_retrive(John,query,10,3)
+ print(f"John的相关信息:{Top_v}")
+
+ # John的相关信息:{'Had a friendly chat with Yuriko about her garden.': 2.4992317730827667, 'Helped Mrs. Moore carry groceries into her house.': 1.957656720441911, 'Discussed local politics with Tom Moreno.': 1.9458268038234035}
+ A=generate_focus_point(John.memories_list)
+ B=generate_insights_and_evidence(John,John.memories_list,question=A[0])
+
+
\ No newline at end of file
diff --git a/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt b/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt
new file mode 100644
index 000000000..572dd8a05
--- /dev/null
+++ b/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt
@@ -0,0 +1,17 @@
+poignancy_chat_v1.txt
+
+!!: agent name
+!!: iss
+!!: name
+!!: event description
+
+###
+Here is a brief description of !!.
+!!
+
+On the scale of 1 to 10, where 1 is purely mundane (e.g., routine morning greetings) and 10 is extremely poignant (e.g., a conversation about breaking up, a fight), rate the likely poignancy of the following conversation for !!.
+
+Conversation:
+!!
+
+Rate (return a number between 1 to 10):
\ No newline at end of file
diff --git a/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/._.DS_Store b/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/._.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..a5b28df1cbc6e15bd0d35cdadd0c2e65d5131c7d
GIT binary patch
literal 120
zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDI}u^SMB_!U6R08`;00ODZ-jv*mIP;rnB
Iur73U08|YJ=l}o!
literal 0
HcmV?d00001
diff --git a/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/agent_memories/._.DS_Store b/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/agent_memories/._.DS_Store
new file mode 100644
index 0000000000000000000000000000000000000000..a5b28df1cbc6e15bd0d35cdadd0c2e65d5131c7d
GIT binary patch
literal 120
zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDI}u^SMB_!U6R08`;00ODZ-jv*mIP;rnB
Iur73U08|YJ=l}o!
literal 0
HcmV?d00001
diff --git a/metagpt/reflect_and_retrieve/agent_memories/John_memory.json b/metagpt/reflect_and_retrieve/agent_memories/John_memory.json
new file mode 100644
index 000000000..2bac7eaaf
--- /dev/null
+++ b/metagpt/reflect_and_retrieve/agent_memories/John_memory.json
@@ -0,0 +1 @@
+[{"created_time": 1695640634.6113422, "accessed_time": 1695640634.6113422, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.00822820607572794, -0.005863511469215155, 0.012651615776121616, 0.008660569787025452, 0.016709178686141968, 0.02378663420677185, -0.00028955869493074715, -0.003728301962837577, -0.02039424516260624, -0.02626108191907406, -0.00543114822357893, -0.023081548511981964, 0.009146146476268768, -0.009931053034961224, -0.019183628261089325, -0.002715574111789465, 0.0278841070830822, -0.0023779980838298798, 0.04334275797009468, -0.033817462623119354, -0.015006332658231258, 0.025702334940433502, 0.0026091462932527065, 0.010509754531085491, -0.02689964883029461, 0.008168340660631657, 0.011653854511678219, -0.012871122919023037, -0.008540838025510311, -0.00470278225839138, 0.002361368853598833, -0.004499904345721006, 0.01017051562666893, -0.004928941838443279, -0.030598018318414688, -0.039085641503334045, 0.013389959000051022, -0.010316853411495686, 0.007197186350822449, -0.004649568349123001, 0.016230253502726555, -0.011367829516530037, 0.002165142446756363, -0.023041637614369392, -0.014301247894763947, 0.002025455702096224, -0.019329965114593506, -8.953869837569073e-05, -0.010203774087131023, 0.006492101587355137, 0.014434282667934895, -0.008234858512878418, -0.02192414551973343, -0.00638899952173233, -0.025156892836093903, -0.007124016992747784, 0.0026972817722707987, 0.00918605737388134, 0.008480972610414028, 0.0020803327206522226, -0.0004901503561995924, 0.009046371094882488, -2.13713228731649e-05, -0.0008855133200995624, -0.005278158001601696, 0.0032576911617070436, -0.002263255650177598, -0.0067282384261488914, 0.00375490915030241, 0.0045331628061831, 0.03198157995939255, 0.019622642546892166, -0.005384586285799742, -0.0164031982421875, 0.014420979656279087, 0.006006523966789246, -0.018505150452256203, -0.007416693493723869, -0.008441061712801456, 0.0014267988735809922, 0.00336079322732985, -0.028655709698796272, -0.0032892869785428047, -0.0005071954219602048, 0.01654953695833683, 0.022389767691493034, -0.017134889960289, 0.01915702037513256, 0.013190406374633312, -0.029986059293150902, 0.025196803733706474, 0.02620786800980568, 0.007835753262043, 0.007815797813236713, -0.009897793643176556, 0.0020038376096636057, 0.010103997774422169, 0.00301157683134079, 0.01083568949252367, -0.02132548950612545, -0.016137128695845604, 0.023214584216475487, -0.0036850657779723406, -0.012964247725903988, -0.034349601715803146, 0.006621810141950846, 0.019236842170357704, -0.017547298222780228, 0.0212323646992445, -0.012372242286801338, -0.027405181899666786, 0.02068692073225975, -0.010183818638324738, -0.035201024264097214, -0.018199170008301735, -0.018438631668686867, 0.030571412295103073, 0.000791141705121845, -0.024691270664334297, -0.013217013329267502, 0.020327726379036903, 0.00999756995588541, 0.0183189008384943, -0.004446690436452627, 0.019223537296056747, -0.007090758066624403, 0.006455516908317804, 0.01388883963227272, -0.02595510147511959, -0.0012912696693092585, 0.010409978218376637, 0.011946531012654305, 0.02374672330915928, 0.0032693317625671625, -0.021538345143198967, 0.021604862064123154, -0.026713401079177856, 0.007064151111990213, -0.0012023026356473565, -0.02212369814515114, 0.005022066179662943, 0.021937448531389236, -0.02314806543290615, -0.003987720236182213, 0.019329965114593506, 0.03461567312479019, 0.01179354079067707, 0.012824560515582561, -0.011547425761818886, 0.001461720559746027, 0.017746850848197937, -0.0036385036073625088, 0.016429806128144264, 0.003111352911219001, 0.02876213751733303, 0.0017094979993999004, 0.0016961945220828056, 0.013848929665982723, -0.0390058234333992, 0.011720371432602406, 0.002891845302656293, -0.0008688839734531939, 0.02360038459300995, -0.011866710148751736, -0.016882123425602913, 0.02630099281668663, 0.012531884014606476, 0.021245667710900307, -0.01596418395638466, 0.0011931564658880234, 0.009265878237783909, 0.021604862064123154, -0.04033616930246353, 0.0031828591600060463, 0.005341349635273218, 0.006206076592206955, -0.03283300623297691, -0.00270227063447237, 0.013955357484519482, -0.025542693212628365, -0.0364515520632267, -0.0025309883058071136, 0.004942245315760374, 0.01553847175091505, -0.008188296109437943, -0.016097217798233032, 0.012824560515582561, 0.007090758066624403, 0.008055261336266994, 0.012964247725903988, 0.007110713515430689, 0.043475791811943054, -0.010330157354474068, -0.011347874067723751, -0.6602786183357239, -0.03940492495894432, 0.02030112035572529, 0.011746978387236595, 0.028629103675484657, 0.0010892229620367289, 0.0070708030834794044, 0.005557531490921974, -0.0026623602025210857, -0.003788167843595147, -0.01475356612354517, 0.010509754531085491, -0.004024304449558258, 0.012372242286801338, -0.0027388553135097027, -0.014447586610913277, -0.0020171410869807005, -0.02777767926454544, 0.011840103194117546, 0.009033067151904106, -0.00862065888941288, 0.02772446535527706, -0.018438631668686867, -0.010123953223228455, -0.006595203187316656, -0.013097282499074936, -0.0049156383611261845, -0.045684173703193665, -0.009957659989595413, 0.04536489024758339, -0.042331695556640625, 0.027857501059770584, -0.013742501847445965, -0.017108283936977386, 0.05502321943640709, -0.00876699760556221, -0.00369504326954484, 0.00965833105146885, -0.0010418292367830873, 0.01807943731546402, -0.033764246851205826, 0.005407867021858692, 0.030864087864756584, 0.004277070984244347, 0.0021767830476164818, -0.0008189958753064275, 0.028974993154406548, -0.005374608561396599, -0.0035121203400194645, -0.0047726258635520935, 0.02772446535527706, 0.004802558571100235, -0.0021618164610117674, 0.006911161355674267, 0.026606973260641098, -0.0054644071497023106, 0.028735531494021416, -0.028363032266497612, -0.0057504321448504925, -0.004666198045015335, -0.00520831486210227, 0.001957275439053774, -0.024811001494526863, 0.0011407739948481321, -0.02107272297143936, 0.007749280892312527, -0.033178895711898804, -0.01128135621547699, -0.006212728098034859, -0.005095235072076321, 0.013589511625468731, 0.015139367431402206, -0.01226581446826458, 0.007849057205021381, -0.004027630668133497, 0.031263191252946854, 0.009465430863201618, 0.0001706587936496362, -0.0004527342680376023, 0.01106184907257557, 0.017121586948633194, -0.008241510018706322, -0.020513975992798805, 0.011268053203821182, 0.025941798463463783, -0.02216360904276371, -0.015418740920722485, 0.01470035221427679, 0.018252383917570114, -0.02502385713160038, 0.02604822628200054, 0.006229357328265905, -0.011447650380432606, 0.0026124720461666584, 0.0013203710550442338, 0.014474193565547466, -0.018784523010253906, 0.012472018599510193, 0.02793732099235058, -0.028363032266497612, 0.01080908253788948, -0.012199296616017818, 0.021152542904019356, 0.005890118423849344, 0.0037183244712650776, -0.0008339622872881591, -0.03206140175461769, 0.025742245838046074, 0.013729197904467583, -0.01591097004711628, 0.026580365374684334, 0.03466888517141342, -0.009585161693394184, -0.0010725936153903604, -0.01649632304906845, -0.02531653456389904, 0.04408775269985199, 0.036318518221378326, 0.02511698193848133, -0.005158426705747843, 0.0195029117166996, -0.004722737707197666, 0.025995012372732162, 0.004486600868403912, 0.015139367431402206, 0.0075630322098731995, 0.0007932203589007258, -0.02427886240184307, -0.011394436471164227, -0.0024977296125143766, -0.011480908840894699, -0.004612984135746956, 0.0188643429428339, -0.026287689805030823, 0.009232619777321815, -0.009651679545640945, -0.007835753262043, -0.019223537296056747, 0.018398720771074295, -0.00960511714220047, -0.03368442878127098, -0.010935465805232525, 0.012052958831191063, 0.024199042469263077, -0.0036717623006552458, -0.016483020037412643, 0.007596290670335293, 0.002910137642174959, -0.042092230170965195, 0.0007433323189616203, 0.007370131555944681, -0.0051251682452857494, -0.011534122750163078, 0.02300172857940197, -0.006891205906867981, 0.006522034294903278, -0.019329965114593506, -0.009884490631520748, -0.014580621384084225, 0.004127406515181065, 0.0148999048396945, 0.01142769493162632, -0.029533740133047104, 0.006515382323414087, 0.005813623778522015, 0.0015623281942680478, -0.0006285897106863558, 0.020380940288305283, 0.0031063640490174294, -0.024558236822485924, -0.015032939612865448, -0.014859993942081928, -0.01620364561676979, -0.0085674449801445, 0.011154972948133945, -0.01283121295273304, 0.004044259898364544, -0.005747105926275253, 0.006957723293453455, -0.0008401983068324625, 0.003911225125193596, 0.006385673303157091, -0.007310265675187111, -0.014075088314712048, 0.016882123425602913, -0.00232644728384912, 0.004795907065272331, 0.038447074592113495, 0.011241446249186993, 0.009472082369029522, 0.005833578761667013, 0.007596290670335293, -0.008540838025510311, 0.014314551837742329, -0.012072914279997349, -0.014793477021157742, 0.020261209458112717, 0.020713528618216515, -0.00591007387265563, 0.01293098833411932, -0.004469971638172865, -0.002166805323213339, 0.028150176629424095, -0.014075088314712048, -0.002442852593958378, -0.012245859019458294, 0.017560601234436035, -0.018851039931178093, 0.022323250770568848, 0.004390150308609009, 0.005560857243835926, -0.014314551837742329, -0.014620531350374222, -0.008680525235831738, 0.02212369814515114, 0.0040642148815095425, -0.005188359878957272, 0.01406178530305624, -0.023174673318862915, 0.007243748288601637, -0.0014525743899866939, -0.0030830830801278353, -0.012132779695093632, -0.028256604447960854, -0.003538727294653654, -0.00039723378722555935, -0.004476623144000769, 0.014101695269346237, 0.004599680192768574, 0.007037544157356024, -0.020154781639575958, -0.011620595119893551, 0.0317155122756958, 0.007296962197870016, 0.0018708027200773358, 0.0012721458915621042, 0.024172434583306313, -0.027298754081130028, 0.03437620773911476, 0.032088007777929306, 0.006315830163657665, -0.010256987996399403, 0.01044323667883873, -0.015325616113841534, 0.026274384930729866, 0.020035050809383392, 0.038846179842948914, -0.0195029117166996, -0.010995331220328808, 0.009312440641224384, -0.015684811398386955, -0.00817499216645956, -0.0021817716769874096, -0.00224163755774498, 0.0066617210395634174, -0.02409261465072632, -0.014341158792376518, 0.013370003551244736, 0.015684811398386955, 0.031023729592561722, 0.018345506861805916, 0.024066006764769554, 0.01406178530305624, 0.004040934145450592, -0.0015772946644574404, 0.007582987193018198, 0.020420851185917854, -0.024119220674037933, -0.014474193565547466, -0.014913207851350307, 0.012432107701897621, -0.00641560647636652, 0.00023759195755701512, -0.01172702293843031, -0.016083914786577225, 0.01650962606072426, -0.0030298689380288124, -0.01388883963227272, -0.02068692073225975, 0.00703089265152812, -0.008753693662583828, -0.027179023250937462, 0.0031678928062319756, 0.006515382323414087, 0.00417396891862154, -0.014208123087882996, 0.007124016992747784, -1.6460466213175096e-05, -0.007769235875457525, 0.013137192465364933, 0.015671506524086, -0.002151838969439268, -0.010928814299404621, 0.019635945558547974, 0.002065366366878152, -0.004509882070124149, 0.00459302868694067, -0.024465112015604973, 0.011474257335066795, -0.018797826021909714, 0.004519859328866005, -0.015698114410042763, -0.005328046157956123, -0.00389126967638731, -0.0005757915205322206, 0.00694441981613636, -0.01897077076137066, -0.006289223209023476, -0.017134889960289, -0.00448327511548996, -0.00131704518571496, -0.006811385042965412, -0.020274512469768524, -0.005624048877507448, 0.0030381837859749794, 0.008953246288001537, -0.0013976974878460169, -0.023121459409594536, 0.014540710486471653, 0.00026128877652809024, -0.02857588790357113, -0.007742628920823336, -0.03477531298995018, 0.007197186350822449, 0.1261170506477356, -0.009392261505126953, 0.012072914279997349, 0.02389306202530861, 0.014221427030861378, -0.018691398203372955, -0.007855708710849285, -0.025343142449855804, 0.005657307803630829, 0.013310138136148453, -0.0035021428484469652, 0.006685001775622368, 0.018997378647327423, 0.0005629037623293698, -0.00814838521182537, -0.019290056079626083, -0.015498561784625053, -0.008115126751363277, 0.0025110330898314714, -0.015086153522133827, 0.012691525742411613, -0.005690566264092922, -0.007183882873505354, 0.02689964883029461, -0.0006369043840095401, 0.020407548174262047, 0.012718132697045803, 0.021538345143198967, 0.027351967990398407, -0.019981836900115013, 0.013057371601462364, 0.025502784177660942, -0.0021036136895418167, -0.008833514526486397, -0.028602495789527893, 0.0030248803086578846, 0.025210106745362282, 0.013476431369781494, 0.000791141705121845, -0.012578446418046951, 0.010250336490571499, 0.023041637614369392, 0.02143191732466221, -0.009199360385537148, 0.02128557860851288, -0.00943217147141695, 0.007749280892312527, 0.02230994589626789, -0.01611052267253399, 0.0025309883058071136, 0.022975120693445206, 0.01571141742169857, 0.006402302999049425, -0.02482430636882782, -0.003778190119192004, 0.042970262467861176, 0.0027105852495878935, -0.01753399521112442, -0.00532139465212822, 0.017427567392587662, 0.023360922932624817, -0.028043748810887337, -0.015644900500774384, -0.005178382154554129, -0.011720371432602406, -0.01293098833411932, -0.0139420535415411, -0.010163863189518452, -0.006452190689742565, 0.002645730972290039, -0.01846523955464363, -0.005318068899214268, -0.02777767926454544, 0.006122929509729147, 0.02812357060611248, 0.011953182518482208, 0.02783089317381382, -0.011181579902768135, -0.0026906300336122513, 0.0031845220364630222, -0.016323378309607506, -0.009771410375833511, 0.0013594500487670302, -0.008500928059220314, -0.030252128839492798, 0.003714998485520482, 0.012871122919023037, 0.009465430863201618, -0.005510969087481499, 0.0027089223731309175, 0.01565820351243019, -0.005647330079227686, 0.029773201793432236, 0.0017111609922721982, 0.005371282808482647, 0.0077625843696296215, -0.010968724265694618, 0.029640167951583862, 0.002793732099235058, 0.019476303830742836, 0.0061063002794981, -0.02462475374341011, -0.014221427030861378, -0.012984203174710274, 0.015086153522133827, -0.004020978696644306, 0.02113923989236355, 0.019662553444504738, -0.0006069715600460768, 0.01287777442485094, 0.018704701215028763, -0.0187712199985981, 0.010829037986695766, 0.014154909178614616, -0.0027238887269049883, 0.01669587567448616, -0.00031803647289052606, 0.022961817681789398, 0.002008826471865177, -0.022961817681789398, 0.018345506861805916, -0.027644645422697067, 0.03482852876186371, -0.0013527983101084828, -0.007602942641824484, 0.012611704878509045, -0.01654953695833683, -0.017573906108736992, -0.009618421085178852, -0.020021747797727585, -0.019635945558547974, -0.003947809804230928, -0.015312313102185726, -0.011933227069675922, -0.019050592556595802, -0.018052831292152405, -0.003871314460411668, 0.01251192856580019, -0.007516469806432724, -0.024252256378531456, -0.036877263337373734, 0.0004801727191079408, 0.017427567392587662, -0.026966167613863945, -0.02054058387875557, -0.029719987884163857, -0.006685001775622368, -0.009259226731956005, 0.025529390200972557, 0.030571412295103073, -0.012472018599510193, 0.00930578913539648, -0.00652536004781723, 0.007742628920823336, -2.9309243473107927e-05, -0.023267798125743866, -0.009392261505126953, 0.019196931272745132, 0.01470035221427679, 0.01287777442485094, 0.0019173650071024895, 0.010270291939377785, 0.014048481360077858, 0.004845794755965471, 0.01053636148571968, -0.0036052449140697718, 0.007283658720552921, -0.009585161693394184, -0.026327598839998245, 0.0005969939520582557, 0.004293700214475393, 0.021112632006406784, -0.011853406205773354, -0.01251192856580019, -0.03373764082789421, 0.015631595626473427, -0.006708282977342606, 0.0087936045601964, -0.012957596220076084, -0.006056412123143673, -0.013795715756714344, 0.0024777743965387344, -0.003591941436752677, 0.000335081567754969, 0.024957340210676193, 0.0007366805803030729, 0.009957659989595413, -0.008727086707949638, 0.03163569048047066, -0.0280703566968441, 0.0001236808457178995, -0.011800192296504974, 0.009106236509978771, -0.015897667035460472, 0.002299840096384287, -0.001229741028510034, 0.009339047595858574, -0.015831148251891136, -0.008826863020658493, 0.0016512952279299498, 0.01921023428440094, -0.006402302999049425, 0.02389306202530861, -0.0062925489619374275, 0.004237160552293062, 0.01935657300055027, 0.01277799904346466, -0.016882123425602913, 0.0076960669830441475, -0.032034795731306076, -0.018651487305760384, -0.001671250443905592, -0.002958362689241767, -0.011633899062871933, -0.022788872942328453, -0.011713719926774502, -0.0177734587341547, 0.01470035221427679, 0.008121778257191181, 0.004077518358826637, -0.00028623282560147345, 0.0005990726058371365, 0.027857501059770584, 0.020274512469768524, 0.0044134315103292465, -0.00015028782945591956, -0.012199296616017818, -0.01709498092532158, 0.039670996367931366, -0.010982028208673, -0.01487329788506031, 0.004509882070124149, 0.02639411762356758, -0.013143844902515411, -0.035440489649772644, 0.019742373377084732, 0.03988385200500488, -0.01979558728635311, -0.025396356359124184, -0.015884362161159515, 0.016775695607066154, 0.02241637371480465, -0.01631007343530655, -0.00246280780993402, 0.0006290054880082607, 0.020673617720603943, -0.006385673303157091, -0.015937576070427895, -0.01509945746511221, 0.030651232227683067, -0.025995012372732162, 0.028096962720155716, -0.0015856092795729637, 0.02772446535527706, -0.021019509062170982, 0.0029068118892610073, -0.01571141742169857, -0.022642534226179123, -0.01734774559736252, 0.013742501847445965, 0.002535977168008685, 0.023520564660429955, -0.012664918787777424, 0.016376592218875885, 0.002426223363727331, 4.812120459973812e-05, 0.0018308922881260514, -0.012691525742411613, -0.004127406515181065, 0.024318773299455643, -0.018584970384836197, -2.904940993175842e-05, -0.022389767691493034, 0.010982028208673, 0.012591749429702759, -0.009438823908567429, -0.012817909009754658, 0.0008214903064072132, -0.00215516472235322, -0.020021747797727585, 0.022975120693445206, -0.0011249760864302516, 0.010762520134449005, 0.006428909953683615, -0.015525168739259243, -0.010476495139300823, -0.009558554738759995, -0.0018292294116690755, 1.1156610071338946e-06, -0.027059290558099747, -0.016735786572098732, -0.027857501059770584, -0.019236842170357704, 0.019396483898162842, -0.0011183243477717042, -0.01960933953523636, 0.017573906108736992, 0.01182014774531126, -0.026926256716251373, 0.007815797813236713, -0.009225968271493912, 0.001580620533786714, -0.018305597826838493, -0.002123568905517459, -0.006741541903465986, -0.0256092119961977, 0.018145956099033356, -0.017706939950585365, -0.03216782957315445, -0.018797826021909714, 0.02471787855029106, 0.008135082200169563, -0.01293098833411932, -0.0170417670160532, 0.007104061543941498, -0.017693636938929558, 0.00940556451678276, -0.029294276610016823, -0.026088137179613113, 0.028017142787575722, -0.0019273426150903106, 0.005504317581653595, 0.018212473019957542, -0.036478158086538315, 0.015498561784625053, 0.020700225606560707, 0.0039278543554246426, 0.02157825417816639, -0.02211039513349533, -0.017813367769122124, -0.020620403811335564, -0.010543012991547585, -0.008194947615265846, -0.020607100799679756, 0.011274704709649086, 0.010296898894011974, -0.017560601234436035, 0.012026351876556873, 0.004207227379083633, -0.0015656540635973215, 0.01277799904346466, 0.024864215403795242, 0.002692293142899871, 0.017148194834589958, 0.001515766023658216, 0.0015407099854201078, -0.02048736996948719, -0.006990982219576836, -0.028363032266497612, -0.007862360216677189, 0.007596290670335293, 0.02265583723783493, -0.011321267113089561, -0.03453585132956505, -0.03073105402290821, -0.01674908958375454, -0.03256693482398987, -0.017693636938929558, -0.01145430188626051, 0.004127406515181065, -0.007250400260090828, -0.02551608718931675, 0.009571858681738377, 0.017201408743858337, -0.0188643429428339, 0.020021747797727585, -0.014966421760618687, -0.02117915078997612, 0.003984394017606974, -0.03054480440914631, 0.022150304168462753, -0.015285706147551537, -0.02674000710248947, -0.02227003686130047, -0.018651487305760384, -0.02127227559685707, -0.0020620403811335564, 0.0019273426150903106, -0.010868947952985764, 0.005028717685490847, -0.01837211474776268, 0.007237096782773733, 0.009139494970440865, 0.019928622990846634, 0.01620364561676979, -0.011028590612113476, -0.013396610505878925, 0.0066517433151602745, 0.004366869572550058, -0.007795842830091715, -0.010103997774422169, 0.01629677042365074, 0.005727150943130255, 0.008813560009002686, -0.007516469806432724, -0.032194435596466064, -0.005820275284349918, -0.00015756316133774817, 0.036371730268001556, -0.0139420535415411, -0.024371987208724022, 0.02093968726694584, 0.006222705822438002, -0.014128302223980427, -0.013017461635172367, 0.012185993604362011, -0.002667349064722657, 0.006262616254389286, 0.025822067633271217, -0.012851167470216751, 0.013396610505878925, -0.02595510147511959, -0.005131819751113653, -0.030012665316462517, -0.013675983995199203, -0.005427822470664978, -0.013729197904467583, -0.013981964439153671, 0.008627311326563358, 0.010409978218376637, -0.011953182518482208, 0.002033770550042391, -0.020952990278601646, -0.011055197566747665, -0.012052958831191063, -0.01553847175091505, 0.002067029243335128, -0.018837736919522285, -0.021857628598809242, 0.01822577603161335, -0.011075152084231377, -0.012518581002950668, 0.022482892498373985, 0.012545187957584858, -0.023041637614369392, 0.019143717363476753, 0.24946697056293488, -0.018106045201420784, 0.02176450379192829, 0.025396356359124184, 0.00021004957670811564, 0.019023984670639038, 0.02892177924513817, 0.008846818469464779, 0.008660569787025452, 0.018212473019957542, -0.03256693482398987, 0.0014974736841395497, 0.018292292952537537, -0.004094148054718971, 0.005703869741410017, -0.022043876349925995, -0.016083914786577225, -0.023387528955936432, -0.009585161693394184, -0.006904509384185076, 0.01204630732536316, -0.014979725703597069, -0.0035254238173365593, 0.004646242596209049, 0.028336426243185997, 0.01995522901415825, -0.0399104580283165, 0.0028752160724252462, 0.008853469975292683, -0.009053022600710392, -0.009704893454909325, 0.003152926219627261, -0.001339494832791388, -0.01728122867643833, 0.02709920145571232, -0.014487496577203274, 0.02230994589626789, 0.005081931594759226, 0.025649121031165123, 0.0038413817528635263, 0.016137128695845604, 0.002880204701796174, 0.011620595119893551, -0.008747042156755924, -0.004450016189366579, 0.0048391432501375675, -0.022536106407642365, -0.013809018768370152, 0.002065366366878152, 0.02048736996948719, -0.015205885283648968, -0.011414390988647938, 0.026912953704595566, 0.008454365655779839, 0.007875664159655571, 0.0002402942191110924, 0.018145956099033356, -0.010503102093935013, -0.022815478965640068, -0.010496450588107109, -0.008660569787025452, 0.04214544594287872, -0.0025891910772770643, 0.010822386480867863, -0.034748706966638565, 0.01846523955464363, -0.008015350438654423, 0.0008198273717425764, 0.01729453168809414, -0.0042870487086474895, 0.008633962832391262, 0.008627311326563358, -0.0057404544204473495, 0.004350239876657724, -0.036318518221378326, -0.025210106745362282, 0.025436265394091606, 0.0029633515514433384, 0.045045606791973114, 0.0029633515514433384, -0.010948769748210907, 0.026221171021461487, -0.0072703552432358265, 0.003801471320912242, -0.004975503776222467, -0.03738279640674591, 0.0027338664513081312, 0.021711289882659912, 0.019276751205325127, -0.027804287150502205, -0.003418995998799801, -0.011500864289700985, -0.002088647335767746, -0.020620403811335564, -0.006844643969088793, 0.01061618234962225, -0.009684938006103039, 0.024052703753113747, -0.022735659033060074, 0.01046984363347292, -0.006455516908317804, -0.027179023250937462, 0.02876213751733303, 0.02684643492102623, -0.0355469174683094, 0.026314295828342438, 0.01391544658690691, 0.01576463133096695, -0.0056074196472764015, -0.026287689805030823, 0.014607228338718414, -0.005284809973090887, 0.028043748810887337, 0.017693636938929558, 0.010190470144152641, 0.008893380872905254, -0.007543076761066914, -0.027351967990398407, 0.027272148057818413, 0.0011682123877108097, -0.00014425968402065337, -0.024837609380483627, -0.0326201468706131, 0.014620531350374222, -0.010782475583255291, -0.021697986871004105, -0.03975081816315651, 0.0024245604872703552, -0.015724720433354378, -0.021405309438705444, 0.037515830248594284, 0.011693764477968216, 0.012099521234631538, 0.014447586610913277, -0.003778190119192004, 0.006319155916571617, 0.01833220385015011, -0.003581963712349534, 0.013981964439153671, 0.00680805929005146, 0.015897667035460472, -0.008115126751363277, -0.012252510525286198, -0.027511609718203545, 0.013755804859101772, -0.02374672330915928, 0.010915510356426239, 0.0012289095902815461, 0.007842405699193478, -0.015551775693893433, -0.016163736581802368, 0.003310905070975423, -0.01935657300055027, -0.007217141333967447, 0.031396228820085526, -0.024212345480918884, -0.03743601217865944, 0.0037083467468619347, 0.00580032030120492, 0.016336681321263313, -0.023334315046668053, 0.001988871255889535, 0.040815096348524094, -0.02059379778802395, 0.01103524211794138, -0.009645028039813042, -0.17092318832874298, 0.016376592218875885, 0.032433900982141495, -0.01773354783654213, 0.016270164400339127, 0.020713528618216515, -0.010210425592958927, -0.009006460197269917, -0.013343396596610546, 0.017361050471663475, 0.02783089317381382, 0.029959451407194138, -0.017693636938929558, -0.026620276272296906, -0.0015689799329265952, 0.036824051290750504, -0.000253181962762028, -0.0044899266213178635, 0.0386333242058754, 0.03222104534506798, 0.01251192856580019, -0.018784523010253906, 0.016044003888964653, -0.008753693662583828, 0.021511737257242203, 0.022642534226179123, -0.0016537896590307355, 0.0026224497705698013, -0.00778253935277462, -0.0027521587908267975, -0.006984330248087645, 0.0074965148232877254, 0.011660506017506123, -0.011534122750163078, 0.024890823289752007, 0.010556316003203392, -0.005338023882359266, -0.017893189564347267, -0.005953310057520866, 0.023720115423202515, 0.002163479570299387, 0.0011574033414945006, -0.0011025264393538237, 0.006911161355674267, -0.05310751870274544, 4.6094501158222556e-05, -0.0002053725766018033, 0.002008826471865177, -0.0386333242058754, -0.005434473976492882, 0.010656092315912247, -0.003405692521482706, -0.005584138445556164, -0.011095107533037663, 0.015365527011454105, 0.020700225606560707, -0.013702590949833393, 0.04092152416706085, 0.0013328430941328406, 0.0063690440729260445, 0.00021784458658657968, -0.021006204187870026, -0.006089671049267054, 0.009033067151904106, 0.017055070027709007, -0.008407803252339363, -0.022975120693445206, -0.007962136529386044, -0.007084106560796499, 0.007303614169359207, -0.0006460505537688732, -0.03123658522963524, 0.02753821760416031, 0.0014866646379232407, 0.009704893454909325, -0.006116278003901243, -0.004855772480368614, 0.00296834041364491, -0.0018957467982545495, -0.017693636938929558, -0.023028334602713585, 0.017613815143704414, -0.037409402430057526, -0.01475356612354517, -0.015432043932378292, 0.02334761805832386, 0.005520946811884642, 0.0053247204050421715, -0.009837928228080273, -0.02117915078997612, 0.03392389044165611, -0.017600512132048607, -0.01733444258570671, -0.025795459747314453, -0.001824240549467504, 0.012485321611166, 0.013336745090782642, 0.011973137967288494, 0.0040708668529987335, -0.01645641215145588, 0.019130414351820946, -0.016429806128144264, -0.01492651179432869, 0.008773649111390114, 0.018239079043269157, 0.007729325443506241, 0.010549664497375488, 0.004855772480368614, 0.013649377040565014, -0.007908922620117664, -0.0063590663485229015, 0.023680206388235092, 0.007396738510578871, 0.01504624355584383, -0.013064024038612843, 0.03533405810594559, 0.022589320316910744, -0.01678900048136711, 0.03003927320241928, -0.04456667974591255, 0.023467350751161575, 0.019782284274697304, 0.0023497282527387142, -0.008075215853750706, -0.0011923249112442136, 0.013536297716200352, -0.09966971725225449, -0.0011407739948481321, 0.005291461944580078, 0.01492651179432869, -0.0005080268601886928, 0.019077198579907417, 0.019569428637623787, 0.007622897624969482, 0.004536489024758339, 0.01346977986395359, -0.030119093134999275, -0.00790227111428976, 0.016044003888964653, -0.0008921650587581098, 0.00661183288320899, -0.0148999048396945, -0.0037815161049365997, -0.005727150943130255, -0.015392133966088295, 0.006864598952233791, -0.0018392070196568966, -0.017893189564347267, -0.0043568918481469154, -0.0006281739915721118, -0.005241573788225651, -0.009704893454909325, -0.030331948772072792, 0.033178895711898804, 0.010303550399839878, 0.008653918281197548, 0.005481036379933357, -0.022935209795832634, 0.0076295495964586735, -0.03533405810594559, -0.0022366486955434084, 0.01022372953593731, -0.014460889622569084, -0.0032793094869703054, -0.006172817666083574, -0.02176450379192829, -0.006342437118291855, 0.0023048289585858583, 0.010130604729056358, -0.020314423367381096, -0.012811257503926754, -0.006605180911719799, -0.020021747797727585, 0.003418995998799801, -0.0037216502241790295, -0.02921445667743683, -0.04038938507437706, 0.006601855158805847, 0.013117237947881222, -0.0032061401288956404, 0.03160908445715904, -0.019662553444504738, 0.006059737876057625, 0.02462475374341011, -0.014248033985495567, -0.003352478612214327, -0.005753757897764444, -0.02221682295203209, 0.007503166329115629, -0.0004431723791640252, 0.016935337334871292, 0.001329517224803567, -0.002858586609363556, -0.001549024716950953, 0.003548705019056797, -0.0023547171149402857, -0.003954461310058832, 0.031103551387786865, -0.011653854511678219, 0.02270905114710331, -0.0023896386846899986, -0.022336553782224655, -0.017906492576003075, -0.013396610505878925, -0.01086229644715786, -0.0248775202780962, -0.006641765590757132, -0.012758043594658375, 0.01396866049617529, -0.0011050208704546094, 0.01501963660120964, 0.006990982219576836, -0.009784714318811893, 0.005567509215325117, 0.023015031591057777, 0.007908922620117664, -0.026287689805030823, 0.006704957224428654, 0.008447714149951935, -0.019023984670639038, 0.0005899264942854643, 0.0031562522053718567, 0.004240486305207014, 0.006365718320012093, 0.013070675544440746, 0.011460953392088413, -0.01807943731546402, -0.014833386987447739, -0.057204991579055786, 0.031343013048172, 0.01209286879748106, 0.0003608570550568402, 0.017720244824886322, -0.017254622653126717, 0.019875409081578255, 0.03871314600110054, 0.011667157523334026, 0.014048481360077858, -0.026367509737610817, 0.02147182635962963, -0.0062326835468411446, -0.01595088094472885, -0.019170323386788368, -0.04092152416706085, 0.02536974847316742, 0.001242213067598641, 0.021697986871004105, 0.008833514526486397, -0.0034090185072273016, 0.015551775693893433, 0.02403940074145794, 0.017653726041316986, -0.02127227559685707, 0.0011956508969888091, -0.05582142993807793, 0.0021069396752864122, -0.006605180911719799, -0.021831020712852478, -0.007084106560796499, -0.021352095529437065, -0.008487624116241932, 0.024784395471215248, 0.008487624116241932, -0.010689351707696915, -0.004998784977942705, 0.01283121295273304, -0.026128048077225685, 0.00918605737388134, -0.045098818838596344, -0.01660275086760521, -0.0013062360230833292, 0.0051085385493934155, -0.017853278666734695, 0.017467478290200233, -0.013729197904467583, 0.014859993942081928, 0.026181261986494064, 0.013795715756714344, 0.0036351776216179132, 0.0042803967371582985, 0.008081868290901184, -0.005840230733156204, -0.00918605737388134, -0.018385417759418488, 0.005770387127995491, -0.026567062363028526, -0.012079565785825253, -0.01787988655269146, 0.008900032378733158, -0.013995267450809479, 0.008461017161607742, 0.009625072591006756, 0.0026740008033812046, -0.010722610168159008, -0.007815797813236713, -0.009059674106538296, 0.03653137385845184, -0.03594601899385452, -0.03158247843384743, 0.00039099776768125594, -0.007117365021258593, 0.008846818469464779, 0.021804414689540863, -0.011567381210625172, -0.006931116338819265, -0.018491845577955246, -0.005637352354824543, 0.024638056755065918, 0.01768033392727375, 0.002057051518931985, -0.01285781990736723, 0.010523057542741299, 0.026034923270344734, -0.0010251998901367188, -0.014607228338718414, -0.01472695916891098, 0.01162724755704403, 0.016070611774921417, -0.011520818807184696, -0.006588551681488752, 0.023307709023356438, 0.02471787855029106, 0.001933994353748858, 0.015777934342622757, 0.003994371742010117, -0.02393297292292118, 0.01361611858010292, 0.017999617382884026, 0.011740326881408691, 0.008707132190465927, 0.010363415814936161, -0.007742628920823336, 0.00632913364097476, -0.018106045201420784, -0.024145828559994698, -0.01994192600250244, 0.0087936045601964, 0.012199296616017818, -0.009738151915371418, 0.013902143575251102, 0.0024578191805630922, 0.039138857275247574, 0.011660506017506123, 0.012698178179562092, 0.0019273426150903106, -0.010230381041765213, -0.010250336490571499, 0.02471787855029106, 0.007895619608461857, 0.008055261336266994, 0.01793310046195984, -0.007097410038113594, 0.008979853242635727, 0.022828781977295876, 0.012698178179562092, 0.002812024438753724, -0.0007400064496323466, -0.03477531298995018, 0.011733675375580788, -0.01926344819366932, -0.025649121031165123, -0.006122929509729147, -0.004257115535438061, 0.0005146786570549011, -0.00266069732606411, 0.037116728723049164, -0.026274384930729866, 0.04571077972650528, 0.010722610168159008, 0.005204989109188318, 0.01263166032731533, -0.01901068165898323, 0.015644900500774384, 0.022043876349925995, -0.0029300928581506014, -0.031103551387786865, -0.03865993022918701, 0.009671634994447231, -0.007735977414995432, 0.014128302223980427, -0.029533740133047104, -0.036132268607616425, -0.02230994589626789, 0.004307003691792488, 0.019635945558547974, -0.012418804690241814, -0.006897857878357172, 0.023813240230083466, 0.0036418293602764606, 0.0032144549768418074, 0.018145956099033356, -0.011135018430650234, -0.0029134636279195547, 0.0003758234961424023, -0.005444451700896025, -0.003242724807932973, -0.014514103531837463, 0.012558490969240665, 0.006102974526584148, -0.02344074286520481, 0.005471058655530214, 0.012112824246287346, -0.0012097858125343919, 0.0028486091177910566, 0.00814838521182537, 0.02620786800980568, 0.0004163575649727136, -0.008540838025510311, 0.019822195172309875, -0.019476303830742836, -0.017520692199468613, 0.007429996971040964, -0.011055197566747665, -0.00375490915030241, -0.004459993913769722, -0.04206562414765358]}, {"created_time": 1695640639.8336132, "accessed_time": 1695640639.8336132, "description": "Discussed local politics with Tom Moreno.", "poignancy": 3, "embedding_key": [0.010434070602059364, -0.001115997787564993, 0.02230638824403286, -0.03039313293993473, -0.019321348518133163, 0.023961728438735008, 0.005725848954170942, 0.012028353288769722, -0.009647105820477009, -0.03248266130685806, 0.006699379067867994, 0.008629478514194489, 0.0100338039919734, -0.017842397093772888, -0.0236767940223217, -0.002206555102020502, 0.016797633841633797, -0.018181605264544487, 0.038398467004299164, -0.027584481984376907, -0.0015942826867103577, 0.0038839438930153847, 0.015155861154198647, -0.0013780368026345968, 0.00640087528154254, 0.017910238355398178, 0.01861579343676567, -0.018792182207107544, 0.01276782900094986, -0.01678406447172165, 0.026471875607967377, -0.012320073321461678, 0.00222181947901845, 0.007937491871416569, -0.015237271785736084, -0.016824770718812943, 0.018385130912065506, 0.0024728341959416866, -0.010108429938554764, -0.016214193776249886, -0.004558969754725695, -0.028764929622411728, 0.014192507602274418, -0.025549227371811867, -0.007727182470262051, -0.0029986081644892693, 0.015413660556077957, -0.013636204414069653, -0.01072579063475132, 0.00399588281288743, 0.022645598277449608, 0.008866924792528152, -0.017150411382317543, -0.009355385787785053, 0.005549460183829069, -0.017611734569072723, -0.011200683191418648, 0.015210134908556938, -0.009199350140988827, 0.010406934656202793, -0.008120665326714516, -0.0023541110567748547, 0.016064941883087158, 0.005522323772311211, -0.0039212568663060665, -0.027679460123181343, -0.016811201348900795, 0.01630917191505432, -0.002284573158249259, 0.0075507936999201775, 0.046675167977809906, 0.011818043887615204, -0.0023100138641893864, -0.029226252809166908, 0.016987590119242668, 0.0017554069636389613, -0.019253507256507874, -0.01591568998992443, -0.008907630108296871, 0.004162095487117767, 0.0032241821754723787, -0.01411109697073698, -0.019267074763774872, 0.019687693566083908, 0.009145076386630535, -0.005919198505580425, 0.011017510667443275, 0.01121425163000822, -0.030474543571472168, -0.019918356090784073, -0.017584597691893578, 0.01697402261197567, 0.021532991901040077, 0.012564304284751415, -0.018697204068303108, 0.016404150053858757, -0.008168154396116734, 0.029199115931987762, 0.014219644479453564, -0.01584784686565399, 0.005603733938187361, 0.0177745558321476, -0.03199420124292374, -0.02651258185505867, -0.029986081644892693, 0.007774672005325556, 0.016743360087275505, 0.00442328630015254, 0.012808534316718578, -0.009362170472741127, -0.026621127501130104, -0.004620027728378773, -0.0012847543694078922, -0.034843556582927704, -0.03755722939968109, -0.017910238355398178, 0.010813985019922256, -0.026824653148651123, 0.011451697908341885, -0.0019487561658024788, 0.007605067454278469, 0.012455756776034832, 0.006818102207034826, 0.007489736191928387, 0.010603675618767738, -0.01404325570911169, 0.003081714501604438, -0.0036939866840839386, -0.013419111259281635, 0.010739359073340893, 0.0028290036134421825, 0.01757103018462658, 0.01372439879924059, -0.014599557965993881, -0.008778730407357216, 0.019036412239074707, -0.04165487363934517, 0.021831495687365532, -0.02459944225847721, -0.026933200657367706, 0.012523598968982697, 0.0041451347060501575, -0.009524990804493427, -0.006377130746841431, 0.005732633173465729, 0.019267074763774872, 0.02078673243522644, 0.011621302925050259, 0.014680968597531319, 0.0060209608636796474, 0.03885979205369949, -0.021600833162665367, -0.013961845077574253, 0.007286211010068655, 0.009104371070861816, 0.003978922497481108, 0.008670183829963207, 0.015264407731592655, -0.009918473660945892, 0.016417719423770905, 0.001543401274830103, -0.004301170818507671, 0.02487080916762352, 0.005549460183829069, -0.006814710330218077, 0.028439288958907127, 0.015576480887830257, 0.016865475103259087, 0.0014882797840982676, -0.007157311309129, 0.024423053488135338, 0.011302446015179157, -0.03370381146669388, 0.02757091261446476, -0.012340426445007324, 0.003122419584542513, -0.018371563404798508, 0.001062572468072176, -0.012150469236075878, -0.03519633412361145, 0.002735721180215478, 0.003414139384403825, -0.006275367923080921, 0.025644205510616302, -0.004318131599575281, -0.011818043887615204, 0.002053910866379738, 0.0068655917420983315, -0.004036588128656149, 3.8240523281274363e-05, -0.004484343808144331, 0.029226252809166908, -0.007577930577099323, 0.004711613990366459, -0.6703856587409973, -0.012638930231332779, -0.021926473826169968, 0.011166762560606003, 0.006679026409983635, -0.011560245417058468, -0.007733966689556837, -0.0042536817491054535, -0.02362252026796341, -0.000633896968793124, -0.01670265384018421, 0.0037889652885496616, -0.014721673913300037, -0.01782882958650589, -0.003012176603078842, -0.02553565800189972, 0.005091527942568064, -0.0019860691390931606, 0.01237434707581997, -0.006947001907974482, -0.022984806448221207, -0.006943609565496445, -0.0058784931898117065, -0.008344543166458607, 0.030908729881048203, -0.008371680043637753, 0.013751535676419735, -0.02789655327796936, -0.009809926152229309, 0.017530323937535286, -0.03809996321797371, 0.00868375226855278, -0.0017808476695790887, -0.004653948359191418, 0.05044717341661453, -0.006733300164341927, -0.015142292715609074, -0.0018402092391625047, -7.849509711377323e-05, 0.017258957028388977, -0.0019555403850972652, 0.008392032235860825, 0.0355219729244709, -6.662277883151546e-05, -0.02126162499189377, 0.003873767564073205, -0.007957844994962215, -0.021329466253519058, -0.0009438492124900222, -0.019321348518133163, 0.01404325570911169, 0.018846455961465836, -0.003427707590162754, -0.0019351877272129059, 0.01158059760928154, -0.015074451453983784, 0.01584784686565399, -0.005936158820986748, -0.004959236830472946, -0.00858877319842577, 0.004375797230750322, -0.01639058254659176, -0.04355444386601448, -0.016987590119242668, -0.002871404867619276, -0.001586650381796062, 0.00319026131182909, 0.010678301565349102, 0.003259799210354686, -0.00852093193680048, -0.0015603617066517472, 0.02558993175625801, -0.041492052376270294, -0.010481560602784157, 0.014816652052104473, 0.019226370379328728, 0.0246672835201025, 0.004545401316136122, -0.008351326920092106, -0.005651223007589579, 0.006567087490111589, -0.0001690745266387239, -0.020718889310956, 0.011112488806247711, 0.021532991901040077, -0.010311955586075783, -0.04767922684550285, 0.00911115575581789, 0.0047896322794258595, -0.02052893303334713, 0.01217760518193245, 0.01947060041129589, 0.007944276556372643, 0.012353993952274323, 0.005976863671094179, 0.005922590382397175, 0.0013237633975222707, 0.009647105820477009, 0.007808592636138201, -0.027543775737285614, -0.0048099844716489315, -0.019823377951979637, 0.036607444286346436, 0.00040238676592707634, -0.003992490936070681, -0.004949060268700123, 0.0026475267950445414, 0.0048947869800031185, 0.03381235897541046, -0.019077118486166, -0.008276700973510742, 0.006173605099320412, -0.016295604407787323, -0.010366229340434074, -0.024585872888565063, -0.025427112355828285, 0.009084018878638744, 0.009077235125005245, -0.008568421006202698, -0.02381247654557228, 0.010121998377144337, -0.003778788959607482, 0.008812651969492435, -0.012998491525650024, -0.01900927722454071, 0.02374463528394699, 0.01677049696445465, -0.015020177699625492, -0.009084018878638744, -0.013629420660436153, -0.016336308792233467, 0.006428011693060398, 0.04374440014362335, -0.01639058254659176, 0.030148902907967567, -0.004979589022696018, 0.012564304284751415, -0.013174880295991898, 0.007035196293145418, -0.005644438788294792, -0.024423053488135338, -0.008880493231117725, -0.006821494549512863, 0.018385130912065506, -0.005980256013572216, -0.03340530768036842, -0.011702712625265121, -0.008649831637740135, -0.014178939163684845, 0.02170938067138195, 0.01339197438210249, 0.0005393424071371555, 0.0007259073900058866, -0.006835062988102436, -0.005898845847696066, 0.0022201233077794313, -0.002579685067757964, 0.006570479832589626, -0.0001802048209356144, -0.015386523678898811, -0.021356603130698204, 0.014667400158941746, -0.021682243794202805, 0.0149659039452672, 0.0074829519726336, -0.004409717861562967, -0.009572479873895645, 0.009687811136245728, 0.03080018423497677, 0.0005965839372947812, 0.021139509975910187, 0.002316797850653529, -0.0002529227640479803, 0.008805867284536362, 0.009491070173680782, -0.005254348274320364, -0.012794965878129005, -0.0064246198162436485, 0.01829015277326107, 0.019714830443263054, 0.005769946146756411, 0.0076457723043859005, -0.008995824493467808, 0.004128174390643835, 0.03275402635335922, -0.022984806448221207, 0.006868983618915081, 0.02343256212770939, -0.01276782900094986, 0.04762495309114456, 0.005128840915858746, 0.0065331668592989445, 0.0062007419764995575, 0.007143742870539427, 0.024233095347881317, 0.019307781010866165, 0.012794965878129005, 0.0041349586099386215, 0.008894061669707298, -0.005264524836093187, -0.011987648904323578, 0.003241142723709345, 0.011709497310221195, -0.014748810790479183, -0.021397307515144348, -0.018575089052319527, 0.010501912795007229, -0.020379681140184402, 0.020705321803689003, 0.007415110245347023, 0.010793632827699184, -0.028737792745232582, -0.015440796501934528, -0.020447522401809692, -0.0019453640561550856, 0.019782673567533493, -0.02717743068933487, 0.01411109697073698, 0.00477267149835825, -0.004151918925344944, 0.005139017477631569, 0.004012843128293753, 0.001411109697073698, -0.006166820880025625, -0.022672735154628754, -0.017476052045822144, -0.010311955586075783, 0.001997941406443715, -0.0010735966498032212, -0.021017393097281456, -0.026987474411725998, -0.002070871414616704, 0.0322384312748909, 0.02143801376223564, 0.018181605264544487, -0.037475816905498505, -0.01584784686565399, -0.007903571240603924, 0.024423053488135338, 0.015155861154198647, 0.0033971788361668587, 0.021410876885056496, 0.013988981954753399, -0.005003333557397127, 0.009796357713639736, -0.015182998031377792, 0.036878809332847595, 0.007469383534044027, 0.01611921563744545, 0.005318798124790192, -0.022401366382837296, -0.0018181606428697705, 0.0197283998131752, -0.012252232059836388, 0.023581814020872116, -0.02459944225847721, -0.021546559408307076, 0.020976688712835312, 0.012727124616503716, 0.044911280274391174, -0.011017510667443275, 0.015196566469967365, 0.027720164507627487, -0.009402875788509846, -0.0012991707772016525, -0.016607675701379776, 0.012652498669922352, -0.01980981044471264, -0.022007884457707405, 0.00997274648398161, 0.005644438788294792, 0.010678301565349102, 0.031152961775660515, -0.020827436819672585, 0.0026322624180465937, 0.021627970039844513, -0.015739301219582558, -0.025372838601469994, -0.004698045551776886, -0.015074451453983784, -0.01723182015120983, -0.0322384312748909, 0.0027509855572134256, 0.010630812495946884, 0.003135987790301442, -0.009355385787785053, -0.004290994722396135, 0.013276643119752407, -0.029714714735746384, 0.005732633173465729, 0.010325524024665356, -0.011132841929793358, -0.01500660926103592, 0.0010964933317154646, 0.016661949455738068, -0.006027745082974434, 0.013330916874110699, -0.006590832024812698, 0.0025593324098736048, -0.019646989181637764, 0.007686477620154619, 0.009735300205647945, -0.013595499098300934, -0.016634812578558922, 0.038154236972332, 0.03454505279660225, -0.016105646267533302, -0.017883101478219032, -0.0018334250198677182, -0.012842454947531223, 0.018005218356847763, -0.008710889145731926, -0.008242780342698097, -0.010847905650734901, -0.0018181606428697705, 0.001732510281726718, -0.010501912795007229, -0.009097587317228317, 0.0292805265635252, -0.0005813195602968335, -0.013805809430778027, -0.02979612536728382, -0.014667400158941746, -0.006679026409983635, 0.13633491098880768, 0.017733849585056305, -0.001724878093227744, 0.01362263597548008, -0.020623911172151566, -0.028602108359336853, -0.01999976672232151, 0.006570479832589626, 0.020976688712835312, -0.018195174634456635, 0.006444972474128008, 0.009959178045392036, 0.018140900880098343, 0.004046764224767685, 0.007957844994962215, -0.013276643119752407, -0.0025101471692323685, 0.009613185189664364, 0.0037245156709104776, -0.0034667167346924543, -0.0071844481863081455, -0.0004310075310058892, -0.003697378793731332, 0.007767887786030769, -0.0027102804742753506, -0.011404208838939667, 0.02314762771129608, 0.026743242517113686, 0.016159920021891594, -0.004223152995109558, -0.007496520411223173, 0.019552011042833328, 0.009090802632272243, 0.012259015813469887, -0.011309230700135231, 0.0283036045730114, 0.001979284919798374, -0.02382604591548443, 0.0027509855572134256, 0.001908050966449082, 0.005393424071371555, 0.00032712475513108075, 0.01394827663898468, -0.018832888454198837, 0.007849297486245632, -0.026105530560016632, 0.0045962827280163765, 0.01683833822607994, 0.007367621175944805, -0.01914495974779129, 0.018588656559586525, 0.0017910238821059465, -0.016295604407787323, -0.020759595558047295, 0.006953786127269268, 0.013758320361375809, 0.02033897675573826, -0.008921198546886444, -0.025182880461215973, 0.041274961084127426, -0.004538617562502623, -0.025427112355828285, -0.01796451210975647, 0.004019627347588539, 0.014165370725095272, -0.019362052902579308, -0.005155977793037891, 0.013059549033641815, -0.03774718567728996, -0.00680792611092329, 0.021940043196082115, 0.0009472413221374154, -0.037855733186006546, 0.0012754261260852218, 0.032726891338825226, 0.022550618276000023, 0.01016948837786913, 0.006536558736115694, -0.00221164315007627, -0.010773279704153538, -0.007394757587462664, -0.008100312203168869, 0.00901617668569088, -0.006882552057504654, 0.0014390944270417094, -0.004212976433336735, 0.006743476260453463, 0.03671598806977272, -0.017353935167193413, 0.009090802632272243, -0.0021285368129611015, -0.007998550310730934, -0.002527107484638691, -0.005139017477631569, -0.009131507948040962, 0.02118021436035633, -0.00520007498562336, 0.011892669834196568, -0.019117822870612144, 0.011078568175435066, -0.0016536442562937737, -0.03440936654806137, -0.030365996062755585, 0.005481618456542492, -0.008805867284536362, 0.009484285488724709, 0.006570479832589626, 0.013575146906077862, -0.008697320707142353, 0.0020963121205568314, 0.03104441426694393, -0.016865475103259087, 0.014518148265779018, 0.01697402261197567, 0.02052893303334713, 0.0322384312748909, 0.0098641999065876, 0.010739359073340893, -0.007381189148873091, -0.02118021436035633, 0.001980980858206749, -0.016037805005908012, 0.018113764002919197, 0.020623911172151566, -0.012041921727359295, 0.0029477267526090145, 0.004067116882652044, -0.021465150639414787, 0.0148030836135149, -0.00740154180675745, -0.021017393097281456, 0.0029053257312625647, 0.007489736191928387, -0.006933433469384909, -0.014558853581547737, -0.012659282423555851, -0.0057835145853459835, 0.02599698305130005, -0.015969963744282722, 0.00161633116658777, -0.020121881738305092, 0.004620027728378773, -0.005145801696926355, -0.037530090659856796, -0.008174938149750233, -0.025413542985916138, -0.01029838714748621, -0.013690478168427944, 0.011777338571846485, 0.009782789275050163, -0.0006576415617018938, 0.02309335395693779, 0.010956453159451485, 0.026593990623950958, 0.009457148611545563, -0.01757103018462658, 0.0052272118628025055, -0.006353385746479034, 0.008487011305987835, 0.01206905860453844, 0.03394804522395134, -0.0029986081644892693, 0.011200683191418648, -0.007605067454278469, 0.0025729008484631777, 0.033839497715234756, 0.008866924792528152, -0.0020267742220312357, -0.009206133894622326, -0.002798474859446287, 0.021329466253519058, 0.03704163059592247, -0.017082568258047104, 0.00366006582044065, -0.003032529028132558, -0.0063398173078894615, 0.025481386110186577, -0.007211585063487291, -0.013412326574325562, -0.01046120747923851, -0.017069000750780106, -0.006526382640004158, -0.0025525481905788183, 0.009531774558126926, 0.0013746448094025254, -0.002749289618805051, 0.04664803296327591, 0.015712164342403412, 0.006774005014449358, -0.01384651381522417, 0.016227761283516884, -0.025250723585486412, 0.009660674259066582, -0.0092129185795784, -0.01630917191505432, -0.009979531168937683, -0.013609067536890507, -0.024246664717793465, -0.013107038103044033, 0.0034667167346924543, 0.0022150352597236633, -0.0010345876216888428, 0.009586048312485218, -0.0008102856809273362, -6.179965566843748e-05, 0.02671610563993454, 0.01260500866919756, 0.005393424071371555, 0.022618461400270462, -0.027272408828139305, -0.013907572254538536, -0.021220918744802475, -0.03261834383010864, -0.009131507948040962, 0.006343209650367498, -0.011824828572571278, -0.01217082142829895, 0.007157311309129, -0.0037753968499600887, -0.03465360030531883, 0.01114641036838293, -0.0007322675664909184, 0.010766495950520039, 0.013045980595052242, -0.004131566267460585, -0.004117998294532299, -0.0434187613427639, -0.010691870003938675, 0.03343244642019272, 0.0013203712878748775, -0.012638930231332779, 0.004569146316498518, -0.008975472301244736, -0.012713556177914143, -0.026146234944462776, 0.022279251366853714, 0.01276782900094986, 0.01352087315171957, -0.023079784587025642, 0.0101966243237257, 0.025888435542583466, 0.01763887144625187, -0.015644323080778122, -0.005681751761585474, -0.006506029982119799, 0.0233647208660841, -0.011709497310221195, 0.008276700973510742, 0.008548068813979626, -0.015902120620012283, -0.021994316950440407, 0.005556244403123856, 0.0037618286442011595, 6.61457670503296e-05, 0.013826161623001099, -0.026811085641384125, 0.02454516850411892, -0.012781397439539433, 0.007944276556372643, 0.017652440816164017, -0.02539997547864914, 0.015155861154198647, -0.015942826867103577, 0.01516942959278822, -0.0019233154598623514, 0.024423053488135338, -0.019185664132237434, -0.0006283848197199404, -0.0018876984249800444, 0.024110980331897736, -0.004796416033059359, 0.0019368837820366025, -0.015671459957957268, -0.005515539553016424, 0.0031987414695322514, 0.0006343209533952177, -0.0021997708827257156, -0.023500405251979828, -0.010481560602784157, -0.0027696420438587666, 0.03704163059592247, 0.012794965878129005, -0.02210286259651184, 0.007808592636138201, -0.004582714755088091, -0.0289548859000206, -0.01115319412201643, 0.0024558736477047205, 0.012062274850904942, 0.0010608764132484794, -0.009233270771801472, -0.015535775572061539, -0.0014373984886333346, 0.004630203824490309, 0.01335126906633377, -0.008310622535645962, 0.0002679751778487116, 0.0184258371591568, -0.013792240992188454, 0.025644205510616302, -0.022645598277449608, 0.006617968901991844, -0.02777443826198578, -0.011974080465734005, -0.006926649250090122, -0.01986408233642578, 0.03104441426694393, -0.0038296703714877367, -0.029497621580958366, -0.016146352514624596, 0.017150411382317543, 0.0072794267907738686, -0.009043313562870026, -0.00016801449237391353, -0.005966687574982643, -0.006617968901991844, 0.002416864736005664, -0.03777432069182396, -0.010210192762315273, 0.0493617057800293, -0.013975413516163826, -0.022347094491124153, -7.652080057596322e-06, -0.004630203824490309, -0.006787573453038931, 0.013710830360651016, 0.016879042610526085, 0.022211410105228424, -0.009233270771801472, 0.005929374601691961, 0.011940158903598785, 0.015182998031377792, -0.025223586708307266, -0.010366229340434074, -0.022862691432237625, -0.009925257414579391, -0.009084018878638744, 0.03169569373130798, -0.007442247122526169, 0.01716397888958454, -0.012245447374880314, 0.009816710837185383, 0.017937375232577324, 0.0007229393231682479, -0.005122057162225246, -0.013961845077574253, -0.00468786945566535, 0.00707590114325285, -0.0249929241836071, -0.024789398536086082, -0.0184258371591568, 0.012211526744067669, -0.006489069666713476, -0.013704046607017517, 0.0010210192995145917, 0.010366229340434074, -0.028710655868053436, -0.022713439539074898, 0.00017055856005754322, 0.004067116882652044, 0.011166762560606003, -0.023663224652409554, -0.011071784421801567, 0.017978081479668617, -0.008731241337954998, 0.019199233502149582, -0.005420560948550701, 0.005596949718892574, -0.0061159394681453705, -0.017801692709326744, 0.02914484404027462, 0.007795024663209915, 0.0064347959123551846, 0.01763887144625187, -0.010569754987955093, 0.007001275196671486, 0.017666008323431015, 0.003112243255600333, -0.03006749227643013, -0.005739417392760515, -0.023337583988904953, -0.021614402532577515, -0.0010345876216888428, 0.007435462903231382, 0.00927397608757019, -0.012903513386845589, -0.0017503187991678715, 0.008629478514194489, -0.008778730407357216, -0.01637701317667961, -0.0101966243237257, -0.010189840570092201, -0.0034158353228121996, 0.013507305644452572, 0.016363445669412613, -0.013663341291248798, 0.02343256212770939, -0.016404150053858757, 0.015685027465224266, 0.011383856646716595, -0.02428736910223961, 0.03177710622549057, 0.008636263199150562, -0.001613787142559886, -0.015440796501934528, 0.010020235553383827, -0.01815447025001049, 0.012143684551119804, -0.015685027465224266, -0.014192507602274418, 0.009504638612270355, -0.0014221339952200651, 0.003504029707983136, -0.03866983577609062, 0.013432678766548634, -0.009063666686415672, -0.0063194651156663895, -0.011505971662700176, -0.005603733938187361, 0.015400092117488384, -0.0480048693716526, 0.002016597893089056, -0.005498579237610102, 0.022129999473690987, 0.004399541765451431, -0.017652440816164017, -0.003677026368677616, -0.020895278081297874, -0.006000608671456575, -0.005396816413849592, -0.0068757678382098675, -0.007822161540389061, -0.02290339581668377, -0.01549507025629282, -0.02507433481514454, 0.03587475046515465, 0.2355467826128006, 0.008392032235860825, -0.007822161540389061, 0.01645842380821705, -0.002226907527074218, 0.04255038499832153, 0.02526429109275341, 0.026987474411725998, 0.0032394465524703264, 0.0014857357600703835, -0.026431171223521233, 0.0068859439343214035, 0.005491795018315315, -0.009959178045392036, 0.005970079451799393, -0.016485560685396194, -0.01114641036838293, -0.016539834439754486, -0.03416513651609421, -0.03373095020651817, -0.007231937255710363, 0.0001984373084269464, 0.012455756776034832, 0.0066722421906888485, 0.03598329797387123, 0.013853298500180244, -0.01023054588586092, -0.009993099607527256, -0.008833004161715508, 0.008188506588339806, -0.014314622618258, -0.0002423224796075374, -0.0023693754337728024, -5.7294531870866194e-05, 0.004803200252354145, 0.0020776556339114904, 0.016010668128728867, -0.0004706525942310691, 0.01948416978120804, 0.002581381006166339, 0.0011787514667958021, -0.0005626630736514926, -0.00815458595752716, -0.013486952520906925, 0.005312013905495405, 0.01816803775727749, -0.006295720115303993, -0.002676359610632062, -0.013731183484196663, 0.0036566737107932568, -0.018113764002919197, -0.012984923087060452, 0.024640146642923355, 0.031152961775660515, -0.010698653757572174, -0.009728516452014446, 0.0027916906401515007, 0.011003942228853703, -0.03278116509318352, 0.0024745301343500614, 0.0072794267907738686, 0.028846340253949165, 0.017069000750780106, 0.0076457723043859005, -0.026593990623950958, 0.014382464811205864, 0.02237422950565815, 0.011071784421801567, 0.029389074072241783, -0.02738095633685589, 0.029524756595492363, 0.001370404614135623, 0.005122057162225246, -0.015291544608771801, -0.03001321852207184, -0.025874868035316467, 0.03652603179216385, 0.014667400158941746, 0.02947048470377922, 0.009172213263809681, -0.010054157115519047, 0.025834163650870323, 0.002922286046668887, -0.01071900688111782, -0.009619968943297863, -0.03980957716703415, 0.007896787486970425, -0.005186506547033787, 0.002016597893089056, -0.010020235553383827, 0.00934181734919548, -0.029768988490104675, 0.008724457584321499, -0.03644462302327156, -0.000155082147102803, 0.00858198944479227, -0.009816710837185383, 0.0299318078905344, -0.030583089217543602, 0.0073133474215865135, -0.030827321112155914, 0.04219760745763779, 0.04238756373524666, -0.005634262692183256, -0.0011261741165071726, 0.006227878388017416, 0.03321535140275955, 0.02211643196642399, -0.004138350486755371, -0.01329021155834198, 0.015576480887830257, 0.005220427643507719, -0.0069944909773766994, 0.0025915573351085186, 0.01723182015120983, -0.008839787915349007, 0.00289345346391201, -0.020094744861125946, 0.0010294995736330748, 0.0017367504769936204, 0.010427286848425865, -0.022645598277449608, -0.010189840570092201, 0.0012279368238523602, 0.01039336621761322, -0.008473442867398262, -0.023608950898051262, -0.01194694358855486, 0.0037211235612630844, -0.02138374000787735, 0.017286093905568123, -0.006071842275559902, 0.004959236830472946, 0.010488344356417656, -0.00808674469590187, -0.015020177699625492, 0.02046109177172184, 0.0010320435976609588, -0.009857415221631527, -0.004623419605195522, 0.018670067191123962, -0.008147802203893661, -0.009823494590818882, -0.028710655868053436, 0.01371761504560709, -0.002744201337918639, 0.005831004120409489, -0.0031376839615404606, -0.015250840224325657, -0.011221036314964294, -0.02769302763044834, -0.0016638204688206315, -0.014925199560821056, -0.010895395651459694, 0.032672617584466934, -0.0012644018279388547, -0.03603757172822952, -0.02165510691702366, -0.006373738404363394, 0.03297112137079239, -0.013663341291248798, 0.010366229340434074, 0.018303722143173218, -0.011112488806247711, -0.022916965186595917, -0.004379189107567072, -0.1756288856267929, 0.025237154215574265, 0.029850399121642113, -0.0031987414695322514, 0.02480296790599823, -0.0006436491967178881, 0.0335681289434433, 0.0036905945744365454, -0.00869053602218628, 0.011614518240094185, 0.016037805005908012, 0.05047430843114853, -0.027598049491643906, 0.007109822239726782, 0.006176996976137161, 0.022604892030358315, -0.007801808416843414, -0.0010888611432164907, -0.004616635385900736, 0.0233647208660841, 0.02639046497642994, -0.008934766985476017, 0.01632274128496647, -0.018303722143173218, 0.014260348863899708, 0.014884494245052338, 0.003900904208421707, 0.03408372774720192, 0.02046109177172184, -0.017204683274030685, -0.02032540738582611, 0.006312680896371603, 0.006037921644747257, -0.00020946160657331347, 0.017516756430268288, 0.016227761283516884, -0.009409659542143345, -0.009599616751074791, 0.0012211526045575738, 0.01757103018462658, 0.0236903615295887, -0.0044572073966264725, 0.00835811160504818, 0.018045922741293907, -0.03408372774720192, 0.0020081177353858948, 0.01012878306210041, -0.0002932038332801312, -0.01388043537735939, 0.013168096542358398, 0.0146402632817626, -0.02881920337677002, -0.010189840570092201, -0.004212976433336735, 0.004793024156242609, 0.027068883180618286, -0.015549344010651112, 0.011729849502444267, -0.0016884132055565715, 0.006723123602569103, -0.0010727486805990338, 0.004969412926584482, -0.015956394374370575, 0.007326915860176086, 0.0006288088043220341, -0.013100254349410534, -0.008018902502954006, -0.018059490248560905, -0.030230311676859856, 0.007869650609791279, -0.013473384082317352, 0.004806592594832182, 0.008731241337954998, -0.021044529974460602, 0.026010552421212196, 0.011953727342188358, -0.010183055885136127, 0.015576480887830257, 0.028873475268483162, 0.010583323426544666, -0.01157381385564804, 0.024192390963435173, -0.01763887144625187, 0.00750330463051796, -0.0064144437201321125, 0.02632262371480465, -0.014016118831932545, 0.004396149422973394, 0.010549401864409447, -0.02119378186762333, 0.037991415709257126, -0.014463874511420727, -0.016987590119242668, -0.02900915965437889, 0.00021370171452872455, 0.018792182207107544, 0.016227761283516884, 0.015155861154198647, 0.005288269370794296, -0.046023886650800705, 0.00809352844953537, -0.02170938067138195, -0.006126116029918194, 0.009022961370646954, -0.0007793328259140253, 0.032129883766174316, 0.0021556736901402473, 0.03527774289250374, 0.019959062337875366, -0.016499130055308342, -0.016078509390354156, 0.01637701317667961, 0.0006381370476447046, -0.0007276034448295832, 0.00026225100737065077, 0.02322903648018837, 0.014097528532147408, -0.010508696548640728, 0.004440246615558863, -0.013303779996931553, 0.04947024956345558, 0.006916473153978586, 0.012225095182657242, 0.00039115044637583196, 0.002143801422789693, -0.0022387797944247723, -0.0947614461183548, -0.012096195481717587, 0.01147883478552103, 0.016621245071291924, -0.0025508522521704435, 0.025942709296941757, -0.004616635385900736, 0.0069809225387871265, -0.016661949455738068, 0.028439288958907127, -0.009945609606802464, -0.029361937195062637, 0.012048706412315369, 0.0012889944482594728, 0.018914297223091125, -0.017326800152659416, -0.00878551509231329, -0.019959062337875366, -0.0151287242770195, 0.008643046952784061, -0.015562912449240685, -0.021858632564544678, -0.025684909895062447, 0.008541284129023552, 0.014694537036120892, -0.007028412073850632, -0.0038669833447784185, 0.026336193084716797, 0.0008263980853371322, -0.0032750635873526335, -0.001732510281726718, -0.010081293992698193, 0.027923690155148506, -0.028005100786685944, 0.011017510667443275, 0.013073117472231388, 0.0014212860260158777, -0.015264407731592655, -0.026756811887025833, 0.015413660556077957, -0.013839730061590672, -0.006153252441436052, -0.014884494245052338, -0.00869053602218628, -0.006794357672333717, -0.005922590382397175, -0.04130209609866142, 0.013344484381377697, 0.017978081479668617, -0.008805867284536362, -0.027598049491643906, 0.029850399121642113, -0.015942826867103577, -0.015020177699625492, 0.009355385787785053, 0.007896787486970425, -0.011756986379623413, 0.018697204068303108, -0.029633304104208946, -0.0015332249458879232, 0.0018249447457492352, -0.001992853358387947, 0.02724527195096016, -0.0023422385565936565, 0.02290339581668377, -0.0033174646086990833, -0.018846455961465836, -0.004121390171349049, -0.003961961716413498, -0.03432795777916908, -0.025820594280958176, 0.013154528103768826, -0.03229270502924919, 0.0016570363659411669, -0.018181605264544487, -0.012564304284751415, -0.018846455961465836, -0.014301054179668427, 0.008249565027654171, -0.02269987016916275, -0.008819435723125935, -0.0072929952293634415, 0.005284877493977547, 0.0060073924250900745, 0.032401248812675476, 0.017652440816164017, 0.019524874165654182, 0.0036566737107932568, 0.005695320200175047, -0.010121998377144337, -0.010081293992698193, 0.01987765170633793, 0.025888435542583466, 0.005875101312994957, -0.013690478168427944, -0.0015026961918920279, 0.008446305990219116, -0.00835811160504818, 0.0016909572295844555, -0.008595557883381844, -0.01630917191505432, -0.017747418954968452, -0.06719053536653519, 0.027747301384806633, -0.015576480887830257, 0.006014176644384861, -0.0050169019959867, -0.009491070173680782, -0.014857357367873192, 0.0031749969348311424, -0.0016850210959091783, 0.005410384852439165, -0.008663400076329708, 0.006377130746841431, -0.010474775917828083, -0.014016118831932545, -0.021600833162665367, -0.012387915514409542, 0.0141518022865057, -0.007978197187185287, 0.03454505279660225, 0.01685190573334694, 0.0029833437874913216, 0.027340251952409744, 0.007557577919214964, -0.0007763647590763867, 0.006014176644384861, -9.307049185736105e-05, -0.031152961775660515, 0.024572305381298065, -0.013629420660436153, -0.021478718146681786, 0.010345876216888428, -0.018303722143173218, -0.014219644479453564, 0.02250991389155388, 0.0011795995524153113, 0.006010784767568111, 0.0004265554016456008, 0.026417601853609085, -0.016404150053858757, 0.031342919915914536, -0.025413542985916138, -0.01999976672232151, 0.01105143129825592, -0.028113648295402527, 0.004321523476392031, -0.018059490248560905, -0.020881710574030876, -0.002594949444755912, 0.0177745558321476, 0.00595311913639307, -0.004287602845579386, -0.00560712581500411, -0.008548068813979626, -0.04002666845917702, -0.008697320707142353, -0.013642989099025726, 0.0006852023070678115, 0.004843905568122864, 0.005590165499597788, -0.028113648295402527, 0.016675518825650215, 0.020908847451210022, 0.013805809430778027, -0.006387306842952967, 0.020705321803689003, -0.004966020584106445, -0.0017316623125225306, -0.013866866938769817, 0.028629245236516, -0.03989098593592644, -0.01782882958650589, -0.012666067108511925, 0.007672909181565046, 0.01164165511727333, -0.006804533768445253, 0.004487736150622368, 0.0236903615295887, -0.0036397133953869343, -0.007333700079470873, 0.02816792204976082, 0.00758471479639411, -0.0069809225387871265, 0.008161370642483234, 0.036688853055238724, 0.02539997547864914, 0.04070508852601051, -0.020243996754288673, -0.014680968597531319, -0.008297054097056389, 0.0033937867265194654, -0.002562724519520998, 0.004752319306135178, -0.021872200071811676, -0.02816792204976082, -0.015603616833686829, 0.018073059618473053, 0.023663224652409554, 0.016743360087275505, 0.019199233502149582, 0.0276387557387352, 0.015088019892573357, 0.014870925806462765, -0.0003797021636273712, -0.016132783144712448, -0.025888435542583466, -0.004311347380280495, -0.03242838755249977, -0.011919806711375713, 0.0038975123316049576, 0.004128174390643835, 0.003816101932898164, 0.009511422365903854, -0.0030477934051305056, 0.019918356090784073, -0.013771887868642807, 0.01856151968240738, 0.007462599780410528, -0.015467933379113674, -0.010488344356417656, 0.03139718994498253, 0.013378405943512917, -0.0042299372144043446, 0.012774613685905933, 0.007652556523680687, 0.014585990458726883, 0.01579357497394085, 0.01114641036838293, -0.012896728701889515, -0.013507305644452572, 0.005003333557397127, 0.016607675701379776, 0.003163124667480588, -0.036878809332847595, -0.005044038873165846, -0.010020235553383827, 0.00878551509231329, -0.017055431380867958, 0.015386523678898811, -0.01533224992454052, 0.03305253013968468, 0.015101587399840355, 0.010474775917828083, -0.012157252989709377, 0.0075507936999201775, 0.019714830443263054, -0.0026119097601622343, -0.0037346917670220137, -0.0074829519726336, -0.027408093214035034, 0.015685027465224266, 0.0008145257597789168, 0.0041349586099386215, -0.03715017810463905, -0.031614284962415695, -0.00560712581500411, 0.013507305644452572, 0.012849239632487297, 0.002640742575749755, -0.0014051735633984208, 0.0026339583564549685, 0.00648228544741869, 0.0019504521042108536, 0.014165370725095272, -0.018208742141723633, 0.022414935752749443, 0.015033746138215065, -0.0028510522097349167, -0.02579345740377903, -0.03324249014258385, 0.0016578843351453543, 0.004579322412610054, -0.031614284962415695, -0.006607792805880308, 0.01776098646223545, -0.010054157115519047, 0.004223152995109558, -0.0010125390253961086, 0.007150527089834213, -0.0017180939903482795, -0.015291544608771801, -0.0006453452515415847, -0.03755722939968109, -0.00535950344055891, 0.03305253013968468, -0.01796451210975647, -0.006366954185068607, -0.02789655327796936, -0.027950827032327652]}, {"created_time": 1695640644.310209, "accessed_time": 1695640644.310209, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.008221788331866264, -0.005837070755660534, 0.012651976197957993, 0.008654164150357246, 0.016696350648999214, 0.023760702461004257, -0.00028062841738574207, -0.003711778437718749, -0.020368218421936035, -0.026328349485993385, -0.005408021155744791, -0.02305559813976288, 0.00914640724658966, -0.009951291605830193, -0.01918417401611805, -0.002707336563616991, 0.027858294546604156, -0.0023298393934965134, 0.04334399476647377, -0.03384503349661827, -0.015033368021249771, 0.025676459074020386, 0.0026208613999187946, 0.010510053485631943, -0.0269137192517519, 0.008175224997103214, 0.011654186062514782, -0.012884793803095818, -0.008561037480831146, -0.004689612425863743, 0.002389706904068589, -0.00451666209846735, 0.010137544944882393, -0.004922430031001568, -0.030598890036344528, -0.039086755365133286, 0.01336373295634985, -0.010310495272278786, 0.007177435327321291, -0.00462309317663312, 0.016270626336336136, -0.01138145662844181, 0.0021785078570246696, -0.023068903014063835, -0.014288350939750671, 0.002032165415585041, -0.019397035241127014, -8.543575677322224e-05, -0.010210716165602207, 0.006485634483397007, 0.014368174597620964, -0.008228440769016743, -0.02188485860824585, -0.0063758776523172855, -0.025117697194218636, -0.007137523498386145, 0.0026757398154586554, 0.009153059683740139, 0.008494517765939236, 0.00205378420650959, -0.0005146932671777904, 0.009039976634085178, 3.6799997360503767e-06, -0.0008855385240167379, -0.005288286600261927, 0.003269424894824624, -0.002243364229798317, -0.006701821926981211, 0.0037450380623340607, 0.004523314069956541, 0.03195588290691376, 0.01959659345448017, -0.005378087516874075, -0.016416970640420914, 0.01440808642655611, 0.006006695330142975, -0.018505675718188286, -0.007463468238711357, -0.008441302925348282, 0.0014334914740175009, 0.003360888920724392, -0.028656525537371635, -0.0033093364909291267, -0.0005279971519485116, 0.01652340032160282, 0.022430317476391792, -0.0171353779733181, 0.019157566130161285, 0.013190782628953457, -0.02998691238462925, 0.025197520852088928, 0.026195310056209564, 0.007855932228267193, 0.007829324342310429, -0.009891423396766186, 0.002002231776714325, 0.010117589496076107, 0.003000021679326892, 0.010875909589231014, -0.0213260967284441, -0.016137588769197464, 0.023241853341460228, -0.003675192827358842, -0.012964616529643536, -0.03437718749046326, 0.006628650706261396, 0.019250692799687386, -0.01750788651406765, 0.02123296819627285, -0.012372594326734543, -0.02737935446202755, 0.020700814202427864, -0.01017745677381754, -0.0352020263671875, -0.01821299083530903, -0.018399246037006378, 0.030545674264431, 0.0007836808217689395, -0.024705277755856514, -0.013224042020738125, 0.020368218421936035, 0.00998455099761486, 0.018319422379136086, -0.004463446792215109, 0.01922408491373062, -0.0070776562206447124, 0.006462352350354195, 0.013902539387345314, -0.025969145819544792, -0.0012962953187525272, 0.01040362287312746, 0.01194687094539404, 0.02378731034696102, 0.003246143227443099, -0.02155226096510887, 0.021632084622979164, -0.026700858026742935, 0.007071004249155521, -0.0012272815220057964, -0.02212432771921158, 0.0050421650521457195, 0.021964682266116142, -0.023175332695245743, -0.003987833391875029, 0.01931721158325672, 0.0346432663500309, 0.011813832446932793, 0.012824926525354385, -0.011534451507031918, 0.0014634252293035388, 0.01773405261337757, -0.003628629259765148, 0.016403665766119957, 0.003104789648205042, 0.028762957081198692, 0.001693748403340578, 0.0016904224175959826, 0.013849323615431786, -0.03906014934182167, 0.011694097891449928, 0.0028586681000888348, -0.0008788866107352078, 0.023627664893865585, -0.011887003667652607, -0.016869300976395607, 0.026288438588380814, 0.012492329813539982, 0.02123296819627285, -0.015951333567500114, 0.0011865384876728058, 0.009239534847438335, 0.02164538949728012, -0.040337320417165756, 0.0031762977596372366, 0.005334849935024977, 0.0061829714104533195, -0.03286054730415344, -0.002685717772692442, 0.013955754227936268, -0.025530116632580757, -0.03645259141921997, -0.0025310604833066463, 0.004932408221065998, 0.015538915060460567, -0.008221788331866264, -0.016084372997283936, 0.012831578031182289, 0.007071004249155521, 0.008048838935792446, 0.01294466108083725, 0.0070843081921339035, 0.04347703233361244, -0.010323799215257168, -0.011348197236657143, -0.6602974534034729, -0.03935283422470093, 0.020315002650022507, 0.011773920617997646, 0.028576701879501343, 0.0010959059000015259, 0.007097612135112286, 0.00556434178724885, -0.0026524581480771303, -0.003818209283053875, -0.014740683138370514, 0.010523357428610325, -0.004031070973724127, 0.012345987372100353, -0.002745585283264518, -0.014447997324168682, -0.002032165415585041, -0.0277518630027771, 0.011860395781695843, 0.009046628139913082, -0.008600949309766293, 0.027725255116820335, -0.018452461808919907, -0.010157501325011253, -0.006578761152923107, -0.013097655028104782, -0.004942385945469141, -0.045658864080905914, -0.009951291605830193, 0.04539278894662857, -0.04235950857400894, 0.027858294546604156, -0.013756196945905685, -0.017095467075705528, 0.05502478778362274, -0.00878055114299059, -0.003711778437718749, 0.00965860579162836, -0.0010626462753862143, 0.018079953268170357, -0.03381842374801636, 0.005464562680572271, 0.030838359147310257, 0.004297148436307907, 0.0021701930090785027, -0.0007745344191789627, 0.028975818306207657, -0.005394717212766409, -0.0035288501530885696, -0.004769435618072748, 0.027778470888733864, 0.0048026954755187035, -0.0021336073987185955, 0.006931313779205084, 0.026607731357216835, -0.005447932984679937, 0.0286831334233284, -0.028337232768535614, -0.00576389953494072, -0.0046796347014606, -0.005221767351031303, 0.0019540050998330116, -0.02481170929968357, 0.0011233451077714562, -0.021033411845564842, 0.0077361976727843285, -0.033179838210344315, -0.011255069635808468, -0.006242838688194752, -0.005112010054290295, 0.013576594181358814, 0.015126494690775871, -0.012286119163036346, 0.007855932228267193, -0.00399448536336422, 0.031264081597328186, 0.009459048509597778, 0.00015704796533100307, -0.0004693770024459809, 0.011048859916627407, 0.017122074961662292, -0.008281656540930271, -0.020514560863375664, 0.011275026015937328, 0.02592923305928707, -0.02216423861682415, -0.015419179573655128, 0.014687467366456985, 0.018279511481523514, -0.025024570524692535, 0.026009056717157364, 0.006246164906769991, -0.011421368457376957, 0.0026191985234618187, 0.0013470163103193045, 0.014514517039060593, -0.018771754577755928, 0.012472373433411121, 0.027964724227786064, -0.028390448540449142, 0.010809390805661678, -0.012192992493510246, 0.02117975428700447, 0.005860352423042059, 0.003735060105100274, -0.0008206822094507515, -0.032062314450740814, 0.02574297972023487, 0.013729589059948921, -0.015938030555844307, 0.026567818596959114, 0.034669872373342514, -0.009605390951037407, -0.0010692981304600835, -0.01648348942399025, -0.02533056028187275, 0.044062402099370956, 0.0363195538520813, 0.0251443050801754, -0.005171877797693014, 0.01950346678495407, -0.004729524254798889, 0.0259824488312006, 0.004493380431085825, 0.015139798633754253, 0.0075432914309203625, 0.0007965689292177558, -0.024266250431537628, -0.01138145662844181, -0.0024844969157129526, -0.011467931792140007, -0.0046264189295470715, 0.01885157637298107, -0.026275133714079857, 0.009279445745050907, -0.009678562171757221, -0.007855932228267193, -0.019210781902074814, 0.018399246037006378, -0.009605390951037407, -0.03363217040896416, -0.010955733247101307, 0.012059953995049, 0.02425294555723667, -0.0036552369128912687, -0.01648348942399025, 0.007563247345387936, 0.0028935906011611223, -0.0420934297144413, 0.0007695454405620694, 0.007363689597696066, -0.005161899607628584, -0.011507843621075153, 0.023028990253806114, -0.006864794529974461, 0.006469004321843386, -0.01931721158325672, -0.009864816442131996, -0.014567732810974121, 0.0041275243274867535, 0.014887025579810143, 0.011434672400355339, -0.029507972300052643, 0.006488960236310959, 0.005807137116789818, 0.0015548892552033067, -0.0006290233577601612, 0.020368218421936035, 0.003113104496151209, -0.024558935314416885, -0.015033368021249771, -0.014913632534444332, -0.016177499666810036, -0.008541081100702286, 0.011181898415088654, -0.012818274088203907, 0.004070982802659273, -0.0057339658960700035, 0.006977877113968134, -0.0008539418340660632, 0.0038980324752628803, 0.006429092958569527, -0.007297169882804155, -0.014075489714741707, 0.01689590886235237, -0.00231154658831656, 0.004779413808137178, 0.03842156380414963, 0.011201854795217514, 0.00947235245257616, 0.0058204410597682, 0.0075898552313447, -0.008527778089046478, 0.014301654882729053, -0.012073257938027382, -0.014793897978961468, 0.02024848386645317, 0.020740725100040436, -0.0059202201664447784, 0.012938008643686771, -0.004483402706682682, -0.002143585355952382, 0.028150979429483414, -0.014088793657720089, -0.0024329442530870438, -0.012226251885294914, 0.01756110228598118, -0.018838273361325264, 0.0223504938185215, 0.0043769716285169125, 0.005587623454630375, -0.014314958825707436, -0.014620947651565075, -0.008667468093335629, 0.022097719833254814, 0.00406100507825613, -0.005195159465074539, 0.014062185771763325, -0.02314872480928898, 0.0072705624625086784, -0.0014201876474544406, -0.0030781817622482777, -0.012086561881005764, -0.028230801224708557, -0.0035421540960669518, -0.0004176166548859328, -0.004443490877747536, 0.014088793657720089, 0.004596485290676355, 0.007024440914392471, -0.020128747448325157, -0.011600970290601254, 0.031689807772636414, 0.007290518376976252, 0.0018492372473701835, 0.0012538892915472388, 0.02415981888771057, -0.02723301202058792, 0.03437718749046326, 0.03211553022265434, 0.006325988098978996, -0.010270584374666214, 0.010463490150868893, -0.015352660790085793, 0.026275133714079857, 0.020048925653100014, 0.03882068023085594, -0.019490161910653114, -0.011002296581864357, 0.009279445745050907, -0.015711864456534386, -0.00816857349127531, -0.0021918118000030518, -0.0022167565766721964, 0.006668562535196543, -0.02407999522984028, -0.0143415667116642, 0.01334377657622099, 0.015671953558921814, 0.03105122223496437, 0.018359333276748657, 0.0240267813205719, 0.014048881828784943, 0.0040510268881917, -0.0015781710390001535, 0.0075898552313447, 0.020408129319548607, -0.024119907990098, -0.014487909153103828, -0.014913632534444332, 0.01241250615566969, -0.006379203405231237, 0.0002511104685254395, -0.01175396516919136, -0.016071069985628128, 0.016496792435646057, -0.003029955318197608, -0.01387593150138855, -0.020660903304815292, 0.00701778894290328, -0.008733987808227539, -0.027179796248674393, 0.0031962536741048098, 0.006515568122267723, 0.0041674356907606125, -0.014168616384267807, 0.0070909601636230946, -2.427890422040946e-06, -0.0077761090360581875, 0.013137566857039928, 0.01564534567296505, -0.002138596260920167, -0.010929125361144543, 0.01959659345448017, 0.0020720770116895437, -0.004486728459596634, 0.004619767423719168, -0.024465808644890785, 0.011461280286312103, -0.018798362463712692, 0.00452664028853178, -0.015698561444878578, -0.0053148940205574036, -0.0039346180856227875, -0.0005683244671672583, 0.006924661807715893, -0.018971312791109085, -0.006306032184511423, -0.017122074961662292, -0.004483402706682682, -0.0013303864980116487, -0.006838186644017696, -0.02026178687810898, -0.005660794675350189, 0.0030415961518883705, 0.008953501470386982, -0.0013910854468122125, -0.0230955109000206, 0.014541124925017357, 0.00024258767371065915, -0.028603309765458107, -0.007749501615762711, -0.034749697893857956, 0.007190739270299673, 0.12622708082199097, -0.009379224851727486, 0.012053301557898521, 0.02388043887913227, 0.0142484400421381, -0.01867862604558468, -0.00784262828528881, -0.025303952395915985, 0.005657468922436237, 0.013310517184436321, -0.0035221984144300222, 0.006708473898470402, 0.018984615802764893, 0.000569571740925312, -0.008135313168168068, -0.019303908571600914, -0.015485699288547039, -0.008135313168168068, 0.002496137749403715, -0.015073278918862343, 0.012678583152592182, -0.005664120428264141, -0.007150827441364527, 0.0269137192517519, -0.0006427430198527873, 0.0203948263078928, 0.01273179892450571, 0.021538957953453064, 0.027352746576070786, -0.01996910199522972, 0.013024483807384968, 0.025490205734968185, -0.0021352702751755714, -0.008860373869538307, -0.028576701879501343, 0.0030415961518883705, 0.02518421784043312, 0.013443555682897568, 0.0008181877201423049, -0.0125721525400877, 0.010263931937515736, 0.023028990253806114, 0.0214192233979702, -0.009179666638374329, 0.021299488842487335, -0.009412484243512154, 0.007756153587251902, 0.02229727804660797, -0.0161109808832407, 0.0025077785830944777, 0.02300238236784935, 0.015711864456534386, 0.006422440987080336, -0.02481170929968357, -0.003764993976801634, 0.042998094111680984, 0.0026873808819800615, -0.017521191388368607, -0.005318220239132643, 0.017428062856197357, 0.023334980010986328, -0.028097763657569885, -0.015658648684620857, -0.005158573854714632, -0.011720704846084118, -0.012931357137858868, -0.01394245121628046, -0.010170805267989635, -0.0064157890155911446, 0.0026208613999187946, -0.018465764820575714, -0.005341501906514168, -0.0277518630027771, 0.006116452161222696, 0.02812437154352665, 0.011966826394200325, 0.027858294546604156, -0.011168594472110271, -0.0027173145208507776, 0.0032045685220509768, -0.016283931210637093, -0.0097783412784338, 0.0013661406701430678, -0.008521125651896, -0.03022638149559498, 0.0037084524519741535, 0.012871489860117435, 0.009439092129468918, -0.0055244299583137035, 0.0026757398154586554, 0.01568525657057762, -0.005684076342731714, 0.029774051159620285, 0.0017078836681321263, 0.005384739488363266, 0.007809368893504143, -0.010955733247101307, 0.029641011729836464, 0.002767204074189067, 0.019476858898997307, 0.006119777914136648, -0.02462545409798622, -0.014235136099159718, -0.012957965023815632, 0.015073278918862343, -0.003984507638961077, 0.021153146401047707, 0.019636504352092743, -0.0005941007402725518, 0.012844881974160671, 0.018705233931541443, -0.018785057589411736, 0.01082269474864006, 0.014181920327246189, -0.0027173145208507776, 0.01670965552330017, -0.00031471956754103303, 0.022962471470236778, 0.002018861472606659, -0.02294916845858097, 0.01834603026509285, -0.027645431458950043, 0.0348295196890831, -0.001356994267553091, -0.007583203259855509, 0.012612064369022846, -0.016563313081860542, -0.01760101318359375, -0.009618694894015789, -0.020035620778799057, -0.0196498092263937, -0.003967877943068743, -0.01533935684710741, -0.011940219439566135, -0.01905113458633423, -0.01802673749625683, -0.0038880545180290937, 0.012532240711152554, -0.0075499434024095535, -0.024226339533925056, -0.0368783138692379, 0.00047228721086867154, 0.01745467074215412, -0.027006845921278, -0.020554471760988235, -0.029694227501749992, -0.006668562535196543, -0.009266141802072525, 0.025530116632580757, 0.030598890036344528, -0.0124790258705616, 0.009326010011136532, -0.006538849789649248, 0.007709589786827564, -1.3992444110044744e-05, -0.02322854846715927, -0.009379224851727486, 0.019197477027773857, 0.01471407525241375, 0.012864837422966957, 0.0019174196058884263, 0.010277235880494118, 0.014075489714741707, 0.0048026954755187035, 0.010516705922782421, -0.0035953696351498365, 0.0072838664054870605, -0.009572130627930164, -0.026341652497649193, 0.0006202927324920893, 0.004293822683393955, 0.02113984152674675, -0.011867048218846321, -0.012492329813539982, -0.033738601952791214, 0.015592129901051521, -0.006721777841448784, 0.008793855085968971, -0.01294466108083725, -0.0060299769975245, -0.013796107843518257, 0.002489485777914524, -0.003598695620894432, 0.0003313494089525193, 0.0249580517411232, 0.0007470952114090323, 0.00993798766285181, -0.008714031428098679, 0.031689807772636414, -0.028097763657569885, 0.00012347649317234755, -0.01180052850395441, 0.009133103303611279, -0.015898119658231735, 0.0022965797688812017, -0.0012405854649841785, 0.009306053631007671, -0.015844903886318207, -0.0088470708578825, 0.0016538368072360754, 0.019197477027773857, -0.006405811291188002, 0.023867134004831314, -0.006289402488619089, 0.004197369329631329, 0.019343819469213486, 0.01277836225926876, -0.0168559979647398, 0.007702937815338373, -0.0320357084274292, -0.01866532303392887, -0.0017128726467490196, -0.0029817288741469383, -0.011647533625364304, -0.022749610245227814, -0.011700749397277832, -0.017760660499334335, 0.014687467366456985, 0.008155269548296928, 0.004041049163788557, -0.00031825341284275055, 0.0005882802652195096, 0.027831686660647392, 0.02024848386645317, 0.004410231485962868, -0.0001780431339284405, -0.012212947942316532, -0.01708216220140457, 0.0396721251308918, -0.010995645076036453, -0.014860417693853378, 0.004503358621150255, 0.026341652497649193, -0.013184130191802979, -0.035414889454841614, 0.019716328009963036, 0.0398583821952343, -0.01978284679353237, -0.025357166305184364, -0.015844903886318207, 0.01676286943256855, 0.022403709590435028, -0.0162972342222929, -0.002466204110532999, 0.000614888034760952, 0.0206742063164711, -0.006352595519274473, -0.015911422669887543, -0.015099886804819107, 0.030652105808258057, -0.0259824488312006, 0.028097763657569885, -0.0016064416849985719, 0.027725255116820335, -0.02104671485722065, 0.0029268504586070776, -0.01568525657057762, -0.022616570815443993, -0.01732163317501545, 0.013729589059948921, 0.0025327233597636223, 0.02352123335003853, -0.012671931646764278, 0.01635044999420643, 0.002439596224576235, 4.786273348145187e-05, 0.0018209666013717651, -0.012705191038548946, -0.00410756841301918, 0.024319466203451157, -0.01858549937605858, -1.1010767593688797e-05, -0.0223504938185215, 0.010969037190079689, 0.012598760426044464, -0.0094523960724473, -0.012844881974160671, 0.0008460427052341402, -0.002130281412974, -0.020009012892842293, 0.022989079356193542, -0.0011216821148991585, 0.010762826539576054, 0.0064490488730371, -0.015525611117482185, -0.010516705922782421, -0.009538871236145496, -0.0018475742544978857, -3.461083542788401e-05, -0.02706006169319153, -0.01672295853495598, -0.027831686660647392, -0.019263997673988342, 0.01937042735517025, -0.0011075467336922884, -0.019609898328781128, 0.01754779741168022, 0.011793876998126507, -0.026887111365795135, 0.007816020399332047, -0.009272794239223003, 0.0015723506221547723, -0.018332727253437042, -0.002150237327441573, -0.006771667394787073, -0.025570029392838478, 0.018133169040083885, -0.017707444727420807, -0.032142139971256256, -0.0188116654753685, 0.024745188653469086, 0.008128661662340164, -0.0128980977460742, -0.017028948292136192, 0.007130871992558241, -0.017680836841464043, 0.009412484243512154, -0.029321718961000443, -0.026048967614769936, 0.02799133211374283, -0.001905778655782342, 0.0055177779868245125, 0.018186382949352264, -0.036479197442531586, 0.015499003231525421, 0.02071411907672882, 0.0039246403612196445, 0.0216054767370224, -0.022137632593512535, -0.017813876271247864, -0.02062099054455757, -0.010516705922782421, -0.008188528940081596, -0.020567776635289192, 0.01128832995891571, 0.010297191329300404, -0.01756110228598118, 0.012053301557898521, 0.0041740876622498035, -0.0015540578169748187, 0.012798318639397621, 0.0248649250715971, 0.0026907066348940134, 0.017201898619532585, 0.0014941904228180647, 0.0015407538739964366, -0.020541168749332428, -0.006964573636651039, -0.028337232768535614, -0.007889192551374435, 0.007596507202833891, 0.022656481713056564, -0.011354848742485046, -0.03453683480620384, -0.03073192946612835, -0.01672295853495598, -0.0325944684445858, -0.017680836841464043, -0.011474584229290485, 0.004104242660105228, -0.007250606548041105, -0.02551681362092495, 0.00956547912210226, 0.017215201631188393, -0.01885157637298107, 0.02006222866475582, -0.015006760135293007, -0.02113984152674675, 0.003984507638961077, -0.030545674264431, 0.02212432771921158, -0.015312748961150646, -0.0267274659126997, -0.022283975034952164, -0.01866532303392887, -0.021299488842487335, -0.002055447082966566, 0.0019007897935807705, -0.01086925808340311, 0.005015557166188955, -0.01838594116270542, 0.0072772144339978695, 0.009139755740761757, 0.019902583211660385, 0.016217412427067757, -0.011022252030670643, -0.013436904177069664, 0.006631976924836636, 0.004357015714049339, -0.007762805558741093, -0.010110937990248203, 0.016310539096593857, 0.005730640143156052, 0.008833766914904118, -0.0075166840106248856, -0.03216874599456787, -0.005833745002746582, -0.00016796130512375385, 0.03639937564730644, -0.013929147273302078, -0.024319466203451157, 0.020940283313393593, 0.006222882773727179, -0.014115400612354279, -0.013031136244535446, 0.012186340987682343, -0.0026657620910555124, 0.006279424298554659, 0.025769587606191635, -0.012844881974160671, 0.013396992348134518, -0.025942537933588028, -0.005125313997268677, -0.030040128156542778, -0.013689677231013775, -0.005431302823126316, -0.013702981173992157, -0.01396905817091465, 0.00863420870155096, 0.010416926816105843, -0.011986782774329185, 0.002023850567638874, -0.020940283313393593, -0.011028904467821121, -0.012026694603264332, -0.015512307174503803, 0.0020870438311249018, -0.018838273361325264, -0.021898161619901657, 0.018226295709609985, -0.011102075688540936, -0.012498981319367886, 0.02248353138566017, 0.0125721525400877, -0.023028990253806114, 0.01914426125586033, 0.24947407841682434, -0.018093256279826164, 0.021778427064418793, 0.025397079065442085, 0.00019966191030107439, 0.018984615802764893, 0.02892260253429413, 0.008900285698473454, 0.008647512644529343, 0.01819968782365322, -0.032567862421274185, 0.0014659196604043245, 0.01829281449317932, -0.004110894165933132, 0.005684076342731714, -0.02207111194729805, -0.016084372997283936, -0.023401498794555664, -0.009625346399843693, -0.006911357864737511, 0.012079909443855286, -0.01496684830635786, -0.0035288501530885696, 0.004646374844014645, 0.028337232768535614, 0.019955797120928764, -0.039831772446632385, 0.0028603309765458107, 0.00887367781251669, -0.009026672691106796, -0.009705170057713985, 0.003156342078000307, -0.0013337124837562442, -0.01728172041475773, 0.027073366567492485, -0.014487909153103828, 0.02229727804660797, 0.005092054605484009, 0.025676459074020386, 0.003848142921924591, 0.016124283894896507, 0.0028836128767579794, 0.011587666347622871, -0.00872733537107706, -0.004450142849236727, 0.00482930289581418, -0.0225367471575737, -0.013769500888884068, 0.0021119886077940464, 0.020474648103117943, -0.015206318348646164, -0.01142801996320486, 0.026927024126052856, 0.008441302925348282, 0.007835976779460907, 0.00022117675689514726, 0.018146472051739693, -0.010536661371588707, -0.022829432040452957, -0.010510053485631943, -0.008647512644529343, 0.04214664548635483, -0.002602568594738841, 0.01082269474864006, -0.034749697893857956, 0.018505675718188286, -0.008015578612685204, 0.0008285813382826746, 0.01728172041475773, -0.004293822683393955, 0.00863420870155096, 0.008600949309766293, -0.0057572475634515285, 0.0043370602652430534, -0.0363195538520813, -0.025197520852088928, 0.025450294837355614, 0.002946806140244007, 0.0450734943151474, 0.0029750769026577473, -0.010929125361144543, 0.02622191794216633, -0.0072772144339978695, 0.003788275644183159, -0.004959015641361475, -0.03735725209116936, 0.002705673687160015, 0.021725211292505264, 0.01927730068564415, -0.027831686660647392, -0.003412441350519657, -0.011501191183924675, -0.0020970217883586884, -0.02062099054455757, -0.0068448386155068874, 0.010609832592308521, -0.009678562171757221, 0.0240267813205719, -0.02276291325688362, 0.010490098036825657, -0.006469004321843386, -0.02713988535106182, 0.028736349195241928, 0.026847200468182564, -0.03552132099866867, 0.026381565257906914, 0.013902539387345314, 0.015751777216792107, -0.0056109051220119, -0.02631504461169243, 0.014581036753952503, -0.005324872210621834, 0.028017939999699593, 0.017680836841464043, 0.010204064659774303, 0.008886981755495071, -0.0075432914309203625, -0.02732613869011402, 0.027272922918200493, 0.001177392085082829, -0.00015476136468350887, -0.024891531094908714, -0.032621078193187714, 0.014620947651565075, -0.010769478976726532, -0.021685300394892693, -0.03977855667471886, 0.0024479113053530455, -0.01573847234249115, -0.021405918523669243, 0.03751689940690994, 0.011720704846084118, 0.01210651732981205, 0.0144346933811903, -0.0038082313258200884, 0.006306032184511423, 0.018319422379136086, -0.003548806067556143, 0.013982362113893032, 0.006818230729550123, 0.015898119658231735, -0.00812201015651226, -0.012239555828273296, -0.027539001777768135, 0.013742893002927303, -0.023774007335305214, 0.010955733247101307, 0.0012089887168258429, 0.007816020399332047, -0.01557882595807314, -0.016137588769197464, 0.0033026845194399357, -0.019357124343514442, -0.007230650633573532, 0.03137051314115524, -0.024186426773667336, -0.037410467863082886, 0.0036785188131034374, 0.005800485145300627, 0.01635044999420643, -0.023361587896943092, 0.0020122097339481115, 0.0407896526157856, -0.02062099054455757, 0.011015600524842739, -0.009665258228778839, -0.17092806100845337, 0.016363754868507385, 0.03243482485413551, -0.017720747739076614, 0.016270626336336136, 0.02072742208838463, -0.010210716165602207, -0.008966805413365364, -0.013357080519199371, 0.017348241060972214, 0.027831686660647392, 0.02998691238462925, -0.017707444727420807, -0.02654121071100235, -0.0015490688383579254, 0.03682509809732437, -0.0002752237196546048, -0.004480076488107443, 0.03860781714320183, 0.0322219617664814, 0.01252558920532465, -0.018785057589411736, 0.016031157225370407, -0.008747291751205921, 0.0215123500674963, 0.022643178701400757, -0.0016621516551822424, 0.0026225245092064142, -0.0077827610075473785, -0.0027389333117753267, -0.00697122560814023, 0.007463468238711357, 0.011667490005493164, -0.011534451507031918, 0.0248649250715971, 0.010569920763373375, -0.005351479630917311, -0.017893698066473007, -0.0059501538053154945, 0.02374739944934845, 0.0021618781611323357, 0.0011607622727751732, -0.001118356129154563, 0.006924661807715893, -0.053055815398693085, 5.277373202261515e-05, -0.00019883042841684073, 0.002017198596149683, -0.03863442316651344, -0.005447932984679937, 0.01066304836422205, -0.0034290712792426348, -0.005584297236055136, -0.011068816296756268, 0.015365964733064175, 0.020687511190772057, -0.013702981173992157, 0.04086947441101074, 0.0013544998364523053, 0.006355921737849712, 0.00021078310965094715, -0.021033411845564842, -0.006099821999669075, 0.009039976634085178, 0.01708216220140457, -0.008421346545219421, -0.022975774481892586, -0.007975666783750057, -0.00706435227766633, 0.0072772144339978695, -0.0006493949331343174, -0.03123747557401657, 0.0275656096637249, 0.0014792234869673848, 0.009718474000692368, -0.006096496246755123, -0.004835954867303371, 0.002961772959679365, -0.0018958008149638772, -0.017667533829808235, -0.02305559813976288, 0.01760101318359375, -0.037410467863082886, -0.014767290093004704, -0.015419179573655128, 0.023361587896943092, 0.0055410596542060375, 0.00534482765942812, -0.009798296727240086, -0.02113984152674675, 0.033924855291843414, -0.01760101318359375, -0.017295025289058685, -0.02584940940141678, -0.00183094444219023, 0.012485677376389503, 0.013323821127414703, 0.011953523382544518, 0.004077634774148464, -0.01648348942399025, 0.019104350358247757, -0.016416970640420914, -0.014940240420401096, 0.008767247200012207, 0.018226295709609985, 0.007716241758316755, 0.010536661371588707, 0.004862562753260136, 0.013649765402078629, -0.007902495563030243, -0.006379203405231237, 0.02365427277982235, 0.007410252932459116, 0.015059975907206535, -0.013031136244535446, 0.035361673682928085, 0.022563355043530464, -0.01676286943256855, 0.030066736042499542, -0.04459455609321594, 0.023481322452425957, 0.019769543781876564, 0.002384717809036374, -0.008068794384598732, -0.0011524473084136844, 0.013496771454811096, -0.09977898746728897, -0.0011341545032337308, 0.005338176153600216, 0.014887025579810143, -0.000525502662640065, 0.01909104734659195, 0.0195566825568676, 0.007616462651640177, 0.004536618012934923, 0.013470163568854332, -0.030146557837724686, -0.007902495563030243, 0.016031157225370407, -0.000893021933734417, 0.006638628896325827, -0.01487372163683176, -0.0037716457154601812, -0.005720661953091621, -0.015392571687698364, 0.006864794529974461, -0.0018326074350625277, -0.0178803950548172, -0.004340386018157005, -0.0006215399480424821, -0.005255026742815971, -0.00971182156354189, -0.030332813039422035, 0.0331532321870327, 0.010277235880494118, 0.008647512644529343, 0.0054944963194429874, -0.022922560572624207, 0.007663026452064514, -0.03530845791101456, -0.002215093467384577, 0.010210716165602207, -0.014474605210125446, -0.0032893805764615536, -0.006146385800093412, -0.021725211292505264, -0.006352595519274473, 0.0022915909066796303, 0.01013089343905449, -0.020288394764065742, -0.012785014696419239, -0.006575435400009155, -0.020048925653100014, 0.003419093322008848, -0.0037018004804849625, -0.029268503189086914, -0.0404171422123909, 0.006585413124412298, 0.013124262914061546, -0.0031995796598494053, 0.03160998225212097, -0.0196498092263937, 0.006079866550862789, 0.02462545409798622, -0.0142484400421381, -0.0033292921725660563, -0.005770551506429911, -0.022230759263038635, 0.007523335982114077, -0.0004506684490479529, 0.01689590886235237, 0.0012987898662686348, -0.002880286891013384, -0.0015632042195647955, 0.003562110010534525, -0.002348132198676467, -0.0039179883897304535, 0.03110443614423275, -0.011607622727751732, 0.02268308959901333, -0.0023963586427271366, -0.022310582920908928, -0.017867090180516243, -0.013390340842306614, -0.010855954140424728, -0.024878228083252907, -0.0066253249533474445, -0.012758406810462475, 0.013955754227936268, -0.0010917484760284424, 0.015033368021249771, 0.006964573636651039, -0.009818252176046371, 0.005567667540162802, 0.023015687242150307, 0.007909148000180721, -0.026288438588380814, 0.006718452088534832, 0.008447954431176186, -0.01903783157467842, 0.0005791338626295328, 0.003172971773892641, 0.004233954939991236, 0.006332640070468187, 0.013044440187513828, 0.011474584229290485, -0.0180666483938694, -0.01480720192193985, -0.057206619530916214, 0.03134390711784363, 0.012093213386833668, 0.00037936802254989743, 0.017707444727420807, -0.01726841740310192, 0.01988927833735943, 0.038714248687028885, 0.0116408821195364, 0.01403557788580656, -0.026368260383605957, 0.02145913429558277, -0.006259468384087086, -0.01596463844180107, -0.019170869141817093, -0.040949296206235886, 0.02538377419114113, 0.0012788340682163835, 0.021671997383236885, 0.0088470708578825, -0.0034323972649872303, 0.015552218072116375, 0.024040084332227707, 0.017627621069550514, -0.02123296819627285, 0.001222292659804225, -0.05576980486512184, 0.0020787289831787348, -0.0066086952574551105, -0.021818339824676514, -0.0070909601636230946, -0.021339399740099907, -0.008494517765939236, 0.024758493527770042, 0.008461258374154568, -0.010696307756006718, -0.004972319584339857, 0.012824926525354385, -0.0260755755007267, 0.009232882410287857, -0.04512671008706093, -0.01661652699112892, -0.0012804970610886812, 0.005062120966613293, -0.017853787168860435, 0.017428062856197357, -0.013729589059948921, 0.014860417693853378, 0.026155399158596992, 0.013836019672453403, 0.0036186513025313616, 0.004253910854458809, 0.008095402270555496, -0.005840396974235773, -0.009186319075524807, -0.01838594116270542, 0.005760573782026768, -0.02659442648291588, -0.012093213386833668, -0.01782717928290367, 0.008920242078602314, -0.013982362113893032, 0.008487866260111332, 0.009638650342822075, 0.002677402924746275, -0.010749523527920246, -0.007796064950525761, -0.009059932082891464, 0.036532413214445114, -0.03600025922060013, -0.03158337622880936, 0.0004147064173594117, -0.0070909601636230946, 0.008840418420732021, 0.02184494584798813, -0.0115477554500103, -0.006931313779205084, -0.01849237270653248, -0.005624209064990282, 0.024665366858243942, 0.017667533829808235, 0.0020670881494879723, -0.012858185917139053, 0.010549965314567089, 0.026035664603114128, -0.0010110937291756272, -0.01459433976560831, -0.014727379195392132, 0.011620926670730114, 0.016071069985628128, -0.011521147564053535, -0.006575435400009155, 0.023308372125029564, 0.024691974744200706, 0.0019207455916330218, 0.015765080228447914, 0.004014441277831793, -0.023907046765089035, 0.013603202067315578, 0.01802673749625683, 0.01175396516919136, 0.008687424473464489, 0.010343755595386028, -0.007749501615762711, 0.006322661880403757, -0.01811986416578293, -0.024146515876054764, -0.019955797120928764, 0.008820462971925735, 0.012246208265423775, -0.009718474000692368, 0.013902539387345314, 0.002461215015500784, 0.0391133651137352, 0.011647533625364304, 0.01268523558974266, 0.0019240714609622955, -0.01024397648870945, -0.010257280431687832, 0.024758493527770042, 0.00789584405720234, 0.008048838935792446, 0.017933610826730728, -0.007110916078090668, 0.00898676086217165, 0.022842736914753914, 0.01268523558974266, 0.0027805077843368053, -0.0007475109305232763, -0.0348295196890831, 0.01168744545429945, -0.019263997673988342, -0.02564985305070877, -0.006116452161222696, -0.004247258882969618, 0.0005284128710627556, -0.002639154205098748, 0.037037961184978485, -0.026248525828123093, 0.045738689601421356, 0.010749523527920246, 0.005225093103945255, 0.012651976197957993, -0.019024526700377464, 0.015618737787008286, 0.022057808935642242, -0.0029052316676825285, -0.031077830120921135, -0.03868763893842697, 0.009691866114735603, -0.007716241758316755, 0.014115400612354279, -0.029534580186009407, -0.036159906536340714, -0.022337188944220543, 0.00431710435077548, 0.019609898328781128, -0.012419158592820168, -0.006898053921759129, 0.023800615221261978, 0.003621977288275957, 0.0031962536741048098, 0.018133169040083885, -0.011155291460454464, -0.0029201984871178865, 0.0003824861196335405, -0.005444606766104698, -0.003249468980357051, -0.01450121309608221, 0.012558848597109318, 0.006106473971158266, -0.02342810668051243, 0.0054778666235506535, 0.012099865823984146, -0.0012247870909050107, 0.0028320602141320705, 0.008088749833405018, 0.026182007044553757, 0.0004381960607133806, -0.008541081100702286, 0.01978284679353237, -0.019450251013040543, -0.01750788651406765, 0.00743686081841588, -0.011042208410799503, -0.003748364048078656, -0.004453469067811966, -0.04204021394252777]}, {"created_time": 1695640870.95068, "accessed_time": 1695640870.95068, "description": "Helped Mrs. Moore carry groceries into her house.", "poignancy": 3, "embedding_key": [-0.009662246331572533, -0.009339293465018272, 0.00028979324270039797, -0.007137935142964125, -0.0022326644975692034, 0.021749941632151604, 0.014776778407394886, 0.0005021435208618641, 0.004567487630993128, -0.05048622936010361, 0.005150781478732824, 0.014816323295235634, -0.003135616658255458, -0.01768995262682438, -0.005384758114814758, 0.012713829055428505, 0.02435993403196335, 0.012437012046575546, 0.012562238611280918, -0.047322601079940796, -0.016701318323612213, 0.011692240834236145, 0.008067251183092594, -0.005246349610388279, -0.00024674649466760457, -0.0055693029426038265, 0.023252664133906364, -0.020405398681759834, 0.01699131727218628, -0.007006117608398199, 0.012845647521317005, -0.012911556288599968, -0.016582682728767395, -0.015844503417611122, -0.013366327621042728, -0.027602652087807655, 0.006277823820710182, 0.008996566757559776, -0.0013717293040826917, -0.022171758115291595, 0.020761307328939438, -0.0062086195684969425, 0.004116011783480644, -0.009095430374145508, -0.02677220106124878, 0.016411319375038147, -0.03321809321641922, -0.01107269711792469, -0.03461536020040512, -0.0015208481345325708, 0.001301701064221561, 0.005826347973197699, 2.4471259166602977e-05, 0.0010009916732087731, -0.027813561260700226, 0.012041558511555195, 0.0032015254255384207, 0.03327082097530365, 0.012799510732293129, -0.023832663893699646, -0.01112542487680912, 0.020339490845799446, -0.02305493876338005, -0.011975649744272232, -0.0015093141701072454, -0.015870865434408188, -0.000992752960883081, -0.005793393589556217, -0.02439947985112667, 0.02939537540078163, 0.014289052225649357, 0.018507223576307297, 0.013946326449513435, 0.004063284490257502, 0.02322630025446415, -0.010453153401613235, -0.008409976959228516, 0.001886642654426396, -0.008680203929543495, -0.0019607902504503727, 0.0035162405110895634, -0.0162399560213089, -0.01083542499691248, 0.013227919116616249, 0.01568632200360298, -0.0012242580996826291, -0.020655853673815727, 0.03052900917828083, -0.021407214924693108, -0.0016040581976994872, 0.023674482479691505, 0.0008642306202091277, -0.002203005366027355, 0.016094956547021866, 0.02069539949297905, 0.02741810865700245, -0.012614966370165348, 0.050881680101156235, 0.00658759567886591, -0.011665877886116505, -0.018243586644530296, 0.012984056025743484, -0.03725171834230423, 0.003924875985831022, -0.02048449032008648, -0.012318375520408154, -0.017452679574489594, -0.02225084975361824, 0.013313600793480873, -0.03809535130858421, -0.018744494765996933, 0.011613150127232075, 0.019060857594013214, -0.0076783886179327965, -0.021960850805044174, -0.011105651967227459, 0.001684796647168696, -0.02321312017738819, -0.012509511783719063, -0.0008864749106578529, -0.0012011899380013347, 0.02387220785021782, 0.03258536756038666, 0.013069737702608109, -0.007922251708805561, -0.013985871337354183, -0.015053595416247845, 0.011646104976534843, -0.00031492102425545454, 0.004824532661587, 0.010987015441060066, -0.005671462044119835, 0.02656129188835621, -0.02338448166847229, -0.00023562436399515718, 0.032980822026729584, -0.030871735885739326, 0.015488594770431519, 0.0002788770943880081, -0.026113111525774002, -0.01539632212370634, 0.025612203404307365, -0.01274019293487072, -0.0028291400521993637, -0.023951299488544464, 0.02165766805410385, 0.023661300539970398, 0.019219039008021355, -0.002997207920998335, 0.006027370225638151, 0.01896858587861061, -0.02128857932984829, 0.005243054125458002, -0.014842687174677849, 0.054098036140203476, 0.011712013743817806, -0.0023891981691122055, 0.005694529972970486, -0.021789487451314926, -0.0021502783056348562, 0.011850422248244286, 0.004920100327581167, 0.03559081256389618, -0.011487923562526703, -0.02305493876338005, 0.022158576175570488, 0.0019805629272013903, -0.0016938591143116355, -0.002010221825912595, -0.005796689074486494, 0.008884521201252937, -0.00041007701656781137, -0.028894467279314995, 0.02907901257276535, -0.0016155922785401344, 0.0031405596528202295, 0.004936577752232552, 0.005009077489376068, -0.012720420025289059, -0.021090852096676826, -0.017334043979644775, 0.015870865434408188, 0.02176312357187271, -0.0022079485934227705, -0.0010504232486709952, -0.01083542499691248, 0.004583965055644512, -0.006030665710568428, 0.006913844961673021, -0.012806101702153683, 0.012799510732293129, 0.025519931688904762, -0.011942694894969463, -0.00886474922299385, -0.6711109280586243, -0.00417862506583333, 0.00183062010910362, -0.024847660213708878, -0.0035426041577011347, 0.031109007075428963, 0.004438965115696192, 0.012357921339571476, -0.011211106553673744, 0.011178151704370975, -0.007816797122359276, 0.022606756538152695, -0.014737232588231564, 0.019851764664053917, 0.007671797648072243, -0.011804286390542984, 0.009899518452584743, 0.0090822484344244, 0.017663588747382164, 0.011995422653853893, -0.02441266179084778, 0.02870992198586464, -0.014658141881227493, 0.007441116496920586, 0.02247493900358677, -0.01368269044905901, 0.02451811544597149, -0.028683559969067574, -0.003624990116804838, 0.013801326043903828, -0.01821722276508808, 0.03522172197699547, 0.008680203929543495, 0.017004499211907387, 0.051039863377809525, 0.0016501944046467543, -0.0276817437261343, 0.0389389842748642, 0.01709677278995514, 0.03472081571817398, -0.043183520436286926, -0.03514263406395912, 0.016859499737620354, -0.005381462629884481, -0.004933282267302275, 0.003944648429751396, 0.025823112577199936, -0.011277015320956707, 0.012792919762432575, 0.0030103896278887987, 0.010802471078932285, 0.03429899737238884, -0.014974504709243774, -0.00593839306384325, -0.01024224516004324, 0.006169074214994907, 0.016543136909604073, -0.005875779781490564, -0.002081073820590973, 0.0029659010469913483, 0.005187031347304583, 0.0024040276184678078, -0.007849751971662045, -0.02424129843711853, -0.040283527225255966, 0.012496329843997955, -0.02661401964724064, -0.009846791625022888, -0.0014977800892665982, 0.008317705243825912, 0.003437149804085493, 0.026482202112674713, -0.0014977800892665982, 0.011270424351096153, 0.021275397390127182, 0.025493567809462547, 0.0077377064153552055, 0.020550400018692017, -0.0018734608311206102, -0.004185216035693884, 0.022501302883028984, -0.01779540628194809, -0.014526324346661568, -0.009879746474325657, 0.03226900473237038, -0.014579051174223423, -0.015844503417611122, -0.012891783379018307, -0.006788617931306362, -0.0185994952917099, 0.011593378148972988, 0.009181112051010132, 0.00929974764585495, 0.001156701473519206, -0.01376178115606308, 0.015725865960121155, -0.030819008126854897, 0.009424974210560322, 0.015132686123251915, -0.02548038586974144, 0.004791577812284231, -0.025282658636569977, 0.024491751566529274, 0.009174521081149578, 0.016516773030161858, -0.0014911891194060445, 0.0134915541857481, 0.044053517282009125, 0.01751858927309513, -0.015778593719005585, 0.01753177121281624, -0.00036600042949430645, -0.008989975787699223, -0.008456113748252392, -0.02536175027489662, -0.02246175706386566, -0.008073842152953148, -0.0005445724236778915, -0.000954031536821276, -0.05293804034590721, 0.01688586361706257, 0.00732248043641448, 0.00841656792908907, 0.028894467279314995, -0.006478846073150635, 0.0124436030164361, 0.0066337320022284985, -0.012555647641420364, -0.007717933971434832, -0.008660431019961834, 0.007368616294115782, -0.003000503173097968, -0.008330886252224445, -0.0068479361943900585, 0.02343720942735672, 0.002273857593536377, 0.008693385869264603, -0.038833532482385635, 0.01977267488837242, -0.012489738874137402, -0.025783566758036613, 0.0005721717607229948, 0.007012708578258753, -0.008403385989367962, 0.014948141761124134, -0.028077196329832077, -0.0020596536342054605, -0.009214065968990326, -0.025019023567438126, -0.010677243582904339, -0.01112542487680912, -0.013359736651182175, -0.016688136383891106, -0.0023990843910723925, -0.003631581086665392, -0.00804088730365038, -0.015739047899842262, 0.015119505114853382, -0.005219985730946064, 0.006043847184628248, -0.0007744297035969794, 0.03337627276778221, -0.025058569386601448, 0.023292209953069687, -0.01123087853193283, -0.015554503537714481, 0.023845843970775604, 0.039202623069286346, -0.008126568980515003, -0.044000789523124695, 0.0032229458447545767, -0.04041534662246704, -0.02805083431303501, 0.011000197380781174, 0.016899045556783676, 0.02511129528284073, -0.00887133926153183, -0.007889296859502792, 0.01650359109044075, 0.009424974210560322, 0.006258051376789808, -0.02090630680322647, -0.01316860131919384, 0.010393835604190826, 0.01828313246369362, -0.01660904660820961, 0.008027705363929272, 0.013234510086476803, -0.020734943449497223, 0.016595864668488503, 0.014776778407394886, -0.005348508246243, 0.03342900052666664, -0.006198733113706112, -0.005506689660251141, -0.00018300021474715322, 0.012964283116161823, 0.009240429848432541, -0.009240429848432541, -0.005098054651170969, 0.02773447148501873, -0.004102829843759537, -0.001343717915005982, -0.009602928534150124, 0.02403038926422596, -0.01443405169993639, 0.014381324872374535, -0.028209015727043152, 0.03295445814728737, -0.0008374551543965936, -0.016411319375038147, -0.017281316220760345, -0.0023826071992516518, -0.00873293075710535, -0.003536013187840581, 0.016319047659635544, -0.0057868026196956635, 0.02247493900358677, 0.005111236125230789, -0.01099360641092062, -0.0059746429324150085, 0.0020942557603120804, 0.015106323175132275, 0.0031899914611130953, -0.003713967278599739, 0.012160194106400013, 0.0027533448301255703, -0.008192477747797966, -0.0002249141689389944, -0.013148828409612179, -0.013300418853759766, -0.004814646206796169, 0.020299945026636124, 0.026798564940690994, 0.01258201152086258, -0.026113111525774002, 0.01966721937060356, -0.017030863091349602, 0.02736538089811802, -0.003997375722974539, -0.01823040470480919, 0.01316860131919384, 0.034483544528484344, -0.01005110889673233, -0.005707711912691593, -0.007909069769084454, 0.021328125149011612, 0.007612479384988546, -0.006202028598636389, 0.02944810315966606, 0.016543136909604073, 0.0037469216622412205, 0.0006866884650662541, 0.0015224958769977093, 0.01024224516004324, -0.0036052174400538206, 0.01500086858868599, -0.0018174382857978344, 0.0361444465816021, 0.04821896180510521, 0.016859499737620354, 0.008798839524388313, 0.011329742148518562, 0.0021090852096676826, -0.011290197260677814, 0.002511129481717944, 0.021525850519537926, -0.008535204455256462, -0.004320329055190086, -0.008370432071387768, -0.01293132919818163, -0.014209961518645287, 0.003816126147285104, -0.009022930637001991, 0.018190860748291016, 0.019482674077153206, -0.008673612959682941, 0.014855869114398956, 0.004013852681964636, -0.0020991989877074957, -0.026917200535535812, -0.024307208135724068, 0.005747257266193628, 0.018256768584251404, -0.010637698695063591, 0.009840200655162334, -0.017492225393652916, 0.006169074214994907, 0.003618399379774928, -0.02317357435822487, 0.014381324872374535, 0.017136316746473312, -0.020827217027544975, 0.00900315772742033, -0.009662246331572533, 0.002184880431741476, 0.03553808480501175, -0.012562238611280918, 0.028736285865306854, -0.03250627592206001, -0.0031652755569666624, -0.017017681151628494, -0.015119505114853382, -0.020774489268660545, 0.010387244634330273, 0.013030191883444786, -0.0031438551377505064, -0.02305493876338005, -0.0021123806945979595, -0.015027232468128204, -0.014737232588231564, -0.009444747120141983, 0.01688586361706257, 0.009411793202161789, -0.0015908763743937016, 0.0027615835424512625, 0.008311114273965359, -0.008225432597100735, 0.027813561260700226, 0.007665206678211689, -0.0054902127012610435, -0.01432859804481268, -0.025177204981446266, 0.01622677408158779, 0.11652696132659912, 0.02256721258163452, 0.0005004958366043866, 0.018428131937980652, 0.030080828815698624, -0.013208146207034588, -0.01274019293487072, 0.0006912197568453848, 0.014170416630804539, 0.00490362336859107, 0.0285517405718565, -0.023094482719898224, -0.001962437992915511, -0.030950825661420822, 0.0248872060328722, -0.015580867417156696, -0.0244522076100111, -0.01784813404083252, 0.007157708052545786, -0.025071751326322556, 0.0033531158696860075, 0.002997207920998335, -0.015132686123251915, -0.004518055822700262, -0.015290867537260056, -0.013399282470345497, 0.02236948534846306, 0.03000173717737198, 0.015580867417156696, -0.010743153281509876, 0.005678053013980389, -0.00091531005455181, 0.008818612433969975, -0.0008675260469317436, 0.0077377064153552055, 0.0010174688650295138, -0.010281790047883987, 0.003974307328462601, 0.0130104199051857, 0.002778060734272003, 0.011408832855522633, 0.013880416750907898, 0.018731312826275826, -0.023990845307707787, 0.02590220235288143, 0.004356579389423132, 0.010604743845760822, 0.03424626961350441, -0.011441787704825401, 0.003760103601962328, 0.040837161242961884, 0.01608177460730076, 0.01950903795659542, -0.017334043979644775, 0.022224485874176025, 0.014908595941960812, 0.0035096495412290096, 0.0010553664760664105, -0.012562238611280918, 0.009840200655162334, 0.00571100739762187, -0.0010298268171027303, 0.0002751697029452771, -0.012733601965010166, 0.006861117668449879, -0.019113585352897644, -0.037541717290878296, 0.004366465378552675, -0.028182651847600937, -0.014170416630804539, -0.004676237236708403, -0.013260873034596443, -0.018559949472546577, -0.01045974437147379, 0.028393559157848358, 0.024649932980537415, 0.006768845487385988, -0.010268609039485455, 0.006788617931306362, 0.0019031198462471366, -0.009016339667141438, -0.024069935083389282, -0.00031018382287584245, 0.006521686911582947, -0.011685649864375591, 0.012667693197727203, -0.005951575003564358, 0.002799481153488159, -0.02242221310734749, 0.012687466107308865, 0.0036579447332769632, 0.021565396338701248, 0.018691767007112503, -0.005533053074032068, -0.006808390840888023, 0.011520878411829472, 0.003994080238044262, 0.026297656819224358, -0.01983858272433281, 0.011277015320956707, 0.025836294516921043, -0.02300221100449562, 0.01128360629081726, -0.014842687174677849, -0.008456113748252392, -0.01569950394332409, 0.015567685477435589, -0.009919291362166405, -0.014025417156517506, 0.004399419762194157, 0.013814507983624935, 0.005180440377444029, 0.006861117668449879, -0.00937883835285902, -0.010314744897186756, 0.023028574883937836, 0.017004499211907387, 0.008772476576268673, 0.0011262185871601105, -0.025981293991208076, -0.0004137844080105424, -0.031741730868816376, 0.020603125914931297, -0.004864078015089035, -0.01220633089542389, 0.019047675654292107, -0.007137935142964125, -0.03880716860294342, 0.0006920435698702931, -0.004086352419108152, 0.012087694369256496, 0.0007880234625190496, -0.018138132989406586, -0.016543136909604073, -0.011942694894969463, -0.017940405756235123, -0.00329874106682837, 0.00716429902240634, 0.004145670682191849, -0.009484292939305305, -0.018573131412267685, 0.0022326644975692034, -0.007632252294570208, -0.024333570152521133, -0.008897703140974045, -0.024742206558585167, 0.0023859026841819286, -0.013959507457911968, -0.020009946078062057, 0.04046807438135147, 0.013109282590448856, -0.011250651441514492, 0.0007324127946048975, 0.010380653664469719, -0.033191729336977005, -0.024966295808553696, -0.02778719738125801, 0.01671450026333332, 0.0410480722784996, 0.0330071821808815, 0.04154897853732109, -0.0010907924734055996, 0.02321312017738819, -0.014447233639657497, -0.002334823366254568, -0.001379967899993062, 0.006630436517298222, -0.014789960347115993, -0.03124082460999489, 0.027708107605576515, 0.02907901257276535, 0.009332702495157719, 0.0050848727114498615, 0.012535875663161278, -0.02242221310734749, -0.0049135093577206135, -0.010611334815621376, -0.003855671500787139, 0.001003463170491159, -0.026798564940690994, -0.004794873297214508, 0.008515431545674801, -0.00599441584199667, 0.006940208375453949, 0.004349988419562578, -0.01384087186306715, 0.036856263875961304, 0.006215210538357496, 0.010519062168896198, -0.011224287562072277, 0.021380851045250893, -0.010868379846215248, 0.01608177460730076, 0.006600777618587017, -0.03026537224650383, -0.021262215450406075, -0.013280645944178104, -0.0030235713347792625, 0.006834754254668951, -0.019640855491161346, -0.016055410727858543, 0.0102620180696249, 0.0010949118295684457, -0.012423830106854439, -0.014539506286382675, 0.006396459881216288, -0.021644487977027893, -0.0031125484965741634, 0.014315416105091572, -0.014236325398087502, -0.002586924936622381, -0.015501776710152626, -0.00949088390916586, -0.0293426476418972, 0.01338610053062439, 0.02037903666496277, -0.014078143984079361, 0.020352672785520554, -0.005444076377898455, -0.023318573832511902, -0.02193448692560196, -0.006416232790797949, 0.0146713238209486, -0.0051277135498821735, 0.028472650796175003, -0.0013601952232420444, -0.01602904684841633, -0.006310778670012951, 0.053992580622434616, 0.0128786014392972, 0.0008082080748863518, -0.0032295368146151304, 0.018138132989406586, 0.008884521201252937, -0.017610860988497734, -0.0007888473337516189, 0.015066777355968952, -0.02176312357187271, -0.024214934557676315, 0.024149026721715927, 0.0218290314078331, 0.024214934557676315, -0.01622677408158779, -0.01236451230943203, 0.005935097578912973, 0.006465664599090815, -0.023265846073627472, -0.003862262237817049, 0.0033597068395465612, -0.012937919236719608, -0.04078443720936775, 0.007836570031940937, 0.002319993684068322, 0.02504538744688034, -0.02198721282184124, -0.0005243878113105893, -0.013438827358186245, -0.01391996257007122, 0.0102620180696249, 0.01179769542068243, -0.017426317557692528, 0.021578578278422356, 0.0045773740857839584, -0.0012209626147523522, -0.02586265839636326, 0.006538164336234331, 0.0060636200942099094, -0.01805904135107994, -0.028578104451298714, 0.018639041110873222, 0.018942221999168396, -0.0014096269151195884, -0.00902952067553997, 0.0128786014392972, 0.00862747710198164, -9.841282007982954e-06, -0.0038391943089663982, -0.024966295808553696, 0.008324295282363892, -0.016543136909604073, 0.011626332066953182, -0.007764069829136133, -0.012430421076714993, -0.009181112051010132, 0.000992752960883081, -0.011415423825383186, -0.01289837434887886, -0.023938117548823357, 0.014869051054120064, -0.0018240291392430663, -0.04911532253026962, -0.016543136909604073, 0.004498283378779888, 0.003974307328462601, -0.004046807065606117, 0.0032723776530474424, -0.005493507720530033, 0.023661300539970398, -0.03348172828555107, 0.02080085314810276, -0.03564354032278061, 0.009036111645400524, -0.020708581432700157, -0.0014211609959602356, -0.006577709689736366, -0.004053398035466671, 0.013082919642329216, -0.008884521201252937, -0.05032804608345032, -0.028472650796175003, 0.012259057722985744, -0.008779067546129227, -0.01875767670571804, -0.013722235336899757, 0.012779737822711468, 0.016912227496504784, 0.010136790573596954, -0.018678586930036545, -0.019271766766905785, 0.02188175916671753, -0.020444944500923157, 0.013709054328501225, 0.01828313246369362, -0.01634540967643261, -0.013893598690629005, 0.02037903666496277, 0.019100403413176537, 0.016200410202145576, -0.04004625603556633, -0.0051903268322348595, 0.0035491948947310448, 0.023424027487635612, -0.015712684020400047, -0.015528139658272266, -0.011006788350641727, 0.007731115445494652, -0.009392020292580128, 0.007777251768857241, 0.0008180944132618606, 0.027286289259791374, -0.005842824932187796, -0.0035195359960198402, 0.019601311534643173, 0.0017976656090468168, -0.013827689923346043, 0.0177294984459877, -0.016160866245627403, 0.023358119651675224, -0.0009128384408541024, -0.024636751040816307, 0.0024254480376839638, 0.01099360641092062, -0.02563856728374958, -0.04057352617383003, -0.009121793322265148, 0.010650880634784698, -0.016213592141866684, -0.024162206798791885, -0.0036908991169184446, -0.0018421540735289454, -0.004597146529704332, -0.01629268378019333, -0.0046366918832063675, 0.0324799120426178, -0.016371773555874825, 0.012074513360857964, -0.02155221439898014, -0.014882232993841171, -0.010828834027051926, -0.018849948421120644, -0.006297596730291843, -0.0029362421482801437, -0.015356777235865593, -0.008080433122813702, -0.011507696472108364, -0.004494987893849611, -0.004933282267302275, 0.0021716987248510122, -0.012021785601973534, 0.0018520404119044542, -0.014882232993841171, 0.010769516229629517, 0.017927223816514015, -0.009286565706133842, 0.031847186386585236, 0.004175329580903053, -0.015725865960121155, 0.0029345944058150053, 0.0015562742482870817, -0.006722709164023399, -0.037436261773109436, 0.023358119651675224, 0.0013997405767440796, 0.0013420702889561653, -0.012872010469436646, -0.01360359974205494, -0.0015060186851769686, -0.010894743725657463, 0.005299076437950134, -0.0015274391043931246, -0.023779936134815216, 0.001613944536074996, 0.01956176571547985, -0.0021156761795282364, 0.01762404292821884, 0.013260873034596443, -0.017175862565636635, -0.00179437012411654, 0.005767029710114002, -0.022672666236758232, 0.009523837827146053, -0.005325440317392349, 0.009009748697280884, -0.012502920813858509, 0.0058889612555503845, -0.000675978313665837, -0.013748599216341972, -0.0060800970532000065, 0.003522831480950117, -0.025309022516012192, -0.009233838878571987, 0.003102662041783333, -0.006099869962781668, -0.024122662842273712, -0.001496956218034029, -0.01999676413834095, -0.004933282267302275, 0.002366130007430911, -0.024874024093151093, 0.0017334044678136706, -0.016464047133922577, -0.014368142932653427, -0.014394506812095642, 0.009134975261986256, -0.009695201180875301, 0.020036309957504272, 0.23094482719898224, -0.005196917802095413, -0.0026330610271543264, 0.03751535341143608, -0.00026137003442272544, 0.015949957072734833, 0.034008998423814774, 0.004106125328689814, -0.0018784040585160255, -0.008034296333789825, -0.02047130838036537, -0.01163951400667429, -0.022672666236758232, 0.010347699746489525, -0.000670623208861798, -0.0006409641937352717, -0.013959507457911968, -0.021525850519537926, -0.0011303378269076347, -0.02354266308248043, 0.029316283762454987, 0.01324769202619791, -0.0007863757200539112, -0.014948141761124134, 0.027497198432683945, 0.010156563483178616, -0.004442260600626469, 0.0029840259812772274, -0.006992935668677092, 0.0024452207144349813, -0.008568158373236656, 0.01118474267423153, 0.016964953392744064, -0.010031336918473244, 0.011652695946395397, 0.007302707526832819, 0.008238614536821842, -0.009721565060317516, 0.021921304985880852, 0.014223143458366394, -0.002820901572704315, 0.012990646995604038, -0.001886642654426396, 0.010736562311649323, -0.02305493876338005, 0.027971742674708366, -0.01763722486793995, -0.01179769542068243, -0.014223143458366394, 0.003400899935513735, -0.011784513480961323, -0.0090822484344244, -0.011758150532841682, 0.020616307854652405, -0.008363841101527214, 0.00782338809221983, 0.0001672438665991649, -0.0017993133515119553, 0.020945852622389793, 0.008930657990276814, -0.009266792796552181, 0.01228542160242796, -0.019166311249136925, 0.024439025670289993, -0.024808114394545555, 0.012753374874591827, -0.019060857594013214, -0.017294498160481453, -0.006113051902502775, -0.01252269372344017, 0.012562238611280918, 0.02783992514014244, 0.008699976839125156, 0.013880416750907898, -0.019311310723423958, -0.013445418328046799, 0.01741313561797142, -0.017241772264242172, 0.01432859804481268, 0.01912676729261875, -0.007170889992266893, 0.021855395287275314, -0.005312258377671242, -0.040125347673892975, -0.012773147784173489, -0.038886260241270065, 0.011896559037268162, 0.002608345355838537, 0.014078143984079361, 0.005107940640300512, 0.008673612959682941, -0.010420199483633041, 0.011092470027506351, 0.004557601176202297, -0.001078434637747705, 0.02939537540078163, -0.020062673836946487, 0.02348993718624115, -0.00782338809221983, -0.0025852771941572428, -0.03124082460999489, -0.02773447148501873, 0.008535204455256462, -0.008311114273965359, -0.012733601965010166, 0.015554503537714481, 0.02913174033164978, 0.022171758115291595, -0.009932473301887512, -0.030555373057723045, -0.011731786653399467, -0.028736285865306854, -0.003634876571595669, 0.0011402241652831435, 0.011995422653853893, 0.0034470362588763237, 0.005394644569605589, -0.011626332066953182, -0.02144676074385643, 0.007994751445949078, 0.0024106185883283615, -0.0335344560444355, -0.009761109948158264, 0.010769516229629517, 0.006646913941949606, -0.00019772673840634525, -0.01977267488837242, 0.023793118074536324, -0.0022903347853571177, -0.02493993192911148, 0.01919267512857914, -0.01120451558381319, 0.011725195683538914, -0.007711343001574278, -0.0024666411336511374, 0.0152381407096982, 0.00881202146410942, 0.010611334815621376, -0.013854053802788258, -0.003216354874894023, 0.02736538089811802, -0.019851764664053917, -0.006284414790570736, -0.00881202146410942, 0.011863604187965393, -0.003522831480950117, -0.007355434820055962, 0.0058724842965602875, -0.024663114920258522, -0.015844503417611122, -0.02219812199473381, 0.009609519504010677, 0.008238614536821842, -0.021354487165808678, 0.007856342010200024, -0.019917674362659454, -0.04202352464199066, -0.014064962044358253, 0.02715447172522545, -0.004346692934632301, -0.019324492663145065, -0.013577235862612724, 0.016253137961030006, -0.004583965055644512, 0.00615259725600481, -0.0018751085735857487, -0.1690431833267212, 0.019219039008021355, -0.0019014721037819982, -0.030766280367970467, 0.005793393589556217, 0.006376687437295914, 0.008133159950375557, -0.003997375722974539, -0.03348172828555107, -0.0010627812007442117, 0.011725195683538914, 0.00256056129001081, -0.02074812538921833, 0.02380630001425743, 0.0046202149242162704, 0.0017894270131364465, -0.02258039452135563, 0.003277320647612214, 0.008746112696826458, 0.008963611908257008, 0.027049018070101738, 0.006679868325591087, 0.0021799372043460608, -0.01472405157983303, 0.013695872388780117, 0.008607704192399979, -0.009576564654707909, 0.00835725013166666, 0.006600777618587017, -0.018678586930036545, -0.024808114394545555, 0.0030795938801020384, -0.006992935668677092, 0.0012918147258460522, 0.03037082776427269, 0.014552688226103783, -0.013372918590903282, -0.007045662961900234, 0.009583155624568462, 0.022382667288184166, -0.0075663430616259575, 0.02364811860024929, -0.009424974210560322, 0.020405398681759834, -0.014737232588231564, 0.025440840050578117, 0.03590717539191246, 0.0012151956325396895, -0.020879942923784256, 0.0034338543191552162, -0.018309496343135834, -0.04210261255502701, 0.007803615182638168, 0.01645086519420147, -0.00455430569127202, 0.011975649744272232, -0.02467629685997963, 0.01968040131032467, -0.011197924613952637, -0.028525378555059433, 0.000546220107935369, -0.022712212055921555, -0.0015760469250380993, -0.011903150007128716, -0.0030532304663211107, 0.009418383240699768, -0.01456587016582489, -0.019983582198619843, -0.018994947895407677, 0.012667693197727203, -0.01907403953373432, -0.017821770161390305, 0.006577709689736366, -0.0020514149218797684, 0.00953701976686716, 0.022725393995642662, 0.0004621862608473748, 0.01639813743531704, -0.013801326043903828, -0.026244929060339928, -0.010037927888333797, 0.03740989789366722, -0.0248872060328722, -0.02783992514014244, 0.0014195132534950972, -0.008344068191945553, -0.006475550588220358, 0.0028291400521993637, 0.01795358769595623, -0.015844503417611122, 0.015554503537714481, -0.03870171308517456, -0.03176809474825859, -0.047217145562171936, 0.004244533833116293, 0.012812692672014236, 0.022857211530208588, -0.008442931808531284, -0.005615439265966415, -0.014064962044358253, -0.024860842153429985, -0.0229626651853323, -0.014223143458366394, 0.010644289664924145, 0.025770384818315506, 0.010064290836453438, 0.022329939529299736, 0.013735417276620865, 0.031003553420305252, -0.023621754720807076, 0.0023710732348263264, 0.004752032458782196, 0.014948141761124134, 0.003033457789570093, 0.011593378148972988, 0.04041534662246704, 0.0035590813495218754, -0.018520405516028404, 0.023938117548823357, -0.008660431019961834, 0.03762080892920494, -0.011059516109526157, -0.013748599216341972, 0.0049398732371628284, 0.00032357158488593996, 0.02799810655415058, -0.10487426072359085, -0.01104633416980505, 0.0010701959254220128, 0.013695872388780117, -0.012087694369256496, 0.015620412304997444, -0.018678586930036545, 0.005523167084902525, -0.004284079186618328, 0.020669035613536835, -0.004844305105507374, -0.007197253406047821, 0.0006038903957232833, -0.015488594770431519, 0.01741313561797142, -0.011250651441514492, 0.0022392552345991135, -0.029553556814789772, -0.013656326569616795, 0.0202603992074728, -0.019060857594013214, -0.007507025264203548, -0.02586265839636326, -0.006119642406702042, 0.011547241359949112, 0.002291982527822256, -0.02101176232099533, 0.02429402619600296, 0.020721761509776115, 0.015739047899842262, -0.01346519123762846, -0.007210434880107641, 0.020616307854652405, -0.03601263090968132, -0.0001235792151419446, 0.005981233902275562, 0.006178960669785738, -0.004514760337769985, 0.007961796596646309, 0.0012127240188419819, -0.007909069769084454, -0.019482674077153206, 0.007217025849968195, -0.00527930399402976, 0.008179295808076859, -0.008686794899404049, -0.02240903116762638, 0.0077574788592755795, -0.010229063220322132, -0.0023990843910723925, -0.012707238085567951, 0.029052648693323135, -0.021842213347554207, -0.007909069769084454, 0.004676237236708403, -0.010973834432661533, 0.02773447148501873, 0.015251322649419308, 0.004814646206796169, -0.0009548554080538452, 0.013478373177349567, -0.008054069243371487, -0.01966721937060356, 0.024149026721715927, 0.0016180637758225203, -0.009635883383452892, -0.0007439468754455447, 0.0005470439791679382, 0.0072895255871117115, -0.003142207395285368, 0.02731265313923359, 0.026297656819224358, -0.013096100650727749, 0.025875838473439217, -0.02074812538921833, 0.011916331946849823, -0.028156287968158722, -0.00680179987102747, 0.010874970816075802, -0.04123261570930481, -0.006900663021951914, -0.019864946603775024, 0.014262689277529716, -0.03253263980150223, 0.015488594770431519, 0.0023183459416031837, -0.0005495155928656459, 0.027233563363552094, 0.016529954969882965, -0.011830650269985199, 0.01758449897170067, 0.029553556814789772, 0.014737232588231564, -0.019495856016874313, 0.009062475524842739, 0.024267662316560745, -0.03933443874120712, 0.012087694369256496, 0.01225246675312519, -0.008647249080240726, -0.020682217553257942, -0.009207474999129772, -0.039861708879470825, 0.02902628481388092, 0.015462230890989304, 0.007427934557199478, 0.007671797648072243, -0.02198721282184124, -0.00988633744418621, -0.0027286289259791374, -0.006271233316510916, 0.003107605269178748, -0.012575420551002026, 0.04202352464199066, 0.013227919116616249, 0.026482202112674713, -0.00943815615028143, -0.009761109948158264, 0.007579525001347065, 0.00819906871765852, 0.0037436261773109436, 0.011646104976534843, -0.0054902127012610435, 0.0016370125813409686, -0.00047372031258419156, 0.022343121469020844, 0.002313402947038412, 0.01971994712948799, -0.01293132919818163, 0.030080828815698624, -0.011441787704825401, 0.0009532076655887067, -0.01443405169993639, -0.019429948180913925, -0.012727010995149612, 0.03416718170046806, 0.010657471604645252, -0.007876114919781685, -0.011336333118379116, 0.009187702089548111, 0.021591760218143463, -0.009879746474325657, -0.016648590564727783, -0.027813561260700226, -0.004297261126339436, -0.005038736388087273, -0.00725657120347023, 0.006429414264857769, 0.0031224347185343504, 0.0033465251326560974, 0.010281790047883987, -0.016437683254480362, 0.007559752557426691, 0.02107767015695572, 0.01865222305059433, -0.009273383766412735, 0.003858966985717416, -0.0038194216322153807, 0.0038853303994983435, -0.007190662436187267, -0.018797222524881363, -0.03253263980150223, 0.01832267828285694, 0.0053781671449542046, 0.02219812199473381, 0.021380851045250893, 0.012608375400304794, -0.019179493188858032, 0.006814981810748577, 0.011725195683538914, 0.03026537224650383, -0.04397442564368248, -0.0045773740857839584, -0.006396459881216288, 0.010710198432207108, -0.02762901596724987, 0.021156761795282364, 0.012845647521317005, -0.01826995052397251, -0.013043373823165894, 0.004438965115696192, 0.026192201301455498, 0.029316283762454987, 0.003865557722747326, -0.02644265629351139, 0.025730838999152184, 0.025388114154338837, 0.029764465987682343, -0.007942023687064648, -0.006014188285917044, 0.006640322972089052, -0.010097245685756207, -0.004046807065606117, 0.006205324083566666, 0.012430421076714993, -0.00900315772742033, 0.02387220785021782, 0.025928566232323647, 0.013893598690629005, 0.010710198432207108, 0.025770384818315506, -0.00366124021820724, 0.005832938943058252, 0.01346519123762846, 0.0033168660011142492, -0.012021785601973534, -0.02193448692560196, 0.016253137961030006, -0.029316283762454987, -0.018454495817422867, -0.012318375520408154, 0.017281316220760345, 0.009253611788153648, 0.000622427323833108, 0.014315416105091572, 0.03398263454437256, -0.021143579855561256, 0.03503717854619026, 0.007269753143191338, -0.029052648693323135, -0.02472902461886406, 0.012496329843997955, 0.016635410487651825, 0.01639813743531704, 0.01303678285330534, 0.0061921426095068455, -0.002972492016851902, 0.015185413882136345, 0.021894941106438637, -0.006024074740707874, -0.006323960144072771, -0.012964283116161823, 0.010815653018653393, 0.0011163322487846017, -0.02516402304172516, -0.010413608513772488, -0.012278830632567406, 0.005628621205687523, 0.004076466429978609, 0.010037927888333797, -0.003344877390190959, 0.018942221999168396, -0.006452482659369707, -0.019271766766905785, 0.02731265313923359, 0.012074513360857964, 0.014908595941960812, 0.020062673836946487, 0.0020266990177333355, -0.013096100650727749, 0.008825203403830528, -0.011296787299215794, 0.0038853303994983435, 0.014539506286382675, -0.017268136143684387, -0.01500086858868599, 0.006010892800986767, 0.00042676020530052483, -0.006363505497574806, -0.015264504589140415, 0.0005721717607229948, 0.006406346336007118, 0.0012720420490950346, 0.011323151178658009, -0.009240429848432541, -0.03005446493625641, -0.005832938943058252, 0.003895216854289174, -0.017874497920274734, 0.00881202146410942, -0.029896283522248268, 0.007329070940613747, 0.01368269044905901, -0.01823040470480919, -0.012245875783264637, 0.03540626913309097, -0.006673277355730534, -0.019060857594013214, -0.0025424363557249308, 0.023094482719898224, 0.0008300403715111315, -0.03042355366051197, 0.02380630001425743, -0.004748736973851919, -0.007533388677984476, -0.0024073231033980846, -0.003822716884315014, -0.012074513360857964, -0.013893598690629005, -0.010077472776174545]}, {"created_time": 1695640873.940454, "accessed_time": 1695640873.940454, "description": "Wished Carmen a good day as she passed by the pharmacy.", "poignancy": 2, "embedding_key": [-0.010799203999340534, 0.016760991886258125, 0.02148074097931385, -0.0074391611851751804, 0.014799878001213074, 0.01634262129664421, 0.018447551876306534, -0.008099403232336044, 0.0045661283656954765, -0.027351010590791702, 0.012165447697043419, 0.00261318520642817, 0.016760991886258125, -0.00745223555713892, 0.013740875758230686, -0.008615829981863499, 0.028213901445269585, -0.01197587326169014, 0.013753950595855713, -0.028684569522738457, -0.004173905588686466, 0.019676515832543373, 0.008563533425331116, 0.02154611237347126, -0.020670147612690926, -0.004772045649588108, 0.0075045316480100155, -0.01647336222231388, 0.029730496928095818, -0.031011758372187614, 0.012224281206727028, 0.0011660460149869323, -0.028030864894390106, -0.010694611817598343, -0.012779929675161839, -0.02076166681945324, 0.002915523713454604, -0.008746570907533169, 0.01784614287316799, -0.009021126665174961, 0.029756644740700722, -0.011577112600207329, 0.005125046242028475, -0.010943019762635231, -0.014433803036808968, 0.0017502947011962533, -0.01174707617610693, 0.005131583195179701, -0.02434396930038929, 0.009785961359739304, 0.011060685850679874, -0.010812277905642986, -0.006870437879115343, -0.020134110003709793, 0.016577955335378647, -0.003248913213610649, 0.0005625947378575802, 0.006599150598049164, -0.016054991632699966, 0.0029759914614260197, -0.023990968242287636, -0.006046770140528679, -0.004464804194867611, 0.01619880646467209, 0.0012158909812569618, -0.015152878127992153, 0.005984668154269457, -0.005004110746085644, 0.008543922565877438, 0.019022811204195023, 0.0025804999750107527, -0.018055327236652374, 0.006347474176436663, 0.00816477369517088, 0.00904727540910244, 0.008171310648322105, -0.006494557950645685, 0.01580658368766308, 0.008759644813835621, 0.000695787079166621, 0.012348485179245472, -0.042020149528980255, -0.01122411247342825, 0.022173669189214706, 0.02239592932164669, -0.0008183567551895976, -0.022683558985590935, 0.01080574095249176, -0.023023484274744987, -0.033548131585121155, 0.01717936433851719, 0.020160257816314697, -0.00567742669954896, 0.014878322370350361, 0.011132593266665936, 0.014642988331615925, 0.030933313071727753, 0.04379822686314583, 0.01379317231476307, -0.026984935626387596, 0.006909660529345274, 0.019506553187966347, -0.017362400889396667, 0.0107338335365057, -0.027194121852517128, -0.012904133647680283, -0.03213613107800484, -0.0025968425907194614, 0.03697354719042778, -0.014237691648304462, -0.027455603703856468, 0.054963503032922745, 0.009125719778239727, -0.013583987019956112, 0.0007742316811345518, -0.0022160594817250967, 0.0012469419743865728, 0.007596050389111042, 0.00034952780697494745, -0.03148242458701134, -0.002090221270918846, 0.043379854410886765, 0.02251359447836876, 0.0005674975109286606, 0.02383407950401306, 0.010746907442808151, 0.0038241734728217125, -0.01431613601744175, -0.0034482930786907673, 0.01997722126543522, 0.007164605427533388, 0.010053981095552444, 0.0002937586104962975, -0.006530511658638716, -0.004598813597112894, 0.0067723821848630905, -0.0214676670730114, 0.01338133867830038, -0.009106108918786049, -0.0169309563934803, 0.009929777123034, 0.046386897563934326, -0.0107338335365057, 0.020578628405928612, -0.040189772844314575, 0.03783643618226051, 0.01474758144468069, -0.007929439656436443, -0.006105603184551001, 0.007053475361317396, 0.028684569522738457, -0.014943692833185196, 0.014734507538378239, -0.02701108530163765, 0.018264513462781906, -0.007360716816037893, 0.00554668577387929, 0.0031541259959340096, -0.013329042121767998, -0.00411834055557847, 0.011740539222955704, -0.0037457288708537817, 0.029076792299747467, -0.008256291970610619, 0.018826700747013092, 0.03428028151392937, 0.011250260286033154, 0.0055368803441524506, -0.018212217837572098, 0.0011407149722799659, -0.006282103713601828, 0.012969504110515118, -0.039745256304740906, 0.008792330510914326, -0.0025723285507410765, 0.0032603528816252947, -0.001199548365548253, 0.0035136635415256023, -0.015231323428452015, -0.022945040836930275, -0.019362738355994225, 0.010759982280433178, 0.024134783074259758, 0.015257471241056919, 0.008171310648322105, 0.0074391611851751804, 0.010426592081785202, -0.007341105490922928, -0.003709775162860751, -0.013263671658933163, -0.013544764369726181, 0.039536070078611374, 0.015009063296020031, -0.03982369974255562, -0.6656284332275391, -0.034594062715768814, -0.00633113132789731, -0.02557293325662613, 0.015218249522149563, 0.034411024302244186, 0.023481078445911407, -0.004164100158959627, -0.02370333857834339, 0.016577955335378647, -0.028423087671399117, 0.014237691648304462, -0.004863563925027847, 0.016303399577736855, -0.01750621572136879, -0.007929439656436443, -0.0018499847501516342, -0.007432624232023954, 0.01236809603869915, 0.016970178112387657, -0.013583987019956112, -0.001347449142485857, -0.01855214312672615, 0.0015836000675335526, 0.023533374071121216, 0.004405970685184002, 0.013492467813193798, -0.014982915483415127, -0.014891396276652813, 0.02954746037721634, -0.03545695170760155, 0.019768035039305687, -0.029756644740700722, -0.008576607331633568, 0.049498531967401505, -0.006318057421594858, -0.004206590820103884, 0.009681369177997112, 0.011805909685790539, 0.03391420841217041, -0.03911769762635231, 0.007837921380996704, -0.008811941370368004, -0.013897765427827835, -0.013649357482790947, -0.0032636215910315514, 0.023637967184185982, 0.012315799482166767, -0.014420729130506516, -0.005040064454078674, 0.022748928517103195, -0.0026998009998351336, 0.001443870598450303, 0.004458267241716385, 0.0068769752979278564, 0.012322336435317993, 0.01396313589066267, -0.004121609032154083, 0.01699632592499256, -0.00042123105959035456, 0.00953101646155119, 0.023154225200414658, -0.002044461900368333, 0.0008293880382552743, -0.00979903619736433, 0.012766855768859386, -0.005219833459705114, -0.01028277724981308, 0.014538396149873734, 0.0020542675629258156, 0.016447214409708977, 0.005651278421282768, -0.007053475361317396, 0.013727801851928234, 0.014041580259799957, 0.025808267295360565, -0.017937662079930305, -0.02148074097931385, -0.004536711610853672, 0.013989283703267574, 0.02910294011235237, -0.008092866279184818, -0.03467250615358353, 0.022670485079288483, 0.022500520572066307, -0.004216396249830723, -0.013989283703267574, 0.00584412133321166, -0.008217070251703262, -0.0046837953850626945, 0.017166290432214737, 0.015335915610194206, 0.003650941653177142, -0.014106950722634792, 0.015989620238542557, -0.002757000271230936, -0.007864069193601608, 0.011897427961230278, 0.001835276372730732, -0.025664452463388443, 0.014015432447195053, 0.009544091299176216, -0.008883848786354065, 0.007236512843519449, 0.006693937815725803, -0.006311520468443632, 0.0037784141022711992, 0.016041917726397514, 0.03399265184998512, -0.04662223160266876, 0.018146846443414688, 0.0016751186922192574, -0.007125382777303457, -0.007916365750133991, -8.498162787873298e-05, -0.02792627178132534, -0.0130218006670475, 0.01109337154775858, -0.004906055051833391, -0.03265909478068352, -0.007890217937529087, -0.012374632991850376, 0.013688580133020878, -0.00037588030681945384, 0.013172152452170849, -0.007301883306354284, 0.004435387440025806, -0.01925814524292946, -0.010975704528391361, -0.014695284888148308, 0.017035547643899918, -0.029129087924957275, -0.005121777765452862, -0.013191764242947102, 0.035300061106681824, -0.008635440841317177, -0.0024824442807585, -0.025494489818811417, 0.027664789929986, -0.0035724970512092113, -0.0201864056289196, -0.01112605631351471, -0.018172994256019592, 0.006308251991868019, 0.01874825544655323, -0.03161316737532616, -0.008772718720138073, -0.0006005913601256907, -0.038960810750722885, -4.9538572056917474e-05, 0.0015206809621304274, -0.024252450093626976, -0.0026082824915647507, 0.03490784019231796, 0.0012845300370827317, -0.015139804221689701, -0.01660410314798355, 0.005147925578057766, -0.0003352280182298273, -0.002972722752019763, 0.0077398656867444515, 0.011825520545244217, -0.005638204514980316, 0.006046770140528679, 0.023794855922460556, -0.014329210855066776, 0.019114330410957336, 0.027952419593930244, 0.013244060799479485, -0.04327526316046715, -0.009217238053679466, -0.016238028183579445, -0.008753107860684395, -0.004974693991243839, 0.02154611237347126, 0.01289105974137783, -0.0033567743375897408, 0.003709775162860751, 0.015453582629561424, -0.00807325541973114, -0.0054094078950583935, -0.007138457149267197, -0.015218249522149563, -0.004275229759514332, 0.018382180482149124, -0.008753107860684395, 0.022278262302279472, 0.012505373917520046, 0.002436684910207987, 0.026069749146699905, 0.002866495866328478, 0.008315125480294228, -0.00536691676825285, 0.007203827612102032, -0.010668463073670864, 0.001216708216816187, -0.0007390950340777636, 0.03046264685690403, 0.012897596694529057, 0.01276031881570816, 0.01992492377758026, 0.0033012095373123884, 0.009923240169882774, 0.01711399294435978, -0.009086497128009796, -0.020134110003709793, 0.020657073706388474, -0.043066076934337616, 0.0318746492266655, 0.026409676298499107, -0.017009399831295013, -0.015505879186093807, -0.006354011129587889, -0.013950061984360218, 0.002109832363203168, 0.0015484633622691035, 0.006288640666753054, -0.0009821915300562978, -0.004278498236089945, 0.0031296119559556246, -0.007661420851945877, 0.0040039424784481525, 0.01613343507051468, -0.013597060926258564, -0.0022127910051494837, -0.016028843820095062, 0.026043601334095, 0.020460961386561394, 0.0010263166623190045, -0.013675505295395851, -0.006301715038716793, 0.005804899148643017, 0.007707180455327034, 0.02030407264828682, -0.00014064868446439505, -0.01738854870200157, -0.005958519876003265, -0.018787477165460587, 0.024500858038663864, 0.019284293055534363, 0.013165615499019623, -0.01680021546781063, 0.03741806745529175, -0.006053307093679905, -0.012773392722010612, 0.013662431389093399, 0.01161633525043726, 0.01866981014609337, 0.008615829981863499, 0.006275566760450602, -0.0008767816470935941, -0.016630250960588455, -0.03299902006983757, 0.0029269633814692497, -0.0035528859589248896, -0.018578292801976204, -0.0070665497332811356, 0.010491962544620037, 0.029338274151086807, 0.040189772844314575, 0.012570744380354881, 0.016499510034918785, 0.022565891966223717, -0.001828739303164184, -0.011335242539644241, 0.01724473387002945, 0.016760991886258125, -0.016891732811927795, -0.011367927305400372, -0.016159584745764732, 2.8727265089401044e-05, 0.0035136635415256023, -0.009125719778239727, -0.011890891008079052, 0.020016442984342575, -0.0022945040836930275, 0.007471846416592598, -0.010295851156115532, 0.0028174680192023516, 0.009334905073046684, -0.0076810321770608425, -0.040059033781290054, -0.0030299220234155655, 0.0062722982838749886, 0.004912592004984617, -0.0034973209258168936, -0.009014589712023735, 0.01704862341284752, 0.0036378675140440464, 0.008903460577130318, 0.013976209796965122, 0.011021464131772518, -0.007994810119271278, 0.012505373917520046, -0.005102166440337896, -0.006811604835093021, 0.03417569026350975, 0.00816477369517088, 0.011642483063042164, 0.0015590860275551677, -0.010831889696419239, -0.01125679723918438, -0.017153214663267136, -0.03268524259328842, -0.01946733146905899, 0.007314957212656736, -0.03200538828969002, -0.028161605820059776, -0.008151699788868427, 0.004046433139592409, -0.016774065792560577, -0.015989620238542557, -0.008177847601473331, -0.017087845131754875, 0.0201864056289196, -0.008243218064308167, -0.013597060926258564, 0.006553390994668007, 0.03950992226600647, -0.014342284761369228, -0.006076186429709196, -0.0033322605304419994, 0.0009168210672214627, -0.0026899955701082945, 0.09847410023212433, 0.01191703975200653, 0.009563702158629894, 0.020983925089240074, 0.013479393906891346, 0.007968662306666374, -0.010590018704533577, -0.0008040569955483079, 0.018473699688911438, -0.007589513435959816, 0.011590187437832355, -0.03932688385248184, 0.0024105366319417953, -0.011812446638941765, 0.011550964787602425, -0.0010058883344754577, -0.00966175738722086, 0.007635272573679686, 0.0002960057172458619, -0.025690600275993347, 0.016355695202946663, 0.0014218080323189497, -0.019937997683882713, 0.016172658652067184, -0.004222933202981949, 0.018251439556479454, 0.003654210129752755, -0.005076018162071705, 0.027377160266041756, 0.0048799067735672, 0.00803403276950121, 0.022539744153618813, -0.022539744153618813, 0.004925665911287069, -0.010073591955006123, -0.00787714309990406, 0.028213901445269585, 0.023742560297250748, 0.012616503983736038, -0.026331230998039246, 0.027351010590791702, 0.011949724517762661, 0.009550628252327442, -0.01200855802744627, 0.01474758144468069, 0.004798193462193012, 0.014995989389717579, 0.0025412775576114655, -0.003124709241092205, -0.008302051573991776, 0.04076503589749336, 0.0016849242383614182, 0.01575428619980812, -0.01330943126231432, 0.01370165403932333, 0.03987599536776543, -0.00452363770455122, -0.0175715871155262, -0.021951409056782722, 0.03116864711046219, 0.008001347072422504, -0.011884354054927826, -0.021336926147341728, -0.01542743481695652, -0.009426424279808998, 0.005602250806987286, -0.029390569776296616, 0.012191595509648323, -0.005886612460017204, -0.02233055792748928, -0.023611819371581078, -0.008537385612726212, -0.022879669442772865, 0.019179699942469597, 0.0371042862534523, 0.02421322837471962, 0.010374296456575394, -0.002021582331508398, 0.013897765427827835, 0.013858542777597904, -0.014329210855066776, -0.022958114743232727, 0.013897765427827835, -0.00855699647217989, -0.012021631933748722, 0.009982072748243809, -0.003915692213922739, -0.004200053866952658, -0.036738213151693344, 0.03375731781125069, 0.044478077441453934, 0.012256965972483158, 0.02967820130288601, -0.01255767047405243, -0.0062134647741913795, -0.014237691648304462, 0.00989055447280407, 0.028161605820059776, -0.012472688220441341, 0.030514942482113838, -0.005157731473445892, -0.007426087278872728, 0.0120477806776762, -0.023546449840068817, 0.026828046888113022, -0.005324426107108593, 0.018016105517745018, 0.02017333172261715, -0.0014258937444537878, -0.001457761856727302, -0.011766687035560608, -0.018277587369084358, 0.004389628302305937, 0.005824510473757982, 0.0038307104259729385, 0.01328328251838684, 0.00221442524343729, 0.022605113685131073, -0.012570744380354881, -0.03174390643835068, 0.008602756075561047, 0.011315630748867989, 0.027167974039912224, -0.01581965759396553, 0.006726623047143221, -0.0008506334270350635, -0.02063092589378357, -0.021389223635196686, -0.016970178112387657, 0.016185732558369637, 0.004801462404429913, 0.013185227289795876, -0.01255767047405243, -0.017283955588936806, -0.010302388109266758, -0.023415707051753998, 0.006491289008408785, -0.002333726268261671, 0.0010018027387559414, -0.02199063077569008, -0.02290581911802292, 0.012511910870671272, -0.01210661418735981, -0.020722443237900734, 0.006981567945331335, -0.02714182622730732, 0.023075781762599945, 0.008151699788868427, 0.009223775938153267, -0.00030989694641903043, 0.014629914425313473, -0.01011935155838728, -0.035901471972465515, 0.021781446412205696, -0.007086160592734814, -0.007275735028088093, -0.009478720836341381, -0.013427097350358963, -0.001512509654276073, 0.035509247332811356, 0.017754623666405678, 0.0015852343058213592, 0.008713886141777039, -0.009537553414702415, 0.0011840228689834476, 0.0030168478842824697, 0.012564207427203655, -0.007131920196115971, -0.022801226004958153, 0.023794855922460556, 0.016355695202946663, 0.008694274351000786, 0.023023484274744987, -6.817937537562102e-05, -0.04186325892806053, -0.0008400107617489994, 0.009609461762011051, -0.017950735986232758, 0.006592613644897938, -0.013453246094286442, -0.006184048019349575, -0.006308251991868019, -0.011282945983111858, 0.007131920196115971, 0.02797856740653515, 0.003585571190342307, 0.016904806718230247, -0.0003726117720361799, -0.0016849242383614182, -0.010073591955006123, 0.01392391324043274, -0.006017353385686874, 0.019859554246068, 0.0025461805053055286, -0.005098897963762283, -0.033234354108572006, 0.0031770055647939444, -0.006327862851321697, 0.006017353385686874, -0.014760655350983143, 0.010125888511538506, 0.003932034596800804, 0.004984499420970678, -0.030279608443379402, 0.0023451661691069603, 0.007661420851945877, 0.004883175250142813, -0.0214676670730114, 0.00045759338536299765, -0.0054094078950583935, -0.00810594018548727, -0.006321325898170471, -0.009602924808859825, -0.02452700585126877, 0.007131920196115971, -0.00029947853181511164, -0.02871071733534336, 0.026213563978672028, -0.012786466628313065, -0.030384201556444168, -0.02656656503677368, -0.02837079018354416, 0.0030528015922755003, -0.02544219233095646, 0.010858037509024143, 0.0011398978531360626, -0.01191703975200653, 0.0012044511968269944, 0.028083160519599915, 0.008838090114295483, 0.002876301296055317, 0.02108851820230484, 0.04029436782002449, -0.0001298216957366094, -0.006010815966874361, -0.010629241354763508, 0.03064568340778351, -0.012283114716410637, -0.03268524259328842, 0.0060990662313997746, -0.003311015199869871, 0.0027308519929647446, -0.021336926147341728, 0.016094213351607323, -0.02316730096936226, 0.013714727945625782, -0.014982915483415127, -0.0009732031030580401, -0.021585334092378616, 0.0012690045405179262, -0.04704060032963753, 0.009171479381620884, -0.024226302281022072, 0.015675842761993408, 0.02128463052213192, -0.015453582629561424, -0.01601576991379261, -0.006236344110220671, -0.006007547490298748, -0.0038960808888077736, -0.012747244909405708, -0.008145162835717201, -0.018630588427186012, 0.019101256504654884, -0.008942682296037674, -0.005951982922852039, 0.020408665761351585, 0.001763368840329349, -0.0004718932032119483, 0.020343294367194176, 0.009622535668313503, -0.021559186279773712, -0.01109337154775858, -0.00849816296249628, -0.00040447988430969417, -0.008341274224221706, -0.01093648187816143, -0.02434396930038929, -0.0002704703947529197, -0.017022473737597466, 0.020800888538360596, 0.02200370468199253, -0.0060336957685649395, -0.027612492442131042, -0.010818815790116787, -0.014329210855066776, -0.0060435011982917786, 0.002887741196900606, 0.000558509083930403, -0.0045563229359686375, -0.03477709740400314, -0.02525915578007698, -0.009393738582730293, 0.021206185221672058, 0.011054148897528648, 0.001361340400762856, 0.006909660529345274, -0.00947218295186758, -0.02192526124417782, 0.051904164254665375, -0.017283955588936806, 0.00139565987046808, -0.017780771479010582, -0.008151699788868427, -0.018316810950636864, -0.028475383296608925, 0.016238028183579445, -0.004755702801048756, -0.01639491692185402, -0.024435486644506454, 0.0051773423328995705, 0.016970178112387657, 0.013329042121767998, -0.024004042148590088, 0.040268220007419586, 0.016434140503406525, 0.019035885110497475, -0.01978110894560814, -0.022539744153618813, 0.019088182598352432, -0.01880055107176304, 0.015728138387203217, 0.006291909143328667, -0.013315968215465546, -0.0030952924862504005, 0.006664521060883999, -0.006684132385998964, 0.02004259079694748, -0.020290998741984367, -0.00019069795962423086, -0.03788873180747032, 0.01418539509177208, -0.00989055447280407, -0.028475383296608925, -0.015976546332240105, 0.011413686908781528, -0.010393907316029072, 0.0364505834877491, 0.01516595296561718, -0.010210869833827019, 0.005785287823528051, 0.005043332930654287, -0.009615998715162277, 0.01758466102182865, -0.017349326983094215, 0.017819995060563087, -0.015100582502782345, 0.014015432447195053, -0.027664789929986, -0.02056555449962616, 0.004409239161759615, 0.011531353928148746, -0.0006520706228911877, -0.036476731300354004, -0.007779087871313095, -0.025860564783215523, -0.007203827612102032, 0.008511236868798733, -0.011649020947515965, 0.02023870311677456, -0.004964888561517, -0.03237146511673927, 0.003082218347117305, 0.010727296583354473, -0.004794924985617399, -0.0008767816470935941, -0.007955588400363922, 0.0036149879451841116, 0.012145835906267166, -0.00943949818611145, 0.015492805279791355, -0.01815992034971714, -0.02383407950401306, -0.0029678200371563435, -0.009066886268556118, -0.007197290658950806, 0.005203490611165762, 0.0025625231210142374, -0.024945376440882683, 0.0019186238059774041, -0.007014253176748753, -0.011367927305400372, 0.01601576991379261, 0.008007884956896305, 0.010844963602721691, -0.00921070110052824, -0.014329210855066776, -0.0008134539821185172, -0.009622535668313503, 0.010681536979973316, -0.012145835906267166, 0.017401622608304024, 0.007981736212968826, 0.00829551462084055, -0.008119014091789722, -0.008831552229821682, -0.005507463589310646, -0.030959462746977806, -0.00040570556302554905, 0.003480978310108185, -0.01334211602807045, 0.030018126592040062, -0.0006724988925270736, -0.008400107733905315, 0.013335579074919224, 0.024043263867497444, -0.016028843820095062, -0.004052970092743635, -0.008890385739505291, -0.005213296040892601, 0.01673484407365322, -0.011492131277918816, -0.01109337154775858, -0.004451730288565159, -0.020003369078040123, 0.0003331851912662387, -0.022016780450940132, -0.02650119550526142, -0.0047426288947463036, 0.011407149955630302, -0.020787814632058144, 0.010740370489656925, -0.029782792553305626, -0.015152878127992153, 0.012485763058066368, -0.014329210855066776, 0.017676180228590965, -0.014381506480276585, -0.026671158149838448, 0.008720423094928265, -0.014969841577112675, -0.014028506353497505, 0.009145330637693405, -0.004173905588686466, 0.012976041063666344, 0.0429353341460228, 0.23930826783180237, 0.007125382777303457, -0.020800888538360596, 0.01809455081820488, -0.002471004379913211, 0.014852174557745457, 0.02637045457959175, 0.011596724390983582, -0.00013901441707275808, 0.0188789963722229, -0.0087857935577631, -0.013819321058690548, -0.02310192957520485, 0.002443221863359213, 0.005612056236714125, -0.0036378675140440464, -0.024880006909370422, -0.017911512404680252, -0.020931629464030266, -0.03760110214352608, -0.013296356424689293, 0.00179441983345896, 0.0022601846139878035, 0.009851331822574139, 0.028658421710133553, 0.01840832829475403, -0.0013098610797896981, 0.007589513435959816, 0.015061359852552414, 0.0004714846145361662, -0.022539744153618813, -0.01255767047405243, 0.000928260909859091, 0.001062270370312035, 0.018460625782608986, -0.021310778334736824, 0.014368432573974133, -0.00509562948718667, 0.02784782648086548, -0.006563196890056133, -0.004951814189553261, 0.00230267527513206, -0.015009063296020031, -0.01691788248717785, 0.0074391611851751804, 0.02192526124417782, -0.00872696004807949, -0.03195309266448021, -0.011923576705157757, -0.004376553930342197, -0.03307746723294258, -0.010138962417840958, 0.023585671558976173, 0.026540417224168777, -0.020800888538360596, 0.003392728278413415, 0.012538059614598751, -0.0002747603284660727, -0.037470363080501556, 0.025494489818811417, 0.0002880386891774833, 0.00019008512026630342, -0.015270545147359371, -0.0002753731678240001, -0.011250260286033154, 0.0012355021899566054, -0.015257471241056919, -0.007151531055569649, 0.008955756202340126, -0.015348990447819233, 0.018656736239790916, 0.018068403005599976, 0.020591702312231064, 0.011400613002479076, -0.019179699942469597, -0.019218923524022102, -0.003536543343216181, 0.01002129539847374, 0.007393402047455311, 0.022160595282912254, -0.025233007967472076, 0.021363073959946632, -0.01276031881570816, -0.007282271981239319, -0.0221344456076622, -0.030148867517709732, 0.0040072109550237656, 0.011890891008079052, -0.006631835829466581, -0.008478552103042603, -0.0028403475880622864, -0.0377318449318409, -0.0005037612863816321, 0.006553390994668007, 0.020147183910012245, 0.028736865147948265, -0.012812615372240543, 0.014499173499643803, 0.0009454206447117031, 0.00730842025950551, 0.006746233906596899, -0.03566613793373108, -0.010184722021222115, -0.00252330070361495, -0.02004259079694748, -0.0012281480012461543, 0.015701990574598312, 0.020604776218533516, 0.004670721013098955, -0.01979418285191059, 0.006242881529033184, -0.01920584961771965, -0.0017829800490289927, -0.009027663618326187, 0.021402297541499138, 0.019245071336627007, -0.005906223319470882, 0.0024791755713522434, 0.009596386924386024, -0.004726286046206951, 0.028396939858794212, -0.017676180228590965, -0.027377160266041756, 0.014381506480276585, 0.02102314867079258, -0.016760991886258125, -0.01927121914923191, -0.01809455081820488, 0.020617851987481117, -0.005778750870376825, 0.0185390692204237, -0.0015550004318356514, 0.0026801899075508118, 0.005929103121161461, -0.03132553771138191, -0.004291572608053684, 0.00806671753525734, 0.001959480345249176, -0.03278983384370804, -0.0033502373844385147, 0.01758466102182865, 0.007694106083363295, -0.01958499662578106, -0.0006961956969462335, 0.015113656409084797, -0.011544427834451199, 0.013355189934372902, -0.018735181540250778, -0.02753404900431633, -0.010583481751382351, -0.018303735181689262, 0.008890385739505291, -0.004765508230775595, -0.018787477165460587, 0.04476570710539818, -0.011930113658308983, -0.036685917526483536, 0.0022356705740094185, 0.022278262302279472, -0.009897091425955296, -0.024513931944966316, -0.012335410341620445, 0.029259828850626945, -0.004801462404429913, -0.0014103682478889823, -0.00970098003745079, -0.16672088205814362, 0.017493141815066338, -0.00014167009794618934, 0.0009266266133636236, -0.0013637917581945658, -0.006739696953445673, 0.018604440614581108, 0.005644741468131542, -0.01600269414484501, 0.0068769752979278564, 0.01946733146905899, -0.0034058024175465107, -0.0012690045405179262, 0.018735181540250778, 0.008275903761386871, 0.024487784132361412, -0.04319681599736214, 0.009236849844455719, 0.007197290658950806, 0.009491794742643833, 0.02005566470324993, -0.01272109616547823, 0.025755971670150757, -0.025036895647644997, -0.001072075916454196, 0.01298911590129137, -0.019218923524022102, 0.015584323555231094, -0.015179026871919632, 0.008798867464065552, -0.02915523573756218, -0.004108535125851631, 0.00252983788959682, 0.021886039525270462, 0.006452066823840141, 0.008190921507775784, -0.007543753832578659, -0.008458941243588924, -0.011635946109890938, 0.00722343847155571, 0.01809455081820488, 0.023468004539608955, 0.0027128751389682293, 0.005036795977503061, -0.04439963400363922, 0.0022863326594233513, 0.025285303592681885, 0.009289146400988102, -0.014433803036808968, -0.023350337520241737, 0.0028305419255048037, -0.018473699688911438, 0.001956211868673563, 0.015780435875058174, 0.0022814299445599318, 0.03116864711046219, -0.017087845131754875, 0.045340970158576965, -0.003464635694399476, -0.020212553441524506, 0.009328368119895458, -0.01672177016735077, -0.0003352280182298273, 0.003915692213922739, 0.012675337493419647, -0.007406475953757763, -0.033417392522096634, -0.03569228574633598, -0.017009399831295013, 0.015584323555231094, -0.017728475853800774, -0.012877985835075378, 0.012100077234208584, -0.0045563229359686375, 0.029181385412812233, 0.022304410114884377, -0.00047761312453076243, 0.015793509781360626, 0.01210661418735981, -0.008439329452812672, -0.015087507665157318, 0.039536070078611374, -0.020578628405928612, -0.006850827019661665, -0.014786804094910622, 0.006406307686120272, 0.007864069193601608, 0.01032199990004301, -0.006229807157069445, -0.022435151040554047, 0.020918555557727814, -0.0305933877825737, -0.0059715937823057175, -0.010616166517138481, -0.0006626932881772518, 0.014865248464047909, -0.0016628616722300649, 0.00226181885227561, -0.006644909735769033, -0.016970178112387657, -0.0075633651576936245, -0.008988441899418831, 0.0003728160518221557, -0.009825184009969234, 0.011511742137372494, 0.014969841577112675, 0.0016097482293844223, 0.01379317231476307, 0.0034352189395576715, -0.02876301296055317, -0.012845300137996674, 0.005827778950333595, 0.012348485179245472, 0.0097598135471344, 0.008583145216107368, 0.03519546985626221, -0.00012604246148839593, -0.030018126592040062, -0.004043164663016796, -0.019951071590185165, 0.045602452009916306, -0.0037882195319980383, -0.011479057371616364, 0.0195196270942688, 0.00562839861959219, 0.01640799269080162, -0.11275101453065872, -0.03145627677440643, -0.009387201629579067, 0.015322841703891754, -0.008478552103042603, 0.030279608443379402, 0.004853758495301008, 0.014930618926882744, -0.01835603266954422, 0.014603766612708569, 0.012675337493419647, -0.014891396276652813, -0.02212137170135975, -0.017989957705140114, 0.02427859790623188, -0.020997000858187675, -0.0038470530416816473, -0.027063380926847458, -0.004092192277312279, 0.0006001828005537391, -0.01881362497806549, 0.024500858038663864, -0.01666947454214096, 0.005703574977815151, 0.003650941653177142, -0.009374127723276615, -0.014433803036808968, 0.023258818313479424, 0.02784782648086548, 0.004353674128651619, -0.016303399577736855, -0.006059844046831131, 0.02251359447836876, -0.0012191595742478967, -0.00790329184383154, 0.0008849529549479485, -0.018630588427186012, 0.002144151832908392, 0.015505879186093807, -0.02871071733534336, -0.006530511658638716, 0.008805404417216778, -0.01829066127538681, -0.004732822999358177, 0.005464972462505102, 0.007811773102730513, -0.025991305708885193, 0.019872628152370453, -0.0016105653485283256, -0.01991184987127781, -0.0077398656867444515, 0.009315294213593006, -0.005092361010611057, 0.016904806718230247, 0.02531145140528679, -0.024853859096765518, -0.001402196940034628, 0.004670721013098955, -0.008053643628954887, -0.00642918748781085, -0.004376553930342197, -0.007654883898794651, -0.005965056829154491, 0.013002189807593822, -0.0016236394876614213, 0.004925665911287069, 0.008112477138638496, -0.017754623666405678, 0.011276409029960632, 0.023337263613939285, 0.014329210855066776, 0.013858542777597904, -0.02949516288936138, 0.016381843015551567, -0.011701316572725773, 0.000900478451512754, -0.0009160039480775595, -0.005461703985929489, -0.010897260159254074, -0.029652051627635956, -0.006550122518092394, -0.022160595282912254, 0.016878658905625343, -0.004598813597112894, 0.004330794792622328, 0.02323267050087452, 0.012740707956254482, 0.016355695202946663, 0.01627725176513195, -0.017924586310982704, -0.0035724970512092113, 0.0022863326594233513, -0.009354516863822937, -0.042203184217214584, -0.01435535866767168, -0.002717777853831649, -0.01289105974137783, -0.018787477165460587, -0.0028779355343431234, 0.0012845300370827317, -0.011420223861932755, -0.0038143678102642298, -0.050152238458395004, 0.028030864894390106, -0.011629409156739712, 0.00943949818611145, 0.01396313589066267, -0.035639990121126175, -0.003660747082903981, 0.015009063296020031, 0.009008052758872509, -0.0012796272058039904, -0.03221457451581955, 0.03007042407989502, 0.010897260159254074, -0.00012389749463181943, -0.03984984755516052, 0.0008065083529800177, 0.01245961431413889, 0.010237017646431923, 0.025468342006206512, 0.010701148770749569, -0.015087507665157318, 0.008968831039965153, 0.013597060926258564, -0.017349326983094215, -0.009929777123034, 0.03268524259328842, -0.01448609959334135, 0.015362064354121685, -0.013224449008703232, -0.028919903561472893, 0.011243723332881927, -0.022029854357242584, -0.002114735310897231, 0.01965036801993847, -0.007282271981239319, 0.004651110153645277, -0.0062722982838749886, 0.02714182622730732, -0.00620039040222764, -0.001505972584709525, -0.03825480863451958, -0.0257036741822958, 0.007890217937529087, -0.026265861466526985, -0.0175715871155262, -0.01129601988941431, -0.02205600216984749, 0.017466994002461433, 0.011315630748867989, 0.016891732811927795, -0.007909828796982765, 0.021454593166708946, 0.007086160592734814, -0.020395591855049133, -0.004396165255457163, -0.008439329452812672, -0.0006251052836887538, -0.018787477165460587, -0.008478552103042603, -0.019741887226700783, 0.0046216933988034725, 0.015139804221689701, -0.007184216286987066, 0.0046249618753790855, 0.03263294696807861, -0.005249250214546919, -0.012511910870671272, -0.017558513209223747, 0.011008390225470066, -0.028946051374077797, -0.0289721991866827, 0.002640967722982168, 0.007465309463441372, 0.0076221986673772335, 0.015976546332240105, -0.012132761999964714, -0.028998346999287605, -0.009027663618326187, 8.743302169023082e-05, 0.028266198933124542, 0.038097918033599854, 0.004030090291053057, -0.009302220307290554, 0.008171310648322105, 0.007262661121785641, 0.049890752881765366, -0.005500926170498133, -0.015780435875058174, -0.007033864036202431, 0.023154225200414658, -0.02414785698056221, -0.006481483578681946, 0.016512583941221237, 0.006314788945019245, 0.026265861466526985, 0.040451254695653915, 0.005883343517780304, -0.01321137510240078, 0.003958182875066996, 0.0344894677400589, -0.0005732174613513052, 0.029887385666370392, -0.001763368840329349, -0.015832731500267982, -0.0178984384983778, 0.012296188622713089, -0.010099739767611027, -0.005105434916913509, 0.01370165403932333, -0.0015901370206847787, 0.003464635694399476, 0.021454593166708946, 0.027246419340372086, 0.026736529543995857, 0.0032766954973340034, 0.0020575360395014286, 0.03864702954888344, -0.015453582629561424, -0.024396264925599098, 0.0442427434027195, -0.01152481697499752, -0.0046151564456522465, 0.014433803036808968, 0.010570407845079899, 0.0033731169532984495, 0.011465983465313911, -0.013753950595855713, -0.022042928263545036, 0.023768708109855652, -0.0020771471317857504, 0.0037457288708537817, -0.033417392522096634, -0.018212217837572098, 0.0014544932637363672, -0.017466994002461433, -0.0055368803441524506, 0.007955588400363922, 0.03681665658950806, -0.023520300164818764, 0.03496013581752777, 0.0028403475880622864, -0.01646028831601143, 0.01691788248717785, 0.0019055496668443084, 0.017218586057424545, 0.005327694583684206, -0.001791151356883347, -0.022670485079288483, 0.00572645477950573, -0.010237017646431923, -0.010341610759496689, 0.03801947459578514, -0.014943692833185196, -0.006072917953133583, -0.020526332780718803, -0.0032260334119200706, -0.013740875758230686, -0.00279131974093616, 0.004745897371321917, -0.0004927300615236163, -0.008308588527143002, 0.010524648241698742, 0.006909660529345274, -0.028344642370939255, 0.0006880243890918791, 0.015113656409084797, 0.005278666503727436, 0.0030364589765667915, -0.03859473392367363, -0.0029514774214476347, 0.006468409672379494, 0.00019325150060467422, -0.009583313018083572, 0.034724801778793335, -0.0036215248983353376, -0.007321494165807962, 0.0024007312022149563, 0.009674832224845886, 0.011413686908781528, -0.0175715871155262, 0.029129087924957275, -0.023794855922460556, -0.030828721821308136, 0.040268220007419586, -0.004745897371321917, -0.015179026871919632, -0.015701990574598312, -0.012250429019331932]}, {"created_time": 1695640875.5580668, "accessed_time": 1695640875.5580668, "description": "Helped Mrs. Moore carry groceries into her house.", "poignancy": 3, "embedding_key": [-0.00956371333450079, -0.009372570551931858, 0.0003068989608436823, -0.007098634727299213, -0.0021783646661788225, 0.021750692278146744, 0.0147772878408432, 0.0005635406705550849, 0.004498438443988562, -0.050514332950115204, 0.005124595016241074, 0.014843199402093887, -0.003125838004052639, -0.01773010939359665, -0.005437673069536686, 0.012668129988014698, 0.024400321766734123, 0.012457214295864105, 0.012635174207389355, -0.04724513739347458, -0.01678098738193512, 0.011620142497122288, 0.008047755807638168, -0.005183914676308632, -0.00038990587927401066, -0.00562881538644433, 0.02317437343299389, -0.02037973888218403, 0.016965540125966072, -0.00695363013073802, 0.012793361209332943, -0.012885636650025845, -0.01658325456082821, -0.015752773731946945, -0.013419517315924168, -0.02760360576212406, 0.006287927273660898, 0.008996876887977123, -0.0012844442389905453, -0.022185705602169037, 0.020801570266485214, -0.00620224280282855, 0.004106266889721155, -0.009201201610267162, -0.026799488812685013, 0.016398703679442406, -0.03321923688054085, -0.010967621579766273, -0.03461655601859093, -0.0015143095515668392, 0.001300922012887895, 0.005833140108734369, -3.2826861570356414e-05, 0.0009779572719708085, -0.027788156643509865, 0.012147432193160057, 0.00324447825551033, 0.03321923688054085, 0.01285927277058363, -0.023807121440768242, -0.011106034740805626, 0.020406102761626244, -0.023029368370771408, -0.011982654221355915, -0.0014887689612805843, -0.015897778794169426, -0.00095818389672786, -0.005783706903457642, -0.02436077408492565, 0.029396388679742813, 0.014329091645777225, 0.018534226343035698, 0.013854531571269035, 0.004030468873679638, 0.023227103054523468, -0.010420558974146843, -0.00841685850173235, 0.0018636388704180717, -0.008673911914229393, -0.0018867077305912971, 0.0035723864566534758, -0.01622733473777771, -0.010875346139073372, 0.013234966434538364, 0.015700044110417366, -0.001218533026985824, -0.020709294825792313, 0.030582791194319725, -0.021460682153701782, -0.0015645668609067798, 0.02367529831826687, 0.0008337764884345233, -0.002242628252133727, 0.01606914773583412, 0.020709294825792313, 0.0273135956376791, -0.01268131285905838, 0.050909802317619324, 0.006574640981853008, -0.011653098277747631, -0.018257398158311844, 0.012971322052180767, -0.03720027580857277, 0.003948079887777567, -0.020498380064964294, -0.012391302734613419, -0.01747964695096016, -0.022159341722726822, 0.013300877995789051, -0.038149394094944, -0.018745141103863716, 0.011613551527261734, 0.01912742666900158, -0.007685244549065828, -0.021948425099253654, -0.01113899052143097, 0.0016164719127118587, -0.02316119149327278, -0.01255608070641756, -0.0008074120269156992, -0.001201231381855905, 0.023859849199652672, 0.03258649259805679, 0.01308337040245533, -0.007863204926252365, -0.014039082452654839, -0.014988203532993793, 0.011659689247608185, -0.0003480934537947178, 0.004923565778881311, 0.010921483859419823, -0.005707908887416124, 0.026549026370048523, -0.023279830813407898, -0.0002811524027492851, 0.0329555943608284, -0.030872799456119537, 0.015436399728059769, 0.00017579749692231417, -0.026100829243659973, -0.015344124287366867, 0.02556035853922367, -0.012661539018154144, -0.0028292376082390547, -0.02391257882118225, 0.02156613953411579, 0.02366211637854576, 0.019153790548443794, -0.003051687963306904, 0.00598144019022584, 0.01902196928858757, -0.021381588652729988, 0.005256417207419872, -0.01483001746237278, 0.054152630269527435, 0.011692645028233528, -0.00245354394428432, 0.005698021966964006, -0.021737510338425636, -0.0021701257210224867, 0.011890377849340439, 0.0049136788584291935, 0.0356447696685791, -0.01143559068441391, -0.023003004491329193, 0.02206706628203392, 0.001937788911163807, -0.001682383008301258, -0.0020448944997042418, -0.005945188924670219, 0.008851872757077217, -0.0003233767638448626, -0.028842736035585403, 0.029106380417943, -0.0016700247069820762, 0.0031670324970036745, 0.004821403417736292, 0.004972998984158039, -0.012780179269611835, -0.021038850769400597, -0.017361005768179893, 0.015910960733890533, 0.02177705615758896, -0.002155295806005597, -0.0010207995073869824, -0.010881937108933926, 0.004594009835273027, -0.00605394272133708, 0.006887719035148621, -0.012819726020097733, 0.012806544080376625, 0.025441717356443405, -0.011956289410591125, -0.008937557227909565, -0.6711340546607971, -0.004198542796075344, 0.0019081288482993841, -0.024743059650063515, -0.003516361815854907, 0.03105735220015049, 0.004475369583815336, 0.012345165014266968, -0.011145581491291523, 0.011132399551570415, -0.0077972933650016785, 0.022594355046749115, -0.014843199402093887, 0.019905177876353264, 0.007652288768440485, -0.01173219084739685, 0.009893269278109074, 0.009023241698741913, 0.017598286271095276, 0.011943107470870018, -0.024453049525618553, 0.028737276792526245, -0.014632283709943295, 0.007428190670907497, 0.022396622225642204, -0.013735891319811344, 0.02455850876867771, -0.028790006414055824, -0.003684435272589326, 0.013828166760504246, -0.018257398158311844, 0.03519657254219055, 0.008654139004647732, 0.016991904005408287, 0.05119980871677399, 0.0016189435264095664, -0.02770906314253807, 0.03894032910466194, 0.01707099750638008, 0.03461655601859093, -0.043158646672964096, -0.03514384478330612, 0.0169259924441576, -0.005368466023355722, -0.004976294469088316, 0.0039250110276043415, 0.02581082098186016, -0.011363089084625244, 0.0127604054287076, 0.0030632223933935165, 0.010881937108933926, 0.034273818135261536, -0.014988203532993793, -0.005882573314011097, -0.01020964328199625, 0.0061989473178982735, 0.016649166122078896, -0.005875982344150543, -0.0020053479820489883, 0.0029841288924217224, 0.005253121722489595, 0.0023958715610206127, -0.00784343108534813, -0.02421577088534832, -0.04020582512021065, 0.012457214295864105, -0.026680847629904747, -0.009827357716858387, -0.0014385116519406438, 0.00821253377944231, 0.003433972829952836, 0.026483114808797836, -0.0014895928325131536, 0.011323542334139347, 0.0213156770914793, 0.02546808309853077, 0.007718199864029884, 0.020498380064964294, -0.0018652866128832102, -0.0041721779853105545, 0.02251526154577732, -0.017756473273038864, -0.014632283709943295, -0.009840540587902069, 0.03219102323055267, -0.01457955501973629, -0.015897778794169426, -0.012865863740444183, -0.006755896843969822, -0.018534226343035698, 0.011606959626078606, 0.00910892616957426, 0.009326432831585407, 0.0011287290835753083, -0.013841349631547928, 0.015752773731946945, -0.030846435576677322, 0.009352797642350197, 0.015172755345702171, -0.025547176599502563, 0.004814812447875738, -0.025349441915750504, 0.024532143026590347, 0.009141881950199604, 0.016517342999577522, -0.0015118378214538097, 0.013439291156828403, 0.04408140107989311, 0.017558740451931953, -0.01577913761138916, 0.017466465011239052, -0.00038578640669584274, -0.008944148197770119, -0.008476179093122482, -0.025349441915750504, -0.022488897666335106, -0.00796207133680582, -0.0004840352921746671, -0.0009219327475875616, -0.05293986573815346, 0.01678098738193512, 0.007401826325803995, 0.008443223312497139, 0.02886909991502762, -0.006419749464839697, 0.012345165014266968, 0.006657029967755079, -0.012562672607600689, -0.007724791299551725, -0.00873982347548008, 0.007362279575318098, -0.0029808334074914455, -0.008252080529928207, -0.006821807939559221, 0.023438017815351486, 0.002306891605257988, 0.00876618828624487, -0.03883486986160278, 0.019746990874409676, -0.012457214295864105, -0.02575809136033058, 0.00048032778431661427, 0.006960221566259861, -0.00841685850173235, 0.014895928092300892, -0.02820998802781105, -0.0020926801953464746, -0.009253930300474167, -0.02511216141283512, -0.010671021416783333, -0.011171946302056313, -0.01336019765585661, -0.016556890681385994, -0.0024123494513332844, -0.003585568629205227, -0.008146623149514198, -0.01572640985250473, 0.015120026655495167, -0.005141072440892458, 0.006119853816926479, -0.0008057642844505608, 0.033271968364715576, -0.0250726155936718, 0.023253466933965683, -0.011191719211637974, -0.01555503997951746, 0.023793937638401985, 0.03915124386548996, -0.008107076399028301, -0.04402867332100868, 0.0032197614200413227, -0.040416739881038666, -0.028078164905309677, 0.01100716833025217, 0.016952358186244965, 0.0250726155936718, -0.008832098916172981, -0.007863204926252365, 0.016359155997633934, 0.009398935362696648, 0.0063538383692502975, -0.02092021144926548, -0.01315587293356657, 0.0103876031935215, 0.018349673599004745, -0.016596436500549316, 0.008080711588263512, 0.01333383284509182, -0.020643383264541626, 0.016556890681385994, 0.014790470711886883, -0.005289372988045216, 0.033377423882484436, -0.006119853816926479, -0.00537835294380784, -0.00023645638430025429, 0.01297791302204132, 0.009188019670546055, -0.009267113171517849, -0.005071865860372782, 0.027735427021980286, -0.004205133765935898, -0.0012638469925150275, -0.009649397805333138, 0.023938942700624466, -0.014460914768278599, 0.014381821267306805, -0.028130894526839256, 0.032929230481386185, -0.0009244044194929302, -0.016359155997633934, -0.017361005768179893, -0.0024156449362635612, -0.008673911914229393, -0.003542726393789053, 0.016345974057912827, -0.005790297873318195, 0.022554807364940643, 0.005038910079747438, -0.011026941239833832, -0.005968257784843445, 0.0021487046033143997, 0.015133208595216274, 0.0031983403023332357, -0.0036350020673125982, 0.012147432193160057, 0.002750144340097904, -0.008100484497845173, -0.00021771289175376296, -0.013149281963706017, -0.01322837546467781, -0.004926861263811588, 0.020261099562048912, 0.026799488812685013, 0.012615401297807693, -0.02606128342449665, 0.019707445055246353, -0.01703145168721676, 0.02741905301809311, -0.00398103566840291, -0.01821785233914852, 0.013089961372315884, 0.0345638282597065, -0.010018500499427319, -0.0056222244165837765, -0.007909342646598816, 0.021342042833566666, 0.007612742017954588, -0.0061890603974461555, 0.029449118301272392, 0.01662280224263668, 0.0037404599133878946, 0.0007217274978756905, 0.0015497368294745684, 0.01018327847123146, -0.0035921595990657806, 0.014975021593272686, -0.0017581809079274535, 0.03619842231273651, 0.04822062328457832, 0.016899628564715385, 0.00885846372693777, 0.011310359463095665, 0.0020366557873785496, -0.0113301333039999, 0.0024832040071487427, 0.02156613953411579, -0.008621183224022388, -0.004294113721698523, -0.008397085592150688, -0.012892228551208973, -0.014223634265363216, 0.00376352877356112, -0.008891419507563114, 0.018296945840120316, 0.01947016455233097, -0.008660729974508286, 0.014750923961400986, 0.004053538199514151, -0.0021783646661788225, -0.026839034631848335, -0.02432122826576233, 0.005816662218421698, 0.018204670399427414, -0.010624883696436882, 0.00983394868671894, -0.01753237657248974, 0.006192355882376432, 0.0036053420044481754, -0.02316119149327278, 0.01443454995751381, 0.017097361385822296, -0.020748842507600784, 0.009029832668602467, -0.009655988775193691, 0.0021750691812485456, 0.03551294654607773, -0.012562672607600689, 0.02881637029349804, -0.03245466947555542, -0.0031423158943653107, -0.017057815566658974, -0.015159573405981064, -0.020801570266485214, 0.0103876031935215, 0.013070188462734222, -0.0031159513164311647, -0.02312164381146431, -0.002099271398037672, -0.01508047990500927, -0.014711377210915089, -0.009478028863668442, 0.016741441562771797, 0.009405526332557201, -0.0015942268073558807, 0.0028111122082918882, 0.008232307620346546, -0.0082388985902071, 0.027840886265039444, 0.007625924423336983, -0.005464037414640188, -0.014315909706056118, -0.025204438716173172, 0.01618778705596924, 0.11663644015789032, 0.0225679911673069, 0.0005099878180772066, 0.018441950902342796, 0.03000277280807495, -0.013234966434538364, -0.012687903828918934, 0.0006821808055974543, 0.014289545826613903, 0.0049532256089150906, 0.028499998152256012, -0.02306891605257988, -0.0019493233412504196, -0.030820071697235107, 0.024888064712285995, -0.015594586730003357, -0.024492597207427025, -0.017809202894568443, 0.00720409257337451, -0.025046251714229584, 0.003351583844050765, 0.003013788955286145, -0.01505411509424448, -0.004445709753781557, -0.015238666906952858, -0.013373379595577717, 0.022343892604112625, 0.03005550056695938, 0.01563413441181183, -0.01071056816726923, 0.005658475216478109, -0.0009458255372010171, 0.008779370225965977, -0.0008477826486341655, 0.007790702395141125, 0.0009466494084335864, -0.010242598131299019, 0.003984331153333187, 0.013162463903427124, 0.002636447548866272, 0.011409226804971695, 0.013920443132519722, 0.018745141103863716, -0.023978490382432938, 0.026021737605333328, 0.004402867518365383, 0.010473287664353848, 0.03414199501276016, -0.011475137434899807, 0.0037404599133878946, 0.040838573127985, 0.01608232967555523, 0.01947016455233097, -0.017361005768179893, 0.022238435223698616, 0.014988203532993793, 0.003433972829952836, 0.0009417060646228492, -0.012529716826975346, 0.009972362779080868, 0.005757342092692852, -0.0010339817963540554, 0.00022842346515972167, -0.012707676738500595, 0.006874536629766226, -0.019101062789559364, -0.03754301369190216, 0.004340251442044973, -0.02820998802781105, -0.01418408751487732, -0.004650034476071596, -0.013175646774470806, -0.018586954101920128, -0.010473287664353848, 0.028394538909196854, 0.024637602269649506, 0.0068086255341768265, -0.010301918722689152, 0.006782261189073324, 0.001950971083715558, -0.008977103978395462, -0.024057583883404732, -0.00036704292870126665, 0.006515320856124163, -0.0116860531270504, 0.012727450579404831, -0.005813366733491421, 0.002695767441764474, -0.022357074543833733, 0.012780179269611835, 0.0036646618973463774, 0.021632051095366478, 0.018705595284700394, -0.005536539945751429, -0.006762487813830376, 0.01153445802628994, 0.0038821690250188112, 0.02641720324754715, -0.019905177876353264, 0.011343315243721008, 0.02586355060338974, -0.0230161864310503, 0.011244448833167553, -0.014790470711886883, -0.008443223312497139, -0.01567368023097515, 0.01558140479028225, -0.009899860247969627, -0.013999535702168941, 0.0043435473926365376, 0.013920443132519722, 0.005154254846274853, 0.00684158131480217, -0.009412117302417755, -0.01031510066241026, 0.023003004491329193, 0.016965540125966072, 0.008792552165687084, 0.0010867107193917036, -0.026021737605333328, -0.0003952611587010324, -0.03171646222472191, 0.020643383264541626, -0.004834585357457399, -0.012279254384338856, 0.019087878987193108, -0.00720409257337451, -0.03880850598216057, 0.0007295544492080808, -0.004070015624165535, 0.011982654221355915, 0.0008436631760559976, -0.018112394958734512, -0.016596436500549316, -0.011976062320172787, -0.018033301457762718, -0.003221409162506461, 0.007164545822888613, 0.00425786292180419, -0.00949121080338955, -0.018534226343035698, 0.0022442759945988655, -0.007533648516982794, -0.024281680583953857, -0.008832098916172981, -0.024703513830900192, 0.0024008150212466717, -0.014012718573212624, -0.020037000998854637, 0.04039037600159645, 0.013037232682108879, -0.011198311112821102, 0.0007752803503535688, 0.010367829352617264, -0.03308741748332977, -0.024993522092700005, -0.027840886265039444, 0.016807353124022484, 0.04099676012992859, 0.03300832211971283, 0.04149768501520157, -0.001048811711370945, 0.02331937849521637, -0.014500461518764496, -0.0023991672787815332, -0.0013627137523144484, 0.006627369672060013, -0.014816834591329098, -0.031241903081536293, 0.02770906314253807, 0.029106380417943, 0.009365979582071304, 0.005111412610858679, 0.012549489736557007, -0.022409804165363312, -0.004949930123984814, -0.010532607324421406, -0.003901942167431116, 0.0010076172184199095, -0.0268654003739357, -0.004725832026451826, 0.008588227443397045, -0.005932006984949112, 0.006933856755495071, 0.0043797981925308704, -0.013854531571269035, 0.03688390180468559, 0.0062384940683841705, 0.01046010572463274, -0.011158764362335205, 0.021342042833566666, -0.010822616517543793, 0.01606914773583412, 0.006515320856124163, -0.030240053310990334, -0.021183855831623077, -0.013149281963706017, -0.0030203801579773426, 0.006795443594455719, -0.019694263115525246, -0.01608232967555523, 0.010308509692549706, 0.0011344962986186147, -0.01235834788531065, -0.014487278647720814, 0.0063966806046664715, -0.02156613953411579, -0.0031670324970036745, 0.014289545826613903, -0.014170905575156212, -0.0025524108204990625, -0.015528676100075245, -0.009471437893807888, -0.029396388679742813, 0.01333383284509182, 0.020313827320933342, -0.014104994013905525, 0.020340193063020706, -0.005345397163182497, -0.023332560434937477, -0.02197478897869587, -0.006413158494979143, 0.014566372148692608, -0.005094934720546007, 0.028579091653227806, -0.0012869159691035748, -0.016042783856391907, -0.006261562928557396, 0.05399444326758385, 0.012852681800723076, 0.0008733232389204204, -0.0032329438254237175, 0.018059665337204933, 0.008957330137491226, -0.017558740451931953, -0.0008028806769289076, 0.015067297033965588, -0.02167159877717495, -0.024242134764790535, 0.02411031164228916, 0.021803420037031174, 0.02421577088534832, -0.016200968995690346, -0.012299027293920517, 0.005938597954809666, 0.006475774105638266, -0.023332560434937477, -0.0038162576965987682, 0.003320276038721204, -0.012892228551208973, -0.040864937007427216, 0.007757746614515781, 0.0022360370494425297, 0.025046251714229584, -0.021895695477724075, -0.0004362496838439256, -0.013399744406342506, -0.013946807011961937, 0.010255781002342701, 0.011699235998094082, -0.017466465011239052, 0.02152659371495247, 0.00462037418037653, -0.001170747447758913, -0.025837184861302376, 0.006597709842026234, 0.00601769145578146, -0.018006935715675354, -0.028552725911140442, 0.0186265017837286, 0.01892969384789467, -0.001430272706784308, -0.00906278844922781, 0.012898819521069527, 0.008640957064926624, 3.0879778023518156e-06, -0.0037964843213558197, -0.024927610531449318, 0.008291627280414104, -0.016490979120135307, 0.011620142497122288, -0.007731382269412279, -0.012384711764752865, -0.009207792580127716, 0.0009688944555819035, -0.011488320305943489, -0.012918592430651188, -0.02391257882118225, 0.01483001746237278, -0.001773010939359665, -0.049248840659856796, -0.01658325456082821, 0.0045412806794047356, 0.003987626638263464, -0.003990922588855028, 0.0032757860608398914, -0.005440968554466963, 0.023701662197709084, -0.033482883125543594, 0.020748842507600784, -0.03575022891163826, 0.009043014608323574, -0.020709294825792313, -0.0013684809673577547, -0.006574640981853008, -0.004043651279062033, 0.013103144243359566, -0.00881232600659132, -0.05038250982761383, -0.028579091653227806, 0.012345165014266968, -0.008832098916172981, -0.01873195916414261, -0.013735891319811344, 0.012734041549265385, 0.016860080882906914, 0.010104184970259666, -0.018758323043584824, -0.01927243173122406, 0.021882513538002968, -0.020392920821905136, 0.013696344569325447, 0.018415585160255432, -0.016240516677498817, -0.01390726026147604, 0.020406102761626244, 0.019101062789559364, 0.01613505929708481, -0.03999490663409233, -0.005239939317107201, 0.0036350020673125982, 0.023332560434937477, -0.015792319551110268, -0.015568222850561142, -0.011013759300112724, 0.007757746614515781, -0.00938575342297554, 0.007757746614515781, 0.0007674533990211785, 0.02726086787879467, -0.005810071248561144, -0.0034932929556816816, 0.01957562193274498, 0.001764771994203329, -0.013841349631547928, 0.01776965521275997, -0.01618778705596924, 0.023438017815351486, -0.0009548882953822613, -0.024677148088812828, 0.0024436572566628456, 0.011000577360391617, -0.02566581591963768, -0.040574926882982254, -0.009188019670546055, 0.01063806563615799, -0.016306428238749504, -0.024097129702568054, -0.0036646618973463774, -0.0017746586818248034, -0.0045907143503427505, -0.016266880556941032, -0.004574236460030079, 0.03245466947555542, -0.01628006249666214, 0.012167205102741718, -0.021539775654673576, -0.014948656782507896, -0.010763296857476234, -0.018956057727336884, -0.006330769509077072, -0.002923161257058382, -0.015238666906952858, -0.008074120618402958, -0.011593777686357498, -0.004570940975099802, -0.004923565778881311, 0.002112453570589423, -0.011949698440730572, 0.001842217636294663, -0.014935474842786789, 0.010829208418726921, 0.018033301457762718, -0.009260522201657295, 0.031742826104164124, 0.0041787694208323956, -0.01577913761138916, 0.002891853451728821, 0.0014986556489020586, -0.006676803342998028, -0.03738482668995857, 0.023332560434937477, 0.0013577704085037112, 0.0012976265279576182, -0.01290541049093008, -0.013551340438425541, -0.0014937123050913215, -0.010895119048655033, 0.00534210167825222, -0.00159505067858845, -0.02382030338048935, 0.0016395407728850842, 0.019562439993023872, -0.0020251211244612932, 0.01762465201318264, 0.013234966434538364, -0.017216002568602562, -0.0017894887132570148, 0.005721090827137232, -0.02272617816925049, 0.009504392743110657, -0.005276190582662821, 0.009023241698741913, -0.012562672607600689, 0.005935302469879389, -0.0007126647396944463, -0.013841349631547928, -0.006083602551370859, 0.0034537462051957846, -0.025230802595615387, -0.009267113171517849, 0.003082995768636465, -0.006139627192169428, -0.02411031164228916, -0.0015604473883286119, -0.019984271377325058, -0.005005954764783382, 0.002259105909615755, -0.0248089712113142, 0.0017367597902193666, -0.016504161059856415, -0.014381821267306805, -0.014368638396263123, 0.009082561358809471, -0.009768038056790829, 0.020102912560105324, 0.23116371035575867, -0.005253121722489595, -0.0026331518311053514, 0.03741119056940079, -0.0003726041759364307, 0.015871413052082062, 0.034036535769701004, 0.004076607059687376, -0.0018537521827965975, -0.007995027117431164, -0.020498380064964294, -0.01173219084739685, -0.02271299436688423, 0.010374421253800392, -0.0007382052717730403, -0.0006850644131191075, -0.014012718573212624, -0.021487047895789146, -0.0011237857397645712, -0.023596204817295074, 0.029238203540444374, 0.01318223774433136, -0.0007550950394943357, -0.014922292903065681, 0.027445418760180473, 0.010222825221717358, -0.0044259363785386086, 0.003000606782734394, -0.007019541226327419, 0.0024766128044575453, -0.008528907783329487, 0.011158764362335205, 0.016965540125966072, -0.009965771809220314, 0.011613551527261734, 0.007335915230214596, 0.008278445340692997, -0.009662579745054245, 0.02186933159828186, 0.014276362955570221, -0.0027995777782052755, 0.013057006523013115, -0.001993813319131732, 0.010769887827336788, -0.023108461871743202, 0.027972707524895668, -0.017637833952903748, -0.011877195909619331, -0.014223634265363216, 0.003394426079466939, -0.011738782748579979, -0.009082561358809471, -0.011811284348368645, 0.02057747170329094, -0.008443223312497139, 0.00784343108534813, 0.00019320216961205006, -0.0017680675955489278, 0.020933393388986588, 0.008977103978395462, -0.009280295111238956, 0.012239707633852959, -0.01912742666900158, 0.024426685646176338, -0.02476942352950573, 0.012826316989958286, -0.0189824216067791, -0.01728191412985325, -0.006109966896474361, -0.012496761046350002, 0.012595627456903458, 0.02786725014448166, 0.008818916976451874, 0.013867713510990143, -0.01923288404941559, -0.013524975627660751, 0.01737418957054615, -0.01717645488679409, 0.014421368017792702, 0.019087878987193108, -0.007190910633653402, 0.021842967718839645, -0.005239939317107201, -0.04004763811826706, -0.012747223488986492, -0.03888760134577751, 0.011903560720384121, 0.002644686494022608, 0.014078629203140736, 0.005134481471031904, 0.008759596385061741, -0.01046010572463274, 0.011073079891502857, 0.004557758569717407, -0.0010842389892786741, 0.029343660920858383, -0.020063364878296852, 0.023596204817295074, -0.007955480366945267, -0.0026001962833106518, -0.03129463270306587, -0.02776179276406765, 0.008476179093122482, -0.008324583061039448, -0.012780179269611835, 0.015515493229031563, 0.02915911003947258, 0.022198887541890144, -0.009873495437204838, -0.03050369769334793, -0.011817876249551773, -0.028737276792526245, -0.003595455316826701, 0.0011756907915696502, 0.011995836161077023, 0.003373004961758852, 0.005384943913668394, -0.011633324436843395, -0.021500229835510254, 0.007975253276526928, 0.0023909283336251974, -0.03361470624804497, -0.009800993837416172, 0.010875346139073372, 0.0067328279837965965, -0.00016343915194738656, -0.019733808934688568, 0.023754391819238663, -0.0022294458467513323, -0.02496715821325779, 0.01921970210969448, -0.011165355332195759, 0.011751964688301086, -0.007737973239272833, -0.0025870141107589006, 0.015225484035909176, 0.008779370225965977, 0.010605109855532646, -0.013880896382033825, -0.0031966925598680973, 0.02747178263962269, -0.01991836167871952, -0.006284631788730621, -0.00876618828624487, 0.011791511438786983, -0.003602046286687255, -0.007296368479728699, 0.005875982344150543, -0.024690330028533936, -0.01583186723291874, -0.022330710664391518, 0.009603260084986687, 0.008258671499788761, -0.02147386409342289, 0.007803884334862232, -0.019931543618440628, -0.04205133765935898, -0.014025900512933731, 0.02720813825726509, -0.004294113721698523, -0.019285613670945168, -0.013538157567381859, 0.01612187549471855, -0.004594009835273027, 0.006113262381404638, -0.0019081288482993841, -0.16904900968074799, 0.019206520169973373, -0.0019064811058342457, -0.030846435576677322, 0.005734273232519627, 0.0063637252897024155, 0.008120258338749409, -0.00397114921361208, -0.03340379148721695, -0.001080119633115828, 0.011778329499065876, 0.0024914429523050785, -0.020748842507600784, 0.023833485320210457, 0.004524802789092064, 0.0017977276584133506, -0.022554807364940643, 0.003269194858148694, 0.008753005415201187, 0.008977103978395462, 0.026944493874907494, 0.006722941063344479, 0.0022014337591826916, -0.014724559150636196, 0.01368316262960434, 0.008542089723050594, -0.009655988775193691, 0.008291627280414104, 0.006630665622651577, -0.018639683723449707, -0.024782605469226837, 0.003173623699694872, -0.0070129502564668655, 0.0012490169610828161, 0.030371874570846558, 0.014447731897234917, -0.01333383284509182, -0.007045906037092209, 0.009570304304361343, 0.022436168044805527, -0.007612742017954588, 0.02371484600007534, -0.009352797642350197, 0.02036655694246292, -0.01483001746237278, 0.025454901158809662, 0.03593477979302406, 0.0012720859376713634, -0.020933393388986588, 0.00351306633092463, -0.018349673599004745, -0.04205133765935898, 0.007790702395141125, 0.016464615240693092, -0.00455446308478713, 0.01200901810079813, -0.024598054587841034, 0.01961516961455345, -0.011158764362335205, -0.028420904651284218, 0.0006067948415875435, -0.022752542048692703, -0.0015719818184152246, -0.01185742300003767, -0.0030895869713276625, 0.00935938861221075, -0.01452682539820671, -0.019931543618440628, -0.019061515107750893, 0.012648357078433037, -0.019114244729280472, -0.017888296395540237, 0.006541685201227665, -0.002123988000676036, 0.009603260084986687, 0.022792087867856026, 0.0004893905716016889, 0.01637233980000019, -0.013854531571269035, -0.026179922744631767, -0.010051456280052662, 0.037437554448843, -0.024874882772564888, -0.027946343645453453, 0.0013940215576440096, -0.00831140112131834, -0.006482365075498819, 0.002860545413568616, 0.018086029216647148, -0.01577913761138916, 0.015607768669724464, -0.03870305046439171, -0.03166373446583748, -0.047166045755147934, 0.004274340346455574, 0.012839498929679394, 0.022805271670222282, -0.008476179093122482, -0.005615632981061935, -0.014039082452654839, -0.024848517030477524, -0.022976640611886978, -0.014210452325642109, 0.010631474666297436, 0.02577127330005169, 0.010044865310192108, 0.022291162982583046, 0.013775438070297241, 0.0308991651982069, -0.023490747436881065, 0.002371154958382249, 0.004762083292007446, 0.014948656782507896, 0.0030500402208417654, 0.011620142497122288, 0.04044310376048088, 0.0035789774265140295, -0.018455132842063904, 0.02396530844271183, -0.008654139004647732, 0.03764846920967102, -0.010974212549626827, -0.013762256130576134, 0.0048807235434651375, 0.00030092577799223363, 0.027972707524895668, -0.10471969097852707, -0.010921483859419823, 0.0010768240317702293, 0.013643615879118443, -0.012068338692188263, 0.015660498291254044, -0.0186265017837286, 0.0055727907456457615, -0.0042611584067344666, 0.020656565204262733, -0.004874132107943296, -0.007131590507924557, 0.0007143124821595848, -0.01544958259910345, 0.01737418957054615, -0.011251039803028107, 0.0022212069015949965, -0.029580941423773766, -0.013669979758560658, 0.020234733819961548, -0.018956057727336884, -0.007546830922365189, -0.02577127330005169, -0.006139627192169428, 0.011600368656218052, 0.002216263674199581, -0.020999304950237274, 0.024334410205483437, 0.020709294825792313, 0.015739591792225838, -0.013373379595577717, -0.007256821729242802, 0.02063020132482052, -0.03604023531079292, -6.519028102047741e-05, 0.005945188924670219, 0.006070420145988464, -0.0044687786139547825, 0.007948889397084713, 0.0011929924366995692, -0.00794229842722416, -0.019509712234139442, 0.007131590507924557, -0.005345397163182497, 0.008100484497845173, -0.008687094785273075, -0.022436168044805527, 0.007718199864029884, -0.010236007161438465, -0.0024683738593012094, -0.012734041549265385, 0.02900092303752899, -0.02186933159828186, -0.007929115556180477, 0.004699467681348324, -0.011040124110877514, 0.02765633352100849, 0.015265030786395073, 0.0047554923221468925, -0.0009202849469147623, 0.013472246937453747, -0.008021391928195953, -0.019549258053302765, 0.023978490382432938, 0.0016370691591873765, -0.009688944555819035, -0.0007291425135917962, 0.000561480934266001, 0.007296368479728699, -0.0031884536147117615, 0.027392689138650894, 0.02625901624560356, -0.01308337040245533, 0.025889914482831955, -0.020788388326764107, 0.011850831098854542, -0.02820998802781105, -0.006749305408447981, 0.010822616517543793, -0.04120767489075661, -0.006900901440531015, -0.019799720495939255, 0.014289545826613903, -0.03258649259805679, 0.015475946478545666, 0.0022360370494425297, -0.0005091639468446374, 0.027234502136707306, 0.016543708741664886, -0.01185742300003767, 0.01753237657248974, 0.029528211802244186, 0.014750923961400986, -0.019536076113581657, 0.00901005882769823, 0.024149859324097633, -0.039362162351608276, 0.012114476412534714, 0.012173796072602272, -0.008660729974508286, -0.020709294825792313, -0.009194610640406609, -0.03983672335743904, 0.029027286916971207, 0.015423217788338661, 0.007316141854971647, 0.007751155644655228, -0.022040700539946556, -0.009952588938176632, -0.0027468486223369837, -0.006274744868278503, 0.003048392478376627, -0.01265494804829359, 0.04199860990047455, 0.013261331245303154, 0.026404021307826042, -0.009425300173461437, -0.009741673246026039, 0.0076325153931975365, 0.00821253377944231, 0.0037305732257664204, 0.011633324436843395, -0.005500288680195808, 0.0015884595923125744, -0.0004300705040805042, 0.022304344922304153, 0.0023052438627928495, 0.019760174676775932, -0.012885636650025845, 0.03005550056695938, -0.0114619554951787, 0.0009309955057688057, -0.014421368017792702, -0.019483346492052078, -0.012773588299751282, 0.03411563113331795, 0.010677612386643887, -0.007922524586319923, -0.011389452964067459, 0.009155063889920712, 0.021552957594394684, -0.009880087338387966, -0.016635984182357788, -0.02776179276406765, -0.004350138362497091, -0.0049631125293672085, -0.00727659510448575, 0.0064461142756044865, 0.003199988044798374, 0.0033713572192937136, 0.010262371972203255, -0.016411885619163513, 0.007540239952504635, 0.02111794427037239, 0.018745141103863716, -0.009267113171517849, 0.003921715542674065, -0.0038689866196364164, 0.003918420057743788, -0.007210684008896351, -0.01882423460483551, -0.03250739723443985, 0.01821785233914852, 0.005388239398598671, 0.022159341722726822, 0.021447500213980675, 0.012641766108572483, -0.019193338230252266, 0.00684158131480217, 0.011719008907675743, 0.030292781069874763, -0.04402867332100868, -0.004574236460030079, -0.006337360478937626, 0.010697385296225548, -0.02765633352100849, 0.021131126210093498, 0.012839498929679394, -0.01821785233914852, -0.013037232682108879, 0.004485256504267454, 0.026193106546998024, 0.02926456741988659, 0.003908533602952957, -0.026443568989634514, 0.02570536360144615, 0.025375807657837868, 0.029686398804187775, -0.00798843614757061, -0.005988031160086393, 0.006657029967755079, -0.010051456280052662, -0.004099675919860601, 0.006225311663001776, 0.012470396235585213, -0.008957330137491226, 0.02387303113937378, 0.025942644104361534, 0.013880896382033825, 0.010763296857476234, 0.025784457102417946, -0.0035493173636496067, 0.005875982344150543, 0.013492019847035408, 0.003265899373218417, -0.012022200971841812, -0.02192206121981144, 0.016253698617219925, -0.02921183779835701, -0.01842876709997654, -0.012292436324059963, 0.017216002568602562, 0.009234157390892506, 0.0006088545778766274, 0.014249999076128006, 0.03395744413137436, -0.021144308149814606, 0.034985657781362534, 0.007250230759382248, -0.029027286916971207, -0.024690330028533936, 0.012549489736557007, 0.016649166122078896, 0.01631961017847061, 0.01293177530169487, 0.006218720693141222, -0.0028687843587249517, 0.015093661844730377, 0.021829785779118538, -0.0059913271106779575, -0.006330769509077072, -0.01308337040245533, 0.010829208418726921, 0.0011246096109971404, -0.0251648910343647, -0.010453513823449612, -0.01230561826378107, 0.005599155556410551, 0.003951375838369131, 0.009985544718801975, -0.0033499361015856266, 0.01887696422636509, -0.006492251995950937, -0.019246065989136696, 0.027287231758236885, 0.012015609070658684, 0.014975021593272686, 0.020050182938575745, 0.0019822788890451193, -0.013149281963706017, 0.008924374356865883, -0.011297177523374557, 0.0038986466825008392, 0.0145531902089715, -0.01722918450832367, -0.014961839653551579, 0.00598144019022584, 0.0004762083408422768, -0.006343951914459467, -0.015344124287366867, 0.0005050444742664695, 0.006419749464839697, 0.0013173999032005668, 0.01125763077288866, -0.00924074836075306, -0.029976407065987587, -0.005872686859220266, 0.003934897948056459, -0.017861932516098022, 0.008792552165687084, -0.029923679307103157, 0.007263412699103355, 0.013709526509046555, -0.01812557689845562, -0.01228584535419941, 0.0354602187871933, -0.006670211907476187, -0.019074697047472, -0.0024996816646307707, 0.02312164381146431, 0.000839131826069206, -0.030424604192376137, 0.023780755698680878, -0.0047489008866250515, -0.007540239952504635, -0.002442009514197707, -0.003849213244393468, -0.012068338692188263, -0.013894078321754932, -0.009998726658523083]}]
\ No newline at end of file
diff --git a/metagpt/reflect_and_retrieve/gpt_structure.py b/metagpt/reflect_and_retrieve/gpt_structure.py
new file mode 100644
index 000000000..01a29b6a9
--- /dev/null
+++ b/metagpt/reflect_and_retrieve/gpt_structure.py
@@ -0,0 +1,67 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# @Desc : 调用GPT
+# author: didi
+# Date:9.25
+
+import openai
+openai.api_key = "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"
+# 直接调用Prompt生成
+def response_generate(prompt):
+ completion = openai.Completion.create(
+ model="gpt-3.5-turbo-instruct",
+ prompt= prompt,
+ temperature=0,
+ max_tokens = 20,
+ top_p = 1,
+ stream = False,
+ frequency_penalty = 0,
+ presence_penalty = 0
+ )
+ return (completion.choices[0].text)
+
+# 特殊指令加入Prompt生成
+def final_response(prompt,special_instruction,example_output = None):
+ prompt = '"""\n' + prompt + '\n"""\n'
+ prompt += f"Output the response to the prompt above in json. {special_instruction}\n"
+ if example_output:
+ prompt += "Example output json:\n"
+ prompt += '{"output": "' + str(example_output) + '"}'
+ return response_generate(prompt)
+
+# prompt填充模板
+def prompt_generate(curr_input, prompt_lib_file):
+ """
+ Takes in the current input (e.g. comment that you want to classifiy) and
+ the path to a prompt file. The prompt file contains the raw str prompt that
+ will be used, which contains the following substr: !! -- this
+ function replaces this substr with the actual curr_input to produce the
+ final promopt that will be sent to the GPT3 server.
+ ARGS:
+ curr_input: the input we want to feed in (IF THERE ARE MORE THAN ONE
+ INPUT, THIS CAN BE A LIST.)
+ prompt_lib_file: the path to the promopt file.
+ RETURNS:
+ a str prompt that will be sent to OpenAI's GPT server.
+ """
+ if type(curr_input) == type("string"):
+ curr_input = [curr_input]
+ curr_input = [str(i) for i in curr_input]
+
+ f = open(prompt_lib_file, "r")
+ prompt = f.read()
+ f.close()
+ for count, i in enumerate(curr_input):
+ prompt = prompt.replace(f"!!", i)
+ if "###" in prompt:
+ prompt = prompt.split("###")[1]
+ return prompt.strip()
+
+# 使用OpenAI embedding库进行存储
+def embedding(query):
+ embedding_result = openai.Embedding.create(
+ model="text-embedding-ada-002",
+ input=query
+ )
+ embedding_key = embedding_result['data'][0]["embedding"]
+ return embedding_key
\ No newline at end of file
diff --git a/metagpt/reflect_and_retrieve/reflect.py b/metagpt/reflect_and_retrieve/reflect.py
new file mode 100644
index 000000000..e341f5e61
--- /dev/null
+++ b/metagpt/reflect_and_retrieve/reflect.py
@@ -0,0 +1,46 @@
+
+import json
+from gpt_structure import final_response
+from retrive import agent_retrive
+'''
+首先
+'''
+def agent_reflect(agent):
+ '''
+ agent:agent本身
+ '''
+ pass
+
+def generate_focus_point(memories_list,n=3):
+ wait_sorted_mem=[[i.accessed_time, i] for i in memories_list]
+ sorted_memories=sorted(wait_sorted_mem, key=lambda x: x[0])
+ memorys=[i for created, i in sorted_memories]
+ statements=''
+ for i in memorys:
+ statements += i.description + "\n"
+ prompt='''
+ {statements}
+ Given only the information above, what are {num_question} most salient high-level questions we can answer about the subjects grounded in the statements?
+ '''
+ example_output = '["What should Jane do for lunch", "Does Jane like strawberry", "Who is Jane"]'
+ out = final_response(prompt.format(statements=statements,num_question=n), "Output must be a list of str.",example_output)
+ try:
+ poi_dict = json.loads(out)
+ return (poi_dict['output'])
+ except:
+ return out
+
+def generate_insights_and_evidence(agent,memories_list,question, n=5):
+ agent_retrive(agent,question,20,10)
+ statements = ""
+ for count, mem in enumerate(memories_list):
+ statements += f'{str(count)}. {mem.description}\n'
+ prompt='''
+ Input:
+ {statements}
+
+ What {n} high-level insights can you infer from the above statements? (example format: insight (because of 1, 5, 3))
+ 1.'''
+
+ ret = final_response(prompt.format(question=question,statements=statements,n=n), "['insightA',(1,2,3)]")
+ print(ret)
\ No newline at end of file
diff --git a/metagpt/reflect_and_retrieve/retrive.py b/metagpt/reflect_and_retrieve/retrive.py
new file mode 100644
index 000000000..f3e1fc4c9
--- /dev/null
+++ b/metagpt/reflect_and_retrieve/retrive.py
@@ -0,0 +1,132 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# @Desc : 实现GA中检索函数
+# author: didi
+# Date:9.25
+
+from numpy import dot
+from numpy.linalg import norm
+from gpt_structure import embedding
+
+# 实现三(2)合一搜索
+def agent_retrive(agent,query,n,topk):
+ # 将记忆列表按照Nodes[i].accessed_time排列,仅取前十个,如果不够10个就取现有的所有
+ Nodes = agent.memories_list
+ sorted_nodes = sorted(Nodes, key=lambda node: node.accessed_time,reverse=True)
+ Nodes = sorted_nodes[:n] if len(sorted_nodes) >= n else sorted_nodes
+
+ # 创建一个分数列表
+ Score_list = []
+ """
+ {
+ "memory":Nodes[i],
+ "importance":Nodes[i].poignancy
+ "recency":衰减因子计算结果
+ "relevance":搜索结果
+ }
+ """
+ Score_list = extract_importance(Nodes,Score_list)
+ Score_list = extract_recency(Score_list) # 计算近因性函数还没有实现,目前都是1
+ Score_list = extract_relevance(Score_list,query)
+
+ Score_list = normalize_Socre_floats(Score_list,0,1)
+ total_dict = {}
+ gw = [1,1,1] # 三个因素的权重,重要性,近因性,相关性
+ for i in range(len(Score_list)):
+ total_score = (Score_list[i]['importance']*gw[0] +
+ Score_list[i]['recency']*gw[1] +
+ Score_list[i]['relevance']*gw[2]
+ )
+ total_dict[Score_list[i]['memory'].description] = total_score
+
+ result = top_highest_x_values(total_dict,topk)
+
+ return result
+
+def top_highest_x_values(d, x):
+ top_v = dict(sorted(d.items(),
+ key=lambda item: item[1],
+ reverse=True)[:x])
+ return top_v
+# 抽取重要性
+def extract_importance(Nodes,Score_list):
+ for i in range(len(Nodes)):
+ Score = {"memory":Nodes[i],
+ "importance":Nodes[i].poignancy
+ }
+ Score_list.append(Score)
+ return Score_list
+
+# 抽取相关性
+def extract_relevance(Score_list,query):
+ query_embedding = embedding(query)
+ # 进行
+ for i in range(len(Score_list)):
+ result = cos_sim(Score_list[i]["memory"].embedding_key,query_embedding)
+ Score_list[i]['relevance'] = result
+
+ return Score_list
+
+# 抽取近因性
+def extract_recency(Score_list):
+ for i in range(len(Score_list)):
+ Score_list[i]['recency'] = 1
+ return Score_list
+
+# 计算余弦相似度
+def cos_sim(a, b):
+ return dot(a, b)/(norm(a)*norm(b))
+
+# 单个列表归一化
+def normalize_List_floats(Single_list,target_min, target_max):
+ min_val = min(Single_list)
+ max_val = max(Single_list)
+ range_val = max_val - min_val
+
+ if range_val == 0:
+ for i in range(len(Single_list)):
+ Single_list[i] = (target_max - target_min)/2
+ else:
+ for i in range(len(Single_list)):
+ Single_list[i] = ((Single_list[i] - min_val) * (target_max - target_min)
+ / range_val + target_min)
+ return Single_list
+
+# 整体归一化
+def normalize_Socre_floats(Score_list, target_min, target_max):
+
+ importance_list = []
+ relevance_list = []
+ recency_list = []
+
+ for i in range(len(Score_list)):
+ importance_list.append(Score_list[i]['importance'])
+ relevance_list.append(Score_list[i]['relevance'])
+ recency_list.append(Score_list[i]['recency'])
+
+ # 进行归一化操作
+ importance_list = normalize_List_floats(importance_list,target_min, target_max)
+ relevance_list = normalize_List_floats(relevance_list,target_min, target_max)
+ recency_list =normalize_List_floats(recency_list,target_min, target_max)
+
+ for i in range(len(Score_list)):
+ Score_list[i]['importance'] = importance_list[i]
+ Score_list[i]['relevance'] = relevance_list[i]
+ Score_list[i]['recency'] = recency_list[i]
+
+ return Score_list
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/metagpt/reflect_and_retrieve/run_gpt.py b/metagpt/reflect_and_retrieve/run_gpt.py
new file mode 100644
index 000000000..122ba8696
--- /dev/null
+++ b/metagpt/reflect_and_retrieve/run_gpt.py
@@ -0,0 +1,58 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+# @Desc : 调用PROMPT
+# author: didi
+# Date:9.25
+
+import random
+import json
+from gpt_structure import final_response,prompt_generate
+
+# 使用GPT衡量心酸程度
+def run_gpt_prompt_chat_poignancy(agent,event_description):
+ """
+ 使用GA中的run GPT构造,具体的代码可以参考昨天GPT的内容
+ https://chat.openai.com/c/afddac31-300e-427b-9947-4b3ca16bd3a1
+ 其中输入的ISS是identity stable set
+ """
+ def create_prompt_input(agent,event_description):
+ prompt_input = [agent.name,
+ agent.iss,
+ agent.name,
+ event_description]
+ return prompt_input
+
+ # 1. Prompt构建
+ # 2. Instruction给出
+ prompt_template = "Prompt_template/poignancy_chat_v1.txt" ########
+ prompt_input = create_prompt_input(agent, event_description) ########
+ prompt = prompt_generate(prompt_input, prompt_template)
+ special_instruction = "The output should ONLY contain ONE integer value on the scale of 1 to 10."
+ poignancy = final_response(prompt,special_instruction)
+ try:
+ poi_dict = json.loads(poignancy)
+ return (poi_dict['poignancy'])
+ except:
+ return poignancy
+
+# 返回John随机记忆
+def run_gpt_random_concept():
+ random_memories = [
+ "Helped Mrs. Moore carry groceries into her house.",
+ "Had a friendly chat with Yuriko about her garden.",
+ "Met Tom Moreno for coffee during our lunch break.",
+ "Talked to Mei about their upcoming vacation plans.",
+ "Eddy played his new music composition for me.",
+ "Helped a customer find a specific medication.",
+ "John divorced his wife because he was in love with someone else",
+ "Helped Mrs. Moore carry groceries into her house.",
+ "Had a friendly chat with Yuriko about her garden.",
+ "Met Tom Moreno for coffee during our lunch break.",
+ "Talked to Mei about their upcoming vacation plans.",
+ "Eddy played his new music composition for me.",
+ "Helped a customer find a specific medication.",
+ "Wished Carmen a good day as she passed by the pharmacy.",
+ "Discussed local politics with Tom Moreno.",
+ "Gave gardening tips to Mrs. Yamamoto.",
+ "Saw Jane Moreno jogging in the morning."]
+ return(random.choice(random_memories))