From 6046f9c9421bbc769f50f2628039f65f45e60bf4 Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 5 Sep 2023 21:52:13 +0800 Subject: [PATCH 01/30] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=86=85=E5=AE=B9?= =?UTF-8?q?=EF=BC=9A=20=E8=B0=83=E6=95=B4llm=E5=BC=95=E7=94=A8=E6=A8=A1?= =?UTF-8?q?=E5=BC=8F=20=E6=B7=BB=E5=8A=A0=E5=AF=B9=E6=98=9F=E7=81=AB?= =?UTF-8?q?=E5=A4=A7=E6=A8=A1=E5=9E=8B=E7=9A=84=E6=94=AF=E6=8C=81=20?= =?UTF-8?q?=E5=9C=A8=E6=A8=A1=E5=9E=8B=E6=8A=A5=E9=94=99=E6=97=B6=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E4=BA=BA=E5=B7=A5=E8=BE=93=E5=85=A5=20=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E9=80=9A=E8=BF=87config=E7=9B=B4=E6=8E=A5=E5=85=A8?= =?UTF-8?q?=E4=BA=BA=E5=B7=A5=E8=BE=93=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/config.yaml | 13 +++ examples/llm_hello_world.py | 5 +- metagpt/actions/action.py | 48 ++++++-- metagpt/actions/write_prd.py | 1 + metagpt/config.py | 10 ++ metagpt/llm.py | 5 +- metagpt/management/skill_manager.py | 4 +- metagpt/manager.py | 4 +- metagpt/prompts/generate_skill.md | 4 +- metagpt/provider/SparkApi.py | 137 +++++++++++++++++++++++ metagpt/provider/spark_api.py | 57 ++++++++++ metagpt/roles/role.py | 4 +- requirements.txt | 4 +- startup.py | 2 +- tests/metagpt/actions/test_write_code.py | 4 +- tests/metagpt/roles/mock.py | 2 +- tests/metagpt/test_llm.py | 2 +- webui.py | 0 18 files changed, 277 insertions(+), 29 deletions(-) create mode 100644 metagpt/provider/SparkApi.py create mode 100644 metagpt/provider/spark_api.py create mode 100644 webui.py diff --git a/config/config.yaml b/config/config.yaml index 274cdf469..c1f3abd28 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -15,6 +15,19 @@ RPM: 10 #### if Anthropic #Anthropic_API_KEY: "YOUR_API_KEY" +#### if xinghuo +#xinghuo_appid : "APPID" +#xinghuo_api_secret : "APISecret" +#xinghuo_api_key : "APIKey" + +#domain : "generalv2" + +#Spark_url : "ws://spark-api.xf-yun.com/v2.1/chat" + +#### 如果不能使用api + +#no_api_mode :"true" + #### if AZURE, check https://github.com/openai/openai-cookbook/blob/main/examples/azure/chat.ipynb #OPENAI_API_TYPE: "azure" diff --git a/examples/llm_hello_world.py b/examples/llm_hello_world.py index 3ba03eea0..d6d24b688 100644 --- a/examples/llm_hello_world.py +++ b/examples/llm_hello_world.py @@ -7,12 +7,11 @@ """ import asyncio -from metagpt.llm import LLM, Claude -from metagpt.logs import logger +import metagpt.llm as LLM async def main(): - llm = LLM() + llm=LLM.DEFAULT_LLM claude = Claude() logger.info(await claude.aask('你好,请进行自我介绍')) logger.info(await llm.aask('hello world')) diff --git a/metagpt/actions/action.py b/metagpt/actions/action.py index fa0d592a3..748300561 100644 --- a/metagpt/actions/action.py +++ b/metagpt/actions/action.py @@ -11,15 +11,16 @@ from typing import Optional from tenacity import retry, stop_after_attempt, wait_fixed from metagpt.actions.action_output import ActionOutput -from metagpt.llm import LLM +import metagpt.llm as LLM from metagpt.utils.common import OutputParser from metagpt.logs import logger +from metagpt.config import CONFIG class Action(ABC): def __init__(self, name: str = '', context=None, llm: LLM = None): self.name: str = name if llm is None: - llm = LLM() + llm=LLM.DEFAULT_LLM self.llm = llm self.context = context self.prefix = "" @@ -54,13 +55,42 @@ class Action(ABC): if not system_msgs: system_msgs = [] system_msgs.append(self.prefix) - content = await self.llm.aask(prompt, system_msgs) - logger.debug(content) - output_class = ActionOutput.create_model_class(output_class_name, output_data_mapping) - parsed_data = OutputParser.parse_data_with_mapping(content, output_data_mapping) - logger.debug(parsed_data) - instruct_content = output_class(**parsed_data) - return ActionOutput(content, instruct_content) + if not CONFIG.no_api_mode: + content = await self.llm.aask(prompt, system_msgs) + logger.debug(content) + output_class = ActionOutput.create_model_class(output_class_name, output_data_mapping) + parsed_data = OutputParser.parse_data_with_mapping(content, output_data_mapping) + logger.debug(parsed_data) + try: + instruct_content = output_class(**parsed_data) + return ActionOutput(content, instruct_content) + except Exception as e: + print('Error:',e) + print('自动运行出错,切换为手动运行') + print('prompt为') + print('\n'.join( system_msgs)+prompt) + print('输入格式:') + print(output_data_mapping) + print('请准备输入,输入完成按ctrl+Z') + while True: + try: + lines=[] + while True: + try: + lines.append(input()) + except: + break + + content ='\n'.join(lines) + output_class = ActionOutput.create_model_class(output_class_name, output_data_mapping) + parsed_data = OutputParser.parse_data_with_mapping(content, output_data_mapping) + logger.debug(parsed_data) + instruct_content = output_class(**parsed_data) + return ActionOutput(content, instruct_content) + except Exception as e: + print('Error:',e) + print('输入错误,请重试') + async def run(self, *args, **kwargs): """Run action""" diff --git a/metagpt/actions/write_prd.py b/metagpt/actions/write_prd.py index 0edd24d55..bc2e175e8 100644 --- a/metagpt/actions/write_prd.py +++ b/metagpt/actions/write_prd.py @@ -143,4 +143,5 @@ class WritePRD(Action): format_example=FORMAT_EXAMPLE) logger.debug(prompt) prd = await self._aask_v1(prompt, "prd", OUTPUT_MAPPING) + return prd diff --git a/metagpt/config.py b/metagpt/config.py index 2c1096877..e9e39cb22 100644 --- a/metagpt/config.py +++ b/metagpt/config.py @@ -45,8 +45,18 @@ class Config(metaclass=Singleton): self.global_proxy = self._get("GLOBAL_PROXY") self.openai_api_key = self._get("OPENAI_API_KEY") self.anthropic_api_key = self._get("Anthropic_API_KEY") + + #星火大模型相关 + self.xinghuo_appid = self._get("xinghuo_appid") + self.xinghuo_api_secret = self._get("xinghuo_api_secret") + self.xinghuo_api_key = self._get("xinghuo_api_key") + self.domain=self._get("domain") + self.Spark_url=self._get("Spark_url") + self.no_api_mode=self._get("no_api_mode") if (not self.openai_api_key or "YOUR_API_KEY" == self.openai_api_key) and ( not self.anthropic_api_key or "YOUR_API_KEY" == self.anthropic_api_key + )and ( + not self.xinghuo_api_key or "APIKey" == self.xinghuo_api_key ): raise NotConfiguredException("Set OPENAI_API_KEY or Anthropic_API_KEY first") self.openai_api_base = self._get("OPENAI_API_BASE") diff --git a/metagpt/llm.py b/metagpt/llm.py index 6a9a9132f..e523e7698 100644 --- a/metagpt/llm.py +++ b/metagpt/llm.py @@ -8,10 +8,11 @@ from metagpt.provider.anthropic_api import Claude2 as Claude from metagpt.provider.openai_api import OpenAIGPTAPI as LLM +from metagpt.provider.spark_api import Spark -DEFAULT_LLM = LLM() +DEFAULT_LLM = Spark() CLAUDE_LLM = Claude() - +SPARK_LLM = Spark() async def ai_func(prompt): """使用LLM进行QA diff --git a/metagpt/management/skill_manager.py b/metagpt/management/skill_manager.py index f067e6df6..dbe8d1545 100644 --- a/metagpt/management/skill_manager.py +++ b/metagpt/management/skill_manager.py @@ -8,7 +8,7 @@ from metagpt.actions import Action from metagpt.const import PROMPT_PATH from metagpt.document_store.chromadb_store import ChromaStore -from metagpt.llm import LLM +import metagpt.llm as LLM from metagpt.logs import logger Skill = Action @@ -18,7 +18,7 @@ class SkillManager: """用来管理所有技能""" def __init__(self): - self._llm = LLM() + self._llm=LLM.DEFAULT_LLM self._store = ChromaStore('skill_manager') self._skills: dict[str: Skill] = {} diff --git a/metagpt/manager.py b/metagpt/manager.py index 9d238c621..3f6c115f3 100644 --- a/metagpt/manager.py +++ b/metagpt/manager.py @@ -5,13 +5,13 @@ @Author : alexanderwu @File : manager.py """ -from metagpt.llm import LLM +import metagpt.llm as LLM from metagpt.logs import logger from metagpt.schema import Message class Manager: - def __init__(self, llm: LLM = LLM()): + def __init__(self, llm: llm=LLM.DEFAULT_LLM): self.llm = llm # Large Language Model self.role_directions = { "BOSS": "Product Manager", diff --git a/metagpt/prompts/generate_skill.md b/metagpt/prompts/generate_skill.md index fd950c143..dc1365733 100644 --- a/metagpt/prompts/generate_skill.md +++ b/metagpt/prompts/generate_skill.md @@ -10,10 +10,10 @@ ```python from typing import Optional from abc import ABC -from metagpt.llm import LLM # 大语言模型,类似GPT +import metagpt.llm as LLM # 大语言模型,类似GPT class Action(ABC): - def __init__(self, name='', context=None, llm: LLM = LLM()): + def __init__(self, name='', context=None, llm: llm=LLM.DEFAULT_LLM): self.name = name self.llm = llm self.context = context diff --git a/metagpt/provider/SparkApi.py b/metagpt/provider/SparkApi.py new file mode 100644 index 000000000..330420439 --- /dev/null +++ b/metagpt/provider/SparkApi.py @@ -0,0 +1,137 @@ +import _thread as thread +import base64 +import datetime +import hashlib +import hmac +import json +from urllib.parse import urlparse +import ssl +from datetime import datetime +from time import mktime +from urllib.parse import urlencode +from wsgiref.handlers import format_date_time + +import websocket # 使用websocket_client +answer = "" + +class Ws_Param(object): + # 初始化 + def __init__(self, APPID, APIKey, APISecret, Spark_url): + self.APPID = APPID + self.APIKey = APIKey + self.APISecret = APISecret + self.host = urlparse(Spark_url).netloc + self.path = urlparse(Spark_url).path + self.Spark_url = Spark_url + + # 生成url + def create_url(self): + # 生成RFC1123格式的时间戳 + now = datetime.now() + date = format_date_time(mktime(now.timetuple())) + + # 拼接字符串 + signature_origin = "host: " + self.host + "\n" + signature_origin += "date: " + date + "\n" + signature_origin += "GET " + self.path + " HTTP/1.1" + + # 进行hmac-sha256进行加密 + signature_sha = hmac.new(self.APISecret.encode('utf-8'), signature_origin.encode('utf-8'), + digestmod=hashlib.sha256).digest() + + signature_sha_base64 = base64.b64encode(signature_sha).decode(encoding='utf-8') + + authorization_origin = f'api_key="{self.APIKey}", algorithm="hmac-sha256", headers="host date request-line", signature="{signature_sha_base64}"' + + authorization = base64.b64encode(authorization_origin.encode('utf-8')).decode(encoding='utf-8') + + # 将请求的鉴权参数组合为字典 + v = { + "authorization": authorization, + "date": date, + "host": self.host + } + # 拼接鉴权参数,生成url + url = self.Spark_url + '?' + urlencode(v) + # 此处打印出建立连接时候的url,参考本demo的时候可取消上方打印的注释,比对相同参数时生成的url与自己代码生成的url是否一致 + return url + + +# 收到websocket错误的处理 +def on_error(ws, error): + print("### error:", error) + + +# 收到websocket关闭的处理 +def on_close(ws,one,two): + print(" ") + + +# 收到websocket连接建立的处理 +def on_open(ws): + thread.start_new_thread(run, (ws,)) + + +def run(ws, *args): + data = json.dumps(gen_params(appid=ws.appid, domain= ws.domain,question=ws.question)) + ws.send(data) + + +# 收到websocket消息的处理 +def on_message(ws, message): + # print(message) + data = json.loads(message) + code = data['header']['code'] + if code != 0: + print(f'请求错误: {code}, {data}') + ws.close() + else: + choices = data["payload"]["choices"] + status = choices["status"] + content = choices["text"][0]["content"] + print(content,end ="") + global answer + answer += content + # print(1) + if status == 2: + ws.close() + + +def gen_params(appid, domain,question): + """ + 通过appid和用户的提问来生成请参数 + """ + data = { + "header": { + "app_id": appid, + "uid": "1234" + }, + "parameter": { + "chat": { + "domain": domain, + "random_threshold": 0.5, + "max_tokens": 2048, + "auditing": "default" + } + }, + "payload": { + "message": { + "text": question + } + } + } + return data + + +def main(appid, api_key, api_secret, Spark_url,domain, question): + # print("星火:") + wsParam = Ws_Param(appid, api_key, api_secret, Spark_url) + websocket.enableTrace(False) + wsUrl = wsParam.create_url() + ws = websocket.WebSocketApp(wsUrl, on_message=on_message, on_error=on_error, on_close=on_close, on_open=on_open) + ws.appid = appid + ws.question = question + ws.domain = domain + ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE}) + + diff --git a/metagpt/provider/spark_api.py b/metagpt/provider/spark_api.py new file mode 100644 index 000000000..2f75208c8 --- /dev/null +++ b/metagpt/provider/spark_api.py @@ -0,0 +1,57 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +@Time : 2023/7/21 11:15 +@Author : Leo Xiao +@File : anthropic_api.py +""" + +from typing import Optional +from metagpt.provider import SparkApi + +from metagpt.config import CONFIG + +def getlength(text): + length = 0 + for content in text: + temp = content["content"] + leng = len(temp) + length += leng + return length + +def checklen(text): + while (getlength(text) > 8000): + del text[0] + return text + +class Spark: + system_prompt = 'You are a helpful assistant.' + + def _user_msg(self, msg: str) -> dict[str, str]: + return {"role": "user", "content": msg} + + def _assistant_msg(self, msg: str) -> dict[str, str]: + return {"role": "assistant", "content": msg} + + def _system_msg(self, msg: str) -> dict[str, str]: + return {"role": "system", "content": msg} + + def _system_msgs(self, msgs: list[str]) -> list[dict[str, str]]: + return [self._system_msg(msg) for msg in msgs] + + def _default_system_msg(self): + return self._system_msg(self.system_prompt) + def ask(self, msg: str): + message = [self._user_msg(msg)] + SparkApi.main(CONFIG.xinghuo_appid,CONFIG.xinghuo_api_key,CONFIG.xinghuo_api_secret,"ws://spark-api.xf-yun.com/v2.1/chat","generalv2",message) + rsp = SparkApi.answer + return rsp + + async def aask(self, msg: str, system_msgs: Optional[list[str]] = None) -> str: + if system_msgs: + message = self._system_msgs(system_msgs) + [self._user_msg(msg)] + else: + message = [self._user_msg(msg)] + SparkApi.main(CONFIG.xinghuo_appid,CONFIG.xinghuo_api_key,CONFIG.xinghuo_api_secret,"ws://spark-api.xf-yun.com/v2.1/chat","generalv2",message) + rsp = SparkApi.answer + return rsp diff --git a/metagpt/roles/role.py b/metagpt/roles/role.py index d3750495f..add0a339c 100644 --- a/metagpt/roles/role.py +++ b/metagpt/roles/role.py @@ -14,7 +14,7 @@ from pydantic import BaseModel, Field # from metagpt.environment import Environment from metagpt.config import CONFIG from metagpt.actions import Action, ActionOutput -from metagpt.llm import LLM +from metagpt import llm as LLM from metagpt.logs import logger from metagpt.memory import Memory, LongTermMemory from metagpt.schema import Message @@ -94,7 +94,7 @@ class Role: """角色/代理""" def __init__(self, name="", profile="", goal="", constraints="", desc=""): - self._llm = LLM() + self._llm=LLM.DEFAULT_LLM self._setting = RoleSetting(name=name, profile=profile, goal=goal, constraints=constraints, desc=desc) self._states = [] self._actions = [] diff --git a/requirements.txt b/requirements.txt index efc2ea3e7..c202a8f17 100644 --- a/requirements.txt +++ b/requirements.txt @@ -33,7 +33,7 @@ tqdm==4.64.0 # selenium>4 # webdriver_manager<3.9 anthropic==0.3.6 -typing-inspect==0.8.0 +typing-inspect typing_extensions==4.5.0 -libcst==1.0.1 +libcst qdrant-client==1.4.0 \ No newline at end of file diff --git a/startup.py b/startup.py index 03b2149c4..94e2788e3 100644 --- a/startup.py +++ b/startup.py @@ -24,7 +24,7 @@ async def startup(idea: str, investment: float = 3.0, n_round: int = 5, await company.run(n_round=n_round) -def main(idea: str, investment: float = 3.0, n_round: int = 5, code_review: bool = False, run_tests: bool = False): +def main(idea: str ='写一个贪吃蛇命令行游戏', investment: float = 3.0, n_round: int = 5, code_review: bool = False, run_tests: bool = False): """ We are a software startup comprised of AI. By investing in us, you are empowering a future filled with limitless possibilities. :param idea: Your innovative idea, such as "Creating a snake game." diff --git a/tests/metagpt/actions/test_write_code.py b/tests/metagpt/actions/test_write_code.py index 7bb18ddf2..00d2c504e 100644 --- a/tests/metagpt/actions/test_write_code.py +++ b/tests/metagpt/actions/test_write_code.py @@ -8,7 +8,7 @@ import pytest from metagpt.actions.write_code import WriteCode -from metagpt.llm import LLM +import metagpt.llm as LLM from metagpt.logs import logger from tests.metagpt.actions.mock import TASKS_2, WRITE_CODE_PROMPT_SAMPLE @@ -29,6 +29,6 @@ async def test_write_code(): @pytest.mark.asyncio async def test_write_code_directly(): prompt = WRITE_CODE_PROMPT_SAMPLE + '\n' + TASKS_2[0] - llm = LLM() + llm=LLM.DEFAULT_LLM rsp = await llm.aask(prompt) logger.info(rsp) diff --git a/tests/metagpt/roles/mock.py b/tests/metagpt/roles/mock.py index 52fc4a3c1..9567be603 100644 --- a/tests/metagpt/roles/mock.py +++ b/tests/metagpt/roles/mock.py @@ -16,7 +16,7 @@ DETAIL_REQUIREMENT = """需求:开发一个基于LLM(大语言模型)与 3. 私有知识库支持pdf、word、txt等各种文件格式上传,上传后可以在服务端解析为文本,存储ES 资源: -1. 大语言模型已经有前置的抽象、部署,可以通过 `from metagpt.llm import LLM`,再使用`LLM().ask(prompt)`直接调用 +1. 大语言模型已经有前置的抽象、部署,可以通过 `import metagpt.llm as LLM`,再使用`LLM().ask(prompt)`直接调用 2. Elastic已有[部署](http://192.168.50.82:9200/),代码可以直接使用这个部署""" diff --git a/tests/metagpt/test_llm.py b/tests/metagpt/test_llm.py index 11503af1d..1986f3f22 100644 --- a/tests/metagpt/test_llm.py +++ b/tests/metagpt/test_llm.py @@ -8,7 +8,7 @@ import pytest -from metagpt.llm import LLM +import metagpt.llm as LLM @pytest.fixture() diff --git a/webui.py b/webui.py new file mode 100644 index 000000000..e69de29bb From a819ce514e8b02c6bf1415dfaf970e4726fd9eb4 Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Thu, 14 Sep 2023 20:15:49 +0800 Subject: [PATCH 02/30] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=BE=A9=E8=AE=BA?= =?UTF-8?q?=E6=A8=A1=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debating_tournament.py | 225 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 debating_tournament.py diff --git a/debating_tournament.py b/debating_tournament.py new file mode 100644 index 000000000..e7ab4eff4 --- /dev/null +++ b/debating_tournament.py @@ -0,0 +1,225 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +@Time : 2023/9/20 00:30 +@Author : zhouziming +@File : debating_tourmament.py +""" +import asyncio +import platform +import fire +from pydantic import BaseModel, Field + +from metagpt.actions import BossRequirement +from metagpt.config import CONFIG +from metagpt.environment import Environment +from metagpt.logs import logger +from metagpt.roles import Role +from metagpt.schema import Message +from metagpt.utils.common import NoMoneyException +from metagpt.llm import LLM +def main( + zf:str='人性本善', + ff:str='人性本恶' +): + """ + """ + if platform.system() == "Windows": + asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) + asyncio.run(startup(zf,ff)) + +async def startup(正方辩题:str,反方辩题:str): + llm=LLM() + #一辩环节 + #正方 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 您的立论题目是{正方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 + ''' + 正方立论稿=await llm.aask(prompt.format(正方辩题=正方辩题)) + #反方 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 您的立论题目是{反方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 + ''' + 反方立论稿=await llm.aask(prompt.format(反方辩题=反方辩题)) + #裁判评价环节 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 + ##要求 + 你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 + ##辩题 + {正方辩题} + ##立论稿 + {正方立论稿} + ''' + 正方一辩评价=await llm.aask(prompt.format(正方辩题=正方辩题,正方立论稿=正方立论稿)) + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 + ##要求 + 你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 + ##辩题 + {反方辩题} + ##立论稿 + {反方立论稿} + ''' + 反方一辩评价=await llm.aask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿)) + #二辩质询环节 + #正方质询 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 + ##辩题 + {正方辩题} + ##立论稿 + {反方立论稿} + ''' + 正方质询=await llm.aask(prompt.format(正方辩题=正方辩题,反方立论稿=反方立论稿)) + #反方回答 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 + ##辩题 + {反方辩题} + ##立论稿 + {反方立论稿} + ##疑问 + {正方质询} + ''' + 反方回答=await llm.aask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) + #反方质询 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 + ##辩题 + {反方辩题} + ##立论稿 + {正方立论稿} + ''' + 反方质询=await llm.aask(prompt.format(反方辩题=反方辩题,正方立论稿=正方立论稿)) + #正方回答 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 + ##辩题 + {正方辩题} + ##立论稿 + {正方立论稿} + ##疑问 + {反方质询} + ''' + 正方回答=await llm.aask(prompt.format(正方辩题=正方辩题,正方立论稿=正方立论稿,反方质询=反方质询)) +if __name__ == '__main__': + fire.Fire(main) +if __name__ == '__main__': + llm=LLM() + 正方辩题='人性本善' + 反方辩题='人性本恶' + #一辩环节 + #正方 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 您的立论题目是{正方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 + ''' + 正方立论稿=llm.ask(prompt.format(正方辩题=正方辩题)) + #反方 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 您的立论题目是{反方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 + ''' + 反方立论稿=llm.ask(prompt.format(反方辩题=反方辩题)) + #裁判评价环节 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 + ##要求 + 你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 + ##辩题 + {正方辩题} + ##立论稿 + {正方立论稿} + ''' + 正方一辩评价=llm.ask(prompt.format(正方辩题=正方辩题,正方立论稿=正方立论稿)) + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 + ##要求 + 你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 + ##辩题 + {反方辩题} + ##立论稿 + {反方立论稿} + ''' + 反方一辩评价=llm.ask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿)) + #二辩质询环节 + #正方质询 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 + ##辩题 + {正方辩题} + ##立论稿 + {反方立论稿} + ''' + 正方质询=llm.ask(prompt.format(正方辩题=正方辩题,反方立论稿=反方立论稿)) + #反方回答 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 + ##辩题 + {反方辩题} + ##立论稿 + {反方立论稿} + ##疑问 + {正方质询} + ''' + 反方回答=llm.ask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) + #反方质询 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 + ##辩题 + {反方辩题} + ##立论稿 + {正方立论稿} + ''' + 反方质询=llm.ask(prompt.format(正方辩题=正方辩题,反方立论稿=反方立论稿)) + #正方回答 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 + ##辩题 + {正方辩题} + ##立论稿 + {正方立论稿} + ##疑问 + {反方质询} + ''' + 正方回答=llm.ask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) + From ddab9ec3406e0903f64b6acd2ae7d07027e9dc35 Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Fri, 15 Sep 2023 08:08:53 +0800 Subject: [PATCH 03/30] =?UTF-8?q?=E4=BF=AE=E6=94=B9prompt=E4=BD=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debating_tournament.py | 199 +++++++++++++++++++++++------------------ 1 file changed, 113 insertions(+), 86 deletions(-) diff --git a/debating_tournament.py b/debating_tournament.py index e7ab4eff4..e680e6b23 100644 --- a/debating_tournament.py +++ b/debating_tournament.py @@ -18,6 +18,70 @@ from metagpt.roles import Role from metagpt.schema import Message from metagpt.utils.common import NoMoneyException from metagpt.llm import LLM +正方一辩提示词=''' +##角色 +现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 +##要求 +您的立论题目是{正方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 +''' +反方一辩提示词=''' +##角色 +现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 +##要求 +您的立论题目是{反方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 +''' +正方一辩评价提示词=''' +##角色 +现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 +##要求 +你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 +##辩题 +{正方辩题} +##立论稿 +{正方立论稿} +''' +反方一辩评价提示词=''' +##角色 +现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 +##要求 +你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 +##辩题 +{反方辩题} +##立论稿 +{反方立论稿} +''' +正方质询提示词=''' +##角色 +现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 +##要求 +你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 +##辩题 +{正方辩题} +##立论稿 +{反方立论稿} +''' +反方回答提示词=''' +##角色 +现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 +##要求 +你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 +##辩题 +{反方辩题} +##立论稿 +{反方立论稿} +##疑问 +{正方质询} +''' +反方质询提示词=''' +##角色 +现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 +##要求 +你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 +##辩题 +{反方辩题} +##立论稿 +{正方立论稿} +''' def main( zf:str='人性本善', ff:str='人性本恶' @@ -32,97 +96,29 @@ async def startup(正方辩题:str,反方辩题:str): llm=LLM() #一辩环节 #正方 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 您的立论题目是{正方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 - ''' - 正方立论稿=await llm.aask(prompt.format(正方辩题=正方辩题)) + + 正方立论稿=await llm.aask(正方一辩提示词.format(正方辩题=正方辩题)) #反方 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 您的立论题目是{反方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 - ''' - 反方立论稿=await llm.aask(prompt.format(反方辩题=反方辩题)) + + 反方立论稿=await llm.aask(反方一辩提示词.format(反方辩题=反方辩题)) #裁判评价环节 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 - ##要求 - 你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 - ##辩题 - {正方辩题} - ##立论稿 - {正方立论稿} - ''' - 正方一辩评价=await llm.aask(prompt.format(正方辩题=正方辩题,正方立论稿=正方立论稿)) - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 - ##要求 - 你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 - ##辩题 - {反方辩题} - ##立论稿 - {反方立论稿} - ''' - 反方一辩评价=await llm.aask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿)) + + 正方一辩评价=await llm.aask(正方一辩评价提示词.format(正方辩题=正方辩题,正方立论稿=正方立论稿)) + + 反方一辩评价=await llm.aask(反方一辩评价提示词.format(反方辩题=反方辩题,反方立论稿=反方立论稿)) #二辩质询环节 #正方质询 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 - ##辩题 - {正方辩题} - ##立论稿 - {反方立论稿} - ''' - 正方质询=await llm.aask(prompt.format(正方辩题=正方辩题,反方立论稿=反方立论稿)) + + 正方质询=await llm.aask(正方质询提示词.format(正方辩题=正方辩题,反方立论稿=反方立论稿)) #反方回答 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 - ##辩题 - {反方辩题} - ##立论稿 - {反方立论稿} - ##疑问 - {正方质询} - ''' - 反方回答=await llm.aask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) + + 反方回答=await llm.aask(反方回答提示词.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) #反方质询 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 - ##辩题 - {反方辩题} - ##立论稿 - {正方立论稿} - ''' - 反方质询=await llm.aask(prompt.format(反方辩题=反方辩题,正方立论稿=正方立论稿)) + + 反方质询=await llm.aask(反方质询提示词.format(反方辩题=反方辩题,正方立论稿=正方立论稿)) #正方回答 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 - ##辩题 - {正方辩题} - ##立论稿 - {正方立论稿} - ##疑问 - {反方质询} - ''' - 正方回答=await llm.aask(prompt.format(正方辩题=正方辩题,正方立论稿=正方立论稿,反方质询=反方质询)) + + 正方回答=await llm.aask(正方回答提示词.format(正方辩题=正方辩题,正方立论稿=正方立论稿,反方质询=反方质询)) if __name__ == '__main__': fire.Fire(main) if __name__ == '__main__': @@ -189,13 +185,29 @@ if __name__ == '__main__': ##要求 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 ##辩题 - {反方辩题} + {反方辩题} ##立论稿 {反方立论稿} ##疑问 {正方质询} ''' 反方回答=llm.ask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) + #正方二轮质询 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,攻击对手回答中不能支撑对手论点,或是同样能够支撑自己论点的部分。对每一条的提问不得超过三句话。 + ##我方辩题 + {正方辩题} + ##对手辩题 + {反方辩题} + ##我方质询 + {正方质询} + ##对手回答 + {反方回答} + ''' + 正方二轮质询=llm.ask(prompt.format(正方辩题=正方辩题,反方辩题=反方辩题,正方质询=正方质询,反方回答=反方回答)) #反方质询 prompt=''' ##角色 @@ -222,4 +234,19 @@ if __name__ == '__main__': {反方质询} ''' 正方回答=llm.ask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) - + #反方二轮质询 + prompt=''' + ##角色 + 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 + ##要求 + 你的任务是,攻击对手回答中不能支撑对手论点,或是同样能够支撑自己论点的部分。对每一条的提问不得超过三句话。 + ##我方辩题 + {反方辩题} + ##对手辩题 + {正方辩题} + ##我方质询 + {反方质询} + ##对手回答 + {正方回答} + ''' + 正方二轮质询=llm.ask(prompt.format(正方辩题=正方辩题,反方辩题=反方辩题,反方质询=反方质询,正方回答=正方回答)) From 1ceca8bf95918422573c78bf9094515441560bd6 Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Fri, 15 Sep 2023 09:54:00 +0800 Subject: [PATCH 04/30] xiugai --- debating_tournament.py | 129 ----------------------------------------- 1 file changed, 129 deletions(-) diff --git a/debating_tournament.py b/debating_tournament.py index e680e6b23..9b1fc153b 100644 --- a/debating_tournament.py +++ b/debating_tournament.py @@ -121,132 +121,3 @@ async def startup(正方辩题:str,反方辩题:str): 正方回答=await llm.aask(正方回答提示词.format(正方辩题=正方辩题,正方立论稿=正方立论稿,反方质询=反方质询)) if __name__ == '__main__': fire.Fire(main) -if __name__ == '__main__': - llm=LLM() - 正方辩题='人性本善' - 反方辩题='人性本恶' - #一辩环节 - #正方 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 您的立论题目是{正方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 - ''' - 正方立论稿=llm.ask(prompt.format(正方辩题=正方辩题)) - #反方 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 您的立论题目是{反方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 - ''' - 反方立论稿=llm.ask(prompt.format(反方辩题=反方辩题)) - #裁判评价环节 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 - ##要求 - 你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 - ##辩题 - {正方辩题} - ##立论稿 - {正方立论稿} - ''' - 正方一辩评价=llm.ask(prompt.format(正方辩题=正方辩题,正方立论稿=正方立论稿)) - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 - ##要求 - 你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 - ##辩题 - {反方辩题} - ##立论稿 - {反方立论稿} - ''' - 反方一辩评价=llm.ask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿)) - #二辩质询环节 - #正方质询 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 - ##辩题 - {正方辩题} - ##立论稿 - {反方立论稿} - ''' - 正方质询=llm.ask(prompt.format(正方辩题=正方辩题,反方立论稿=反方立论稿)) - #反方回答 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 - ##辩题 - {反方辩题} - ##立论稿 - {反方立论稿} - ##疑问 - {正方质询} - ''' - 反方回答=llm.ask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) - #正方二轮质询 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,攻击对手回答中不能支撑对手论点,或是同样能够支撑自己论点的部分。对每一条的提问不得超过三句话。 - ##我方辩题 - {正方辩题} - ##对手辩题 - {反方辩题} - ##我方质询 - {正方质询} - ##对手回答 - {反方回答} - ''' - 正方二轮质询=llm.ask(prompt.format(正方辩题=正方辩题,反方辩题=反方辩题,正方质询=正方质询,反方回答=反方回答)) - #反方质询 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 - ##辩题 - {反方辩题} - ##立论稿 - {正方立论稿} - ''' - 反方质询=llm.ask(prompt.format(正方辩题=正方辩题,反方立论稿=反方立论稿)) - #正方回答 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 - ##辩题 - {正方辩题} - ##立论稿 - {正方立论稿} - ##疑问 - {反方质询} - ''' - 正方回答=llm.ask(prompt.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) - #反方二轮质询 - prompt=''' - ##角色 - 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 - ##要求 - 你的任务是,攻击对手回答中不能支撑对手论点,或是同样能够支撑自己论点的部分。对每一条的提问不得超过三句话。 - ##我方辩题 - {反方辩题} - ##对手辩题 - {正方辩题} - ##我方质询 - {反方质询} - ##对手回答 - {正方回答} - ''' - 正方二轮质询=llm.ask(prompt.format(正方辩题=正方辩题,反方辩题=反方辩题,反方质询=反方质询,正方回答=正方回答)) From 3fe6147088bd5cddf9174e8a048ac000dabe0e9c Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Fri, 15 Sep 2023 09:55:51 +0800 Subject: [PATCH 05/30] =?UTF-8?q?=E6=97=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debating_tournament.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/debating_tournament.py b/debating_tournament.py index 9b1fc153b..99e45685f 100644 --- a/debating_tournament.py +++ b/debating_tournament.py @@ -82,6 +82,18 @@ from metagpt.llm import LLM ##立论稿 {正方立论稿} ''' +正方回答提示词=''' +##角色 +现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 +##要求 +你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 +##辩题 +{正方辩题} +##立论稿 +{正方立论稿} +##疑问 +{反方质询} +''' def main( zf:str='人性本善', ff:str='人性本恶' From e315d8365b1d117659938932e0b72f645f37394b Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 19 Sep 2023 20:40:41 +0800 Subject: [PATCH 06/30] fixed --- metagpt/actions/action.py | 18 +++++++++--------- metagpt/llm.py | 4 +--- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/metagpt/actions/action.py b/metagpt/actions/action.py index 51a93281d..497f243e9 100644 --- a/metagpt/actions/action.py +++ b/metagpt/actions/action.py @@ -65,13 +65,13 @@ class Action(ABC): instruct_content = output_class(**parsed_data) return ActionOutput(content, instruct_content) except Exception as e: - print('Error:',e) - print('自动运行出错,切换为手动运行') - print('prompt为') - print('\n'.join( system_msgs)+prompt) - print('输入格式:') - print(output_data_mapping) - print('请准备输入,输入完成按ctrl+Z') + logger.debug('Error:'+str(e)) + logger.log('自动运行出错,切换为手动运行,通常这是由于大模型不能按照格式要求返回') + logger.log('prompt为') + logger.log('\n'.join( system_msgs)+prompt) + logger.log('输入格式:') + logger.log(output_data_mapping) + logger.log('请准备输入,输入完成按ctrl+Z') while True: try: lines=[] @@ -88,8 +88,8 @@ class Action(ABC): instruct_content = output_class(**parsed_data) return ActionOutput(content, instruct_content) except Exception as e: - print('Error:',e) - print('输入错误,请重试') + logger.log('Error:',e) + logger.log('输入错误,请重试') async def run(self, *args, **kwargs): diff --git a/metagpt/llm.py b/metagpt/llm.py index e523e7698..a94f6f7e9 100644 --- a/metagpt/llm.py +++ b/metagpt/llm.py @@ -10,9 +10,7 @@ from metagpt.provider.anthropic_api import Claude2 as Claude from metagpt.provider.openai_api import OpenAIGPTAPI as LLM from metagpt.provider.spark_api import Spark -DEFAULT_LLM = Spark() -CLAUDE_LLM = Claude() -SPARK_LLM = Spark() +DEFAULT_LLM = LLM() async def ai_func(prompt): """使用LLM进行QA From 5709e487137e2f3d4201f1eb30b27f1f6c0ceb9d Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 19 Sep 2023 20:40:58 +0800 Subject: [PATCH 07/30] fixed --- debating_tournament.py | 4 ++-- metagpt/provider/SparkApi.py | 31 ++++++++++++++++--------------- 2 files changed, 18 insertions(+), 17 deletions(-) diff --git a/debating_tournament.py b/debating_tournament.py index 99e45685f..8971a12c1 100644 --- a/debating_tournament.py +++ b/debating_tournament.py @@ -17,7 +17,7 @@ from metagpt.logs import logger from metagpt.roles import Role from metagpt.schema import Message from metagpt.utils.common import NoMoneyException -from metagpt.llm import LLM +from metagpt.llm import DEFAULT_LLM 正方一辩提示词=''' ##角色 现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 @@ -105,7 +105,7 @@ def main( asyncio.run(startup(zf,ff)) async def startup(正方辩题:str,反方辩题:str): - llm=LLM() + llm=DEFAULT_LLM #一辩环节 #正方 diff --git a/metagpt/provider/SparkApi.py b/metagpt/provider/SparkApi.py index 330420439..7ce57c22a 100644 --- a/metagpt/provider/SparkApi.py +++ b/metagpt/provider/SparkApi.py @@ -10,19 +10,20 @@ from datetime import datetime from time import mktime from urllib.parse import urlencode from wsgiref.handlers import format_date_time +from metagpt.logs import logger import websocket # 使用websocket_client answer = "" class Ws_Param(object): # 初始化 - def __init__(self, APPID, APIKey, APISecret, Spark_url): - self.APPID = APPID - self.APIKey = APIKey - self.APISecret = APISecret - self.host = urlparse(Spark_url).netloc - self.path = urlparse(Spark_url).path - self.Spark_url = Spark_url + def __init__(self, appid, apikey, apiSecret, spark_url): + self.appid = appid + self.apikey = apikey + self.apiSecret = apiSecret + self.host = urlparse(spark_url).netloc + self.path = urlparse(spark_url).path + self.spark_url = spark_url # 生成url def create_url(self): @@ -36,12 +37,12 @@ class Ws_Param(object): signature_origin += "GET " + self.path + " HTTP/1.1" # 进行hmac-sha256进行加密 - signature_sha = hmac.new(self.APISecret.encode('utf-8'), signature_origin.encode('utf-8'), + signature_sha = hmac.new(self.apiSecret.encode('utf-8'), signature_origin.encode('utf-8'), digestmod=hashlib.sha256).digest() signature_sha_base64 = base64.b64encode(signature_sha).decode(encoding='utf-8') - authorization_origin = f'api_key="{self.APIKey}", algorithm="hmac-sha256", headers="host date request-line", signature="{signature_sha_base64}"' + authorization_origin = f'api_key="{self.apikey}", algorithm="hmac-sha256", headers="host date request-line", signature="{signature_sha_base64}"' authorization = base64.b64encode(authorization_origin.encode('utf-8')).decode(encoding='utf-8') @@ -52,19 +53,19 @@ class Ws_Param(object): "host": self.host } # 拼接鉴权参数,生成url - url = self.Spark_url + '?' + urlencode(v) + url = self.spark_url + '?' + urlencode(v) # 此处打印出建立连接时候的url,参考本demo的时候可取消上方打印的注释,比对相同参数时生成的url与自己代码生成的url是否一致 return url # 收到websocket错误的处理 def on_error(ws, error): - print("### error:", error) + logger.error("### error:"+error) # 收到websocket关闭的处理 def on_close(ws,one,two): - print(" ") + logger.error("websocket关闭") # 收到websocket连接建立的处理 @@ -83,7 +84,7 @@ def on_message(ws, message): data = json.loads(message) code = data['header']['code'] if code != 0: - print(f'请求错误: {code}, {data}') + logger.error(f'请求错误: {code}, {data}') ws.close() else: choices = data["payload"]["choices"] @@ -123,9 +124,9 @@ def gen_params(appid, domain,question): return data -def main(appid, api_key, api_secret, Spark_url,domain, question): +def main(appid, api_key, api_secret, spark_url,domain, question): # print("星火:") - wsParam = Ws_Param(appid, api_key, api_secret, Spark_url) + wsParam = Ws_Param(appid, api_key, api_secret, spark_url) websocket.enableTrace(False) wsUrl = wsParam.create_url() ws = websocket.WebSocketApp(wsUrl, on_message=on_message, on_error=on_error, on_close=on_close, on_open=on_open) From 6997ddc49cfbe8dac56b776dcef29b71def1458b Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 19 Sep 2023 20:41:10 +0800 Subject: [PATCH 08/30] fixed --- metagpt/llm.py | 2 +- metagpt/provider/spark_api.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/metagpt/llm.py b/metagpt/llm.py index a94f6f7e9..68945e71e 100644 --- a/metagpt/llm.py +++ b/metagpt/llm.py @@ -10,7 +10,7 @@ from metagpt.provider.anthropic_api import Claude2 as Claude from metagpt.provider.openai_api import OpenAIGPTAPI as LLM from metagpt.provider.spark_api import Spark -DEFAULT_LLM = LLM() +DEFAULT_LLM = Spark() async def ai_func(prompt): """使用LLM进行QA diff --git a/metagpt/provider/spark_api.py b/metagpt/provider/spark_api.py index 2f75208c8..e855e019a 100644 --- a/metagpt/provider/spark_api.py +++ b/metagpt/provider/spark_api.py @@ -41,6 +41,7 @@ class Spark: def _default_system_msg(self): return self._system_msg(self.system_prompt) + def ask(self, msg: str): message = [self._user_msg(msg)] SparkApi.main(CONFIG.xinghuo_appid,CONFIG.xinghuo_api_key,CONFIG.xinghuo_api_secret,"ws://spark-api.xf-yun.com/v2.1/chat","generalv2",message) 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 09/30] =?UTF-8?q?=E4=B8=BA=E4=BA=86=E6=96=B9=E4=BE=BF?= =?UTF-8?q?=E5=90=84=E4=BD=8D=E5=B0=BD=E5=BF=AB=E4=BD=BF=E7=94=A8=EF=BC=8C?= =?UTF-8?q?=E6=88=91=E4=BB=AC=E7=8E=B0=E5=9C=A8=E6=8F=90=E4=BA=A4=E7=AC=AC?= =?UTF-8?q?=E4=B8=80=E7=89=88=E6=96=B0=E7=89=88=E8=AE=B0=E5=BF=86=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=EF=BC=8C=E4=BB=A5=E5=8F=8Aretrive=E5=92=8Creflect?= =?UTF-8?q?=EF=BC=8C=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)) From 5fbe015c560995815e2e51ece6fe7faad98d5bc0 Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 26 Sep 2023 09:37:49 +0800 Subject: [PATCH 10/30] =?UTF-8?q?=E4=BF=AE=E6=94=B91.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reflect_and_retrieve/GA_memory_storage.py | 17 +++++------ .../agent_memories/John_memory.json | 2 +- metagpt/reflect_and_retrieve/gpt_structure.py | 5 ++-- metagpt/reflect_and_retrieve/reflect.py | 30 ++++++++++++++++--- 4 files changed, 37 insertions(+), 17 deletions(-) diff --git a/metagpt/reflect_and_retrieve/GA_memory_storage.py b/metagpt/reflect_and_retrieve/GA_memory_storage.py index 83e3ee5a1..31ccdaa0d 100644 --- a/metagpt/reflect_and_retrieve/GA_memory_storage.py +++ b/metagpt/reflect_and_retrieve/GA_memory_storage.py @@ -7,7 +7,6 @@ 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 @@ -67,14 +66,14 @@ if __name__ == "__main__": 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) + 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) + John.memory_save(John.memory_path) for i in range(len(John.memories_list)): print(f"John记忆为:{John.memories_list[i].description}") @@ -85,7 +84,5 @@ if __name__ == "__main__": 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/agent_memories/John_memory.json b/metagpt/reflect_and_retrieve/agent_memories/John_memory.json index 2bac7eaaf..959e07940 100644 --- a/metagpt/reflect_and_retrieve/agent_memories/John_memory.json +++ b/metagpt/reflect_and_retrieve/agent_memories/John_memory.json @@ -1 +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 +[{"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]}, {"created_time": 1695688466.0793974, "accessed_time": 1695688466.0793974, "description": "Talked to Mei about their upcoming vacation plans.", "poignancy": 3, "embedding_key": [0.006239559035748243, -0.006435062736272812, 0.017522457987070084, -0.0157728623598814, 0.00013285571185406297, 0.05911509692668915, -0.031015545129776, -0.012107991613447666, 0.0038040434010326862, -0.02241336926817894, 0.004629136528819799, 0.02063726633787155, 0.021538572385907173, -0.02775493636727333, 0.0005467484006658196, -0.019749214872717857, 0.017880329862236977, -0.008946791291236877, 0.03947192057967186, -0.02433527447283268, 0.005520502105355263, -0.004718604031950235, -0.005646419711410999, 0.0047616814263165, -0.007661104667931795, -0.012021836824715137, 0.010471059940755367, -0.0076080868020653725, -0.020570993423461914, 0.016700677573680878, 0.03043234720826149, -0.0019268738105893135, 0.01211461890488863, -0.0117633743211627, -0.01663440465927124, -0.047530658543109894, -0.01144526619464159, -0.018437018617987633, 0.011776628904044628, -0.0275958813726902, -0.004055879078805447, -0.0009004780440591276, 0.0012351543409749866, -0.004649017937481403, -0.007979212328791618, 0.011909173801541328, -0.0008863951079547405, -0.008443120867013931, -0.012439354322850704, 0.009251645766198635, -0.006763111799955368, -0.019643178209662437, -0.03011423908174038, -0.008542529307305813, -0.021313246339559555, -0.025157053023576736, -0.01540173590183258, 0.009013064205646515, -0.009934252128005028, -0.004456827882677317, 0.00010204934369539842, 0.008005721494555473, -0.0004216589732095599, 0.013281015679240227, -0.020902356132864952, 0.010968104004859924, -0.020663775503635406, -0.0008723121718503535, 0.028285115957260132, 0.008171402849256992, 0.025170307606458664, 0.0065841758623719215, 0.013387051410973072, -0.003893511136993766, 0.0275958813726902, -0.015958424657583237, -0.013459950685501099, -0.013466577976942062, -0.012976161204278469, 0.019338324666023254, 0.001636931556276977, -0.012035091407597065, -0.020451704040169716, 0.03764279931783676, 0.007813531905412674, 0.023261658847332, -0.013128588907420635, 0.014858301728963852, -0.012419472448527813, -0.025263089686632156, 0.0052388436160981655, 0.0210216473788023, -0.008111758157610893, 0.021101174876093864, -0.0037775342352688313, 0.019775724038481712, 0.008728092536330223, 0.013042434118688107, -0.012346572242677212, 0.009245018474757671, -0.0020561052951961756, 0.016819968819618225, -0.019272051751613617, -0.013546105474233627, -0.03130714222788811, 0.01936483383178711, -0.003045222721993923, -0.013744923286139965, 0.02283751405775547, -0.019285306334495544, -0.04079737141728401, 0.02059750258922577, -0.006199795287102461, -0.02209526114165783, -0.052487846463918686, -0.01642233319580555, 0.017085058614611626, 0.006342281121760607, -0.022320589050650597, -0.02033241279423237, 0.02807304449379444, 0.025011252611875534, 0.021949462592601776, 0.012068227864801884, 0.007654477376490831, 0.0014737354358658195, -0.017257366329431534, -0.005364761222153902, 0.0065841758623719215, -0.004914108198136091, 0.004304401110857725, 0.008993182331323624, 0.0053349388763308525, 0.009178745560348034, -0.008867264725267887, 0.019934777170419693, -0.015414990484714508, 0.027463337406516075, -0.010205970145761967, -0.019059980288147926, 0.006905597634613514, 0.017933346331119537, -0.003306999336928129, 0.0018307786667719483, 0.010855440981686115, 0.027251264080405235, 0.017827311530709267, -0.00949022639542818, 0.013307523913681507, -0.013009297661483288, 0.019815487787127495, -0.016660913825035095, 0.01829121820628643, 0.020080577582120895, 0.029478022828698158, 0.02224106155335903, 0.0054045249707996845, 0.0006751514156349003, -0.014540193602442741, 0.003644989337772131, 0.009026318788528442, 0.005387956742197275, 0.039604466408491135, -0.0031711405608803034, -0.008747974410653114, 0.028682751581072807, 0.022386861965060234, 0.0021290050353854895, -0.001436457154341042, -0.0030700750648975372, -0.005417779553681612, -0.00837022066116333, -0.028046535328030586, -0.007879803888499737, -0.012949652969837189, 0.021008392795920372, -0.008535902015864849, -0.013148469850420952, -0.01776103861629963, -0.005918137263506651, -0.018794890493154526, -0.006723348516970873, -0.0015905407490208745, 0.013393678702414036, -0.0013859242899343371, -0.004430318716913462, 0.00042662941268645227, 0.009569753892719746, 0.012200772762298584, -0.0072502149268984795, 0.021326500922441483, 0.02849718928337097, 0.012286927551031113, -0.01109402161091566, -0.6633615493774414, -0.030564891174435616, 0.00855578389018774, 0.019868504256010056, 0.007508677896112204, 0.00818465743213892, 0.016806714236736298, 0.003277176758274436, -0.009808334521949291, 0.002382497536018491, -0.02042519487440586, 0.0055967154912650585, 0.008516020141541958, -0.025011252611875534, 0.017946600914001465, -0.009397445246577263, -0.01422208547592163, -0.008602174930274487, -0.00880099181085825, 0.0008930223411880434, -0.03316277638077736, 0.014195576310157776, -0.010809049941599369, -0.0031197795178741217, -0.00504333944991231, 0.012101364322006702, 0.012386335991322994, 0.002508415374904871, -0.025554688647389412, 0.03719214349985123, -0.04761018604040146, 0.042971108108758926, -0.005450915545225143, -0.023261658847332, 0.048272911459207535, -0.018317727372050285, -0.0031346906907856464, 0.021843425929546356, -0.017615238204598427, 0.0173368938267231, -0.029080387204885483, 0.016303041949868202, 0.01797311007976532, 0.02257242426276207, 0.025647468864917755, -0.013526223599910736, 0.024905217811465263, -0.001736340345814824, 0.007601459510624409, 0.003202620195224881, 0.01094159483909607, 0.011398875154554844, -0.030989035964012146, 0.006806189194321632, 0.004950558301061392, 0.0135328508913517, 0.025501670315861702, -0.010663250461220741, -0.020663775503635406, 0.005391270387917757, -0.015812626108527184, 0.012207400053739548, -0.036078765988349915, -0.004751740489155054, -0.017509203404188156, 0.016501860693097115, -0.016515115275979042, 0.007667731959372759, 0.028550205752253532, -0.0307504553347826, 0.002541551599279046, 0.02364603988826275, -0.04005511850118637, 0.01002703420817852, 0.019112998619675636, 0.028947841376066208, 0.017071804031729698, 0.0008946791640482843, -0.03234099596738815, 0.007893058471381664, 0.018463527783751488, -0.02812606282532215, -0.028974350541830063, -0.022333843633532524, 0.013506341725587845, -0.03279164806008339, -0.02551492489874363, 0.005437661428004503, 0.018105655908584595, -0.012571899220347404, 0.002140602795407176, 0.015070374123752117, 0.014924573712050915, 0.0025498357135802507, 0.002844748320057988, -0.010119815357029438, -0.001371841412037611, -0.008211166597902775, 0.023235149681568146, -0.038491085171699524, 0.004248069133609533, -0.018755126744508743, 0.038703158497810364, -0.0011274614371359348, -0.01023910567164421, -0.00688571622595191, -0.028285115957260132, 0.011113903485238552, 0.020822828635573387, -0.0015665169339627028, -0.004016115330159664, -0.001807583263143897, -0.009907743893563747, -0.0012500656303018332, -0.0016642689006403089, -0.029504530131816864, 0.009370936080813408, 0.019391342997550964, 0.0004303572641219944, -0.0022897159215062857, 0.017681511119008064, 0.012386335991322994, 0.03027329221367836, -0.011067512445151806, -0.0035389531403779984, 0.018264709040522575, 0.0006962757906876504, -0.01398350391536951, 0.0023278226144611835, 0.014169067144393921, -0.0177477840334177, 0.008091876283288002, 0.0017181154107674956, -0.02192295342683792, -0.0004895883030258119, -0.018410509452223778, 0.0018191810231655836, -0.032871175557374954, 0.024693144485354424, -0.016303041949868202, -0.04360732436180115, -0.0031976497266441584, -0.0022946863900870085, -0.018808145076036453, 0.012233909219503403, -0.004897539969533682, -0.0006929621449671686, -0.006040741223841906, -0.0031744542066007853, -0.004509845748543739, 0.014288357459008694, 0.004234814550727606, 0.013758177869021893, 0.019881758838891983, 0.009569753892719746, -0.00019167258869856596, 0.020836083218455315, -0.015361973084509373, -0.02717173844575882, -0.011352485045790672, 0.01331415120512247, 0.01605120673775673, -0.018476782366633415, -0.0019948030821979046, 0.002738712355494499, -0.004804758355021477, 0.011584438383579254, 0.009636025875806808, 0.004271264653652906, -0.0373246893286705, 0.00663388054817915, -0.025859542191028595, -0.008323829621076584, 0.011524793691933155, 0.0019682941492646933, -0.018688853830099106, -0.005566892679780722, -0.02118070051074028, 0.00501351710408926, -0.013208115473389626, 0.005759083200246096, -0.011630829423666, -0.007329741958528757, 0.0009659221395850182, 0.021750645712018013, -0.013400305993855, 0.010431296192109585, 0.04199027642607689, -0.02331467717885971, 0.030617909505963326, 0.0013378767762333155, 0.018794890493154526, -0.015216173604130745, 0.0014654513215646148, 0.009178745560348034, -0.003920020069926977, -0.0005695295403711498, 0.0033318514470010996, -0.00743577815592289, 0.012439354322850704, -0.002244981937110424, -0.02963707596063614, 0.0050300853326916695, 0.0034991896245628595, -0.003492562333121896, -0.025541434064507484, -0.0097884526476264, -0.025859542191028595, -0.004970439709722996, 0.007303232792764902, 0.010915085673332214, -0.03578716516494751, -0.030564891174435616, -0.009987270459532738, 0.011670593172311783, -0.005507247522473335, 0.002407349646091461, 0.01583913527429104, -0.0187816359102726, -0.00025452792760916054, -0.00023982372658792883, -0.0009949164232239127, -0.012883380055427551, -0.00695198867470026, -0.028285115957260132, -0.019126253202557564, 0.007170687895268202, 0.011325975880026817, 0.006965243257582188, 0.010219224728643894, -0.02690664865076542, -0.001256692921742797, 0.003452798817306757, 0.03772232308983803, 0.021260228008031845, -0.005848550703376532, 0.02444130927324295, -0.0011100649135187268, 0.030034711584448814, 0.008151520974934101, 0.012141128070652485, 0.0025912560522556305, 0.008761228993535042, -0.002510072197765112, -0.00743577815592289, -0.019457615911960602, 0.018463527783751488, -0.008933537639677525, 0.016236770898103714, 0.012684562243521214, -0.03994908183813095, -0.004542982205748558, -0.03199637681245804, -0.01168384775519371, 0.009231763891875744, -0.02637646719813347, -0.0054476018995046616, 0.00701826112344861, 0.012757462449371815, 0.04594011977314949, -0.005682869348675013, -0.004231500905007124, 0.01171035598963499, 0.0010181117104366422, 0.0059744687750935555, 0.004973753355443478, 0.02123371884226799, -0.01625002548098564, -0.016607895493507385, -0.006110327318310738, 0.010656623169779778, -0.011783256195485592, 0.0023609588388353586, -0.004523100331425667, 0.014964337460696697, -0.006262754090130329, -0.013705159537494183, -0.023301422595977783, -0.002382497536018491, 0.026177650317549706, -0.01034514233469963, -0.05529779940843582, -0.0070381429977715015, 0.008575665764510632, -0.0060440548695623875, -0.008191284723579884, 0.015295700170099735, -0.00197989190928638, -0.01109402161091566, 0.020822828635573387, 9.630227577872574e-05, 0.0016377599677070975, -0.019881758838891983, 0.0018473467789590359, -0.0047152903862297535, 0.0033666444942355156, 0.011942310258746147, -0.003949842881411314, 0.013917231932282448, -0.0011755090672522783, -0.018635835498571396, 0.010663250461220741, -0.03151921555399895, -0.024534091353416443, 0.005209020804613829, 0.015255936421453953, -0.0001325450575677678, -0.0407443530857563, -0.002011371310800314, 0.008310575038194656, 0.002032910007983446, -0.010384906083345413, -0.027781445533037186, -0.0046457042917609215, -0.012558644637465477, 0.0032258154824376106, -0.027052447199821472, -0.018953943625092506, 0.014063031412661076, 0.005888314452022314, -0.0067067802883684635, -0.02673433907330036, -0.022333843633532524, 0.0061136409640312195, 0.14145208895206451, -0.009138981811702251, 0.0057822782546281815, 0.007674359250813723, 0.016501860693097115, 0.002508415374904871, 0.004079074133187532, -0.02658854052424431, 0.016819968819618225, -0.007840040139853954, 0.015017355792224407, 0.020239630714058876, -0.016965767368674278, -0.006053995806723833, 0.018808145076036453, -0.0002543208538554609, -0.010802422650158405, -0.012326691299676895, -0.00501351710408926, -0.0020246258936822414, 0.0036847528535872698, 0.003813984105363488, 0.010875322856009007, 0.016859732568264008, -0.00335007649846375, 0.009364308789372444, 0.013691904954612255, 0.0270657017827034, 0.012856870889663696, -0.005848550703376532, 0.01780080236494541, 0.0037907888181507587, 0.0027304282411932945, 0.005179198458790779, -0.029080387204885483, 0.0036350484006106853, -0.0008408327703364193, 0.003081672824919224, 0.01251225359737873, 0.00041213229997083545, -0.002115750452503562, 0.026946410536766052, -0.0015938543947413564, -0.006163345649838448, -0.005033398978412151, -0.011325975880026817, 0.0017661629244685173, 0.007263469509780407, -0.01023910567164421, -0.0016833222471177578, 0.035177458077669144, 0.010411414317786694, -0.012830361723899841, -0.028894823044538498, 0.007614714093506336, 0.04647029936313629, -0.008032230660319328, -0.007780394982546568, 0.0038272386882454157, 0.00022304848243948072, 0.0007256842218339443, -0.03417011722922325, -0.014553448185324669, -0.0029176482930779457, -0.013135216198861599, -0.025594452396035194, -0.010444550774991512, -0.020252885296940804, -0.018198437988758087, 0.006965243257582188, -0.0033616742584854364, 0.010073425248265266, -0.04047926142811775, -0.00943720806390047, 0.018649090081453323, 0.014381139539182186, 0.030723946169018745, -0.006229618098586798, -0.0036284211091697216, 0.0136653957888484, -0.01663440465927124, -0.0033732717856764793, 0.017244113609194756, -0.011610947549343109, -0.01925879716873169, 0.01064336858689785, 0.012041718699038029, 0.009397445246577263, 0.009198627434670925, 0.008250930346548557, 0.04055878892540932, 0.00786654930561781, 0.018118910491466522, 0.0028281803242862225, 0.0023294794373214245, 0.0357341505587101, -0.016170497983694077, 0.012525508180260658, -0.024242492392659187, 0.010451178066432476, 0.014381139539182186, -0.011770001612603664, -0.007263469509780407, -0.010822304524481297, 0.006285949610173702, 0.005159316584467888, 0.00949022639542818, 0.01797311007976532, 0.016554879024624825, 0.003711261786520481, 0.014778774231672287, -0.017032040283083916, 0.004841208457946777, -0.007197197061032057, 0.0034627397544682026, 0.026349958032369614, 0.007627968210726976, 0.018198437988758087, -0.011405502445995808, -0.024944981560111046, 0.00369137991219759, -0.01925879716873169, 0.027834463864564896, -0.0007824300555512309, -0.02033241279423237, -0.0015863986918702722, 0.0019517260370776057, -0.02218804322183132, 0.015361973084509373, 0.004930676426738501, 0.011637456715106964, -0.0015366943553090096, -0.007601459510624409, -0.017403166741132736, -0.014049776829779148, -0.01304906141012907, -0.009596262127161026, 0.028152571991086006, -0.007236960344016552, 0.0029275889974087477, -0.005318370647728443, 0.013426815159618855, -0.004890912678092718, -0.0135328508913517, 0.02294355072081089, -0.02615114115178585, -0.014646229334175587, -0.011663965880870819, 0.005815414711833, 0.03546905890107155, 0.011292839422821999, 0.027516355738043785, -0.006242872681468725, 0.006560980807989836, 0.007303232792764902, -0.0409829318523407, -0.02604510448873043, 0.009145609103143215, 0.005513874813914299, 0.006408553570508957, 0.014182321727275848, -0.0009336142684333026, 0.011610947549343109, -0.014672738499939442, 0.007422523573040962, 0.006673643831163645, 0.009450462646782398, -0.01850329153239727, -0.00731648737564683, -0.008310575038194656, 0.01032526046037674, -0.0044800229370594025, 0.014858301728963852, 0.01310207974165678, -0.016303041949868202, 0.034037571400403976, 0.003545580431818962, -0.0017263994086533785, -0.021843425929546356, -0.015653571113944054, -0.0013345631305128336, 0.0014306582743301988, 0.006743229925632477, 0.010762658901512623, 0.00850276555866003, -0.0070845335721969604, 0.03136016055941582, 0.009914370253682137, 0.019696196541190147, 0.0024272315204143524, 0.008284066803753376, -0.029981693252921104, 0.014977592043578625, -0.03369295597076416, 0.013320778496563435, -0.0023957521189004183, -0.0031015544664114714, -0.024587109684944153, -0.016117479652166367, 0.021326500922441483, 0.013824449852108955, 0.001004028832539916, 0.01834423653781414, -0.001607108861207962, -0.0002742026117630303, 0.008482883684337139, -0.016183752566576004, 0.0011506568407639861, -0.0023940952960401773, -0.018052637577056885, -0.0032705494668334723, -0.018065892159938812, -0.006663702894002199, -0.015123391523957253, 0.008409984409809113, -0.006355535704642534, -0.041910748928785324, 0.01532220933586359, -0.0028927959501743317, -0.009993897750973701, -0.013400305993855, 0.0036383620463311672, 0.03106856346130371, 0.004307714756578207, 0.027092210948467255, 0.008993182331323624, -0.001971607794985175, -0.024799181148409843, 0.008794364519417286, 0.0002124863094650209, 0.003654930042102933, 0.01090845838189125, 0.014169067144393921, -0.014301612041890621, -0.009496853686869144, -0.013784686103463173, 0.028762279078364372, -0.03491237014532089, -0.04055878892540932, -0.023235149681568146, 0.031254127621650696, 0.02695966511964798, -0.0036714982707053423, -0.011292839422821999, 0.004844522103667259, 0.024043673649430275, -0.0029656956903636456, -0.014208830893039703, 0.0047915042378008366, -0.020769812166690826, -0.017257366329431534, 0.033772483468055725, 0.01310207974165678, 0.015110136941075325, 0.020133595913648605, -0.010709641501307487, -0.0007758028223179281, -0.012353199534118176, -0.008893773891031742, 0.0030667614191770554, -0.015335463918745518, 0.021565081551671028, -0.020305903628468513, 0.036290839314460754, -0.008250930346548557, 0.011849528178572655, -0.006647135131061077, 0.004098956007510424, 0.009324545040726662, 0.02786097303032875, -0.011173549108207226, -0.0035654623061418533, -0.03825250640511513, -0.022453133016824722, 0.018224945291876793, -0.0035422667860984802, -0.012472490780055523, -0.00989448931068182, -0.007183942478150129, -0.004085701424628496, 0.02524983510375023, 0.008244303055107594, -0.0033003720454871655, -0.010862068273127079, -0.009112472645938396, -0.019550396129488945, 0.010842186398804188, -0.0012210713466629386, 0.014394394122064114, -0.016024697571992874, -0.025316106155514717, -0.008463001810014248, -0.011644084006547928, 0.021737391129136086, 0.0025233265478163958, -0.016819968819618225, -0.007396014407277107, 0.004204992204904556, -0.024149710312485695, 0.03136016055941582, -0.021061411127448082, -0.005822042003273964, -0.021034901961684227, 0.012214027345180511, -0.007674359250813723, -0.022612188011407852, 0.001908648875541985, 0.0003976351872552186, -0.020783066749572754, -0.011286212131381035, 0.02400391176342964, 0.01599818840622902, -0.03663545474410057, -0.009775198064744473, 0.004334223456680775, -0.011319348588585854, -0.00688571622595191, -0.019272051751613617, -0.006249499507248402, 0.026919901371002197, -0.0011755090672522783, 0.004377300851047039, 0.0031032112892717123, -0.0012492372188717127, 0.0012674621539190412, 0.0019948030821979046, 0.013320778496563435, 0.0004775764246005565, -0.017959855496883392, -0.012797226198017597, 8.52223311085254e-05, 0.017403166741132736, -0.00014963095600251108, -0.014261849224567413, -0.023844856768846512, -0.006690212059766054, -0.0046258228830993176, 0.024414800107479095, 0.008270812220871449, 0.003081672824919224, 0.019431106746196747, 0.020040813833475113, 0.024560600519180298, 0.011836274527013302, 0.00156154646538198, 0.007488796021789312, -0.0008147379267029464, -0.016594642773270607, -0.03584018349647522, -0.007627968210726976, 0.0041983649134635925, 0.0307504553347826, 0.013194860890507698, -0.012406217865645885, -0.02251940593123436, -0.014235340058803558, -0.02969009429216385, 0.0024636813905090094, 0.0009742061956785619, 0.015229428187012672, 0.01321474276483059, -0.030723946169018745, 0.006597430445253849, 0.014752265065908432, 0.004804758355021477, -0.004552923142910004, -0.0027718485798686743, -0.0047948178835213184, 0.017045294865965843, -0.035919710993766785, 0.0059976642951369286, 0.011425384320318699, -0.011610947549343109, -0.004725231323391199, 0.0018937375862151384, 0.01792009174823761, -0.007946076802909374, 0.017668256536126137, -0.009423954412341118, -0.004675527103245258, -0.020239630714058876, 0.008860637433826923, -0.0003589071857277304, 0.014579957351088524, 0.013493087142705917, 0.005049966741353273, -0.017177840694785118, 0.006769739091396332, -0.01463297475129366, -0.024732908234000206, -0.00949022639542818, 0.0032622653525322676, 0.012015209533274174, 0.016541624441742897, 0.0020295963622629642, -0.01908648945391178, 0.0055967154912650585, -0.0273307915776968, 0.013877468183636665, -0.02017335779964924, -0.010146324522793293, 0.016647659242153168, 0.009483599103987217, -0.017416421324014664, -0.024189474061131477, 0.0307504553347826, -0.02518356218934059, -0.0018357491353526711, 0.022121770307421684, 0.0023675861302763224, 0.00805211253464222, -0.00541446590796113, -0.004748426843434572, -0.021512063220143318, -0.01700553111732006, 0.003036938840523362, -0.0075550684705376625, -0.028285115957260132, 0.01422208547592163, -0.007661104667931795, -0.0032440403010696173, 0.005593401845544577, -0.03711261600255966, 0.008403357118368149, 3.6268676922190934e-05, -0.014169067144393921, 0.014778774231672287, -0.03963097557425499, -0.019775724038481712, 0.008416611701250076, -0.013970249332487583, 0.0031595430336892605, -0.006156718358397484, -0.005729260388761759, -0.015600553713738918, 0.01573309861123562, 0.24685192108154297, 0.0017197722336277366, 0.007694241125136614, 0.04005511850118637, -0.007336369249969721, 0.0016153929755091667, 0.02921293117105961, 0.024308765307068825, 0.028417661786079407, -0.0052388436160981655, -0.036184802651405334, 0.006879088934510946, 0.005387956742197275, -0.007475541438907385, 0.007574950344860554, -0.014341375790536404, -0.03552207723259926, -0.019272051751613617, -0.010451178066432476, -0.02208200842142105, -0.010968104004859924, 0.0030253410805016756, 0.0022996568586677313, 0.003926647361367941, 0.006468199193477631, 0.002836464438587427, -0.012174263596534729, 0.011869410052895546, -0.0009402415598742664, 0.005619910545647144, 0.004582745488733053, -0.01845027320086956, -0.03016725555062294, 0.0038636885583400726, 0.00036491313949227333, -0.004274578299373388, 0.0074158962815999985, 0.00035290123196318746, 0.019696196541190147, 0.014619720168411732, -0.017230859026312828, 0.019059980288147926, 0.0032672358211129904, -0.008436493575572968, 0.00514606200158596, 0.03631734848022461, -0.012479118071496487, -0.01545475423336029, 0.010530705563724041, 0.0077207498252391815, -0.005861805286258459, -0.001938471570611, 0.024295510724186897, 0.02717173844575882, 0.007793649565428495, -0.006169972475618124, 0.010431296192109585, 0.013174979016184807, -0.03387851640582085, 0.0021637980826199055, -0.0018175242003053427, 0.012956280261278152, -0.0016932631842792034, 0.017522457987070084, 0.005649733357131481, -0.0009601233177818358, -0.003214217722415924, -0.003247353946790099, 0.007992466911673546, -0.006620625965297222, 0.007621340919286013, -0.014513684436678886, 0.006570921279489994, -0.01027224212884903, -0.028391152620315552, -0.007767140865325928, 0.03255306929349899, -0.003184395143762231, 0.011803138069808483, 0.018171928822994232, -0.016700677573680878, 0.0038703158497810364, -0.0072502149268984795, -0.009523362852633, 0.0344352088868618, -0.025872796773910522, 0.02770191803574562, 0.014924573712050915, 0.019881758838891983, -0.019126253202557564, -0.004254696425050497, -0.018304472789168358, 0.00030195422004908323, -0.011869410052895546, 0.003237413242459297, 0.026111377403140068, 0.0006022516172379255, 0.017721274867653847, -0.023407457396388054, 0.005623224191367626, -0.02021312154829502, 0.004566177260130644, 0.0235267486423254, 0.008217793889343739, -0.015653571113944054, 0.0017810743302106857, -0.0012111305259168148, 0.020464958623051643, -0.02743682824075222, 0.004536354914307594, -0.003641675692051649, -0.009649280458688736, 0.010093306191265583, 0.008655192330479622, -0.03173128888010979, -0.0026956351939588785, 0.0035223851446062326, -0.03904777392745018, 0.01973596028983593, -0.01619700714945793, 0.004996948875486851, -0.021618099883198738, -0.00818465743213892, 0.013546105474233627, -0.0016940915957093239, 0.0024620245676487684, 0.006464885547757149, 0.004248069133609533, 0.010265614837408066, 0.005795532837510109, 0.033984553068876266, 0.008224421180784702, 0.01705854944884777, -0.017615238204598427, -0.005716005805879831, -0.013062315993010998, 0.020517975091934204, -0.007137551438063383, 0.009695671498775482, 0.006080504972487688, 0.003883570432662964, 0.0010321947047486901, -0.005006889812648296, -0.010537332855165005, 0.020875846967101097, -0.02812606282532215, 0.022227806970477104, 0.015852389857172966, -0.017085058614611626, -0.02197597175836563, -0.02953103929758072, -0.023937638849020004, -0.003419662592932582, -0.017098313197493553, 0.05344216898083687, 0.0017048608278855681, -0.045860592275857925, 0.002906050533056259, 0.008655192330479622, 0.02342071197926998, -0.004178483039140701, 0.004446886945515871, 0.00960288941860199, -0.009185372851788998, -0.022532660514116287, -0.015335463918745518, -0.17008182406425476, 0.008893773891031742, 0.01211461890488863, -0.004317655228078365, 0.0037410843651741743, 0.025925815105438232, 0.006388672161847353, -0.009218509308993816, 0.007694241125136614, 0.0028215530328452587, 0.02748984657227993, 0.002071016700938344, -0.013956994749605656, -0.010007152333855629, 0.013559360057115555, 0.04973090812563896, -0.01737665757536888, -0.01099461317062378, 0.01385095901787281, 0.014659483917057514, 0.02396414801478386, -0.0033533901441842318, -0.010431296192109585, -0.0023891248274594545, 0.006945361383259296, 0.01573309861123562, 0.006478140130639076, 0.00629920419305563, 0.0027933872770518064, -0.003648302750661969, -0.022267570719122887, 0.009901116602122784, 0.013128588907420635, 0.03605225682258606, 0.03462076932191849, 0.010172833688557148, -0.013035806827247143, -0.01594517193734646, -0.002776819048449397, 0.015958424657583237, 0.0018688853597268462, 0.0035952848847955465, -0.01094159483909607, -0.010504196397960186, -0.019815487787127495, 0.012041718699038029, 0.003823925042524934, 0.0026028535794466734, -0.017986364662647247, -0.016753695905208588, -0.005818728357553482, -0.029451513662934303, 0.010875322856009007, -0.015600553713738918, 0.020955374464392662, 0.01813216507434845, 0.00658086221665144, 0.012339944951236248, 0.013022552244365215, -0.005407838616520166, -0.006385358516126871, -0.004771622363477945, -0.0057358876802027225, 0.008734719827771187, 0.01505711954087019, -0.02802002616226673, -0.01573309861123562, -0.0014116049278527498, -0.02241336926817894, 0.01818518340587616, -0.00877448357641697, -0.012041718699038029, 0.012962907552719116, 0.001837405958212912, 0.021406028419733047, 0.012578526511788368, -0.0013428471283987164, 0.0035025032702833414, 0.0015110137173905969, -0.00217208219692111, -0.05118890479207039, 0.03568113222718239, -0.03456775099039078, 0.0028994232416152954, 0.0003083743795286864, 0.021459044888615608, 0.01385095901787281, -0.0017495948122814298, 0.018635835498571396, -0.02652226760983467, 0.017628492787480354, 0.0096559077501297, 0.0006879917345941067, -0.016276534646749496, 0.017230859026312828, 0.01573309861123562, 0.016819968819618225, 0.012989415787160397, 0.008151520974934101, -0.008999809622764587, 0.0011788225965574384, -0.017906837165355682, -0.007661104667931795, -0.006338967476040125, -0.022532660514116287, -0.02074330300092697, 0.019762469455599785, 0.027569372206926346, 0.01700553111732006, -0.04183122143149376, -0.0042447554878890514, 0.002483563032001257, 0.013996758498251438, -0.0023344499059021473, -0.005066534969955683, 0.025819778442382812, 0.004784876946359873, -0.005835296586155891, 0.005202393513172865, -0.007349623832851648, 0.03727167099714279, 0.006229618098586798, -0.0061136409640312195, 0.009556499309837818, -0.018423764035105705, -0.0017595357494428754, -0.09606865793466568, -0.019855249673128128, -0.011564556509256363, 0.018741872161626816, 0.0016617837827652693, 0.014116048812866211, 0.019881758838891983, 0.007303232792764902, 0.005086416844278574, 1.2672032426053192e-05, 0.015627063810825348, -0.012068227864801884, -0.023023078218102455, 0.00395978381857276, 0.009927624836564064, -0.02791398949921131, -0.017588729038834572, -0.01749594882130623, -0.028550205752253532, 0.01807914674282074, -0.005643106065690517, 0.000301540014334023, -0.0011340887285768986, -0.019934777170419693, 0.01711156778037548, -0.00250675855204463, -0.01786707527935505, 0.046443790197372437, 0.019245542585849762, 0.018914179876446724, -0.0207565575838089, -0.01237970869988203, 0.018264709040522575, -0.02685363031923771, -0.016117479652166367, 0.00022698342218063772, -0.019669687375426292, -0.0029077073559165, -0.0007758028223179281, -0.03894174098968506, 0.0003945286734960973, 0.02812606282532215, -0.021353010088205338, -0.028921332210302353, -0.02662830241024494, 0.009132354520261288, -0.03936588391661644, 0.0003576645685825497, 0.0008565724710933864, -0.0153752276673913, -0.014977592043578625, -0.011219939216971397, -0.014407648704946041, 0.0031959929037839174, 0.010756031610071659, -0.023738820105791092, -0.0013660425320267677, 0.03151921555399895, -0.01605120673775673, -0.013466577976942062, -0.006799561902880669, -0.02701268345117569, -0.0033749286085367203, 0.0054741110652685165, 0.025488415732979774, 0.014116048812866211, 0.006932106800377369, -0.003452798817306757, 0.011849528178572655, -0.002145573263987899, -0.008522647432982922, 0.04633775353431702, -0.00831720232963562, 0.02417621947824955, -0.025859542191028595, -0.00061177829047665, 0.0015681737568229437, -0.010338515043258667, 0.014884810894727707, -0.04037322476506233, -0.022771241143345833, -0.02717173844575882, 0.007667731959372759, -0.002909364178776741, 0.028364643454551697, -0.0022648638114333153, 0.004582745488733053, 0.0059976642951369286, 0.00643174909055233, 0.014606465585529804, -0.015481263399124146, 0.017310384660959244, 0.0060175457037985325, 0.004599313717335463, 0.005192453041672707, 0.007714122533798218, -0.009364308789372444, -0.027304282411932945, -0.0036251074634492397, 0.0024056928232312202, -0.02658854052424431, -0.03512444347143173, -0.05293849855661392, 0.021618099883198738, 0.006332340184599161, -0.012214027345180511, 0.0076080868020653725, -0.022917041555047035, 0.014977592043578625, -0.014010013081133366, 0.006932106800377369, -0.004499904811382294, -0.008131640031933784, 0.007767140865325928, -0.0024189474061131477, 0.0008491168264299631, -0.019245542585849762, -0.03085649013519287, 0.012929771095514297, -0.005182512104511261, 0.013188233599066734, -0.002844748320057988, -0.003853747621178627, 0.010391533374786377, 0.036184802651405334, 0.0013950368156656623, -0.005139434710144997, 0.01876838132739067, -0.038703158497810364, 0.02043844945728779, -0.003876943141222, -0.004367359913885593, 0.0035985985305160284, -0.011915801092982292, 0.00047716221888549626, 0.020769812166690826, -0.03401106223464012, -0.016554879024624825, -0.008993182331323624, 0.01882139965891838, 0.003823925042524934, 0.009516735561192036, 0.0002085513697238639, -0.014460666105151176, 0.016448842361569405, 0.005440974608063698, -0.006295890547335148, 0.009854725562036037, -0.010133069939911366, 0.007899685762822628, 0.02658854052424431, -0.024348527193069458, 0.018370745703577995, -0.003509130561724305, -0.006266067735850811, -0.02054448425769806, 8.044605237955693e-06, -0.01251225359737873, 0.01582588069140911, -0.024295510724186897, -0.000873140583280474, -0.0016394167905673385, 0.020875846967101097, 0.0007062166696414351, 0.01818518340587616, -0.0062362453900277615, 0.013625632040202618, -0.0099209975451231, -0.012452608905732632, 0.016011442989110947, 0.003053506836295128, -0.01829121820628643, -0.016276534646749496, 0.005321684293448925, 0.021048156544566154, 0.003088299883529544, 0.02224106155335903, 0.01398350391536951, 0.017257366329431534, -0.025594452396035194, 0.003973038401454687, 0.02316887676715851, 0.007475541438907385, -0.028046535328030586, -0.018092401325702667, 0.007912940345704556, 0.039922572672367096, 0.0362643301486969, -0.009834843687713146, -0.0049770670011639595, -0.02347373031079769, -0.0011929055908694863, -0.002032910007983446, 0.006107013672590256, 0.01120668463408947, -0.007859922014176846, 0.04167216643691063, 0.04172518476843834, 0.03379899263381958, 0.004533041268587112, 0.017999619245529175, 0.011432011611759663, 0.011080767028033733, 0.016117479652166367, 0.007932822220027447, -0.020822828635573387, -0.00415860116481781, -0.008138267323374748, -0.02775493636727333, -0.012883380055427551, 0.019815487787127495, 0.012498999014496803, -0.006196481641381979, 0.03804043307900429, 0.009596262127161026, 0.02738380990922451, -0.001974921440705657, -0.006080504972487688, -0.00756832305341959, -0.012386335991322994, -0.015507772564888, 0.04103595018386841, 0.0017893583280965686, 0.02091561071574688, 0.011511539109051228, -0.009642653167247772, 0.005371388513594866, -0.007482168730348349, 0.027251264080405235, 0.006425121799111366, -0.018224945291876793, -0.017522457987070084, 0.0078864311799407, -0.003923333715647459, -0.015308954752981663, -0.01571984402835369, -0.021697627380490303, 0.02273147739470005, -0.01495108287781477, 0.04124802350997925, -0.01834423653781414, 0.017628492787480354, 0.007157433312386274, -0.007323114667087793, -0.00504333944991231, 0.013380424119532108, 0.011657338589429855, 0.027463337406516075, -0.0054476018995046616, -0.02657528594136238, -0.004718604031950235, 0.0013469891855493188, -0.02578001469373703, 0.0068326978944242, -0.015229428187012672, -0.03000820241868496, -0.0073893871158361435, 0.014500429853796959, 0.015865644440054893, -0.023327931761741638, -0.006146777421236038, 0.010007152333855629, -0.0078864311799407, 0.018516546115279198, 0.029345476999878883, -0.03920682892203331, -0.0049339900724589825, 0.004400495905429125, -0.018012873828411102, 0.005129493772983551, -0.03048536367714405, 0.014447411522269249, -0.0056861829943954945, -0.005000262521207333, -0.0014132617507129908, 0.027410319074988365, -0.007979212328791618, 0.00030775307095609605, 0.00544428825378418, 0.004629136528819799, 0.013241251930594444, -0.012605035677552223, 0.006792934611439705, -0.016064461320638657, -0.02343396656215191, 0.000468049751361832, -0.020411940291523933, -0.023195385932922363, 0.003512444207444787, -0.04130104184150696]}, {"created_time": 1695688468.0702922, "accessed_time": 1695688468.0702922, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695688469.6403575, "accessed_time": 1695688469.6403575, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695691991.0911222, "accessed_time": 1695691991.0911222, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.008202211000025272, -0.0058207097463309765, 0.012632602825760841, 0.008661216124892235, 0.01672372967004776, 0.023801714181900024, -0.0002633871044963598, -0.003738558618351817, -0.02039576694369316, -0.026316259056329727, -0.005428227595984936, -0.023069966584444046, 0.009146829135715961, -0.009891880676150322, -0.019171753898262978, -0.002674200339242816, 0.027859579771757126, -0.0023382622748613358, 0.04331938549876213, -0.03381998464465141, -0.01503406185656786, 0.025690948590636253, 0.00261433026753366, 0.010517191141843796, -0.026914961636066437, 0.008182254619896412, 0.011648071929812431, -0.012898692861199379, -0.008528171107172966, -0.004669872112572193, 0.0023299469612538815, -0.004493587650358677, 0.010151317343115807, -0.0049359616823494434, -0.03062691166996956, -0.039115168154239655, 0.013397610746324062, -0.010284362360835075, 0.007191070821136236, -0.0046166544780135155, 0.01629798673093319, -0.011401938274502754, 0.002170293126255274, -0.02305666171014309, -0.014315620064735413, 0.0020023242104798555, -0.01937132142484188, -7.977490167832002e-05, -0.01024444866925478, 0.006472629029303789, 0.014422055333852768, -0.008248777128756046, -0.021952390670776367, -0.006382823921740055, -0.025158770382404327, -0.007071330677717924, 0.002685841638594866, 0.009186742827296257, 0.008461648598313332, 0.0020522158592939377, -0.0004960076184943318, 0.009060350246727467, -2.3932470867293887e-05, -0.0008897370425984263, -0.005285204388201237, 0.003244629828259349, -0.002291696611791849, -0.006718762218952179, 0.003788450499996543, 0.004526848904788494, 0.03195735812187195, 0.019610801711678505, -0.005414923187345266, -0.016484249383211136, 0.014422055333852768, 0.006010298617184162, -0.01847992092370987, -0.007463812828063965, -0.008415083400905132, 0.0014318946050480008, 0.0033710224088281393, -0.028631240129470825, -0.0032546082511544228, -0.0005163801251910627, 0.016537467017769814, 0.022431351244449615, -0.017122864723205566, 0.019171753898262978, 0.013184739276766777, -0.03001490607857704, 0.02523859776556492, 0.026209823787212372, 0.007823034189641476, 0.007803076878190041, -0.009885228238999844, 0.0019940088968724012, 0.010151317343115807, 0.0030384105630218983, 0.01088306400924921, -0.02130047045648098, -0.0161250289529562, 0.02321631647646427, -0.003678688546642661, -0.012925301678478718, -0.034405384212732315, 0.0066522397100925446, 0.019278191030025482, -0.01749539002776146, 0.02120734006166458, -0.012373166158795357, -0.027380619198083878, 0.02070176973938942, -0.010217839851975441, -0.03523026034235954, -0.01821383275091648, -0.018466617912054062, 0.03062691166996956, 0.0007749859360046685, -0.0247197225689888, -0.013251261785626411, 0.020382462069392204, 0.009971707127988338, 0.018333572894334793, -0.004417086951434612, 0.019224973395466805, -0.007071330677717924, 0.006412758957594633, 0.013903181068599224, -0.02599695324897766, -0.0012913660611957312, 0.010417407378554344, 0.011987335979938507, 0.023801714181900024, 0.0032512820325791836, -0.021539952605962753, 0.021619778126478195, -0.026702089235186577, 0.007051373831927776, -0.0012614309089258313, -0.022138653323054314, 0.005029093008488417, 0.022005608305335045, -0.023189706727862358, -0.003981365356594324, 0.019304798915982246, 0.03467147424817085, 0.011807725764811039, 0.012858779169619083, -0.01156824454665184, 0.0014293999411165714, 0.01774817518889904, -0.0036287966649979353, 0.016404422000050545, 0.003129878779873252, 0.028764283284544945, 0.0016963210655376315, 0.001688837306573987, 0.01383665855973959, -0.03908855840563774, 0.011681333184242249, 0.002862126100808382, -0.0008494078647345304, 0.023615451529622078, -0.011860943399369717, -0.016923297196626663, 0.026329563930630684, 0.012506210245192051, 0.021233947947621346, -0.015978679060935974, 0.0011649734806269407, 0.009273221716284752, 0.02164638787508011, -0.040312573313713074, 0.0031731182243674994, 0.005338422488421202, 0.0062231700867414474, -0.032862063497304916, -0.002707461593672633, 0.01398300752043724, -0.025584513321518898, -0.03645427152514458, -0.002561112167313695, 0.0049359616823494434, 0.015539632178843021, -0.008182254619896412, -0.01608511619269848, 0.012852126732468605, 0.007064678706228733, 0.008055862039327621, 0.012978519313037395, 0.007104591932147741, 0.0434524305164814, -0.010364189743995667, -0.011342068202793598, -0.6599021553993225, -0.039407867938280106, 0.020302634686231613, 0.011707942001521587, 0.028578020632267, 0.0011217339197173715, 0.007051373831927776, 0.005551293957978487, -0.002644265303388238, -0.003808407112956047, -0.014741363003849983, 0.0105238426476717, -0.004007974173873663, 0.012373166158795357, -0.0027423857245594263, -0.014422055333852768, -0.002025607042014599, -0.027806362137198448, 0.011834334582090378, 0.009080306626856327, -0.00862130243331194, 0.02775314450263977, -0.01844000816345215, -0.010131360962986946, -0.006589043419808149, -0.013118216767907143, -0.004932635463774204, -0.045660972595214844, -0.009958402253687382, 0.04536827281117439, -0.04233485460281372, 0.027832970023155212, -0.013783440925180912, -0.017122864723205566, 0.055027324706315994, -0.00876765139400959, -0.0036953191738575697, 0.009679008275270462, -0.0010809889063239098, 0.018107395619153976, -0.033766768872737885, 0.005438205786049366, 0.030813174322247505, 0.004280716180801392, 0.0021719562355428934, -0.0007932795560918748, 0.028977155685424805, -0.005381661932915449, -0.0035290131345391273, -0.004759677220135927, 0.027699925005435944, 0.004812895320355892, -0.0021536624990403652, 0.006918329279869795, 0.026662176474928856, -0.005454836413264275, 0.028764283284544945, -0.028365150094032288, -0.00577414408326149, -0.0046765245497226715, -0.005185420624911785, 0.001960747642442584, -0.024826157838106155, 0.0011125870514661074, -0.02103438228368759, 0.00767668429762125, -0.03318137302994728, -0.01126889418810606, -0.006259757559746504, -0.00511224614456296, 0.013590525835752487, 0.015100584365427494, -0.012260077521204948, 0.007896208204329014, -0.004027931019663811, 0.0312921367585659, 0.009466136805713177, 0.0001451019779779017, -0.0004743878380395472, 0.011075979098677635, 0.017096254974603653, -0.008262082003057003, -0.020475594326853752, 0.01131545938551426, 0.02595703862607479, -0.02215195819735527, -0.015406587161123753, 0.014634926803410053, 0.01826705038547516, -0.025039030238986015, 0.026023561134934425, 0.006213191896677017, -0.01144185196608305, 0.002639275975525379, 0.001361214555799961, 0.014488577842712402, -0.018799228593707085, 0.012479601427912712, 0.027992624789476395, -0.028365150094032288, 0.010809889063239098, -0.012186902575194836, 0.021154122427105904, 0.0058506447821855545, 0.003745210822671652, -0.000816978164948523, -0.03203718736767769, 0.02574416808784008, 0.013770136050879955, -0.01591215655207634, 0.026569044217467308, 0.03467147424817085, -0.009592529386281967, -0.001104271737858653, -0.01651085913181305, -0.025331728160381317, 0.04409104585647583, 0.03632122650742531, 0.025158770382404327, -0.005148833617568016, 0.01954427920281887, -0.004776307847350836, 0.02599695324897766, 0.004490261897444725, 0.015193715691566467, 0.007576900999993086, 0.0007866273517720401, -0.02425406500697136, -0.011348720639944077, -0.0024829483591020107, -0.011515026912093163, -0.004613328259438276, 0.018892360851168633, -0.026289651170372963, 0.009266570210456848, -0.009698965586721897, -0.007862946949899197, -0.019211668521165848, 0.018373485654592514, -0.009632443077862263, -0.03366033360362053, -0.010962890461087227, 0.012073814868927002, 0.024227457121014595, -0.0036620579194277525, -0.016484249383211136, 0.007550292182713747, 0.0029336377047002316, -0.04206876456737518, 0.0007650075713172555, 0.007350724656134844, -0.005128876771777868, -0.011455156840384007, 0.02300344407558441, -0.006898372434079647, 0.006482607685029507, -0.019304798915982246, -0.009878575801849365, -0.014568405225872993, 0.0041310410015285015, 0.014940930530428886, 0.011415243148803711, -0.02950933575630188, 0.006472629029303789, 0.0057974266819655895, 0.001564939389936626, -0.0006182425422593951, 0.020369157195091248, 0.0031032697297632694, -0.024573372676968575, -0.01503406185656786, -0.014874408021569252, -0.0162181593477726, -0.008534823544323444, 0.011155805550515652, -0.012838822789490223, 0.0040478878654539585, -0.005724252201616764, 0.0069715469144284725, -0.0008622965542599559, 0.003931473474949598, 0.006432715803384781, -0.007317463401705027, -0.014062834903597832, 0.016883384436368942, -0.0022850444074720144, 0.0047663296572864056, 0.03839672729372978, 0.011175762861967087, 0.009452832862734795, 0.005817383527755737, 0.007603509817272425, -0.008521518670022488, 0.014342228882014751, -0.01208046730607748, -0.014794580638408661, 0.020289331674575806, 0.020715074613690376, -0.005920493043959141, 0.0129386056214571, -0.004493587650358677, -0.0021137490402907133, 0.028152277693152428, -0.014076138846576214, -0.00241642608307302, -0.012226816266775131, 0.01757521741092205, -0.018839143216609955, 0.022378133609890938, 0.00442706560716033, 0.005531337112188339, -0.014328924007713795, -0.014595014043152332, -0.008681172505021095, 0.02215195819735527, 0.004057866055518389, -0.0051920730620622635, 0.01408944372087717, -0.02317640371620655, 0.007277550175786018, -0.0014202531892806292, -0.003108259057626128, -0.01210707612335682, -0.028258714824914932, -0.0035389915574342012, -0.0004084890824742615, -0.004486935678869486, 0.01408944372087717, 0.0045867194421589375, 0.007031417451798916, -0.02010306902229786, -0.011641419492661953, 0.031717877835035324, 0.007264245767146349, 0.0018509856890887022, 0.0012763984268531203, 0.024187542498111725, -0.027234269306063652, 0.034405384212732315, 0.03217023238539696, 0.006356215104460716, -0.010277709923684597, 0.01045732107013464, -0.015326759777963161, 0.026249738410115242, 0.020049849525094032, 0.03884907811880112, -0.019477756693959236, -0.01098950020968914, 0.009319787845015526, -0.015685981139540672, -0.00820886343717575, -0.002213532803580165, -0.002200228162109852, 0.006678848527371883, -0.024107716977596283, -0.014328924007713795, 0.013384305872023106, 0.01569928601384163, 0.03105265460908413, 0.018360180780291557, 0.024027889594435692, 0.014022921212017536, 0.004027931019663811, -0.001554960967041552, 0.007530335336923599, 0.020422374829649925, -0.024134324863553047, -0.014501882717013359, -0.01492762565612793, 0.012433036230504513, -0.006392802111804485, 0.0002739891060627997, -0.011774464510381222, -0.016138333827257156, 0.016524164006114006, -0.003040073439478874, -0.013863267377018929, -0.020715074613690376, 0.007011460606008768, -0.008760999888181686, -0.027234269306063652, 0.0031764444429427385, 0.0064859334379434586, 0.004167628008872271, -0.014209183864295483, 0.007091287523508072, 2.8272017516428605e-05, -0.0077964249067008495, 0.013124869205057621, 0.01565937139093876, -0.002155325608327985, -0.010916325263679028, 0.01962410658597946, 0.0021021077409386635, -0.0044503482058644295, 0.00456676259636879, -0.024493547156453133, 0.011461809277534485, -0.018825838342308998, 0.004530175123363733, -0.015765808522701263, -0.005318465642631054, -0.003931473474949598, -0.0005641930620186031, 0.006924981251358986, -0.019012100994586945, -0.006243126932531595, -0.017122864723205566, -0.004490261897444725, -0.0013254587538540363, -0.006831849925220013, -0.020289331674575806, -0.005631120875477791, 0.003050051862373948, 0.008973871357738972, -0.0013795081758871675, -0.023083271458745003, 0.01454179547727108, 0.0001920834183692932, -0.028631240129470825, -0.007756511215120554, -0.034751299768686295, 0.007211027666926384, 0.1261264681816101, -0.009346396662294865, 0.012093771249055862, 0.02390814945101738, 0.014209183864295483, -0.018706098198890686, -0.00782968569546938, -0.025331728160381317, 0.005664382129907608, 0.013304479420185089, -0.0035290131345391273, 0.006692152936011553, 0.019012100994586945, 0.0005804079119116068, -0.008115732111036777, -0.019304798915982246, -0.015499718487262726, -0.008089123293757439, 0.0024995789863169193, -0.015087279491126537, 0.012699125334620476, -0.005667708348482847, -0.0071378531865775585, 0.026888351887464523, -0.000678528449498117, 0.020422374829649925, 0.012712430208921432, 0.021539952605962753, 0.027354009449481964, -0.019983327016234398, 0.01306499820202589, 0.025504685938358307, -0.0021137490402907133, -0.00882752239704132, -0.028631240129470825, 0.0030433996580541134, 0.02518538013100624, 0.013510698452591896, 0.0007749859360046685, -0.01259269006550312, 0.010251101106405258, 0.023043358698487282, 0.02143351547420025, -0.009226656518876553, 0.02126055769622326, -0.009459484368562698, 0.007763163652271032, 0.022351525723934174, -0.016111724078655243, 0.0025078942999243736, 0.022976836189627647, 0.015725893899798393, 0.006399454548954964, -0.02485276758670807, -0.0037817982956767082, 0.043000075966119766, 0.0027057984843850136, -0.01753530278801918, -0.005321791861206293, 0.017428867518901825, 0.02334936149418354, -0.02809906005859375, -0.015672676265239716, -0.005145507398992777, -0.011747854761779308, -0.012931954115629196, -0.013929789885878563, -0.010177926160395145, -0.0064194113947451115, 0.0026076778303831816, -0.01847992092370987, -0.005338422488421202, -0.02775314450263977, 0.006159973796457052, 0.028152277693152428, 0.011980683542788029, 0.02788618765771389, -0.011215675622224808, -0.0027207660023123026, 0.003178107552230358, -0.01633790135383606, -0.009778792038559914, 0.0013745189644396305, -0.008508214727044106, -0.03028099425137043, 0.0037319064140319824, 0.012911996804177761, 0.009486094117164612, -0.00550805451348424, 0.0027274182066321373, 0.01569928601384163, -0.005681012757122517, 0.02980203367769718, 0.0017362345242872834, 0.005401618778705597, 0.007803076878190041, -0.010976195335388184, 0.029695598408579826, 0.0028055820148438215, 0.01946445368230343, 0.006093451287597418, -0.024599982425570488, -0.014235792681574821, -0.012978519313037395, 0.015060670673847198, -0.003941452130675316, 0.021140817552804947, 0.01962410658597946, -0.0005908020539209247, 0.01287208404392004, 0.01869279332458973, -0.01877262070775032, 0.010823193937540054, 0.014182575047016144, -0.0027274182066321373, 0.016737034544348717, -0.00027752312598749995, 0.022976836189627647, 0.0020222808234393597, -0.022990141063928604, 0.018360180780291557, -0.027646707370877266, 0.03480451926589012, -0.0013695298694074154, -0.007603509817272425, 0.012625950388610363, -0.01655077189207077, -0.017588522285223007, -0.009625790640711784, -0.020049849525094032, -0.01963741146028042, -0.0039647347293794155, -0.015326759777963161, -0.011914161033928394, -0.019052013754844666, -0.018040873110294342, -0.0038749296218156815, 0.012526167556643486, -0.007497074082493782, -0.02425406500697136, -0.036933235824108124, 0.00047854549484327435, 0.01744217239320278, -0.02698148414492607, -0.02052881196141243, -0.029695598408579826, -0.006705457344651222, -0.009293179027736187, 0.025584513321518898, 0.030600301921367645, -0.012472948990762234, 0.009306482970714569, -0.006542477756738663, 0.0077365548349916935, -2.2308389816316776e-05, -0.023282838985323906, -0.009392962791025639, 0.01919836364686489, 0.014688145369291306, 0.012865431606769562, 0.0019441170152276754, 0.010291014797985554, 0.014076138846576214, 0.004816221538931131, 0.010510538704693317, -0.0036188182421028614, 0.007290854584425688, -0.00955926813185215, -0.026369478553533554, 0.0006161637138575315, 0.004294020589441061, 0.021140817552804947, -0.011874247342348099, -0.012492906302213669, -0.03374015912413597, 0.015606153756380081, -0.006742044817656279, 0.008814217522740364, -0.012965215370059013, -0.006020276807248592, -0.013770136050879955, 0.0024779592640697956, -0.00356560037471354, 0.00032949374872259796, 0.02497250773012638, 0.0007238468388095498, 0.00996505469083786, -0.008707781322300434, 0.03169126808643341, -0.028125669807195663, 9.952374239219353e-05, -0.011787768453359604, 0.009080306626856327, -0.01591215655207634, 0.002273402875289321, -0.0012439688434824347, 0.009313135407865047, -0.015832331031560898, -0.008860782720148563, 0.0016655544750392437, 0.019185058772563934, -0.0064260633662343025, 0.02386823669075966, -0.006293018814176321, 0.004214193671941757, 0.019344713538885117, 0.012778952717781067, -0.016909992322325706, 0.007689989171922207, -0.032063793390989304, -0.018666183575987816, -0.0017096255905926228, -0.0029685618355870247, -0.011594853363931179, -0.0227905735373497, -0.01172124594449997, -0.017761480063199997, 0.014688145369291306, 0.008115732111036777, 0.004061192274093628, -0.0002997665433213115, 0.0005932966014370322, 0.027859579771757126, 0.02027602680027485, 0.00441376119852066, -0.000180753821041435, -0.012213512323796749, -0.017043037340044975, 0.03964734822511673, -0.011002804152667522, -0.01490101683884859, 0.004496913868933916, 0.026409391313791275, -0.013218000531196594, -0.03546974062919617, 0.019743846729397774, 0.03991343826055527, -0.01979706436395645, -0.02535833790898323, -0.015845634043216705, 0.016790252178907394, 0.02240474335849285, -0.01629798673093319, -0.0024580026511102915, 0.0005820709629915655, 0.020675159990787506, -0.006369519513100386, -0.015938766300678253, -0.01507397461682558, 0.030653519555926323, -0.025970343500375748, 0.028072450309991837, -0.001604021294042468, 0.027699925005435944, -0.021060990169644356, 0.0028787567280232906, -0.01569928601384163, -0.022644223645329475, -0.01736234501004219, 0.013756831176578999, 0.002531177131459117, 0.02356223203241825, -0.012692472897469997, 0.016391118988394737, 0.0024330567102879286, 5.1970622735098004e-05, 0.0018160614417865872, -0.012699125334620476, -0.004150997381657362, 0.02433389239013195, -0.01859966106712818, -1.3421413314063102e-05, -0.022351525723934174, 0.010976195335388184, 0.012645907700061798, -0.009499398060142994, -0.012812213972210884, 0.0008714433643035591, -0.0021569887176156044, -0.020036546513438225, 0.022990141063928604, -0.0011167447082698345, 0.010763323865830898, 0.006439367774873972, -0.015526327304542065, -0.010530495084822178, -0.009565920569002628, -0.0018476595869287848, -5.219799277256243e-06, -0.027087919414043427, -0.016737034544348717, -0.027859579771757126, -0.01929149404168129, 0.019384626299142838, -0.0011300492333248258, -0.01962410658597946, 0.017561912536621094, 0.0118276821449399, -0.02690165676176548, 0.007776468060910702, -0.009239960461854935, 0.0015657709445804358, -0.018333572894334793, -0.0021619778126478195, -0.006778632290661335, -0.02557120844721794, 0.018160613253712654, -0.017694957554340363, -0.032143622636795044, -0.018825838342308998, 0.024786245077848434, 0.0081090796738863, -0.01291864924132824, -0.017029734328389168, 0.00713120074942708, -0.017694957554340363, 0.009392962791025639, -0.029323073104023933, -0.026076778769493103, 0.027992624789476395, -0.0019341387087479234, 0.005531337112188339, 0.01821383275091648, -0.03648088127374649, 0.015486413612961769, 0.020728379487991333, 0.003948104102164507, 0.021619778126478195, -0.022125348448753357, -0.017801392823457718, -0.02062194235622883, -0.010517191141843796, -0.00818890705704689, -0.02062194235622883, 0.011282198131084442, 0.010304318740963936, -0.017561912536621094, 0.012027249671518803, 0.004177606664597988, -0.0015350042376667261, 0.012812213972210884, 0.02489268034696579, 0.0027124506887048483, 0.01714947447180748, 0.0014676504069939256, 0.0015807384625077248, -0.02052881196141243, -0.00699150376021862, -0.028391757979989052, -0.007869599387049675, 0.007523682899773121, 0.022657528519630432, -0.01131545938551426, -0.034538429230451584, -0.030733346939086914, -0.016776949167251587, -0.03262258321046829, -0.01774817518889904, -0.011461809277534485, 0.004097779747098684, -0.007257593329995871, -0.025544600561261177, 0.00953931175172329, 0.01724260486662388, -0.018852446228265762, 0.020076459273695946, -0.014940930530428886, -0.021140817552804947, 0.0039946697652339935, -0.03057369403541088, 0.022165263071656227, -0.015300150960683823, -0.026755306869745255, -0.022258393466472626, -0.018666183575987816, -0.021313775330781937, -0.0020522158592939377, 0.0019208341836929321, -0.010849802754819393, 0.005088963080197573, -0.01838679052889347, 0.007224332075566053, 0.00913352519273758, 0.019903501495718956, 0.016191551461815834, -0.011002804152667522, -0.013424219563603401, 0.006625630892813206, 0.004360543098300695, -0.007803076878190041, -0.010111404582858086, 0.016324596479535103, 0.005720925983041525, 0.008800912648439407, -0.007490421645343304, -0.032223448157310486, -0.005834014154970646, -0.00013356449198909104, 0.036374446004629135, -0.013916485011577606, -0.024320587515830994, 0.020981164649128914, 0.006249778904020786, -0.014129357412457466, -0.013051694259047508, 0.012200207449495792, -0.0026974831707775593, 0.006276388186961412, 0.025810690596699715, -0.012852126732468605, 0.01340426318347454, -0.025970343500375748, -0.0051089199259877205, -0.030041513964533806, -0.013677004724740982, -0.005414923187345266, -0.013716918416321278, -0.013996312394738197, 0.0086412588134408, 0.010404102504253387, -0.012033901177346706, 0.0020372483413666487, -0.020954554900527, -0.011022761464118958, -0.012033901177346706, -0.015552936121821404, 0.00207882490940392, -0.018852446228265762, -0.02189917303621769, 0.018253745511174202, -0.011095935478806496, -0.012506210245192051, 0.022524483501911163, 0.01259269006550312, -0.023030053824186325, 0.019131841138005257, 0.2499113380908966, -0.018160613253712654, 0.021792737767100334, 0.02539825066924095, 0.00022576037736143917, 0.019012100994586945, 0.02895054593682289, 0.008860782720148563, 0.008674520067870617, 0.018200527876615524, -0.03254275768995285, 0.0014817863702774048, 0.018280355259776115, -0.004097779747098684, 0.005661055911332369, -0.022058825939893723, -0.01608511619269848, -0.02342918887734413, -0.009619138203561306, -0.006898372434079647, 0.012067162431776524, -0.014954234473407269, -0.0035090562887489796, 0.004649915266782045, 0.028365150094032288, 0.01997002400457859, -0.039886828511953354, 0.002887072041630745, 0.008867435157299042, -0.009060350246727467, -0.00971226952970028, 0.0031365309841930866, -0.001372024416923523, -0.01732243224978447, 0.027087919414043427, -0.014501882717013359, 0.022338220849633217, 0.005105593707412481, 0.025717558339238167, 0.0038250377401709557, 0.016138333827257156, 0.0029136808589100838, 0.011608158238232136, -0.00872108619660139, -0.004440370015799999, 0.004809569101780653, -0.022524483501911163, -0.013770136050879955, 0.0020804880186915398, 0.02048889733850956, -0.015220324508845806, -0.011448504403233528, 0.026954874396324158, 0.00844834465533495, 0.007876251824200153, 0.0002084021980408579, 0.01813400536775589, -0.010570408776402473, -0.02284379117190838, -0.010557103902101517, -0.00870112981647253, 0.042148590087890625, -0.0026226455811411142, 0.010836497880518436, -0.03477790951728821, 0.018466617912054062, -0.008049209602177143, 0.0007970214355736971, 0.017295822501182556, -0.004290694370865822, 0.008607998490333557, 0.00862130243331194, -0.0057608396746218204, 0.004317303653806448, -0.036374446004629135, -0.02518538013100624, 0.025478078052401543, 0.0029519314412027597, 0.04507557675242424, 0.002926985500380397, -0.010949586518108845, 0.026249738410115242, -0.00727089773863554, 0.0038150593172758818, -0.0049658967182040215, -0.03738558664917946, 0.0026825156528502703, 0.021712910383939743, 0.019238276407122612, -0.02788618765771389, -0.0034259033855050802, -0.011481765657663345, -0.0021021077409386635, -0.02062194235622883, -0.006818545516580343, 0.010623626410961151, -0.009705618023872375, 0.024067802354693413, -0.0227905735373497, 0.01045732107013464, -0.006475955247879028, -0.027194354683160782, 0.028764283284544945, 0.02680852636694908, -0.03557617589831352, 0.02630295604467392, 0.013903181068599224, 0.01577911153435707, -0.005607837811112404, -0.026276346296072006, 0.014568405225872993, -0.005301835015416145, 0.02801923267543316, 0.017681652680039406, 0.010217839851975441, 0.008920653723180294, -0.0075635965913534164, -0.02732739970088005, 0.027274182066321373, 0.001158321276307106, -0.0001540409284643829, -0.024866072461009026, -0.03267580270767212, 0.014621622860431671, -0.010816541500389576, -0.021699605509638786, -0.039753783494234085, 0.0024230782873928547, -0.015765808522701263, -0.021406907588243484, 0.03751863166689873, 0.011701289564371109, 0.01212703250348568, 0.014461969025433064, -0.0038050811272114515, 0.0063362582586705685, 0.018360180780291557, -0.00356560037471354, 0.013956398703157902, 0.006838502362370491, 0.015885548666119576, -0.0081090796738863, -0.012246773578226566, -0.02754027210175991, 0.01373022235929966, -0.023761799558997154, 0.010942934080958366, 0.0012065499322488904, 0.007849643006920815, -0.015592849813401699, -0.016138333827257156, 0.003327782964333892, -0.019358016550540924, -0.007237636484205723, 0.031371962279081345, -0.024240761995315552, -0.037438806146383286, 0.003685340750962496, 0.0058207097463309765, 0.01633790135383606, -0.02334936149418354, 0.0020039870869368315, 0.04079153388738632, -0.020595334470272064, 0.011029412969946861, -0.009672356769442558, -0.17093594372272491, 0.016351204365491867, 0.03246292844414711, -0.01774817518889904, 0.01625807397067547, 0.020675159990787506, -0.010191231034696102, -0.008953914977610111, -0.01332443580031395, 0.01736234501004219, 0.027859579771757126, 0.029988296329975128, -0.017681652680039406, -0.026542436331510544, -0.001554129528813064, 0.036800190806388855, -0.0002359466307098046, -0.004506892524659634, 0.038636207580566406, 0.0322500579059124, 0.012526167556643486, -0.01877262070775032, 0.016005288809537888, -0.008760999888181686, 0.02155325561761856, 0.022657528519630432, -0.001609010505490005, 0.002664221916347742, -0.007789772469550371, -0.0027174397837370634, -0.00699150376021862, 0.007483769673854113, 0.01167468074709177, -0.011581549420952797, 0.024879375472664833, 0.010590365156531334, -0.005328443832695484, -0.017907829955220222, -0.005977037362754345, 0.023708581924438477, 0.0021470102947205305, 0.001144185196608305, -0.001124228467233479, 0.006924981251358986, -0.053111482411623, 9.120844333665445e-05, -0.00018948488286696374, 0.0019790413789451122, -0.03868942707777023, -0.005401618778705597, 0.010676844976842403, -0.0033893161453306675, -0.005611164029687643, -0.011089283041656017, 0.015379978343844414, 0.020688464865088463, -0.013703613542020321, 0.04089796915650368, 0.0013587198918685317, 0.006402780767530203, 0.00022181060921866447, -0.021021077409386635, -0.006096777506172657, 0.009067002683877945, 0.017043037340044975, -0.00846830103546381, -0.02296353131532669, -0.007969383150339127, -0.0070779831148684025, 0.007324115838855505, -0.0006648082053288817, -0.03126552700996399, 0.027593489736318588, 0.0014767971588298678, 0.009745530784130096, -0.006126712542027235, -0.00483285216614604, 0.0029602465219795704, -0.0018642900977283716, -0.01770826242864132, -0.023043358698487282, 0.01761513017117977, -0.037438806146383286, -0.014781276695430279, -0.01545980479568243, 0.023336056619882584, 0.005534663330763578, 0.005348400678485632, -0.009832010604441166, -0.021180730313062668, 0.03389981389045715, -0.017628435045480728, -0.017295822501182556, -0.025850603356957436, -0.0018127353396266699, 0.01253281906247139, 0.013304479420185089, 0.011967378668487072, 0.004094453528523445, -0.016431031748652458, 0.019131841138005257, -0.0164177268743515, -0.014954234473407269, 0.008760999888181686, 0.01822713576257229, 0.007729902397841215, 0.01058371365070343, 0.004866113420575857, 0.013650395907461643, -0.007902860641479492, -0.006356215104460716, 0.023668669164180756, 0.007410594727844, 0.01507397461682558, -0.013018433004617691, 0.035389915108680725, 0.022591006010770798, -0.01680355705320835, 0.03006812371313572, -0.04457000643014908, 0.023509014397859573, 0.019770456477999687, 0.0024330567102879286, -0.008049209602177143, -0.0011516689555719495, 0.013543959707021713, -0.09962394088506699, -0.0011017771903425455, 0.0053051612339913845, 0.01490101683884859, -0.0005205377237871289, 0.019131841138005257, 0.019570888951420784, 0.007616814225912094, 0.004516870714724064, 0.013510698452591896, -0.030174558982253075, -0.007916165515780449, 0.016031896695494652, -0.0009296505013480783, 0.006628956645727158, -0.014887711964547634, -0.0037618414498865604, -0.005710947792977095, -0.015379978343844414, 0.006871763616800308, -0.0018459964776411653, -0.01792113296687603, -0.004353890661150217, -0.0005978700355626643, -0.0052519431337714195, -0.00968566071242094, -0.03036082163453102, 0.03318137302994728, 0.010271058417856693, 0.008694477379322052, 0.005534663330763578, -0.022976836189627647, 0.00767668429762125, -0.03536330536007881, -0.0021869237534701824, 0.01019788347184658, -0.014435360208153725, -0.0032795541919767857, -0.006176604423671961, -0.02168630063533783, -0.006372845731675625, 0.002278391970321536, 0.010138013400137424, -0.02027602680027485, -0.012818865478038788, -0.00658571720123291, -0.020049849525094032, 0.003442534012719989, -0.0037319064140319824, -0.029269853606820107, -0.040392398834228516, 0.00657573901116848, 0.013138173148036003, -0.0032163579016923904, 0.031584832817316055, -0.019650716334581375, 0.00606351625174284, 0.024653200060129166, -0.014275706373155117, -0.003302837023511529, -0.005770817864686251, -0.022205175831913948, 0.0075103784911334515, -0.000440710864495486, 0.016909992322325706, 0.001332110958173871, -0.0028704414144158363, -0.0015532979741692543, 0.003545643761754036, -0.002373186405748129, -0.0039015384390950203, 0.03113248199224472, -0.011621462181210518, 0.022697441279888153, -0.0024197520688176155, -0.022378133609890938, -0.01792113296687603, -0.013371001929044724, -0.010849802754819393, -0.024879375472664833, -0.006618978455662727, -0.012725734151899815, 0.013969703577458858, -0.001100114081054926, 0.015047365799546242, 0.00699150376021862, -0.009832010604441166, 0.005577902775257826, 0.023030053824186325, 0.007856295444071293, -0.026329563930630684, 0.006722087971866131, 0.008435039781033993, -0.019052013754844666, 0.0005808236892335117, 0.0031614769250154495, 0.004204215481877327, 0.006356215104460716, 0.013091607950627804, 0.011468460783362389, -0.018107395619153976, -0.014794580638408661, -0.057156041264534, 0.031371962279081345, 0.01210042368620634, 0.0003750199975911528, 0.017734870314598083, -0.017269214615225792, 0.019903501495718956, 0.03874264284968376, 0.011668028309941292, 0.014062834903597832, -0.02638278156518936, 0.021460125222802162, -0.006213191896677017, -0.016018593683838844, -0.019171753898262978, -0.04100440442562103, 0.025371642783284187, 0.0012797246454283595, 0.021712910383939743, 0.00885413121432066, -0.0034292296040803194, 0.015552936121821404, 0.024067802354693413, 0.01765504479408264, -0.02130047045648098, 0.0012406427413225174, -0.05577237531542778, 0.0021320427767932415, -0.006635609082877636, -0.021832650527358055, -0.007124548777937889, -0.021366992965340614, -0.008461648598313332, 0.02475963532924652, 0.00844834465533495, -0.010676844976842403, -0.00498252734541893, 0.012832170352339745, -0.026116693392395973, 0.009206699207425117, -0.045102182775735855, -0.016657207161188126, -0.0012980182655155659, 0.005105593707412481, -0.017801392823457718, 0.01745547726750374, -0.013716918416321278, 0.014847799204289913, 0.026156606152653694, 0.013849962502717972, 0.0036121660377830267, 0.004210867453366518, 0.008115732111036777, -0.005840666592121124, -0.009173438884317875, -0.01838679052889347, 0.005750861018896103, -0.026608958840370178, -0.012087119743227959, -0.017854610458016396, 0.008914001286029816, -0.013969703577458858, 0.008514867164194584, 0.009645747020840645, 0.002669211244210601, -0.010769976302981377, -0.007803076878190041, -0.009047046303749084, 0.03656071051955223, -0.035948701202869415, -0.031584832817316055, 0.000373980583390221, -0.0070846350863575935, 0.008867435157299042, 0.0218193456530571, -0.011601505801081657, -0.006944938097149134, -0.01851983554661274, -0.005611164029687643, 0.024626590311527252, 0.01766834780573845, 0.0020389114506542683, -0.012838822789490223, 0.010570408776402473, 0.02599695324897766, -0.0010360863525420427, -0.014581709168851376, -0.014728058129549026, 0.011608158238232136, 0.016071811318397522, -0.011495070531964302, -0.006565760355442762, 0.02330944687128067, 0.024733027443289757, 0.0019091927679255605, 0.01581902615725994, 0.004011300392448902, -0.023934757336974144, 0.013637091033160686, 0.0179610475897789, 0.011747854761779308, 0.008707781322300434, 0.01033092848956585, -0.0077432068064808846, 0.006342910695821047, -0.01813400536775589, -0.024174239486455917, -0.019956719130277634, 0.008807565085589886, 0.012220163829624653, -0.009758835658431053, 0.013903181068599224, 0.0024596655275672674, 0.03916838765144348, 0.011641419492661953, 0.012719081714749336, 0.0019474431173875928, -0.01022449228912592, -0.010264405980706215, 0.024786245077848434, 0.007876251824200153, 0.008022600784897804, 0.017947742715477943, -0.0070846350863575935, 0.009020436555147171, 0.02284379117190838, 0.012692472897469997, 0.0028105713427066803, -0.0007151157478801906, -0.03480451926589012, 0.01172124594449997, -0.019278191030025482, -0.025637730956077576, -0.006126712542027235, -0.004237476736307144, 0.000539662956725806, -0.0026359499897807837, 0.03711949661374092, -0.02622312866151333, 0.045660972595214844, 0.010769976302981377, 0.005202051252126694, 0.012632602825760841, -0.01903870888054371, 0.01564606837928295, 0.022058825939893723, -0.002926985500380397, -0.031105872243642807, -0.03868942707777023, 0.009718921966850758, -0.007723250426352024, 0.01408944372087717, -0.029562553390860558, -0.03613496571779251, -0.022351525723934174, 0.0043206294067204, 0.01962410658597946, -0.0124064264819026, -0.006918329279869795, 0.023801714181900024, 0.0036321228835731745, 0.003178107552230358, 0.01817391812801361, -0.011122544296085835, -0.002946942113339901, 0.00037356483517214656, -0.005421575158834457, -0.0032562713604420424, -0.014488577842712402, 0.012559428811073303, 0.006136691197752953, -0.02344249188899994, 0.005488097667694092, 0.012140337377786636, -0.001214033691212535, 0.002843832364305854, 0.0081090796738863, 0.026236433535814285, 0.000413478264817968, -0.008528171107172966, 0.019823674112558365, -0.019477756693959236, -0.017521999776363373, 0.007410594727844, -0.011049370281398296, -0.0037651676684617996, -0.00443704379722476, -0.0420953705906868]}, {"created_time": 1695691993.8774424, "accessed_time": 1695691993.8774424, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695691995.3224006, "accessed_time": 1695691995.3224006, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695692074.417726, "accessed_time": 1695692074.417726, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.008202211000025272, -0.0058207097463309765, 0.012632602825760841, 0.008661216124892235, 0.01672372967004776, 0.023801714181900024, -0.0002633871044963598, -0.003738558618351817, -0.02039576694369316, -0.026316259056329727, -0.005428227595984936, -0.023069966584444046, 0.009146829135715961, -0.009891880676150322, -0.019171753898262978, -0.002674200339242816, 0.027859579771757126, -0.0023382622748613358, 0.04331938549876213, -0.03381998464465141, -0.01503406185656786, 0.025690948590636253, 0.00261433026753366, 0.010517191141843796, -0.026914961636066437, 0.008182254619896412, 0.011648071929812431, -0.012898692861199379, -0.008528171107172966, -0.004669872112572193, 0.0023299469612538815, -0.004493587650358677, 0.010151317343115807, -0.0049359616823494434, -0.03062691166996956, -0.039115168154239655, 0.013397610746324062, -0.010284362360835075, 0.007191070821136236, -0.0046166544780135155, 0.01629798673093319, -0.011401938274502754, 0.002170293126255274, -0.02305666171014309, -0.014315620064735413, 0.0020023242104798555, -0.01937132142484188, -7.977490167832002e-05, -0.01024444866925478, 0.006472629029303789, 0.014422055333852768, -0.008248777128756046, -0.021952390670776367, -0.006382823921740055, -0.025158770382404327, -0.007071330677717924, 0.002685841638594866, 0.009186742827296257, 0.008461648598313332, 0.0020522158592939377, -0.0004960076184943318, 0.009060350246727467, -2.3932470867293887e-05, -0.0008897370425984263, -0.005285204388201237, 0.003244629828259349, -0.002291696611791849, -0.006718762218952179, 0.003788450499996543, 0.004526848904788494, 0.03195735812187195, 0.019610801711678505, -0.005414923187345266, -0.016484249383211136, 0.014422055333852768, 0.006010298617184162, -0.01847992092370987, -0.007463812828063965, -0.008415083400905132, 0.0014318946050480008, 0.0033710224088281393, -0.028631240129470825, -0.0032546082511544228, -0.0005163801251910627, 0.016537467017769814, 0.022431351244449615, -0.017122864723205566, 0.019171753898262978, 0.013184739276766777, -0.03001490607857704, 0.02523859776556492, 0.026209823787212372, 0.007823034189641476, 0.007803076878190041, -0.009885228238999844, 0.0019940088968724012, 0.010151317343115807, 0.0030384105630218983, 0.01088306400924921, -0.02130047045648098, -0.0161250289529562, 0.02321631647646427, -0.003678688546642661, -0.012925301678478718, -0.034405384212732315, 0.0066522397100925446, 0.019278191030025482, -0.01749539002776146, 0.02120734006166458, -0.012373166158795357, -0.027380619198083878, 0.02070176973938942, -0.010217839851975441, -0.03523026034235954, -0.01821383275091648, -0.018466617912054062, 0.03062691166996956, 0.0007749859360046685, -0.0247197225689888, -0.013251261785626411, 0.020382462069392204, 0.009971707127988338, 0.018333572894334793, -0.004417086951434612, 0.019224973395466805, -0.007071330677717924, 0.006412758957594633, 0.013903181068599224, -0.02599695324897766, -0.0012913660611957312, 0.010417407378554344, 0.011987335979938507, 0.023801714181900024, 0.0032512820325791836, -0.021539952605962753, 0.021619778126478195, -0.026702089235186577, 0.007051373831927776, -0.0012614309089258313, -0.022138653323054314, 0.005029093008488417, 0.022005608305335045, -0.023189706727862358, -0.003981365356594324, 0.019304798915982246, 0.03467147424817085, 0.011807725764811039, 0.012858779169619083, -0.01156824454665184, 0.0014293999411165714, 0.01774817518889904, -0.0036287966649979353, 0.016404422000050545, 0.003129878779873252, 0.028764283284544945, 0.0016963210655376315, 0.001688837306573987, 0.01383665855973959, -0.03908855840563774, 0.011681333184242249, 0.002862126100808382, -0.0008494078647345304, 0.023615451529622078, -0.011860943399369717, -0.016923297196626663, 0.026329563930630684, 0.012506210245192051, 0.021233947947621346, -0.015978679060935974, 0.0011649734806269407, 0.009273221716284752, 0.02164638787508011, -0.040312573313713074, 0.0031731182243674994, 0.005338422488421202, 0.0062231700867414474, -0.032862063497304916, -0.002707461593672633, 0.01398300752043724, -0.025584513321518898, -0.03645427152514458, -0.002561112167313695, 0.0049359616823494434, 0.015539632178843021, -0.008182254619896412, -0.01608511619269848, 0.012852126732468605, 0.007064678706228733, 0.008055862039327621, 0.012978519313037395, 0.007104591932147741, 0.0434524305164814, -0.010364189743995667, -0.011342068202793598, -0.6599021553993225, -0.039407867938280106, 0.020302634686231613, 0.011707942001521587, 0.028578020632267, 0.0011217339197173715, 0.007051373831927776, 0.005551293957978487, -0.002644265303388238, -0.003808407112956047, -0.014741363003849983, 0.0105238426476717, -0.004007974173873663, 0.012373166158795357, -0.0027423857245594263, -0.014422055333852768, -0.002025607042014599, -0.027806362137198448, 0.011834334582090378, 0.009080306626856327, -0.00862130243331194, 0.02775314450263977, -0.01844000816345215, -0.010131360962986946, -0.006589043419808149, -0.013118216767907143, -0.004932635463774204, -0.045660972595214844, -0.009958402253687382, 0.04536827281117439, -0.04233485460281372, 0.027832970023155212, -0.013783440925180912, -0.017122864723205566, 0.055027324706315994, -0.00876765139400959, -0.0036953191738575697, 0.009679008275270462, -0.0010809889063239098, 0.018107395619153976, -0.033766768872737885, 0.005438205786049366, 0.030813174322247505, 0.004280716180801392, 0.0021719562355428934, -0.0007932795560918748, 0.028977155685424805, -0.005381661932915449, -0.0035290131345391273, -0.004759677220135927, 0.027699925005435944, 0.004812895320355892, -0.0021536624990403652, 0.006918329279869795, 0.026662176474928856, -0.005454836413264275, 0.028764283284544945, -0.028365150094032288, -0.00577414408326149, -0.0046765245497226715, -0.005185420624911785, 0.001960747642442584, -0.024826157838106155, 0.0011125870514661074, -0.02103438228368759, 0.00767668429762125, -0.03318137302994728, -0.01126889418810606, -0.006259757559746504, -0.00511224614456296, 0.013590525835752487, 0.015100584365427494, -0.012260077521204948, 0.007896208204329014, -0.004027931019663811, 0.0312921367585659, 0.009466136805713177, 0.0001451019779779017, -0.0004743878380395472, 0.011075979098677635, 0.017096254974603653, -0.008262082003057003, -0.020475594326853752, 0.01131545938551426, 0.02595703862607479, -0.02215195819735527, -0.015406587161123753, 0.014634926803410053, 0.01826705038547516, -0.025039030238986015, 0.026023561134934425, 0.006213191896677017, -0.01144185196608305, 0.002639275975525379, 0.001361214555799961, 0.014488577842712402, -0.018799228593707085, 0.012479601427912712, 0.027992624789476395, -0.028365150094032288, 0.010809889063239098, -0.012186902575194836, 0.021154122427105904, 0.0058506447821855545, 0.003745210822671652, -0.000816978164948523, -0.03203718736767769, 0.02574416808784008, 0.013770136050879955, -0.01591215655207634, 0.026569044217467308, 0.03467147424817085, -0.009592529386281967, -0.001104271737858653, -0.01651085913181305, -0.025331728160381317, 0.04409104585647583, 0.03632122650742531, 0.025158770382404327, -0.005148833617568016, 0.01954427920281887, -0.004776307847350836, 0.02599695324897766, 0.004490261897444725, 0.015193715691566467, 0.007576900999993086, 0.0007866273517720401, -0.02425406500697136, -0.011348720639944077, -0.0024829483591020107, -0.011515026912093163, -0.004613328259438276, 0.018892360851168633, -0.026289651170372963, 0.009266570210456848, -0.009698965586721897, -0.007862946949899197, -0.019211668521165848, 0.018373485654592514, -0.009632443077862263, -0.03366033360362053, -0.010962890461087227, 0.012073814868927002, 0.024227457121014595, -0.0036620579194277525, -0.016484249383211136, 0.007550292182713747, 0.0029336377047002316, -0.04206876456737518, 0.0007650075713172555, 0.007350724656134844, -0.005128876771777868, -0.011455156840384007, 0.02300344407558441, -0.006898372434079647, 0.006482607685029507, -0.019304798915982246, -0.009878575801849365, -0.014568405225872993, 0.0041310410015285015, 0.014940930530428886, 0.011415243148803711, -0.02950933575630188, 0.006472629029303789, 0.0057974266819655895, 0.001564939389936626, -0.0006182425422593951, 0.020369157195091248, 0.0031032697297632694, -0.024573372676968575, -0.01503406185656786, -0.014874408021569252, -0.0162181593477726, -0.008534823544323444, 0.011155805550515652, -0.012838822789490223, 0.0040478878654539585, -0.005724252201616764, 0.0069715469144284725, -0.0008622965542599559, 0.003931473474949598, 0.006432715803384781, -0.007317463401705027, -0.014062834903597832, 0.016883384436368942, -0.0022850444074720144, 0.0047663296572864056, 0.03839672729372978, 0.011175762861967087, 0.009452832862734795, 0.005817383527755737, 0.007603509817272425, -0.008521518670022488, 0.014342228882014751, -0.01208046730607748, -0.014794580638408661, 0.020289331674575806, 0.020715074613690376, -0.005920493043959141, 0.0129386056214571, -0.004493587650358677, -0.0021137490402907133, 0.028152277693152428, -0.014076138846576214, -0.00241642608307302, -0.012226816266775131, 0.01757521741092205, -0.018839143216609955, 0.022378133609890938, 0.00442706560716033, 0.005531337112188339, -0.014328924007713795, -0.014595014043152332, -0.008681172505021095, 0.02215195819735527, 0.004057866055518389, -0.0051920730620622635, 0.01408944372087717, -0.02317640371620655, 0.007277550175786018, -0.0014202531892806292, -0.003108259057626128, -0.01210707612335682, -0.028258714824914932, -0.0035389915574342012, -0.0004084890824742615, -0.004486935678869486, 0.01408944372087717, 0.0045867194421589375, 0.007031417451798916, -0.02010306902229786, -0.011641419492661953, 0.031717877835035324, 0.007264245767146349, 0.0018509856890887022, 0.0012763984268531203, 0.024187542498111725, -0.027234269306063652, 0.034405384212732315, 0.03217023238539696, 0.006356215104460716, -0.010277709923684597, 0.01045732107013464, -0.015326759777963161, 0.026249738410115242, 0.020049849525094032, 0.03884907811880112, -0.019477756693959236, -0.01098950020968914, 0.009319787845015526, -0.015685981139540672, -0.00820886343717575, -0.002213532803580165, -0.002200228162109852, 0.006678848527371883, -0.024107716977596283, -0.014328924007713795, 0.013384305872023106, 0.01569928601384163, 0.03105265460908413, 0.018360180780291557, 0.024027889594435692, 0.014022921212017536, 0.004027931019663811, -0.001554960967041552, 0.007530335336923599, 0.020422374829649925, -0.024134324863553047, -0.014501882717013359, -0.01492762565612793, 0.012433036230504513, -0.006392802111804485, 0.0002739891060627997, -0.011774464510381222, -0.016138333827257156, 0.016524164006114006, -0.003040073439478874, -0.013863267377018929, -0.020715074613690376, 0.007011460606008768, -0.008760999888181686, -0.027234269306063652, 0.0031764444429427385, 0.0064859334379434586, 0.004167628008872271, -0.014209183864295483, 0.007091287523508072, 2.8272017516428605e-05, -0.0077964249067008495, 0.013124869205057621, 0.01565937139093876, -0.002155325608327985, -0.010916325263679028, 0.01962410658597946, 0.0021021077409386635, -0.0044503482058644295, 0.00456676259636879, -0.024493547156453133, 0.011461809277534485, -0.018825838342308998, 0.004530175123363733, -0.015765808522701263, -0.005318465642631054, -0.003931473474949598, -0.0005641930620186031, 0.006924981251358986, -0.019012100994586945, -0.006243126932531595, -0.017122864723205566, -0.004490261897444725, -0.0013254587538540363, -0.006831849925220013, -0.020289331674575806, -0.005631120875477791, 0.003050051862373948, 0.008973871357738972, -0.0013795081758871675, -0.023083271458745003, 0.01454179547727108, 0.0001920834183692932, -0.028631240129470825, -0.007756511215120554, -0.034751299768686295, 0.007211027666926384, 0.1261264681816101, -0.009346396662294865, 0.012093771249055862, 0.02390814945101738, 0.014209183864295483, -0.018706098198890686, -0.00782968569546938, -0.025331728160381317, 0.005664382129907608, 0.013304479420185089, -0.0035290131345391273, 0.006692152936011553, 0.019012100994586945, 0.0005804079119116068, -0.008115732111036777, -0.019304798915982246, -0.015499718487262726, -0.008089123293757439, 0.0024995789863169193, -0.015087279491126537, 0.012699125334620476, -0.005667708348482847, -0.0071378531865775585, 0.026888351887464523, -0.000678528449498117, 0.020422374829649925, 0.012712430208921432, 0.021539952605962753, 0.027354009449481964, -0.019983327016234398, 0.01306499820202589, 0.025504685938358307, -0.0021137490402907133, -0.00882752239704132, -0.028631240129470825, 0.0030433996580541134, 0.02518538013100624, 0.013510698452591896, 0.0007749859360046685, -0.01259269006550312, 0.010251101106405258, 0.023043358698487282, 0.02143351547420025, -0.009226656518876553, 0.02126055769622326, -0.009459484368562698, 0.007763163652271032, 0.022351525723934174, -0.016111724078655243, 0.0025078942999243736, 0.022976836189627647, 0.015725893899798393, 0.006399454548954964, -0.02485276758670807, -0.0037817982956767082, 0.043000075966119766, 0.0027057984843850136, -0.01753530278801918, -0.005321791861206293, 0.017428867518901825, 0.02334936149418354, -0.02809906005859375, -0.015672676265239716, -0.005145507398992777, -0.011747854761779308, -0.012931954115629196, -0.013929789885878563, -0.010177926160395145, -0.0064194113947451115, 0.0026076778303831816, -0.01847992092370987, -0.005338422488421202, -0.02775314450263977, 0.006159973796457052, 0.028152277693152428, 0.011980683542788029, 0.02788618765771389, -0.011215675622224808, -0.0027207660023123026, 0.003178107552230358, -0.01633790135383606, -0.009778792038559914, 0.0013745189644396305, -0.008508214727044106, -0.03028099425137043, 0.0037319064140319824, 0.012911996804177761, 0.009486094117164612, -0.00550805451348424, 0.0027274182066321373, 0.01569928601384163, -0.005681012757122517, 0.02980203367769718, 0.0017362345242872834, 0.005401618778705597, 0.007803076878190041, -0.010976195335388184, 0.029695598408579826, 0.0028055820148438215, 0.01946445368230343, 0.006093451287597418, -0.024599982425570488, -0.014235792681574821, -0.012978519313037395, 0.015060670673847198, -0.003941452130675316, 0.021140817552804947, 0.01962410658597946, -0.0005908020539209247, 0.01287208404392004, 0.01869279332458973, -0.01877262070775032, 0.010823193937540054, 0.014182575047016144, -0.0027274182066321373, 0.016737034544348717, -0.00027752312598749995, 0.022976836189627647, 0.0020222808234393597, -0.022990141063928604, 0.018360180780291557, -0.027646707370877266, 0.03480451926589012, -0.0013695298694074154, -0.007603509817272425, 0.012625950388610363, -0.01655077189207077, -0.017588522285223007, -0.009625790640711784, -0.020049849525094032, -0.01963741146028042, -0.0039647347293794155, -0.015326759777963161, -0.011914161033928394, -0.019052013754844666, -0.018040873110294342, -0.0038749296218156815, 0.012526167556643486, -0.007497074082493782, -0.02425406500697136, -0.036933235824108124, 0.00047854549484327435, 0.01744217239320278, -0.02698148414492607, -0.02052881196141243, -0.029695598408579826, -0.006705457344651222, -0.009293179027736187, 0.025584513321518898, 0.030600301921367645, -0.012472948990762234, 0.009306482970714569, -0.006542477756738663, 0.0077365548349916935, -2.2308389816316776e-05, -0.023282838985323906, -0.009392962791025639, 0.01919836364686489, 0.014688145369291306, 0.012865431606769562, 0.0019441170152276754, 0.010291014797985554, 0.014076138846576214, 0.004816221538931131, 0.010510538704693317, -0.0036188182421028614, 0.007290854584425688, -0.00955926813185215, -0.026369478553533554, 0.0006161637138575315, 0.004294020589441061, 0.021140817552804947, -0.011874247342348099, -0.012492906302213669, -0.03374015912413597, 0.015606153756380081, -0.006742044817656279, 0.008814217522740364, -0.012965215370059013, -0.006020276807248592, -0.013770136050879955, 0.0024779592640697956, -0.00356560037471354, 0.00032949374872259796, 0.02497250773012638, 0.0007238468388095498, 0.00996505469083786, -0.008707781322300434, 0.03169126808643341, -0.028125669807195663, 9.952374239219353e-05, -0.011787768453359604, 0.009080306626856327, -0.01591215655207634, 0.002273402875289321, -0.0012439688434824347, 0.009313135407865047, -0.015832331031560898, -0.008860782720148563, 0.0016655544750392437, 0.019185058772563934, -0.0064260633662343025, 0.02386823669075966, -0.006293018814176321, 0.004214193671941757, 0.019344713538885117, 0.012778952717781067, -0.016909992322325706, 0.007689989171922207, -0.032063793390989304, -0.018666183575987816, -0.0017096255905926228, -0.0029685618355870247, -0.011594853363931179, -0.0227905735373497, -0.01172124594449997, -0.017761480063199997, 0.014688145369291306, 0.008115732111036777, 0.004061192274093628, -0.0002997665433213115, 0.0005932966014370322, 0.027859579771757126, 0.02027602680027485, 0.00441376119852066, -0.000180753821041435, -0.012213512323796749, -0.017043037340044975, 0.03964734822511673, -0.011002804152667522, -0.01490101683884859, 0.004496913868933916, 0.026409391313791275, -0.013218000531196594, -0.03546974062919617, 0.019743846729397774, 0.03991343826055527, -0.01979706436395645, -0.02535833790898323, -0.015845634043216705, 0.016790252178907394, 0.02240474335849285, -0.01629798673093319, -0.0024580026511102915, 0.0005820709629915655, 0.020675159990787506, -0.006369519513100386, -0.015938766300678253, -0.01507397461682558, 0.030653519555926323, -0.025970343500375748, 0.028072450309991837, -0.001604021294042468, 0.027699925005435944, -0.021060990169644356, 0.0028787567280232906, -0.01569928601384163, -0.022644223645329475, -0.01736234501004219, 0.013756831176578999, 0.002531177131459117, 0.02356223203241825, -0.012692472897469997, 0.016391118988394737, 0.0024330567102879286, 5.1970622735098004e-05, 0.0018160614417865872, -0.012699125334620476, -0.004150997381657362, 0.02433389239013195, -0.01859966106712818, -1.3421413314063102e-05, -0.022351525723934174, 0.010976195335388184, 0.012645907700061798, -0.009499398060142994, -0.012812213972210884, 0.0008714433643035591, -0.0021569887176156044, -0.020036546513438225, 0.022990141063928604, -0.0011167447082698345, 0.010763323865830898, 0.006439367774873972, -0.015526327304542065, -0.010530495084822178, -0.009565920569002628, -0.0018476595869287848, -5.219799277256243e-06, -0.027087919414043427, -0.016737034544348717, -0.027859579771757126, -0.01929149404168129, 0.019384626299142838, -0.0011300492333248258, -0.01962410658597946, 0.017561912536621094, 0.0118276821449399, -0.02690165676176548, 0.007776468060910702, -0.009239960461854935, 0.0015657709445804358, -0.018333572894334793, -0.0021619778126478195, -0.006778632290661335, -0.02557120844721794, 0.018160613253712654, -0.017694957554340363, -0.032143622636795044, -0.018825838342308998, 0.024786245077848434, 0.0081090796738863, -0.01291864924132824, -0.017029734328389168, 0.00713120074942708, -0.017694957554340363, 0.009392962791025639, -0.029323073104023933, -0.026076778769493103, 0.027992624789476395, -0.0019341387087479234, 0.005531337112188339, 0.01821383275091648, -0.03648088127374649, 0.015486413612961769, 0.020728379487991333, 0.003948104102164507, 0.021619778126478195, -0.022125348448753357, -0.017801392823457718, -0.02062194235622883, -0.010517191141843796, -0.00818890705704689, -0.02062194235622883, 0.011282198131084442, 0.010304318740963936, -0.017561912536621094, 0.012027249671518803, 0.004177606664597988, -0.0015350042376667261, 0.012812213972210884, 0.02489268034696579, 0.0027124506887048483, 0.01714947447180748, 0.0014676504069939256, 0.0015807384625077248, -0.02052881196141243, -0.00699150376021862, -0.028391757979989052, -0.007869599387049675, 0.007523682899773121, 0.022657528519630432, -0.01131545938551426, -0.034538429230451584, -0.030733346939086914, -0.016776949167251587, -0.03262258321046829, -0.01774817518889904, -0.011461809277534485, 0.004097779747098684, -0.007257593329995871, -0.025544600561261177, 0.00953931175172329, 0.01724260486662388, -0.018852446228265762, 0.020076459273695946, -0.014940930530428886, -0.021140817552804947, 0.0039946697652339935, -0.03057369403541088, 0.022165263071656227, -0.015300150960683823, -0.026755306869745255, -0.022258393466472626, -0.018666183575987816, -0.021313775330781937, -0.0020522158592939377, 0.0019208341836929321, -0.010849802754819393, 0.005088963080197573, -0.01838679052889347, 0.007224332075566053, 0.00913352519273758, 0.019903501495718956, 0.016191551461815834, -0.011002804152667522, -0.013424219563603401, 0.006625630892813206, 0.004360543098300695, -0.007803076878190041, -0.010111404582858086, 0.016324596479535103, 0.005720925983041525, 0.008800912648439407, -0.007490421645343304, -0.032223448157310486, -0.005834014154970646, -0.00013356449198909104, 0.036374446004629135, -0.013916485011577606, -0.024320587515830994, 0.020981164649128914, 0.006249778904020786, -0.014129357412457466, -0.013051694259047508, 0.012200207449495792, -0.0026974831707775593, 0.006276388186961412, 0.025810690596699715, -0.012852126732468605, 0.01340426318347454, -0.025970343500375748, -0.0051089199259877205, -0.030041513964533806, -0.013677004724740982, -0.005414923187345266, -0.013716918416321278, -0.013996312394738197, 0.0086412588134408, 0.010404102504253387, -0.012033901177346706, 0.0020372483413666487, -0.020954554900527, -0.011022761464118958, -0.012033901177346706, -0.015552936121821404, 0.00207882490940392, -0.018852446228265762, -0.02189917303621769, 0.018253745511174202, -0.011095935478806496, -0.012506210245192051, 0.022524483501911163, 0.01259269006550312, -0.023030053824186325, 0.019131841138005257, 0.2499113380908966, -0.018160613253712654, 0.021792737767100334, 0.02539825066924095, 0.00022576037736143917, 0.019012100994586945, 0.02895054593682289, 0.008860782720148563, 0.008674520067870617, 0.018200527876615524, -0.03254275768995285, 0.0014817863702774048, 0.018280355259776115, -0.004097779747098684, 0.005661055911332369, -0.022058825939893723, -0.01608511619269848, -0.02342918887734413, -0.009619138203561306, -0.006898372434079647, 0.012067162431776524, -0.014954234473407269, -0.0035090562887489796, 0.004649915266782045, 0.028365150094032288, 0.01997002400457859, -0.039886828511953354, 0.002887072041630745, 0.008867435157299042, -0.009060350246727467, -0.00971226952970028, 0.0031365309841930866, -0.001372024416923523, -0.01732243224978447, 0.027087919414043427, -0.014501882717013359, 0.022338220849633217, 0.005105593707412481, 0.025717558339238167, 0.0038250377401709557, 0.016138333827257156, 0.0029136808589100838, 0.011608158238232136, -0.00872108619660139, -0.004440370015799999, 0.004809569101780653, -0.022524483501911163, -0.013770136050879955, 0.0020804880186915398, 0.02048889733850956, -0.015220324508845806, -0.011448504403233528, 0.026954874396324158, 0.00844834465533495, 0.007876251824200153, 0.0002084021980408579, 0.01813400536775589, -0.010570408776402473, -0.02284379117190838, -0.010557103902101517, -0.00870112981647253, 0.042148590087890625, -0.0026226455811411142, 0.010836497880518436, -0.03477790951728821, 0.018466617912054062, -0.008049209602177143, 0.0007970214355736971, 0.017295822501182556, -0.004290694370865822, 0.008607998490333557, 0.00862130243331194, -0.0057608396746218204, 0.004317303653806448, -0.036374446004629135, -0.02518538013100624, 0.025478078052401543, 0.0029519314412027597, 0.04507557675242424, 0.002926985500380397, -0.010949586518108845, 0.026249738410115242, -0.00727089773863554, 0.0038150593172758818, -0.0049658967182040215, -0.03738558664917946, 0.0026825156528502703, 0.021712910383939743, 0.019238276407122612, -0.02788618765771389, -0.0034259033855050802, -0.011481765657663345, -0.0021021077409386635, -0.02062194235622883, -0.006818545516580343, 0.010623626410961151, -0.009705618023872375, 0.024067802354693413, -0.0227905735373497, 0.01045732107013464, -0.006475955247879028, -0.027194354683160782, 0.028764283284544945, 0.02680852636694908, -0.03557617589831352, 0.02630295604467392, 0.013903181068599224, 0.01577911153435707, -0.005607837811112404, -0.026276346296072006, 0.014568405225872993, -0.005301835015416145, 0.02801923267543316, 0.017681652680039406, 0.010217839851975441, 0.008920653723180294, -0.0075635965913534164, -0.02732739970088005, 0.027274182066321373, 0.001158321276307106, -0.0001540409284643829, -0.024866072461009026, -0.03267580270767212, 0.014621622860431671, -0.010816541500389576, -0.021699605509638786, -0.039753783494234085, 0.0024230782873928547, -0.015765808522701263, -0.021406907588243484, 0.03751863166689873, 0.011701289564371109, 0.01212703250348568, 0.014461969025433064, -0.0038050811272114515, 0.0063362582586705685, 0.018360180780291557, -0.00356560037471354, 0.013956398703157902, 0.006838502362370491, 0.015885548666119576, -0.0081090796738863, -0.012246773578226566, -0.02754027210175991, 0.01373022235929966, -0.023761799558997154, 0.010942934080958366, 0.0012065499322488904, 0.007849643006920815, -0.015592849813401699, -0.016138333827257156, 0.003327782964333892, -0.019358016550540924, -0.007237636484205723, 0.031371962279081345, -0.024240761995315552, -0.037438806146383286, 0.003685340750962496, 0.0058207097463309765, 0.01633790135383606, -0.02334936149418354, 0.0020039870869368315, 0.04079153388738632, -0.020595334470272064, 0.011029412969946861, -0.009672356769442558, -0.17093594372272491, 0.016351204365491867, 0.03246292844414711, -0.01774817518889904, 0.01625807397067547, 0.020675159990787506, -0.010191231034696102, -0.008953914977610111, -0.01332443580031395, 0.01736234501004219, 0.027859579771757126, 0.029988296329975128, -0.017681652680039406, -0.026542436331510544, -0.001554129528813064, 0.036800190806388855, -0.0002359466307098046, -0.004506892524659634, 0.038636207580566406, 0.0322500579059124, 0.012526167556643486, -0.01877262070775032, 0.016005288809537888, -0.008760999888181686, 0.02155325561761856, 0.022657528519630432, -0.001609010505490005, 0.002664221916347742, -0.007789772469550371, -0.0027174397837370634, -0.00699150376021862, 0.007483769673854113, 0.01167468074709177, -0.011581549420952797, 0.024879375472664833, 0.010590365156531334, -0.005328443832695484, -0.017907829955220222, -0.005977037362754345, 0.023708581924438477, 0.0021470102947205305, 0.001144185196608305, -0.001124228467233479, 0.006924981251358986, -0.053111482411623, 9.120844333665445e-05, -0.00018948488286696374, 0.0019790413789451122, -0.03868942707777023, -0.005401618778705597, 0.010676844976842403, -0.0033893161453306675, -0.005611164029687643, -0.011089283041656017, 0.015379978343844414, 0.020688464865088463, -0.013703613542020321, 0.04089796915650368, 0.0013587198918685317, 0.006402780767530203, 0.00022181060921866447, -0.021021077409386635, -0.006096777506172657, 0.009067002683877945, 0.017043037340044975, -0.00846830103546381, -0.02296353131532669, -0.007969383150339127, -0.0070779831148684025, 0.007324115838855505, -0.0006648082053288817, -0.03126552700996399, 0.027593489736318588, 0.0014767971588298678, 0.009745530784130096, -0.006126712542027235, -0.00483285216614604, 0.0029602465219795704, -0.0018642900977283716, -0.01770826242864132, -0.023043358698487282, 0.01761513017117977, -0.037438806146383286, -0.014781276695430279, -0.01545980479568243, 0.023336056619882584, 0.005534663330763578, 0.005348400678485632, -0.009832010604441166, -0.021180730313062668, 0.03389981389045715, -0.017628435045480728, -0.017295822501182556, -0.025850603356957436, -0.0018127353396266699, 0.01253281906247139, 0.013304479420185089, 0.011967378668487072, 0.004094453528523445, -0.016431031748652458, 0.019131841138005257, -0.0164177268743515, -0.014954234473407269, 0.008760999888181686, 0.01822713576257229, 0.007729902397841215, 0.01058371365070343, 0.004866113420575857, 0.013650395907461643, -0.007902860641479492, -0.006356215104460716, 0.023668669164180756, 0.007410594727844, 0.01507397461682558, -0.013018433004617691, 0.035389915108680725, 0.022591006010770798, -0.01680355705320835, 0.03006812371313572, -0.04457000643014908, 0.023509014397859573, 0.019770456477999687, 0.0024330567102879286, -0.008049209602177143, -0.0011516689555719495, 0.013543959707021713, -0.09962394088506699, -0.0011017771903425455, 0.0053051612339913845, 0.01490101683884859, -0.0005205377237871289, 0.019131841138005257, 0.019570888951420784, 0.007616814225912094, 0.004516870714724064, 0.013510698452591896, -0.030174558982253075, -0.007916165515780449, 0.016031896695494652, -0.0009296505013480783, 0.006628956645727158, -0.014887711964547634, -0.0037618414498865604, -0.005710947792977095, -0.015379978343844414, 0.006871763616800308, -0.0018459964776411653, -0.01792113296687603, -0.004353890661150217, -0.0005978700355626643, -0.0052519431337714195, -0.00968566071242094, -0.03036082163453102, 0.03318137302994728, 0.010271058417856693, 0.008694477379322052, 0.005534663330763578, -0.022976836189627647, 0.00767668429762125, -0.03536330536007881, -0.0021869237534701824, 0.01019788347184658, -0.014435360208153725, -0.0032795541919767857, -0.006176604423671961, -0.02168630063533783, -0.006372845731675625, 0.002278391970321536, 0.010138013400137424, -0.02027602680027485, -0.012818865478038788, -0.00658571720123291, -0.020049849525094032, 0.003442534012719989, -0.0037319064140319824, -0.029269853606820107, -0.040392398834228516, 0.00657573901116848, 0.013138173148036003, -0.0032163579016923904, 0.031584832817316055, -0.019650716334581375, 0.00606351625174284, 0.024653200060129166, -0.014275706373155117, -0.003302837023511529, -0.005770817864686251, -0.022205175831913948, 0.0075103784911334515, -0.000440710864495486, 0.016909992322325706, 0.001332110958173871, -0.0028704414144158363, -0.0015532979741692543, 0.003545643761754036, -0.002373186405748129, -0.0039015384390950203, 0.03113248199224472, -0.011621462181210518, 0.022697441279888153, -0.0024197520688176155, -0.022378133609890938, -0.01792113296687603, -0.013371001929044724, -0.010849802754819393, -0.024879375472664833, -0.006618978455662727, -0.012725734151899815, 0.013969703577458858, -0.001100114081054926, 0.015047365799546242, 0.00699150376021862, -0.009832010604441166, 0.005577902775257826, 0.023030053824186325, 0.007856295444071293, -0.026329563930630684, 0.006722087971866131, 0.008435039781033993, -0.019052013754844666, 0.0005808236892335117, 0.0031614769250154495, 0.004204215481877327, 0.006356215104460716, 0.013091607950627804, 0.011468460783362389, -0.018107395619153976, -0.014794580638408661, -0.057156041264534, 0.031371962279081345, 0.01210042368620634, 0.0003750199975911528, 0.017734870314598083, -0.017269214615225792, 0.019903501495718956, 0.03874264284968376, 0.011668028309941292, 0.014062834903597832, -0.02638278156518936, 0.021460125222802162, -0.006213191896677017, -0.016018593683838844, -0.019171753898262978, -0.04100440442562103, 0.025371642783284187, 0.0012797246454283595, 0.021712910383939743, 0.00885413121432066, -0.0034292296040803194, 0.015552936121821404, 0.024067802354693413, 0.01765504479408264, -0.02130047045648098, 0.0012406427413225174, -0.05577237531542778, 0.0021320427767932415, -0.006635609082877636, -0.021832650527358055, -0.007124548777937889, -0.021366992965340614, -0.008461648598313332, 0.02475963532924652, 0.00844834465533495, -0.010676844976842403, -0.00498252734541893, 0.012832170352339745, -0.026116693392395973, 0.009206699207425117, -0.045102182775735855, -0.016657207161188126, -0.0012980182655155659, 0.005105593707412481, -0.017801392823457718, 0.01745547726750374, -0.013716918416321278, 0.014847799204289913, 0.026156606152653694, 0.013849962502717972, 0.0036121660377830267, 0.004210867453366518, 0.008115732111036777, -0.005840666592121124, -0.009173438884317875, -0.01838679052889347, 0.005750861018896103, -0.026608958840370178, -0.012087119743227959, -0.017854610458016396, 0.008914001286029816, -0.013969703577458858, 0.008514867164194584, 0.009645747020840645, 0.002669211244210601, -0.010769976302981377, -0.007803076878190041, -0.009047046303749084, 0.03656071051955223, -0.035948701202869415, -0.031584832817316055, 0.000373980583390221, -0.0070846350863575935, 0.008867435157299042, 0.0218193456530571, -0.011601505801081657, -0.006944938097149134, -0.01851983554661274, -0.005611164029687643, 0.024626590311527252, 0.01766834780573845, 0.0020389114506542683, -0.012838822789490223, 0.010570408776402473, 0.02599695324897766, -0.0010360863525420427, -0.014581709168851376, -0.014728058129549026, 0.011608158238232136, 0.016071811318397522, -0.011495070531964302, -0.006565760355442762, 0.02330944687128067, 0.024733027443289757, 0.0019091927679255605, 0.01581902615725994, 0.004011300392448902, -0.023934757336974144, 0.013637091033160686, 0.0179610475897789, 0.011747854761779308, 0.008707781322300434, 0.01033092848956585, -0.0077432068064808846, 0.006342910695821047, -0.01813400536775589, -0.024174239486455917, -0.019956719130277634, 0.008807565085589886, 0.012220163829624653, -0.009758835658431053, 0.013903181068599224, 0.0024596655275672674, 0.03916838765144348, 0.011641419492661953, 0.012719081714749336, 0.0019474431173875928, -0.01022449228912592, -0.010264405980706215, 0.024786245077848434, 0.007876251824200153, 0.008022600784897804, 0.017947742715477943, -0.0070846350863575935, 0.009020436555147171, 0.02284379117190838, 0.012692472897469997, 0.0028105713427066803, -0.0007151157478801906, -0.03480451926589012, 0.01172124594449997, -0.019278191030025482, -0.025637730956077576, -0.006126712542027235, -0.004237476736307144, 0.000539662956725806, -0.0026359499897807837, 0.03711949661374092, -0.02622312866151333, 0.045660972595214844, 0.010769976302981377, 0.005202051252126694, 0.012632602825760841, -0.01903870888054371, 0.01564606837928295, 0.022058825939893723, -0.002926985500380397, -0.031105872243642807, -0.03868942707777023, 0.009718921966850758, -0.007723250426352024, 0.01408944372087717, -0.029562553390860558, -0.03613496571779251, -0.022351525723934174, 0.0043206294067204, 0.01962410658597946, -0.0124064264819026, -0.006918329279869795, 0.023801714181900024, 0.0036321228835731745, 0.003178107552230358, 0.01817391812801361, -0.011122544296085835, -0.002946942113339901, 0.00037356483517214656, -0.005421575158834457, -0.0032562713604420424, -0.014488577842712402, 0.012559428811073303, 0.006136691197752953, -0.02344249188899994, 0.005488097667694092, 0.012140337377786636, -0.001214033691212535, 0.002843832364305854, 0.0081090796738863, 0.026236433535814285, 0.000413478264817968, -0.008528171107172966, 0.019823674112558365, -0.019477756693959236, -0.017521999776363373, 0.007410594727844, -0.011049370281398296, -0.0037651676684617996, -0.00443704379722476, -0.0420953705906868]}, {"created_time": 1695692076.5042686, "accessed_time": 1695692076.5042686, "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": 1695692077.5878398, "accessed_time": 1695692077.5878398, "description": "Helped Mrs. Moore carry groceries into her house.", "poignancy": 3, "embedding_key": [-0.009600561112165451, -0.009350168518722057, 0.0003185498353559524, -0.007083461154252291, -0.0021596320439130068, 0.021797291934490204, 0.0147863132879138, 0.0005885038408450782, 0.004536709748208523, -0.05047377943992615, 0.005116565153002739, 0.014825848862528801, -0.003057419555261731, -0.01768559031188488, -0.005478974897414446, 0.01263821218162775, 0.024367105215787888, 0.012480069883167744, 0.012611855752766132, -0.047310929745435715, -0.01685534231364727, 0.01168935839086771, 0.008078440092504025, -0.005235171876847744, -0.000329875125316903, -0.005610760301351547, 0.02324693091213703, -0.020360833033919334, 0.01697394996881485, -0.006964854430407286, 0.012796354480087757, -0.01293472945690155, -0.016591772437095642, -0.01578788086771965, -0.013363031670451164, -0.027622204273939133, 0.006312516983598471, 0.009020705707371235, -0.0013277371181175113, -0.02219264768064022, 0.020822081714868546, -0.006246624514460564, 0.00412817532196641, -0.009231561794877052, -0.026791956275701523, 0.01638091541826725, -0.03326261416077614, -0.01103043183684349, -0.034606825560331345, -0.001538593671284616, 0.001301380107179284, 0.005877625197172165, -1.8644921055965824e-06, 0.0009793296921998262, -0.027859417721629143, 0.012091303244233131, 0.003291338449344039, 0.03326261416077614, 0.012921551242470741, -0.02383996546268463, -0.011129270307719707, 0.020374011248350143, -0.022996539250016212, -0.012045178562402725, -0.001480113947764039, -0.015840595588088036, -0.0010065104579553008, -0.005788670387119055, -0.024393463507294655, 0.029361769556999207, 0.014377778396010399, 0.018463123589754105, 0.013969244435429573, 0.004049104172736406, 0.023220574483275414, -0.010417629964649677, -0.008467206731438637, 0.0018861774588003755, -0.008678063750267029, -0.001874646171927452, 0.0034989002160727978, -0.01624912954866886, -0.01080639660358429, 0.013270782306790352, 0.01577470265328884, -0.0011959518305957317, -0.02063758112490177, 0.030547838658094406, -0.021454650908708572, -0.0015806001611053944, 0.023681823164224625, 0.0008388959686271846, -0.0022469398099929094, 0.016117345541715622, 0.020716652274131775, 0.027332276105880737, -0.012684336863458157, 0.050869133323431015, 0.00662221247330308, -0.011709125712513924, -0.01826544478535652, 0.013020389713346958, -0.037216175347566605, 0.0039041400887072086, -0.020439904183149338, -0.012368052266538143, -0.017408840358257294, -0.022245362401008606, 0.01329713873565197, -0.038165029138326645, -0.0187530517578125, 0.011669590137898922, 0.019069336354732513, -0.00774238770827651, -0.021889541298151016, -0.0111556276679039, 0.0016226067673414946, -0.023194216191768646, -0.012539373710751534, -0.0008207754581235349, -0.001213248586282134, 0.02387950010597706, 0.03260368853807449, 0.013092871755361557, -0.007940066047012806, -0.014021958224475384, -0.015063062310218811, 0.011669590137898922, -0.00034017086727544665, 0.004905708599835634, 0.010878878645598888, -0.005712893791496754, 0.026567921042442322, -0.02326010912656784, -0.00019335377146489918, 0.032946329563856125, -0.030811408534646034, 0.015418882481753826, 0.0001661730493651703, -0.026159387081861496, -0.015392526052892208, 0.025592708960175514, -0.012690926901996136, -0.0028251479379832745, -0.023892678320407867, 0.02161279320716858, 0.02373453602194786, 0.01910887099802494, -0.0030211785342544317, 0.0059896428138017654, 0.0189770869910717, -0.021336043253540993, 0.005245056003332138, -0.014852206222712994, 0.05413740873336792, 0.01168935839086771, -0.002401787554845214, 0.005742545239627361, -0.02173139899969101, -0.002093739341944456, 0.01180137600749731, 0.00493206549435854, 0.035687465220689774, -0.0114521449431777, -0.02302289567887783, 0.022113576531410217, 0.0019553648307919502, -0.0017395662143826485, -0.0020624403841793537, -0.005874330643564463, 0.008849384263157845, -0.0002911631891038269, -0.028887342661619186, 0.029150912538170815, -0.0016679080436006188, 0.0031809681095182896, 0.004856289364397526, 0.00498807430267334, -0.012756818905472755, -0.02101975865662098, -0.017356127500534058, 0.01589331030845642, 0.021770935505628586, -0.0021102125756442547, -0.0010847579687833786, -0.010905235074460506, 0.004582834430038929, -0.006048946175724268, 0.0068791937083005905, -0.01282271184027195, 0.012776587158441544, 0.025474103167653084, -0.011972696520388126, -0.00895481277257204, -0.670945405960083, -0.004157826770097017, 0.0018614677246659994, -0.024775641039013863, -0.0035516144707798958, 0.03099590726196766, 0.004431281238794327, 0.012328516691923141, -0.011214930564165115, 0.011083145625889301, -0.00774238770827651, 0.022640718147158623, -0.014733599498867989, 0.019912762567400932, 0.007643548771739006, -0.011768429540097713, 0.009897077456116676, 0.009073419496417046, 0.017619697377085686, 0.011959518305957317, -0.024393463507294655, 0.02870284393429756, -0.014628170989453793, 0.007439281325787306, 0.02244304120540619, -0.013771566562354565, 0.024538427591323853, -0.028781915083527565, -0.003683399874716997, 0.013811102136969566, -0.01827862486243248, 0.03526575118303299, 0.008704420179128647, 0.017013484612107277, 0.051106348633766174, 0.0016102519584819674, -0.027727631852030754, 0.03892938420176506, 0.01707937754690647, 0.03463318198919296, -0.043172869831323624, -0.03516032546758652, 0.01684216409921646, -0.005406492855399847, -0.004915592726320028, 0.003907434642314911, 0.025777209550142288, -0.011307180859148502, 0.012855658307671547, 0.0030541247688233852, 0.010865699499845505, 0.03429054096341133, -0.01502352673560381, -0.005857857409864664, -0.010299023240804672, 0.006157669238746166, 0.01663130708038807, -0.00587103608995676, -0.0020327887032181025, 0.0029173975344747305, 0.005221993196755648, 0.0023902563843876123, -0.007821459323167801, -0.024182606488466263, -0.04027359560132027, 0.012466891668736935, -0.026607457548379898, -0.009824595414102077, -0.0014636407140642405, 0.008223404176533222, 0.00341323995962739, 0.02648884989321232, -0.0014949397882446647, 0.011320359073579311, 0.021349221467971802, 0.025539996102452278, 0.007755566388368607, 0.020505795255303383, -0.0019125344697386026, -0.004151237662881613, 0.022535290569067, -0.0177910178899765, -0.014614991843700409, -0.009897077456116676, 0.03226104751229286, -0.014562278054654598, -0.015827417373657227, -0.01294790767133236, -0.006753997877240181, -0.018568551167845726, 0.011643233709037304, 0.009066830389201641, 0.009310632944107056, 0.0011943044373765588, -0.013771566562354565, 0.015814239159226418, -0.030811408534646034, 0.009363346733152866, 0.015181669034063816, -0.025566352531313896, 0.004826637450605631, -0.0254213884472847, 0.02456478402018547, 0.00913272239267826, 0.016539057716727257, -0.0015698926290497184, 0.013494816608726978, 0.04404265433549881, 0.017501091584563255, -0.015827417373657227, 0.017501091584563255, -0.0003558203752618283, -0.009000937454402447, -0.008473795838654041, -0.0254213884472847, -0.02244304120540619, -0.007920297794044018, -0.0005160219152458012, -0.0009208499686792493, -0.052898626774549484, 0.016763092949986458, 0.0073602101765573025, 0.008440850302577019, 0.028887342661619186, -0.00643771281465888, 0.012335105799138546, 0.006688104942440987, -0.012545962817966938, -0.007735798601061106, -0.008757134899497032, 0.007366799749433994, -0.0029865847900509834, -0.008295886218547821, -0.00682647991925478, 0.02348414435982704, 0.002306243171915412, 0.00873077753931284, -0.038876671344041824, 0.019754620268940926, -0.01246030256152153, -0.02576403133571148, 0.0005427908035926521, 0.006958264857530594, -0.008388135582208633, 0.014878562651574612, -0.028096631169319153, -0.00210856506600976, -0.00920520443469286, -0.025078747421503067, -0.010641665197908878, -0.011129270307719707, -0.013363031670451164, -0.016644487157464027, -0.0023919036611914635, -0.0035977393854409456, -0.008052083663642406, -0.01568245328962803, 0.015155311673879623, -0.005126448813825846, 0.006078598089516163, -0.0008038904634304345, 0.03326261416077614, -0.025078747421503067, 0.02326010912656784, -0.011201752349734306, -0.015511132776737213, 0.023813607171177864, 0.03916659951210022, -0.008058672770857811, -0.04401629790663719, 0.003195794066414237, -0.040405381470918655, -0.02812298759818077, 0.010990896262228489, 0.01696077175438404, 0.025065569207072258, -0.008836206048727036, -0.007953244261443615, 0.01639409363269806, 0.009416061453521252, 0.0062663923017680645, -0.020914331078529358, -0.013099460862576962, 0.010391272604465485, 0.01829180307686329, -0.016657665371894836, 0.008104797452688217, 0.013270782306790352, -0.02066393941640854, 0.016525879502296448, 0.014746777713298798, -0.005343894939869642, 0.033420756459236145, -0.006174142472445965, -0.005436144769191742, -0.00017533625941723585, 0.012987443245947361, 0.009218383580446243, -0.009224972687661648, -0.005093502812087536, 0.027753988280892372, -0.004167710896581411, -0.001285730511881411, -0.009653274901211262, 0.023958571255207062, -0.0144173139706254, 0.01436460018157959, -0.02812298759818077, 0.03299904614686966, -0.0009760350221768022, -0.016420451924204826, -0.01732976920902729, -0.0023161270655691624, -0.008671474643051624, -0.003512078896164894, 0.016354558989405632, -0.005765608046203852, 0.022495754063129425, 0.005103386472910643, -0.010997485369443893, -0.006085187196731567, 0.0020690294913947582, 0.015115776099264622, 0.0032583922147750854, -0.003577971598133445, 0.012170374393463135, 0.002716424874961376, -0.008177279494702816, -0.00020086966105736792, -0.013152175582945347, -0.013270782306790352, -0.004869467578828335, 0.020242225378751755, 0.026791956275701523, 0.01258549839258194, -0.0260144229978323, 0.01971508376300335, -0.01707937754690647, 0.02741134725511074, -0.003993095364421606, -0.018239088356494904, 0.013086282648146152, 0.034501396119594574, -0.01003545243293047, -0.005637117195874453, -0.00788735132664442, 0.021349221467971802, 0.007590834517031908, -0.006184026133269072, 0.029467198997735977, 0.016670843586325645, 0.00375258713029325, 0.0007202891283668578, 0.001577305607497692, 0.010226541198790073, -0.0036537479609251022, 0.01502352673560381, -0.0017362716607749462, 0.036161892116069794, 0.04823342710733414, 0.01686852052807808, 0.008869152516126633, 0.011294001713395119, 0.002093739341944456, -0.011300591751933098, 0.0024890953209251165, 0.021533722057938576, -0.008612170815467834, -0.0043192640878260136, -0.00836836826056242, -0.01288201566785574, -0.014259171672165394, 0.003841542173177004, -0.008987759239971638, 0.018239088356494904, 0.019425157457590103, -0.00873077753931284, 0.01477313507348299, 0.004072166513651609, -0.002156337257474661, -0.02695009857416153, -0.02435392700135708, 0.005765608046203852, 0.018212731927633286, -0.010674610733985901, 0.00979823898524046, -0.017540626227855682, 0.006263097282499075, 0.0036175071727484465, -0.023167859762907028, 0.014456849545240402, 0.017118914052844048, -0.020729830488562584, 0.008981170132756233, -0.009633506648242474, 0.002161279320716858, 0.035423893481492996, -0.012565730139613152, 0.028755556792020798, -0.032471902668476105, -0.003202383406460285, -0.017053021118044853, -0.015102597884833813, -0.020808901637792587, 0.010371505282819271, 0.013033568859100342, -0.003149669151753187, -0.023075610399246216, -0.0021744577679783106, -0.01507624052464962, -0.014720420353114605, -0.00948854349553585, 0.01673673652112484, 0.009402882307767868, -0.0015797765227034688, 0.002836679108440876, 0.008236582390964031, -0.00819704681634903, 0.027859417721629143, 0.0076501378789544106, -0.005455912556499243, -0.014298707246780396, -0.025236889719963074, 0.016209594905376434, 0.11660365015268326, 0.02257482521235943, 0.00046413144445978105, 0.01839723065495491, 0.03004705347120762, -0.013211478479206562, -0.012690926901996136, 0.000666751351673156, 0.014245993457734585, 0.004922181833535433, 0.028544701635837555, -0.02314150333404541, -0.001947128097526729, -0.030837764963507652, 0.024867890402674675, -0.015550668351352215, -0.024498891085386276, -0.017830554395914078, 0.0072086569853127, -0.025091925635933876, 0.003360525704920292, 0.0029931741300970316, -0.015089419670403004, -0.004497174173593521, -0.015300275757908821, -0.01340915635228157, 0.022350789979100227, 0.03004705347120762, 0.015603382140398026, -0.010700968094170094, 0.005673358216881752, -0.0009579145698808134, 0.008869152516126633, -0.000864841160364449, 0.007775334175676107, 0.0009702694369480014, -0.010338558815419674, 0.0039239078760147095, 0.013066514395177364, 0.002663710853084922, 0.011412609368562698, 0.013876994140446186, 0.018726693466305733, -0.023998107761144638, 0.02600124478340149, 0.004381862003356218, 0.010529647581279278, 0.03415875509381294, -0.011478501372039318, 0.0037624710239470005, 0.040879808366298676, 0.016064630821347237, 0.01947787031531334, -0.017356127500534058, 0.022271718829870224, 0.014957633800804615, 0.0034956056624650955, 0.0009562672348693013, -0.012499838136136532, 0.009943202137947083, 0.00575901847332716, -0.000999097479507327, 0.00023165388847701252, -0.012737051583826542, 0.006918729282915592, -0.019148407503962517, -0.037558816373348236, 0.004431281238794327, -0.028202058747410774, -0.014206457883119583, -0.004681673366576433, -0.013303728774189949, -0.0185290165245533, -0.010523057542741299, 0.028412915766239166, 0.024657033383846283, 0.006753997877240181, -0.01033196970820427, 0.006839658133685589, 0.0019323022570461035, -0.008948223665356636, -0.024050820618867874, -0.00036941072903573513, 0.006523373536765575, -0.011676179245114326, 0.012743640691041946, -0.005884214770048857, 0.002760902512818575, -0.022363970056176186, 0.012743640691041946, 0.0037328193429857492, 0.021652327850461006, 0.018673980608582497, -0.005544867366552353, -0.006737524643540382, 0.011557572521269321, 0.003953559789806604, 0.026383422315120697, -0.019899584352970123, 0.011353305540978909, 0.025843102484941483, -0.023062432184815407, 0.01128082349896431, -0.01477313507348299, -0.00848038587719202, -0.01565609686076641, 0.015577024780213833, -0.009870721027255058, -0.014101029373705387, 0.004315969534218311, 0.013850637711584568, 0.005165984854102135, 0.006819890346378088, -0.009409472346305847, -0.010305612348020077, 0.022970180958509445, 0.01697394996881485, 0.008829616941511631, 0.0011440613307058811, -0.02600124478340149, -0.0003871193912345916, -0.03173390403389931, 0.020677117630839348, -0.004859583918005228, -0.012321927584707737, 0.019042979925870895, -0.007116407621651888, -0.03879759833216667, 0.0007927710539661348, -0.004134764429181814, 0.01205176766961813, 0.0008096560486592352, -0.018080946058034897, -0.01660495065152645, -0.011919982731342316, -0.018001874908804893, -0.0032485080882906914, 0.007136175408959389, 0.004253371153026819, -0.009495132602751255, -0.01851583831012249, 0.0022930647246539593, -0.007577655836939812, -0.02431439235806465, -0.008921866305172443, -0.024722926318645477, 0.0024083766620606184, -0.014008780010044575, -0.02004454843699932, 0.04043173789978027, 0.01304674707353115, -0.011313769966363907, 0.0007894764421507716, 0.010404450818896294, -0.03313082829117775, -0.02493378333747387, -0.027833059430122375, 0.016815807670354843, 0.0410643070936203, 0.03297268599271774, 0.0415123775601387, -0.0010509879793971777, 0.02324693091213703, -0.014443671330809593, -0.002375430427491665, -0.001359859830699861, 0.006615623366087675, -0.014812670648097992, -0.031180407851934433, 0.027753988280892372, 0.029124556109309196, 0.009350168518722057, 0.005090208258479834, 0.012559141032397747, -0.02241668291389942, -0.004938655067235231, -0.01056918315589428, -0.0038349528331309557, 0.0009645038517192006, -0.026871027424931526, -0.004816753324121237, 0.008612170815467834, -0.005920455791056156, 0.006925318855792284, 0.004404924344271421, -0.013863815926015377, 0.03689989075064659, 0.006190615706145763, 0.01050987932831049, -0.011175394989550114, 0.021322865039110184, -0.010812985710799694, 0.016090987250208855, 0.006592560559511185, -0.030205195769667625, -0.021164722740650177, -0.013178532011806965, -0.0030409463215619326, 0.006898961495608091, -0.019675549119710922, -0.016077809035778046, 0.010219952091574669, 0.0011358247138559818, -0.012354874052107334, -0.014456849545240402, 0.0063751148991286755, -0.021573256701231003, -0.0031513164285570383, 0.014325064606964588, -0.014193279668688774, -0.002569813746958971, -0.015563846565783024, -0.009481954388320446, -0.02933541312813759, 0.01335644256323576, 0.02030811831355095, -0.014074672013521194, 0.020334474742412567, -0.005376840941607952, -0.023286467418074608, -0.021902721375226974, -0.0063981772400438786, 0.014614991843700409, -0.005090208258479834, 0.028544701635837555, -0.0013713910011574626, -0.01603827439248562, -0.0062795705161988735, 0.05403198301792145, 0.012849069200456142, 0.0008475443464703858, -0.0032040306832641363, 0.018107302486896515, 0.008908688090741634, -0.017514269798994064, -0.0008113033836707473, 0.015102597884833813, -0.021665507927536964, -0.02422214299440384, 0.02407717891037464, 0.02173139899969101, 0.024288034066557884, -0.016209594905376434, -0.012328516691923141, 0.005969875026494265, 0.0064805434085428715, -0.023326002061367035, -0.0038514260668307543, 0.0033934719394892454, -0.012895193882286549, -0.04085344821214676, 0.007735798601061106, 0.0022617655340582132, 0.02502603270113468, -0.02196861244738102, -0.0004229485057294369, -0.013395978137850761, -0.013982422649860382, 0.01025948766618967, 0.011781607754528522, -0.01744837686419487, 0.02161279320716858, 0.004599307663738728, -0.0012264271499589086, -0.025829922407865524, 0.006602444685995579, 0.006078598089516163, -0.018067767843604088, -0.028544701635837555, 0.018608087673783302, 0.018963908776640892, -0.0013829221716150641, -0.00902729481458664, 0.012862247414886951, 0.008645117282867432, 5.317743853083812e-05, -0.003828363725915551, -0.024973317980766296, 0.008374957367777824, -0.01651270128786564, 0.011616876348853111, -0.007755566388368607, -0.012440534308552742, -0.00919202622026205, 0.0010032157879322767, -0.011491680517792702, -0.01288201566785574, -0.023945393040776253, 0.014825848862528801, -0.0018614677246659994, -0.04912956804037094, -0.016591772437095642, 0.004516941960901022, 0.003996389918029308, -0.004006273578852415, 0.0032303878106176853, -0.005383430514484644, 0.02360275201499462, -0.0334998294711113, 0.02076936699450016, -0.03574017807841301, 0.009047062136232853, -0.020703474059700966, -0.0014117502141743898, -0.006556320004165173, -0.004032630939036608, 0.01305992528796196, -0.008908688090741634, -0.05034199357032776, -0.028518343344330788, 0.012315338477492332, -0.008757134899497032, -0.018792586401104927, -0.01370567362755537, 0.012829300947487354, 0.016789449378848076, 0.010134290903806686, -0.018726693466305733, -0.01922747865319252, 0.021915899589657784, -0.02041354589164257, 0.013692495413124561, 0.018344517797231674, -0.01626230962574482, -0.01394288707524538, 0.020374011248350143, 0.0191220510751009, 0.016196416690945625, -0.04001002386212349, -0.005258234217762947, 0.003581266151741147, 0.023339180275797844, -0.015761524438858032, -0.015577024780213833, -0.011023841798305511, 0.007768744602799416, -0.009389704093337059, 0.007795101962983608, 0.000725231075193733, 0.027279561385512352, -0.005805143620818853, -0.003508784109726548, 0.01958329975605011, 0.0017626286717131734, -0.013876994140446186, 0.0177910178899765, -0.016183238476514816, 0.02340507321059704, -0.000960385543294251, -0.02468339167535305, 0.002452854299917817, 0.011004074476659298, -0.025711316615343094, -0.040537163615226746, -0.009165668860077858, 0.010687789879739285, -0.016328200697898865, -0.024143071845173836, -0.0036932837683707476, -0.0017922803526744246, -0.004596013110131025, -0.016222773119807243, -0.004615780897438526, 0.032471902668476105, -0.01636773720383644, 0.012157196179032326, -0.021573256701231003, -0.014904920011758804, -0.010799807496368885, -0.018950728699564934, -0.0063322847709059715, -0.00295363855548203, -0.01526074018329382, -0.00813115481287241, -0.011583929881453514, -0.004582834430038929, -0.004958422854542732, 0.0021003286819905043, -0.011999053880572319, 0.0017840438522398472, -0.014944455586373806, 0.010852521285414696, 0.018067767843604088, -0.009277686476707458, 0.03181297704577446, 0.004118291195482016, -0.015735168009996414, 0.002928928704932332, 0.001476819277741015, -0.006780354771763086, -0.03740067407488823, 0.023352358490228653, 0.001384569564834237, 0.001319500501267612, -0.01288201566785574, -0.013626602478325367, -0.001522944075986743, -0.010925003327429295, 0.005360368173569441, -0.0015624797670170665, -0.023826785385608673, 0.0016209594905376434, 0.019543763250112534, -0.002041025087237358, 0.017606519162654877, 0.013237835839390755, -0.017237519845366478, -0.0017758072353899479, 0.00575901847332716, -0.022706611081957817, 0.009475364349782467, -0.005268118344247341, 0.008981170132756233, -0.012539373710751534, 0.005940223578363657, -0.0007396450964733958, -0.013811102136969566, -0.00608848175033927, 0.003512078896164894, -0.025263246148824692, -0.009304043836891651, 0.003075540065765381, -0.006134606897830963, -0.024169428274035454, -0.001588013139553368, -0.020005011931061745, -0.005017726216465235, 0.002330952789634466, -0.0248283538967371, 0.0017197984270751476, -0.01649952307343483, -0.014404135756194592, -0.014338242821395397, 0.009145901538431644, -0.009659864008426666, 0.020097261294722557, 0.23130959272384644, -0.005189047195017338, -0.0026604162994772196, 0.037453386932611465, -0.00031504928483627737, 0.01591966673731804, 0.034132398664951324, 0.004098523408174515, -0.0018433472141623497, -0.007966422475874424, -0.020479438826441765, -0.011735483072698116, -0.02266707457602024, 0.010371505282819271, -0.0006828127079643309, -0.0006914610858075321, -0.013982422649860382, -0.021454650908708572, -0.0011448849691078067, -0.023655464872717857, 0.029256341978907585, 0.013204889371991158, -0.0007750624208711088, -0.014931277371942997, 0.027516774833202362, 0.010252897627651691, -0.004464227706193924, 0.0030425935983657837, -0.007004390005022287, 0.002498979214578867, -0.008513331413269043, 0.011149038560688496, 0.01696077175438404, -0.010002505965530872, 0.011583929881453514, 0.0073074959218502045, 0.008243171498179436, -0.009771881625056267, 0.021902721375226974, 0.014245993457734585, -0.0027460765559226274, 0.013033568859100342, -0.001976779894903302, 0.010740503668785095, -0.023075610399246216, 0.027991201728582382, -0.017606519162654877, -0.011854089796543121, -0.014272350817918777, 0.0034198290668427944, -0.011735483072698116, -0.009086597710847855, -0.011781607754528522, 0.020611224696040154, -0.008414492942392826, 0.00783463753759861, 0.00014300766633823514, -0.001777454512193799, 0.02099340222775936, 0.008981170132756233, -0.009297454729676247, 0.012242856435477734, -0.0191220510751009, 0.02444617822766304, -0.02478881925344467, 0.012763408944010735, -0.01900344341993332, -0.017263878136873245, -0.0061181336641311646, -0.012539373710751534, 0.012539373710751534, 0.027833059430122375, 0.00879008136689663, 0.013903351500630379, -0.019280193373560905, -0.013494816608726978, 0.017369305714964867, -0.017158448696136475, 0.0144173139706254, 0.019161585718393326, -0.007195478770881891, 0.02185000665485859, -0.0052812970243394375, -0.04014180973172188, -0.012723872438073158, -0.03892938420176506, 0.011887036263942719, 0.002639001002535224, 0.014101029373705387, 0.005119859706610441, 0.008697831071913242, -0.010430808179080486, 0.011050199158489704, 0.004615780897438526, -0.0010888762772083282, 0.02944084070622921, -0.02007090486586094, 0.02361593022942543, -0.007907119579613209, -0.002663710853084922, -0.03133855015039444, -0.027753988280892372, 0.008572635240852833, -0.008289297111332417, -0.01271069422364235, 0.015550668351352215, 0.029124556109309196, 0.02220582775771618, -0.009883899241685867, -0.03052148036658764, -0.011781607754528522, -0.02870284393429756, -0.003577971598133445, 0.0011720657348632812, 0.012045178562402725, 0.0033489945344626904, 0.005426260642707348, -0.011616876348853111, -0.021494185552001, 0.00801254715770483, 0.0023688410874456167, -0.03357889875769615, -0.009785059839487076, 0.010786628350615501, 0.006711167749017477, -0.00014455203199759126, -0.019780976697802544, 0.023774072527885437, -0.002232113853096962, -0.024999676272273064, 0.01922747865319252, -0.01120834145694971, 0.011715714819729328, -0.007795101962983608, -0.00255004595965147, 0.015273919329047203, 0.008776902221143246, 0.01056918315589428, -0.013876994140446186, -0.0031430800445377827, 0.027490418404340744, -0.01995229721069336, -0.006269686855375767, -0.008776902221143246, 0.01186726801097393, -0.003558203810825944, -0.007274549920111895, 0.005857857409864664, -0.02468339167535305, -0.015866952016949654, -0.02229807712137699, 0.009593971073627472, 0.008302475325763226, -0.021428292617201805, 0.007814869284629822, -0.01995229721069336, -0.04203951731324196, -0.014008780010044575, 0.02717413380742073, -0.004358799662441015, -0.019319728016853333, -0.013547531329095364, 0.016196416690945625, -0.004589424002915621, 0.006121428217738867, -0.0019059452461078763, -0.16889606416225433, 0.01921430043876171, -0.0018779408419504762, -0.030785052105784416, 0.00575901847332716, 0.006381704472005367, 0.008098208345472813, -0.003963443450629711, -0.033420756459236145, -0.0010518116177991033, 0.011781607754528522, 0.0025072158314287663, -0.020716652274131775, 0.02383996546268463, 0.004589424002915621, 0.0017922803526744246, -0.022495754063129425, 0.0033259321935474873, 0.008776902221143246, 0.008987759239971638, 0.027015991508960724, 0.00676717609167099, 0.0021744577679783106, -0.014733599498867989, 0.013692495413124561, 0.008552866987884045, -0.009640096686780453, 0.008335421793162823, 0.0066419802606105804, -0.018660802394151688, -0.024736104533076286, 0.0031595530454069376, -0.006978032644838095, 0.0012346637668088078, 0.030416052788496017, 0.014522742480039597, -0.013310317881405354, -0.007083461154252291, 0.009567614644765854, 0.02233761176466942, -0.0075051742605865, 0.02373453602194786, -0.009356757625937462, 0.020347652956843376, -0.01483902707695961, 0.0254213884472847, 0.03592468053102493, 0.0012774940114468336, -0.02088797278702259, 0.0034758378751575947, -0.018357696011662483, -0.04214494675397873, 0.007795101962983608, 0.016420451924204826, -0.0045465934090316296, 0.011999053880572319, -0.02469656988978386, 0.019636012613773346, -0.011181985028088093, -0.02849198691546917, 0.0005625585909001529, -0.022693432867527008, -0.0015303570544347167, -0.011788196861743927, -0.003045888151973486, 0.009442418813705444, -0.014522742480039597, -0.019965477287769318, -0.01900344341993332, 0.012625033967196941, -0.01909569278359413, -0.017843732610344887, 0.006497016176581383, -0.0021184489596635103, 0.009534668177366257, 0.022693432867527008, 0.00043900986202061176, 0.016341380774974823, -0.01389017328619957, -0.02625163644552231, -0.010048630647361279, 0.03737431764602661, -0.024907425045967102, -0.027938488870859146, 0.0013730382779613137, -0.00830906443297863, -0.006497016176581383, 0.0028416209388524294, 0.018015053123235703, -0.015748346224427223, 0.015629738569259644, -0.038744885474443436, -0.03173390403389931, -0.04720550402998924, 0.0042566657066345215, 0.012829300947487354, 0.022877931594848633, -0.008500153198838234, -0.005607465282082558, -0.014061493799090385, -0.024854712188243866, -0.02304925210773945, -0.014259171672165394, 0.010648254305124283, 0.025829922407865524, 0.010048630647361279, 0.02233761176466942, 0.013732030987739563, 0.03099590726196766, -0.023523680865764618, 0.0023408366832882166, 0.004764039535075426, 0.014957633800804615, 0.003057419555261731, 0.011682769283652306, 0.04043173789978027, 0.0035516144707798958, -0.018476301804184914, 0.02386632189154625, -0.008691241964697838, 0.03766424581408501, -0.011017252691090107, -0.013811102136969566, 0.004902414046227932, 0.00031401970773003995, 0.028043916448950768, -0.10484839975833893, -0.010944770649075508, 0.0010905235540121794, 0.013626602478325367, -0.012018821202218533, 0.01566927507519722, -0.01864762231707573, 0.005551456939429045, -0.00427313894033432, 0.020611224696040154, -0.0049090031534433365, -0.00715594319626689, 0.0007005213410593569, -0.015471597202122211, 0.017382483929395676, -0.011234698817133904, 0.0022271720226854086, -0.029625341296195984, -0.01365295983850956, 0.02028176188468933, -0.0189770869910717, -0.0075315311551094055, -0.025790387764573097, -0.0061609637923538685, 0.011603697203099728, 0.0022765914909541607, -0.021046115085482597, 0.024261677637696266, 0.020743010565638542, 0.015735168009996414, -0.013415745459496975, -0.007274549920111895, 0.020598046481609344, -0.036135535687208176, -0.00011078203533543274, 0.00596328591927886, 0.0061082495376467705, -0.004487290047109127, 0.007966422475874424, 0.0012766702566295862, -0.00794665515422821, -0.019491048529744148, 0.007169121410697699, -0.00537354638800025, 0.008203635923564434, -0.008625349029898643, -0.02242986112833023, 0.007755566388368607, -0.010252897627651691, -0.002418260555714369, -0.012743640691041946, 0.029019128531217575, -0.021981792524456978, -0.00788735132664442, 0.004724503960460424, -0.011069967411458492, 0.027727631852030754, 0.015273919329047203, 0.004754155408591032, -0.000864841160364449, 0.013547531329095364, -0.008045493625104427, -0.01959647797048092, 0.024050820618867874, 0.0016613187035545707, -0.009745524264872074, -0.0007153471815399826, 0.0006263921386562288, 0.007281139027327299, -0.0031430800445377827, 0.027279561385512352, 0.02634388580918312, -0.013099460862576962, 0.02589581534266472, -0.020808901637792587, 0.011854089796543121, -0.02814934402704239, -0.006806712131947279, 0.010766861028969288, -0.041143376380205154, -0.006892372388392687, -0.01982051320374012, 0.014232815243303776, -0.03255097568035126, 0.015471597202122211, 0.002237055916339159, -0.000528788601513952, 0.027253204956650734, 0.016539057716727257, -0.011794785968959332, 0.017487911507487297, 0.02954627014696598, 0.014707242138683796, -0.01946469210088253, 0.009066830389201641, 0.024143071845173836, -0.039324741810560226, 0.012097892351448536, 0.01217696350067854, -0.008638528175652027, -0.020743010565638542, -0.009198615327477455, -0.039825525134801865, 0.029045484960079193, 0.015445239841938019, 0.0073602101765573025, 0.007762155495584011, -0.02196861244738102, -0.009936613030731678, -0.0027230142150074244, -0.006276275962591171, 0.003045888151973486, -0.012618444859981537, 0.04201316088438034, 0.013211478479206562, 0.026449313387274742, -0.009435828775167465, -0.009765292517840862, 0.00763037009164691, 0.008177279494702816, 0.003703167662024498, 0.011597108095884323, -0.005498742684721947, 0.0015443592565134168, -0.00047442715731449425, 0.02232443355023861, 0.0022502343636006117, 0.019675549119710922, -0.012895193882286549, 0.029994338750839233, -0.011432376690208912, 0.000877196027431637, -0.014483206905424595, -0.019530585035681725, -0.012723872438073158, 0.03415875509381294, 0.01073391456156969, -0.007867584004998207, -0.011320359073579311, 0.009218383580446243, 0.021533722057938576, -0.009923434816300869, -0.016670843586325645, -0.027806703001260757, -0.004345620982348919, -0.004997958429157734, -0.007248192559927702, 0.006431123707443476, 0.0031908522360026836, 0.00333911064080894, 0.01027266588062048, -0.01636773720383644, 0.007577655836939812, 0.021046115085482597, 0.018713515251874924, -0.009198615327477455, 0.0039008455350995064, -0.0038547206204384565, 0.003914024215191603, -0.007261371240019798, -0.018845301121473312, -0.032577332109212875, 0.01829180307686329, 0.0054130819626152515, 0.022139934822916985, 0.021428292617201805, 0.012611855752766132, -0.019174763932824135, 0.006786943878978491, 0.011748661287128925, 0.030205195769667625, -0.043963585048913956, -0.004563066642731428, -0.006378409452736378, 0.01068120077252388, -0.027595845982432365, 0.02111200802028179, 0.012888604775071144, -0.018252266570925713, -0.013066514395177364, 0.0044148084707558155, 0.026277992874383926, 0.02933541312813759, 0.003973327577114105, -0.0264624934643507, 0.025724494829773903, 0.02540821023285389, 0.029757125303149223, -0.007992779836058617, -0.00601929472759366, 0.006688104942440987, -0.01002227421849966, -0.004098523408174515, 0.0062268562614917755, 0.012519605457782745, -0.008981170132756233, 0.02386632189154625, 0.025961708277463913, 0.013929708860814571, 0.010799807496368885, 0.025843102484941483, -0.003531846683472395, 0.005831500515341759, 0.01353435218334198, 0.003337463364005089, -0.012045178562402725, -0.021902721375226974, 0.016288666054606438, -0.029282698407769203, -0.018436767160892487, -0.01228898111730814, 0.017290234565734863, 0.009271097369492054, 0.000636687851510942, 0.014232815243303776, 0.034000612795352936, -0.021177900955080986, 0.03502853959798813, 0.0072086569853127, -0.02907184138894081, -0.02470974810421467, 0.01252619456499815, 0.016644487157464027, 0.016354558989405632, 0.01304674707353115, 0.0062136780470609665, -0.0028729201294481754, 0.015115776099264622, 0.02182365022599697, -0.006006116047501564, -0.006335579324513674, -0.013106049969792366, 0.010826163925230503, 0.0011440613307058811, -0.025197353214025497, -0.010430808179080486, -0.012269213795661926, 0.005574519280344248, 0.003986505791544914, 0.010002505965530872, -0.00333911064080894, 0.018924372270703316, -0.006457480601966381, -0.019280193373560905, 0.027332276105880737, 0.01205176766961813, 0.014891741797327995, 0.020018190145492554, 0.002037730533629656, -0.01317194290459156, 0.008875741623342037, -0.011313769966363907, 0.0038744884077459574, 0.014535920694470406, -0.017184806987643242, -0.015010348521173, 0.005986348260194063, 0.0004962541279383004, -0.006312516983598471, -0.015313454903662205, 0.0005337305483408272, 0.006460775621235371, 0.0013112640008330345, 0.011307180859148502, -0.009330401197075844, -0.030099768191576004, -0.005864446982741356, 0.003940381109714508, -0.017870089039206505, 0.008763724006712437, -0.029888911172747612, 0.007340442389249802, 0.01365295983850956, -0.018120482563972473, -0.012249445542693138, 0.035423893481492996, -0.006638685707002878, -0.01909569278359413, -0.0025352202355861664, 0.023115145042538643, 0.0008310711709782481, -0.030416052788496017, 0.023813607171177864, -0.004744271747767925, -0.007485406473278999, -0.0024413231294602156, -0.0038053011521697044, -0.012097892351448536, -0.013863815926015377, -0.01002227421849966]}] \ No newline at end of file diff --git a/metagpt/reflect_and_retrieve/gpt_structure.py b/metagpt/reflect_and_retrieve/gpt_structure.py index 01a29b6a9..a1226f801 100644 --- a/metagpt/reflect_and_retrieve/gpt_structure.py +++ b/metagpt/reflect_and_retrieve/gpt_structure.py @@ -5,14 +5,15 @@ # Date:9.25 import openai -openai.api_key = "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" +openai.api_key = "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" +openai.proxy='http://127.0.0.1:7000' # 直接调用Prompt生成 def response_generate(prompt): completion = openai.Completion.create( model="gpt-3.5-turbo-instruct", prompt= prompt, temperature=0, - max_tokens = 20, + max_tokens = 500, top_p = 1, stream = False, frequency_penalty = 0, diff --git a/metagpt/reflect_and_retrieve/reflect.py b/metagpt/reflect_and_retrieve/reflect.py index e341f5e61..5321ecdf1 100644 --- a/metagpt/reflect_and_retrieve/reflect.py +++ b/metagpt/reflect_and_retrieve/reflect.py @@ -1,6 +1,8 @@ import json from gpt_structure import final_response +import run_gpt +from GA_memory_storage import Agent_memeory from retrive import agent_retrive ''' 首先 @@ -39,8 +41,28 @@ def generate_insights_and_evidence(agent,memories_list,question, n=5): Input: {statements} - What {n} high-level insights can you infer from the above statements? (example format: insight (because of 1, 5, 3)) - 1.''' + What {n} high-level insights can you infer from the above statements? + You should return a list of list[str,list] . The first element is the insight you have found.The second element is the + ''' - ret = final_response(prompt.format(question=question,statements=statements,n=n), "['insightA',(1,2,3)]") - print(ret) \ No newline at end of file + ret = final_response(prompt.format(question=question,statements=statements,n=n), "['insightA',[1,2,3]]") + try: + insight_list = json.loads(ret) + return (insight_list) + except: + return ret + +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") + + # 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]) + print(type(B)) + print(B) + ''' + 这里是输出,list形式,返回给记忆。 + [['The pharmacy is a friendly and helpful community.', [0, 2, 9, 12]], ['The pharmacy is a place where people come for more than just medication.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for advice and conversation.', [0, 2, 6, 9, 12]], ['The pharmacy is a place where people come for assistance with daily tasks.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for political discussions.', [1]]] + ''' \ No newline at end of file From 5a41185bac9c12c0e1a8292d4179db7ab8ee75ff Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 26 Sep 2023 11:50:16 +0800 Subject: [PATCH 11/30] v 1.2 --- metagpt/reflect_and_retrieve/reflect.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/metagpt/reflect_and_retrieve/reflect.py b/metagpt/reflect_and_retrieve/reflect.py index 5321ecdf1..ae6487918 100644 --- a/metagpt/reflect_and_retrieve/reflect.py +++ b/metagpt/reflect_and_retrieve/reflect.py @@ -1,8 +1,10 @@ import json +from logging import Logger +import time from gpt_structure import final_response import run_gpt -from GA_memory_storage import Agent_memeory +from GA_memory_storage import Agent_memeory,Meomry_basic from retrive import agent_retrive ''' 首先 @@ -48,8 +50,11 @@ def generate_insights_and_evidence(agent,memories_list,question, n=5): ret = final_response(prompt.format(question=question,statements=statements,n=n), "['insightA',[1,2,3]]") try: insight_list = json.loads(ret) + for insight,index in insight_list: + agent.memory_list.append(Meomry_basic(time.time(),None,insight,None,None)) return (insight_list) except: + Logger.error('我们无法获得想要的返回。') return ret if __name__ == "__main__": @@ -59,9 +64,11 @@ if __name__ == "__main__": # 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]) - print(type(B)) - print(B) + + for i in A: + B=generate_insights_and_evidence(John,John.memories_list,question=A[0]) + print(type(B)) + print(B) ''' 这里是输出,list形式,返回给记忆。 [['The pharmacy is a friendly and helpful community.', [0, 2, 9, 12]], ['The pharmacy is a place where people come for more than just medication.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for advice and conversation.', [0, 2, 6, 9, 12]], ['The pharmacy is a place where people come for assistance with daily tasks.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for political discussions.', [1]]] From 19d177e7b1bac4c6d1677a4cdf787caad2be4783 Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 26 Sep 2023 12:51:28 +0800 Subject: [PATCH 12/30] =?UTF-8?q?=E6=8C=89=E7=85=A7=E8=A7=84=E8=8C=83?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reflect_and_retrieve/GA_memory_storage.py | 103 +++++++++++----- metagpt/reflect_and_retrieve/gpt_structure.py | 70 ++++++++--- metagpt/reflect_and_retrieve/pycodetester.py | 3 + metagpt/reflect_and_retrieve/reflect.py | 52 +++++---- metagpt/reflect_and_retrieve/retrive.py | 110 +++++++++--------- metagpt/reflect_and_retrieve/run_gpt.py | 58 ++++----- 6 files changed, 254 insertions(+), 142 deletions(-) create mode 100644 metagpt/reflect_and_retrieve/pycodetester.py diff --git a/metagpt/reflect_and_retrieve/GA_memory_storage.py b/metagpt/reflect_and_retrieve/GA_memory_storage.py index 31ccdaa0d..b960b73f3 100644 --- a/metagpt/reflect_and_retrieve/GA_memory_storage.py +++ b/metagpt/reflect_and_retrieve/GA_memory_storage.py @@ -4,73 +4,124 @@ # author: didi # Date:9.24 -from run_gpt import run_gpt_prompt_chat_poignancy,run_gpt_random_concept +from run_gpt import run_gpt_prompt_chat_poignancy, run_gpt_random_concept from gpt_structure import embedding from retrive import agent_retrive import time import json # Meomry_basic 类 + + class Meomry_basic: def __init__( - self,created_time,accessed_time, + self, created_time, accessed_time, description, poignancy, - embedding_key = None) -> None: + embedding_key=None) -> None: + """ + Initializes a basic memory object. + + Args: + created_time (datetime): The time when the memory was created. + accessed_time (datetime): The time when the memory was last accessed. + description (str): The description of the memory. + poignancy (int): The level of emotional intensity associated with the memory. + embedding_key (Optional[str]): The embedding key for the memory (to avoid redundant vectorization). + + Returns: + None + """ self.created_time = created_time # 记忆创建时间 self.accessed_time = accessed_time # 记忆上次调用时间 self.description = description # 记忆描述 self.poignancy = poignancy # 记忆心酸程度 - if embedding_key == None: # 记忆emmbeding key(避免重复向量化花钱) + if embedding_key is None: # 记忆emmbeding key(避免重复向量化花钱) self.embedding_key = embedding(self.description) - else: - self.embedding_key = embedding_key + 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: + +class Agent_memory(object): + + def __init__(self, name: str, iss: str, + memory_forget: float = 0.99, + memories_list: list[Meomry_basic] = [], memory_path: str = None) -> None: + ''' + 定义Agent,替换原有Agent使用,需要其他人根据需求补全功能。 + Attributes: + name:agent name + iss:agent iss(性格特征) + memory_forget:agent 记忆遗忘速率(计算近因性) + memories_list:agent 记忆JSON文件存储地址 + memory_path:记忆存储地址 + ''' 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(),等到环境搭好之后使用游戏内时间) + # agent 当前时间(现在使用的time.time(),等到环境搭好之后使用游戏内时间) + self.curr_time = time.time() # 若给到memory_path 进行记忆初始化 - if 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" + def memory_save(self, PATH: str) -> None: + ''' + 将Memory存储在指定PATH的JSON文件中,命名为"{self.name}'s memory + Args: + PATH:str + Return: + None + ''' 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): + def memory_load(self, PATH: str) -> list[Meomry_basic]: """ - 将Memory从指定路径的JSON文件中Load出来,返回一个记忆列表;如果load失败,返回一个空列表 + 将Memory从指定路径的JSON文件中Load出来,返回一个记忆列表;如果load失败,返回一个空列表。 + Args: + PATH:str + Return: + List(Meomry_basic) """ try: - with open(PATH,'r') as file: + with open(PATH, 'r') as file: memory_data = json.load(file) - self.memories_list = [Meomry_basic(**mem) for mem in memory_data] + self.memories_list = [Meomry_basic( + **mem) for mem in memory_data] return self.memories_list - except: + except OSError: 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") + 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_memory( + "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) + 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) @@ -80,9 +131,7 @@ if __name__ == "__main__": 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) + 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} - - \ No newline at end of file diff --git a/metagpt/reflect_and_retrieve/gpt_structure.py b/metagpt/reflect_and_retrieve/gpt_structure.py index a1226f801..c5397dfd3 100644 --- a/metagpt/reflect_and_retrieve/gpt_structure.py +++ b/metagpt/reflect_and_retrieve/gpt_structure.py @@ -6,31 +6,61 @@ import openai openai.api_key = "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" -openai.proxy='http://127.0.0.1:7000' +openai.proxy = 'http://127.0.0.1:7000' # 直接调用Prompt生成 + + def response_generate(prompt): + """ + 通过将特殊指令加入Prompt生成最终的响应。 + + 参数: + - prompt:要生成响应的提示文本。 + - special_instruction:要加入Prompt的特殊指令。 + - example_output(可选):示例输出的JSON字符串。 + + 返回: + 生成的最终响应。 + + """ completion = openai.Completion.create( model="gpt-3.5-turbo-instruct", - prompt= prompt, + prompt=prompt, temperature=0, - max_tokens = 500, - top_p = 1, - stream = False, - frequency_penalty = 0, - presence_penalty = 0 + max_tokens=500, + 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): + + +def final_response(prompt, special_instruction, example_output=None): + """ + 通过将特殊指令加入Prompt生成最终的响应。 + + 参数: + - prompt:要生成响应的提示文本。 + - special_instruction:要加入Prompt的特殊指令。 + - example_output(可选):示例输出的JSON字符串。 + + 返回: + 生成的最终响应。 + + """ prompt = '"""\n' + prompt + '\n"""\n' prompt += f"Output the response to the prompt above in json. {special_instruction}\n" - if example_output: + 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 @@ -45,24 +75,36 @@ def prompt_generate(curr_input, prompt_lib_file): RETURNS: a str prompt that will be sent to OpenAI's GPT server. """ - if type(curr_input) == type("string"): + 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): + for count, i in enumerate(curr_input): prompt = prompt.replace(f"!!", i) - if "###" in prompt: - prompt = prompt.split("###")[1] + if "###" in prompt: + prompt = prompt.split( + "###")[1] return prompt.strip() # 使用OpenAI embedding库进行存储 + + def embedding(query): + """ + Generates an embedding for the given query. + + Args: + query (str): The text query to be embedded. + + Returns: + str: The embedding key generated for the 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 + return embedding_key diff --git a/metagpt/reflect_and_retrieve/pycodetester.py b/metagpt/reflect_and_retrieve/pycodetester.py new file mode 100644 index 000000000..30c9abaec --- /dev/null +++ b/metagpt/reflect_and_retrieve/pycodetester.py @@ -0,0 +1,3 @@ +import pycodestyle as pcs +checker = pcs.StyleGuide() +checker.input_dir('./') diff --git a/metagpt/reflect_and_retrieve/reflect.py b/metagpt/reflect_and_retrieve/reflect.py index ae6487918..bf219073b 100644 --- a/metagpt/reflect_and_retrieve/reflect.py +++ b/metagpt/reflect_and_retrieve/reflect.py @@ -4,72 +4,82 @@ from logging import Logger import time from gpt_structure import final_response import run_gpt -from GA_memory_storage import Agent_memeory,Meomry_basic +from GA_memory_storage import Agent_memory, Meomry_basic 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='' + +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=''' + 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) + 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) + +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): + for count, mem in enumerate(memories_list): statements += f'{str(count)}. {mem.description}\n' - prompt=''' + prompt = ''' Input: {statements} What {n} high-level insights can you infer from the above statements? You should return a list of list[str,list] . The first element is the insight you have found.The second element is the ''' - - ret = final_response(prompt.format(question=question,statements=statements,n=n), "['insightA',[1,2,3]]") + + ret = final_response(prompt.format( + question=question, statements=statements, n=n), "['insightA',[1,2,3]]") try: insight_list = json.loads(ret) - for insight,index in insight_list: - agent.memory_list.append(Meomry_basic(time.time(),None,insight,None,None)) + for insight, index in insight_list: + agent.memory_list.append(Meomry_basic( + time.time(), None, insight, None, None)) return (insight_list) except: Logger.error('我们无法获得想要的返回。') return ret + 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") + John = Agent_memory( + "John", John_iss, memory_path="agent_memories/John_memory.json") # 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) - + A = generate_focus_point(John.memories_list) + for i in A: - B=generate_insights_and_evidence(John,John.memories_list,question=A[0]) + B = generate_insights_and_evidence( + John, John.memories_list, question=A[0]) print(type(B)) print(B) ''' 这里是输出,list形式,返回给记忆。 [['The pharmacy is a friendly and helpful community.', [0, 2, 9, 12]], ['The pharmacy is a place where people come for more than just medication.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for advice and conversation.', [0, 2, 6, 9, 12]], ['The pharmacy is a place where people come for assistance with daily tasks.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for political discussions.', [1]]] - ''' \ No newline at end of file + ''' diff --git a/metagpt/reflect_and_retrieve/retrive.py b/metagpt/reflect_and_retrieve/retrive.py index f3e1fc4c9..9a75a5c29 100644 --- a/metagpt/reflect_and_retrieve/retrive.py +++ b/metagpt/reflect_and_retrieve/retrive.py @@ -9,10 +9,13 @@ from numpy.linalg import norm from gpt_structure import embedding # 实现三(2)合一搜索 -def agent_retrive(agent,query,n,topk): + + +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) + sorted_nodes = sorted( + Nodes, key=lambda node: node.accessed_time, reverse=True) Nodes = sorted_nodes[:n] if len(sorted_nodes) >= n else sorted_nodes # 创建一个分数列表 @@ -25,74 +28,88 @@ def agent_retrive(agent,query,n,topk): "relevance":搜索结果 } """ - Score_list = extract_importance(Nodes,Score_list) - Score_list = extract_recency(Score_list) # 计算近因性函数还没有实现,目前都是1 - Score_list = extract_relevance(Score_list,query) + 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] # 三个因素的权重,重要性,近因性,相关性 + 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) + ) + 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 + top_v = dict(sorted(d.items(), + key=lambda item: item[1], + reverse=True)[:x]) + return top_v # 抽取重要性 -def extract_importance(Nodes,Score_list): + + +def extract_importance(Nodes, Score_list): for i in range(len(Nodes)): - Score = {"memory":Nodes[i], - "importance":Nodes[i].poignancy + Score = {"memory": Nodes[i], + "importance": Nodes[i].poignancy } Score_list.append(Score) return Score_list # 抽取相关性 -def extract_relevance(Score_list,query): + + +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 + 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 + Score_list[i]['recency'] = 1 return Score_list # 计算余弦相似度 -def cos_sim(a, b): - return dot(a, b)/(norm(a)*norm(b)) + + +def cos_sim(a, b): + return dot(a, b)/(norm(a)*norm(b)) # 单个列表归一化 -def normalize_List_floats(Single_list,target_min, target_max): + + +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: + if range_val == 0: for i in range(len(Single_list)): - Single_list[i] = (target_max - target_min)/2 - else: + 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) + 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 = [] @@ -100,33 +117,20 @@ def normalize_Socre_floats(Score_list, target_min, target_max): 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.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) + 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 index 122ba8696..71d2a7a3d 100644 --- a/metagpt/reflect_and_retrieve/run_gpt.py +++ b/metagpt/reflect_and_retrieve/run_gpt.py @@ -6,17 +6,19 @@ import random import json -from gpt_structure import final_response,prompt_generate +from gpt_structure import final_response, prompt_generate -# 使用GPT衡量心酸程度 -def run_gpt_prompt_chat_poignancy(agent,event_description): +# 使用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, + def create_prompt_input(agent, event_description): + prompt_input = [agent.name, agent.iss, agent.name, event_description] @@ -24,35 +26,37 @@ def run_gpt_prompt_chat_poignancy(agent,event_description): # 1. Prompt构建 # 2. Instruction给出 - prompt_template = "Prompt_template/poignancy_chat_v1.txt" ######## - prompt_input = create_prompt_input(agent, event_description) ######## + 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) + 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)) + "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)) From e1d399e24c461fce32a22c4db9148601b3244ecb Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 26 Sep 2023 13:01:12 +0800 Subject: [PATCH 13/30] v 1.4 --- metagpt/reflect_and_retrieve/GA_memory_storage.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/metagpt/reflect_and_retrieve/GA_memory_storage.py b/metagpt/reflect_and_retrieve/GA_memory_storage.py index b960b73f3..db2e5c559 100644 --- a/metagpt/reflect_and_retrieve/GA_memory_storage.py +++ b/metagpt/reflect_and_retrieve/GA_memory_storage.py @@ -129,7 +129,10 @@ if __name__ == "__main__": 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?" + 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}") From e2af76fb08d172ee22f794f0661413dda9d21531 Mon Sep 17 00:00:00 2001 From: ziming <2216646743@qq.com> Date: Tue, 26 Sep 2023 13:41:35 +0800 Subject: [PATCH 14/30] v1.4 --- metagpt/reflect_and_retrieve/GA_memory_storage.py | 10 +++++----- metagpt/reflect_and_retrieve/gpt_structure.py | 2 +- metagpt/reflect_and_retrieve/reflect.py | 11 +++++------ 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/metagpt/reflect_and_retrieve/GA_memory_storage.py b/metagpt/reflect_and_retrieve/GA_memory_storage.py index db2e5c559..c5ca24729 100644 --- a/metagpt/reflect_and_retrieve/GA_memory_storage.py +++ b/metagpt/reflect_and_retrieve/GA_memory_storage.py @@ -13,7 +13,7 @@ import json # Meomry_basic 类 -class Meomry_basic: +class Memory_basic: def __init__( self, created_time, accessed_time, description, @@ -48,7 +48,7 @@ class Agent_memory(object): def __init__(self, name: str, iss: str, memory_forget: float = 0.99, - memories_list: list[Meomry_basic] = [], memory_path: str = None) -> None: + memories_list: list[Memory_basic] = [], memory_path: str = None) -> None: ''' 定义Agent,替换原有Agent使用,需要其他人根据需求补全功能。 Attributes: @@ -81,7 +81,7 @@ class Agent_memory(object): memory_data = [mem.__dict__ for mem in self.memories_list] json.dump(memory_data, file) - def memory_load(self, PATH: str) -> list[Meomry_basic]: + def memory_load(self, PATH: str) -> list[Memory_basic]: """ 将Memory从指定路径的JSON文件中Load出来,返回一个记忆列表;如果load失败,返回一个空列表。 Args: @@ -92,7 +92,7 @@ class Agent_memory(object): try: with open(PATH, 'r') as file: memory_data = json.load(file) - self.memories_list = [Meomry_basic( + self.memories_list = [Memory_basic( **mem) for mem in memory_data] return self.memories_list except OSError: @@ -121,7 +121,7 @@ if __name__ == "__main__": 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) + M = Memory_basic(curr_time, curr_time, memory, poignancy) John.memories_list.append(M) John.memory_save(John.memory_path) diff --git a/metagpt/reflect_and_retrieve/gpt_structure.py b/metagpt/reflect_and_retrieve/gpt_structure.py index c5397dfd3..f9a44725c 100644 --- a/metagpt/reflect_and_retrieve/gpt_structure.py +++ b/metagpt/reflect_and_retrieve/gpt_structure.py @@ -75,7 +75,7 @@ def prompt_generate(curr_input, prompt_lib_file): RETURNS: a str prompt that will be sent to OpenAI's GPT server. """ - if type(curr_input) == type("string"): + if type(curr_input) is type("string"): curr_input = [curr_input] curr_input = [str(i) for i in curr_input] diff --git a/metagpt/reflect_and_retrieve/reflect.py b/metagpt/reflect_and_retrieve/reflect.py index bf219073b..1e1bb1352 100644 --- a/metagpt/reflect_and_retrieve/reflect.py +++ b/metagpt/reflect_and_retrieve/reflect.py @@ -4,11 +4,8 @@ from logging import Logger import time from gpt_structure import final_response import run_gpt -from GA_memory_storage import Agent_memory, Meomry_basic +from GA_memory_storage import Agent_memory, Memory_basic from retrive import agent_retrive -''' -首先 -''' def agent_reflect(agent): @@ -35,7 +32,9 @@ def generate_focus_point(memories_list, n=3): try: poi_dict = json.loads(out) return (poi_dict['output']) - except: + except ValueError: + print(out) + Logger.error('无法返回正常结果') return out @@ -57,7 +56,7 @@ def generate_insights_and_evidence(agent, memories_list, question, n=5): try: insight_list = json.loads(ret) for insight, index in insight_list: - agent.memory_list.append(Meomry_basic( + agent.memory_list.append(Memory_basic( time.time(), None, insight, None, None)) return (insight_list) except: From 9cd82bff91a5f940f9fbc612fd81431eeece835e Mon Sep 17 00:00:00 2001 From: Sirui Hong <34952977+stellaHSR@users.noreply.github.com> Date: Thu, 12 Oct 2023 23:13:30 +0800 Subject: [PATCH 15/30] Add files via upload add log file --- docs/resources/MetaGPT-new-log.png | Bin 0 -> 62057 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/resources/MetaGPT-new-log.png diff --git a/docs/resources/MetaGPT-new-log.png b/docs/resources/MetaGPT-new-log.png new file mode 100644 index 0000000000000000000000000000000000000000..23e304a9baa17834955c4c30dcc3aad1a86d636d GIT binary patch literal 62057 zcmeGEcRbeZ`v;D{E_-BUWQUZMy+tl0sc&2_!b^E{5@JjU}FFAs6LS~OJbR0x95XrDWC2|>ul z;ok`gGWf)l>8uL;kJ9bj6;A{?c>(-I{NC3-qh{cT`7!d#kYk{qd|ab{N5z9wlG((-I=dE!$tF5O`hW^gMbFG*%wvA{ z3~4feIIg610`-zQm{NE2e$1t4#e!9kwCqDQIA4%f&@1sYL5!!!0Ngb}m9Q=emOQi7c zqn303+w6ZbLy-Te27>(0oRI%{4Fvh0b3~B;1r!ANU))5H{}1qByM_d8$%u}QPW40m z-rn9u&HnGHk5>D8dVPy)aruUScUL<%@~vuu_8JCiws!!S2*#j5Wt@(WGXfE{{Jl2U znObwlVz(rfxUABYW_r>v;3&qDVYq4M#sdIAwX05nTf(r+%Y?*nbt`}^Mbq1qp_Dm4 zPxxLrUv|VmqP%Mm#ZQ1ao8l-s>Y~(aVZoR&ls5Ut6PJ2xA_KoR?oiB4sszy>2%!x{ zOV~HNoW;z%W+P@Ar8*4lP4BINo_Y3z)#sXilu!)*{Q2|C(o!xV7ZYyn;_K_n*50&X zdW8r-U{2=6(UG;HrrNqEVrMoAa-Q>+)ztj0@;(k!Sx}B62)$gAh-}spv_YCCIe6Z}&nQ<0o7l!hLiL-rt zAtFQvL}fogCEcR_jKdqfj9lRetXMTrAsCB(?pJ6V_ib&hL|C5v*uCzT*d-S8u<0ubtHs5wOe)ae%TZX#T<}dyFC2kcK76y2C+!wu< zE`5e#3row)hzRO54&}=R^_q6WzkmOJX93cw6-MRjbq++c#8Q{Y68lJt#I0ch7jYg| zpE~%iHsG{X>2rf6vYGHJ?%gR;Ia9#IPZSGdBQ&3V`}#HEhJ3b(L4DNOj6Xj|-uEu9 z0p{)!MR{>#D;go3<_q{XHl~-Al{Ivk2*HM-LLeLu|LPL^i667Z=qwb$0`kVbN99eJ zC{75m?@oaohV)SGXoaGm0J+5nI?jG(nQVzESBMmZ*2R5r5PoN8$8K4U zJBHM?%eE=9JUbHP^5O!zg)EEb2%lf##S@hC(dn|UctEl*v=6>ussrl3u5iugIch7i zN5vVUm*9Co-&qpZ+I)&hpy&!JLLBiu`Eel<^t?mpd4oK49Lt9p8Z9g=5*W}k){H@m zg?;bbNhJ$b8~XN*u^Q9KGVrK8s5}(*RCx{8gr`zbRz4{*Dkdg&7%QfwrS<*KAFnHH zu-YjF)f-{@x^FWxGg5vL`IuIo2e9Badg0hle105JXYa`qq})3cm6e$qF-UFb0g?QY z@j|m7n%^H{?aOxJy(>PuF$TbqzBS(%<5|*N)qrZIr z{<`!j98QMnqB393h;4sjzY{k8&+RH1PTF`i_;fh{y^_uQ*|#IcJCfuHZRu1lO368) zaFWBe2v~_~`G*e|zkT~wFHcxa-kd5v)G0Be^s5$ja~isK`y9p}eT^>3x{QG< z`EJ(t?epj8Wtwq$1CT&%4|;=y9)l{3aw^K8UlJAkS7~v3+q93PmO2|<`SIWxPi}7R zI73%dxeK`a&=ahLfwB3g**+0D@)I0bZhe{~1AWh50m}jCT@V=47nY`{`OyoLkHEAD z8g;5rYO^eS&^gGte z<8Ls9aew~&8LY?a8A_k2&`_GDh)mHaA}5eDk=gTog$qF{&ya%9avA$v^w&-V5D&i1 z4vkp+eV`n8F$TDqE@92KPlJC*tyk0ew&v#rlarG8;VddqK@8$ZDk^|k(7OOyR;iBe z6O}c?kCk@RrbMvD=mk0!J1SO`m7$+%Fo_Cv9#B*Kj0Nsc=91HR^XyVnlO_=%VS6vA zvZA8<$zcTFe{iUR{*sTITY-}bCALU&lZDqDb%|Xp2LccT^=;cy0}g!zXX~${hb0~y z7HK0dMif4+c3-7Iww4EqIY z;NXUcdYPl5Pyq3KoUNF7F*g~4KY{u++=YRGfwpB)IUCG;ileGB=$YsP3_`e$Dtxc5 zQzg5s3YYLp1U_gKqywS3S^|5r1iSco3#T^>N(pH9@asolJU*(Ehf#1x= zImI<+3L(>OUS3c0^74S<-uviY=PAb!L5-R*y`JwfYqzUluS7H~5~PCbc%nW|ksx+{ zd)sSLArZdd^!QO5d=;VSD*0<^eO(TNO$b4mJ`nIF&CSxXvUpTS@xl~v^k8ufobq&f zfB*D9{;~~*?@TUheIQ0^PoS44c)vprk^96;4?;lwG1do|TEKE#gWu7}hc!Zfe@QWc z`W6JAgRW^gyGe%S(xmVObI8lj2ay=4p^vhlkN%vWKSu$-97pB%RtKKEj1rQ44`s9j zB<#q}3k=vX!WA#u!ipE?(Z>_e$3Hw+rom@2*2Cqqpj>u>We`MB_MX}-wi$!1rksNf zIXdi%dVg)exzhw9*i``he3y~?oy5*Lc*Fzs*US8{^U#lp2{m+cIaC{$wcw-5^npdu zZ~E0idrII>E}*_*TwkBT&CQJmj$#Zyudo4CwEi@7TP={7<402L+!@kgFC{}ta-=pQ z8(mOF7JL^7)fFBR*U|(smE%#~tWecQ)edWnUb>$U%E4cEAD=ih)*xOM2KTfyLF<*n z(5H`{*_30CI*crLT$5q|hL=yG?z8%Rbu~*hrdIrn*{s4#h!c8+Ycp?15bT_0L~e3& zG6}M4S?qZF^l4r2XsoE)c?luc3+@3NA5B<;T@!l1S#Sy1j|Zwy7C?^dza3b7_1)_Q z7(3jcl|FdZE*pTfZLQ!45#{6^@L_lOfU)_4I_rX@Ju*aDPhXAO2FTyN2>05h@8IBY zT`GYe8MkZ4k^YBgxV&!NN&tf=Li#=Z{S*Hg;M<|?6+D4%FKhr|c$e;b zhY`Z7gPTU==79o5y3c#82*DpES=7tNr!+~G7;!QRadj62m*sM>S-YRIZbmnF=r#H< z+kYY%u|ZjhXcXFk`?G5kK?s)MlD_Qk!(|Zm4mM**GYfH@Z3l$%{}RGdCh2hmd!ca{ zy{2Ac&NxK{1>9>|h(w?&cosCAq7fR&F53#IR+b?K^mZM9LzkQWT4_~PGJ>Cd5G?(V zRUg!$$~>=dMY=A|)&bXvXeglZ@$ldS*^^1p(ISKqlolFh&#~qycOvA)CuKNf{R=9E zyXgy}rg}=UbV!GczZDXb`%Xx>?ceO!JiRS($fPa zSor}%YM^(|1F`tvYKq$+#(GqXz!n6QL5(wg-$qAM7UU7fLeNqlUtie0BNHr;z+0R` zf?tm?dU_C{>`|8?gDrl^9s}3sSf=2_80G@8P7XcwhM3%>kB?7MC^??CI~<7qin1eH zR#la|#*cVi%pbTA(PX;?3bDFt1(Gjq4-8&Mz3RrsAWmGaFT#orP3DgNRXnO1w7c(Z z(7eAeQ;F#~k~;I89OW7g;zkWlmYHK-e~+x!iXmrhXK!YJ;bqfCQ+|G^lcCVP@=29@ z@BOR-F>Ai=?vJBmVo**{%gPqY6-W!>J13%ED(^ZP@VD}{=;Z9`){2s+ukXg*q96If zu{`mjuTIC*P9uo80JCsmea^h4}y7-`hB^ z$fKGI(*AcOBODo2c!le(8HsDo*&N1!B8o|f2OTlN?V#du12PD*po7weKFF;(@8jk5 zvNe}1U3TW0)D@$TO{WS{%JW27s0ZW`{0sDQduwNA?AU3;DE-*d%%quYl3Eo^^xm?4 z?(76XuAy1hU_th6NEfcSTqM>zqV^3Su0HcfElc!KtE%Q;uIZmwIe`z&6j!pz^iPV&0~wc+MnXYJ;Xa*Q5hXx1a_7 zx|ZzBGHSK>JDQ1~rlzIPq6O zY+U?`sj;qRa)_-jJueN2OGC}7$#!ZmQ!?P2MD&(R;dN#9C@0Ree0WuDln`f6e0XvFFO>tF@1Lg-N6c6@esxt#7{N2B%4 z!rc5N6bvAim7uQcIBU$u93jVK3Srw6oYO2sD970B!{Iz)L7&rf_yXR8_XpgCB53?! z&_e2Q$7f)zc5T{q92WF8No*;_QFu0lV2Uy(6>)jCUVey=sBCq0)yvcKSU`p}A3j3v zO+D4n^nn0yT&Qnj(_9AlD1gsk-rn1n@?%u*GISS>IbZH5a>$w9Ii%wk36dQODGff- zpr)GzLW?kd{=?>0O#d5wQYvRci7(kAP-twIAGZ=tx=w8fC-mV! zhL0Xzo{_OAPKrb`v0Y<>22D42K*WSkZ;c@{M&n8gk1$_5MfxXNI=c9YdvUSL{+btB zQ8DXy1J?M5IcLz=!~?p?gU=|mt?q+Nxwc2=M68#GNBZ&OQA{=~wuR>aIclNSa-wL= zG3WV)kEiEV7Wxm5D%@nQaB_w(I3P$XYAv-d+ApO&OyB06t)d(op9$}LT=7t*+fn8` zz$5?z9w_SVw_fMaVS-RiHd|G<9e)0j=Y-=6lLm83OYp(1DAgt!pgkuP0iE@H_hMs5 zw$8{trjO37C@;s6g613s&ss}8GCC?|)y2d>+h{L>i>8=JXVo9qBkl|*p52!U|CchPeF`d&?Ge<7B{HZ_ss!*R?rlC`C{Q?;ed>v z=_~efiIij3!IPeXBw3UOfDxuqMIBH0&w(!F4E`C|r(NK!kID{-`09o;*56zI-jfCD z%8ja63UAI>h-+`cGR=b4DU%mG_a+w?7tt?K@8FeL0CG0>O~42uFRx4Boz9(5K( ztBmTp-plPMCB|ws>Bhh_6j~NdrdrHkwg*cEF72JQpd2Gy332O9XgG@?xBgX3m$MZZ zs=;3pTtZyC%)tv>KbP0irAYO` zLK)N|NWA$1f@c@kZmTQY5b9Uyhv>VAM#xgDp$SD82C+Pc9($~Ls;~ohV`gFD{3e;`%iNRRC{~7) zfDOHp7~J03X0`1Kc^b8Y9#QM*rMF&xk*J@N~#KL)k2F^QchB}Ek#=4v(a zGxu+XEaAu*NZ#Bd{%@NacR>A+l-<)g1qz1(!TIRT_Ed-{gT>iFJAb}InQ#0SD%~3T zXRh5rhvh_bZ0w7!5LG(Ju)jhx)MBe#_!2DIZc!1h&Pn_A+qVk^LJUOWEYvm< zaB=8~CJY=&_40DxH#bc-$#%7h_ajaCs7SxLoRmk0Tdq4+{iDQVkxY_=AMp37(FuH*^bIlc=mfXKI6u0HD*zQ zE?VayOLjz)x`+Yfn`m;WBrXhgb4B@)vHfT)D zLN*y@HTwRQBx=z6>$(LRJzJyydQc*@!#>9d??g*W`{kOHHtv;P>gkGjP;1nA6M9B# z?uZ9uct~z^gdTs?)7SSbuGBymEUxw!ND8mZ0eC6r+D{H#D8<^bkYHg5On~BpbRg6a ziqcm^hxF79`TWdIvQQFE3J3_OGYB&qj=X>W9<2E&dT&aLP?k`8W*d8$a52Z}^$R&j zHEPg$hEiK7gW)?NS_3ta^EoW!FQ7&TAyXC2O_F6&JLAQ()k$2@^vQsC2tymzKw|h{ zd1-qaGWBJ2Hl#~CXDs_ke=N4oVC2$4{)cR$VuN>1+H2+TGzEckZaFF&C$i{I`mewE92 z?)*Is#73b+F>z=ZOl)rYvDIUG@5hxJsBu7~zTb~%KsBiWPt>8CMdq#;fb`M-wyG_~p@*A`YW(Gd9bJCp^{5+q(J zd|7n1PA$Ozx;OzDs47qn>0P?-sB(Rs1LpuS>^eZmTUH_O95pBrv}7_*u_Pd5W>7;p zhOdkeE=MD)-IvhA2o~H|7lXgQzq-PC#yYd4^&_;< z?QPe??sy;S4#jBPI8^lYBqVSoNS7?cFMNMxRTXo!J{9vZY+`w){t0J63_cH4g<T|PPEf*Nl-(p3~d8sLKP{oO%N zq#8rLLfjDNEUIX!4+l!=_32;?3mb8WELa8B#9f=;lu5<^KIC7;r@=p7cl>- z$z4iAdQU)n55E2lAp>6d!r)8`z+S?*rfE@QSq}GrAwKe9c zP_Be$YaW{!R5$I)i{{+n%~B8~MY@;|mZKpnNmoyg5qqS{e?v@7xBog2{x7H( zH}>}%-7`<$b}lsG$LB!@N80S!Tj*xAdO(35_4v6q!H z1*ewEBd{cJH!mWXLXwWwqZ{=3A3^NUh*1+O{LTsfz4Byz8Ol?Ys(2F(VRV!p55r>sVw2RCgl6R?&usSDcJ$jIu!Xr>179+Nseh|9GCT=fn;) z`jrfa{PeY}Y~$`AOxUqwWW<69aTG!Ma+Gsv(cIC-XX%Sx6r;U_L7Y)9&fd{XQ!$7m z^JDL;pSISD8O7-c=EkXKoX z*HylqgL^}bGis($M)Azzr;(8nlG+}$VZr(K!UcDPkbAJFqNENjv@7DftK-do{`$oT zvO+E7?BVLiZQsgV8IjJcK=F!z&1EpHV$^FpzC=|@5dyJag5v~-xJi8JB!cBYrGNIF zz6LGi+{$Eriq3+c)EuBbe?a*$%JG&oG~2Y);7Hh~L1(vMTEH*nm+GDU-MsilFj1> z@~yD>sNkLU{3?c`RV!g_|ScE@Vfs!M8(|a0lt*J z)%jd;YEp+iCH}*Ic}xGqqeIZZvIk``$bK$eHncB6RGzA#xFpiXn6-#$=?u{Ec;Njw z^*BPH0ZtGOmb?(J-}VLuzH#3y$ivFc<<@;Q(fPwcqeIFV2e0 zDTka+w>YQw-eKr~%1Kz-KYmB6stOW8k?VXxwgD?`*mb$YS53B$p>R_j=IPAHQ7ObEHfSN+lzUcn{%d2F&`=+R(qR?i5Q#MgT}{%^DG3L=${R zVo+KnW?M1xl&Y%h^lVP}A^Z(cyn(&FDtgqjplKX@;(<6NYG-&LA&VS8myfG8;muS`{iGK zuLXWI=UB*93s6p|v*@6Xj|Xr*h~e$!h}P^N0BAU_Fm9806j6UiHRq{qiKg9$Uq63l z>J%~@!ih4wy+t9Y4C;XKUo?+H56L3bJuy2Rf;vtV!?}n$u!DmMQiZ%6eQq$-G5ThR zPy&l{YyR$^s#8Ku>p+LH%?(~^9yd2=gxd31aB^u-pq)jM1n7C+Dbg!YFbV7)oLKnpsF99r;LBkdV!;=q+Foz1* zplYvo&l^?1e~jMT6@DNMY5I!`kkND*{41z*sW*MP#mk9ZgK?jp(NW8L-X~e8Hy}T;=5DGm8ZnTQ<#Mg@@6Xp9#J@LSP;5*!;P0D`(9{~Vot*$lenL?N)6J>A z4O>yJe2TU3{0R7_Hx*d9@zSx7v2H+#Zs2##;>OO{-vmuoFut;Y7@gq0M=qC*Y!X-qB-cSq#(H680 z%WQ6?DRE~X^J-ngTI~8Zis){$SPi%zoAxydu1uBZE?&mqJ)E7LkDGi1pk7&7dEWb7 zS($MJy^F=0PKH9UXxWv^bXyqY4paOhXcjxmes-bH&e&%J2`)o z2@jj^yPWqskk*-MhD!6<@Qp`XN$aUdmp73@Kl5VVSEslIzWy>OCcTab_bv!m{Fm`3 zGpgwqM_zG$ZBqRBM~xOYF)9la&F zV|ri=VfT#*-J3XK{86w8#}YnkfEPEXci-s<>6SHX`~eJ7boxxb(I-v8fl{3cDYH97 zSSTZy7>^K@$HvBbK@-VuxHHW>FOLK1;s-`ddDTk>hacj!49yh7sVaPbjoQIXVJCE+ zO36HIN-Xq#3Tq(Q(il#~-s_7uTwPr&>}R&Z=N?Yttw_9(E_>L5{d&o}Tu0|~B}T** zNdl%3STyqFCe@YQ@Mcth#fdocfgL`n&c6 z%=PV^xheL0&Vt0lS=IT&(00*ah=eLJYWI&diV1HuN(|m!@b&RIJR{g&|NA2EBjSVj z+N*oS^l+(#2Ju+fcQ4ZjS>57P z8UM=D;dvatTLZi34rU2(l@x<~j&N~i)!#zWa3op`%`?h%rn~K$T^zqGCa*~#-h8mW zlElr-% zxJ}bL9|f1#bD~MQ1N>4t+a%8P?H$99m;!CMt9OFx(G(-a&#qZ8uxhf#@7PpqDlVBO zwi@b^5#x@dx6F%&Mu2&q-u29PL*vA?SK-hP&xPf4=;_*Ew(YCDMWvGTPlu*o`LT7# zQ#Dk$6ys#Ubt_}Rvk|hc49$v<$PPv?lrNAlcejdjpEj(}f0Z6}(W!bm2p1hyx0w(v zk=K?O0^^1)OMoQ%Bi}kh`4D_|vG#vO*P-L}6}8Jg_t&eYU%j(cT#UA(?w^{*+FUB=qL$Vd=}_l zLnd)~TU#5n&lpGeBZ;4JT5=7-j@`jPb2V zKfAH9@%774FN;fNAW%%T-tI>T7U)tYHM6A2NFFs=I%lI04R=%7vUFkH#Qr;!Q;5lN z{IPf)ayO7e8_QmSFcHi<7O#^YjC*p~q%d0;+55Ln7BSl-VRx+R6_EB0zIYunx59q^ zwFSd_AD`Y@ro+#|Xk6Eg!r$&59`BR`m01skxO!b8x%wN+nH4|f`AAw2YSV3Z*1@Bo zwIN8FsxAB{H;(72be9U%-$C%1`diJHnQo3z+*I);#=+!EF|ONIN|*EF;^d@ygz~wu z(;VHmODJA?8ozD&Gyt&Lj`axLIK$`1am@GR_>s!F)wxc}7cdblR(F}XljAohcPFPi zg--mTgW1yJmK!Bzf6~i7(bO2j^k?$3oub2{M>2H2ILVn+->lp0=;S!;UiFR_(`A`@ zI`Dj#SITR@*Xh(+zuOtYz993^O2#(4_6c5V40ijy1@J>;=rYx05EHs6oaW(XRZLG^ zo&~bB0yEVlI&%f|ijC4*A#R21vZvSyrw;NP$0R;K#&R`FJ33rU*sskWN;-R1-S4FB z=bL^7?kXZ(PWsQP}-)|lT_NWlo zM^_}VRnNaZG9$TIc$X=E^Y4U}y**MK;VrBqpW4azw5jsQ!9)g){>jg6j`ZkEe&<4MQ$wd*Nd6oL2ieiF3ox8-xR?5Lke``q%Mutoy}~Y zA`DHUzCm*Ho5-+<=hOlZ{F8d>kdBu`(V45entiq-@0E_R;q3vY5JKC1gSW#U{eUS{ zwxnmg^{*&KrzR4uMC_ZMZOtLI+mrMOB_|b~ZjhOi@Y3!VXczWJbu&VbzvL&WBM-#I^9ZOA*n64!tp5A+PbF0&;>SYGl&|4-v7Hk9=oBmD~^-LIR3-?>agk7CkW) z@+wE(F*IG}V#qbS0Q-{6fEVRKEYi}&StQwX16N+odQ^C;7-ob zyY#8>5ywnNN+?8M9*QJW8}4DXq{E5lHOP#F(H%Y9tN(+maWzcQ9a)3CW)R;u-eK+P zSlzdr^|rH^=jV5$uz~l@L{7~x6wf&Q?qQt2aAfxT)KhBED<@LGQ&El*M))2?bowSR zn?PphiL>RVsxdbAbUu$5==rJjY_Vku8PO4&t`hY|AhZOcd-C&feOqpJP-Idsr_>i11$5J%+*D0x-jUv9={{cw^d?%=uw5g(~c*W&|*6~AK7EQ!%U+?NMG$yB{ zWWun}X4R&rU=9-uK+oVXTCtRmt_Pb;HQ&Xman{blky7DNp(caPnLp84OF@I~IH^XB zb+8;VkKF_wTAqAcm6NrEPhR3_IxsYxScDFG)eb>DKR&`VEAX!BL!-y;RSL?=7wy8s z7PFg^FP?aq^>AD&hoWSa#IKq{l+%%L$o)>V&o{$cYYWfjluSkXD}E=0J22d|#Ct%w z)a0_0%$c=DH-$fs$dt7WorR|EZqLp(2b4SD7|53c+^Zs6!~H6JE`s&A zG4$dH&b#J4hW8ZkyWpVpaP7CCA}kPaSE|YTgfLZW(0mlAgTm@WiWWV&*A;gfFV?6W z!wMsY+HP-6dWT`M+HF`CBZ1={44F(T3x6cAf2a6Wz-cwkuH#KF6!LD-W^~&#RBy3` zxrPU~^uIqC$JxB^Hyxi}C2 zRV<9^yHQd7`7VEy)T?|e}32Zq%!#dl>Ty;nL_ z|GpHacrmdNzLvKIOo8=mrVg4spmA9`aaSokHmi`qRI`?mZa|+VOLS(nvFfSlS*zdm3tP%^ zC-9l?PGl~UxGl>Rj;bgqNF1ddr-NE>7Blh8RSmP7Tm&Jg-8^r=l~O!GC&|l?6i8xZ zG>47fK73syOiSD}SKFzo+_?~-ka`r4wo8(k1p;WElD{}B)O_oZ?cFl1vyIjL}rOwyn`qd-y`J4LRDnnNL#q%1W&PmnZiCo0W5;9O`&bmxgik z>yumH38-R)XE!ms+QltVvcJKK?p3~-L>|$z_g^lyiJ_&ZO~wQqm`xW$p&FM!5i%qw zmz9%qNyK#Xc6m_3rgZpDH(JrnzGPmO!Dl>(jWsCrW?p1ZrEU@EuY~c1*8_{k@p%v@ zywne-u!mp@`%QYiFcE*Bo49cjeSh5H>`R3a2Z>wh>+aR2W(w2pJ$73-ZAw#}%1sNxO~^5GnK=&SjN$H6PNP*K4<3%dtPD-a6qO)EZ&9X zt30G$SDZc=eVvt1e@QW!bAlVhU|Yx9pS z5ko8P1jBGS$3kc^av@{7Nk)biuh?Az-TnCGPNd&|=g+om-rrCRJzK|kTNm%Q-k2d> zguJ-3ZNBK`B{epS!o`?1#xm1T3c`2ZpoDMABr`p18J6^VJ!{f$r?d@VKY?%pcntUt8zi z#;d=*f3-+zs6ZnT&COq5oUKt)VUoVcr9eD%1|gTxb;34lTLsTx`j2E?oKhyFP#i-yxKfljEd)y}4oAph2xjlZU>}%tf2-Jl5LzV|z#a zxkl&w$9zq%#sp~BZSC$3pKBHU9vZy$$f`b>T zaL-&i?~|?~-r5p!M$d~NDd)G-t8`H~R!VS5*nQMMyVXHd!?uEjS5Ia|y)%YSahYOn zK$4R4_y~`tI{r4BwxZt11WQ&(+Ub$i{7-btw={fe;WZ>?>(P~@#KI2679t$9tZ}3} zqsVL;hqhw>g}ld4_uS93E<7#}P4f#6rA@7ir@8fa<6E%Ybjpk1lNI?&?L@usR}n6L zu9nAdv8^62a@zS`>tJiFJv-0xTt;z~L3?r8K9AS)$KVwKh+7u`{Z z>6c^7PWCOqa+UfvY?Z$|uj(u!n@Cq0aufhcMvLPcud_&3bzyw!-2M}u&*xf$ zrpL1KxJ;~kTTfs0(DBDF(Rf>R{_3GsFiBCKVt-E?2}~anrjrvobFG*eY3mkMJ-Ybv z`dNKTOG~PW+fTa9EADV~la9qLTI6|uzrC7xcmI&L-jV7$54Qi-W-j7!4-k_)q4jz; z-{F|N#E<3No9~q8W^WC=B%dFHHfSq7jNMq^XBJZ2`*QG-ARsj_IvHJNjKsQSdAzvQ z5cR;ZV?q;0y?3td%2_K^WYMXSbB+_(B;w3e|E42<1jS`;J(4u$z{hw`m^5of^VX%R z(Cul5*_^H+r{iWadH192qQue=Q3HF9`7`&zd!B^Y!Yv4Zq}CKl<9JJ$Ooxf>&9}oG zUnHewEz2Wc79Ytws!LVmHB$bGX+e3hz94iVsLj=QlPuszQ^b+=dQ31VP}QgF<3C39 zA0gv6zbJZmc^Nc6T3%XNc^B|^Z{vPYWW@m8jYkgO%!>|VIV{MhSQo0D|8guVj_?a~ zmSM-hGl+YzpU%3Av1Y!SBBMhQudA@}dLLbt>2>?|ZRtF*fs@wC8s7QT-FL;mXR4Iz zB7p!l%r0!k^(-R=(S>?1?8_QpN|$=CWiF0hmTS4|MIMDi4FAQe*@#%iHB5Ems%V!y zhO>Yf=I6i7TYB{9%Z3gYL2HKmn`n^?<%us>9K|_vTYQzq=FH=n7HpJY9$G}B>nqXQ zdRQ5MAX+D$_Y#p)7=k$E$L0mxVx?Im?uXv`8vih7&P_~cT&*aVYaX>kRb=!}e>(G^ zZ)`%;1vw<{3F(*uAuhMtvzLLkP|76u?h!Y#9Y^o-7L3|W(Iz!E_fN*6Sb=b#~cE?|^aV0BRRFYe@ z@Xp~{km^k_^5?p%lkf*|g7W=a{`(KT_~Er2)`r1TLtkz=)M(VK{4z+pH#D6f=O4+q zBGRmp>{W}AeW$@b7=qAlW-(j<;oZ4eMn1X*LNr-?hq-Azo}gAXdp!{w*(4`S6p3U@?RdW>#!{U5teb( zBCTGHJM&AjNv90CjYRLS&&j7=x&9ih5WXy?m#dnh#BUp^T4K z*p{AkXnFT)FbM8C@mErzr^Hdpu~1ghC7h5%$lhLHXKAf5#K_L`n?AR1n<9i0LYZ^i zvY|{!4`uw%Q`@nf5(1(3`3~`py~)Tp_MY4(Gjymy7*8BJiDz4u1s;!rD6_Bp)Mpct zH^O@c1em9s4m6$DQ~I&WMs;rfvX5rw;u2U8>GLdJrB23b#Xp!s+7#pgFxRn}oWu(6 z{@~s-^)w%HTe&0}vS@tzl*Rc!X**)C%nToM%`QRr{y(W`z)Mo8z~TO7Zl)wwGHbDB zT3E8TGSjAhXXWehb0wZ}I{Z#;t2Zl0->uR-ulZrUl(Co7nzk#<_XFDA4j$KlaY!_bfzq7kp`1@5Cfp@*8$)uAU;p!~G!t^b5yxkhS zdNnIH;z&6Gy_8ng=AV^j;mWbsj*158rkF*YyzfKfuBWq^d6nz=J$hOS4ChIc@FQ1@ z=#bpOv9TJVFEMHq@{vC>bXwA_&kJNstt7X2zWGI3EW$M#*t17=5d=svZk@Km_oRvq z>3YHR{p0O!oy|D+ry5K&@h3ZlD9s~T%}Ya^zdvX%*VgoML_O~LF*F|4J`I7F9f=f7 z2rj;%jEzX~jrJoWs=E_(^1Lv@Xql#Z%d&9pW(AC^w2i#?byecKYsYF!p0v!JeV3j# z4%&Ov8P7>;FGcR9C)Up8SYQo@TS5#u4*!o`lyCSok#$ zfh)QowI1>F_iy)G(9up)wcyEkFjT6XHCy(gJLB|C6YiZc{BipFx)oqaP0HueCRy#5 zX-#?mm(9Cl0-zGU59WXTc-xgi;zBvP@~wM~tPNf}jN|J(m2%xik;JWlUPxI<=TPk> zyBLGBLs6O_IMC{>P>v@BqBR#7+41nw$Fu6HpuI|@SFp2KUBM*uKp%82qzT{0A|{m| zepCl+y^Cymo?t_vF!yVE`pid;<uhBQ0dI9taub~J;!p9xOJ5?$-|U3 zHM0DsPy@xw`tN_msZ+@7356!MBLP3^g30AI=c`95z26|c7b(b>r0*SOk0T0Ora^+l z@0#c~#q`~h_8Bi@s-&JfUQVS)NWU7!QyO=U_j94?a6Ho1CbC zEXR19JMNza20i-WmZxXyvwi-M3)vbY@Op&Hy|N#+B%8gTKkI(~*4Jlqo!+m_vspL(1T;ToPe71Dr&p+j@bt^Ug_)Mw8 zTV7oRrZgr+Wc*u*n{$Cf{%JP48^ip|qJNia_R11f0|85T#xBNb8+CDGIAu;WMMpyC z%1GLfLjFvh`={p7rH^yR-QI(=JN$5|q|2fjUNtjAV6n4;o%+phG|b?DN6_O*w1w$( zZeDYa=6%jBo&Dr2>uZOU3ZfxuKdlBqD7N{napsW^@c{cTyU-WqI-# z_8TcGuC*sT0)t?r=)0MZ;FUI{cpMso!I2B3%^AeB?2qch(z%d78Up4VUiCC0e}j6^ z*OcXC4fMahm+Ybn`(wRN;wIslK%KjcLH5p@F`CAWk46){^=*(;jIH_K4LopG$3X_FbALFB-uynw4|4U-A z4DY+Q4%gOQoFP-5{S<(h@PUM2@0R^cm?<7Jwmzoeb%3|={nu8WvGcTpb=jYzRzf1R zCK~i z)zhcNkT>kY_|=p{#V2=sqlWI^VyLZapDw--jz?&g zyi%dV$a61JxAB|rR9B$=_R5t_HQ^>bcCq^J{?5v5Mcj4Oz6R z&QPMhoBwrWL{y_Ikou%{^Hj{%X(A^`Go-D5!Ape#J9(%>HaYC{^1YzN**^lECRcrA z#K36jTERnMHj}`Y!z;=rFF2{ZmVzt4V#uFe82APxyPm}nA#2+BB52??KZ*Yl`D)#% zE5FcpM^x>E!nBthRv=6phEy+%dFXuz-0{Jfyf8N|qWjFNk{wH{kex&Xhl?h=T}@H$ z_?Z-$@#o3NzqLdiX+A2LRheE{HFAmq1I2RJmrA|hXPGZBw4mIX(Y8+4wm;u+I?%Pf z)(z>amzTsylw!D5gf-xGK5vXk4*Z3UopHh?B8BYU7}b5h%Opg|g1jMxL#NT-m0j6c zmzw_L0sg3VJoxc|^B%2&^>?Xf$4br+#C&Si?qB-A@%{lh;v{aPq14m-WAhWO(p87; z_)hn1_1}l>j+pz@W7?htANzV)CgjJRqDqX35}b8fX`G;bR*$Gw**na!`6Lm{nk`DO z*TV3Cx4|F5taq#ACV6SJveTm?0mKD#v^V(i!L8Fw{`&~BDq~2o0dwl=cQRQ;hAIQJ zdN9N%dvH4k(Fv(}M@PE=3LE~iHuk4HVmW3JZ{{@PH{74NYRn?>3XGCye zyZcLbh*`Bpsm(dkXo2+y-LXhlv{y0p#H?$0baUMC0BI@aIER+x7pnW4S25%Aw_G|D zygTzH;GHi6zNHDE9&2X#!B6tG?|b^ZJL=^@ujuape8JDK-q^i1zk+OPWjd*Gx$Nym z5M30OZ-PH{A_9X(8HXFWI60q6+KCTC%9y6Q<(uRGM)f;=hbyt;*xK3}&y)jW^^65O zz7zVCoW;~^n@U`6xVw-e0!|{>z!0fCb@#`opSP>3s{YB~o!5;Z$R9`@&8TWLmVyE{ zep+D0+j==|Ou>JcP$}B?6JvK)R!*%yf9rLGQej)R$)ww8Z-VZQAiQ@L%shKn3ElvS zOY@5-+pN4e(&|qkL4)DE*rIHYm_)m<-TwLas&?(;LTO;ot~2F#%HFw6`?mtc9sBb5 z>vo4f!e8USG&_)UUKA9-eSu+Hk;U8K`)KMED z>(eRmd#)N4fjgz$HxQAQ_gX0yI^1~o@A%+{{C6_tCwZghij zNaETiOT{`-0r$UiSQ8RCk>$c4RqQ)VcYIbT6t`tHwXVLoRE+w~+7B>>@r)Nn9OPns zVzb|CrS6!^mb*qy*>tN98p&cZxhC_FrcF2Jli)MbfiH+}_hQCE(d9vwg(c z^E$m7*Zm2~ach3c(MwM;$fkj15MzB*AWoq31l-hdnJ>?}V*=zsg`cOUeblS=-^fD> zDn8tKK8iFj*4CXH?nUtV+MAFp{fNz`oCxJ+Eaks^|F!6L!_j>lBz&$)*YUU5wyUMq z=k4(|&NmF$$xJiteC0kJFi-kHt75+zfN;csiBbG7yXw?h<>_tT zz(9-8=@il~y3V%}Co!CnA|DJ_Wn07mHahs+U%HQ%qNGx}S^JSGT~% z*DS4Df68Q~NfpHn

NG?`#cYFggEWMksLFR@-KW=oIP1lq=yi?!9c!eF{1N}fd20jNK8_E@ z%)H_eCkG=?Guzi4j0?Mx^{KhRKPK z>*^!Ttg5d$SgcvWrtM%B3fTjd#h#1^o0+dKg=$4&&HL`hy;+OV7s|}@dejwXt#g{@ zl@4t`>y+e8YGD1g`u`C1)&Ws9@B8r5(uhc70RmDBh@_McAYBTmq@;l4(zUeWf^>JI zfFL3b3p{jp%OV|;()G^a^L&3Ve{;^xnYm}~x~^+dNDsO$tX5m_PcBwOVN#8G9^1$` zU|;v>p01hl{K%i~J#@h2C5YPTvyVG>ajdFm7s@r8`o21x93s#5K8@arM>N3>Xid&d zXQ0RxPIC4s6VN_rk+&8G!g=hKCgPe4w|<(f)+|tVEu}kmY6Jjizauy=+a3mPjK4@X z`Gm?0s4@L(DyL4SK){7A&7=1tFQ!CG_iN?=mPo^vP(m5*du$5dOSfVlvJR!jTi_YQZ_pqr#yf^>lWnX{nx~>7MJPb z`(lHn+)&eBur_pwPZr=e&^wOmT>W3rE+Cd=&fm>2nB@T^;`-zPm8R%S#KI%zcD@|F zeoC;9xk1t9cRpXy1^idOB;7`0sy+JHk+&yrf zt7;*H@eFAB_(|jr-(w;$QR+yc2=_5XoInMiX(d>^%uRSn*_M2bK31FHG8VDrs4s^U z@Aos(f@h*c03vU9hidp$L>7`jE-&Jy)5#?$kH;Tv&&{3xIeTt6^2p5%ylFHavM z`ZbsCk4NXEPBB_R91npdSI3t|aM@Hh?PnV+~0UpO6sQnHxPmB4Ic<<_XXm zo@w`8ncD}geA~;d%l-B%60ULGaZgJCjsJ-NjyS)=h-J-DY3E66fgtUhEpEE)c%v5Y z;FpV22@WwPO42;~gbn!@wB^Y;&Z3WvbxnS`TCLltVAY%r<5``ErS{wR*+h+KY$^r16?Qc+s{8Xg)hmlY4MzCrZi8u$|7!c@?0SC;v+SE_YqN&;R3ki^Xi(K(|%w4WqBILBH-f~z(LuvdRWWq<-wgFR2B^v7*7 z&D;KBw?5DZRd4-c+IJeyR_-~ER+@D!T=gk_UM?}2HXAZPaLp&+&yq1Wo-tdVk?yQp z*G#Q$Nug@N@>zW8vq&3HC@dt`}dsrHJn8{A0 z$u5vuIiL796?+`pLd~APc&p&VzLsPjiRPOaDFLy0q z$uP39i0JQ!YiN%>cwF>%gOSWTgmX3CkNm5a5*$&+E`zM+W@3j;2b@@X{=!CrYhK+> zPe*wAD+^~ACtJ#SNPy8mFVQxAL0Z&arBIN5&(=MU(Inway209}U83sJ^s!aiw!ov? z$4_SMdNhuTHsFFJ&%i^oz8q*pDwL5k$JR2Q{xQC@(oODE1^0Jd3A(ZshfDiuk8GYF z$7>|muwC5&j)G{q+c*>C$>S2b(xG2{ID0gHDeM<*Tu=pP8W0)gSFgLRyJg+xtyFoNRGNwPK^a*F&-JWX{ zdcf2mMZj2u?xQ^ZiKx$|W%mj=QRI`%{*yvs`-VtOElr$5Yn9BZG}RXI_R`$b-Gy)L zRs+|#Z9m?REKlm)I^qkyRIG;0^fWUv(j8eX>Ov#3J?!XRm8*T<%l^Gt*SXt9myR9| zKpQ2GeRsZv;4G57|gnKI|sl-pq4lk{4@gLA|VAXGgwQM|=HO=lwx{ zmMSAQX4NDwULfa`q}~U@i=kiZ+?H3lApufquYfI~X&1OV#z+87Z(!%@o;qJaIwuq6p2<>trl|(<8@Nwvj)Ye?1of@In zgM2)#98K{cv(6F}qq2jcjeMvoh^nIhP%sfy1XBQ6ohYN)^)Rq|&W1<& z%gWfL>5KsxJ$h(KV!Jv$*W++=QiZ|-m$Qh6DF?kxCrxO$vp&kX-#9Os15X;p_}oJ0 zqpYpvWkw4_mEB*Zf4}wZ_Q_GgMbTg8CdA=plP0Sd1-i*jOy}u#bEV3ODwZHflMFFt z3_h{(TL_?@fb8!Se1KOI_%{@>e|WsR&`G4U_8q?d&T~!mCF7=ALo{7IsZz}E!ZXqH zuD=Aj`ps4tAyEuQK(ngK^T^gOx0~ZMa8ND)>+5P8hVCi9;cQxeVNNnXGvB11L<<$+ zZ0%WQcYN+p6AbwC1@Y~vdLqNa%L~u`tev|Ebd$wICRStGsp`$yXSYhfq{OJPr9{5m zKLB>qdDtX-*mSaG!dZSS zt8!sUxx=vJ)izCf4q-KsNpA-Sjl2lYh^^v3O9JAc$?%t1b_{5>U@OgEk{ZTa%!+?I zE=I4s+Q4b#^QV-E3{MAnE|qT9maNPX)<8V!y^{Rs3qP`C1z6nhtkx{~o_D9J=o6s> zi-|0~ZmJkdeb*28x?vivJMMCHE#JV`u>DXde=*xf8zh>cR-Kpg^$GKgp5Zd{Ev!5e zG|)*(eKe^e5N|!xUvhBMNLyQjC>pB*1 zcfm;HH@l2Jf>grRfJ&SS>zR@oLG{IW@xw|(T6!d&e2&e;;h=LQaOdJ>elF6kuR zcG0dP1Fm9jDMDdKDT{lj&*A1PEZSt-s*?ndc-;n05Rkbhc@cvnlefvdhB4!I&0L1z zVQ}-e{){#M0M=nFf-B>$;aND|JOe!UbL~6=GsfLC9?hoK^#r+j&SzkZNeFLK^rUVH(T2}va?Jt^O|P!IE)ZmmF}(X>>sS37Bf>yCsp6s7ZdtkLl0{*3z}jRjV7uWB!q!4+C~N zT9Xiip;6T=#{~kSWK`_y+AR{o%r-xV{{&=9t`P}NMOTA(w=LQ;XpT_{AOtjw3NP1Q zh10kA10v>^^X|rTCBHbRhJ3PByWJ&uwJ$jr$PF?t9^b38IpTxoM#SWFaPE@n_uq5H^z|Pm6$p2Tb1`AKXE-BR+GG)@M*?EO-+p$p2j$Je0jEQ zmu4cq@SV!t_qj?Jtzz7B0>)1(K>=gn2dld(IA`tU$i~>1LbX&WI<9>5qo&<=e+LbB zJXO+p7WxHFBkEv8KiRrY7oW=)9F<#hu+K}x^+MHXrrxts>MQ?m89z!(>EI_5ldt1# z^;Tc7y%JCaejsEC3^=HFv0Mwbsq>3>ul|R{=cy&v^!l%8#EgJ0uTbNqqOrW@nxZ-xYlr<`+NKK9w0N7#*Z;1VjCu;`s5;DHu=h(DvWN25r&})!8 zQ#6;cOm34Znc%X1GCOA}rfk3}RvK4r(=ZRYJ^a-em3cFFT1m**WoRHBH@QS>guV3= zw^d4?5+%m2+P(K{=knqVTPX`CywwB1!u`fJ|3D3p<)v2cS=Kg-(ah=AxW@b_&-Ax@ zF8rz^WJx|t^tsu7Q{e3OAaoXe`n29XKSX=Uy9q3T9IXBAQWO5`DD2N#W9TRr1Ygv5 zGD6$DEh!~}`0eK9&43NV%KU+&s3hS!Y-gq7E*{s{dH4NuZ=%bdb5NSi;r)0JluG5M zxr(J5#VFCi&W*RVwnXvVrCBAHSnPV*%JUlyTQrrfp`c(`!-%jvA8DmdU6;I5JNLzj4-|9b#qGw-i@iH9>uz2%2#ud+m{S^?z z`DChmm%FpjYMuc(+$`8Z+Y)H6rC8Q=83P?Cjb6OBH4`)Lr^Z;q%u!q5Ril?#6et`u78-+8z{8+Lt2u&5%R5`gQTPT)W zN{ZQ?hf{-KIhYYMAgiKeQ19{5h!EGFOHoxv*`1!@bl`R@)^UvwRMqD<908qE0zKt4K;I6dP)hhTG8(zo++s7Sr^PI zEp&H|{cn9}e?sdcx$rM-)Rv*8julRtwWXgZw-PW0KE08|@~s$vxabrv*$i^Ba?^7s z6B7~P(CV_VTby%&CN*uBktDXxL7%7D}YIey9S=ugVb65t&@Z z<&hgiH@7AzNHa zwVsVWm<5^b&aow&+C8&~CrTWPMGHDTh~`(OlHqlhY=Oy9kt*PqZD~2O=%c%891En5 z7`WbSF_G=^%L7*OqXFR2dWSFC7?&2y{qLcVK}$Qxp1D(C3RJukqpnA7OS|@VpcDNC zL>6{(8`uS`aCuRTwON< z>Au64J$=2lHGG8)$zEX_G&_Ze*7YoN+Y!5Wv9R#GrQfOku$~|qOQeS>O+JOKo8ab6 zr2z+b_qCBf)Yn^_SVaz_v>Arq@Xvd{YIo2B@}nliSSEcEa@qq}&*@p1I^F#lVg5^p zb**nT1HkQH8z^G19e z&Q@K?DjXcQip+jxpqxm|{0+8zzbRs?z<3ni3};S8YQCVq_eN=Zv2n#b2}xzU2K=g@u+J++uPI1*^qy-4Dj?dJ>{ zCF_sgQWsHX$;zn@6`?E~=JQ-Qvh)lMX<*B&t^I)I(G1sQ>AI0r=$1#A?dv{%KZ>CJ`tRW7bQ$v3?NHJ9o`-S>AlMLt1yx0^JB-fNcXO_ z9>jg9LA*Ix-f4*57hyQ6Ocjp@G6!`7je&e6(%r^?SxSoo0&wn2jCw)~A9n*|8TCof z$*7V9UFUp1MWzkzi2dXYlNaZZpo+3%W6GBMdB{6{Pd}+UqJLtM#OO`6T~(aAn9A)R zaxnR5RCF+x#vG_ysF?(LMGx*q$H3)=s#k z+?xW&(G90ky)AgE)6L$6I@v$5&5!Hh{M); zUf=BWs6t~Q7g`Ww33!E~abF7;`g?9ck}B0{tj2pm@hiH6%6fpJIK$vaS!krbbnX`X z*YBy(qe2~F<$r*>$dBLGR*AgpdtN5)bzCa-9vEh-IUYvNrFrcy7<>?dR+U>CYWsv~ z&d3lUPq=~-TRJM(#_z319R=3$!jw7sd7*?&{gXIN187yCXV#F}bl20DOobO@2SYg4 zOb{;kEKz8arfOBsO`p_2@kg#!xy0;;x5z@)&F2@`R>nhg#T4j4lH$&h4t^7uM68BA z5#z-dGb*#@m+608_CzGy_i_drsdNO0#^*~tSf~!%VHNffAEpWphQQqQ+CKsaL^BUx z-$ocZA2cTmSEsU5B8pjm+_bmZ{{6dIqRMZvHgSV|SSfS57F+$+*+yY6)En(dg@r%N zS^fP2x55GY4w6^lrnq$219@L7I@!ej7wEEj#I0q4TwixN6*ivX&ZqZMYhe`*aAcC@ z&kUd=lyuK4TdqwAwj(&%nsejVH*g3%#FTE>d9GRg0KWB5L$&>vP=+~#Hc%(VV&n#2 z7zlhGRe?h2mo_!59c~e`q8q=`0|i0tm`AWfIz^nkw3O}m_qL^qHW8F>~Y~)eM z2fgfqpkU(HK)I5zZCE`SgrV55uh03$CVpQo%3eS~6RTNvMH9Ko=#_JNiGJ#(+IJT7 zRg@keJEcY@(LGb(R+hOQFXkWI3XSJ@MogiYi!Syq`ZV%keN&c$!##IVdm)sb>n0bY zyuXkqNCGD&CppvuaP8aF`CY+>V%{pNplo19`uc34wuP6b2xHQGbAh)bO(}oO?xt8= z8ZVx`ySr4nXN#HRgVR{ikNiW!=mY|v!<68RCqN(!4>p$j=8K`bM3EUHQzK@&dnJ(~ z+?a*^=VwRSlRt(A29L~f%HQhoR8-Z}Jc3(b3!C>JD_AYWh{2LIaks}m(eQqu)wk?1 zl-zp-bo_4zN8-RlZb&r_odA^4^73G|Jf0P(0aV{Y^LYYc7j|{xY&YW~>}`U$M|8A40~07MAxB8jB#YU1`!@Skdc zV=3@UbJ(9;iv8nV6TC#fMfb4-3o(D?47_!Q5vkeu>p>dS70SAp3y+dX8S?+^>1e(j z;Sc3+N0vba33JY$9y(kH?!OYZ{%&oLO zNlqiLw!^9AaA?xa(NU8&c%$EZa}eisq;+Bot}-_k=z)oVDY52h9{G0-4$#3_@}bqC zcP|RSzA_b0?RWN^EHeY~P0hw<_&aC9@t`;XkW`Db$2TntEgGg z%NDxLea8K#0{1I-*L_&f#9a6GxHFyQs}j4C3+3K||2;>DDUdd(b7q0T@jY8kwT6Kg z`8KRS@)`H*ubaV<4>nIus#ktp4KRi7Y~xsh)1eToF;GY-U&dA@6-QyiAA*sArxcmx z&LVfX?=!Xxl$|gbvy@U<-BIqHe{?;zNi2ENOt0#gechcI=!ixD+n4kf}wgrLOAj`lpoJ~HtfRfa5K@{9_O_q zn=P5taVkjumzzdLkcs6Gb_`9Dd-eweiFkQ2%_~q$1yjDyO!YZDoM>7p}f^YPbg5Ci#l=|(*ui0a_fb*d{D4t#z z4_}JZQF4fH^fR;-%Ac1`eMXV}(6JLP4sTIu0`N1W=GIKLmXV@dsK9>@6)wrnbPK~O zp6`l@g-)oZ@r7mCeD=0)>2|HiZFzTck-M)l4n*OF^Nv6T3EPPUY4Wp9TtINv4mR>I z`;hASPn~J@EAkMVati-*90`iB!Mc)Olk;{T>$3gpPpcepe?y6BLof?P5j z1tB{@&6r=F+j$r3ZzmC1ULIMG9A#2a$_Fi`K6~X6&eN(kd~+f!2Y~Il zWjb7_V{G18NRSstpqAeVD*y&~QShE>Y39g!bP-h5mOvl^M^&Sos2Z?}KpiROvB~wK zD8SlB#NDvr1fbH|!rtYQtMwP4DB&n^fpJE95TRxxr2s9fHH2z{zBm`ue`yk;vS?sVQDjs{C4WYq zgz{%!tjbrCs~TGfi`-DxTFKiXHSz|C91i&H{&$dZzVZN#Xg?139b6+-+$R?W;5hOR zK-dm`-n^}FquqX}`qeWGs~5P41zf0sB&Dr~Anp@-3$#_$h3~0yDKaG?{G0pbxw|p# ztTd9N)&WE`$pR`^*E6Ir&8M|LM22RZB&dWAV>xV6f`HTLlIGVn07UWoz1(kA>0^A@ zelGR(lCje0=j9FHq4oaz_vLbBHpUADbW&st$pQdTX1gvB&B1=IoJ4XI;$7Qor))fj z`zo$cA1H&!t7NkePbR1b_$)ekAMa$khGQ*>B}2bh7?e0rSvGGjQ!kGfJ_i{u0xvp1adia7 zox#1{)DsD2+_A|_Q55Lc$ZoxRM%5V4(w_@ie+4}ByD#A@fv6~Bmd9I8EVga0%~z5E zu6ru$P7fmhgN@}B;7KW+^7!x$LhgPoN^uplzX`%;Cn-hONa%~ zxaQK$fN9nD+3aD|e+=8yuVbI+o#V6Z#;cGk51Iz=twu0Z!JBA4u?o~*<7z;?QD#e( zT@x1pB{ULw%krmSTg7LLR#*zpe(3y6jOxb1dn%!saXh#<@1#3>!p*OY|zUG)tfkA zFBA=Y^1#4hUq*uL3>miLuF{&1O82s?H>a0TS$e?;%Si$-C0^GuX3msFvyHx259^Mp zgSO{cOGP9ld2Jr*2UcuyDMw8G8ObsPTd_-!7`EK;lCZu26_8Z)_14+1N(9?}pu9c*31~~D%>aOkFoUwU0*BfYG z@th{5EbHRy`$cxx-z6x+M;-t}ffdMvjuE;&i7kl^w69SMj>WW*mG$cB>CK!M`f0?p zbarT%IAB>qB`{*;)-wXgKe(if;2{se1qAPJH#mP6OA-GBt_JjYIIRvH3B3i` z4z!0&SOZCrONEVrC3T_l1ly62Wr%Mm9wdLWY&hM7BfyI^pVp}MzNVEGAvptv80JZT zEpA}FH$XV>xkM@zU1SHK6ie-QeYr^3YEL05lCEJxaz)_3avEgq5M~pU+A)#M3ptCjRgLxp$QR@BbBUil*9`+|ItW#{|Xu(E|_fr|g(} z%W3cgc-zB%pp7Z>7SVU135ug~gU%*oFNz6FkV)T-Dr0Ye2tI6j-@)Ex2Jq8>6>*=E zKmj%e@{u^;3p<~&p-=OO=0w5A25coSjQh5qw0Hp9Ap^6Lz)299m_#NF{5U~r9+a%X zw1u3H$2uj1TLX*%ie(PbQU*}2@u0Z|tVY@tie_LiT4nC}H#znZ6slOpx|0Mef$OJ3 zPZLsu1mU5M!X?jOJ%fN>;>VFVfQCF7t1MIA;s`(5$_k8vP#DNF618+XC6RsUHKj7+ zZbCt(;M@WIz&}iZh3-6N*AwpemJTy*MKUJ}Ze=`#lU{RW7T8~@sa!wMB~b+maM&;> zb)|TTZf5}2x(;6AQap@+KR|x_D&n`zjoOleCBCNrNZ2k?KXM)~vNG!Z_b?1OiwweUk8R*7g5|Uhru4m|B>uY3x zveq$m=v<4Ey_35;2l|zk&$IuQX+-r{j+YT1d2qxZjc$9vGBkI_q<3-fj~z& z;_UDbwiZ7Q6J~tZjXU+jA5nFL2szt)GS8QT(Z^{6>|MrYclBg+Us|{anI4c_(nX42p=aOF`N6@vyAIuMyPe0TUe2%^FUc{BJPJbbQ~ z&6N<7WQ_HmBBsfHGvJM(k0-Pywt6rtjC%t8Otn+~|17bUJ}(c4Og9TL$93OpBL}DT zz(<(S4s6aKVe5iI0Z=5E2j?kzgi#_7{};{m*RTefC~_c|$kCcPH&RMUS=XA$#?R&< z7Vi>J&<`5TrHE4waw8pFJ0V=7($Ks&G#^$;`@Yin!0$11_mJXK&D z)&%|*Jm(3^VoVEw!IYb5O|3F6yJxPSGlIU#QlF-Q?&-dDd>rfF7EtW-KG7e09I8pP zPzu6i!5c`vLU(nX1H)wyHra3tzy-;(r8f8vm5&b@t|WqE<2M5Bi%Rm;AL^rsSXvxO zv5mN@=L-J+C#qor72***?ko%gKT%@)Ll>U2JP*e&=Rw0C^RUC%`Fd4Xa<>+6jr6o_ z)rn2kuXFh8ovEdG^Is0r3|Tts_&)l}NPXoN&ugGfyVV|-rV@K}e=jhl+=W3f$jr$r zIc{ZLqb*<;V<7Y7<5K><9T1zBCM6vPfE9z5m^M^F637Z%S3`<% z?PY}X%*h!C{Pnsayt~KGymL>b8}W^Faxy7U+GI5p3&!U-0gQ@*@o^qC#0&LMn<=RHVKz^K4%{A~@qYxSEhiW+3Bf;4ZfBCqxM?f>(3f7-BANC=c$k?)gkH(UqdWGSM!zA{XFVBFZ@Il;saHS zjR7A@o2Cmnq~h%E{*L4%v_`!Ozj@dpr+o5&38^BitE{qDx1E^&e?yFv33*EZCzvE& z8bFu+zlfgD0f3x|zjj(S(>HvU(+FqI{7Pm48v_7@ia~@lC$Oy~tsf(c5Lj%4i+8j? z?I|Y-@513G0aM@QWkY1Jb;ou?aDWW-WO{|F9&GHsSN0QZVNfbJIRsa&$YkCwNc7)4 z=08<){cAsjx6h%}Eyw<^FOTA|-%4UU_mwt)0AaTKFe(4Uv;ajul zoS{EPDazj8yD@uvLr>q{6KPGwB-(Ym?f};1%fPsk9>j-mW@(6ZjD=(*0mM;TzbVu9 z{jDuqKWfklBvcjCVyN{&a!j6Se*@)tdOV?wl(EG z0hA)a(E@edZb2tm#uE{hl3FZUr4k{!`gSiwHU^PN!aVx|)QW=alxU+VY^_9Iun9A% zZ85lLVsojLTpjvpeg*h>Y^VbjSXU&*trUi6!ZInyb?ZB|nrs?pyH}L+SFrd43`wA(|>eYRRV3|{P2bAPxu7-@= z06%s?LMH;}J-~+~deznT+jv!n0F2IU*i@Y721N1%H0lf>xq|l^V0g@h?@Je_Ji-r- z$tv7=e>t?faBmP!`3R5?Xd1YibjT`Ho>GsJHSPkPlv;c&F61e$pw@J*EY$5GXRP>6 zOh&7yTI%u9R{pSQ?U+u^VEIqL8x`*HSY>h$cIs8*PZHt|l*}wJ&19SB$qzn&`Xq|} zNgNS4&pK8W{8Yq-oMW($M`q=V6%(Q_-g>=}%Q9!183A#>=!tL->spEQ7ANezW_*TA z5~pP(ll@}|P#dcKqMJuJLk+l}nrHN&Pt&$d+G1NaI{KZQM+=vqI(m0epx^21&aDh4 zmqtEpgTFrTBIERXT;I1^T1ZGx_z|` z&+?N8ZiSOksy1l*g?%A&;p0r08nusNOsGsT5R|Z^+k8u}iroh)2hEkEl=%5hd`u`5+x;1U ze8n>Qg#cp&ikx__O+hc3Z#YS$gElv15nng{Y-Vqf#nOe3@XjfK0Ic&b12}!&<(&q% zU7352u{=4jmN`Q>_Udpdp#0VKP7=Udh=7gu4{bLMe514&myC1;*q$pY~=7IK2fy=i;Ro`7JrIe;+p>?$R6M!+G6<|6ZaQ3zmlX!P2^eIM;6~ z_rucPC#7HNge|JEmTRW&u$RF$*Z+JZB2O| zYYjj@I{33kZ_!v63+Ffv6+U?K&j_W@4|ZnK^0^+%7Q3%YC$g5JOh8C`*6~}PH|6p@ zXT5$5K()v_ISx`c^U=7oYwHp;{G;BV&wsgn-P=6FXveR_7alb&CC;&Tt%0k6*JC%z zao+RfC~rW!Bq#>AaLYoR?C}1`-Oq_P(M=geCHWJ zOt_u`KzM&7XGdf9)#cpPSq@v=FxJX`lIoTkU=nEx;}ks4vk<=5lyaU9;N;4J8Sk!7 z<2G>7$-21^Zci&vgacQ!@xW5+#4U~(ygHYba+{A}j&ILF)%`H9=$?MS$sJX?=B0g) zp}_3 zXkGms52c5Sck#NM#%W!i2_vf%lOy+`O-ITiJkvrLz=yIG4$*w_YY4u4rW?HdMGuZp zf%aQW7u~dsOi#ad-p>McB7WAhvplvyoCNJ(Og40HZIyXV0Cwzg_w$F#56OGlda(@B zUdf9_eCLd~G!sW$?!0&RNjx2plHlyW8m4RpHKTjPxk{dY{uDHkrkL7|a}2y5S0rR#?ChyHDa^ zImPi*rP$(3#gzVQm(oz}N&@9 zYKeOET~6K5!B3X(=z}r8_&^ayTL(OeG8wJV4Y5USKq_2D0`9IISP}_eQICY;k^pjX zP#pNKdw9gzo*7S7zwzhHh*35#*`3DrJqil2`#LXHU|l9LskOF4h(6u>WmL!Slz$cm zAfAJDDQ?aV`FQRV+RuYr-2BW*1UG+MMS9zR?RK?aFJ)!=(m8!oKG3V;o3PL%qIDNNY6)>nJN#0x@xAO=vVD{Z+orJOg&c&2<|afz`8VpeeLvn z6fKZYEB*-}pSb|SL)Pu@s)nC7sE6H{H(K7?vvI{SQ6v}utbE;7@c7s6#(WOqkTvZd z3E}mqm8s1jtrz&m-x+7R4=9)W0{P>f1GwB`V9>2^KUji1X9eJfGKjng)myS#(4r*S zrvHhVRpmHkynB~seJJc@cMbv26xqIP8yhBCV0#6;<0oSh*5WcToMjH)LD9$r8GrJH zU)P5}<&Tk4^1ii=)5Y3IRpA9kET3rWZ2g8G4+zG@1Iqrn`rE@tME$#V8z9n-aQ|}4 zp1-NIb^qW;cM}QEZ9HG%UHayG@ijo?3lTlfc;H;?vAq%SBh)6bY#3RTl70HfP~M8MmnsHk-euQW()Ql z`h-#eulPpQ!!OsreLhX;U+=zeK7`}=i*!A1`+13$3m3LhwD+J09Iv>e{`~Z`22HsJ zaHaoq9HR3Xwsfv}>}o10MO*3DmccvM#Ib~lvd=e|H4wJOMY48^)$fFj(LU{rBE;xY znXtc0r6606d630JY&9Gv#J^l@NCjvs= z?5UC$^Z7)vp5o0|mGFjlG$uXO3FVSr@yXeYxhmkMvK5(=T5X=rpi_WWptb(o*|y{}S>i#6KSP zyImatAAzl822kPA@s*nxzp>ne)4e4nS)v5p&>c`-)=dqTfmw}6sNRpAZg71jVRln37H2#cT@-;9?aP_)wIN@B9-ii(!y zlGQoZQucqhSjpyP!UIYe7g>gcv4OZ>I|Y>54pdq7-4Yqm;w(s~UhL%(Ps0#x6%lhr zE06<4LhEJ3p_$O}%=^xkpMzPXXpgKYQgdLec=TIK%d<}_Ix#n8C;bFssXp$x^O1u{ zBhA5Ya)`B`(hVPq^Nwy(%4Xj? z+&5uig|jsa#og;i0D+Q5<4y#+Oc!WL;>EF$ABl_>GZVDUSGMVy*{sLtKj&7Qzc2Rc z_PvJUVAUSn0g12f3NW@s{AH=*HqD%^b$250u#x)&kVt0Qh~{vC{pEp|iGt%jx!&78xj5mn z-JiVgAdL$5)MHeInSo?Q&77seq5aa|FX3yKAQVkQZKdpqu%^EZ&FfK1a}rQ}fklxp zH90xin@Kj$pcHv#NA@pF6r)>JhvHx_Gv&C>LMf$F=QqpQiy*&?hkXM@@En zSr}7^qIR$Z@qAt&!Ewl{0GUUzMb}Dn$*q3r+>>$!GFr_o8p1i{R-=!OpX(bMc+hr$ z4#W$nKtwyqR8^X$niPSfYd+b|9PDO#Wm}QgQz)LU>}=U*F&bXNV7q?dFXdUY@o6V4 z*D-?O5~%)mee0I4S8mzPMaRa6KqYRk)LA<&*&5$GM!bm!XP7a8rM}l^n5n3z{n!BGUMQ)$| z-$A@8f2nVvuOI7sR_V*>H9L28d9(*gQpxo;?!kB8q=i7(7N66#{N{7_F}%}=dsn{a zpRY6^0t}Vz7xCmJ@*PhXbdzsKw@#=6dSz+Ewa-SkfVdF^j!K|(C8*5tY1l7Pj1np%@G4?B+?Hy`jN?Y$gqb1!`7hu-{aBM6sf<3=FqsrR zT)@ens(*J^uU7M){>&sqE0&jvEA6vm{6 zUFO~8Fqq)`SwrvaLMq>Smj2f9Xj79k7P#bx;BMzT zQnn|UX+%rYH_hV%2BS_*WEa^#r%rBex&XIB{55g!6-&C71n*SLGmEw0t~cW++Zep_G{Cj2xz=xe-XHfutcBFhNmNVO$hJe{yb^Nir7i)d%-0MLuF{T?5dQjZT(Ng`v6b zhkU`#uWGzI{B1k z!#g0jN#i&gGWVC0;LPrd%lG`1`UU6Kgh9zH9bfW08ua+&70K5@K)Z~fVHcuYl{YYT z6n(@NI82wx-kKt^L^c=4!_xZodMDc2Oi(Q>3Mhc6(ri7=)#zBoA6cAb#T`@~*v z)^n}$AX2rL?D7fDg@W+|{hM*)0u}~c#)5=WdMjtq>ROp5&RXHmZYS_0-y>UQ?LQ>^ zHPj^9+C-YbJo~Ful$m{=VW=#70`xKX_+*L5?R%tM>RH6`wWIGnSa>&d``<&9ke(sY z7cHhQ-TPrM{A`X))$07b4Q_&e{6?1=T!2gpa`XlU!$8@<8i*4-8s^>GmqBHdDJRlf zvO~I|aAOyeG?WxiF5zXq4{r47p1{rXQl=m{5Ec;`+{I_;a`H~w_5*J)!UGGdM~LCK zvbL~T$nXCI^h(c)SxUP?FeJCp$bTYRPYcuzdN zMCgEN0<|Ti3oc~R&R8WHUXy$ANE2QGxRW;&jRXM5J>-=yBgGrFwEKHZDZgL+27l&k z54?(!FC%Uira2hvijYKFxF4xZg#Y)FoDQsErN{@&IlzBuRV#xV8zAak!-?3OUzw=Y z-cZ_ZG*ISu>3Yo!%9`xr!FU-X8_EM@OcMnYs z8i?X?>+UdTMrPgxL?+M?)D4I?FVG>PK8fBEX6{>NVs#6chg1fDWvJ9(GMG3ToHO)bmpgiX68U9S!@!vrM&ey{UbA;Y(N42b!(8GlG~lhZeB@FbkiJ0>%? zu_S6MEwLqctoe|CBO(*uUx@ZISR5dp@+5&6y@G+TQ1=x5T(TZ+`FoN8nZh?r}oZ{ySTH0|EQw8Tp)zn$P_H0 zCs3PEKYU{9i-UetbB`x;u)S$8|H_@|F3n~Q{Liqj?VxV{4&zVcZjKY@!pKCLx`n{n z15r>rG3h>Dp0P%$XY*8d=E-v~hizWlO0KwyEJUdT*RQtbwuynV5Pi5cYKG7Mz&BnP5Qn zezBSnn!KM81T9pSPw!!)EKodjvp3*jb(IAqm`B;;w8d)((Yd!AY7X?UD~^{Ru%tYnf46C? ze0G)~lU6uH7cXO7vj8r)doCkXkZ$3y8V`PdQI^g~+yvDONcwp~qdcH$_ogl}(5`w8 z#UyuJm+;!Z3fB>oDG%GqD)hQ*2Dq6TO5UqCZfsaH&u0QO%&PPqcBdLzq;c*&gpZFw zFmPZZvBb*VtI3yc+Ox_Hz9)CWdsk$+Ycyg{qNP-&<6h=$0M(OmA-^{z7HF?kpMXoC zdCBGuB3nXu5ns*Qp^Ln)bb0Z8*#I(ne8@cBzZq!q6at5U-X99QDQxKGc#y-%bd}-* z{r7~^HUD3GU;a*Y*Tub$nUGmRQ5g~<8B>n25<*BqQc7hWO2!i^8A_SQ4k|*TOd(Tf zKuCtnB#BH(X1!~lp67b6_qX>Cc-+@@-)`S&@3r?{^ZKk-{W$)nc9Wf@X`V2eqXyUQ zESb?8zOtPJ@K?~;x=K+?dv74h>BqYefPvG6Rhun^F!t@=# zntVMyJvmF2OX(cny);O@PV$Fg9kzZzxU~T8HuX(&4aYV7!fSsVFXM1~Cq)0&yv4+a zQU8mL0Y|lG8dL)>hO;|qDH`t!`0l;SCFsxS3aE-i0I6!t;F8~0*7S~+wDFi6vqm_I4ps%boD0}|^GTs}*HYdI>8iaomTHGsdddPiO*eV$^Zqn1&kQ?|dNz=` zwMw}BjB)ZiU`bB98^$ciLcN<;!xW=-nAQ#zRNdA%5i4Hxa&4^a?kmWX=v#B=?Vh_5 z=a6d0nG30e!`J#90u_d?{Is}*LDhtqwxac|zwUqg{ku>V*d$swAwC}Wo+T+kg89!~ zLRHsIcPqoVDmB(0WmVtB2^NcDH!LbZslImO^x`1Bd6$XRdOl$PZwa~i1FiFUOTV6r zlG&?y?~&C5)f~~_`KGeUr?oa|yK`sSW%5?PPpgR)PHucZ#QL++EPi^!XOOApP-W%S zzsUwg(|`3A&rAju-TMn+=@yymv4mR~BkXZ}Qo1zi<$Lii!S*ck}NgF}K$KvO)?4y+1a0ZP4!|)XJ-IBL#OzgT576 zyZ(3O%-T&!*C?#Ema$nRRiI2+g_YoJrS_>b-VKh zxTLcovF%u3Nx*VkfGc2CJ)&mSiR@?7F`@$8`^k$}J*nnnN&Y{lGh*!?CVcN~9!>ZQ zmW`d>m;2f7?8sa@l@IV5N&&NtBSV~^Aa`EzMjpXlGjQ{&z-m<6tx&niV<#6NS?%zk zeteq3G7Eg{DC^YdW*KQfqysSG%oBu8#m^fhT)Ljs>IWd-@#j#6sq+4-ko6PXTWuno z{81YRL>)3k8QTH%BLrOC=7WZUE;w#WJiy_*3xka89X_oxtmk5WrnY3aMyap$xoI*r z8XE>+k{XHl5X7o;flH*?`<8_0gn!VV^M5-bOp~_#)y9*Tp$neEeepM324urG)1pJM z-vh&Q=$;6Zg6{KaGv=2Gm*1KS3siuP0I^U$sG;^^Pu`WrG}HNj9T+luP}aDjXKe;QQEB67W3t%3#xwcZCU@KsvZD|a>|Bs z4E2KZ^#dC&;cYGc8N^w*2+<=5yq@*@@xd1Y$$TeR^GE%tk-2Dw7zWdfKjIX8^)mA9 zH_Tk{Xdtfc`?D7Y{`IfLA~@h`RH9DDu}$Ne9leIzRMl=jZrxS^twZDb?yC>B49$NM zQPoOQ{95f%U%gLHcH_C-E9uPmbJ1-V+?f1+vVB}KMCRMzGutq_r2$9zZmPA6v@*$m z?EsE^r+8bpYm`puan~yUrbmrXSNT~Rrg4n@jXxbJV802%K~9Kjs;chyE#jnd2>wcBn9b?iu64NBpv3t5u3GLk|(K_f?bxA{C73UzCY{!h5q0L zhPeFw!pXG)s8CE^8)k6`kVlU&Z82b{UbEOGFcMuk7nSdTbzf*kcyj~TE7NdsB%4#y z$DeubMhx_5>YZQz{Fcv00pRsLi(IBLA=W92{ZzwosxLP^p;`do%XWSJtQhyPDfrDf zS;*Y$v4!cwD#jdbT!J_b!TbfF%yTJD1yJp1v7lP^w;R3B<|M}#wlX`cDJ+2Uiv@x| zY$qGQs9M3@j>^ZJPEBkdS=CVd!@ly{Jt?eM%iwO@qPzD^^(W>zj{8=} z%PdJPN6kI(luvHF-ukpMVYi0TS51P=p2875}LsoB`wA zi}Q2)^KfmqeLiv;N@&PkuPG2?7BfRujU>)k(H-RKyy48}v)IXT{?RPNx!9aE@r@@S zs(v|GW+!a98+l&$s|Xfd*U}U+#AscrOGYiAuClZT2vZDL)|fD##crS1drx_@p1mx6 ztkBJ#%H#7mD;ttJy23CZMwOdmi;`|;k)oV7L!6*Ld?V}jYiF6`@PYfuZn7M7_Fvcp zIdB;|%F&&5p-i*3#G@9dzcZMc^vz9t`xvaM+__!MtuK-%Cc(V6u>!8I)5S_;C`oy$ zQ7Sy$jH)N}I7rKY3eAk|v%DgOEr-cDM7ae(59_J z2o{l(7K2^;VGB6!s;eq375{ylp#*}Ts8Fiq2#}CA9-2!unOl?k!*7@|8+``28i(vn zA#T6o0oA$~PfWqHCQZW5!$`RP9Nx_|wT3|MKVOajE=rSOBEwUqdxPwfVs= zz3jCFqK{kmz)SW*bwtndPIdgvn>Ua;MVTW2z*sT%aa4T!^5M?cIe0s)&G&gK(#AKT zZpaWJQ1HP=J;M3-%Utw(_@oMI?x3EKJPWSwwA$b@HiL^D7a;jkCV*14UPHRdFhmyK zEwI}Hxkq0)IoK}>T|i79wYvKGId+|yw0($0v4k5eJJ>%Qh@h|J1$%&RF9QuN~Io611LND@Tjb60lOLFhtRhE z^v0i(DsIy8$NBf$`WabPD*v?JlMa@%_LE~A1VpU>_q_r^tz1aqVy;{vG+bf%pno96 z#o!}krb9*9r%ap*O*$^(a%}c0c&)NdD}Ff(#$A|{IB>-=i%&a&A@VDr4 ztcKN~VEMU}CHjfD+FPzs^RZFG%L1p)@c!eD5WKdL2MT_J%z9dTKyup}7quT~`1x{( z6PKV1QPFANO_p=7zVCgQ!RF+CT?~8_yU&elD5WVPU+d}nd#x+PiK~F1hxmFkYzUvT zXQ)zUSz@K?{|X%XbhCXMu;E_@vls;AmUQsTH=7}tMQ`{l{KhvBy&B@?sHhBsytiXq z``FzXzTg#`V!mRYdP)CUx8=rq1b40W)g_3;LcXlEZ9AV0ZU!Kvp+wg4yO!1cm#(p$ zTW;Tn!|EA+jOOlceHUM27L%rgj&*t7-dqq!$O6*w=rGWK-ZgxBkk$lxFdWX?em(DK zSCZd}#uuPyg%sVa;DogGn1V-F+72+FV`HyqV}WyTisp67upw<_E_ew4*BDui`^+o0 z$V;A>77jg?bnNXo25d4HprNsO3WdCv6lEo$hY!z(Lv&<1zpCIhC_4eL=aN$ESq+b` zhy4I0?OGt@%g0r%PdVE$122gcU3?8G0aTP03eZA8kJ1O@ICN~KwePB_snPE`-LP3h zZ1{8~uR*M{Xv$Z{;f=NLYH_llo*dCd_Exou?OScW068F)(MH#A#$juY7X!d_hI%O5 zowpwJ*?CE`l9zE9w=tM(T%U(Bv5fx1^U8Jtyr@uji4MA+u+Lz-Oo;aAFuH6+jb_=kMd+gGDE(pWB>T062Ax zN*@ZQGq3X;q43pbM;xW(6-dyt72Kl?p_bL=pq1!8G?rZJ9o#S@T|Xv#NYEK9XO(l^ z<{Csn;9&KZ71p8fhr!FbL$TytEkY`> z<54yj4=n57g$xK4nYxh6Xp1p#<@LL?hoHO6p<@j6%$Gu@p|NYz@lY;+SLBM6$&&6q zdRSnx(WeG9J3h@k#^v0fPoN`7uyb`6G&0%?*$A3^BOa^ZzxYno^cI}buPQ4m`P}I> zj~PiG7*_3d8Ut{CMW5k@o}$Ec7+qRN|7!&ukxk7*G*VFbBE{?RoE&#U+t!LSGy+d1R2#hfB!~pVK&9 zzk6hsAV01m%l)x4ZWa*hA(Upv-0u_8!bIB2Fi7%*FUCAJ9R9}J-O08(=uxenQbu)i z2d(^vYx`P?|FGrlEgyoeK9;EfC(|G#LrbQcK3om0qN^>Ee-nzq__2F8E&5gTsa4qv zxsleqg68vDqvpbvi`(|qxzixuuvr$|bjLi2jkUXh($&Je+@9n-*`WVK#@R#O{r=1( z1XyQ&(*2r|?sxeS%5TwCWS=aB&P~)RwlGpYq*E3*2nle|Ur4yt2QbF>(%$*{^_-wY zlUeGOh|`05kdU#r&wTN#jPVD3h85yg=df|XzbWNoIkYg9iN?iT->KjgyWth`Vum+NS=zWWR#~33 zM?Cfi{I6P?=6qf!cPoZ#paL{Rww~$Qfi#c&>$Fo02giGuMj}5HR65)cDSQt>yY`O9 zYrF6Kh2kwGf3`i}YxRS%fkMgF2)cP?fYej{&NN6m1Zyy$bc4ya5mN|shbOIavJi}3W{UhxPl!AGGqmh`E*Ru zvfu5=AAf4GN)%pW?~4@f`&7)bjDvvK5)35Fyu~o6f#~1-Xqb5%rag`xL)8QStI8XF zIqi%TLfGs-gmON}Ie~xv9zEr;XwEF+#SkRzW7p6vMSUzvLu-0)x6ZC$hyv;R$UJcK zTfX*(a-uWlAU(Ekr|JxqChX#%#;~h@E_f~9v;zRw-G2O6lDVPhgI>=y+B01@KQCt- z@HnVUR_wG^T3tm;51`cNvhgM&P|wIKpKxnwJphUj(fasw2cNK%A*o}FXK8`}`Mq^% zLBkO-arv#=Nd^P@{Z%(`d$P7IUDS;+wi|4F0ld-1XW8$GOo~t8+=2WwZk?`(NkZ(otm%`hgEj{k`;19P&RVcj6-RyVg+6CY zUY*fHzaVieT)0aWGEv;VwSIvNaKaYo_ZuJl+9h97)3XCW1)Fy{95W=dvEXhRRm)aC zM6Ft&#L%g1_~%V(8;1Uu&d?e(9Hf!nlU{jn5}YO#gInP_Gc--hof#S$da{&EM&oA| z!>@er_U5RB1AtRf8f+x!tM_><+Op}o4`o#%GsUKBmj5c>w!`<>tf+60bK}h3 zn$uSSAk)V375!Mr#lB(hUrw`t>(ZuUocMvznu-sPPreGL3^aB(jBwgrHX>9gVx_3* zVk}rGwP;cw5O2mCcyTd&$It}Ce03)E8o#^w`#U*^6L-2DR6BT3a8yXVS_Rswnf`1d z{bA;=2KV>g$?43p#{cnV07KfgA~$(`Qq{f+_ ze>bsrYmq__*9~DRA^69TCWL{+uDXoYr zjGd!aVtv%@LYjUG&18xG3Fe#XEKA$$qZ5aeX>1nKse`XO6L$~z{S_u~iEk_YdiH=p z71h*la0c}l{CfWUc}`%)$sI0Xud)>Q$=hus_^(*e8(52G3nwOa@u-3OBx-+(0VitC z8ryc@5mmGnt$<;!SLxk|BT4sL4GP%JF7ita^ZT(cmUf$%c@ow+_`~OXoHOR^(z)#l zA5~OV8hGa9HCh-`?a#QZ{3DeiS_jc{wT#geo=8!@aT%?oUoL=CmPFcc9s22M>&MnY z1IAl~z~?)$(QO>vEp+5V76w!zps1uk*r+G-!uPNEu=2&F39* zbJCH&SZ9grvykey7K<(E`sZm}^>YOU=xEHXJ-0L;WF3c6l-5(*NM}8F_~yKH95@rO z9z)(^>n=QfGU~ln`O%^J9l0f)ehH#E!`W|01vh>svd+3$tWa4&FD@16(3-2$U*&x7 z-aSTLUjCO*-PbdToXws=sJx_e{bklIe%9L&CU5HL+$;yzEz!o$@o{_q=G>QIOw|&= zTdlL`y58!D8CI3Op&vo*rG$MV>mDmK(MR zp(-=az%BRQPM;x)f#Nw3Qg7+t0S%%Tdi(nHJUOb3vP*fji$Y)V5Cv_Y@efxPM_2Jq zhGZEYP*rt!wDqGLLv@v@sk4eYvI4!(`|Xf-)|vjzM$o!h-KpR`+v0Zquf&w>;^@E) zweqsE#FBqo;sgu*tfHwi@gbJK`%1S>q&cgtN&1U9>_hrtZ)Dh);%~0`xMqo^(kCXe zWNu|0mxG%J@dV{cxBa@ZgVY}QfJ3XBr=wGWk7OF^@;>dQ+7)jF%Rc@Qq7ZR=mN)eZ z)NDpF=iN?*{DW)X?lhZ{rLr|I_6%)U%kw*(JD2h2a_L0mEweOY*HgF|-0%6-L*C{C z_*f;OyHGX0*kefBb7b*$9Hm7(9H)t~YPwd_>;Yu#y|{jxrn;)>!pp*vlCF1>4C4<( zV|l>VJl3jUq%FvwrLcu$Y-wfHtSLI#|J{`Tojy%$sv0RTUz%Ba9+^scf)CXU_Dt_3{Hz6G?+J-8(&Rc+)u!Enc}+teohNMGCvoW~^=AIV&*AA-I$6C#(~KAXASw7D{9j%=#$1(s&r&6ia_!&j`|Rkz@~FQMCm?nnT=D{Jb(y%wH2@|J~DxhG5$ z#=oQePgTNYx83{B?Sd*GIxduvbvH!&X}ituwm*Na2IhsdzcyMZ25y9w_6iF5KYv;r zJ?9>>YQiZuPTB~a^fje@_LZ@E64qj0813cXn)f0Yr_PQ?Jy95LB4rpDEK*g33r$}) zJ^kU?vu74vQmzj}tM~e|`qL2&#YfNhPP4M{;TX z6_T3AI$S(kZijtmJu4ph#&-6?hHUjOpoKhVT^qeZpZKZ5gm4Ax9(w8us}7Df^;-d9 z%PvMNCl`H7m-y-y2j%Ezc{)5*0~J$*&@ZqH_iM2oj$<4WPY5NDe6!6e1IZ5$9y+A3 zZ@bf6!kgDDUUw$S9QBzaA!mVnHc+X|-pA*F`kfJv=bV*jx&Bt3{7jYU{P2zt$W+$% zeA;8I<73A^QT<$UTfE^bX2Z?UpFWgf1a`gR)k^>ML?Pa!2Wa8N*m@De$gMYLr{;&# zU%$AlWpjUsg{%y_kK3ng_gT64Pg)C+FzpZWykx$xE7qo`{&K^eTk}2&8JyM?Vi-V) z(7WFL&P0t8&l_NT+wShZH5>8ZRVUT{J$dCuG2CY(uWSD8Fk$;R5jq(?fu&28V8k?UUMKX6z(WAhL<}=c z;$W|1RJPB7=0h}(y&;>N%BCn=ei(a7AuAYnk>eT`PFm zNmM48CM<@T5y5Ywn?&~#eN3djoa@iw)Jmjx_M~?Wn;&-gtoen;8BKxtDSkvUJ%|2$ zX3(XeCFaY+hu{196MDq*noY$*-k*N}xl<<|%5&G%Kk@Ue>gP|B3{)ij0ZGO6?uSi} z#sdFi_jMZk5{AJYT-mJTh2^q-EjHdk=a*S&>mx#=;Ez^LL{dO4@$UBa8lL|B%@^-J zc)Ej5{H<+Ho!89#)<<`QoLqT|gjjoac0LDM&JVT#sDIT%%0uHJO3%uaDh4!?MID@+ zM8#t!cM%h8pIzx+9TWoAxKnW3Hl`8s8=kjDbu+Jn&Lcb6PaaM1AqyH~v4?wgFMOpU zJ7kY+OioPbve63`Dh)OZc#)v#BvO&&8J884ww{w8<=PyeU?ZNu!c3Yr&kYUx9vjDX=4bc5sFMaVVIca<4x^ z<0`vT+8PW;{MaaO%SqYZgMo^UqJ%PVb++!Db6G2t_((11Eb{KLM_vHxFIJL!`dmsP zgGst`&4`;<-E#U*beMW_k#L2z=@d`PcUOC%3+2?Ug0PyY-WJ@MiFdks1_lgrFqSe6 znl&z{dEK4<;@(*!8t1u#A)%!zV|Avt*Rr!UhZeIhmz0WX7bPKnauS@(wL)Q6Xp&ovfIZ~EoA6fA}7o?&d;FFwj)i5)&Gx2@oAItOLB~@jx&{i zq4V(_uPyf!h7F^RXI#qIX}x!1`C znLhx%PLB4qiRlo8h>g1VNZVk`%pRU=U4!W3@&)-|rDuFnC(P8*VQJT2-8u~D_=0kH z7<@QV5|a`d*kwSyHZT*aPVH{U6VRjD{_Rob+ zK2+*>l}+EY6wY${4NYSixCb>VBvGb}H}5^NtOfx%4snKvqyI3n>mJ z9cjwlP=7&7mDqle-CWD1K!Qri?GBH*-=*DjL_eOcs=0yNXg5_z_CD#%rGa|6;2^)k zqrnby%)30Ohl*hFK0om$ZLBT7Y|juz2YLprz8!aia_iglrDUmFPOvxZ0X%_ZHre=o$hhvuH{e%h z`sgrgYz-jI&qtfOrqT_LQbMaJ3@r51?Wh_@g>CoR!JB7Mw6Ngm zc*{J|P6mnGDQao=bcyTKWKR|l5NP`Ds;v|kHodjqv?w~fMUT6J5xxj^AkyZ1CqFqh z_JsQ-hb>)ldlO}-pG=31P2QVMj!0+asN_xLrJ33#WVh6hjg6_@;75fCFj9k44jm^P zk3_aWv6qEww#mP-dgz;ql$7#JYs6RvOU-3Vq_{n0oi)9Y%(`jH$h1Vttn{f9H5rl< zkjk^3VDsdM!!;|8Bg2b8sG=GdC9b>|`x|Z03R#8x2iouibk>V(Kc5|#5U(##qxVrF zt3Fhtg{Aovb8q%UakAqPf{iJx>~DjjABHK+(>-h9Wp#RY8yg!x(*fe)C6yFWbDh%? zDg^SSdNi{CTpuS-+FBz7awS3G{*a%pklcv=02p${QRUJYG21Zj+Zy-Xr3hT}w7^ zG&^gUCzQoB!gJd9&+cf>LP9kFhM`%euqkg4^gTJZe=11v>0}tG95`_7-O#!p?5vmrvyF3Qk@k%JTAKjsW#0JD3|}2WQIcJJ|nf>&kg=T}yS?x&#ZP?=H9$8QgtyrQ>05R# z#8fknZ@IBPTboP=qfAdRcaOYg`oi;<8C5`|DRkNFp!wUJ?8H6K9FG@FZ|`$S;^W zdH(t|?5QoP|9j9vn~LZMM98-d+uYspeyBboL?PINy;7T@i|64XKV7J4V2lOb&OGHi zRcWZuUG1>RkqPd}v3j+?6CJ^s!q*?(#tfaIsb(j)s82# zQr(3@w=*~80ge1#Pe_rTJVcCgR| z(V*z>lU>iBvVsupIYEV5x5Dv6-bZiJ5U)uUX9ALyYct?yxx!z`M*w*8NIr8?0m^9` zT~OS3+3DA4Qh%8fZornKoe)#ID&y*fvE6;8Fo-JPW zO{EZ2f)dUsgltYp;IYGGM9gDD=}BWn3qAa%u14%9i?WiNFTkq?z!F7VyQ!doK;yo@ z^yE__me+E4Vqk&iWu`%(uTvq?Nj#Q%j_QJ3$d3_4i6<-~x&LBKA|R1hESwq*iQvf; z&;_Xn+I4Hu+IM2Fg03fM?GHKsUEdHRATC{6_yjd8`IJ>c4$oQ33Jn2 zb{I+^2yC*s!YgyLlL~+Cnwz)X zH)QpLmuhNBR=CXc?5vD_<_YdDgbx1xM<8Ososy!W7#lu7E^q(HMHY4)oW8O!2k!Kq z{(gN}jj?Vj^qU0xT-+>q-@W#4`Qhc|2l&$v%XI+b8<|n)VSiWOSL$_*jRui@@GRRp zySj=zZFfVE?ovR28o_XH%w$U#o3yo&Any!9(K7)Yh*&dHSBmc1#Z%L_GA~Yk?}r_C zMz~YKC_!*a0;DRf8$vhnRJ6lbBnV86v&#hg25=H{1n{VTdrqay4cG11DcAWV^26=# z&=J=Kyu6Y!Z&-$~No%}f7#->NWN(GYqwW!%;Ncf>dB>%m)^J;Isv$7wA z701kZntUXnd=-jDhnN2F_<>q$35c=TF?T^Icz&Cm3#@66;N4`u3## zhgtydWLCDZbf;;cG9szs;mz5;eAloIPcf?tPjQOtc6@e%TUfSDp7%W)=}yZIkO{~i zia8M1UWJ=9;*wu~JlTn^zxo)P$uw4LTW{&L^&>Qv+<0gsy}^v|QjMdR<>s9b_43VV zyW>ytuJeqYUb0f+N4U#;aeXhq_(7C`O1p87wc+v1%tv zUbR{{$6aTd)@LijJ6S$46Zpyl5ie0jTd1<*cKmU0cD*~k)ZlK-`SI@CuO1#A(Fp0z zJ)}W~N>btPYUpH%2S-TMl2@?L4n@Ki5$Ckx+(K<6$Lo4FDJ;R8g1wmgXRF<)Ji74xY4 z3h2%YY-2$X83I@VYUP9T!WhfV&EKZLLi(0P+DQ+8{m-Qf)%P`nofRS=0S z#6fwT`RUW{x`~p90ydJ7*MTl0w}N77qzj4!QmGeZQO@dt_Qlr|N7*LJlx%2`Ar!Zw zR$xbNA?Txk5~;*J@`gYmFFn!){~c1X!=3$uw&a1g@ZDc&&DDhv$ml0uS*xlU8^@}H^GR70M(-lVbJm2?1TM3EEF5ZUAI zRqatWxgiH3>WaHp#9o=V5YS`H_);>g*k3`;r7~gGEiY+w-xg*#;qNgCzbnb=O9LZd zB*i5eWHLgI%YXqw*d2^gaIk%OO`5V#*J!I78HV18bh`id>LaGRmXPMai2`_D4%*TQ zNbadsloBV9K4FqUitzno4&v0a7g;4EAyA62(-yTJO-f2)1hN?L>yp&mZEjc!JfcEn zfGvqUjFXcU=;YKL!oWyrq^K}@5MsNnQaUIvDQ+a2Tt z6hZ#Y>a=bUEk;(LCm@wZI#y-BmEXGwv(B!5pZy-j^~fmzsbeIzo>Q37r;!B2}y3X3_46Z|jy z;a5IY0-u9WB~oeDVO55HC66KPh^BfF;y)atw*7E?@8E;J-(Bn7?%ERIQ*doctmwL^ z*rWm?AH&4Y1fiy^uWyF8YUC&T{koA+^8Bb(1W$V&iy}+gf%~DG(fr`MV}NYxfiJpZI0?wP*nWC zmuL0)b=^W|o5$o@PZ}*hS>L6c@MRP7fWQqJr*({Y=Lo7a>Cn~)9Y#0kmV~T;ksxn; zPSp*J*3+nH#*?!A!WRiKW17wM4eEJ-B`9w<8kYx?_^Li8w) zqxiXP0>m@+YDb-1k4#X+BpG^PAfmIq=21bD8iF7DGqDU>k`unjhSb|#m+N` zc&1`?Lla2$bl62{&>>hwE2kZlxOuu8whj&sO`F+>g6Zq$`*;axg-8o$|4NUcai+cc zQzlk%ZIepI!K|o1QHb~u?-p+Psb&?bU zvw9(|l*;~PoBb}|3^P}@`ov9W99y-mKJf06csct{p;j~Yiio#gX*}`X^~2)J+c_X0 zz?zZXQ$<<%D01ZLaBh3RH^DV2g-D06ba~A?+zXU9%>3dIi_b1Gsjle9#Ds);N+C$g z6}*unlRrG+gJOzoJ(AfMP=5^-hvAq)B?uz@UKCJr6n}a;*xAB}%8}jlmF!=ZiK`T8 zyE4|lxSa!`AG5QD{L))p-Q58u-~1`VKyh)g$v5M2d$sEU0S^&c(E;*Q|82kZ;E7iE zm3Dsf$8GkbDq1@MLkv#sb~s^ZK+5tD60IA4Vz18lpP|wkTxx#=(MFoqN8t7h4idGWVL`vax<@wZ z$)E4??jQd1$83)-S=P0=&HI7qsS`jzEU~<7uU%7AKatM;_%avS2~=j7kPQ6)vl7Yz z;_;=nO5YLv!bP7*Uf8AoGL;IgK+zbQt?TJYj6J$vqNlcgObNEb)To!LL2GoD@5|W# z-m(dNr;LeQ&%`gjJVo_xclH3y+J31XFok~im(Qr}f~nj2`S}fOV@u@VriL2Bc?ms| zKzhBSNws>^^vq0i04(rvOg}kHuKhfgV=GaC^T0;E7|`gkDQwfJ?VD$H-jYkK+nry}UJ zP{}xZDkjVS#A_Bbs|b-16u>6TkXsA1z>L2_%jC880zWKj72_bx_t?Le;1NTPK0SSf zR$mV6n8MWac7TJ`4k=nxXvi5(1=I$Y?_*$7Bznin6}Fo4iH0PqacFJXtvt|^E+YYD6hcn9 z05BHgcpSqZ=6JalxpzG15c0xC|4RhYXQwt`?(BeO7KPw>{ zv_~S6%(5e-osPN8Q6VYe?~$Co!NHaspzV@8UMOe4sd-42f~`eiw`ETgSH*oZq|z52 zVFE8=AyClqA0@zdPdZ+|M4Q%2?;WvZrn|+)jP!OKm2DTI-tWTe1uLV67mp*I$*D_+OX?8^ z>jy|;-{G4PGeW#AzZq3G;-eeu;q9GBjtF)!jQx+0BS++3L&*9tIIl^}J4PX~UcXhR z$4H}GyZ3#TFK1<&nd@Khl^sW@A{n19=47VKW|LZVA5*!(VCTXFPgYbtiRb)Ii(9}k zlY_PAG1Fj^Zw7F6AXfx_L@${&a|%CVQgsiO<>Lw+8iFHDK<7cLZR)chjR>@(0k%Bw|=;L^y5}pQT?D{&V1n|WoWdAm& zebel+t1LYRnEq~*7mpPxi2$^eK}MT6VWF(DlBd#$YmyIPBY+xZ-H=ey+5S8 zyipQn76snOX=<*+@MYpQyuO!5ek+NDGARwqN{ad4gOj|r&1lyoFW8oNT%V6bs=rTn zOpP%2N+}&X{OvR_woCZSqZ#<^I?(=-QJ0%w+4P)aS9N2!PR4T0rYgDU4{4ha$(Qni zpTLbl`xFt6dF3+e!(Lin@^8BNdUz-a?|8X{7sANxOhkjwIhdw=ehj|x~+N7pU#Au3BYO(OqqkEvL6eT}8k^T$s*2sr= z^>1m_YdQ2>Hr0u%YjA90d2#*NcF22r1WGyi7@qoPP5c_obSCLQrtt^hn_Xs>>>zra zGF{m1n{kD52NY?bR&w_^wwzi;*bM;muQ?~EN%_$g5aDCPy$%Y;;LjDxTfpAkj;Hs= z;cAGg+9xL`5H9hKzO2v(3Rs|VT}?>V2(%l9V{s{aj_}XBV17gC`ZmXA za%1|?%F&!T zXIVHMV*mELI$ANkV1$5~S*z&1yOSR@K++hVw*8H)2CPS~Nc5zC5qQGNUQwT1Qrd7? z{^*(dBKZrjWUT_2$eZe(xR_AG9WA!fwoP9l|BtuszBY}stWRrEOl8=iZhAS=Ij0gu8VZ)gJm zde5@XzFFsj`@W!@fo+vONaH-~<7y*}ho6tVprqJ45u?wZNzFeWQUoW(#--y&tF#`w zG%W3z`CYrInSbXZUHIXD_zBSOngI{Z*6~ zhMsa!NF4sQBLrI)SoQGGw4_$^TZzug%PUL>=KbW&fyjcOWFskViq4^b(JQ6f_byM2 z5g}b7Pqo7VBGdvJq^=}AQPv#@6=L5JxxV46D^_N!dztBiJbZnVi%Uvwx=Qh+oi2+F>!{3sRGJ3@s}%I)LP%pq zl)Kizr_AHX-k=>L&>S*pPUFO0!PqbKJj*vs69j8v5WWuq3x$F-5uvKf7y33fHdMo5 z#~d5w;)#se-yO8XZ9MC*j=XqJy<-|9-1_oeQY>~inwL3!3jBh%mF?EfISOz(@;-y`u%r8`; zG`@xg{l47^N}}BoD7WMzuD@P?UN%P6y|@n~Xi-df4~v^PK-MDIGn=6#ZwwZOO9Knx zT1cXJ3|kJ7rbB}iK?%+tBp@d2=@9Sx`t=;nHru=zywBrL!2ZJHWJ z3So^GUo;SnT0Vdb58>B;z@D%1$nHmB%_@lO0Au|zG$ceohN6_a#T9;1{6dDQN`~$f z3r8HvR}eYKc3WR(rx|z>k07FQdd%svsCDX#*8HYz7fb>8>7-BGc-GOdpP;ZG^UGbgel!p&e?y_{4fV~acGm`T3 z_m>96a(oNsP@C(XSUXHZ6o+HpVlyi%sPz35THV99P89(B!gFH?e_%H`Iw&W=+78)# zRLD#$yM3o`J6=(omw*n=gUsDLJR*q9BY@zj7qNHi(-P_r=A`QDwN3UehRa& zer!XHr`6cV46ae5L{Ct+D3%@Se}Y%(Udlhw2NDKL+3&FGtyE*oXD||5@~Rd&lwy`unlz;9bW|c}~AZ>HhW^MDz#c0rT)wZ05=gawY4D zGNO0beEFvzu3*|#_dz5VF6Up1i9rDYYnksny;B9kE-EeRzKHX z0`?q>5E*;lhVEf?B`FN-83^a%#yo3{|13wZ8{IaP;U9rgF;I#LsQLsD7FmBA9o>a} z1jvs^DzW(}EgFIxD)_sUg|YRSGmsUM0r>Y#Z%VxA5$O!3-K^+;T(976fW=08u^$~d zvnAbY^WTJ4G(fYdK87{kq2_Jdw||dup&Z9D=skt1ui$ex)C|*i(4lI*?pg(`d>ZuY zig-8^q{mqh18K~DBibWPjb^vvy&I`rm59RQr({~77l8h4D1k?2u1iqD5cr>d&@2>d<) z^d!^JSt-`rAc=q^uP_nFvJ%6{o*I9W5&>)#hvm#M>A#I%`}rtvG-NgcM|$9{8}{AW z2Wko-v|k%fagR~aUy3uF;$cDh*euWAXUb3lW*8z%w>cT(kw)SDklP2fcF$B8P;f}LHns9}T@>g;KzWT3_Y2n+|R_ze9{p=&fa>GGk;2SOHmYDhn_yLELaA!W;lk(ViH`P3MU9l8Kr0X`uksaXU`(g+TzDQ_Y&9W z@USps_5gcc=eTiNph1Z;#8zm51h3>8?uFv{M2M4;{6oy(7@R+}$N~{#J-iH|TuJ$` z#eOU;DG^%z*vslGup)^>FewcS?KOGaNoYI|yamf?VM@LPxY7!&nq+`YLT~|$)e=1P z1PTqOK$X3O*Th37*!j({Ap?CY!DtGA3KDRv2Lg&Z_+u(N6|T(8%$VvTE@_RD_(kX? ziO42+kSbz5G4-2Bzv?PL+iCKFKcB}3q4g9bwMT}0e+nGJTAqTd66N9e1NeAOOZ2dk_3^hSfcLM0s{Rbt|SE3YsexDxg- z67rL?u7<@%vBD8=J&bL|p}(f{cO14*ONv>nW=ql`atod?_)Tt6d%b4p1OL^(Ew+L! zd$bmKS&7u8tfHd(A3kw}@{W5ZZwRW-Rr1;7;FOc9@N`LPkaawJMRsy(W5XJb5IT;z z66qxTHFE4mFO;cW1wlN^j7{lTrtD$TAz*k(^vH-QSwqQxd+U4(+Ol&^F9;9TOpvy8z&7YtJVsSLl2sr3iO)tg$g$4}p zj>=LuiLgJ$7(M#?w}*c}cKBBR!t^3G7e1!xk?hg8wzgK0ghBFQsYMoMufwtyD^g}s zR3!`pSbU&gpYW<|;(^DE`Nkc|CH9KDVRMqaDMaGNg%XMTB)*~vo|;}ryaJG= z)BqU&XKaL`JzT@5x$6j@zrhX#IE?H{S}<@irzO+w2!Wt_trE#Hz5YCnvxPntBEG~s zq;*H2k`R3j%rZ9?&Ns3+!bV?la|mA911Xna3y6kLTWie1GELzjlBgI)Kn_*F#12p< zA_R{^GA|7h6Z_?bb#prshkL{<5{6GlX`XQ?0y(l z6`pkU@pO(nrmrUTHIrFa;c_5;vzM948*Mhl6oYoqimCjiYKz<3+xKr_Hi4lbJeeW8 zbctyQoXyLyw%WpXDUL$q6=Q$wlxaf(@8LnM@#5F74{q)UUyNB2y zw+cPSiZ6P>*3c%R0ms6I55H8XTp~Oy!F6t9X(^sOm7U-Of`@VyBET@*t6?#&>>t(n zbAc7SDbDf;TU?Suh=>E?h-~!o%g@XSC41uzi+uxMX<^N9JQ_qEY&fb{@ZRUbVx~?o zT_`<)v)ma1skS$guf|lEahEzeIVFCBJ(3G~_6XTOt0zhin7*4cp>b%_H6Fs&8dedI zxK3ei_=i$x3iy}vUHxF&_Mn=fht*O8wD4L=RuLklo2vKOiXT>#G%L}b<=HFO2cP1g zeDLEPiB}9GkeHTjoX2KbE$RT%FT>$l^jjm?MfSur7-)ZepIPKxH|pRSwy4;9%Mr+C zMLAgB&$92H&W#Uqk+!bT558jb+RU`DzN<}l-+*Zm(9(~xtX>VaN{d~PYcv17lHMbX zaJm8-$Zb6QpdbvJ3>&+kI%Ug1ngvtYQrU`o*2auus`|;B7dmp7y0cvz=Vm|$N2Ea< z?L+$?L0TR4t9soshFSlGma2w!k|b5(hj#MR$-k;FtVYUR@C#Ar?@{;<{tddS{QK=4 zj`L7{D9i%?CbSc;1^zjYLoE1*6pl9^{)xo#Qp(Rhtfb%{qR#(b_CK2aZ)@PQ@W12q yKdyoI!T*@!f3#0bjQ=sm|1n3r5B`6d Date: Thu, 12 Oct 2023 23:15:10 +0800 Subject: [PATCH 16/30] Update README.md change logo of MetaGPT --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c326190b0..4bc480a01 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # MetaGPT: The Multi-Agent Framework

-MetaGPT logo: Enable GPT to work in software company, collaborating to tackle more complex tasks. +MetaGPT logo: Enable GPT to work in software company, collaborating to tackle more complex tasks.

From 1987352840408cc7b0e93b2d2de9af14f68de6e4 Mon Sep 17 00:00:00 2001 From: Sirui Hong <34952977+stellaHSR@users.noreply.github.com> Date: Thu, 12 Oct 2023 23:16:46 +0800 Subject: [PATCH 17/30] Update README_JA.md change logo of MetaGPT --- docs/README_JA.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README_JA.md b/docs/README_JA.md index eab69d912..6ffc80ac7 100644 --- a/docs/README_JA.md +++ b/docs/README_JA.md @@ -1,7 +1,7 @@ # MetaGPT: マルチエージェントフレームワーク

-MetaGPT ロゴ: GPT がソフトウェア会社で働けるようにし、協力してより複雑な仕事に取り組む。 +MetaGPT ロゴ: GPT がソフトウェア会社で働けるようにし、協力してより複雑な仕事に取り組む。

From 6d0081c59b4ee26a61409c6b8bf773182298c98b Mon Sep 17 00:00:00 2001 From: Sirui Hong <34952977+stellaHSR@users.noreply.github.com> Date: Thu, 12 Oct 2023 23:17:50 +0800 Subject: [PATCH 18/30] Update README_CN.md Change logo of MetaGPT --- docs/README_CN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README_CN.md b/docs/README_CN.md index 7a27a0e59..308d6a131 100644 --- a/docs/README_CN.md +++ b/docs/README_CN.md @@ -1,7 +1,7 @@ # MetaGPT: 多智能体框架

-MetaGPT logo: 使 GPT 以软件公司的形式工作,协作处理更复杂的任务 +MetaGPT logo: 使 GPT 以软件公司的形式工作,协作处理更复杂的任务

From f3c7da32a02da20bab726e41d1f4055e98f4577b Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Mon, 16 Oct 2023 22:53:28 +0800 Subject: [PATCH 19/30] =?UTF-8?q?=E6=8C=89=E7=85=A7=E8=A6=81=E6=B1=82?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +- config/config.yaml | 22 +- debating_tournament.py | 135 ----------- docs/README_CN.md | 12 +- docs/README_JA.md | 10 +- examples/llm_hello_world.py | 5 +- metagpt/actions/action.py | 2 +- metagpt/actions/design_api.py | 6 + metagpt/config.py | 16 +- metagpt/llm.py | 4 +- metagpt/management/skill_manager.py | 4 +- metagpt/manager.py | 4 +- metagpt/memory/longterm_memory.py | 16 +- metagpt/memory/memory.py | 4 +- metagpt/memory/memory_storage.py | 2 +- metagpt/prompts/generate_skill.md | 6 +- metagpt/provider/SparkApi.py | 138 ------------ metagpt/provider/spark_api.py | 212 ++++++++++++++---- .../reflect_and_retrieve/GA_memory_storage.py | 140 ------------ .../Prompt_template/poignancy_chat_v1.txt | 17 -- .../__MACOSX/GA_memory_stream/._.DS_Store | Bin 120 -> 0 bytes .../agent_memories/._.DS_Store | Bin 120 -> 0 bytes .../agent_memories/John_memory.json | 1 - metagpt/reflect_and_retrieve/gpt_structure.py | 110 --------- metagpt/reflect_and_retrieve/pycodetester.py | 3 - metagpt/reflect_and_retrieve/reflect.py | 84 ------- metagpt/reflect_and_retrieve/retrive.py | 136 ----------- metagpt/reflect_and_retrieve/run_gpt.py | 62 ----- metagpt/roles/role.py | 6 +- metagpt/schema.py | 1 + metagpt/tools/moderation.py | 40 ++++ metagpt/utils/common.py | 4 +- metagpt/utils/serialize.py | 6 +- requirements.txt | 2 +- tests/metagpt/actions/test_write_code.py | 4 +- tests/metagpt/memory/test_longterm_memory.py | 12 +- tests/metagpt/provider/test_xinghuo_api.py | 4 + tests/metagpt/roles/mock.py | 2 +- tests/metagpt/test_llm.py | 2 +- tests/metagpt/tools/test_moderation.py | 42 ++++ webui.py | 0 41 files changed, 342 insertions(+), 944 deletions(-) delete mode 100644 debating_tournament.py delete mode 100644 metagpt/provider/SparkApi.py delete mode 100644 metagpt/reflect_and_retrieve/GA_memory_storage.py delete mode 100644 metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt delete mode 100644 metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/._.DS_Store delete mode 100644 metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/agent_memories/._.DS_Store delete mode 100644 metagpt/reflect_and_retrieve/agent_memories/John_memory.json delete mode 100644 metagpt/reflect_and_retrieve/gpt_structure.py delete mode 100644 metagpt/reflect_and_retrieve/pycodetester.py delete mode 100644 metagpt/reflect_and_retrieve/reflect.py delete mode 100644 metagpt/reflect_and_retrieve/retrive.py delete mode 100644 metagpt/reflect_and_retrieve/run_gpt.py create mode 100644 metagpt/tools/moderation.py create mode 100644 tests/metagpt/provider/test_xinghuo_api.py create mode 100644 tests/metagpt/tools/test_moderation.py delete mode 100644 webui.py diff --git a/README.md b/README.md index 91a5483e0..c326190b0 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ # MetaGPT: The Multi-Agent Framework Discord Follow License: MIT roadmap -Twitter Follow +Twitter Follow

@@ -162,9 +162,9 @@ ### Installation by Docker ```bash # Step 1: Download metagpt official image and prepare config.yaml -docker pull metagpt/metagpt:v0.3.1 +docker pull metagpt/metagpt:latest mkdir -p /opt/metagpt/{config,workspace} -docker run --rm metagpt/metagpt:v0.3.1 cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml +docker run --rm metagpt/metagpt:latest cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml vim /opt/metagpt/config/key.yaml # Change the config # Step 2: Run metagpt demo with container @@ -172,7 +172,7 @@ # Step 2: Run metagpt demo with container --privileged \ -v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \ -v /opt/metagpt/workspace:/app/metagpt/workspace \ - metagpt/metagpt:v0.3.1 \ + metagpt/metagpt:latest \ python startup.py "Write a cli snake game" # You can also start a container and execute commands in it @@ -180,7 +180,7 @@ # You can also start a container and execute commands in it --privileged \ -v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \ -v /opt/metagpt/workspace:/app/metagpt/workspace \ - metagpt/metagpt:v0.3.1 + metagpt/metagpt:latest docker exec -it metagpt /bin/bash $ python startup.py "Write a cli snake game" diff --git a/config/config.yaml b/config/config.yaml index a60d2dbdd..de6254898 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -15,18 +15,18 @@ RPM: 10 #### if Anthropic #Anthropic_API_KEY: "YOUR_API_KEY" -#### if xinghuo -#xinghuo_appid : "APPID" -#xinghuo_api_secret : "APISecret" -#xinghuo_api_key : "APIKey" +#### if Xinghuo +#XINGHUO_APPID : "YOUR_APPID" +#XINGHUO_API_SECRET : "YOUR_APISecret" +#XINGHUO_API_KEY : "YOUR_APIKey" +#DOMAIN : "generalv2" +#SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat" -#domain : "generalv2" - -#Spark_url : "ws://spark-api.xf-yun.com/v2.1/chat" - -#### 如果不能使用api - -#no_api_mode :"true" +XINGHUO_APPID : "ae5e30f4" +XINGHUO_API_SECRET : "MDhlOWE2NmFhOWMxZWRkOTdlYjY2Njk1" +XINGHUO_API_KEY : "97b635fe5927d34a857333e11d15f29f" +DOMAIN : "generalv2" +SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat" #### if AZURE, check https://github.com/openai/openai-cookbook/blob/main/examples/azure/chat.ipynb #### You can use ENGINE or DEPLOYMENT mode diff --git a/debating_tournament.py b/debating_tournament.py deleted file mode 100644 index 8971a12c1..000000000 --- a/debating_tournament.py +++ /dev/null @@ -1,135 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -""" -@Time : 2023/9/20 00:30 -@Author : zhouziming -@File : debating_tourmament.py -""" -import asyncio -import platform -import fire -from pydantic import BaseModel, Field - -from metagpt.actions import BossRequirement -from metagpt.config import CONFIG -from metagpt.environment import Environment -from metagpt.logs import logger -from metagpt.roles import Role -from metagpt.schema import Message -from metagpt.utils.common import NoMoneyException -from metagpt.llm import DEFAULT_LLM -正方一辩提示词=''' -##角色 -现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 -##要求 -您的立论题目是{正方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 -''' -反方一辩提示词=''' -##角色 -现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 -##要求 -您的立论题目是{反方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。 -''' -正方一辩评价提示词=''' -##角色 -现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 -##要求 -你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 -##辩题 -{正方辩题} -##立论稿 -{正方立论稿} -''' -反方一辩评价提示词=''' -##角色 -现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。 -##要求 -你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。 -##辩题 -{反方辩题} -##立论稿 -{反方立论稿} -''' -正方质询提示词=''' -##角色 -现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 -##要求 -你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 -##辩题 -{正方辩题} -##立论稿 -{反方立论稿} -''' -反方回答提示词=''' -##角色 -现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 -##要求 -你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 -##辩题 -{反方辩题} -##立论稿 -{反方立论稿} -##疑问 -{正方质询} -''' -反方质询提示词=''' -##角色 -现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 -##要求 -你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。 -##辩题 -{反方辩题} -##立论稿 -{正方立论稿} -''' -正方回答提示词=''' -##角色 -现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。 -##要求 -你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。 -##辩题 -{正方辩题} -##立论稿 -{正方立论稿} -##疑问 -{反方质询} -''' -def main( - zf:str='人性本善', - ff:str='人性本恶' -): - """ - """ - if platform.system() == "Windows": - asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) - asyncio.run(startup(zf,ff)) - -async def startup(正方辩题:str,反方辩题:str): - llm=DEFAULT_LLM - #一辩环节 - #正方 - - 正方立论稿=await llm.aask(正方一辩提示词.format(正方辩题=正方辩题)) - #反方 - - 反方立论稿=await llm.aask(反方一辩提示词.format(反方辩题=反方辩题)) - #裁判评价环节 - - 正方一辩评价=await llm.aask(正方一辩评价提示词.format(正方辩题=正方辩题,正方立论稿=正方立论稿)) - - 反方一辩评价=await llm.aask(反方一辩评价提示词.format(反方辩题=反方辩题,反方立论稿=反方立论稿)) - #二辩质询环节 - #正方质询 - - 正方质询=await llm.aask(正方质询提示词.format(正方辩题=正方辩题,反方立论稿=反方立论稿)) - #反方回答 - - 反方回答=await llm.aask(反方回答提示词.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询)) - #反方质询 - - 反方质询=await llm.aask(反方质询提示词.format(反方辩题=反方辩题,正方立论稿=正方立论稿)) - #正方回答 - - 正方回答=await llm.aask(正方回答提示词.format(正方辩题=正方辩题,正方立论稿=正方立论稿,反方质询=反方质询)) -if __name__ == '__main__': - fire.Fire(main) diff --git a/docs/README_CN.md b/docs/README_CN.md index 1372bf9f4..7a27a0e59 100644 --- a/docs/README_CN.md +++ b/docs/README_CN.md @@ -15,7 +15,7 @@ # MetaGPT: 多智能体框架 Discord Follow License: MIT roadmap -Twitter Follow +Twitter Follow

@@ -87,9 +87,9 @@ ### Docker安装 ```bash # 步骤1: 下载metagpt官方镜像并准备好config.yaml -docker pull metagpt/metagpt:v0.3 +docker pull metagpt/metagpt:latest mkdir -p /opt/metagpt/{config,workspace} -docker run --rm metagpt/metagpt:v0.3 cat /app/metagpt/config/config.yaml > /opt/metagpt/config/config.yaml +docker run --rm metagpt/metagpt:latest cat /app/metagpt/config/config.yaml > /opt/metagpt/config/config.yaml vim /opt/metagpt/config/config.yaml # 修改config # 步骤2: 使用容器运行metagpt演示 @@ -97,7 +97,7 @@ # 步骤2: 使用容器运行metagpt演示 --privileged \ -v /opt/metagpt/config:/app/metagpt/config \ -v /opt/metagpt/workspace:/app/metagpt/workspace \ - metagpt/metagpt:v0.3 \ + metagpt/metagpt:latest \ python startup.py "Write a cli snake game" # 您也可以启动一个容器并在其中执行命令 @@ -105,7 +105,7 @@ # 您也可以启动一个容器并在其中执行命令 --privileged \ -v /opt/metagpt/config:/app/metagpt/config \ -v /opt/metagpt/workspace:/app/metagpt/workspace \ - metagpt/metagpt:v0.3 + metagpt/metagpt:latest docker exec -it metagpt /bin/bash $ python startup.py "Write a cli snake game" @@ -123,7 +123,7 @@ ### 自己构建镜像 ```bash # 您也可以自己构建metagpt镜像 git clone https://github.com/geekan/MetaGPT.git -cd MetaGPT && docker build -t metagpt:v0.3 . +cd MetaGPT && docker build -t metagpt:custom . ``` ## 配置 diff --git a/docs/README_JA.md b/docs/README_JA.md index 8d6c2fe84..eab69d912 100644 --- a/docs/README_JA.md +++ b/docs/README_JA.md @@ -15,7 +15,7 @@ # MetaGPT: マルチエージェントフレームワーク Discord Follow License: MIT roadmap -Twitter Follow +Twitter Follow

@@ -92,9 +92,9 @@ ### Docker によるインストール ```bash # ステップ 1: metagpt 公式イメージをダウンロードし、config.yaml を準備する -docker pull metagpt/metagpt:v0.3.1 +docker pull metagpt/metagpt:latest mkdir -p /opt/metagpt/{config,workspace} -docker run --rm metagpt/metagpt:v0.3.1 cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml +docker run --rm metagpt/metagpt:latest cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml vim /opt/metagpt/config/key.yaml # 設定を変更する # ステップ 2: コンテナで metagpt デモを実行する @@ -102,7 +102,7 @@ # ステップ 2: コンテナで metagpt デモを実行する --privileged \ -v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \ -v /opt/metagpt/workspace:/app/metagpt/workspace \ - metagpt/metagpt:v0.3.1 \ + metagpt/metagpt:latest \ python startup.py "Write a cli snake game" # コンテナを起動し、その中でコマンドを実行することもできます @@ -110,7 +110,7 @@ # コンテナを起動し、その中でコマンドを実行することもで --privileged \ -v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \ -v /opt/metagpt/workspace:/app/metagpt/workspace \ - metagpt/metagpt:v0.3.1 + metagpt/metagpt:latest docker exec -it metagpt /bin/bash $ python startup.py "Write a cli snake game" diff --git a/examples/llm_hello_world.py b/examples/llm_hello_world.py index d6d24b688..3ba03eea0 100644 --- a/examples/llm_hello_world.py +++ b/examples/llm_hello_world.py @@ -7,11 +7,12 @@ """ import asyncio -import metagpt.llm as LLM +from metagpt.llm import LLM, Claude +from metagpt.logs import logger async def main(): - llm=LLM.DEFAULT_LLM + llm = LLM() claude = Claude() logger.info(await claude.aask('你好,请进行自我介绍')) logger.info(await llm.aask('hello world')) diff --git a/metagpt/actions/action.py b/metagpt/actions/action.py index 8e1d5c85d..790295d55 100644 --- a/metagpt/actions/action.py +++ b/metagpt/actions/action.py @@ -22,7 +22,7 @@ class Action(ABC): def __init__(self, name: str = "", context=None, llm: LLM = None): self.name: str = name if llm is None: - llm=LLM.DEFAULT_LLM + llm = LLM() self.llm = llm self.context = context self.prefix = "" diff --git a/metagpt/actions/design_api.py b/metagpt/actions/design_api.py index f19fcbeaa..75df8b909 100644 --- a/metagpt/actions/design_api.py +++ b/metagpt/actions/design_api.py @@ -207,5 +207,11 @@ class WriteDesign(Action): prompt = prompt_template.format(context=context, format_example=format_example) # system_design = await self._aask(prompt) system_design = await self._aask_v1(prompt, "system_design", OUTPUT_MAPPING, format=format) + # fix Python package name, we can't system_design.instruct_content.python_package_name = "xxx" since "Python package name" contain space, have to use setattr + setattr( + system_design.instruct_content, + "Python package name", + system_design.instruct_content.dict()["Python package name"].strip().strip("'").strip('"'), + ) await self._save(context, system_design) return system_design diff --git a/metagpt/config.py b/metagpt/config.py index 146fb957b..ab57ae614 100644 --- a/metagpt/config.py +++ b/metagpt/config.py @@ -45,18 +45,8 @@ class Config(metaclass=Singleton): self.global_proxy = self._get("GLOBAL_PROXY") self.openai_api_key = self._get("OPENAI_API_KEY") self.anthropic_api_key = self._get("Anthropic_API_KEY") - - #星火大模型相关 - self.xinghuo_appid = self._get("xinghuo_appid") - self.xinghuo_api_secret = self._get("xinghuo_api_secret") - self.xinghuo_api_key = self._get("xinghuo_api_key") - self.domain=self._get("domain") - self.Spark_url=self._get("Spark_url") - self.no_api_mode=self._get("no_api_mode") if (not self.openai_api_key or "YOUR_API_KEY" == self.openai_api_key) and ( not self.anthropic_api_key or "YOUR_API_KEY" == self.anthropic_api_key - )and ( - not self.xinghuo_api_key or "APIKey" == self.xinghuo_api_key ): raise NotConfiguredException("Set OPENAI_API_KEY or Anthropic_API_KEY first") self.openai_api_base = self._get("OPENAI_API_BASE") @@ -72,6 +62,12 @@ class Config(metaclass=Singleton): self.deployment_name = self._get("DEPLOYMENT_NAME") self.deployment_id = self._get("DEPLOYMENT_ID") + self.xinghuo_appid=self._get("XINGHUO_APPID") + self.xinghuo_api_secret = self._get("XINGHUO_API_SECRET") + self.xinghuo_api_key = self._get("XINGHUO_API_KEY") + self.domain = self._get("DOMAIN") + self.spark_url = self._get("SPARK_URL") + self.claude_api_key = self._get("Anthropic_API_KEY") self.serpapi_api_key = self._get("SERPAPI_API_KEY") self.serper_api_key = self._get("SERPER_API_KEY") diff --git a/metagpt/llm.py b/metagpt/llm.py index 68945e71e..e6f815950 100644 --- a/metagpt/llm.py +++ b/metagpt/llm.py @@ -8,9 +8,9 @@ from metagpt.provider.anthropic_api import Claude2 as Claude from metagpt.provider.openai_api import OpenAIGPTAPI as LLM -from metagpt.provider.spark_api import Spark -DEFAULT_LLM = Spark() +DEFAULT_LLM = LLM() +CLAUDE_LLM = Claude() async def ai_func(prompt): """使用LLM进行QA diff --git a/metagpt/management/skill_manager.py b/metagpt/management/skill_manager.py index 4852e452f..f967a0a94 100644 --- a/metagpt/management/skill_manager.py +++ b/metagpt/management/skill_manager.py @@ -8,7 +8,7 @@ from metagpt.actions import Action from metagpt.const import PROMPT_PATH from metagpt.document_store.chromadb_store import ChromaStore -import metagpt.llm as LLM +from metagpt.llm import LLM from metagpt.logs import logger Skill = Action @@ -18,7 +18,7 @@ class SkillManager: """Used to manage all skills""" def __init__(self): - self._llm=LLM.DEFAULT_LLM + self._llm = LLM() self._store = ChromaStore('skill_manager') self._skills: dict[str: Skill] = {} diff --git a/metagpt/manager.py b/metagpt/manager.py index 3f6c115f3..9d238c621 100644 --- a/metagpt/manager.py +++ b/metagpt/manager.py @@ -5,13 +5,13 @@ @Author : alexanderwu @File : manager.py """ -import metagpt.llm as LLM +from metagpt.llm import LLM from metagpt.logs import logger from metagpt.schema import Message class Manager: - def __init__(self, llm: llm=LLM.DEFAULT_LLM): + def __init__(self, llm: LLM = LLM()): self.llm = llm # Large Language Model self.role_directions = { "BOSS": "Product Manager", diff --git a/metagpt/memory/longterm_memory.py b/metagpt/memory/longterm_memory.py index 1f4698704..f8abea5f3 100644 --- a/metagpt/memory/longterm_memory.py +++ b/metagpt/memory/longterm_memory.py @@ -42,21 +42,21 @@ class LongTermMemory(Memory): # and ignore adding messages from recover repeatedly self.memory_storage.add(message) - def remember(self, observed: list[Message], k=0) -> list[Message]: + def find_news(self, observed: list[Message], k=0) -> list[Message]: """ - remember the most similar k memories from observed Messages, return all when k=0 - 1. remember the short-term memory(stm) news - 2. integrate the stm news with ltm(long-term memory) news + find news (previously unseen messages) from the the most recent k memories, from all memories when k=0 + 1. find the short-term memory(stm) news + 2. furthermore, filter out similar messages based on ltm(long-term memory), get the final news """ - stm_news = super(LongTermMemory, self).remember(observed, k=k) # shot-term memory news + stm_news = super(LongTermMemory, self).find_news(observed, k=k) # shot-term memory news if not self.memory_storage.is_initialized: - # memory_storage hasn't initialized, use default `remember` to get stm_news + # memory_storage hasn't initialized, use default `find_news` to get stm_news return stm_news ltm_news: list[Message] = [] for mem in stm_news: - # integrate stm & ltm - mem_searched = self.memory_storage.search(mem) + # filter out messages similar to those seen previously in ltm, only keep fresh news + mem_searched = self.memory_storage.search_dissimilar(mem) if len(mem_searched) > 0: ltm_news.append(mem) return ltm_news[-k:] diff --git a/metagpt/memory/memory.py b/metagpt/memory/memory.py index 92f0428a7..c818fa707 100644 --- a/metagpt/memory/memory.py +++ b/metagpt/memory/memory.py @@ -63,8 +63,8 @@ class Memory: """Return the most recent k memories, return all when k=0""" return self.storage[-k:] - def remember(self, observed: list[Message], k=0) -> list[Message]: - """remember the most recent k memories from observed Messages, return all when k=0""" + def find_news(self, observed: list[Message], k=0) -> list[Message]: + """find news (previously unseen messages) from the the most recent k memories, from all memories when k=0""" already_observed = self.get(k) news: list[Message] = [] for i in observed: diff --git a/metagpt/memory/memory_storage.py b/metagpt/memory/memory_storage.py index 8b639150c..302d96aa7 100644 --- a/metagpt/memory/memory_storage.py +++ b/metagpt/memory/memory_storage.py @@ -74,7 +74,7 @@ class MemoryStorage(FaissStore): self.persist() logger.info(f"Agent {self.role_id}'s memory_storage add a message") - def search(self, message: Message, k=4) -> List[Message]: + def search_dissimilar(self, message: Message, k=4) -> List[Message]: """search for dissimilar messages""" if not self.store: return [] diff --git a/metagpt/prompts/generate_skill.md b/metagpt/prompts/generate_skill.md index dd28df079..74948cd15 100644 --- a/metagpt/prompts/generate_skill.md +++ b/metagpt/prompts/generate_skill.md @@ -9,10 +9,10 @@ ```python from typing import Optional from abc import ABC -import metagpt.llm as LLM # 大语言模型,类似GPT - +from metagpt.llm import LLM # Large language model, similar to GPT +n class Action(ABC): - def __init__(self, name='', context=None, llm: llm=LLM.DEFAULT_LLM): + def __init__(self, name='', context=None, llm: LLM = LLM()): self.name = name self.llm = llm self.context = context diff --git a/metagpt/provider/SparkApi.py b/metagpt/provider/SparkApi.py deleted file mode 100644 index 7ce57c22a..000000000 --- a/metagpt/provider/SparkApi.py +++ /dev/null @@ -1,138 +0,0 @@ -import _thread as thread -import base64 -import datetime -import hashlib -import hmac -import json -from urllib.parse import urlparse -import ssl -from datetime import datetime -from time import mktime -from urllib.parse import urlencode -from wsgiref.handlers import format_date_time -from metagpt.logs import logger - -import websocket # 使用websocket_client -answer = "" - -class Ws_Param(object): - # 初始化 - def __init__(self, appid, apikey, apiSecret, spark_url): - self.appid = appid - self.apikey = apikey - self.apiSecret = apiSecret - self.host = urlparse(spark_url).netloc - self.path = urlparse(spark_url).path - self.spark_url = spark_url - - # 生成url - def create_url(self): - # 生成RFC1123格式的时间戳 - now = datetime.now() - date = format_date_time(mktime(now.timetuple())) - - # 拼接字符串 - signature_origin = "host: " + self.host + "\n" - signature_origin += "date: " + date + "\n" - signature_origin += "GET " + self.path + " HTTP/1.1" - - # 进行hmac-sha256进行加密 - signature_sha = hmac.new(self.apiSecret.encode('utf-8'), signature_origin.encode('utf-8'), - digestmod=hashlib.sha256).digest() - - signature_sha_base64 = base64.b64encode(signature_sha).decode(encoding='utf-8') - - authorization_origin = f'api_key="{self.apikey}", algorithm="hmac-sha256", headers="host date request-line", signature="{signature_sha_base64}"' - - authorization = base64.b64encode(authorization_origin.encode('utf-8')).decode(encoding='utf-8') - - # 将请求的鉴权参数组合为字典 - v = { - "authorization": authorization, - "date": date, - "host": self.host - } - # 拼接鉴权参数,生成url - url = self.spark_url + '?' + urlencode(v) - # 此处打印出建立连接时候的url,参考本demo的时候可取消上方打印的注释,比对相同参数时生成的url与自己代码生成的url是否一致 - return url - - -# 收到websocket错误的处理 -def on_error(ws, error): - logger.error("### error:"+error) - - -# 收到websocket关闭的处理 -def on_close(ws,one,two): - logger.error("websocket关闭") - - -# 收到websocket连接建立的处理 -def on_open(ws): - thread.start_new_thread(run, (ws,)) - - -def run(ws, *args): - data = json.dumps(gen_params(appid=ws.appid, domain= ws.domain,question=ws.question)) - ws.send(data) - - -# 收到websocket消息的处理 -def on_message(ws, message): - # print(message) - data = json.loads(message) - code = data['header']['code'] - if code != 0: - logger.error(f'请求错误: {code}, {data}') - ws.close() - else: - choices = data["payload"]["choices"] - status = choices["status"] - content = choices["text"][0]["content"] - print(content,end ="") - global answer - answer += content - # print(1) - if status == 2: - ws.close() - - -def gen_params(appid, domain,question): - """ - 通过appid和用户的提问来生成请参数 - """ - data = { - "header": { - "app_id": appid, - "uid": "1234" - }, - "parameter": { - "chat": { - "domain": domain, - "random_threshold": 0.5, - "max_tokens": 2048, - "auditing": "default" - } - }, - "payload": { - "message": { - "text": question - } - } - } - return data - - -def main(appid, api_key, api_secret, spark_url,domain, question): - # print("星火:") - wsParam = Ws_Param(appid, api_key, api_secret, spark_url) - websocket.enableTrace(False) - wsUrl = wsParam.create_url() - ws = websocket.WebSocketApp(wsUrl, on_message=on_message, on_error=on_error, on_close=on_close, on_open=on_open) - ws.appid = appid - ws.question = question - ws.domain = domain - ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE}) - - diff --git a/metagpt/provider/spark_api.py b/metagpt/provider/spark_api.py index e855e019a..db50771d4 100644 --- a/metagpt/provider/spark_api.py +++ b/metagpt/provider/spark_api.py @@ -5,54 +5,188 @@ @Author : Leo Xiao @File : anthropic_api.py """ - -from typing import Optional -from metagpt.provider import SparkApi +import _thread as thread +import base64 +import datetime +import hashlib +import hmac +import json +import ssl +from collections import OrderedDict +import datetime +from time import mktime +from urllib.parse import urlencode +from urllib.parse import urlparse +from wsgiref.handlers import format_date_time +import websocket # 使用websocket_client +import websockets +from websockets.legacy.server import WebSocketServerProtocol from metagpt.config import CONFIG +from metagpt.logs import logger +from metagpt.provider.base_gpt_api import BaseGPTAPI -def getlength(text): - length = 0 - for content in text: - temp = content["content"] - leng = len(temp) - length += leng - return length -def checklen(text): - while (getlength(text) > 8000): - del text[0] - return text -class Spark: - system_prompt = 'You are a helpful assistant.' - def _user_msg(self, msg: str) -> dict[str, str]: - return {"role": "user", "content": msg} +class SparkAPI(BaseGPTAPI): - def _assistant_msg(self, msg: str) -> dict[str, str]: - return {"role": "assistant", "content": msg} + def get_choice_text(self, rsp: dict) -> str: + return rsp["payload"]["choices"]["text"][-1]["content"] + async def acompletion_text(self, messages: list[dict], stream=False) -> str: + #尚未实现 + pass - def _system_msg(self, msg: str) -> dict[str, str]: - return {"role": "system", "content": msg} + async def acompletion(self, messages: list[dict]): + # 尚未实现 + w = GetMessageFromWeb(messages) + return await w.arun() - def _system_msgs(self, msgs: list[str]) -> list[dict[str, str]]: - return [self._system_msg(msg) for msg in msgs] + def completion(self, messages: list[dict]): + w= GetMessageFromWeb(messages) + return w.run() - def _default_system_msg(self): - return self._system_msg(self.system_prompt) - - def ask(self, msg: str): - message = [self._user_msg(msg)] - SparkApi.main(CONFIG.xinghuo_appid,CONFIG.xinghuo_api_key,CONFIG.xinghuo_api_secret,"ws://spark-api.xf-yun.com/v2.1/chat","generalv2",message) - rsp = SparkApi.answer - return rsp - async def aask(self, msg: str, system_msgs: Optional[list[str]] = None) -> str: - if system_msgs: - message = self._system_msgs(system_msgs) + [self._user_msg(msg)] +class GetMessageFromWeb: + class WsParam(object): + """ + 该类适合讯飞星火大部分接口的调用。 + 输入 app_id, api_key, api_secret, spark_url以初始化, + create_url方法返回接口url + """ + + # 初始化 + def __init__(self, app_id, api_key, api_secret, spark_url, message=None): + self.app_id = app_id + self.api_key = api_key + self.api_secret = api_secret + self.host = urlparse(spark_url).netloc + self.path = urlparse(spark_url).path + self.spark_url = spark_url + self.message = message + + # 生成url + def create_url(self): + # 生成RFC1123格式的时间戳 + now = datetime.datetime.now() + date = format_date_time(mktime(now.timetuple())) + + # 拼接字符串 + signature_origin = "host: " + self.host + "\n" + signature_origin += "date: " + date + "\n" + signature_origin += "GET " + self.path + " HTTP/1.1" + + # 进行hmac-sha256进行加密 + signature_sha = hmac.new(self.api_secret.encode('utf-8'), signature_origin.encode('utf-8'), + digestmod=hashlib.sha256).digest() + + signature_sha_base64 = base64.b64encode(signature_sha).decode(encoding='utf-8') + + authorization_origin = f'api_key="{self.api_key}", algorithm="hmac-sha256", headers="host date request-line", signature="{signature_sha_base64}"' + + authorization = base64.b64encode(authorization_origin.encode('utf-8')).decode(encoding='utf-8') + + # 将请求的鉴权参数组合为字典 + v = { + "authorization": authorization, + "date": date, + "host": self.host + } + # 拼接鉴权参数,生成url + url = self.spark_url + '?' + urlencode(v) + # 此处打印出建立连接时候的url,参考本demo的时候可取消上方打印的注释,比对相同参数时生成的url与自己代码生成的url是否一致 + return url + + def __init__(self,text): + self.text = text + self.ret =None + self.xinghuo_appid = CONFIG.xinghuo_appid + self.xinghuo_api_secret = CONFIG.xinghuo_api_secret + self.xinghuo_api_key = CONFIG.xinghuo_api_key + self.domain = CONFIG.domain + self.spark_url = CONFIG.spark_url + + def on_message(self, ws, message): + logger.info(message) + data = json.loads(message) + code = data['header']['code'] + + if code != 0: + ws.close() # 请求错误,则关闭socket + logger.critical(f'回答获取失败,响应信息反序列化之后为: {data}') + return else: - message = [self._user_msg(msg)] - SparkApi.main(CONFIG.xinghuo_appid,CONFIG.xinghuo_api_key,CONFIG.xinghuo_api_secret,"ws://spark-api.xf-yun.com/v2.1/chat","generalv2",message) - rsp = SparkApi.answer - return rsp + choices = data["payload"]["choices"] + seq = choices["seq"] # 服务端是流式返回,seq为返回的数据序号 + status = choices["status"] # 服务端是流式返回,status用于判断信息是否传送完毕 + content = choices["text"][0]["content"] # 本次接收到的回答文本 + self.ret=data + ws.close() + logger.info(f"本次通讯关闭") + + # 收到websocket错误的处理 + def on_error(self, ws, error): + # on_message方法处理接收到的信息,出现任何错误,都会调用这个方法 + logger.critical(f'通讯连接出错,【错误提示: {error}】') + + # 收到websocket关闭的处理 + def on_close(self, ws, one, two): + pass + # print("通讯完成") + + # 处理请求数据 + def gen_params(self): + + data = { + "header": { + "app_id": self.xinghuo_appid, + "uid": "1234" + }, + "parameter": { + "chat": { + # domain为必传参数 + "domain": self.domain, + + # 以下为可微调,非必传参数 + # 注意:官方建议,temperature和top_k修改一个即可 + "max_tokens": 2048, # 默认2048,模型回答的tokens的最大长度,即允许它输出文本的最长字数 + "temperature": 0.5, # 取值为[0,1],默认为0.5。取值越高随机性越强、发散性越高,即相同的问题得到的不同答案的可能性越高 + "top_k": 4, # 取值为[1,6],默认为4。从k个候选中随机选择一个(非等概率) + } + }, + "payload": { + "message": { + "text": self.text + } + } + } + return data + + def send(self, ws, *args): + data = json.dumps(self.gen_params()) + logger.info(f"开始尝试建立通讯...") + logger.info(f"此次请求的请求头数据为:{data}") + ws.send(data) + + # 收到websocket连接建立的处理 + def on_open(self, ws): + thread.start_new_thread(self.send, (ws,)) + + # 处理收到的 websocket消息,出现任何错误,调用on_error方法 + def run(self): + return self._run(self.text) + def _run(self, text_list): + + ws_param = self.WsParam( + self.xinghuo_appid, + self.xinghuo_api_key, + self.xinghuo_api_secret, + self.spark_url, + text_list) + ws_url = ws_param.create_url() + + websocket.enableTrace(True) # 默认禁用 WebSocket 的跟踪功能 + ws = websocket.WebSocketApp(ws_url, on_message=self.on_message, on_error=self.on_error, on_close=self.on_close, + on_open=self.on_open) + ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE}) + return self.ret diff --git a/metagpt/reflect_and_retrieve/GA_memory_storage.py b/metagpt/reflect_and_retrieve/GA_memory_storage.py deleted file mode 100644 index c5ca24729..000000000 --- a/metagpt/reflect_and_retrieve/GA_memory_storage.py +++ /dev/null @@ -1,140 +0,0 @@ -#!/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 -import time -import json - -# Meomry_basic 类 - - -class Memory_basic: - def __init__( - self, created_time, accessed_time, - description, - poignancy, - embedding_key=None) -> None: - """ - Initializes a basic memory object. - - Args: - created_time (datetime): The time when the memory was created. - accessed_time (datetime): The time when the memory was last accessed. - description (str): The description of the memory. - poignancy (int): The level of emotional intensity associated with the memory. - embedding_key (Optional[str]): The embedding key for the memory (to avoid redundant vectorization). - - Returns: - None - """ - self.created_time = created_time # 记忆创建时间 - self.accessed_time = accessed_time # 记忆上次调用时间 - self.description = description # 记忆描述 - self.poignancy = poignancy # 记忆心酸程度 - if embedding_key is None: # 记忆emmbeding key(避免重复向量化花钱) - self.embedding_key = embedding(self.description) - else: - self.embedding_key = embedding_key - -# Agent Memory 类 - - -class Agent_memory(object): - - def __init__(self, name: str, iss: str, - memory_forget: float = 0.99, - memories_list: list[Memory_basic] = [], memory_path: str = None) -> None: - ''' - 定义Agent,替换原有Agent使用,需要其他人根据需求补全功能。 - Attributes: - name:agent name - iss:agent iss(性格特征) - memory_forget:agent 记忆遗忘速率(计算近因性) - memories_list:agent 记忆JSON文件存储地址 - memory_path:记忆存储地址 - ''' - 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文件存储地址 - # agent 当前时间(现在使用的time.time(),等到环境搭好之后使用游戏内时间) - self.curr_time = time.time() - # 若给到memory_path 进行记忆初始化 - if memory_path: - self.memories_list = self.memory_load(memory_path) - - def memory_save(self, PATH: str) -> None: - ''' - 将Memory存储在指定PATH的JSON文件中,命名为"{self.name}'s memory - Args: - PATH:str - Return: - None - ''' - 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: str) -> list[Memory_basic]: - """ - 将Memory从指定路径的JSON文件中Load出来,返回一个记忆列表;如果load失败,返回一个空列表。 - Args: - PATH:str - Return: - List(Meomry_basic) - """ - try: - with open(PATH, 'r') as file: - memory_data = json.load(file) - self.memories_list = [Memory_basic( - **mem) for mem in memory_data] - return self.memories_list - except OSError: - 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_memory( - "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 = Memory_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} diff --git a/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt b/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt deleted file mode 100644 index 572dd8a05..000000000 --- a/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index a5b28df1cbc6e15bd0d35cdadd0c2e65d5131c7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120 zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDI}u^SMB_!U6R08`;00ODZ-jv*mIP;rnB Iur73U08|YJ=l}o! 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 deleted file mode 100644 index a5b28df1cbc6e15bd0d35cdadd0c2e65d5131c7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 120 zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDI}u^SMB_!U6R08`;00ODZ-jv*mIP;rnB Iur73U08|YJ=l}o! diff --git a/metagpt/reflect_and_retrieve/agent_memories/John_memory.json b/metagpt/reflect_and_retrieve/agent_memories/John_memory.json deleted file mode 100644 index 959e07940..000000000 --- a/metagpt/reflect_and_retrieve/agent_memories/John_memory.json +++ /dev/null @@ -1 +0,0 @@ -[{"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]}, {"created_time": 1695688466.0793974, "accessed_time": 1695688466.0793974, "description": "Talked to Mei about their upcoming vacation plans.", "poignancy": 3, "embedding_key": [0.006239559035748243, -0.006435062736272812, 0.017522457987070084, -0.0157728623598814, 0.00013285571185406297, 0.05911509692668915, -0.031015545129776, -0.012107991613447666, 0.0038040434010326862, -0.02241336926817894, 0.004629136528819799, 0.02063726633787155, 0.021538572385907173, -0.02775493636727333, 0.0005467484006658196, -0.019749214872717857, 0.017880329862236977, -0.008946791291236877, 0.03947192057967186, -0.02433527447283268, 0.005520502105355263, -0.004718604031950235, -0.005646419711410999, 0.0047616814263165, -0.007661104667931795, -0.012021836824715137, 0.010471059940755367, -0.0076080868020653725, -0.020570993423461914, 0.016700677573680878, 0.03043234720826149, -0.0019268738105893135, 0.01211461890488863, -0.0117633743211627, -0.01663440465927124, -0.047530658543109894, -0.01144526619464159, -0.018437018617987633, 0.011776628904044628, -0.0275958813726902, -0.004055879078805447, -0.0009004780440591276, 0.0012351543409749866, -0.004649017937481403, -0.007979212328791618, 0.011909173801541328, -0.0008863951079547405, -0.008443120867013931, -0.012439354322850704, 0.009251645766198635, -0.006763111799955368, -0.019643178209662437, -0.03011423908174038, -0.008542529307305813, -0.021313246339559555, -0.025157053023576736, -0.01540173590183258, 0.009013064205646515, -0.009934252128005028, -0.004456827882677317, 0.00010204934369539842, 0.008005721494555473, -0.0004216589732095599, 0.013281015679240227, -0.020902356132864952, 0.010968104004859924, -0.020663775503635406, -0.0008723121718503535, 0.028285115957260132, 0.008171402849256992, 0.025170307606458664, 0.0065841758623719215, 0.013387051410973072, -0.003893511136993766, 0.0275958813726902, -0.015958424657583237, -0.013459950685501099, -0.013466577976942062, -0.012976161204278469, 0.019338324666023254, 0.001636931556276977, -0.012035091407597065, -0.020451704040169716, 0.03764279931783676, 0.007813531905412674, 0.023261658847332, -0.013128588907420635, 0.014858301728963852, -0.012419472448527813, -0.025263089686632156, 0.0052388436160981655, 0.0210216473788023, -0.008111758157610893, 0.021101174876093864, -0.0037775342352688313, 0.019775724038481712, 0.008728092536330223, 0.013042434118688107, -0.012346572242677212, 0.009245018474757671, -0.0020561052951961756, 0.016819968819618225, -0.019272051751613617, -0.013546105474233627, -0.03130714222788811, 0.01936483383178711, -0.003045222721993923, -0.013744923286139965, 0.02283751405775547, -0.019285306334495544, -0.04079737141728401, 0.02059750258922577, -0.006199795287102461, -0.02209526114165783, -0.052487846463918686, -0.01642233319580555, 0.017085058614611626, 0.006342281121760607, -0.022320589050650597, -0.02033241279423237, 0.02807304449379444, 0.025011252611875534, 0.021949462592601776, 0.012068227864801884, 0.007654477376490831, 0.0014737354358658195, -0.017257366329431534, -0.005364761222153902, 0.0065841758623719215, -0.004914108198136091, 0.004304401110857725, 0.008993182331323624, 0.0053349388763308525, 0.009178745560348034, -0.008867264725267887, 0.019934777170419693, -0.015414990484714508, 0.027463337406516075, -0.010205970145761967, -0.019059980288147926, 0.006905597634613514, 0.017933346331119537, -0.003306999336928129, 0.0018307786667719483, 0.010855440981686115, 0.027251264080405235, 0.017827311530709267, -0.00949022639542818, 0.013307523913681507, -0.013009297661483288, 0.019815487787127495, -0.016660913825035095, 0.01829121820628643, 0.020080577582120895, 0.029478022828698158, 0.02224106155335903, 0.0054045249707996845, 0.0006751514156349003, -0.014540193602442741, 0.003644989337772131, 0.009026318788528442, 0.005387956742197275, 0.039604466408491135, -0.0031711405608803034, -0.008747974410653114, 0.028682751581072807, 0.022386861965060234, 0.0021290050353854895, -0.001436457154341042, -0.0030700750648975372, -0.005417779553681612, -0.00837022066116333, -0.028046535328030586, -0.007879803888499737, -0.012949652969837189, 0.021008392795920372, -0.008535902015864849, -0.013148469850420952, -0.01776103861629963, -0.005918137263506651, -0.018794890493154526, -0.006723348516970873, -0.0015905407490208745, 0.013393678702414036, -0.0013859242899343371, -0.004430318716913462, 0.00042662941268645227, 0.009569753892719746, 0.012200772762298584, -0.0072502149268984795, 0.021326500922441483, 0.02849718928337097, 0.012286927551031113, -0.01109402161091566, -0.6633615493774414, -0.030564891174435616, 0.00855578389018774, 0.019868504256010056, 0.007508677896112204, 0.00818465743213892, 0.016806714236736298, 0.003277176758274436, -0.009808334521949291, 0.002382497536018491, -0.02042519487440586, 0.0055967154912650585, 0.008516020141541958, -0.025011252611875534, 0.017946600914001465, -0.009397445246577263, -0.01422208547592163, -0.008602174930274487, -0.00880099181085825, 0.0008930223411880434, -0.03316277638077736, 0.014195576310157776, -0.010809049941599369, -0.0031197795178741217, -0.00504333944991231, 0.012101364322006702, 0.012386335991322994, 0.002508415374904871, -0.025554688647389412, 0.03719214349985123, -0.04761018604040146, 0.042971108108758926, -0.005450915545225143, -0.023261658847332, 0.048272911459207535, -0.018317727372050285, -0.0031346906907856464, 0.021843425929546356, -0.017615238204598427, 0.0173368938267231, -0.029080387204885483, 0.016303041949868202, 0.01797311007976532, 0.02257242426276207, 0.025647468864917755, -0.013526223599910736, 0.024905217811465263, -0.001736340345814824, 0.007601459510624409, 0.003202620195224881, 0.01094159483909607, 0.011398875154554844, -0.030989035964012146, 0.006806189194321632, 0.004950558301061392, 0.0135328508913517, 0.025501670315861702, -0.010663250461220741, -0.020663775503635406, 0.005391270387917757, -0.015812626108527184, 0.012207400053739548, -0.036078765988349915, -0.004751740489155054, -0.017509203404188156, 0.016501860693097115, -0.016515115275979042, 0.007667731959372759, 0.028550205752253532, -0.0307504553347826, 0.002541551599279046, 0.02364603988826275, -0.04005511850118637, 0.01002703420817852, 0.019112998619675636, 0.028947841376066208, 0.017071804031729698, 0.0008946791640482843, -0.03234099596738815, 0.007893058471381664, 0.018463527783751488, -0.02812606282532215, -0.028974350541830063, -0.022333843633532524, 0.013506341725587845, -0.03279164806008339, -0.02551492489874363, 0.005437661428004503, 0.018105655908584595, -0.012571899220347404, 0.002140602795407176, 0.015070374123752117, 0.014924573712050915, 0.0025498357135802507, 0.002844748320057988, -0.010119815357029438, -0.001371841412037611, -0.008211166597902775, 0.023235149681568146, -0.038491085171699524, 0.004248069133609533, -0.018755126744508743, 0.038703158497810364, -0.0011274614371359348, -0.01023910567164421, -0.00688571622595191, -0.028285115957260132, 0.011113903485238552, 0.020822828635573387, -0.0015665169339627028, -0.004016115330159664, -0.001807583263143897, -0.009907743893563747, -0.0012500656303018332, -0.0016642689006403089, -0.029504530131816864, 0.009370936080813408, 0.019391342997550964, 0.0004303572641219944, -0.0022897159215062857, 0.017681511119008064, 0.012386335991322994, 0.03027329221367836, -0.011067512445151806, -0.0035389531403779984, 0.018264709040522575, 0.0006962757906876504, -0.01398350391536951, 0.0023278226144611835, 0.014169067144393921, -0.0177477840334177, 0.008091876283288002, 0.0017181154107674956, -0.02192295342683792, -0.0004895883030258119, -0.018410509452223778, 0.0018191810231655836, -0.032871175557374954, 0.024693144485354424, -0.016303041949868202, -0.04360732436180115, -0.0031976497266441584, -0.0022946863900870085, -0.018808145076036453, 0.012233909219503403, -0.004897539969533682, -0.0006929621449671686, -0.006040741223841906, -0.0031744542066007853, -0.004509845748543739, 0.014288357459008694, 0.004234814550727606, 0.013758177869021893, 0.019881758838891983, 0.009569753892719746, -0.00019167258869856596, 0.020836083218455315, -0.015361973084509373, -0.02717173844575882, -0.011352485045790672, 0.01331415120512247, 0.01605120673775673, -0.018476782366633415, -0.0019948030821979046, 0.002738712355494499, -0.004804758355021477, 0.011584438383579254, 0.009636025875806808, 0.004271264653652906, -0.0373246893286705, 0.00663388054817915, -0.025859542191028595, -0.008323829621076584, 0.011524793691933155, 0.0019682941492646933, -0.018688853830099106, -0.005566892679780722, -0.02118070051074028, 0.00501351710408926, -0.013208115473389626, 0.005759083200246096, -0.011630829423666, -0.007329741958528757, 0.0009659221395850182, 0.021750645712018013, -0.013400305993855, 0.010431296192109585, 0.04199027642607689, -0.02331467717885971, 0.030617909505963326, 0.0013378767762333155, 0.018794890493154526, -0.015216173604130745, 0.0014654513215646148, 0.009178745560348034, -0.003920020069926977, -0.0005695295403711498, 0.0033318514470010996, -0.00743577815592289, 0.012439354322850704, -0.002244981937110424, -0.02963707596063614, 0.0050300853326916695, 0.0034991896245628595, -0.003492562333121896, -0.025541434064507484, -0.0097884526476264, -0.025859542191028595, -0.004970439709722996, 0.007303232792764902, 0.010915085673332214, -0.03578716516494751, -0.030564891174435616, -0.009987270459532738, 0.011670593172311783, -0.005507247522473335, 0.002407349646091461, 0.01583913527429104, -0.0187816359102726, -0.00025452792760916054, -0.00023982372658792883, -0.0009949164232239127, -0.012883380055427551, -0.00695198867470026, -0.028285115957260132, -0.019126253202557564, 0.007170687895268202, 0.011325975880026817, 0.006965243257582188, 0.010219224728643894, -0.02690664865076542, -0.001256692921742797, 0.003452798817306757, 0.03772232308983803, 0.021260228008031845, -0.005848550703376532, 0.02444130927324295, -0.0011100649135187268, 0.030034711584448814, 0.008151520974934101, 0.012141128070652485, 0.0025912560522556305, 0.008761228993535042, -0.002510072197765112, -0.00743577815592289, -0.019457615911960602, 0.018463527783751488, -0.008933537639677525, 0.016236770898103714, 0.012684562243521214, -0.03994908183813095, -0.004542982205748558, -0.03199637681245804, -0.01168384775519371, 0.009231763891875744, -0.02637646719813347, -0.0054476018995046616, 0.00701826112344861, 0.012757462449371815, 0.04594011977314949, -0.005682869348675013, -0.004231500905007124, 0.01171035598963499, 0.0010181117104366422, 0.0059744687750935555, 0.004973753355443478, 0.02123371884226799, -0.01625002548098564, -0.016607895493507385, -0.006110327318310738, 0.010656623169779778, -0.011783256195485592, 0.0023609588388353586, -0.004523100331425667, 0.014964337460696697, -0.006262754090130329, -0.013705159537494183, -0.023301422595977783, -0.002382497536018491, 0.026177650317549706, -0.01034514233469963, -0.05529779940843582, -0.0070381429977715015, 0.008575665764510632, -0.0060440548695623875, -0.008191284723579884, 0.015295700170099735, -0.00197989190928638, -0.01109402161091566, 0.020822828635573387, 9.630227577872574e-05, 0.0016377599677070975, -0.019881758838891983, 0.0018473467789590359, -0.0047152903862297535, 0.0033666444942355156, 0.011942310258746147, -0.003949842881411314, 0.013917231932282448, -0.0011755090672522783, -0.018635835498571396, 0.010663250461220741, -0.03151921555399895, -0.024534091353416443, 0.005209020804613829, 0.015255936421453953, -0.0001325450575677678, -0.0407443530857563, -0.002011371310800314, 0.008310575038194656, 0.002032910007983446, -0.010384906083345413, -0.027781445533037186, -0.0046457042917609215, -0.012558644637465477, 0.0032258154824376106, -0.027052447199821472, -0.018953943625092506, 0.014063031412661076, 0.005888314452022314, -0.0067067802883684635, -0.02673433907330036, -0.022333843633532524, 0.0061136409640312195, 0.14145208895206451, -0.009138981811702251, 0.0057822782546281815, 0.007674359250813723, 0.016501860693097115, 0.002508415374904871, 0.004079074133187532, -0.02658854052424431, 0.016819968819618225, -0.007840040139853954, 0.015017355792224407, 0.020239630714058876, -0.016965767368674278, -0.006053995806723833, 0.018808145076036453, -0.0002543208538554609, -0.010802422650158405, -0.012326691299676895, -0.00501351710408926, -0.0020246258936822414, 0.0036847528535872698, 0.003813984105363488, 0.010875322856009007, 0.016859732568264008, -0.00335007649846375, 0.009364308789372444, 0.013691904954612255, 0.0270657017827034, 0.012856870889663696, -0.005848550703376532, 0.01780080236494541, 0.0037907888181507587, 0.0027304282411932945, 0.005179198458790779, -0.029080387204885483, 0.0036350484006106853, -0.0008408327703364193, 0.003081672824919224, 0.01251225359737873, 0.00041213229997083545, -0.002115750452503562, 0.026946410536766052, -0.0015938543947413564, -0.006163345649838448, -0.005033398978412151, -0.011325975880026817, 0.0017661629244685173, 0.007263469509780407, -0.01023910567164421, -0.0016833222471177578, 0.035177458077669144, 0.010411414317786694, -0.012830361723899841, -0.028894823044538498, 0.007614714093506336, 0.04647029936313629, -0.008032230660319328, -0.007780394982546568, 0.0038272386882454157, 0.00022304848243948072, 0.0007256842218339443, -0.03417011722922325, -0.014553448185324669, -0.0029176482930779457, -0.013135216198861599, -0.025594452396035194, -0.010444550774991512, -0.020252885296940804, -0.018198437988758087, 0.006965243257582188, -0.0033616742584854364, 0.010073425248265266, -0.04047926142811775, -0.00943720806390047, 0.018649090081453323, 0.014381139539182186, 0.030723946169018745, -0.006229618098586798, -0.0036284211091697216, 0.0136653957888484, -0.01663440465927124, -0.0033732717856764793, 0.017244113609194756, -0.011610947549343109, -0.01925879716873169, 0.01064336858689785, 0.012041718699038029, 0.009397445246577263, 0.009198627434670925, 0.008250930346548557, 0.04055878892540932, 0.00786654930561781, 0.018118910491466522, 0.0028281803242862225, 0.0023294794373214245, 0.0357341505587101, -0.016170497983694077, 0.012525508180260658, -0.024242492392659187, 0.010451178066432476, 0.014381139539182186, -0.011770001612603664, -0.007263469509780407, -0.010822304524481297, 0.006285949610173702, 0.005159316584467888, 0.00949022639542818, 0.01797311007976532, 0.016554879024624825, 0.003711261786520481, 0.014778774231672287, -0.017032040283083916, 0.004841208457946777, -0.007197197061032057, 0.0034627397544682026, 0.026349958032369614, 0.007627968210726976, 0.018198437988758087, -0.011405502445995808, -0.024944981560111046, 0.00369137991219759, -0.01925879716873169, 0.027834463864564896, -0.0007824300555512309, -0.02033241279423237, -0.0015863986918702722, 0.0019517260370776057, -0.02218804322183132, 0.015361973084509373, 0.004930676426738501, 0.011637456715106964, -0.0015366943553090096, -0.007601459510624409, -0.017403166741132736, -0.014049776829779148, -0.01304906141012907, -0.009596262127161026, 0.028152571991086006, -0.007236960344016552, 0.0029275889974087477, -0.005318370647728443, 0.013426815159618855, -0.004890912678092718, -0.0135328508913517, 0.02294355072081089, -0.02615114115178585, -0.014646229334175587, -0.011663965880870819, 0.005815414711833, 0.03546905890107155, 0.011292839422821999, 0.027516355738043785, -0.006242872681468725, 0.006560980807989836, 0.007303232792764902, -0.0409829318523407, -0.02604510448873043, 0.009145609103143215, 0.005513874813914299, 0.006408553570508957, 0.014182321727275848, -0.0009336142684333026, 0.011610947549343109, -0.014672738499939442, 0.007422523573040962, 0.006673643831163645, 0.009450462646782398, -0.01850329153239727, -0.00731648737564683, -0.008310575038194656, 0.01032526046037674, -0.0044800229370594025, 0.014858301728963852, 0.01310207974165678, -0.016303041949868202, 0.034037571400403976, 0.003545580431818962, -0.0017263994086533785, -0.021843425929546356, -0.015653571113944054, -0.0013345631305128336, 0.0014306582743301988, 0.006743229925632477, 0.010762658901512623, 0.00850276555866003, -0.0070845335721969604, 0.03136016055941582, 0.009914370253682137, 0.019696196541190147, 0.0024272315204143524, 0.008284066803753376, -0.029981693252921104, 0.014977592043578625, -0.03369295597076416, 0.013320778496563435, -0.0023957521189004183, -0.0031015544664114714, -0.024587109684944153, -0.016117479652166367, 0.021326500922441483, 0.013824449852108955, 0.001004028832539916, 0.01834423653781414, -0.001607108861207962, -0.0002742026117630303, 0.008482883684337139, -0.016183752566576004, 0.0011506568407639861, -0.0023940952960401773, -0.018052637577056885, -0.0032705494668334723, -0.018065892159938812, -0.006663702894002199, -0.015123391523957253, 0.008409984409809113, -0.006355535704642534, -0.041910748928785324, 0.01532220933586359, -0.0028927959501743317, -0.009993897750973701, -0.013400305993855, 0.0036383620463311672, 0.03106856346130371, 0.004307714756578207, 0.027092210948467255, 0.008993182331323624, -0.001971607794985175, -0.024799181148409843, 0.008794364519417286, 0.0002124863094650209, 0.003654930042102933, 0.01090845838189125, 0.014169067144393921, -0.014301612041890621, -0.009496853686869144, -0.013784686103463173, 0.028762279078364372, -0.03491237014532089, -0.04055878892540932, -0.023235149681568146, 0.031254127621650696, 0.02695966511964798, -0.0036714982707053423, -0.011292839422821999, 0.004844522103667259, 0.024043673649430275, -0.0029656956903636456, -0.014208830893039703, 0.0047915042378008366, -0.020769812166690826, -0.017257366329431534, 0.033772483468055725, 0.01310207974165678, 0.015110136941075325, 0.020133595913648605, -0.010709641501307487, -0.0007758028223179281, -0.012353199534118176, -0.008893773891031742, 0.0030667614191770554, -0.015335463918745518, 0.021565081551671028, -0.020305903628468513, 0.036290839314460754, -0.008250930346548557, 0.011849528178572655, -0.006647135131061077, 0.004098956007510424, 0.009324545040726662, 0.02786097303032875, -0.011173549108207226, -0.0035654623061418533, -0.03825250640511513, -0.022453133016824722, 0.018224945291876793, -0.0035422667860984802, -0.012472490780055523, -0.00989448931068182, -0.007183942478150129, -0.004085701424628496, 0.02524983510375023, 0.008244303055107594, -0.0033003720454871655, -0.010862068273127079, -0.009112472645938396, -0.019550396129488945, 0.010842186398804188, -0.0012210713466629386, 0.014394394122064114, -0.016024697571992874, -0.025316106155514717, -0.008463001810014248, -0.011644084006547928, 0.021737391129136086, 0.0025233265478163958, -0.016819968819618225, -0.007396014407277107, 0.004204992204904556, -0.024149710312485695, 0.03136016055941582, -0.021061411127448082, -0.005822042003273964, -0.021034901961684227, 0.012214027345180511, -0.007674359250813723, -0.022612188011407852, 0.001908648875541985, 0.0003976351872552186, -0.020783066749572754, -0.011286212131381035, 0.02400391176342964, 0.01599818840622902, -0.03663545474410057, -0.009775198064744473, 0.004334223456680775, -0.011319348588585854, -0.00688571622595191, -0.019272051751613617, -0.006249499507248402, 0.026919901371002197, -0.0011755090672522783, 0.004377300851047039, 0.0031032112892717123, -0.0012492372188717127, 0.0012674621539190412, 0.0019948030821979046, 0.013320778496563435, 0.0004775764246005565, -0.017959855496883392, -0.012797226198017597, 8.52223311085254e-05, 0.017403166741132736, -0.00014963095600251108, -0.014261849224567413, -0.023844856768846512, -0.006690212059766054, -0.0046258228830993176, 0.024414800107479095, 0.008270812220871449, 0.003081672824919224, 0.019431106746196747, 0.020040813833475113, 0.024560600519180298, 0.011836274527013302, 0.00156154646538198, 0.007488796021789312, -0.0008147379267029464, -0.016594642773270607, -0.03584018349647522, -0.007627968210726976, 0.0041983649134635925, 0.0307504553347826, 0.013194860890507698, -0.012406217865645885, -0.02251940593123436, -0.014235340058803558, -0.02969009429216385, 0.0024636813905090094, 0.0009742061956785619, 0.015229428187012672, 0.01321474276483059, -0.030723946169018745, 0.006597430445253849, 0.014752265065908432, 0.004804758355021477, -0.004552923142910004, -0.0027718485798686743, -0.0047948178835213184, 0.017045294865965843, -0.035919710993766785, 0.0059976642951369286, 0.011425384320318699, -0.011610947549343109, -0.004725231323391199, 0.0018937375862151384, 0.01792009174823761, -0.007946076802909374, 0.017668256536126137, -0.009423954412341118, -0.004675527103245258, -0.020239630714058876, 0.008860637433826923, -0.0003589071857277304, 0.014579957351088524, 0.013493087142705917, 0.005049966741353273, -0.017177840694785118, 0.006769739091396332, -0.01463297475129366, -0.024732908234000206, -0.00949022639542818, 0.0032622653525322676, 0.012015209533274174, 0.016541624441742897, 0.0020295963622629642, -0.01908648945391178, 0.0055967154912650585, -0.0273307915776968, 0.013877468183636665, -0.02017335779964924, -0.010146324522793293, 0.016647659242153168, 0.009483599103987217, -0.017416421324014664, -0.024189474061131477, 0.0307504553347826, -0.02518356218934059, -0.0018357491353526711, 0.022121770307421684, 0.0023675861302763224, 0.00805211253464222, -0.00541446590796113, -0.004748426843434572, -0.021512063220143318, -0.01700553111732006, 0.003036938840523362, -0.0075550684705376625, -0.028285115957260132, 0.01422208547592163, -0.007661104667931795, -0.0032440403010696173, 0.005593401845544577, -0.03711261600255966, 0.008403357118368149, 3.6268676922190934e-05, -0.014169067144393921, 0.014778774231672287, -0.03963097557425499, -0.019775724038481712, 0.008416611701250076, -0.013970249332487583, 0.0031595430336892605, -0.006156718358397484, -0.005729260388761759, -0.015600553713738918, 0.01573309861123562, 0.24685192108154297, 0.0017197722336277366, 0.007694241125136614, 0.04005511850118637, -0.007336369249969721, 0.0016153929755091667, 0.02921293117105961, 0.024308765307068825, 0.028417661786079407, -0.0052388436160981655, -0.036184802651405334, 0.006879088934510946, 0.005387956742197275, -0.007475541438907385, 0.007574950344860554, -0.014341375790536404, -0.03552207723259926, -0.019272051751613617, -0.010451178066432476, -0.02208200842142105, -0.010968104004859924, 0.0030253410805016756, 0.0022996568586677313, 0.003926647361367941, 0.006468199193477631, 0.002836464438587427, -0.012174263596534729, 0.011869410052895546, -0.0009402415598742664, 0.005619910545647144, 0.004582745488733053, -0.01845027320086956, -0.03016725555062294, 0.0038636885583400726, 0.00036491313949227333, -0.004274578299373388, 0.0074158962815999985, 0.00035290123196318746, 0.019696196541190147, 0.014619720168411732, -0.017230859026312828, 0.019059980288147926, 0.0032672358211129904, -0.008436493575572968, 0.00514606200158596, 0.03631734848022461, -0.012479118071496487, -0.01545475423336029, 0.010530705563724041, 0.0077207498252391815, -0.005861805286258459, -0.001938471570611, 0.024295510724186897, 0.02717173844575882, 0.007793649565428495, -0.006169972475618124, 0.010431296192109585, 0.013174979016184807, -0.03387851640582085, 0.0021637980826199055, -0.0018175242003053427, 0.012956280261278152, -0.0016932631842792034, 0.017522457987070084, 0.005649733357131481, -0.0009601233177818358, -0.003214217722415924, -0.003247353946790099, 0.007992466911673546, -0.006620625965297222, 0.007621340919286013, -0.014513684436678886, 0.006570921279489994, -0.01027224212884903, -0.028391152620315552, -0.007767140865325928, 0.03255306929349899, -0.003184395143762231, 0.011803138069808483, 0.018171928822994232, -0.016700677573680878, 0.0038703158497810364, -0.0072502149268984795, -0.009523362852633, 0.0344352088868618, -0.025872796773910522, 0.02770191803574562, 0.014924573712050915, 0.019881758838891983, -0.019126253202557564, -0.004254696425050497, -0.018304472789168358, 0.00030195422004908323, -0.011869410052895546, 0.003237413242459297, 0.026111377403140068, 0.0006022516172379255, 0.017721274867653847, -0.023407457396388054, 0.005623224191367626, -0.02021312154829502, 0.004566177260130644, 0.0235267486423254, 0.008217793889343739, -0.015653571113944054, 0.0017810743302106857, -0.0012111305259168148, 0.020464958623051643, -0.02743682824075222, 0.004536354914307594, -0.003641675692051649, -0.009649280458688736, 0.010093306191265583, 0.008655192330479622, -0.03173128888010979, -0.0026956351939588785, 0.0035223851446062326, -0.03904777392745018, 0.01973596028983593, -0.01619700714945793, 0.004996948875486851, -0.021618099883198738, -0.00818465743213892, 0.013546105474233627, -0.0016940915957093239, 0.0024620245676487684, 0.006464885547757149, 0.004248069133609533, 0.010265614837408066, 0.005795532837510109, 0.033984553068876266, 0.008224421180784702, 0.01705854944884777, -0.017615238204598427, -0.005716005805879831, -0.013062315993010998, 0.020517975091934204, -0.007137551438063383, 0.009695671498775482, 0.006080504972487688, 0.003883570432662964, 0.0010321947047486901, -0.005006889812648296, -0.010537332855165005, 0.020875846967101097, -0.02812606282532215, 0.022227806970477104, 0.015852389857172966, -0.017085058614611626, -0.02197597175836563, -0.02953103929758072, -0.023937638849020004, -0.003419662592932582, -0.017098313197493553, 0.05344216898083687, 0.0017048608278855681, -0.045860592275857925, 0.002906050533056259, 0.008655192330479622, 0.02342071197926998, -0.004178483039140701, 0.004446886945515871, 0.00960288941860199, -0.009185372851788998, -0.022532660514116287, -0.015335463918745518, -0.17008182406425476, 0.008893773891031742, 0.01211461890488863, -0.004317655228078365, 0.0037410843651741743, 0.025925815105438232, 0.006388672161847353, -0.009218509308993816, 0.007694241125136614, 0.0028215530328452587, 0.02748984657227993, 0.002071016700938344, -0.013956994749605656, -0.010007152333855629, 0.013559360057115555, 0.04973090812563896, -0.01737665757536888, -0.01099461317062378, 0.01385095901787281, 0.014659483917057514, 0.02396414801478386, -0.0033533901441842318, -0.010431296192109585, -0.0023891248274594545, 0.006945361383259296, 0.01573309861123562, 0.006478140130639076, 0.00629920419305563, 0.0027933872770518064, -0.003648302750661969, -0.022267570719122887, 0.009901116602122784, 0.013128588907420635, 0.03605225682258606, 0.03462076932191849, 0.010172833688557148, -0.013035806827247143, -0.01594517193734646, -0.002776819048449397, 0.015958424657583237, 0.0018688853597268462, 0.0035952848847955465, -0.01094159483909607, -0.010504196397960186, -0.019815487787127495, 0.012041718699038029, 0.003823925042524934, 0.0026028535794466734, -0.017986364662647247, -0.016753695905208588, -0.005818728357553482, -0.029451513662934303, 0.010875322856009007, -0.015600553713738918, 0.020955374464392662, 0.01813216507434845, 0.00658086221665144, 0.012339944951236248, 0.013022552244365215, -0.005407838616520166, -0.006385358516126871, -0.004771622363477945, -0.0057358876802027225, 0.008734719827771187, 0.01505711954087019, -0.02802002616226673, -0.01573309861123562, -0.0014116049278527498, -0.02241336926817894, 0.01818518340587616, -0.00877448357641697, -0.012041718699038029, 0.012962907552719116, 0.001837405958212912, 0.021406028419733047, 0.012578526511788368, -0.0013428471283987164, 0.0035025032702833414, 0.0015110137173905969, -0.00217208219692111, -0.05118890479207039, 0.03568113222718239, -0.03456775099039078, 0.0028994232416152954, 0.0003083743795286864, 0.021459044888615608, 0.01385095901787281, -0.0017495948122814298, 0.018635835498571396, -0.02652226760983467, 0.017628492787480354, 0.0096559077501297, 0.0006879917345941067, -0.016276534646749496, 0.017230859026312828, 0.01573309861123562, 0.016819968819618225, 0.012989415787160397, 0.008151520974934101, -0.008999809622764587, 0.0011788225965574384, -0.017906837165355682, -0.007661104667931795, -0.006338967476040125, -0.022532660514116287, -0.02074330300092697, 0.019762469455599785, 0.027569372206926346, 0.01700553111732006, -0.04183122143149376, -0.0042447554878890514, 0.002483563032001257, 0.013996758498251438, -0.0023344499059021473, -0.005066534969955683, 0.025819778442382812, 0.004784876946359873, -0.005835296586155891, 0.005202393513172865, -0.007349623832851648, 0.03727167099714279, 0.006229618098586798, -0.0061136409640312195, 0.009556499309837818, -0.018423764035105705, -0.0017595357494428754, -0.09606865793466568, -0.019855249673128128, -0.011564556509256363, 0.018741872161626816, 0.0016617837827652693, 0.014116048812866211, 0.019881758838891983, 0.007303232792764902, 0.005086416844278574, 1.2672032426053192e-05, 0.015627063810825348, -0.012068227864801884, -0.023023078218102455, 0.00395978381857276, 0.009927624836564064, -0.02791398949921131, -0.017588729038834572, -0.01749594882130623, -0.028550205752253532, 0.01807914674282074, -0.005643106065690517, 0.000301540014334023, -0.0011340887285768986, -0.019934777170419693, 0.01711156778037548, -0.00250675855204463, -0.01786707527935505, 0.046443790197372437, 0.019245542585849762, 0.018914179876446724, -0.0207565575838089, -0.01237970869988203, 0.018264709040522575, -0.02685363031923771, -0.016117479652166367, 0.00022698342218063772, -0.019669687375426292, -0.0029077073559165, -0.0007758028223179281, -0.03894174098968506, 0.0003945286734960973, 0.02812606282532215, -0.021353010088205338, -0.028921332210302353, -0.02662830241024494, 0.009132354520261288, -0.03936588391661644, 0.0003576645685825497, 0.0008565724710933864, -0.0153752276673913, -0.014977592043578625, -0.011219939216971397, -0.014407648704946041, 0.0031959929037839174, 0.010756031610071659, -0.023738820105791092, -0.0013660425320267677, 0.03151921555399895, -0.01605120673775673, -0.013466577976942062, -0.006799561902880669, -0.02701268345117569, -0.0033749286085367203, 0.0054741110652685165, 0.025488415732979774, 0.014116048812866211, 0.006932106800377369, -0.003452798817306757, 0.011849528178572655, -0.002145573263987899, -0.008522647432982922, 0.04633775353431702, -0.00831720232963562, 0.02417621947824955, -0.025859542191028595, -0.00061177829047665, 0.0015681737568229437, -0.010338515043258667, 0.014884810894727707, -0.04037322476506233, -0.022771241143345833, -0.02717173844575882, 0.007667731959372759, -0.002909364178776741, 0.028364643454551697, -0.0022648638114333153, 0.004582745488733053, 0.0059976642951369286, 0.00643174909055233, 0.014606465585529804, -0.015481263399124146, 0.017310384660959244, 0.0060175457037985325, 0.004599313717335463, 0.005192453041672707, 0.007714122533798218, -0.009364308789372444, -0.027304282411932945, -0.0036251074634492397, 0.0024056928232312202, -0.02658854052424431, -0.03512444347143173, -0.05293849855661392, 0.021618099883198738, 0.006332340184599161, -0.012214027345180511, 0.0076080868020653725, -0.022917041555047035, 0.014977592043578625, -0.014010013081133366, 0.006932106800377369, -0.004499904811382294, -0.008131640031933784, 0.007767140865325928, -0.0024189474061131477, 0.0008491168264299631, -0.019245542585849762, -0.03085649013519287, 0.012929771095514297, -0.005182512104511261, 0.013188233599066734, -0.002844748320057988, -0.003853747621178627, 0.010391533374786377, 0.036184802651405334, 0.0013950368156656623, -0.005139434710144997, 0.01876838132739067, -0.038703158497810364, 0.02043844945728779, -0.003876943141222, -0.004367359913885593, 0.0035985985305160284, -0.011915801092982292, 0.00047716221888549626, 0.020769812166690826, -0.03401106223464012, -0.016554879024624825, -0.008993182331323624, 0.01882139965891838, 0.003823925042524934, 0.009516735561192036, 0.0002085513697238639, -0.014460666105151176, 0.016448842361569405, 0.005440974608063698, -0.006295890547335148, 0.009854725562036037, -0.010133069939911366, 0.007899685762822628, 0.02658854052424431, -0.024348527193069458, 0.018370745703577995, -0.003509130561724305, -0.006266067735850811, -0.02054448425769806, 8.044605237955693e-06, -0.01251225359737873, 0.01582588069140911, -0.024295510724186897, -0.000873140583280474, -0.0016394167905673385, 0.020875846967101097, 0.0007062166696414351, 0.01818518340587616, -0.0062362453900277615, 0.013625632040202618, -0.0099209975451231, -0.012452608905732632, 0.016011442989110947, 0.003053506836295128, -0.01829121820628643, -0.016276534646749496, 0.005321684293448925, 0.021048156544566154, 0.003088299883529544, 0.02224106155335903, 0.01398350391536951, 0.017257366329431534, -0.025594452396035194, 0.003973038401454687, 0.02316887676715851, 0.007475541438907385, -0.028046535328030586, -0.018092401325702667, 0.007912940345704556, 0.039922572672367096, 0.0362643301486969, -0.009834843687713146, -0.0049770670011639595, -0.02347373031079769, -0.0011929055908694863, -0.002032910007983446, 0.006107013672590256, 0.01120668463408947, -0.007859922014176846, 0.04167216643691063, 0.04172518476843834, 0.03379899263381958, 0.004533041268587112, 0.017999619245529175, 0.011432011611759663, 0.011080767028033733, 0.016117479652166367, 0.007932822220027447, -0.020822828635573387, -0.00415860116481781, -0.008138267323374748, -0.02775493636727333, -0.012883380055427551, 0.019815487787127495, 0.012498999014496803, -0.006196481641381979, 0.03804043307900429, 0.009596262127161026, 0.02738380990922451, -0.001974921440705657, -0.006080504972487688, -0.00756832305341959, -0.012386335991322994, -0.015507772564888, 0.04103595018386841, 0.0017893583280965686, 0.02091561071574688, 0.011511539109051228, -0.009642653167247772, 0.005371388513594866, -0.007482168730348349, 0.027251264080405235, 0.006425121799111366, -0.018224945291876793, -0.017522457987070084, 0.0078864311799407, -0.003923333715647459, -0.015308954752981663, -0.01571984402835369, -0.021697627380490303, 0.02273147739470005, -0.01495108287781477, 0.04124802350997925, -0.01834423653781414, 0.017628492787480354, 0.007157433312386274, -0.007323114667087793, -0.00504333944991231, 0.013380424119532108, 0.011657338589429855, 0.027463337406516075, -0.0054476018995046616, -0.02657528594136238, -0.004718604031950235, 0.0013469891855493188, -0.02578001469373703, 0.0068326978944242, -0.015229428187012672, -0.03000820241868496, -0.0073893871158361435, 0.014500429853796959, 0.015865644440054893, -0.023327931761741638, -0.006146777421236038, 0.010007152333855629, -0.0078864311799407, 0.018516546115279198, 0.029345476999878883, -0.03920682892203331, -0.0049339900724589825, 0.004400495905429125, -0.018012873828411102, 0.005129493772983551, -0.03048536367714405, 0.014447411522269249, -0.0056861829943954945, -0.005000262521207333, -0.0014132617507129908, 0.027410319074988365, -0.007979212328791618, 0.00030775307095609605, 0.00544428825378418, 0.004629136528819799, 0.013241251930594444, -0.012605035677552223, 0.006792934611439705, -0.016064461320638657, -0.02343396656215191, 0.000468049751361832, -0.020411940291523933, -0.023195385932922363, 0.003512444207444787, -0.04130104184150696]}, {"created_time": 1695688468.0702922, "accessed_time": 1695688468.0702922, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695688469.6403575, "accessed_time": 1695688469.6403575, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695691991.0911222, "accessed_time": 1695691991.0911222, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.008202211000025272, -0.0058207097463309765, 0.012632602825760841, 0.008661216124892235, 0.01672372967004776, 0.023801714181900024, -0.0002633871044963598, -0.003738558618351817, -0.02039576694369316, -0.026316259056329727, -0.005428227595984936, -0.023069966584444046, 0.009146829135715961, -0.009891880676150322, -0.019171753898262978, -0.002674200339242816, 0.027859579771757126, -0.0023382622748613358, 0.04331938549876213, -0.03381998464465141, -0.01503406185656786, 0.025690948590636253, 0.00261433026753366, 0.010517191141843796, -0.026914961636066437, 0.008182254619896412, 0.011648071929812431, -0.012898692861199379, -0.008528171107172966, -0.004669872112572193, 0.0023299469612538815, -0.004493587650358677, 0.010151317343115807, -0.0049359616823494434, -0.03062691166996956, -0.039115168154239655, 0.013397610746324062, -0.010284362360835075, 0.007191070821136236, -0.0046166544780135155, 0.01629798673093319, -0.011401938274502754, 0.002170293126255274, -0.02305666171014309, -0.014315620064735413, 0.0020023242104798555, -0.01937132142484188, -7.977490167832002e-05, -0.01024444866925478, 0.006472629029303789, 0.014422055333852768, -0.008248777128756046, -0.021952390670776367, -0.006382823921740055, -0.025158770382404327, -0.007071330677717924, 0.002685841638594866, 0.009186742827296257, 0.008461648598313332, 0.0020522158592939377, -0.0004960076184943318, 0.009060350246727467, -2.3932470867293887e-05, -0.0008897370425984263, -0.005285204388201237, 0.003244629828259349, -0.002291696611791849, -0.006718762218952179, 0.003788450499996543, 0.004526848904788494, 0.03195735812187195, 0.019610801711678505, -0.005414923187345266, -0.016484249383211136, 0.014422055333852768, 0.006010298617184162, -0.01847992092370987, -0.007463812828063965, -0.008415083400905132, 0.0014318946050480008, 0.0033710224088281393, -0.028631240129470825, -0.0032546082511544228, -0.0005163801251910627, 0.016537467017769814, 0.022431351244449615, -0.017122864723205566, 0.019171753898262978, 0.013184739276766777, -0.03001490607857704, 0.02523859776556492, 0.026209823787212372, 0.007823034189641476, 0.007803076878190041, -0.009885228238999844, 0.0019940088968724012, 0.010151317343115807, 0.0030384105630218983, 0.01088306400924921, -0.02130047045648098, -0.0161250289529562, 0.02321631647646427, -0.003678688546642661, -0.012925301678478718, -0.034405384212732315, 0.0066522397100925446, 0.019278191030025482, -0.01749539002776146, 0.02120734006166458, -0.012373166158795357, -0.027380619198083878, 0.02070176973938942, -0.010217839851975441, -0.03523026034235954, -0.01821383275091648, -0.018466617912054062, 0.03062691166996956, 0.0007749859360046685, -0.0247197225689888, -0.013251261785626411, 0.020382462069392204, 0.009971707127988338, 0.018333572894334793, -0.004417086951434612, 0.019224973395466805, -0.007071330677717924, 0.006412758957594633, 0.013903181068599224, -0.02599695324897766, -0.0012913660611957312, 0.010417407378554344, 0.011987335979938507, 0.023801714181900024, 0.0032512820325791836, -0.021539952605962753, 0.021619778126478195, -0.026702089235186577, 0.007051373831927776, -0.0012614309089258313, -0.022138653323054314, 0.005029093008488417, 0.022005608305335045, -0.023189706727862358, -0.003981365356594324, 0.019304798915982246, 0.03467147424817085, 0.011807725764811039, 0.012858779169619083, -0.01156824454665184, 0.0014293999411165714, 0.01774817518889904, -0.0036287966649979353, 0.016404422000050545, 0.003129878779873252, 0.028764283284544945, 0.0016963210655376315, 0.001688837306573987, 0.01383665855973959, -0.03908855840563774, 0.011681333184242249, 0.002862126100808382, -0.0008494078647345304, 0.023615451529622078, -0.011860943399369717, -0.016923297196626663, 0.026329563930630684, 0.012506210245192051, 0.021233947947621346, -0.015978679060935974, 0.0011649734806269407, 0.009273221716284752, 0.02164638787508011, -0.040312573313713074, 0.0031731182243674994, 0.005338422488421202, 0.0062231700867414474, -0.032862063497304916, -0.002707461593672633, 0.01398300752043724, -0.025584513321518898, -0.03645427152514458, -0.002561112167313695, 0.0049359616823494434, 0.015539632178843021, -0.008182254619896412, -0.01608511619269848, 0.012852126732468605, 0.007064678706228733, 0.008055862039327621, 0.012978519313037395, 0.007104591932147741, 0.0434524305164814, -0.010364189743995667, -0.011342068202793598, -0.6599021553993225, -0.039407867938280106, 0.020302634686231613, 0.011707942001521587, 0.028578020632267, 0.0011217339197173715, 0.007051373831927776, 0.005551293957978487, -0.002644265303388238, -0.003808407112956047, -0.014741363003849983, 0.0105238426476717, -0.004007974173873663, 0.012373166158795357, -0.0027423857245594263, -0.014422055333852768, -0.002025607042014599, -0.027806362137198448, 0.011834334582090378, 0.009080306626856327, -0.00862130243331194, 0.02775314450263977, -0.01844000816345215, -0.010131360962986946, -0.006589043419808149, -0.013118216767907143, -0.004932635463774204, -0.045660972595214844, -0.009958402253687382, 0.04536827281117439, -0.04233485460281372, 0.027832970023155212, -0.013783440925180912, -0.017122864723205566, 0.055027324706315994, -0.00876765139400959, -0.0036953191738575697, 0.009679008275270462, -0.0010809889063239098, 0.018107395619153976, -0.033766768872737885, 0.005438205786049366, 0.030813174322247505, 0.004280716180801392, 0.0021719562355428934, -0.0007932795560918748, 0.028977155685424805, -0.005381661932915449, -0.0035290131345391273, -0.004759677220135927, 0.027699925005435944, 0.004812895320355892, -0.0021536624990403652, 0.006918329279869795, 0.026662176474928856, -0.005454836413264275, 0.028764283284544945, -0.028365150094032288, -0.00577414408326149, -0.0046765245497226715, -0.005185420624911785, 0.001960747642442584, -0.024826157838106155, 0.0011125870514661074, -0.02103438228368759, 0.00767668429762125, -0.03318137302994728, -0.01126889418810606, -0.006259757559746504, -0.00511224614456296, 0.013590525835752487, 0.015100584365427494, -0.012260077521204948, 0.007896208204329014, -0.004027931019663811, 0.0312921367585659, 0.009466136805713177, 0.0001451019779779017, -0.0004743878380395472, 0.011075979098677635, 0.017096254974603653, -0.008262082003057003, -0.020475594326853752, 0.01131545938551426, 0.02595703862607479, -0.02215195819735527, -0.015406587161123753, 0.014634926803410053, 0.01826705038547516, -0.025039030238986015, 0.026023561134934425, 0.006213191896677017, -0.01144185196608305, 0.002639275975525379, 0.001361214555799961, 0.014488577842712402, -0.018799228593707085, 0.012479601427912712, 0.027992624789476395, -0.028365150094032288, 0.010809889063239098, -0.012186902575194836, 0.021154122427105904, 0.0058506447821855545, 0.003745210822671652, -0.000816978164948523, -0.03203718736767769, 0.02574416808784008, 0.013770136050879955, -0.01591215655207634, 0.026569044217467308, 0.03467147424817085, -0.009592529386281967, -0.001104271737858653, -0.01651085913181305, -0.025331728160381317, 0.04409104585647583, 0.03632122650742531, 0.025158770382404327, -0.005148833617568016, 0.01954427920281887, -0.004776307847350836, 0.02599695324897766, 0.004490261897444725, 0.015193715691566467, 0.007576900999993086, 0.0007866273517720401, -0.02425406500697136, -0.011348720639944077, -0.0024829483591020107, -0.011515026912093163, -0.004613328259438276, 0.018892360851168633, -0.026289651170372963, 0.009266570210456848, -0.009698965586721897, -0.007862946949899197, -0.019211668521165848, 0.018373485654592514, -0.009632443077862263, -0.03366033360362053, -0.010962890461087227, 0.012073814868927002, 0.024227457121014595, -0.0036620579194277525, -0.016484249383211136, 0.007550292182713747, 0.0029336377047002316, -0.04206876456737518, 0.0007650075713172555, 0.007350724656134844, -0.005128876771777868, -0.011455156840384007, 0.02300344407558441, -0.006898372434079647, 0.006482607685029507, -0.019304798915982246, -0.009878575801849365, -0.014568405225872993, 0.0041310410015285015, 0.014940930530428886, 0.011415243148803711, -0.02950933575630188, 0.006472629029303789, 0.0057974266819655895, 0.001564939389936626, -0.0006182425422593951, 0.020369157195091248, 0.0031032697297632694, -0.024573372676968575, -0.01503406185656786, -0.014874408021569252, -0.0162181593477726, -0.008534823544323444, 0.011155805550515652, -0.012838822789490223, 0.0040478878654539585, -0.005724252201616764, 0.0069715469144284725, -0.0008622965542599559, 0.003931473474949598, 0.006432715803384781, -0.007317463401705027, -0.014062834903597832, 0.016883384436368942, -0.0022850444074720144, 0.0047663296572864056, 0.03839672729372978, 0.011175762861967087, 0.009452832862734795, 0.005817383527755737, 0.007603509817272425, -0.008521518670022488, 0.014342228882014751, -0.01208046730607748, -0.014794580638408661, 0.020289331674575806, 0.020715074613690376, -0.005920493043959141, 0.0129386056214571, -0.004493587650358677, -0.0021137490402907133, 0.028152277693152428, -0.014076138846576214, -0.00241642608307302, -0.012226816266775131, 0.01757521741092205, -0.018839143216609955, 0.022378133609890938, 0.00442706560716033, 0.005531337112188339, -0.014328924007713795, -0.014595014043152332, -0.008681172505021095, 0.02215195819735527, 0.004057866055518389, -0.0051920730620622635, 0.01408944372087717, -0.02317640371620655, 0.007277550175786018, -0.0014202531892806292, -0.003108259057626128, -0.01210707612335682, -0.028258714824914932, -0.0035389915574342012, -0.0004084890824742615, -0.004486935678869486, 0.01408944372087717, 0.0045867194421589375, 0.007031417451798916, -0.02010306902229786, -0.011641419492661953, 0.031717877835035324, 0.007264245767146349, 0.0018509856890887022, 0.0012763984268531203, 0.024187542498111725, -0.027234269306063652, 0.034405384212732315, 0.03217023238539696, 0.006356215104460716, -0.010277709923684597, 0.01045732107013464, -0.015326759777963161, 0.026249738410115242, 0.020049849525094032, 0.03884907811880112, -0.019477756693959236, -0.01098950020968914, 0.009319787845015526, -0.015685981139540672, -0.00820886343717575, -0.002213532803580165, -0.002200228162109852, 0.006678848527371883, -0.024107716977596283, -0.014328924007713795, 0.013384305872023106, 0.01569928601384163, 0.03105265460908413, 0.018360180780291557, 0.024027889594435692, 0.014022921212017536, 0.004027931019663811, -0.001554960967041552, 0.007530335336923599, 0.020422374829649925, -0.024134324863553047, -0.014501882717013359, -0.01492762565612793, 0.012433036230504513, -0.006392802111804485, 0.0002739891060627997, -0.011774464510381222, -0.016138333827257156, 0.016524164006114006, -0.003040073439478874, -0.013863267377018929, -0.020715074613690376, 0.007011460606008768, -0.008760999888181686, -0.027234269306063652, 0.0031764444429427385, 0.0064859334379434586, 0.004167628008872271, -0.014209183864295483, 0.007091287523508072, 2.8272017516428605e-05, -0.0077964249067008495, 0.013124869205057621, 0.01565937139093876, -0.002155325608327985, -0.010916325263679028, 0.01962410658597946, 0.0021021077409386635, -0.0044503482058644295, 0.00456676259636879, -0.024493547156453133, 0.011461809277534485, -0.018825838342308998, 0.004530175123363733, -0.015765808522701263, -0.005318465642631054, -0.003931473474949598, -0.0005641930620186031, 0.006924981251358986, -0.019012100994586945, -0.006243126932531595, -0.017122864723205566, -0.004490261897444725, -0.0013254587538540363, -0.006831849925220013, -0.020289331674575806, -0.005631120875477791, 0.003050051862373948, 0.008973871357738972, -0.0013795081758871675, -0.023083271458745003, 0.01454179547727108, 0.0001920834183692932, -0.028631240129470825, -0.007756511215120554, -0.034751299768686295, 0.007211027666926384, 0.1261264681816101, -0.009346396662294865, 0.012093771249055862, 0.02390814945101738, 0.014209183864295483, -0.018706098198890686, -0.00782968569546938, -0.025331728160381317, 0.005664382129907608, 0.013304479420185089, -0.0035290131345391273, 0.006692152936011553, 0.019012100994586945, 0.0005804079119116068, -0.008115732111036777, -0.019304798915982246, -0.015499718487262726, -0.008089123293757439, 0.0024995789863169193, -0.015087279491126537, 0.012699125334620476, -0.005667708348482847, -0.0071378531865775585, 0.026888351887464523, -0.000678528449498117, 0.020422374829649925, 0.012712430208921432, 0.021539952605962753, 0.027354009449481964, -0.019983327016234398, 0.01306499820202589, 0.025504685938358307, -0.0021137490402907133, -0.00882752239704132, -0.028631240129470825, 0.0030433996580541134, 0.02518538013100624, 0.013510698452591896, 0.0007749859360046685, -0.01259269006550312, 0.010251101106405258, 0.023043358698487282, 0.02143351547420025, -0.009226656518876553, 0.02126055769622326, -0.009459484368562698, 0.007763163652271032, 0.022351525723934174, -0.016111724078655243, 0.0025078942999243736, 0.022976836189627647, 0.015725893899798393, 0.006399454548954964, -0.02485276758670807, -0.0037817982956767082, 0.043000075966119766, 0.0027057984843850136, -0.01753530278801918, -0.005321791861206293, 0.017428867518901825, 0.02334936149418354, -0.02809906005859375, -0.015672676265239716, -0.005145507398992777, -0.011747854761779308, -0.012931954115629196, -0.013929789885878563, -0.010177926160395145, -0.0064194113947451115, 0.0026076778303831816, -0.01847992092370987, -0.005338422488421202, -0.02775314450263977, 0.006159973796457052, 0.028152277693152428, 0.011980683542788029, 0.02788618765771389, -0.011215675622224808, -0.0027207660023123026, 0.003178107552230358, -0.01633790135383606, -0.009778792038559914, 0.0013745189644396305, -0.008508214727044106, -0.03028099425137043, 0.0037319064140319824, 0.012911996804177761, 0.009486094117164612, -0.00550805451348424, 0.0027274182066321373, 0.01569928601384163, -0.005681012757122517, 0.02980203367769718, 0.0017362345242872834, 0.005401618778705597, 0.007803076878190041, -0.010976195335388184, 0.029695598408579826, 0.0028055820148438215, 0.01946445368230343, 0.006093451287597418, -0.024599982425570488, -0.014235792681574821, -0.012978519313037395, 0.015060670673847198, -0.003941452130675316, 0.021140817552804947, 0.01962410658597946, -0.0005908020539209247, 0.01287208404392004, 0.01869279332458973, -0.01877262070775032, 0.010823193937540054, 0.014182575047016144, -0.0027274182066321373, 0.016737034544348717, -0.00027752312598749995, 0.022976836189627647, 0.0020222808234393597, -0.022990141063928604, 0.018360180780291557, -0.027646707370877266, 0.03480451926589012, -0.0013695298694074154, -0.007603509817272425, 0.012625950388610363, -0.01655077189207077, -0.017588522285223007, -0.009625790640711784, -0.020049849525094032, -0.01963741146028042, -0.0039647347293794155, -0.015326759777963161, -0.011914161033928394, -0.019052013754844666, -0.018040873110294342, -0.0038749296218156815, 0.012526167556643486, -0.007497074082493782, -0.02425406500697136, -0.036933235824108124, 0.00047854549484327435, 0.01744217239320278, -0.02698148414492607, -0.02052881196141243, -0.029695598408579826, -0.006705457344651222, -0.009293179027736187, 0.025584513321518898, 0.030600301921367645, -0.012472948990762234, 0.009306482970714569, -0.006542477756738663, 0.0077365548349916935, -2.2308389816316776e-05, -0.023282838985323906, -0.009392962791025639, 0.01919836364686489, 0.014688145369291306, 0.012865431606769562, 0.0019441170152276754, 0.010291014797985554, 0.014076138846576214, 0.004816221538931131, 0.010510538704693317, -0.0036188182421028614, 0.007290854584425688, -0.00955926813185215, -0.026369478553533554, 0.0006161637138575315, 0.004294020589441061, 0.021140817552804947, -0.011874247342348099, -0.012492906302213669, -0.03374015912413597, 0.015606153756380081, -0.006742044817656279, 0.008814217522740364, -0.012965215370059013, -0.006020276807248592, -0.013770136050879955, 0.0024779592640697956, -0.00356560037471354, 0.00032949374872259796, 0.02497250773012638, 0.0007238468388095498, 0.00996505469083786, -0.008707781322300434, 0.03169126808643341, -0.028125669807195663, 9.952374239219353e-05, -0.011787768453359604, 0.009080306626856327, -0.01591215655207634, 0.002273402875289321, -0.0012439688434824347, 0.009313135407865047, -0.015832331031560898, -0.008860782720148563, 0.0016655544750392437, 0.019185058772563934, -0.0064260633662343025, 0.02386823669075966, -0.006293018814176321, 0.004214193671941757, 0.019344713538885117, 0.012778952717781067, -0.016909992322325706, 0.007689989171922207, -0.032063793390989304, -0.018666183575987816, -0.0017096255905926228, -0.0029685618355870247, -0.011594853363931179, -0.0227905735373497, -0.01172124594449997, -0.017761480063199997, 0.014688145369291306, 0.008115732111036777, 0.004061192274093628, -0.0002997665433213115, 0.0005932966014370322, 0.027859579771757126, 0.02027602680027485, 0.00441376119852066, -0.000180753821041435, -0.012213512323796749, -0.017043037340044975, 0.03964734822511673, -0.011002804152667522, -0.01490101683884859, 0.004496913868933916, 0.026409391313791275, -0.013218000531196594, -0.03546974062919617, 0.019743846729397774, 0.03991343826055527, -0.01979706436395645, -0.02535833790898323, -0.015845634043216705, 0.016790252178907394, 0.02240474335849285, -0.01629798673093319, -0.0024580026511102915, 0.0005820709629915655, 0.020675159990787506, -0.006369519513100386, -0.015938766300678253, -0.01507397461682558, 0.030653519555926323, -0.025970343500375748, 0.028072450309991837, -0.001604021294042468, 0.027699925005435944, -0.021060990169644356, 0.0028787567280232906, -0.01569928601384163, -0.022644223645329475, -0.01736234501004219, 0.013756831176578999, 0.002531177131459117, 0.02356223203241825, -0.012692472897469997, 0.016391118988394737, 0.0024330567102879286, 5.1970622735098004e-05, 0.0018160614417865872, -0.012699125334620476, -0.004150997381657362, 0.02433389239013195, -0.01859966106712818, -1.3421413314063102e-05, -0.022351525723934174, 0.010976195335388184, 0.012645907700061798, -0.009499398060142994, -0.012812213972210884, 0.0008714433643035591, -0.0021569887176156044, -0.020036546513438225, 0.022990141063928604, -0.0011167447082698345, 0.010763323865830898, 0.006439367774873972, -0.015526327304542065, -0.010530495084822178, -0.009565920569002628, -0.0018476595869287848, -5.219799277256243e-06, -0.027087919414043427, -0.016737034544348717, -0.027859579771757126, -0.01929149404168129, 0.019384626299142838, -0.0011300492333248258, -0.01962410658597946, 0.017561912536621094, 0.0118276821449399, -0.02690165676176548, 0.007776468060910702, -0.009239960461854935, 0.0015657709445804358, -0.018333572894334793, -0.0021619778126478195, -0.006778632290661335, -0.02557120844721794, 0.018160613253712654, -0.017694957554340363, -0.032143622636795044, -0.018825838342308998, 0.024786245077848434, 0.0081090796738863, -0.01291864924132824, -0.017029734328389168, 0.00713120074942708, -0.017694957554340363, 0.009392962791025639, -0.029323073104023933, -0.026076778769493103, 0.027992624789476395, -0.0019341387087479234, 0.005531337112188339, 0.01821383275091648, -0.03648088127374649, 0.015486413612961769, 0.020728379487991333, 0.003948104102164507, 0.021619778126478195, -0.022125348448753357, -0.017801392823457718, -0.02062194235622883, -0.010517191141843796, -0.00818890705704689, -0.02062194235622883, 0.011282198131084442, 0.010304318740963936, -0.017561912536621094, 0.012027249671518803, 0.004177606664597988, -0.0015350042376667261, 0.012812213972210884, 0.02489268034696579, 0.0027124506887048483, 0.01714947447180748, 0.0014676504069939256, 0.0015807384625077248, -0.02052881196141243, -0.00699150376021862, -0.028391757979989052, -0.007869599387049675, 0.007523682899773121, 0.022657528519630432, -0.01131545938551426, -0.034538429230451584, -0.030733346939086914, -0.016776949167251587, -0.03262258321046829, -0.01774817518889904, -0.011461809277534485, 0.004097779747098684, -0.007257593329995871, -0.025544600561261177, 0.00953931175172329, 0.01724260486662388, -0.018852446228265762, 0.020076459273695946, -0.014940930530428886, -0.021140817552804947, 0.0039946697652339935, -0.03057369403541088, 0.022165263071656227, -0.015300150960683823, -0.026755306869745255, -0.022258393466472626, -0.018666183575987816, -0.021313775330781937, -0.0020522158592939377, 0.0019208341836929321, -0.010849802754819393, 0.005088963080197573, -0.01838679052889347, 0.007224332075566053, 0.00913352519273758, 0.019903501495718956, 0.016191551461815834, -0.011002804152667522, -0.013424219563603401, 0.006625630892813206, 0.004360543098300695, -0.007803076878190041, -0.010111404582858086, 0.016324596479535103, 0.005720925983041525, 0.008800912648439407, -0.007490421645343304, -0.032223448157310486, -0.005834014154970646, -0.00013356449198909104, 0.036374446004629135, -0.013916485011577606, -0.024320587515830994, 0.020981164649128914, 0.006249778904020786, -0.014129357412457466, -0.013051694259047508, 0.012200207449495792, -0.0026974831707775593, 0.006276388186961412, 0.025810690596699715, -0.012852126732468605, 0.01340426318347454, -0.025970343500375748, -0.0051089199259877205, -0.030041513964533806, -0.013677004724740982, -0.005414923187345266, -0.013716918416321278, -0.013996312394738197, 0.0086412588134408, 0.010404102504253387, -0.012033901177346706, 0.0020372483413666487, -0.020954554900527, -0.011022761464118958, -0.012033901177346706, -0.015552936121821404, 0.00207882490940392, -0.018852446228265762, -0.02189917303621769, 0.018253745511174202, -0.011095935478806496, -0.012506210245192051, 0.022524483501911163, 0.01259269006550312, -0.023030053824186325, 0.019131841138005257, 0.2499113380908966, -0.018160613253712654, 0.021792737767100334, 0.02539825066924095, 0.00022576037736143917, 0.019012100994586945, 0.02895054593682289, 0.008860782720148563, 0.008674520067870617, 0.018200527876615524, -0.03254275768995285, 0.0014817863702774048, 0.018280355259776115, -0.004097779747098684, 0.005661055911332369, -0.022058825939893723, -0.01608511619269848, -0.02342918887734413, -0.009619138203561306, -0.006898372434079647, 0.012067162431776524, -0.014954234473407269, -0.0035090562887489796, 0.004649915266782045, 0.028365150094032288, 0.01997002400457859, -0.039886828511953354, 0.002887072041630745, 0.008867435157299042, -0.009060350246727467, -0.00971226952970028, 0.0031365309841930866, -0.001372024416923523, -0.01732243224978447, 0.027087919414043427, -0.014501882717013359, 0.022338220849633217, 0.005105593707412481, 0.025717558339238167, 0.0038250377401709557, 0.016138333827257156, 0.0029136808589100838, 0.011608158238232136, -0.00872108619660139, -0.004440370015799999, 0.004809569101780653, -0.022524483501911163, -0.013770136050879955, 0.0020804880186915398, 0.02048889733850956, -0.015220324508845806, -0.011448504403233528, 0.026954874396324158, 0.00844834465533495, 0.007876251824200153, 0.0002084021980408579, 0.01813400536775589, -0.010570408776402473, -0.02284379117190838, -0.010557103902101517, -0.00870112981647253, 0.042148590087890625, -0.0026226455811411142, 0.010836497880518436, -0.03477790951728821, 0.018466617912054062, -0.008049209602177143, 0.0007970214355736971, 0.017295822501182556, -0.004290694370865822, 0.008607998490333557, 0.00862130243331194, -0.0057608396746218204, 0.004317303653806448, -0.036374446004629135, -0.02518538013100624, 0.025478078052401543, 0.0029519314412027597, 0.04507557675242424, 0.002926985500380397, -0.010949586518108845, 0.026249738410115242, -0.00727089773863554, 0.0038150593172758818, -0.0049658967182040215, -0.03738558664917946, 0.0026825156528502703, 0.021712910383939743, 0.019238276407122612, -0.02788618765771389, -0.0034259033855050802, -0.011481765657663345, -0.0021021077409386635, -0.02062194235622883, -0.006818545516580343, 0.010623626410961151, -0.009705618023872375, 0.024067802354693413, -0.0227905735373497, 0.01045732107013464, -0.006475955247879028, -0.027194354683160782, 0.028764283284544945, 0.02680852636694908, -0.03557617589831352, 0.02630295604467392, 0.013903181068599224, 0.01577911153435707, -0.005607837811112404, -0.026276346296072006, 0.014568405225872993, -0.005301835015416145, 0.02801923267543316, 0.017681652680039406, 0.010217839851975441, 0.008920653723180294, -0.0075635965913534164, -0.02732739970088005, 0.027274182066321373, 0.001158321276307106, -0.0001540409284643829, -0.024866072461009026, -0.03267580270767212, 0.014621622860431671, -0.010816541500389576, -0.021699605509638786, -0.039753783494234085, 0.0024230782873928547, -0.015765808522701263, -0.021406907588243484, 0.03751863166689873, 0.011701289564371109, 0.01212703250348568, 0.014461969025433064, -0.0038050811272114515, 0.0063362582586705685, 0.018360180780291557, -0.00356560037471354, 0.013956398703157902, 0.006838502362370491, 0.015885548666119576, -0.0081090796738863, -0.012246773578226566, -0.02754027210175991, 0.01373022235929966, -0.023761799558997154, 0.010942934080958366, 0.0012065499322488904, 0.007849643006920815, -0.015592849813401699, -0.016138333827257156, 0.003327782964333892, -0.019358016550540924, -0.007237636484205723, 0.031371962279081345, -0.024240761995315552, -0.037438806146383286, 0.003685340750962496, 0.0058207097463309765, 0.01633790135383606, -0.02334936149418354, 0.0020039870869368315, 0.04079153388738632, -0.020595334470272064, 0.011029412969946861, -0.009672356769442558, -0.17093594372272491, 0.016351204365491867, 0.03246292844414711, -0.01774817518889904, 0.01625807397067547, 0.020675159990787506, -0.010191231034696102, -0.008953914977610111, -0.01332443580031395, 0.01736234501004219, 0.027859579771757126, 0.029988296329975128, -0.017681652680039406, -0.026542436331510544, -0.001554129528813064, 0.036800190806388855, -0.0002359466307098046, -0.004506892524659634, 0.038636207580566406, 0.0322500579059124, 0.012526167556643486, -0.01877262070775032, 0.016005288809537888, -0.008760999888181686, 0.02155325561761856, 0.022657528519630432, -0.001609010505490005, 0.002664221916347742, -0.007789772469550371, -0.0027174397837370634, -0.00699150376021862, 0.007483769673854113, 0.01167468074709177, -0.011581549420952797, 0.024879375472664833, 0.010590365156531334, -0.005328443832695484, -0.017907829955220222, -0.005977037362754345, 0.023708581924438477, 0.0021470102947205305, 0.001144185196608305, -0.001124228467233479, 0.006924981251358986, -0.053111482411623, 9.120844333665445e-05, -0.00018948488286696374, 0.0019790413789451122, -0.03868942707777023, -0.005401618778705597, 0.010676844976842403, -0.0033893161453306675, -0.005611164029687643, -0.011089283041656017, 0.015379978343844414, 0.020688464865088463, -0.013703613542020321, 0.04089796915650368, 0.0013587198918685317, 0.006402780767530203, 0.00022181060921866447, -0.021021077409386635, -0.006096777506172657, 0.009067002683877945, 0.017043037340044975, -0.00846830103546381, -0.02296353131532669, -0.007969383150339127, -0.0070779831148684025, 0.007324115838855505, -0.0006648082053288817, -0.03126552700996399, 0.027593489736318588, 0.0014767971588298678, 0.009745530784130096, -0.006126712542027235, -0.00483285216614604, 0.0029602465219795704, -0.0018642900977283716, -0.01770826242864132, -0.023043358698487282, 0.01761513017117977, -0.037438806146383286, -0.014781276695430279, -0.01545980479568243, 0.023336056619882584, 0.005534663330763578, 0.005348400678485632, -0.009832010604441166, -0.021180730313062668, 0.03389981389045715, -0.017628435045480728, -0.017295822501182556, -0.025850603356957436, -0.0018127353396266699, 0.01253281906247139, 0.013304479420185089, 0.011967378668487072, 0.004094453528523445, -0.016431031748652458, 0.019131841138005257, -0.0164177268743515, -0.014954234473407269, 0.008760999888181686, 0.01822713576257229, 0.007729902397841215, 0.01058371365070343, 0.004866113420575857, 0.013650395907461643, -0.007902860641479492, -0.006356215104460716, 0.023668669164180756, 0.007410594727844, 0.01507397461682558, -0.013018433004617691, 0.035389915108680725, 0.022591006010770798, -0.01680355705320835, 0.03006812371313572, -0.04457000643014908, 0.023509014397859573, 0.019770456477999687, 0.0024330567102879286, -0.008049209602177143, -0.0011516689555719495, 0.013543959707021713, -0.09962394088506699, -0.0011017771903425455, 0.0053051612339913845, 0.01490101683884859, -0.0005205377237871289, 0.019131841138005257, 0.019570888951420784, 0.007616814225912094, 0.004516870714724064, 0.013510698452591896, -0.030174558982253075, -0.007916165515780449, 0.016031896695494652, -0.0009296505013480783, 0.006628956645727158, -0.014887711964547634, -0.0037618414498865604, -0.005710947792977095, -0.015379978343844414, 0.006871763616800308, -0.0018459964776411653, -0.01792113296687603, -0.004353890661150217, -0.0005978700355626643, -0.0052519431337714195, -0.00968566071242094, -0.03036082163453102, 0.03318137302994728, 0.010271058417856693, 0.008694477379322052, 0.005534663330763578, -0.022976836189627647, 0.00767668429762125, -0.03536330536007881, -0.0021869237534701824, 0.01019788347184658, -0.014435360208153725, -0.0032795541919767857, -0.006176604423671961, -0.02168630063533783, -0.006372845731675625, 0.002278391970321536, 0.010138013400137424, -0.02027602680027485, -0.012818865478038788, -0.00658571720123291, -0.020049849525094032, 0.003442534012719989, -0.0037319064140319824, -0.029269853606820107, -0.040392398834228516, 0.00657573901116848, 0.013138173148036003, -0.0032163579016923904, 0.031584832817316055, -0.019650716334581375, 0.00606351625174284, 0.024653200060129166, -0.014275706373155117, -0.003302837023511529, -0.005770817864686251, -0.022205175831913948, 0.0075103784911334515, -0.000440710864495486, 0.016909992322325706, 0.001332110958173871, -0.0028704414144158363, -0.0015532979741692543, 0.003545643761754036, -0.002373186405748129, -0.0039015384390950203, 0.03113248199224472, -0.011621462181210518, 0.022697441279888153, -0.0024197520688176155, -0.022378133609890938, -0.01792113296687603, -0.013371001929044724, -0.010849802754819393, -0.024879375472664833, -0.006618978455662727, -0.012725734151899815, 0.013969703577458858, -0.001100114081054926, 0.015047365799546242, 0.00699150376021862, -0.009832010604441166, 0.005577902775257826, 0.023030053824186325, 0.007856295444071293, -0.026329563930630684, 0.006722087971866131, 0.008435039781033993, -0.019052013754844666, 0.0005808236892335117, 0.0031614769250154495, 0.004204215481877327, 0.006356215104460716, 0.013091607950627804, 0.011468460783362389, -0.018107395619153976, -0.014794580638408661, -0.057156041264534, 0.031371962279081345, 0.01210042368620634, 0.0003750199975911528, 0.017734870314598083, -0.017269214615225792, 0.019903501495718956, 0.03874264284968376, 0.011668028309941292, 0.014062834903597832, -0.02638278156518936, 0.021460125222802162, -0.006213191896677017, -0.016018593683838844, -0.019171753898262978, -0.04100440442562103, 0.025371642783284187, 0.0012797246454283595, 0.021712910383939743, 0.00885413121432066, -0.0034292296040803194, 0.015552936121821404, 0.024067802354693413, 0.01765504479408264, -0.02130047045648098, 0.0012406427413225174, -0.05577237531542778, 0.0021320427767932415, -0.006635609082877636, -0.021832650527358055, -0.007124548777937889, -0.021366992965340614, -0.008461648598313332, 0.02475963532924652, 0.00844834465533495, -0.010676844976842403, -0.00498252734541893, 0.012832170352339745, -0.026116693392395973, 0.009206699207425117, -0.045102182775735855, -0.016657207161188126, -0.0012980182655155659, 0.005105593707412481, -0.017801392823457718, 0.01745547726750374, -0.013716918416321278, 0.014847799204289913, 0.026156606152653694, 0.013849962502717972, 0.0036121660377830267, 0.004210867453366518, 0.008115732111036777, -0.005840666592121124, -0.009173438884317875, -0.01838679052889347, 0.005750861018896103, -0.026608958840370178, -0.012087119743227959, -0.017854610458016396, 0.008914001286029816, -0.013969703577458858, 0.008514867164194584, 0.009645747020840645, 0.002669211244210601, -0.010769976302981377, -0.007803076878190041, -0.009047046303749084, 0.03656071051955223, -0.035948701202869415, -0.031584832817316055, 0.000373980583390221, -0.0070846350863575935, 0.008867435157299042, 0.0218193456530571, -0.011601505801081657, -0.006944938097149134, -0.01851983554661274, -0.005611164029687643, 0.024626590311527252, 0.01766834780573845, 0.0020389114506542683, -0.012838822789490223, 0.010570408776402473, 0.02599695324897766, -0.0010360863525420427, -0.014581709168851376, -0.014728058129549026, 0.011608158238232136, 0.016071811318397522, -0.011495070531964302, -0.006565760355442762, 0.02330944687128067, 0.024733027443289757, 0.0019091927679255605, 0.01581902615725994, 0.004011300392448902, -0.023934757336974144, 0.013637091033160686, 0.0179610475897789, 0.011747854761779308, 0.008707781322300434, 0.01033092848956585, -0.0077432068064808846, 0.006342910695821047, -0.01813400536775589, -0.024174239486455917, -0.019956719130277634, 0.008807565085589886, 0.012220163829624653, -0.009758835658431053, 0.013903181068599224, 0.0024596655275672674, 0.03916838765144348, 0.011641419492661953, 0.012719081714749336, 0.0019474431173875928, -0.01022449228912592, -0.010264405980706215, 0.024786245077848434, 0.007876251824200153, 0.008022600784897804, 0.017947742715477943, -0.0070846350863575935, 0.009020436555147171, 0.02284379117190838, 0.012692472897469997, 0.0028105713427066803, -0.0007151157478801906, -0.03480451926589012, 0.01172124594449997, -0.019278191030025482, -0.025637730956077576, -0.006126712542027235, -0.004237476736307144, 0.000539662956725806, -0.0026359499897807837, 0.03711949661374092, -0.02622312866151333, 0.045660972595214844, 0.010769976302981377, 0.005202051252126694, 0.012632602825760841, -0.01903870888054371, 0.01564606837928295, 0.022058825939893723, -0.002926985500380397, -0.031105872243642807, -0.03868942707777023, 0.009718921966850758, -0.007723250426352024, 0.01408944372087717, -0.029562553390860558, -0.03613496571779251, -0.022351525723934174, 0.0043206294067204, 0.01962410658597946, -0.0124064264819026, -0.006918329279869795, 0.023801714181900024, 0.0036321228835731745, 0.003178107552230358, 0.01817391812801361, -0.011122544296085835, -0.002946942113339901, 0.00037356483517214656, -0.005421575158834457, -0.0032562713604420424, -0.014488577842712402, 0.012559428811073303, 0.006136691197752953, -0.02344249188899994, 0.005488097667694092, 0.012140337377786636, -0.001214033691212535, 0.002843832364305854, 0.0081090796738863, 0.026236433535814285, 0.000413478264817968, -0.008528171107172966, 0.019823674112558365, -0.019477756693959236, -0.017521999776363373, 0.007410594727844, -0.011049370281398296, -0.0037651676684617996, -0.00443704379722476, -0.0420953705906868]}, {"created_time": 1695691993.8774424, "accessed_time": 1695691993.8774424, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695691995.3224006, "accessed_time": 1695691995.3224006, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695692074.417726, "accessed_time": 1695692074.417726, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.008202211000025272, -0.0058207097463309765, 0.012632602825760841, 0.008661216124892235, 0.01672372967004776, 0.023801714181900024, -0.0002633871044963598, -0.003738558618351817, -0.02039576694369316, -0.026316259056329727, -0.005428227595984936, -0.023069966584444046, 0.009146829135715961, -0.009891880676150322, -0.019171753898262978, -0.002674200339242816, 0.027859579771757126, -0.0023382622748613358, 0.04331938549876213, -0.03381998464465141, -0.01503406185656786, 0.025690948590636253, 0.00261433026753366, 0.010517191141843796, -0.026914961636066437, 0.008182254619896412, 0.011648071929812431, -0.012898692861199379, -0.008528171107172966, -0.004669872112572193, 0.0023299469612538815, -0.004493587650358677, 0.010151317343115807, -0.0049359616823494434, -0.03062691166996956, -0.039115168154239655, 0.013397610746324062, -0.010284362360835075, 0.007191070821136236, -0.0046166544780135155, 0.01629798673093319, -0.011401938274502754, 0.002170293126255274, -0.02305666171014309, -0.014315620064735413, 0.0020023242104798555, -0.01937132142484188, -7.977490167832002e-05, -0.01024444866925478, 0.006472629029303789, 0.014422055333852768, -0.008248777128756046, -0.021952390670776367, -0.006382823921740055, -0.025158770382404327, -0.007071330677717924, 0.002685841638594866, 0.009186742827296257, 0.008461648598313332, 0.0020522158592939377, -0.0004960076184943318, 0.009060350246727467, -2.3932470867293887e-05, -0.0008897370425984263, -0.005285204388201237, 0.003244629828259349, -0.002291696611791849, -0.006718762218952179, 0.003788450499996543, 0.004526848904788494, 0.03195735812187195, 0.019610801711678505, -0.005414923187345266, -0.016484249383211136, 0.014422055333852768, 0.006010298617184162, -0.01847992092370987, -0.007463812828063965, -0.008415083400905132, 0.0014318946050480008, 0.0033710224088281393, -0.028631240129470825, -0.0032546082511544228, -0.0005163801251910627, 0.016537467017769814, 0.022431351244449615, -0.017122864723205566, 0.019171753898262978, 0.013184739276766777, -0.03001490607857704, 0.02523859776556492, 0.026209823787212372, 0.007823034189641476, 0.007803076878190041, -0.009885228238999844, 0.0019940088968724012, 0.010151317343115807, 0.0030384105630218983, 0.01088306400924921, -0.02130047045648098, -0.0161250289529562, 0.02321631647646427, -0.003678688546642661, -0.012925301678478718, -0.034405384212732315, 0.0066522397100925446, 0.019278191030025482, -0.01749539002776146, 0.02120734006166458, -0.012373166158795357, -0.027380619198083878, 0.02070176973938942, -0.010217839851975441, -0.03523026034235954, -0.01821383275091648, -0.018466617912054062, 0.03062691166996956, 0.0007749859360046685, -0.0247197225689888, -0.013251261785626411, 0.020382462069392204, 0.009971707127988338, 0.018333572894334793, -0.004417086951434612, 0.019224973395466805, -0.007071330677717924, 0.006412758957594633, 0.013903181068599224, -0.02599695324897766, -0.0012913660611957312, 0.010417407378554344, 0.011987335979938507, 0.023801714181900024, 0.0032512820325791836, -0.021539952605962753, 0.021619778126478195, -0.026702089235186577, 0.007051373831927776, -0.0012614309089258313, -0.022138653323054314, 0.005029093008488417, 0.022005608305335045, -0.023189706727862358, -0.003981365356594324, 0.019304798915982246, 0.03467147424817085, 0.011807725764811039, 0.012858779169619083, -0.01156824454665184, 0.0014293999411165714, 0.01774817518889904, -0.0036287966649979353, 0.016404422000050545, 0.003129878779873252, 0.028764283284544945, 0.0016963210655376315, 0.001688837306573987, 0.01383665855973959, -0.03908855840563774, 0.011681333184242249, 0.002862126100808382, -0.0008494078647345304, 0.023615451529622078, -0.011860943399369717, -0.016923297196626663, 0.026329563930630684, 0.012506210245192051, 0.021233947947621346, -0.015978679060935974, 0.0011649734806269407, 0.009273221716284752, 0.02164638787508011, -0.040312573313713074, 0.0031731182243674994, 0.005338422488421202, 0.0062231700867414474, -0.032862063497304916, -0.002707461593672633, 0.01398300752043724, -0.025584513321518898, -0.03645427152514458, -0.002561112167313695, 0.0049359616823494434, 0.015539632178843021, -0.008182254619896412, -0.01608511619269848, 0.012852126732468605, 0.007064678706228733, 0.008055862039327621, 0.012978519313037395, 0.007104591932147741, 0.0434524305164814, -0.010364189743995667, -0.011342068202793598, -0.6599021553993225, -0.039407867938280106, 0.020302634686231613, 0.011707942001521587, 0.028578020632267, 0.0011217339197173715, 0.007051373831927776, 0.005551293957978487, -0.002644265303388238, -0.003808407112956047, -0.014741363003849983, 0.0105238426476717, -0.004007974173873663, 0.012373166158795357, -0.0027423857245594263, -0.014422055333852768, -0.002025607042014599, -0.027806362137198448, 0.011834334582090378, 0.009080306626856327, -0.00862130243331194, 0.02775314450263977, -0.01844000816345215, -0.010131360962986946, -0.006589043419808149, -0.013118216767907143, -0.004932635463774204, -0.045660972595214844, -0.009958402253687382, 0.04536827281117439, -0.04233485460281372, 0.027832970023155212, -0.013783440925180912, -0.017122864723205566, 0.055027324706315994, -0.00876765139400959, -0.0036953191738575697, 0.009679008275270462, -0.0010809889063239098, 0.018107395619153976, -0.033766768872737885, 0.005438205786049366, 0.030813174322247505, 0.004280716180801392, 0.0021719562355428934, -0.0007932795560918748, 0.028977155685424805, -0.005381661932915449, -0.0035290131345391273, -0.004759677220135927, 0.027699925005435944, 0.004812895320355892, -0.0021536624990403652, 0.006918329279869795, 0.026662176474928856, -0.005454836413264275, 0.028764283284544945, -0.028365150094032288, -0.00577414408326149, -0.0046765245497226715, -0.005185420624911785, 0.001960747642442584, -0.024826157838106155, 0.0011125870514661074, -0.02103438228368759, 0.00767668429762125, -0.03318137302994728, -0.01126889418810606, -0.006259757559746504, -0.00511224614456296, 0.013590525835752487, 0.015100584365427494, -0.012260077521204948, 0.007896208204329014, -0.004027931019663811, 0.0312921367585659, 0.009466136805713177, 0.0001451019779779017, -0.0004743878380395472, 0.011075979098677635, 0.017096254974603653, -0.008262082003057003, -0.020475594326853752, 0.01131545938551426, 0.02595703862607479, -0.02215195819735527, -0.015406587161123753, 0.014634926803410053, 0.01826705038547516, -0.025039030238986015, 0.026023561134934425, 0.006213191896677017, -0.01144185196608305, 0.002639275975525379, 0.001361214555799961, 0.014488577842712402, -0.018799228593707085, 0.012479601427912712, 0.027992624789476395, -0.028365150094032288, 0.010809889063239098, -0.012186902575194836, 0.021154122427105904, 0.0058506447821855545, 0.003745210822671652, -0.000816978164948523, -0.03203718736767769, 0.02574416808784008, 0.013770136050879955, -0.01591215655207634, 0.026569044217467308, 0.03467147424817085, -0.009592529386281967, -0.001104271737858653, -0.01651085913181305, -0.025331728160381317, 0.04409104585647583, 0.03632122650742531, 0.025158770382404327, -0.005148833617568016, 0.01954427920281887, -0.004776307847350836, 0.02599695324897766, 0.004490261897444725, 0.015193715691566467, 0.007576900999993086, 0.0007866273517720401, -0.02425406500697136, -0.011348720639944077, -0.0024829483591020107, -0.011515026912093163, -0.004613328259438276, 0.018892360851168633, -0.026289651170372963, 0.009266570210456848, -0.009698965586721897, -0.007862946949899197, -0.019211668521165848, 0.018373485654592514, -0.009632443077862263, -0.03366033360362053, -0.010962890461087227, 0.012073814868927002, 0.024227457121014595, -0.0036620579194277525, -0.016484249383211136, 0.007550292182713747, 0.0029336377047002316, -0.04206876456737518, 0.0007650075713172555, 0.007350724656134844, -0.005128876771777868, -0.011455156840384007, 0.02300344407558441, -0.006898372434079647, 0.006482607685029507, -0.019304798915982246, -0.009878575801849365, -0.014568405225872993, 0.0041310410015285015, 0.014940930530428886, 0.011415243148803711, -0.02950933575630188, 0.006472629029303789, 0.0057974266819655895, 0.001564939389936626, -0.0006182425422593951, 0.020369157195091248, 0.0031032697297632694, -0.024573372676968575, -0.01503406185656786, -0.014874408021569252, -0.0162181593477726, -0.008534823544323444, 0.011155805550515652, -0.012838822789490223, 0.0040478878654539585, -0.005724252201616764, 0.0069715469144284725, -0.0008622965542599559, 0.003931473474949598, 0.006432715803384781, -0.007317463401705027, -0.014062834903597832, 0.016883384436368942, -0.0022850444074720144, 0.0047663296572864056, 0.03839672729372978, 0.011175762861967087, 0.009452832862734795, 0.005817383527755737, 0.007603509817272425, -0.008521518670022488, 0.014342228882014751, -0.01208046730607748, -0.014794580638408661, 0.020289331674575806, 0.020715074613690376, -0.005920493043959141, 0.0129386056214571, -0.004493587650358677, -0.0021137490402907133, 0.028152277693152428, -0.014076138846576214, -0.00241642608307302, -0.012226816266775131, 0.01757521741092205, -0.018839143216609955, 0.022378133609890938, 0.00442706560716033, 0.005531337112188339, -0.014328924007713795, -0.014595014043152332, -0.008681172505021095, 0.02215195819735527, 0.004057866055518389, -0.0051920730620622635, 0.01408944372087717, -0.02317640371620655, 0.007277550175786018, -0.0014202531892806292, -0.003108259057626128, -0.01210707612335682, -0.028258714824914932, -0.0035389915574342012, -0.0004084890824742615, -0.004486935678869486, 0.01408944372087717, 0.0045867194421589375, 0.007031417451798916, -0.02010306902229786, -0.011641419492661953, 0.031717877835035324, 0.007264245767146349, 0.0018509856890887022, 0.0012763984268531203, 0.024187542498111725, -0.027234269306063652, 0.034405384212732315, 0.03217023238539696, 0.006356215104460716, -0.010277709923684597, 0.01045732107013464, -0.015326759777963161, 0.026249738410115242, 0.020049849525094032, 0.03884907811880112, -0.019477756693959236, -0.01098950020968914, 0.009319787845015526, -0.015685981139540672, -0.00820886343717575, -0.002213532803580165, -0.002200228162109852, 0.006678848527371883, -0.024107716977596283, -0.014328924007713795, 0.013384305872023106, 0.01569928601384163, 0.03105265460908413, 0.018360180780291557, 0.024027889594435692, 0.014022921212017536, 0.004027931019663811, -0.001554960967041552, 0.007530335336923599, 0.020422374829649925, -0.024134324863553047, -0.014501882717013359, -0.01492762565612793, 0.012433036230504513, -0.006392802111804485, 0.0002739891060627997, -0.011774464510381222, -0.016138333827257156, 0.016524164006114006, -0.003040073439478874, -0.013863267377018929, -0.020715074613690376, 0.007011460606008768, -0.008760999888181686, -0.027234269306063652, 0.0031764444429427385, 0.0064859334379434586, 0.004167628008872271, -0.014209183864295483, 0.007091287523508072, 2.8272017516428605e-05, -0.0077964249067008495, 0.013124869205057621, 0.01565937139093876, -0.002155325608327985, -0.010916325263679028, 0.01962410658597946, 0.0021021077409386635, -0.0044503482058644295, 0.00456676259636879, -0.024493547156453133, 0.011461809277534485, -0.018825838342308998, 0.004530175123363733, -0.015765808522701263, -0.005318465642631054, -0.003931473474949598, -0.0005641930620186031, 0.006924981251358986, -0.019012100994586945, -0.006243126932531595, -0.017122864723205566, -0.004490261897444725, -0.0013254587538540363, -0.006831849925220013, -0.020289331674575806, -0.005631120875477791, 0.003050051862373948, 0.008973871357738972, -0.0013795081758871675, -0.023083271458745003, 0.01454179547727108, 0.0001920834183692932, -0.028631240129470825, -0.007756511215120554, -0.034751299768686295, 0.007211027666926384, 0.1261264681816101, -0.009346396662294865, 0.012093771249055862, 0.02390814945101738, 0.014209183864295483, -0.018706098198890686, -0.00782968569546938, -0.025331728160381317, 0.005664382129907608, 0.013304479420185089, -0.0035290131345391273, 0.006692152936011553, 0.019012100994586945, 0.0005804079119116068, -0.008115732111036777, -0.019304798915982246, -0.015499718487262726, -0.008089123293757439, 0.0024995789863169193, -0.015087279491126537, 0.012699125334620476, -0.005667708348482847, -0.0071378531865775585, 0.026888351887464523, -0.000678528449498117, 0.020422374829649925, 0.012712430208921432, 0.021539952605962753, 0.027354009449481964, -0.019983327016234398, 0.01306499820202589, 0.025504685938358307, -0.0021137490402907133, -0.00882752239704132, -0.028631240129470825, 0.0030433996580541134, 0.02518538013100624, 0.013510698452591896, 0.0007749859360046685, -0.01259269006550312, 0.010251101106405258, 0.023043358698487282, 0.02143351547420025, -0.009226656518876553, 0.02126055769622326, -0.009459484368562698, 0.007763163652271032, 0.022351525723934174, -0.016111724078655243, 0.0025078942999243736, 0.022976836189627647, 0.015725893899798393, 0.006399454548954964, -0.02485276758670807, -0.0037817982956767082, 0.043000075966119766, 0.0027057984843850136, -0.01753530278801918, -0.005321791861206293, 0.017428867518901825, 0.02334936149418354, -0.02809906005859375, -0.015672676265239716, -0.005145507398992777, -0.011747854761779308, -0.012931954115629196, -0.013929789885878563, -0.010177926160395145, -0.0064194113947451115, 0.0026076778303831816, -0.01847992092370987, -0.005338422488421202, -0.02775314450263977, 0.006159973796457052, 0.028152277693152428, 0.011980683542788029, 0.02788618765771389, -0.011215675622224808, -0.0027207660023123026, 0.003178107552230358, -0.01633790135383606, -0.009778792038559914, 0.0013745189644396305, -0.008508214727044106, -0.03028099425137043, 0.0037319064140319824, 0.012911996804177761, 0.009486094117164612, -0.00550805451348424, 0.0027274182066321373, 0.01569928601384163, -0.005681012757122517, 0.02980203367769718, 0.0017362345242872834, 0.005401618778705597, 0.007803076878190041, -0.010976195335388184, 0.029695598408579826, 0.0028055820148438215, 0.01946445368230343, 0.006093451287597418, -0.024599982425570488, -0.014235792681574821, -0.012978519313037395, 0.015060670673847198, -0.003941452130675316, 0.021140817552804947, 0.01962410658597946, -0.0005908020539209247, 0.01287208404392004, 0.01869279332458973, -0.01877262070775032, 0.010823193937540054, 0.014182575047016144, -0.0027274182066321373, 0.016737034544348717, -0.00027752312598749995, 0.022976836189627647, 0.0020222808234393597, -0.022990141063928604, 0.018360180780291557, -0.027646707370877266, 0.03480451926589012, -0.0013695298694074154, -0.007603509817272425, 0.012625950388610363, -0.01655077189207077, -0.017588522285223007, -0.009625790640711784, -0.020049849525094032, -0.01963741146028042, -0.0039647347293794155, -0.015326759777963161, -0.011914161033928394, -0.019052013754844666, -0.018040873110294342, -0.0038749296218156815, 0.012526167556643486, -0.007497074082493782, -0.02425406500697136, -0.036933235824108124, 0.00047854549484327435, 0.01744217239320278, -0.02698148414492607, -0.02052881196141243, -0.029695598408579826, -0.006705457344651222, -0.009293179027736187, 0.025584513321518898, 0.030600301921367645, -0.012472948990762234, 0.009306482970714569, -0.006542477756738663, 0.0077365548349916935, -2.2308389816316776e-05, -0.023282838985323906, -0.009392962791025639, 0.01919836364686489, 0.014688145369291306, 0.012865431606769562, 0.0019441170152276754, 0.010291014797985554, 0.014076138846576214, 0.004816221538931131, 0.010510538704693317, -0.0036188182421028614, 0.007290854584425688, -0.00955926813185215, -0.026369478553533554, 0.0006161637138575315, 0.004294020589441061, 0.021140817552804947, -0.011874247342348099, -0.012492906302213669, -0.03374015912413597, 0.015606153756380081, -0.006742044817656279, 0.008814217522740364, -0.012965215370059013, -0.006020276807248592, -0.013770136050879955, 0.0024779592640697956, -0.00356560037471354, 0.00032949374872259796, 0.02497250773012638, 0.0007238468388095498, 0.00996505469083786, -0.008707781322300434, 0.03169126808643341, -0.028125669807195663, 9.952374239219353e-05, -0.011787768453359604, 0.009080306626856327, -0.01591215655207634, 0.002273402875289321, -0.0012439688434824347, 0.009313135407865047, -0.015832331031560898, -0.008860782720148563, 0.0016655544750392437, 0.019185058772563934, -0.0064260633662343025, 0.02386823669075966, -0.006293018814176321, 0.004214193671941757, 0.019344713538885117, 0.012778952717781067, -0.016909992322325706, 0.007689989171922207, -0.032063793390989304, -0.018666183575987816, -0.0017096255905926228, -0.0029685618355870247, -0.011594853363931179, -0.0227905735373497, -0.01172124594449997, -0.017761480063199997, 0.014688145369291306, 0.008115732111036777, 0.004061192274093628, -0.0002997665433213115, 0.0005932966014370322, 0.027859579771757126, 0.02027602680027485, 0.00441376119852066, -0.000180753821041435, -0.012213512323796749, -0.017043037340044975, 0.03964734822511673, -0.011002804152667522, -0.01490101683884859, 0.004496913868933916, 0.026409391313791275, -0.013218000531196594, -0.03546974062919617, 0.019743846729397774, 0.03991343826055527, -0.01979706436395645, -0.02535833790898323, -0.015845634043216705, 0.016790252178907394, 0.02240474335849285, -0.01629798673093319, -0.0024580026511102915, 0.0005820709629915655, 0.020675159990787506, -0.006369519513100386, -0.015938766300678253, -0.01507397461682558, 0.030653519555926323, -0.025970343500375748, 0.028072450309991837, -0.001604021294042468, 0.027699925005435944, -0.021060990169644356, 0.0028787567280232906, -0.01569928601384163, -0.022644223645329475, -0.01736234501004219, 0.013756831176578999, 0.002531177131459117, 0.02356223203241825, -0.012692472897469997, 0.016391118988394737, 0.0024330567102879286, 5.1970622735098004e-05, 0.0018160614417865872, -0.012699125334620476, -0.004150997381657362, 0.02433389239013195, -0.01859966106712818, -1.3421413314063102e-05, -0.022351525723934174, 0.010976195335388184, 0.012645907700061798, -0.009499398060142994, -0.012812213972210884, 0.0008714433643035591, -0.0021569887176156044, -0.020036546513438225, 0.022990141063928604, -0.0011167447082698345, 0.010763323865830898, 0.006439367774873972, -0.015526327304542065, -0.010530495084822178, -0.009565920569002628, -0.0018476595869287848, -5.219799277256243e-06, -0.027087919414043427, -0.016737034544348717, -0.027859579771757126, -0.01929149404168129, 0.019384626299142838, -0.0011300492333248258, -0.01962410658597946, 0.017561912536621094, 0.0118276821449399, -0.02690165676176548, 0.007776468060910702, -0.009239960461854935, 0.0015657709445804358, -0.018333572894334793, -0.0021619778126478195, -0.006778632290661335, -0.02557120844721794, 0.018160613253712654, -0.017694957554340363, -0.032143622636795044, -0.018825838342308998, 0.024786245077848434, 0.0081090796738863, -0.01291864924132824, -0.017029734328389168, 0.00713120074942708, -0.017694957554340363, 0.009392962791025639, -0.029323073104023933, -0.026076778769493103, 0.027992624789476395, -0.0019341387087479234, 0.005531337112188339, 0.01821383275091648, -0.03648088127374649, 0.015486413612961769, 0.020728379487991333, 0.003948104102164507, 0.021619778126478195, -0.022125348448753357, -0.017801392823457718, -0.02062194235622883, -0.010517191141843796, -0.00818890705704689, -0.02062194235622883, 0.011282198131084442, 0.010304318740963936, -0.017561912536621094, 0.012027249671518803, 0.004177606664597988, -0.0015350042376667261, 0.012812213972210884, 0.02489268034696579, 0.0027124506887048483, 0.01714947447180748, 0.0014676504069939256, 0.0015807384625077248, -0.02052881196141243, -0.00699150376021862, -0.028391757979989052, -0.007869599387049675, 0.007523682899773121, 0.022657528519630432, -0.01131545938551426, -0.034538429230451584, -0.030733346939086914, -0.016776949167251587, -0.03262258321046829, -0.01774817518889904, -0.011461809277534485, 0.004097779747098684, -0.007257593329995871, -0.025544600561261177, 0.00953931175172329, 0.01724260486662388, -0.018852446228265762, 0.020076459273695946, -0.014940930530428886, -0.021140817552804947, 0.0039946697652339935, -0.03057369403541088, 0.022165263071656227, -0.015300150960683823, -0.026755306869745255, -0.022258393466472626, -0.018666183575987816, -0.021313775330781937, -0.0020522158592939377, 0.0019208341836929321, -0.010849802754819393, 0.005088963080197573, -0.01838679052889347, 0.007224332075566053, 0.00913352519273758, 0.019903501495718956, 0.016191551461815834, -0.011002804152667522, -0.013424219563603401, 0.006625630892813206, 0.004360543098300695, -0.007803076878190041, -0.010111404582858086, 0.016324596479535103, 0.005720925983041525, 0.008800912648439407, -0.007490421645343304, -0.032223448157310486, -0.005834014154970646, -0.00013356449198909104, 0.036374446004629135, -0.013916485011577606, -0.024320587515830994, 0.020981164649128914, 0.006249778904020786, -0.014129357412457466, -0.013051694259047508, 0.012200207449495792, -0.0026974831707775593, 0.006276388186961412, 0.025810690596699715, -0.012852126732468605, 0.01340426318347454, -0.025970343500375748, -0.0051089199259877205, -0.030041513964533806, -0.013677004724740982, -0.005414923187345266, -0.013716918416321278, -0.013996312394738197, 0.0086412588134408, 0.010404102504253387, -0.012033901177346706, 0.0020372483413666487, -0.020954554900527, -0.011022761464118958, -0.012033901177346706, -0.015552936121821404, 0.00207882490940392, -0.018852446228265762, -0.02189917303621769, 0.018253745511174202, -0.011095935478806496, -0.012506210245192051, 0.022524483501911163, 0.01259269006550312, -0.023030053824186325, 0.019131841138005257, 0.2499113380908966, -0.018160613253712654, 0.021792737767100334, 0.02539825066924095, 0.00022576037736143917, 0.019012100994586945, 0.02895054593682289, 0.008860782720148563, 0.008674520067870617, 0.018200527876615524, -0.03254275768995285, 0.0014817863702774048, 0.018280355259776115, -0.004097779747098684, 0.005661055911332369, -0.022058825939893723, -0.01608511619269848, -0.02342918887734413, -0.009619138203561306, -0.006898372434079647, 0.012067162431776524, -0.014954234473407269, -0.0035090562887489796, 0.004649915266782045, 0.028365150094032288, 0.01997002400457859, -0.039886828511953354, 0.002887072041630745, 0.008867435157299042, -0.009060350246727467, -0.00971226952970028, 0.0031365309841930866, -0.001372024416923523, -0.01732243224978447, 0.027087919414043427, -0.014501882717013359, 0.022338220849633217, 0.005105593707412481, 0.025717558339238167, 0.0038250377401709557, 0.016138333827257156, 0.0029136808589100838, 0.011608158238232136, -0.00872108619660139, -0.004440370015799999, 0.004809569101780653, -0.022524483501911163, -0.013770136050879955, 0.0020804880186915398, 0.02048889733850956, -0.015220324508845806, -0.011448504403233528, 0.026954874396324158, 0.00844834465533495, 0.007876251824200153, 0.0002084021980408579, 0.01813400536775589, -0.010570408776402473, -0.02284379117190838, -0.010557103902101517, -0.00870112981647253, 0.042148590087890625, -0.0026226455811411142, 0.010836497880518436, -0.03477790951728821, 0.018466617912054062, -0.008049209602177143, 0.0007970214355736971, 0.017295822501182556, -0.004290694370865822, 0.008607998490333557, 0.00862130243331194, -0.0057608396746218204, 0.004317303653806448, -0.036374446004629135, -0.02518538013100624, 0.025478078052401543, 0.0029519314412027597, 0.04507557675242424, 0.002926985500380397, -0.010949586518108845, 0.026249738410115242, -0.00727089773863554, 0.0038150593172758818, -0.0049658967182040215, -0.03738558664917946, 0.0026825156528502703, 0.021712910383939743, 0.019238276407122612, -0.02788618765771389, -0.0034259033855050802, -0.011481765657663345, -0.0021021077409386635, -0.02062194235622883, -0.006818545516580343, 0.010623626410961151, -0.009705618023872375, 0.024067802354693413, -0.0227905735373497, 0.01045732107013464, -0.006475955247879028, -0.027194354683160782, 0.028764283284544945, 0.02680852636694908, -0.03557617589831352, 0.02630295604467392, 0.013903181068599224, 0.01577911153435707, -0.005607837811112404, -0.026276346296072006, 0.014568405225872993, -0.005301835015416145, 0.02801923267543316, 0.017681652680039406, 0.010217839851975441, 0.008920653723180294, -0.0075635965913534164, -0.02732739970088005, 0.027274182066321373, 0.001158321276307106, -0.0001540409284643829, -0.024866072461009026, -0.03267580270767212, 0.014621622860431671, -0.010816541500389576, -0.021699605509638786, -0.039753783494234085, 0.0024230782873928547, -0.015765808522701263, -0.021406907588243484, 0.03751863166689873, 0.011701289564371109, 0.01212703250348568, 0.014461969025433064, -0.0038050811272114515, 0.0063362582586705685, 0.018360180780291557, -0.00356560037471354, 0.013956398703157902, 0.006838502362370491, 0.015885548666119576, -0.0081090796738863, -0.012246773578226566, -0.02754027210175991, 0.01373022235929966, -0.023761799558997154, 0.010942934080958366, 0.0012065499322488904, 0.007849643006920815, -0.015592849813401699, -0.016138333827257156, 0.003327782964333892, -0.019358016550540924, -0.007237636484205723, 0.031371962279081345, -0.024240761995315552, -0.037438806146383286, 0.003685340750962496, 0.0058207097463309765, 0.01633790135383606, -0.02334936149418354, 0.0020039870869368315, 0.04079153388738632, -0.020595334470272064, 0.011029412969946861, -0.009672356769442558, -0.17093594372272491, 0.016351204365491867, 0.03246292844414711, -0.01774817518889904, 0.01625807397067547, 0.020675159990787506, -0.010191231034696102, -0.008953914977610111, -0.01332443580031395, 0.01736234501004219, 0.027859579771757126, 0.029988296329975128, -0.017681652680039406, -0.026542436331510544, -0.001554129528813064, 0.036800190806388855, -0.0002359466307098046, -0.004506892524659634, 0.038636207580566406, 0.0322500579059124, 0.012526167556643486, -0.01877262070775032, 0.016005288809537888, -0.008760999888181686, 0.02155325561761856, 0.022657528519630432, -0.001609010505490005, 0.002664221916347742, -0.007789772469550371, -0.0027174397837370634, -0.00699150376021862, 0.007483769673854113, 0.01167468074709177, -0.011581549420952797, 0.024879375472664833, 0.010590365156531334, -0.005328443832695484, -0.017907829955220222, -0.005977037362754345, 0.023708581924438477, 0.0021470102947205305, 0.001144185196608305, -0.001124228467233479, 0.006924981251358986, -0.053111482411623, 9.120844333665445e-05, -0.00018948488286696374, 0.0019790413789451122, -0.03868942707777023, -0.005401618778705597, 0.010676844976842403, -0.0033893161453306675, -0.005611164029687643, -0.011089283041656017, 0.015379978343844414, 0.020688464865088463, -0.013703613542020321, 0.04089796915650368, 0.0013587198918685317, 0.006402780767530203, 0.00022181060921866447, -0.021021077409386635, -0.006096777506172657, 0.009067002683877945, 0.017043037340044975, -0.00846830103546381, -0.02296353131532669, -0.007969383150339127, -0.0070779831148684025, 0.007324115838855505, -0.0006648082053288817, -0.03126552700996399, 0.027593489736318588, 0.0014767971588298678, 0.009745530784130096, -0.006126712542027235, -0.00483285216614604, 0.0029602465219795704, -0.0018642900977283716, -0.01770826242864132, -0.023043358698487282, 0.01761513017117977, -0.037438806146383286, -0.014781276695430279, -0.01545980479568243, 0.023336056619882584, 0.005534663330763578, 0.005348400678485632, -0.009832010604441166, -0.021180730313062668, 0.03389981389045715, -0.017628435045480728, -0.017295822501182556, -0.025850603356957436, -0.0018127353396266699, 0.01253281906247139, 0.013304479420185089, 0.011967378668487072, 0.004094453528523445, -0.016431031748652458, 0.019131841138005257, -0.0164177268743515, -0.014954234473407269, 0.008760999888181686, 0.01822713576257229, 0.007729902397841215, 0.01058371365070343, 0.004866113420575857, 0.013650395907461643, -0.007902860641479492, -0.006356215104460716, 0.023668669164180756, 0.007410594727844, 0.01507397461682558, -0.013018433004617691, 0.035389915108680725, 0.022591006010770798, -0.01680355705320835, 0.03006812371313572, -0.04457000643014908, 0.023509014397859573, 0.019770456477999687, 0.0024330567102879286, -0.008049209602177143, -0.0011516689555719495, 0.013543959707021713, -0.09962394088506699, -0.0011017771903425455, 0.0053051612339913845, 0.01490101683884859, -0.0005205377237871289, 0.019131841138005257, 0.019570888951420784, 0.007616814225912094, 0.004516870714724064, 0.013510698452591896, -0.030174558982253075, -0.007916165515780449, 0.016031896695494652, -0.0009296505013480783, 0.006628956645727158, -0.014887711964547634, -0.0037618414498865604, -0.005710947792977095, -0.015379978343844414, 0.006871763616800308, -0.0018459964776411653, -0.01792113296687603, -0.004353890661150217, -0.0005978700355626643, -0.0052519431337714195, -0.00968566071242094, -0.03036082163453102, 0.03318137302994728, 0.010271058417856693, 0.008694477379322052, 0.005534663330763578, -0.022976836189627647, 0.00767668429762125, -0.03536330536007881, -0.0021869237534701824, 0.01019788347184658, -0.014435360208153725, -0.0032795541919767857, -0.006176604423671961, -0.02168630063533783, -0.006372845731675625, 0.002278391970321536, 0.010138013400137424, -0.02027602680027485, -0.012818865478038788, -0.00658571720123291, -0.020049849525094032, 0.003442534012719989, -0.0037319064140319824, -0.029269853606820107, -0.040392398834228516, 0.00657573901116848, 0.013138173148036003, -0.0032163579016923904, 0.031584832817316055, -0.019650716334581375, 0.00606351625174284, 0.024653200060129166, -0.014275706373155117, -0.003302837023511529, -0.005770817864686251, -0.022205175831913948, 0.0075103784911334515, -0.000440710864495486, 0.016909992322325706, 0.001332110958173871, -0.0028704414144158363, -0.0015532979741692543, 0.003545643761754036, -0.002373186405748129, -0.0039015384390950203, 0.03113248199224472, -0.011621462181210518, 0.022697441279888153, -0.0024197520688176155, -0.022378133609890938, -0.01792113296687603, -0.013371001929044724, -0.010849802754819393, -0.024879375472664833, -0.006618978455662727, -0.012725734151899815, 0.013969703577458858, -0.001100114081054926, 0.015047365799546242, 0.00699150376021862, -0.009832010604441166, 0.005577902775257826, 0.023030053824186325, 0.007856295444071293, -0.026329563930630684, 0.006722087971866131, 0.008435039781033993, -0.019052013754844666, 0.0005808236892335117, 0.0031614769250154495, 0.004204215481877327, 0.006356215104460716, 0.013091607950627804, 0.011468460783362389, -0.018107395619153976, -0.014794580638408661, -0.057156041264534, 0.031371962279081345, 0.01210042368620634, 0.0003750199975911528, 0.017734870314598083, -0.017269214615225792, 0.019903501495718956, 0.03874264284968376, 0.011668028309941292, 0.014062834903597832, -0.02638278156518936, 0.021460125222802162, -0.006213191896677017, -0.016018593683838844, -0.019171753898262978, -0.04100440442562103, 0.025371642783284187, 0.0012797246454283595, 0.021712910383939743, 0.00885413121432066, -0.0034292296040803194, 0.015552936121821404, 0.024067802354693413, 0.01765504479408264, -0.02130047045648098, 0.0012406427413225174, -0.05577237531542778, 0.0021320427767932415, -0.006635609082877636, -0.021832650527358055, -0.007124548777937889, -0.021366992965340614, -0.008461648598313332, 0.02475963532924652, 0.00844834465533495, -0.010676844976842403, -0.00498252734541893, 0.012832170352339745, -0.026116693392395973, 0.009206699207425117, -0.045102182775735855, -0.016657207161188126, -0.0012980182655155659, 0.005105593707412481, -0.017801392823457718, 0.01745547726750374, -0.013716918416321278, 0.014847799204289913, 0.026156606152653694, 0.013849962502717972, 0.0036121660377830267, 0.004210867453366518, 0.008115732111036777, -0.005840666592121124, -0.009173438884317875, -0.01838679052889347, 0.005750861018896103, -0.026608958840370178, -0.012087119743227959, -0.017854610458016396, 0.008914001286029816, -0.013969703577458858, 0.008514867164194584, 0.009645747020840645, 0.002669211244210601, -0.010769976302981377, -0.007803076878190041, -0.009047046303749084, 0.03656071051955223, -0.035948701202869415, -0.031584832817316055, 0.000373980583390221, -0.0070846350863575935, 0.008867435157299042, 0.0218193456530571, -0.011601505801081657, -0.006944938097149134, -0.01851983554661274, -0.005611164029687643, 0.024626590311527252, 0.01766834780573845, 0.0020389114506542683, -0.012838822789490223, 0.010570408776402473, 0.02599695324897766, -0.0010360863525420427, -0.014581709168851376, -0.014728058129549026, 0.011608158238232136, 0.016071811318397522, -0.011495070531964302, -0.006565760355442762, 0.02330944687128067, 0.024733027443289757, 0.0019091927679255605, 0.01581902615725994, 0.004011300392448902, -0.023934757336974144, 0.013637091033160686, 0.0179610475897789, 0.011747854761779308, 0.008707781322300434, 0.01033092848956585, -0.0077432068064808846, 0.006342910695821047, -0.01813400536775589, -0.024174239486455917, -0.019956719130277634, 0.008807565085589886, 0.012220163829624653, -0.009758835658431053, 0.013903181068599224, 0.0024596655275672674, 0.03916838765144348, 0.011641419492661953, 0.012719081714749336, 0.0019474431173875928, -0.01022449228912592, -0.010264405980706215, 0.024786245077848434, 0.007876251824200153, 0.008022600784897804, 0.017947742715477943, -0.0070846350863575935, 0.009020436555147171, 0.02284379117190838, 0.012692472897469997, 0.0028105713427066803, -0.0007151157478801906, -0.03480451926589012, 0.01172124594449997, -0.019278191030025482, -0.025637730956077576, -0.006126712542027235, -0.004237476736307144, 0.000539662956725806, -0.0026359499897807837, 0.03711949661374092, -0.02622312866151333, 0.045660972595214844, 0.010769976302981377, 0.005202051252126694, 0.012632602825760841, -0.01903870888054371, 0.01564606837928295, 0.022058825939893723, -0.002926985500380397, -0.031105872243642807, -0.03868942707777023, 0.009718921966850758, -0.007723250426352024, 0.01408944372087717, -0.029562553390860558, -0.03613496571779251, -0.022351525723934174, 0.0043206294067204, 0.01962410658597946, -0.0124064264819026, -0.006918329279869795, 0.023801714181900024, 0.0036321228835731745, 0.003178107552230358, 0.01817391812801361, -0.011122544296085835, -0.002946942113339901, 0.00037356483517214656, -0.005421575158834457, -0.0032562713604420424, -0.014488577842712402, 0.012559428811073303, 0.006136691197752953, -0.02344249188899994, 0.005488097667694092, 0.012140337377786636, -0.001214033691212535, 0.002843832364305854, 0.0081090796738863, 0.026236433535814285, 0.000413478264817968, -0.008528171107172966, 0.019823674112558365, -0.019477756693959236, -0.017521999776363373, 0.007410594727844, -0.011049370281398296, -0.0037651676684617996, -0.00443704379722476, -0.0420953705906868]}, {"created_time": 1695692076.5042686, "accessed_time": 1695692076.5042686, "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": 1695692077.5878398, "accessed_time": 1695692077.5878398, "description": "Helped Mrs. Moore carry groceries into her house.", "poignancy": 3, "embedding_key": [-0.009600561112165451, -0.009350168518722057, 0.0003185498353559524, -0.007083461154252291, -0.0021596320439130068, 0.021797291934490204, 0.0147863132879138, 0.0005885038408450782, 0.004536709748208523, -0.05047377943992615, 0.005116565153002739, 0.014825848862528801, -0.003057419555261731, -0.01768559031188488, -0.005478974897414446, 0.01263821218162775, 0.024367105215787888, 0.012480069883167744, 0.012611855752766132, -0.047310929745435715, -0.01685534231364727, 0.01168935839086771, 0.008078440092504025, -0.005235171876847744, -0.000329875125316903, -0.005610760301351547, 0.02324693091213703, -0.020360833033919334, 0.01697394996881485, -0.006964854430407286, 0.012796354480087757, -0.01293472945690155, -0.016591772437095642, -0.01578788086771965, -0.013363031670451164, -0.027622204273939133, 0.006312516983598471, 0.009020705707371235, -0.0013277371181175113, -0.02219264768064022, 0.020822081714868546, -0.006246624514460564, 0.00412817532196641, -0.009231561794877052, -0.026791956275701523, 0.01638091541826725, -0.03326261416077614, -0.01103043183684349, -0.034606825560331345, -0.001538593671284616, 0.001301380107179284, 0.005877625197172165, -1.8644921055965824e-06, 0.0009793296921998262, -0.027859417721629143, 0.012091303244233131, 0.003291338449344039, 0.03326261416077614, 0.012921551242470741, -0.02383996546268463, -0.011129270307719707, 0.020374011248350143, -0.022996539250016212, -0.012045178562402725, -0.001480113947764039, -0.015840595588088036, -0.0010065104579553008, -0.005788670387119055, -0.024393463507294655, 0.029361769556999207, 0.014377778396010399, 0.018463123589754105, 0.013969244435429573, 0.004049104172736406, 0.023220574483275414, -0.010417629964649677, -0.008467206731438637, 0.0018861774588003755, -0.008678063750267029, -0.001874646171927452, 0.0034989002160727978, -0.01624912954866886, -0.01080639660358429, 0.013270782306790352, 0.01577470265328884, -0.0011959518305957317, -0.02063758112490177, 0.030547838658094406, -0.021454650908708572, -0.0015806001611053944, 0.023681823164224625, 0.0008388959686271846, -0.0022469398099929094, 0.016117345541715622, 0.020716652274131775, 0.027332276105880737, -0.012684336863458157, 0.050869133323431015, 0.00662221247330308, -0.011709125712513924, -0.01826544478535652, 0.013020389713346958, -0.037216175347566605, 0.0039041400887072086, -0.020439904183149338, -0.012368052266538143, -0.017408840358257294, -0.022245362401008606, 0.01329713873565197, -0.038165029138326645, -0.0187530517578125, 0.011669590137898922, 0.019069336354732513, -0.00774238770827651, -0.021889541298151016, -0.0111556276679039, 0.0016226067673414946, -0.023194216191768646, -0.012539373710751534, -0.0008207754581235349, -0.001213248586282134, 0.02387950010597706, 0.03260368853807449, 0.013092871755361557, -0.007940066047012806, -0.014021958224475384, -0.015063062310218811, 0.011669590137898922, -0.00034017086727544665, 0.004905708599835634, 0.010878878645598888, -0.005712893791496754, 0.026567921042442322, -0.02326010912656784, -0.00019335377146489918, 0.032946329563856125, -0.030811408534646034, 0.015418882481753826, 0.0001661730493651703, -0.026159387081861496, -0.015392526052892208, 0.025592708960175514, -0.012690926901996136, -0.0028251479379832745, -0.023892678320407867, 0.02161279320716858, 0.02373453602194786, 0.01910887099802494, -0.0030211785342544317, 0.0059896428138017654, 0.0189770869910717, -0.021336043253540993, 0.005245056003332138, -0.014852206222712994, 0.05413740873336792, 0.01168935839086771, -0.002401787554845214, 0.005742545239627361, -0.02173139899969101, -0.002093739341944456, 0.01180137600749731, 0.00493206549435854, 0.035687465220689774, -0.0114521449431777, -0.02302289567887783, 0.022113576531410217, 0.0019553648307919502, -0.0017395662143826485, -0.0020624403841793537, -0.005874330643564463, 0.008849384263157845, -0.0002911631891038269, -0.028887342661619186, 0.029150912538170815, -0.0016679080436006188, 0.0031809681095182896, 0.004856289364397526, 0.00498807430267334, -0.012756818905472755, -0.02101975865662098, -0.017356127500534058, 0.01589331030845642, 0.021770935505628586, -0.0021102125756442547, -0.0010847579687833786, -0.010905235074460506, 0.004582834430038929, -0.006048946175724268, 0.0068791937083005905, -0.01282271184027195, 0.012776587158441544, 0.025474103167653084, -0.011972696520388126, -0.00895481277257204, -0.670945405960083, -0.004157826770097017, 0.0018614677246659994, -0.024775641039013863, -0.0035516144707798958, 0.03099590726196766, 0.004431281238794327, 0.012328516691923141, -0.011214930564165115, 0.011083145625889301, -0.00774238770827651, 0.022640718147158623, -0.014733599498867989, 0.019912762567400932, 0.007643548771739006, -0.011768429540097713, 0.009897077456116676, 0.009073419496417046, 0.017619697377085686, 0.011959518305957317, -0.024393463507294655, 0.02870284393429756, -0.014628170989453793, 0.007439281325787306, 0.02244304120540619, -0.013771566562354565, 0.024538427591323853, -0.028781915083527565, -0.003683399874716997, 0.013811102136969566, -0.01827862486243248, 0.03526575118303299, 0.008704420179128647, 0.017013484612107277, 0.051106348633766174, 0.0016102519584819674, -0.027727631852030754, 0.03892938420176506, 0.01707937754690647, 0.03463318198919296, -0.043172869831323624, -0.03516032546758652, 0.01684216409921646, -0.005406492855399847, -0.004915592726320028, 0.003907434642314911, 0.025777209550142288, -0.011307180859148502, 0.012855658307671547, 0.0030541247688233852, 0.010865699499845505, 0.03429054096341133, -0.01502352673560381, -0.005857857409864664, -0.010299023240804672, 0.006157669238746166, 0.01663130708038807, -0.00587103608995676, -0.0020327887032181025, 0.0029173975344747305, 0.005221993196755648, 0.0023902563843876123, -0.007821459323167801, -0.024182606488466263, -0.04027359560132027, 0.012466891668736935, -0.026607457548379898, -0.009824595414102077, -0.0014636407140642405, 0.008223404176533222, 0.00341323995962739, 0.02648884989321232, -0.0014949397882446647, 0.011320359073579311, 0.021349221467971802, 0.025539996102452278, 0.007755566388368607, 0.020505795255303383, -0.0019125344697386026, -0.004151237662881613, 0.022535290569067, -0.0177910178899765, -0.014614991843700409, -0.009897077456116676, 0.03226104751229286, -0.014562278054654598, -0.015827417373657227, -0.01294790767133236, -0.006753997877240181, -0.018568551167845726, 0.011643233709037304, 0.009066830389201641, 0.009310632944107056, 0.0011943044373765588, -0.013771566562354565, 0.015814239159226418, -0.030811408534646034, 0.009363346733152866, 0.015181669034063816, -0.025566352531313896, 0.004826637450605631, -0.0254213884472847, 0.02456478402018547, 0.00913272239267826, 0.016539057716727257, -0.0015698926290497184, 0.013494816608726978, 0.04404265433549881, 0.017501091584563255, -0.015827417373657227, 0.017501091584563255, -0.0003558203752618283, -0.009000937454402447, -0.008473795838654041, -0.0254213884472847, -0.02244304120540619, -0.007920297794044018, -0.0005160219152458012, -0.0009208499686792493, -0.052898626774549484, 0.016763092949986458, 0.0073602101765573025, 0.008440850302577019, 0.028887342661619186, -0.00643771281465888, 0.012335105799138546, 0.006688104942440987, -0.012545962817966938, -0.007735798601061106, -0.008757134899497032, 0.007366799749433994, -0.0029865847900509834, -0.008295886218547821, -0.00682647991925478, 0.02348414435982704, 0.002306243171915412, 0.00873077753931284, -0.038876671344041824, 0.019754620268940926, -0.01246030256152153, -0.02576403133571148, 0.0005427908035926521, 0.006958264857530594, -0.008388135582208633, 0.014878562651574612, -0.028096631169319153, -0.00210856506600976, -0.00920520443469286, -0.025078747421503067, -0.010641665197908878, -0.011129270307719707, -0.013363031670451164, -0.016644487157464027, -0.0023919036611914635, -0.0035977393854409456, -0.008052083663642406, -0.01568245328962803, 0.015155311673879623, -0.005126448813825846, 0.006078598089516163, -0.0008038904634304345, 0.03326261416077614, -0.025078747421503067, 0.02326010912656784, -0.011201752349734306, -0.015511132776737213, 0.023813607171177864, 0.03916659951210022, -0.008058672770857811, -0.04401629790663719, 0.003195794066414237, -0.040405381470918655, -0.02812298759818077, 0.010990896262228489, 0.01696077175438404, 0.025065569207072258, -0.008836206048727036, -0.007953244261443615, 0.01639409363269806, 0.009416061453521252, 0.0062663923017680645, -0.020914331078529358, -0.013099460862576962, 0.010391272604465485, 0.01829180307686329, -0.016657665371894836, 0.008104797452688217, 0.013270782306790352, -0.02066393941640854, 0.016525879502296448, 0.014746777713298798, -0.005343894939869642, 0.033420756459236145, -0.006174142472445965, -0.005436144769191742, -0.00017533625941723585, 0.012987443245947361, 0.009218383580446243, -0.009224972687661648, -0.005093502812087536, 0.027753988280892372, -0.004167710896581411, -0.001285730511881411, -0.009653274901211262, 0.023958571255207062, -0.0144173139706254, 0.01436460018157959, -0.02812298759818077, 0.03299904614686966, -0.0009760350221768022, -0.016420451924204826, -0.01732976920902729, -0.0023161270655691624, -0.008671474643051624, -0.003512078896164894, 0.016354558989405632, -0.005765608046203852, 0.022495754063129425, 0.005103386472910643, -0.010997485369443893, -0.006085187196731567, 0.0020690294913947582, 0.015115776099264622, 0.0032583922147750854, -0.003577971598133445, 0.012170374393463135, 0.002716424874961376, -0.008177279494702816, -0.00020086966105736792, -0.013152175582945347, -0.013270782306790352, -0.004869467578828335, 0.020242225378751755, 0.026791956275701523, 0.01258549839258194, -0.0260144229978323, 0.01971508376300335, -0.01707937754690647, 0.02741134725511074, -0.003993095364421606, -0.018239088356494904, 0.013086282648146152, 0.034501396119594574, -0.01003545243293047, -0.005637117195874453, -0.00788735132664442, 0.021349221467971802, 0.007590834517031908, -0.006184026133269072, 0.029467198997735977, 0.016670843586325645, 0.00375258713029325, 0.0007202891283668578, 0.001577305607497692, 0.010226541198790073, -0.0036537479609251022, 0.01502352673560381, -0.0017362716607749462, 0.036161892116069794, 0.04823342710733414, 0.01686852052807808, 0.008869152516126633, 0.011294001713395119, 0.002093739341944456, -0.011300591751933098, 0.0024890953209251165, 0.021533722057938576, -0.008612170815467834, -0.0043192640878260136, -0.00836836826056242, -0.01288201566785574, -0.014259171672165394, 0.003841542173177004, -0.008987759239971638, 0.018239088356494904, 0.019425157457590103, -0.00873077753931284, 0.01477313507348299, 0.004072166513651609, -0.002156337257474661, -0.02695009857416153, -0.02435392700135708, 0.005765608046203852, 0.018212731927633286, -0.010674610733985901, 0.00979823898524046, -0.017540626227855682, 0.006263097282499075, 0.0036175071727484465, -0.023167859762907028, 0.014456849545240402, 0.017118914052844048, -0.020729830488562584, 0.008981170132756233, -0.009633506648242474, 0.002161279320716858, 0.035423893481492996, -0.012565730139613152, 0.028755556792020798, -0.032471902668476105, -0.003202383406460285, -0.017053021118044853, -0.015102597884833813, -0.020808901637792587, 0.010371505282819271, 0.013033568859100342, -0.003149669151753187, -0.023075610399246216, -0.0021744577679783106, -0.01507624052464962, -0.014720420353114605, -0.00948854349553585, 0.01673673652112484, 0.009402882307767868, -0.0015797765227034688, 0.002836679108440876, 0.008236582390964031, -0.00819704681634903, 0.027859417721629143, 0.0076501378789544106, -0.005455912556499243, -0.014298707246780396, -0.025236889719963074, 0.016209594905376434, 0.11660365015268326, 0.02257482521235943, 0.00046413144445978105, 0.01839723065495491, 0.03004705347120762, -0.013211478479206562, -0.012690926901996136, 0.000666751351673156, 0.014245993457734585, 0.004922181833535433, 0.028544701635837555, -0.02314150333404541, -0.001947128097526729, -0.030837764963507652, 0.024867890402674675, -0.015550668351352215, -0.024498891085386276, -0.017830554395914078, 0.0072086569853127, -0.025091925635933876, 0.003360525704920292, 0.0029931741300970316, -0.015089419670403004, -0.004497174173593521, -0.015300275757908821, -0.01340915635228157, 0.022350789979100227, 0.03004705347120762, 0.015603382140398026, -0.010700968094170094, 0.005673358216881752, -0.0009579145698808134, 0.008869152516126633, -0.000864841160364449, 0.007775334175676107, 0.0009702694369480014, -0.010338558815419674, 0.0039239078760147095, 0.013066514395177364, 0.002663710853084922, 0.011412609368562698, 0.013876994140446186, 0.018726693466305733, -0.023998107761144638, 0.02600124478340149, 0.004381862003356218, 0.010529647581279278, 0.03415875509381294, -0.011478501372039318, 0.0037624710239470005, 0.040879808366298676, 0.016064630821347237, 0.01947787031531334, -0.017356127500534058, 0.022271718829870224, 0.014957633800804615, 0.0034956056624650955, 0.0009562672348693013, -0.012499838136136532, 0.009943202137947083, 0.00575901847332716, -0.000999097479507327, 0.00023165388847701252, -0.012737051583826542, 0.006918729282915592, -0.019148407503962517, -0.037558816373348236, 0.004431281238794327, -0.028202058747410774, -0.014206457883119583, -0.004681673366576433, -0.013303728774189949, -0.0185290165245533, -0.010523057542741299, 0.028412915766239166, 0.024657033383846283, 0.006753997877240181, -0.01033196970820427, 0.006839658133685589, 0.0019323022570461035, -0.008948223665356636, -0.024050820618867874, -0.00036941072903573513, 0.006523373536765575, -0.011676179245114326, 0.012743640691041946, -0.005884214770048857, 0.002760902512818575, -0.022363970056176186, 0.012743640691041946, 0.0037328193429857492, 0.021652327850461006, 0.018673980608582497, -0.005544867366552353, -0.006737524643540382, 0.011557572521269321, 0.003953559789806604, 0.026383422315120697, -0.019899584352970123, 0.011353305540978909, 0.025843102484941483, -0.023062432184815407, 0.01128082349896431, -0.01477313507348299, -0.00848038587719202, -0.01565609686076641, 0.015577024780213833, -0.009870721027255058, -0.014101029373705387, 0.004315969534218311, 0.013850637711584568, 0.005165984854102135, 0.006819890346378088, -0.009409472346305847, -0.010305612348020077, 0.022970180958509445, 0.01697394996881485, 0.008829616941511631, 0.0011440613307058811, -0.02600124478340149, -0.0003871193912345916, -0.03173390403389931, 0.020677117630839348, -0.004859583918005228, -0.012321927584707737, 0.019042979925870895, -0.007116407621651888, -0.03879759833216667, 0.0007927710539661348, -0.004134764429181814, 0.01205176766961813, 0.0008096560486592352, -0.018080946058034897, -0.01660495065152645, -0.011919982731342316, -0.018001874908804893, -0.0032485080882906914, 0.007136175408959389, 0.004253371153026819, -0.009495132602751255, -0.01851583831012249, 0.0022930647246539593, -0.007577655836939812, -0.02431439235806465, -0.008921866305172443, -0.024722926318645477, 0.0024083766620606184, -0.014008780010044575, -0.02004454843699932, 0.04043173789978027, 0.01304674707353115, -0.011313769966363907, 0.0007894764421507716, 0.010404450818896294, -0.03313082829117775, -0.02493378333747387, -0.027833059430122375, 0.016815807670354843, 0.0410643070936203, 0.03297268599271774, 0.0415123775601387, -0.0010509879793971777, 0.02324693091213703, -0.014443671330809593, -0.002375430427491665, -0.001359859830699861, 0.006615623366087675, -0.014812670648097992, -0.031180407851934433, 0.027753988280892372, 0.029124556109309196, 0.009350168518722057, 0.005090208258479834, 0.012559141032397747, -0.02241668291389942, -0.004938655067235231, -0.01056918315589428, -0.0038349528331309557, 0.0009645038517192006, -0.026871027424931526, -0.004816753324121237, 0.008612170815467834, -0.005920455791056156, 0.006925318855792284, 0.004404924344271421, -0.013863815926015377, 0.03689989075064659, 0.006190615706145763, 0.01050987932831049, -0.011175394989550114, 0.021322865039110184, -0.010812985710799694, 0.016090987250208855, 0.006592560559511185, -0.030205195769667625, -0.021164722740650177, -0.013178532011806965, -0.0030409463215619326, 0.006898961495608091, -0.019675549119710922, -0.016077809035778046, 0.010219952091574669, 0.0011358247138559818, -0.012354874052107334, -0.014456849545240402, 0.0063751148991286755, -0.021573256701231003, -0.0031513164285570383, 0.014325064606964588, -0.014193279668688774, -0.002569813746958971, -0.015563846565783024, -0.009481954388320446, -0.02933541312813759, 0.01335644256323576, 0.02030811831355095, -0.014074672013521194, 0.020334474742412567, -0.005376840941607952, -0.023286467418074608, -0.021902721375226974, -0.0063981772400438786, 0.014614991843700409, -0.005090208258479834, 0.028544701635837555, -0.0013713910011574626, -0.01603827439248562, -0.0062795705161988735, 0.05403198301792145, 0.012849069200456142, 0.0008475443464703858, -0.0032040306832641363, 0.018107302486896515, 0.008908688090741634, -0.017514269798994064, -0.0008113033836707473, 0.015102597884833813, -0.021665507927536964, -0.02422214299440384, 0.02407717891037464, 0.02173139899969101, 0.024288034066557884, -0.016209594905376434, -0.012328516691923141, 0.005969875026494265, 0.0064805434085428715, -0.023326002061367035, -0.0038514260668307543, 0.0033934719394892454, -0.012895193882286549, -0.04085344821214676, 0.007735798601061106, 0.0022617655340582132, 0.02502603270113468, -0.02196861244738102, -0.0004229485057294369, -0.013395978137850761, -0.013982422649860382, 0.01025948766618967, 0.011781607754528522, -0.01744837686419487, 0.02161279320716858, 0.004599307663738728, -0.0012264271499589086, -0.025829922407865524, 0.006602444685995579, 0.006078598089516163, -0.018067767843604088, -0.028544701635837555, 0.018608087673783302, 0.018963908776640892, -0.0013829221716150641, -0.00902729481458664, 0.012862247414886951, 0.008645117282867432, 5.317743853083812e-05, -0.003828363725915551, -0.024973317980766296, 0.008374957367777824, -0.01651270128786564, 0.011616876348853111, -0.007755566388368607, -0.012440534308552742, -0.00919202622026205, 0.0010032157879322767, -0.011491680517792702, -0.01288201566785574, -0.023945393040776253, 0.014825848862528801, -0.0018614677246659994, -0.04912956804037094, -0.016591772437095642, 0.004516941960901022, 0.003996389918029308, -0.004006273578852415, 0.0032303878106176853, -0.005383430514484644, 0.02360275201499462, -0.0334998294711113, 0.02076936699450016, -0.03574017807841301, 0.009047062136232853, -0.020703474059700966, -0.0014117502141743898, -0.006556320004165173, -0.004032630939036608, 0.01305992528796196, -0.008908688090741634, -0.05034199357032776, -0.028518343344330788, 0.012315338477492332, -0.008757134899497032, -0.018792586401104927, -0.01370567362755537, 0.012829300947487354, 0.016789449378848076, 0.010134290903806686, -0.018726693466305733, -0.01922747865319252, 0.021915899589657784, -0.02041354589164257, 0.013692495413124561, 0.018344517797231674, -0.01626230962574482, -0.01394288707524538, 0.020374011248350143, 0.0191220510751009, 0.016196416690945625, -0.04001002386212349, -0.005258234217762947, 0.003581266151741147, 0.023339180275797844, -0.015761524438858032, -0.015577024780213833, -0.011023841798305511, 0.007768744602799416, -0.009389704093337059, 0.007795101962983608, 0.000725231075193733, 0.027279561385512352, -0.005805143620818853, -0.003508784109726548, 0.01958329975605011, 0.0017626286717131734, -0.013876994140446186, 0.0177910178899765, -0.016183238476514816, 0.02340507321059704, -0.000960385543294251, -0.02468339167535305, 0.002452854299917817, 0.011004074476659298, -0.025711316615343094, -0.040537163615226746, -0.009165668860077858, 0.010687789879739285, -0.016328200697898865, -0.024143071845173836, -0.0036932837683707476, -0.0017922803526744246, -0.004596013110131025, -0.016222773119807243, -0.004615780897438526, 0.032471902668476105, -0.01636773720383644, 0.012157196179032326, -0.021573256701231003, -0.014904920011758804, -0.010799807496368885, -0.018950728699564934, -0.0063322847709059715, -0.00295363855548203, -0.01526074018329382, -0.00813115481287241, -0.011583929881453514, -0.004582834430038929, -0.004958422854542732, 0.0021003286819905043, -0.011999053880572319, 0.0017840438522398472, -0.014944455586373806, 0.010852521285414696, 0.018067767843604088, -0.009277686476707458, 0.03181297704577446, 0.004118291195482016, -0.015735168009996414, 0.002928928704932332, 0.001476819277741015, -0.006780354771763086, -0.03740067407488823, 0.023352358490228653, 0.001384569564834237, 0.001319500501267612, -0.01288201566785574, -0.013626602478325367, -0.001522944075986743, -0.010925003327429295, 0.005360368173569441, -0.0015624797670170665, -0.023826785385608673, 0.0016209594905376434, 0.019543763250112534, -0.002041025087237358, 0.017606519162654877, 0.013237835839390755, -0.017237519845366478, -0.0017758072353899479, 0.00575901847332716, -0.022706611081957817, 0.009475364349782467, -0.005268118344247341, 0.008981170132756233, -0.012539373710751534, 0.005940223578363657, -0.0007396450964733958, -0.013811102136969566, -0.00608848175033927, 0.003512078896164894, -0.025263246148824692, -0.009304043836891651, 0.003075540065765381, -0.006134606897830963, -0.024169428274035454, -0.001588013139553368, -0.020005011931061745, -0.005017726216465235, 0.002330952789634466, -0.0248283538967371, 0.0017197984270751476, -0.01649952307343483, -0.014404135756194592, -0.014338242821395397, 0.009145901538431644, -0.009659864008426666, 0.020097261294722557, 0.23130959272384644, -0.005189047195017338, -0.0026604162994772196, 0.037453386932611465, -0.00031504928483627737, 0.01591966673731804, 0.034132398664951324, 0.004098523408174515, -0.0018433472141623497, -0.007966422475874424, -0.020479438826441765, -0.011735483072698116, -0.02266707457602024, 0.010371505282819271, -0.0006828127079643309, -0.0006914610858075321, -0.013982422649860382, -0.021454650908708572, -0.0011448849691078067, -0.023655464872717857, 0.029256341978907585, 0.013204889371991158, -0.0007750624208711088, -0.014931277371942997, 0.027516774833202362, 0.010252897627651691, -0.004464227706193924, 0.0030425935983657837, -0.007004390005022287, 0.002498979214578867, -0.008513331413269043, 0.011149038560688496, 0.01696077175438404, -0.010002505965530872, 0.011583929881453514, 0.0073074959218502045, 0.008243171498179436, -0.009771881625056267, 0.021902721375226974, 0.014245993457734585, -0.0027460765559226274, 0.013033568859100342, -0.001976779894903302, 0.010740503668785095, -0.023075610399246216, 0.027991201728582382, -0.017606519162654877, -0.011854089796543121, -0.014272350817918777, 0.0034198290668427944, -0.011735483072698116, -0.009086597710847855, -0.011781607754528522, 0.020611224696040154, -0.008414492942392826, 0.00783463753759861, 0.00014300766633823514, -0.001777454512193799, 0.02099340222775936, 0.008981170132756233, -0.009297454729676247, 0.012242856435477734, -0.0191220510751009, 0.02444617822766304, -0.02478881925344467, 0.012763408944010735, -0.01900344341993332, -0.017263878136873245, -0.0061181336641311646, -0.012539373710751534, 0.012539373710751534, 0.027833059430122375, 0.00879008136689663, 0.013903351500630379, -0.019280193373560905, -0.013494816608726978, 0.017369305714964867, -0.017158448696136475, 0.0144173139706254, 0.019161585718393326, -0.007195478770881891, 0.02185000665485859, -0.0052812970243394375, -0.04014180973172188, -0.012723872438073158, -0.03892938420176506, 0.011887036263942719, 0.002639001002535224, 0.014101029373705387, 0.005119859706610441, 0.008697831071913242, -0.010430808179080486, 0.011050199158489704, 0.004615780897438526, -0.0010888762772083282, 0.02944084070622921, -0.02007090486586094, 0.02361593022942543, -0.007907119579613209, -0.002663710853084922, -0.03133855015039444, -0.027753988280892372, 0.008572635240852833, -0.008289297111332417, -0.01271069422364235, 0.015550668351352215, 0.029124556109309196, 0.02220582775771618, -0.009883899241685867, -0.03052148036658764, -0.011781607754528522, -0.02870284393429756, -0.003577971598133445, 0.0011720657348632812, 0.012045178562402725, 0.0033489945344626904, 0.005426260642707348, -0.011616876348853111, -0.021494185552001, 0.00801254715770483, 0.0023688410874456167, -0.03357889875769615, -0.009785059839487076, 0.010786628350615501, 0.006711167749017477, -0.00014455203199759126, -0.019780976697802544, 0.023774072527885437, -0.002232113853096962, -0.024999676272273064, 0.01922747865319252, -0.01120834145694971, 0.011715714819729328, -0.007795101962983608, -0.00255004595965147, 0.015273919329047203, 0.008776902221143246, 0.01056918315589428, -0.013876994140446186, -0.0031430800445377827, 0.027490418404340744, -0.01995229721069336, -0.006269686855375767, -0.008776902221143246, 0.01186726801097393, -0.003558203810825944, -0.007274549920111895, 0.005857857409864664, -0.02468339167535305, -0.015866952016949654, -0.02229807712137699, 0.009593971073627472, 0.008302475325763226, -0.021428292617201805, 0.007814869284629822, -0.01995229721069336, -0.04203951731324196, -0.014008780010044575, 0.02717413380742073, -0.004358799662441015, -0.019319728016853333, -0.013547531329095364, 0.016196416690945625, -0.004589424002915621, 0.006121428217738867, -0.0019059452461078763, -0.16889606416225433, 0.01921430043876171, -0.0018779408419504762, -0.030785052105784416, 0.00575901847332716, 0.006381704472005367, 0.008098208345472813, -0.003963443450629711, -0.033420756459236145, -0.0010518116177991033, 0.011781607754528522, 0.0025072158314287663, -0.020716652274131775, 0.02383996546268463, 0.004589424002915621, 0.0017922803526744246, -0.022495754063129425, 0.0033259321935474873, 0.008776902221143246, 0.008987759239971638, 0.027015991508960724, 0.00676717609167099, 0.0021744577679783106, -0.014733599498867989, 0.013692495413124561, 0.008552866987884045, -0.009640096686780453, 0.008335421793162823, 0.0066419802606105804, -0.018660802394151688, -0.024736104533076286, 0.0031595530454069376, -0.006978032644838095, 0.0012346637668088078, 0.030416052788496017, 0.014522742480039597, -0.013310317881405354, -0.007083461154252291, 0.009567614644765854, 0.02233761176466942, -0.0075051742605865, 0.02373453602194786, -0.009356757625937462, 0.020347652956843376, -0.01483902707695961, 0.0254213884472847, 0.03592468053102493, 0.0012774940114468336, -0.02088797278702259, 0.0034758378751575947, -0.018357696011662483, -0.04214494675397873, 0.007795101962983608, 0.016420451924204826, -0.0045465934090316296, 0.011999053880572319, -0.02469656988978386, 0.019636012613773346, -0.011181985028088093, -0.02849198691546917, 0.0005625585909001529, -0.022693432867527008, -0.0015303570544347167, -0.011788196861743927, -0.003045888151973486, 0.009442418813705444, -0.014522742480039597, -0.019965477287769318, -0.01900344341993332, 0.012625033967196941, -0.01909569278359413, -0.017843732610344887, 0.006497016176581383, -0.0021184489596635103, 0.009534668177366257, 0.022693432867527008, 0.00043900986202061176, 0.016341380774974823, -0.01389017328619957, -0.02625163644552231, -0.010048630647361279, 0.03737431764602661, -0.024907425045967102, -0.027938488870859146, 0.0013730382779613137, -0.00830906443297863, -0.006497016176581383, 0.0028416209388524294, 0.018015053123235703, -0.015748346224427223, 0.015629738569259644, -0.038744885474443436, -0.03173390403389931, -0.04720550402998924, 0.0042566657066345215, 0.012829300947487354, 0.022877931594848633, -0.008500153198838234, -0.005607465282082558, -0.014061493799090385, -0.024854712188243866, -0.02304925210773945, -0.014259171672165394, 0.010648254305124283, 0.025829922407865524, 0.010048630647361279, 0.02233761176466942, 0.013732030987739563, 0.03099590726196766, -0.023523680865764618, 0.0023408366832882166, 0.004764039535075426, 0.014957633800804615, 0.003057419555261731, 0.011682769283652306, 0.04043173789978027, 0.0035516144707798958, -0.018476301804184914, 0.02386632189154625, -0.008691241964697838, 0.03766424581408501, -0.011017252691090107, -0.013811102136969566, 0.004902414046227932, 0.00031401970773003995, 0.028043916448950768, -0.10484839975833893, -0.010944770649075508, 0.0010905235540121794, 0.013626602478325367, -0.012018821202218533, 0.01566927507519722, -0.01864762231707573, 0.005551456939429045, -0.00427313894033432, 0.020611224696040154, -0.0049090031534433365, -0.00715594319626689, 0.0007005213410593569, -0.015471597202122211, 0.017382483929395676, -0.011234698817133904, 0.0022271720226854086, -0.029625341296195984, -0.01365295983850956, 0.02028176188468933, -0.0189770869910717, -0.0075315311551094055, -0.025790387764573097, -0.0061609637923538685, 0.011603697203099728, 0.0022765914909541607, -0.021046115085482597, 0.024261677637696266, 0.020743010565638542, 0.015735168009996414, -0.013415745459496975, -0.007274549920111895, 0.020598046481609344, -0.036135535687208176, -0.00011078203533543274, 0.00596328591927886, 0.0061082495376467705, -0.004487290047109127, 0.007966422475874424, 0.0012766702566295862, -0.00794665515422821, -0.019491048529744148, 0.007169121410697699, -0.00537354638800025, 0.008203635923564434, -0.008625349029898643, -0.02242986112833023, 0.007755566388368607, -0.010252897627651691, -0.002418260555714369, -0.012743640691041946, 0.029019128531217575, -0.021981792524456978, -0.00788735132664442, 0.004724503960460424, -0.011069967411458492, 0.027727631852030754, 0.015273919329047203, 0.004754155408591032, -0.000864841160364449, 0.013547531329095364, -0.008045493625104427, -0.01959647797048092, 0.024050820618867874, 0.0016613187035545707, -0.009745524264872074, -0.0007153471815399826, 0.0006263921386562288, 0.007281139027327299, -0.0031430800445377827, 0.027279561385512352, 0.02634388580918312, -0.013099460862576962, 0.02589581534266472, -0.020808901637792587, 0.011854089796543121, -0.02814934402704239, -0.006806712131947279, 0.010766861028969288, -0.041143376380205154, -0.006892372388392687, -0.01982051320374012, 0.014232815243303776, -0.03255097568035126, 0.015471597202122211, 0.002237055916339159, -0.000528788601513952, 0.027253204956650734, 0.016539057716727257, -0.011794785968959332, 0.017487911507487297, 0.02954627014696598, 0.014707242138683796, -0.01946469210088253, 0.009066830389201641, 0.024143071845173836, -0.039324741810560226, 0.012097892351448536, 0.01217696350067854, -0.008638528175652027, -0.020743010565638542, -0.009198615327477455, -0.039825525134801865, 0.029045484960079193, 0.015445239841938019, 0.0073602101765573025, 0.007762155495584011, -0.02196861244738102, -0.009936613030731678, -0.0027230142150074244, -0.006276275962591171, 0.003045888151973486, -0.012618444859981537, 0.04201316088438034, 0.013211478479206562, 0.026449313387274742, -0.009435828775167465, -0.009765292517840862, 0.00763037009164691, 0.008177279494702816, 0.003703167662024498, 0.011597108095884323, -0.005498742684721947, 0.0015443592565134168, -0.00047442715731449425, 0.02232443355023861, 0.0022502343636006117, 0.019675549119710922, -0.012895193882286549, 0.029994338750839233, -0.011432376690208912, 0.000877196027431637, -0.014483206905424595, -0.019530585035681725, -0.012723872438073158, 0.03415875509381294, 0.01073391456156969, -0.007867584004998207, -0.011320359073579311, 0.009218383580446243, 0.021533722057938576, -0.009923434816300869, -0.016670843586325645, -0.027806703001260757, -0.004345620982348919, -0.004997958429157734, -0.007248192559927702, 0.006431123707443476, 0.0031908522360026836, 0.00333911064080894, 0.01027266588062048, -0.01636773720383644, 0.007577655836939812, 0.021046115085482597, 0.018713515251874924, -0.009198615327477455, 0.0039008455350995064, -0.0038547206204384565, 0.003914024215191603, -0.007261371240019798, -0.018845301121473312, -0.032577332109212875, 0.01829180307686329, 0.0054130819626152515, 0.022139934822916985, 0.021428292617201805, 0.012611855752766132, -0.019174763932824135, 0.006786943878978491, 0.011748661287128925, 0.030205195769667625, -0.043963585048913956, -0.004563066642731428, -0.006378409452736378, 0.01068120077252388, -0.027595845982432365, 0.02111200802028179, 0.012888604775071144, -0.018252266570925713, -0.013066514395177364, 0.0044148084707558155, 0.026277992874383926, 0.02933541312813759, 0.003973327577114105, -0.0264624934643507, 0.025724494829773903, 0.02540821023285389, 0.029757125303149223, -0.007992779836058617, -0.00601929472759366, 0.006688104942440987, -0.01002227421849966, -0.004098523408174515, 0.0062268562614917755, 0.012519605457782745, -0.008981170132756233, 0.02386632189154625, 0.025961708277463913, 0.013929708860814571, 0.010799807496368885, 0.025843102484941483, -0.003531846683472395, 0.005831500515341759, 0.01353435218334198, 0.003337463364005089, -0.012045178562402725, -0.021902721375226974, 0.016288666054606438, -0.029282698407769203, -0.018436767160892487, -0.01228898111730814, 0.017290234565734863, 0.009271097369492054, 0.000636687851510942, 0.014232815243303776, 0.034000612795352936, -0.021177900955080986, 0.03502853959798813, 0.0072086569853127, -0.02907184138894081, -0.02470974810421467, 0.01252619456499815, 0.016644487157464027, 0.016354558989405632, 0.01304674707353115, 0.0062136780470609665, -0.0028729201294481754, 0.015115776099264622, 0.02182365022599697, -0.006006116047501564, -0.006335579324513674, -0.013106049969792366, 0.010826163925230503, 0.0011440613307058811, -0.025197353214025497, -0.010430808179080486, -0.012269213795661926, 0.005574519280344248, 0.003986505791544914, 0.010002505965530872, -0.00333911064080894, 0.018924372270703316, -0.006457480601966381, -0.019280193373560905, 0.027332276105880737, 0.01205176766961813, 0.014891741797327995, 0.020018190145492554, 0.002037730533629656, -0.01317194290459156, 0.008875741623342037, -0.011313769966363907, 0.0038744884077459574, 0.014535920694470406, -0.017184806987643242, -0.015010348521173, 0.005986348260194063, 0.0004962541279383004, -0.006312516983598471, -0.015313454903662205, 0.0005337305483408272, 0.006460775621235371, 0.0013112640008330345, 0.011307180859148502, -0.009330401197075844, -0.030099768191576004, -0.005864446982741356, 0.003940381109714508, -0.017870089039206505, 0.008763724006712437, -0.029888911172747612, 0.007340442389249802, 0.01365295983850956, -0.018120482563972473, -0.012249445542693138, 0.035423893481492996, -0.006638685707002878, -0.01909569278359413, -0.0025352202355861664, 0.023115145042538643, 0.0008310711709782481, -0.030416052788496017, 0.023813607171177864, -0.004744271747767925, -0.007485406473278999, -0.0024413231294602156, -0.0038053011521697044, -0.012097892351448536, -0.013863815926015377, -0.01002227421849966]}] \ No newline at end of file diff --git a/metagpt/reflect_and_retrieve/gpt_structure.py b/metagpt/reflect_and_retrieve/gpt_structure.py deleted file mode 100644 index f9a44725c..000000000 --- a/metagpt/reflect_and_retrieve/gpt_structure.py +++ /dev/null @@ -1,110 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -# @Desc : 调用GPT -# author: didi -# Date:9.25 - -import openai -openai.api_key = "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" -openai.proxy = 'http://127.0.0.1:7000' -# 直接调用Prompt生成 - - -def response_generate(prompt): - """ - 通过将特殊指令加入Prompt生成最终的响应。 - - 参数: - - prompt:要生成响应的提示文本。 - - special_instruction:要加入Prompt的特殊指令。 - - example_output(可选):示例输出的JSON字符串。 - - 返回: - 生成的最终响应。 - - """ - completion = openai.Completion.create( - model="gpt-3.5-turbo-instruct", - prompt=prompt, - temperature=0, - max_tokens=500, - 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生成最终的响应。 - - 参数: - - prompt:要生成响应的提示文本。 - - special_instruction:要加入Prompt的特殊指令。 - - example_output(可选):示例输出的JSON字符串。 - - 返回: - 生成的最终响应。 - - """ - 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) is 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): - """ - Generates an embedding for the given query. - - Args: - query (str): The text query to be embedded. - - Returns: - str: The embedding key generated for the query. - """ - embedding_result = openai.Embedding.create( - model="text-embedding-ada-002", - input=query - ) - embedding_key = embedding_result['data'][0]["embedding"] - return embedding_key diff --git a/metagpt/reflect_and_retrieve/pycodetester.py b/metagpt/reflect_and_retrieve/pycodetester.py deleted file mode 100644 index 30c9abaec..000000000 --- a/metagpt/reflect_and_retrieve/pycodetester.py +++ /dev/null @@ -1,3 +0,0 @@ -import pycodestyle as pcs -checker = pcs.StyleGuide() -checker.input_dir('./') diff --git a/metagpt/reflect_and_retrieve/reflect.py b/metagpt/reflect_and_retrieve/reflect.py deleted file mode 100644 index 1e1bb1352..000000000 --- a/metagpt/reflect_and_retrieve/reflect.py +++ /dev/null @@ -1,84 +0,0 @@ - -import json -from logging import Logger -import time -from gpt_structure import final_response -import run_gpt -from GA_memory_storage import Agent_memory, Memory_basic -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 ValueError: - print(out) - Logger.error('无法返回正常结果') - 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? - You should return a list of list[str,list] . The first element is the insight you have found.The second element is the - ''' - - ret = final_response(prompt.format( - question=question, statements=statements, n=n), "['insightA',[1,2,3]]") - try: - insight_list = json.loads(ret) - for insight, index in insight_list: - agent.memory_list.append(Memory_basic( - time.time(), None, insight, None, None)) - return (insight_list) - except: - Logger.error('我们无法获得想要的返回。') - return ret - - -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_memory( - "John", John_iss, memory_path="agent_memories/John_memory.json") - - # 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) - - for i in A: - B = generate_insights_and_evidence( - John, John.memories_list, question=A[0]) - print(type(B)) - print(B) - ''' - 这里是输出,list形式,返回给记忆。 - [['The pharmacy is a friendly and helpful community.', [0, 2, 9, 12]], ['The pharmacy is a place where people come for more than just medication.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for advice and conversation.', [0, 2, 6, 9, 12]], ['The pharmacy is a place where people come for assistance with daily tasks.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for political discussions.', [1]]] - ''' diff --git a/metagpt/reflect_and_retrieve/retrive.py b/metagpt/reflect_and_retrieve/retrive.py deleted file mode 100644 index 9a75a5c29..000000000 --- a/metagpt/reflect_and_retrieve/retrive.py +++ /dev/null @@ -1,136 +0,0 @@ -#!/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 deleted file mode 100644 index 71d2a7a3d..000000000 --- a/metagpt/reflect_and_retrieve/run_gpt.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/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)) diff --git a/metagpt/roles/role.py b/metagpt/roles/role.py index 52cc693a0..44bb3e976 100644 --- a/metagpt/roles/role.py +++ b/metagpt/roles/role.py @@ -14,7 +14,7 @@ from pydantic import BaseModel, Field # from metagpt.environment import Environment from metagpt.config import CONFIG from metagpt.actions import Action, ActionOutput -from metagpt import llm as LLM +from metagpt.llm import LLM from metagpt.logs import logger from metagpt.memory import Memory, LongTermMemory from metagpt.schema import Message @@ -94,7 +94,7 @@ class Role: """Role/Agent""" def __init__(self, name="", profile="", goal="", constraints="", desc=""): - self._llm=LLM.DEFAULT_LLM + self._llm = LLM() self._setting = RoleSetting(name=name, profile=profile, goal=goal, constraints=constraints, desc=desc) self._states = [] self._actions = [] @@ -185,7 +185,7 @@ class Role: observed = self._rc.env.memory.get_by_actions(self._rc.watch) - self._rc.news = self._rc.memory.remember(observed) # remember recent exact or similar memories + self._rc.news = self._rc.memory.find_news(observed) # find news (previously unseen messages) from observed messages for i in env_msgs: self.recv(i) diff --git a/metagpt/schema.py b/metagpt/schema.py index 27f5dd10c..bdca093c2 100644 --- a/metagpt/schema.py +++ b/metagpt/schema.py @@ -29,6 +29,7 @@ class Message: cause_by: Type["Action"] = field(default="") sent_from: str = field(default="") send_to: str = field(default="") + restricted_to: str = field(default="") def __str__(self): # prefix = '-'.join([self.role, str(self.cause_by)]) diff --git a/metagpt/tools/moderation.py b/metagpt/tools/moderation.py new file mode 100644 index 000000000..c56a6afc4 --- /dev/null +++ b/metagpt/tools/moderation.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +@Time : 2023/9/26 14:27 +@Author : zhanglei +@File : moderation.py +""" +from typing import Union + +from metagpt.llm import LLM + + +class Moderation: + def __init__(self): + self.llm = LLM() + + def moderation(self, content: Union[str, list[str]]): + resp = [] + if content: + moderation_results = self.llm.moderation(content=content) + results = moderation_results.results + for item in results: + resp.append(item.flagged) + + return resp + + async def amoderation(self, content: Union[str, list[str]]): + resp = [] + if content: + moderation_results = await self.llm.amoderation(content=content) + results = moderation_results.results + for item in results: + resp.append(item.flagged) + + return resp + + +if __name__ == "__main__": + moderation = Moderation() + print(moderation.moderation(content=["I will kill you", "The weather is really nice today", "I want to hit you"])) diff --git a/metagpt/utils/common.py b/metagpt/utils/common.py index 65cc15e82..59d179808 100644 --- a/metagpt/utils/common.py +++ b/metagpt/utils/common.py @@ -180,7 +180,7 @@ class OutputParser: if start_index != -1 and end_index != -1: # Extract the structure part - structure_text = text[start_index:end_index + 1] + structure_text = text[start_index : end_index + 1] try: # Attempt to convert the text to a Python data type using ast.literal_eval @@ -237,7 +237,7 @@ class CodeParser: logger.error(f"{pattern} not match following text:") logger.error(text) # raise Exception - return "" + return text # just assume original text is code return code @classmethod diff --git a/metagpt/utils/serialize.py b/metagpt/utils/serialize.py index ffafca8cd..124176fcb 100644 --- a/metagpt/utils/serialize.py +++ b/metagpt/utils/serialize.py @@ -4,7 +4,7 @@ import copy import pickle -from typing import Dict, List, Tuple +from typing import Dict, List from metagpt.actions.action_output import ActionOutput from metagpt.schema import Message @@ -37,8 +37,8 @@ def actionoutout_schema_to_mapping(schema: Dict) -> Dict: elif property["type"] == "array" and property["items"]["type"] == "string": mapping[field] = (List[str], ...) elif property["type"] == "array" and property["items"]["type"] == "array": - # here only consider the `Tuple[str, str]` situation - mapping[field] = (List[Tuple[str, str]], ...) + # here only consider the `List[List[str]]` situation + mapping[field] = (List[List[str]], ...) return mapping diff --git a/requirements.txt b/requirements.txt index c2616a08a..de861ded9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -34,7 +34,7 @@ tqdm==4.64.0 # selenium>4 # webdriver_manager<3.9 anthropic==0.3.6 -typing-inspect +typing-inspect==0.8.0 typing_extensions==4.5.0 libcst==1.0.1 qdrant-client==1.4.0 diff --git a/tests/metagpt/actions/test_write_code.py b/tests/metagpt/actions/test_write_code.py index 00d2c504e..7bb18ddf2 100644 --- a/tests/metagpt/actions/test_write_code.py +++ b/tests/metagpt/actions/test_write_code.py @@ -8,7 +8,7 @@ import pytest from metagpt.actions.write_code import WriteCode -import metagpt.llm as LLM +from metagpt.llm import LLM from metagpt.logs import logger from tests.metagpt.actions.mock import TASKS_2, WRITE_CODE_PROMPT_SAMPLE @@ -29,6 +29,6 @@ async def test_write_code(): @pytest.mark.asyncio async def test_write_code_directly(): prompt = WRITE_CODE_PROMPT_SAMPLE + '\n' + TASKS_2[0] - llm=LLM.DEFAULT_LLM + llm = LLM() rsp = await llm.aask(prompt) logger.info(rsp) diff --git a/tests/metagpt/memory/test_longterm_memory.py b/tests/metagpt/memory/test_longterm_memory.py index 62a3a2361..dc5540520 100644 --- a/tests/metagpt/memory/test_longterm_memory.py +++ b/tests/metagpt/memory/test_longterm_memory.py @@ -21,35 +21,35 @@ def test_ltm_search(): idea = 'Write a cli snake game' message = Message(role='BOSS', content=idea, cause_by=BossRequirement) - news = ltm.remember([message]) + news = ltm.find_news([message]) assert len(news) == 1 ltm.add(message) sim_idea = 'Write a game of cli snake' sim_message = Message(role='BOSS', content=sim_idea, cause_by=BossRequirement) - news = ltm.remember([sim_message]) + news = ltm.find_news([sim_message]) assert len(news) == 0 ltm.add(sim_message) new_idea = 'Write a 2048 web game' new_message = Message(role='BOSS', content=new_idea, cause_by=BossRequirement) - news = ltm.remember([new_message]) + news = ltm.find_news([new_message]) assert len(news) == 1 ltm.add(new_message) # restore from local index ltm_new = LongTermMemory() ltm_new.recover_memory(role_id, rc) - news = ltm_new.remember([message]) + news = ltm_new.find_news([message]) assert len(news) == 0 ltm_new.recover_memory(role_id, rc) - news = ltm_new.remember([sim_message]) + news = ltm_new.find_news([sim_message]) assert len(news) == 0 new_idea = 'Write a Battle City' new_message = Message(role='BOSS', content=new_idea, cause_by=BossRequirement) - news = ltm_new.remember([new_message]) + news = ltm_new.find_news([new_message]) assert len(news) == 1 ltm_new.clear() diff --git a/tests/metagpt/provider/test_xinghuo_api.py b/tests/metagpt/provider/test_xinghuo_api.py new file mode 100644 index 000000000..74e13413c --- /dev/null +++ b/tests/metagpt/provider/test_xinghuo_api.py @@ -0,0 +1,4 @@ +from metagpt.provider.spark_api import SparkAPI +def test_message(): + llm=SparkAPI() + llm.ask('只回答"收到了"这三个字。') \ No newline at end of file diff --git a/tests/metagpt/roles/mock.py b/tests/metagpt/roles/mock.py index 9567be603..52fc4a3c1 100644 --- a/tests/metagpt/roles/mock.py +++ b/tests/metagpt/roles/mock.py @@ -16,7 +16,7 @@ DETAIL_REQUIREMENT = """需求:开发一个基于LLM(大语言模型)与 3. 私有知识库支持pdf、word、txt等各种文件格式上传,上传后可以在服务端解析为文本,存储ES 资源: -1. 大语言模型已经有前置的抽象、部署,可以通过 `import metagpt.llm as LLM`,再使用`LLM().ask(prompt)`直接调用 +1. 大语言模型已经有前置的抽象、部署,可以通过 `from metagpt.llm import LLM`,再使用`LLM().ask(prompt)`直接调用 2. Elastic已有[部署](http://192.168.50.82:9200/),代码可以直接使用这个部署""" diff --git a/tests/metagpt/test_llm.py b/tests/metagpt/test_llm.py index 1986f3f22..11503af1d 100644 --- a/tests/metagpt/test_llm.py +++ b/tests/metagpt/test_llm.py @@ -8,7 +8,7 @@ import pytest -import metagpt.llm as LLM +from metagpt.llm import LLM @pytest.fixture() diff --git a/tests/metagpt/tools/test_moderation.py b/tests/metagpt/tools/test_moderation.py new file mode 100644 index 000000000..225acff75 --- /dev/null +++ b/tests/metagpt/tools/test_moderation.py @@ -0,0 +1,42 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +@Time : 2023/9/26 14:46 +@Author : zhanglei +@File : test_translate.py +""" + +import pytest + +from metagpt.tools.moderation import Moderation + + +@pytest.mark.parametrize( + ("content",), + [ + [ + ["I will kill you", "The weather is really nice today", "I want to hit you"], + ] + ], +) +def test_moderation(content): + moderation = Moderation() + results = moderation.moderation(content=content) + assert isinstance(results, list) + assert len(results) == len(content) + + +@pytest.mark.asyncio +@pytest.mark.parametrize( + ("content",), + [ + [ + ["I will kill you", "The weather is really nice today", "I want to hit you"], + ] + ], +) +async def test_amoderation(content): + moderation = Moderation() + results = await moderation.amoderation(content=content) + assert isinstance(results, list) + assert len(results) == len(content) diff --git a/webui.py b/webui.py deleted file mode 100644 index e69de29bb..000000000 From 9af9461b4f7b4a1a41e1c93ad448dea81d354003 Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 19:40:41 +0800 Subject: [PATCH 20/30] =?UTF-8?q?=E6=96=B0=E4=BF=AE=E6=94=B9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .devcontainer/README.md | 42 +- .devcontainer/devcontainer.json | 40 +- .devcontainer/docker-compose.yaml | 4 +- .pre-commit-config.yaml | 10 +- README.md | 129 ++- config/config.yaml | 10 +- config/puppeteer-config.json | 8 +- docs/FAQ-EN.md | 225 ++-- docs/README_CN.md | 22 +- docs/README_JA.md | 28 +- docs/ROADMAP.md | 109 +- .../resources/competitive_analysis.svg | 129 ++- .../resources/data_api_design.svg | 1021 ++++++++++++++++- .../content_rec_sys/resources/seq_flow.svg | 343 +++++- .../resources/competitive_analysis.svg | 129 ++- .../resources/data_api_design.svg | 632 +++++++++- .../llmops_framework/resources/seq_flow.svg | 324 +++++- .../resources/competitive_analysis.svg | 129 ++- .../resources/data_api_design.svg | 948 ++++++++++++++- .../match3_puzzle_game/resources/seq_flow.svg | 426 ++++++- .../resources/competitive_analysis.svg | 117 +- .../resources/data_api_design.svg | 204 +++- .../resources/seq_flow.svg | 220 +++- .../resources/competitive_analysis.svg | 129 ++- .../pyrogue/resources/data_api_design.svg | 748 +++++++++++- .../workspace/pyrogue/resources/seq_flow.svg | 355 +++++- .../resources/competitive_analysis.svg | 129 ++- .../resources/data_api_design.svg | 516 ++++++++- .../resources/seq_flow.svg | 322 +++++- examples/agent_creator.py | 22 +- examples/build_customized_agent.py | 30 +- examples/debate.py | 28 +- examples/search_with_specific_engine.py | 5 +- examples/sk_agent.py | 1 - examples/use_off_the_shelf_agent.py | 4 +- examples/write_tutorial.py | 1 - metagpt/_compat.py | 2 + metagpt/actions/action.py | 12 +- metagpt/actions/action_output.py | 1 - metagpt/actions/add_requirement.py | 1 + metagpt/actions/clone_function.py | 2 +- metagpt/actions/debug_error.py | 10 +- metagpt/actions/design_api_review.py | 1 - metagpt/actions/design_filenames.py | 1 - metagpt/actions/detail_mining.py | 2 +- metagpt/actions/prepare_interview.py | 2 +- metagpt/actions/research.py | 61 +- metagpt/actions/run_code.py | 2 +- metagpt/actions/search_and_summarize.py | 2 - metagpt/actions/write_code.py | 4 +- metagpt/actions/write_code_review.py | 4 +- metagpt/actions/write_docstring.py | 8 +- metagpt/actions/write_prd_review.py | 1 - metagpt/actions/write_tutorial.py | 1 - metagpt/config.py | 4 +- metagpt/const.py | 6 +- metagpt/document_store/base_store.py | 1 - metagpt/document_store/chromadb_store.py | 1 + metagpt/document_store/document.py | 1 - metagpt/document_store/qdrant_store.py | 22 +- metagpt/inspect_module.py | 2 +- metagpt/llm.py | 1 + metagpt/logs.py | 2 + metagpt/manager.py | 2 +- metagpt/memory/__init__.py | 3 +- metagpt/memory/longterm_memory.py | 1 - metagpt/memory/memory.py | 1 - metagpt/memory/memory_storage.py | 5 +- metagpt/prompts/decompose.py | 1 - metagpt/prompts/generate_skill.md | 5 +- metagpt/prompts/sales.py | 17 +- metagpt/prompts/summarize.py | 4 - metagpt/prompts/tutorial_assistant.py | 2 +- metagpt/prompts/use_lib_sop.py | 1 - metagpt/provider/__init__.py | 1 - metagpt/provider/anthropic_api.py | 1 - metagpt/provider/base_chatbot.py | 1 - metagpt/provider/base_gpt_api.py | 1 - metagpt/provider/openai_api.py | 7 +- metagpt/provider/spark_api.py | 57 +- metagpt/roles/__init__.py | 15 +- metagpt/roles/architect.py | 10 +- metagpt/roles/customer_service.py | 1 - metagpt/roles/engineer.py | 14 +- metagpt/roles/product_manager.py | 10 +- metagpt/roles/project_manager.py | 10 +- metagpt/roles/prompt.py | 1 + metagpt/roles/qa_engineer.py | 12 +- metagpt/roles/researcher.py | 16 +- metagpt/roles/role.py | 9 +- metagpt/roles/sales.py | 1 - metagpt/roles/seacher.py | 14 +- metagpt/roles/sk_agent.py | 12 +- metagpt/roles/tutorial_assistant.py | 12 +- metagpt/schema.py | 3 + .../skills/WriterSkill/Brainstorm/config.json | 4 +- metagpt/software_company.py | 1 - metagpt/tools/__init__.py | 1 - metagpt/tools/code_interpreter.py | 14 +- metagpt/tools/prompt_writer.py | 1 + metagpt/tools/sd_engine.py | 16 +- metagpt/tools/search_engine.py | 20 +- metagpt/tools/search_engine_ddg.py | 36 +- metagpt/tools/search_engine_googleapi.py | 10 +- metagpt/tools/translator.py | 2 +- metagpt/tools/web_browser_engine.py | 8 +- .../tools/web_browser_engine_playwright.py | 11 +- metagpt/tools/web_browser_engine_selenium.py | 14 +- metagpt/utils/__init__.py | 1 - metagpt/utils/common.py | 6 +- metagpt/utils/custom_decoder.py | 42 +- metagpt/utils/file.py | 4 +- metagpt/utils/highlight.py | 2 +- metagpt/utils/mermaid.py | 1 - metagpt/utils/mmdc_ink.py | 4 +- metagpt/utils/mmdc_playwright.py | 18 +- metagpt/utils/mmdc_pyppeteer.py | 29 +- metagpt/utils/parse_html.py | 4 +- metagpt/utils/pycst.py | 15 +- metagpt/utils/read_document.py | 1 + metagpt/utils/singleton.py | 1 - metagpt/utils/special_tokens.py | 2 +- metagpt/utils/text.py | 19 +- metagpt/utils/token_counter.py | 1 - requirements.txt | 1 + startup.py | 24 +- tests/conftest.py | 4 +- tests/metagpt/actions/mock.py | 3 - tests/metagpt/actions/test_clone_function.py | 6 +- tests/metagpt/actions/test_debug_error.py | 6 +- tests/metagpt/actions/test_detail_mining.py | 4 +- tests/metagpt/actions/test_ui_design.py | 10 +- .../metagpt/actions/test_write_code_review.py | 1 - .../document_store/test_chromadb_store.py | 4 +- .../document_store/test_lancedb_store.py | 19 +- tests/metagpt/memory/test_longterm_memory.py | 6 +- tests/metagpt/memory/test_memory_storage.py | 8 +- tests/metagpt/provider/test_xinghuo_api.py | 9 +- tests/metagpt/roles/mock.py | 51 +- tests/metagpt/roles/test_engineer.py | 2 +- tests/metagpt/roles/test_researcher.py | 2 +- .../metagpt/roles/test_tutorial_assistant.py | 2 +- tests/metagpt/roles/test_ui.py | 3 +- tests/metagpt/roles/ui_role.py | 12 +- tests/metagpt/test_environment.py | 3 +- tests/metagpt/tools/test_code_interpreter.py | 5 +- tests/metagpt/tools/test_search_engine.py | 5 +- tests/metagpt/utils/test_custom_decoder.py | 1 - tests/metagpt/utils/test_file.py | 1 - tests/metagpt/utils/test_output_parser.py | 51 +- tests/metagpt/utils/test_parse_html.py | 6 +- tests/metagpt/utils/test_pycst.py | 1 - 152 files changed, 7692 insertions(+), 792 deletions(-) diff --git a/.devcontainer/README.md b/.devcontainer/README.md index dd088aab1..5af5bfc90 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -1,39 +1,53 @@ # Dev container -This project includes a [dev container](https://containers.dev/), which lets you use a container as a full-featured dev environment. +This project includes a [dev container](https://containers.dev/), which lets you use a container as a full-featured dev +environment. -You can use the dev container configuration in this folder to build and start running MetaGPT locally! For more, refer to the main README under the home directory. -You can use it in [GitHub Codespaces](https://github.com/features/codespaces) or the [VS Code Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers). +You can use the dev container configuration in this folder to build and start running MetaGPT locally! For more, refer +to the main README under the home directory. +You can use it in [GitHub Codespaces](https://github.com/features/codespaces) or +the [VS Code Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers). ## GitHub Codespaces + Open in GitHub Codespaces You may use the button above to open this repo in a Codespace -For more info, check out the [GitHub documentation](https://docs.github.com/en/free-pro-team@latest/github/developing-online-with-codespaces/creating-a-codespace#creating-a-codespace). - +For more info, check out +the [GitHub documentation](https://docs.github.com/en/free-pro-team@latest/github/developing-online-with-codespaces/creating-a-codespace#creating-a-codespace). + ## VS Code Dev Containers + Open in Dev Containers -Note: If you click this link you will open the main repo and not your local cloned repo, you can use this link and replace with your username and cloned repo name: +Note: If you click this link you will open the main repo and not your local cloned repo, you can use this link and +replace with your username and cloned repo name: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/geekan/MetaGPT - -If you already have VS Code and Docker installed, you can use the button above to get started. This will cause VS Code to automatically install the Dev Containers extension if needed, clone the source code into a container volume, and spin up a dev container for use. +If you already have VS Code and Docker installed, you can use the button above to get started. This will cause VS Code +to automatically install the Dev Containers extension if needed, clone the source code into a container volume, and spin +up a dev container for use. You can also follow these steps to open this repo in a container using the VS Code Dev Containers extension: -1. If this is your first time using a development container, please ensure your system meets the pre-reqs (i.e. have Docker installed) in the [getting started steps](https://aka.ms/vscode-remote/containers/getting-started). +1. If this is your first time using a development container, please ensure your system meets the pre-reqs (i.e. have + Docker installed) in the [getting started steps](https://aka.ms/vscode-remote/containers/getting-started). 2. Open a locally cloned copy of the code: - - Fork and Clone this repository to your local filesystem. - - Press F1 and select the **Dev Containers: Open Folder in Container...** command. - - Select the cloned copy of this folder, wait for the container to start, and try things out! + - Fork and Clone this repository to your local filesystem. + - Press F1 and select the **Dev Containers: Open Folder in Container...** command. + - Select the cloned copy of this folder, wait for the container to start, and try things out! You can learn more in the [Dev Containers documentation](https://code.visualstudio.com/docs/devcontainers/containers). ## Tips and tricks -* If you are working with the same repository folder in a container and Windows, you'll want consistent line endings (otherwise you may see hundreds of changes in the SCM view). The `.gitattributes` file in the root of this repo will disable line ending conversion and should prevent this. See [tips and tricks](https://code.visualstudio.com/docs/devcontainers/tips-and-tricks#_resolving-git-line-ending-issues-in-containers-resulting-in-many-modified-files) for more info. -* If you'd like to review the contents of the image used in this dev container, you can check it out in the [devcontainers/images](https://github.com/devcontainers/images/tree/main/src/python) repo. +* If you are working with the same repository folder in a container and Windows, you'll want consistent line endings ( + otherwise you may see hundreds of changes in the SCM view). The `.gitattributes` file in the root of this repo will + disable line ending conversion and should prevent this. + See [tips and tricks](https://code.visualstudio.com/docs/devcontainers/tips-and-tricks#_resolving-git-line-ending-issues-in-containers-resulting-in-many-modified-files) + for more info. +* If you'd like to review the contents of the image used in this dev container, you can check it out in + the [devcontainers/images](https://github.com/devcontainers/images/tree/main/src/python) repo. diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index a774d0ed1..6ad3b598d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,27 +1,25 @@ // For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/python { - "name": "Python 3", - // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/python:0-3.11", + "name": "Python 3", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/python:0-3.11", + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, - // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, + // Configure tool-specific properties. + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + "settings": {}, + "extensions": [ + "streetsidesoftware.code-spell-checker" + ] + } + }, + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "./.devcontainer/postCreateCommand.sh" - // Configure tool-specific properties. - "customizations": { - // Configure properties specific to VS Code. - "vscode": { - "settings": {}, - "extensions": [ - "streetsidesoftware.code-spell-checker" - ] - } - }, - - // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "./.devcontainer/postCreateCommand.sh" - - // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. - // "remoteUser": "root" + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" } diff --git a/.devcontainer/docker-compose.yaml b/.devcontainer/docker-compose.yaml index a9988b1f3..2f0116bf8 100644 --- a/.devcontainer/docker-compose.yaml +++ b/.devcontainer/docker-compose.yaml @@ -5,10 +5,10 @@ services: dockerfile: Dockerfile context: .. volumes: - # Update this to wherever you want VS Code to mount the folder of your project + # Update this to wherever you want VS Code to mount the folder of your project - ..:/workspaces:cached networks: - - metagpt-network + - metagpt-network # environment: # MONGO_ROOT_USERNAME: root # MONGO_ROOT_PASSWORD: example123 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b1892a709..db11ddbb5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,11 +8,11 @@ repos: rev: 5.11.5 hooks: - id: isort - args: ['--profile', 'black'] + args: [ '--profile', 'black' ] exclude: >- - (?x)^( - .*__init__\.py$ - ) + (?x)^( + .*__init__\.py$ + ) - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. @@ -24,4 +24,4 @@ repos: rev: 23.3.0 hooks: - id: black - args: ['--line-length', '120'] \ No newline at end of file + args: [ '--line-length', '120' ] \ No newline at end of file diff --git a/README.md b/README.md index c326190b0..19869a34f 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,11 @@ # MetaGPT: The Multi-Agent Framework Hugging Face

-1. MetaGPT takes a **one line requirement** as input and outputs **user stories / competitive analysis / requirements / data structures / APIs / documents, etc.** -2. Internally, MetaGPT includes **product managers / architects / project managers / engineers.** It provides the entire process of a **software company along with carefully orchestrated SOPs.** - 1. `Code = SOP(Team)` is the core philosophy. We materialize SOP and apply it to teams composed of LLMs. +1. MetaGPT takes a **one line requirement** as input and outputs **user stories / competitive analysis / requirements / + data structures / APIs / documents, etc.** +2. Internally, MetaGPT includes **product managers / architects / project managers / engineers.** It provides the entire + process of a **software company along with carefully orchestrated SOPs.** + 1. `Code = SOP(Team)` is the core philosophy. We materialize SOP and apply it to teams composed of LLMs. ![A software company consists of LLM-based roles](docs/resources/software_company_cd.jpeg) @@ -35,21 +37,17 @@ # MetaGPT: The Multi-Agent Framework ## MetaGPT's Abilities - https://github.com/geekan/MetaGPT/assets/34952977/34345016-5d13-489d-b9f9-b82ace413419 - - ## Examples (fully generated by GPT-4) -For example, if you type `python startup.py "Design a RecSys like Toutiao"`, you would get many outputs, one of them is data & api design +For example, if you type `python startup.py "Design a RecSys like Toutiao"`, you would get many outputs, one of them is +data & api design ![Jinri Toutiao Recsys Data & API Design](docs/resources/workspace/content_rec_sys/resources/data_api_design.png) -It costs approximately **$0.2** (in GPT-4 API fees) to generate one example with analysis and design, and around **$2.0** for a full project. - - - +It costs approximately **$0.2** (in GPT-4 API fees) to generate one example with analysis and design, and around **$2.0 +** for a full project. ## Installation @@ -75,10 +73,12 @@ # Step 3: Clone the repository to your local machine, and install it. **Note:** -- If already have Chrome, Chromium, or MS Edge installed, you can skip downloading Chromium by setting the environment variable +- If already have Chrome, Chromium, or MS Edge installed, you can skip downloading Chromium by setting the environment + variable `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` to `true`. -- Some people are [having issues](https://github.com/mermaidjs/mermaid.cli/issues/15) installing this tool globally. Installing it locally is an alternative solution, +- Some people are [having issues](https://github.com/mermaidjs/mermaid.cli/issues/15) installing this tool globally. + Installing it locally is an alternative solution, ```bash npm install @mermaid-js/mermaid-cli @@ -91,72 +91,75 @@ # Step 3: Clone the repository to your local machine, and install it. MMDC: "./node_modules/.bin/mmdc" ``` -- if `pip install -e.` fails with error `[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'`, try instead running `pip install -e. --user` +- if `pip install -e.` fails with + error `[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'`, + try instead running `pip install -e. --user` -- To convert Mermaid charts to SVG, PNG, and PDF formats. In addition to the Node.js version of Mermaid-CLI, you now have the option to use Python version Playwright, pyppeteer or mermaid.ink for this task. +- To convert Mermaid charts to SVG, PNG, and PDF formats. In addition to the Node.js version of Mermaid-CLI, you now + have the option to use Python version Playwright, pyppeteer or mermaid.ink for this task. - - Playwright - - **Install Playwright** + - Playwright + - **Install Playwright** - ```bash - pip install playwright - ``` + ```bash + pip install playwright + ``` - - **Install the Required Browsers** + - **Install the Required Browsers** - to support PDF conversion, please install Chrominum. + to support PDF conversion, please install Chrominum. - ```bash - playwright install --with-deps chromium - ``` + ```bash + playwright install --with-deps chromium + ``` - - **modify `config.yaml`** + - **modify `config.yaml`** - uncomment MERMAID_ENGINE from config.yaml and change it to `playwright` + uncomment MERMAID_ENGINE from config.yaml and change it to `playwright` - ```yaml - MERMAID_ENGINE: playwright - ``` + ```yaml + MERMAID_ENGINE: playwright + ``` - - pyppeteer - - **Install pyppeteer** + - pyppeteer + - **Install pyppeteer** - ```bash - pip install pyppeteer - ``` + ```bash + pip install pyppeteer + ``` - - **Use your own Browsers** + - **Use your own Browsers** - pyppeteer alow you use installed browsers, please set the following envirment - - ```bash - export PUPPETEER_EXECUTABLE_PATH = /path/to/your/chromium or edge or chrome - ``` + pyppeteer alow you use installed browsers, please set the following envirment - please do not use this command to install browser, it is too old + ```bash + export PUPPETEER_EXECUTABLE_PATH = /path/to/your/chromium or edge or chrome + ``` - ```bash - pyppeteer-install - ``` + please do not use this command to install browser, it is too old - - **modify `config.yaml`** + ```bash + pyppeteer-install + ``` - uncomment MERMAID_ENGINE from config.yaml and change it to `pyppeteer` + - **modify `config.yaml`** - ```yaml - MERMAID_ENGINE: pyppeteer - ``` + uncomment MERMAID_ENGINE from config.yaml and change it to `pyppeteer` - - mermaid.ink - - **modify `config.yaml`** + ```yaml + MERMAID_ENGINE: pyppeteer + ``` - uncomment MERMAID_ENGINE from config.yaml and change it to `ink` + - mermaid.ink + - **modify `config.yaml`** - ```yaml - MERMAID_ENGINE: ink - ``` + uncomment MERMAID_ENGINE from config.yaml and change it to `ink` - Note: this method does not support pdf export. + ```yaml + MERMAID_ENGINE: ink + ``` + + Note: this method does not support pdf export. ### Installation by Docker @@ -212,7 +215,7 @@ # Copy the configuration file and make the necessary modifications. ``` | Variable Name | config/key.yaml | env | -| ------------------------------------------ | ----------------------------------------- | ----------------------------------------------- | +|--------------------------------------------|-------------------------------------------|-------------------------------------------------| | OPENAI_API_KEY # Replace with your own key | OPENAI_API_KEY: "sk-..." | export OPENAI_API_KEY="sk-..." | | OPENAI_API_BASE # Optional | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | @@ -286,11 +289,13 @@ ### Code walkthrough ## QuickStart -It is difficult to install and configure the local environment for some users. The following tutorials will allow you to quickly experience the charm of MetaGPT. +It is difficult to install and configure the local environment for some users. The following tutorials will allow you to +quickly experience the charm of MetaGPT. - [MetaGPT quickstart](https://deepwisdom.feishu.cn/wiki/CyY9wdJc4iNqArku3Lncl4v8n2b) Try it on Huggingface Space + - https://huggingface.co/spaces/deepwisdom/MetaGPT ## Citation @@ -310,10 +315,12 @@ ## Citation ## Contact Information -If you have any questions or feedback about this project, please feel free to contact us. We highly appreciate your suggestions! +If you have any questions or feedback about this project, please feel free to contact us. We highly appreciate your +suggestions! - **Email:** alexanderwu@fuzhi.ai -- **GitHub Issues:** For more technical inquiries, you can also create a new issue in our [GitHub repository](https://github.com/geekan/metagpt/issues). +- **GitHub Issues:** For more technical inquiries, you can also create a new issue in + our [GitHub repository](https://github.com/geekan/metagpt/issues). We will respond to all questions within 2-3 business days. diff --git a/config/config.yaml b/config/config.yaml index de6254898..583f25433 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -22,11 +22,11 @@ RPM: 10 #DOMAIN : "generalv2" #SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat" -XINGHUO_APPID : "ae5e30f4" -XINGHUO_API_SECRET : "MDhlOWE2NmFhOWMxZWRkOTdlYjY2Njk1" -XINGHUO_API_KEY : "97b635fe5927d34a857333e11d15f29f" -DOMAIN : "generalv2" -SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat" +XINGHUO_APPID: "ae5e30f4" +XINGHUO_API_SECRET: "MDhlOWE2NmFhOWMxZWRkOTdlYjY2Njk1" +XINGHUO_API_KEY: "97b635fe5927d34a857333e11d15f29f" +DOMAIN: "generalv2" +SPARK_URL: "ws://spark-api.xf-yun.com/v2.1/chat" #### if AZURE, check https://github.com/openai/openai-cookbook/blob/main/examples/azure/chat.ipynb #### You can use ENGINE or DEPLOYMENT mode diff --git a/config/puppeteer-config.json b/config/puppeteer-config.json index 7b2851c29..da5d808d9 100644 --- a/config/puppeteer-config.json +++ b/config/puppeteer-config.json @@ -1,6 +1,6 @@ { - "executablePath": "/usr/bin/chromium", - "args": [ - "--no-sandbox" - ] + "executablePath": "/usr/bin/chromium", + "args": [ + "--no-sandbox" + ] } \ No newline at end of file diff --git a/docs/FAQ-EN.md b/docs/FAQ-EN.md index 4c86ed150..fdd5d846b 100644 --- a/docs/FAQ-EN.md +++ b/docs/FAQ-EN.md @@ -1,4 +1,5 @@ -Our vision is to [extend human life](https://github.com/geekan/HowToLiveLonger) and [reduce working hours](https://github.com/geekan/MetaGPT/). +Our vision is to [extend human life](https://github.com/geekan/HowToLiveLonger) +and [reduce working hours](https://github.com/geekan/MetaGPT/). 1. ### Convenient Link for Sharing this Document: @@ -10,30 +11,36 @@ -1. Code:https://github.com/geekan/MetaGPT +1. Code:https://github.com/geekan/MetaGPT -1. Roadmap:https://github.com/geekan/MetaGPT/blob/main/docs/ROADMAP.md +1. Roadmap:https://github.com/geekan/MetaGPT/blob/main/docs/ROADMAP.md -1. EN +1. EN - 1. Demo Video: [MetaGPT: Multi-Agent AI Programming Framework](https://www.youtube.com/watch?v=8RNzxZBTW8M) - 2. Tutorial: [MetaGPT: Deploy POWERFUL Autonomous Ai Agents BETTER Than SUPERAGI!](https://www.youtube.com/watch?v=q16Gi9pTG_M&t=659s) + 1. Demo Video: [MetaGPT: Multi-Agent AI Programming Framework](https://www.youtube.com/watch?v=8RNzxZBTW8M) + 2. + Tutorial: [MetaGPT: Deploy POWERFUL Autonomous Ai Agents BETTER Than SUPERAGI!](https://www.youtube.com/watch?v=q16Gi9pTG_M&t=659s) 3. Author's thoughts video(EN): [MetaGPT Matthew Berman](https://youtu.be/uT75J_KG_aY?si=EgbfQNAwD8F5Y1Ak) -1. CN +1. CN + + 1. Demo + Video: [MetaGPT:一行代码搭建你的虚拟公司_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1NP411C7GW/?spm_id_from=333.999.0.0&vd_source=735773c218b47da1b4bd1b98a33c5c77) + 1. + Tutorial: [一个提示词写游戏 Flappy bird, 比AutoGPT强10倍的MetaGPT,最接近AGI的AI项目](https://youtu.be/Bp95b8yIH5c) + 2. Author's thoughts video( + CN): [MetaGPT作者深度解析直播回放_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1Ru411V7XL/?spm_id_from=333.337.search-card.all.click) - 1. Demo Video: [MetaGPT:一行代码搭建你的虚拟公司_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1NP411C7GW/?spm_id_from=333.999.0.0&vd_source=735773c218b47da1b4bd1b98a33c5c77) - 1. Tutorial: [一个提示词写游戏 Flappy bird, 比AutoGPT强10倍的MetaGPT,最接近AGI的AI项目](https://youtu.be/Bp95b8yIH5c) - 2. Author's thoughts video(CN): [MetaGPT作者深度解析直播回放_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1Ru411V7XL/?spm_id_from=333.337.search-card.all.click) - 3. ### How to become a contributor? -1. Choose a task from the Roadmap (or you can propose one). By submitting a PR, you can become a contributor and join the dev team. -1. Current contributors come from backgrounds including: ByteDance AI Lab/DingDong/Didi/Xiaohongshu, Tencent/Baidu/MSRA/TikTok/BloomGPT Infra/Bilibili/CUHK/HKUST/CMU/UCB +1. Choose a task from the Roadmap (or you can propose one). By submitting a PR, you can become a contributor and join + the dev team. +1. Current contributors come from backgrounds including: ByteDance AI Lab/DingDong/Didi/Xiaohongshu, + Tencent/Baidu/MSRA/TikTok/BloomGPT Infra/Bilibili/CUHK/HKUST/CMU/UCB @@ -41,11 +48,13 @@ MetaGPT Community - The position of Chief Evangelist rotates on a monthly basis. The primary responsibilities include: -1. Maintaining community FAQ documents, announcements, Github resources/READMEs. -1. Responding to, answering, and distributing community questions within an average of 30 minutes, including on platforms like Github Issues, Discord and WeChat. -1. Upholding a community atmosphere that is enthusiastic, genuine, and friendly. -1. Encouraging everyone to become contributors and participate in projects that are closely related to achieving AGI (Artificial General Intelligence). -1. (Optional) Organizing small-scale events, such as hackathons. +1. Maintaining community FAQ documents, announcements, Github resources/READMEs. +1. Responding to, answering, and distributing community questions within an average of 30 minutes, including on + platforms like Github Issues, Discord and WeChat. +1. Upholding a community atmosphere that is enthusiastic, genuine, and friendly. +1. Encouraging everyone to become contributors and participate in projects that are closely related to achieving AGI ( + Artificial General Intelligence). +1. (Optional) Organizing small-scale events, such as hackathons. @@ -53,131 +62,165 @@ -1. Experience with the generated repo code: +1. Experience with the generated repo code: - 1. https://github.com/geekan/MetaGPT/releases/tag/v0.1.0 + 1. https://github.com/geekan/MetaGPT/releases/tag/v0.1.0 -1. Code truncation/ Parsing failure: +1. Code truncation/ Parsing failure: - 1. Check if it's due to exceeding length. Consider using the gpt-3.5-turbo-16k or other long token versions. + 1. Check if it's due to exceeding length. Consider using the gpt-3.5-turbo-16k or other long token versions. -1. Success rate: +1. Success rate: - 1. There hasn't been a quantitative analysis yet, but the success rate of code generated by GPT-4 is significantly higher than that of gpt-3.5-turbo. + 1. There hasn't been a quantitative analysis yet, but the success rate of code generated by GPT-4 is significantly + higher than that of gpt-3.5-turbo. -1. Support for incremental, differential updates (if you wish to continue a half-done task): +1. Support for incremental, differential updates (if you wish to continue a half-done task): - 1. Several prerequisite tasks are listed on the ROADMAP. + 1. Several prerequisite tasks are listed on the ROADMAP. -1. Can existing code be loaded? +1. Can existing code be loaded? - 1. It's not on the ROADMAP yet, but there are plans in place. It just requires some time. + 1. It's not on the ROADMAP yet, but there are plans in place. It just requires some time. -1. Support for multiple programming languages and natural languages? +1. Support for multiple programming languages and natural languages? - 1. It's listed on ROADMAP. + 1. It's listed on ROADMAP. -1. Want to join the contributor team? How to proceed? +1. Want to join the contributor team? How to proceed? - 1. Merging a PR will get you into the contributor's team. The main ongoing tasks are all listed on the ROADMAP. + 1. Merging a PR will get you into the contributor's team. The main ongoing tasks are all listed on the ROADMAP. -1. PRD stuck / unable to access/ connection interrupted +1. PRD stuck / unable to access/ connection interrupted - 1. The official OPENAI_API_BASE address is `https://api.openai.com/v1` - 1. If the official OPENAI_API_BASE address is inaccessible in your environment (this can be verified with curl), it's recommended to configure using the reverse proxy OPENAI_API_BASE provided by libraries such as openai-forward. For instance, `OPENAI_API_BASE: "``https://api.openai-forward.com/v1``"` - 1. If the official OPENAI_API_BASE address is inaccessible in your environment (again, verifiable via curl), another option is to configure the OPENAI_PROXY parameter. This way, you can access the official OPENAI_API_BASE via a local proxy. If you don't need to access via a proxy, please do not enable this configuration; if accessing through a proxy is required, modify it to the correct proxy address. Note that when OPENAI_PROXY is enabled, don't set OPENAI_API_BASE. - 1. Note: OpenAI's default API design ends with a v1. An example of the correct configuration is: `OPENAI_API_BASE: "``https://api.openai.com/v1``"` + 1. The official OPENAI_API_BASE address is `https://api.openai.com/v1` + 1. If the official OPENAI_API_BASE address is inaccessible in your environment (this can be verified with curl), + it's recommended to configure using the reverse proxy OPENAI_API_BASE provided by libraries such as + openai-forward. For instance, `OPENAI_API_BASE: "``https://api.openai-forward.com/v1``"` + 1. If the official OPENAI_API_BASE address is inaccessible in your environment (again, verifiable via curl), another + option is to configure the OPENAI_PROXY parameter. This way, you can access the official OPENAI_API_BASE via a + local proxy. If you don't need to access via a proxy, please do not enable this configuration; if accessing + through a proxy is required, modify it to the correct proxy address. Note that when OPENAI_PROXY is enabled, + don't set OPENAI_API_BASE. + 1. Note: OpenAI's default API design ends with a v1. An example of the correct configuration + is: `OPENAI_API_BASE: "``https://api.openai.com/v1``"` -1. Absolutely! How can I assist you today? +1. Absolutely! How can I assist you today? - 1. Did you use Chi or a similar service? These services are prone to errors, and it seems that the error rate is higher when consuming 3.5k-4k tokens in GPT-4 + 1. Did you use Chi or a similar service? These services are prone to errors, and it seems that the error rate is + higher when consuming 3.5k-4k tokens in GPT-4 -1. What does Max token mean? +1. What does Max token mean? - 1. It's a configuration for OpenAI's maximum response length. If the response exceeds the max token, it will be truncated. + 1. It's a configuration for OpenAI's maximum response length. If the response exceeds the max token, it will be + truncated. -1. How to change the investment amount? +1. How to change the investment amount? - 1. You can view all commands by typing `python startup.py --help` + 1. You can view all commands by typing `python startup.py --help` -1. Which version of Python is more stable? +1. Which version of Python is more stable? - 1. python3.9 / python3.10 + 1. python3.9 / python3.10 -1. Can't use GPT-4, getting the error "The model gpt-4 does not exist." +1. Can't use GPT-4, getting the error "The model gpt-4 does not exist." - 1. OpenAI's official requirement: You can use GPT-4 only after spending $1 on OpenAI. - 1. Tip: Run some data with gpt-3.5-turbo (consume the free quota and $1), and then you should be able to use gpt-4. + 1. OpenAI's official requirement: You can use GPT-4 only after spending $1 on OpenAI. + 1. Tip: Run some data with gpt-3.5-turbo (consume the free quota and $1), and then you should be able to use gpt-4. -1. Can games whose code has never been seen before be written? +1. Can games whose code has never been seen before be written? - 1. Refer to the README. The recommendation system of Toutiao is one of the most complex systems in the world currently. Although it's not on GitHub, many discussions about it exist online. If it can visualize these, it suggests it can also summarize these discussions and convert them into code. The prompt would be something like "write a recommendation system similar to Toutiao". Note: this was approached in earlier versions of the software. The SOP of those versions was different; the current one adopts Elon Musk's five-step work method, emphasizing trimming down requirements as much as possible. + 1. Refer to the README. The recommendation system of Toutiao is one of the most complex systems in the world + currently. Although it's not on GitHub, many discussions about it exist online. If it can visualize these, it + suggests it can also summarize these discussions and convert them into code. The prompt would be something like " + write a recommendation system similar to Toutiao". Note: this was approached in earlier versions of the software. + The SOP of those versions was different; the current one adopts Elon Musk's five-step work method, emphasizing + trimming down requirements as much as possible. -1. Under what circumstances would there typically be errors? +1. Under what circumstances would there typically be errors? - 1. More than 500 lines of code: some function implementations may be left blank. - 1. When using a database, it often gets the implementation wrong — since the SQL database initialization process is usually not in the code. - 1. With more lines of code, there's a higher chance of false impressions, leading to calls to non-existent APIs. + 1. More than 500 lines of code: some function implementations may be left blank. + 1. When using a database, it often gets the implementation wrong — since the SQL database initialization process is + usually not in the code. + 1. With more lines of code, there's a higher chance of false impressions, leading to calls to non-existent APIs. -1. Instructions for using SD Skills/UI Role: +1. Instructions for using SD Skills/UI Role: - 1. Currently, there is a test script located in /tests/metagpt/roles. The file ui_role provides the corresponding code implementation. For testing, you can refer to the test_ui in the same directory. + 1. Currently, there is a test script located in /tests/metagpt/roles. The file ui_role provides the corresponding + code implementation. For testing, you can refer to the test_ui in the same directory. - 1. The UI role takes over from the product manager role, extending the output from the 【UI Design draft】 provided by the product manager role. The UI role has implemented the UIDesign Action. Within the run of UIDesign, it processes the respective context, and based on the set template, outputs the UI. The output from the UI role includes: + 1. The UI role takes over from the product manager role, extending the output from the 【UI Design draft】 provided by + the product manager role. The UI role has implemented the UIDesign Action. Within the run of UIDesign, it + processes the respective context, and based on the set template, outputs the UI. The output from the UI role + includes: - 1. UI Design Description:Describes the content to be designed and the design objectives. - 1. Selected Elements:Describes the elements in the design that need to be illustrated. - 1. HTML Layout:Outputs the HTML code for the page. - 1. CSS Styles (styles.css):Outputs the CSS code for the page. + 1. UI Design Description:Describes the content to be designed and the design objectives. + 1. Selected Elements:Describes the elements in the design that need to be illustrated. + 1. HTML Layout:Outputs the HTML code for the page. + 1. CSS Styles (styles.css):Outputs the CSS code for the page. - 1. Currently, the SD skill is a tool invoked by UIDesign. It instantiates the SDEngine, with specific code found in metagpt/tools/sd_engine. + 1. Currently, the SD skill is a tool invoked by UIDesign. It instantiates the SDEngine, with specific code found in + metagpt/tools/sd_engine. - 1. Configuration instructions for SD Skills: The SD interface is currently deployed based on *https://github.com/AUTOMATIC1111/stable-diffusion-webui* **For environmental configurations and model downloads, please refer to the aforementioned GitHub repository. To initiate the SD service that supports API calls, run the command specified in cmd with the parameter nowebui, i.e., + 1. Configuration instructions for SD Skills: The SD interface is currently deployed based on + *https://github.com/AUTOMATIC1111/stable-diffusion-webui* **For environmental configurations and model downloads, + please refer to the aforementioned GitHub repository. To initiate the SD service that supports API calls, run the + command specified in cmd with the parameter nowebui, i.e., 1. > python webui.py --enable-insecure-extension-access --port xxx --no-gradio-queue --nowebui - 1.     Once it runs without errors, the interface will be accessible after approximately 1 minute when the model finishes loading. - 1. Configure SD_URL and SD_T2I_API in the config.yaml/key.yaml files. - 1. ![](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/065295a67b0b4feea665d1372722d49d~tplv-k3u1fbpfcp-zoom-1.image) - 1.     SD_URL is the deployed server/machine IP, and Port is the specified port above, defaulting to 7860. + 1. Once it runs without errors, the interface will be accessible after approximately 1 minute when the model + finishes loading. + 1. Configure SD_URL and SD_T2I_API in the config.yaml/key.yaml files. + 1. ![](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/065295a67b0b4feea665d1372722d49d~tplv-k3u1fbpfcp-zoom-1.image) + 1. SD_URL is the deployed server/machine IP, and Port is the specified port above, defaulting to 7860. 1. > SD_URL: IP:Port -1. An error occurred during installation: "Another program is using this file...egg". +1. An error occurred during installation: "Another program is using this file...egg". - 1. Delete the file and try again. - 1. Or manually execute`pip install -r requirements.txt` + 1. Delete the file and try again. + 1. Or manually execute`pip install -r requirements.txt` -1. The origin of the name MetaGPT? +1. The origin of the name MetaGPT? - 1. The name was derived after iterating with GPT-4 over a dozen rounds. GPT-4 scored and suggested it. + 1. The name was derived after iterating with GPT-4 over a dozen rounds. GPT-4 scored and suggested it. -1. Is there a more step-by-step installation tutorial? +1. Is there a more step-by-step installation tutorial? - 1. Youtube(CN):[一个提示词写游戏 Flappy bird, 比AutoGPT强10倍的MetaGPT,最接近AGI的AI项目=一个软件公司产品经理+程序员](https://youtu.be/Bp95b8yIH5c) - 1. Youtube(EN)https://www.youtube.com/watch?v=q16Gi9pTG_M&t=659s - 2. video(EN): [MetaGPT Matthew Berman](https://youtu.be/uT75J_KG_aY?si=EgbfQNAwD8F5Y1Ak) + 1. + Youtube(CN):[一个提示词写游戏 Flappy bird, 比AutoGPT强10倍的MetaGPT,最接近AGI的AI项目=一个软件公司产品经理+程序员](https://youtu.be/Bp95b8yIH5c) + 1. Youtube(EN)https://www.youtube.com/watch?v=q16Gi9pTG_M&t=659s + 2. video(EN): [MetaGPT Matthew Berman](https://youtu.be/uT75J_KG_aY?si=EgbfQNAwD8F5Y1Ak) -1. openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details +1. openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details - 1. If you haven't exhausted your free quota, set RPM to 3 or lower in the settings. - 1. If your free quota is used up, consider adding funds to your account. + 1. If you haven't exhausted your free quota, set RPM to 3 or lower in the settings. + 1. If your free quota is used up, consider adding funds to your account. -1. What does "borg" mean in n_borg? +1. What does "borg" mean in n_borg? - 1. [Wikipedia borg meaning ](https://en.wikipedia.org/wiki/Borg) - 1. The Borg civilization operates based on a hive or collective mentality, known as "the Collective." Every Borg individual is connected to the collective via a sophisticated subspace network, ensuring continuous oversight and guidance for every member. This collective consciousness allows them to not only "share the same thoughts" but also to adapt swiftly to new strategies. While individual members of the collective rarely communicate, the collective "voice" sometimes transmits aboard ships. + 1. [Wikipedia borg meaning ](https://en.wikipedia.org/wiki/Borg) + 1. The Borg civilization operates based on a hive or collective mentality, known as "the Collective." Every Borg + individual is connected to the collective via a sophisticated subspace network, ensuring continuous oversight and + guidance for every member. This collective consciousness allows them to not only "share the same thoughts" but + also to adapt swiftly to new strategies. While individual members of the collective rarely communicate, the + collective "voice" sometimes transmits aboard ships. -1. How to use the Claude API? +1. How to use the Claude API? - 1. The full implementation of the Claude API is not provided in the current code. - 1. You can use the Claude API through third-party API conversion projects like: https://github.com/jtsang4/claude-to-chatgpt + 1. The full implementation of the Claude API is not provided in the current code. + 1. You can use the Claude API through third-party API conversion projects + like: https://github.com/jtsang4/claude-to-chatgpt -1. Is Llama2 supported? +1. Is Llama2 supported? - 1. On the day Llama2 was released, some of the community members began experiments and found that output can be generated based on MetaGPT's structure. However, Llama2's context is too short to generate a complete project. Before regularly using Llama2, it's necessary to expand the context window to at least 8k. If anyone has good recommendations for expansion models or methods, please leave a comment. + 1. On the day Llama2 was released, some of the community members began experiments and found that output can be + generated based on MetaGPT's structure. However, Llama2's context is too short to generate a complete project. + Before regularly using Llama2, it's necessary to expand the context window to at least 8k. If anyone has good + recommendations for expansion models or methods, please leave a comment. -1. `mermaid-cli getElementsByTagName SyntaxError: Unexpected token '.'` +1. `mermaid-cli getElementsByTagName SyntaxError: Unexpected token '.'` - 1. Upgrade node to version 14.x or above: + 1. Upgrade node to version 14.x or above: - 1. `npm install -g n` - 1. `n stable` to install the stable version of node(v18.x) + 1. `npm install -g n` + 1. `n stable` to install the stable version of node(v18.x) diff --git a/docs/README_CN.md b/docs/README_CN.md index 7a27a0e59..e7a6413f4 100644 --- a/docs/README_CN.md +++ b/docs/README_CN.md @@ -27,7 +27,7 @@ # MetaGPT: 多智能体框架 1. MetaGPT输入**一句话的老板需求**,输出**用户故事 / 竞品分析 / 需求 / 数据结构 / APIs / 文件等** 2. MetaGPT内部包括**产品经理 / 架构师 / 项目经理 / 工程师**,它提供了一个**软件公司**的全过程与精心调配的SOP - 1. `Code = SOP(Team)` 是核心哲学。我们将SOP具象化,并且用于LLM构成的团队 + 1. `Code = SOP(Team)` 是核心哲学。我们将SOP具象化,并且用于LLM构成的团队 ![一个完全由大语言模型角色构成的软件公司](resources/software_company_cd.jpeg) @@ -37,7 +37,6 @@ ## MetaGPT 的能力 https://github.com/geekan/MetaGPT/assets/34952977/34345016-5d13-489d-b9f9-b82ace413419 - ## 示例(均由 GPT-4 生成) 例如,键入`python startup.py "写个类似今日头条的推荐系统"`并回车,你会获得一系列输出,其一是数据结构与API设计 @@ -81,7 +80,9 @@ # 第 3 步:克隆仓库到您的本地机器,并进行安装。 MMDC: "./node_modules/.bin/mmdc" ``` -- 如果`pip install -e.`失败并显示错误`[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'`,请尝试使用`pip install -e. --user`运行。 +- 如果`pip install -e.` + 失败并显示错误`[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'` + ,请尝试使用`pip install -e. --user`运行。 ### Docker安装 @@ -136,10 +137,10 @@ # 复制配置文件并进行必要的修改 cp config/config.yaml config/key.yaml ``` -| 变量名 | config/key.yaml | env | -| ----------------------------------- | ----------------------------------------- | ----------------------------------------------- | +| 变量名 | config/key.yaml | env | +|----------------------------|-------------------------------------------|-------------------------------------------------| | OPENAI_API_KEY # 用您自己的密钥替换 | OPENAI_API_KEY: "sk-..." | export OPENAI_API_KEY="sk-..." | -| OPENAI_API_BASE # 可选 | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | +| OPENAI_API_BASE # 可选 | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | ## 示例:启动一个创业公司 @@ -150,9 +151,12 @@ # 开启code review模式会花费更多的金钱, 但是会提升代码质量 ``` 运行脚本后,您可以在 `workspace/` 目录中找到您的新项目。 + ### 平台或工具的倾向性 + 可以在阐述需求时说明想要使用的平台或工具。 例如: + ```shell python startup.py "写一个基于pygame的命令行贪吃蛇" ``` @@ -205,7 +209,8 @@ ### 代码实现 你可以查看`examples`,其中有单角色(带知识库)的使用例子与仅LLM的使用例子。 ## 快速体验 -对一些用户来说,安装配置本地环境是有困难的,下面这些教程能够让你快速体验到MetaGPT的魅力。 + +对一些用户来说,安装配置本地环境是有困难的,下面这些教程能够让你快速体验到MetaGPT的魅力。 - [MetaGPT快速体验](https://deepwisdom.feishu.cn/wiki/Q8ycw6J9tiNXdHk66MRcIN8Pnlg) @@ -218,7 +223,8 @@ ## 联系信息 如果您对这个项目有任何问题或反馈,欢迎联系我们。我们非常欢迎您的建议! - **邮箱:** alexanderwu@fuzhi.ai -- **GitHub 问题:** 对于更技术性的问题,您也可以在我们的 [GitHub 仓库](https://github.com/geekan/metagpt/issues) 中创建一个新的问题。 +- **GitHub 问题:** 对于更技术性的问题,您也可以在我们的 [GitHub 仓库](https://github.com/geekan/metagpt/issues) + 中创建一个新的问题。 我们会在2-3个工作日内回复所有问题。 diff --git a/docs/README_JA.md b/docs/README_JA.md index eab69d912..5de7f5d37 100644 --- a/docs/README_JA.md +++ b/docs/README_JA.md @@ -26,8 +26,9 @@ # MetaGPT: マルチエージェントフレームワーク

1. MetaGPT は、**1 行の要件** を入力とし、**ユーザーストーリー / 競合分析 / 要件 / データ構造 / API / 文書など** を出力します。 -2. MetaGPT には、**プロダクト マネージャー、アーキテクト、プロジェクト マネージャー、エンジニア** が含まれています。MetaGPT は、**ソフトウェア会社のプロセス全体を、慎重に調整された SOP とともに提供します。** - 1. `Code = SOP(Team)` が基本理念です。私たちは SOP を具体化し、LLM で構成されるチームに適用します。 +2. MetaGPT には、**プロダクト マネージャー、アーキテクト、プロジェクト マネージャー、エンジニア** が含まれています。MetaGPT + は、**ソフトウェア会社のプロセス全体を、慎重に調整された SOP とともに提供します。** + 1. `Code = SOP(Team)` が基本理念です。私たちは SOP を具体化し、LLM で構成されるチームに適用します。 ![ソフトウェア会社は LLM ベースの役割で構成されている](resources/software_company_cd.jpeg) @@ -37,7 +38,6 @@ ## MetaGPTの能力 https://github.com/geekan/MetaGPT/assets/34952977/34345016-5d13-489d-b9f9-b82ace413419 - ## 例(GPT-4 で完全生成) 例えば、`python startup.py "Toutiao のような RecSys をデザインする"`と入力すると、多くの出力が得られます @@ -70,10 +70,12 @@ # ステップ 3: リポジトリをローカルマシンにクローンし、 **注:** -- すでに Chrome、Chromium、MS Edge がインストールされている場合は、環境変数 `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` を `true` に設定することで、 -Chromium のダウンロードをスキップすることができます。 +- すでに Chrome、Chromium、MS Edge がインストールされている場合は、環境変数 `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` を `true` + に設定することで、 + Chromium のダウンロードをスキップすることができます。 -- このツールをグローバルにインストールする[問題を抱えている](https://github.com/mermaidjs/mermaid.cli/issues/15)人もいます。ローカルにインストールするのが代替の解決策です、 +- このツールをグローバルにインストールする[問題を抱えている](https://github.com/mermaidjs/mermaid.cli/issues/15) + 人もいます。ローカルにインストールするのが代替の解決策です、 ```bash npm install @mermaid-js/mermaid-cli @@ -86,7 +88,9 @@ # ステップ 3: リポジトリをローカルマシンにクローンし、 MMDC: "./node_modules/.bin/mmdc" ``` -- もし `pip install -e.` がエラー `[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'` で失敗したら、代わりに `pip install -e. --user` を実行してみてください +- もし `pip install -e.` + がエラー `[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'` + で失敗したら、代わりに `pip install -e. --user` を実行してみてください ### Docker によるインストール @@ -141,10 +145,10 @@ # 設定ファイルをコピーし、必要な修正を加える。 cp config/config.yaml config/key.yaml ``` -| 変数名 | config/key.yaml | env | -| --------------------------------------- | ----------------------------------------- | ----------------------------------------------- | +| 変数名 | config/key.yaml | env | +|------------------------------|-------------------------------------------|-------------------------------------------------| | OPENAI_API_KEY # 自分のキーに置き換える | OPENAI_API_KEY: "sk-..." | export OPENAI_API_KEY="sk-..." | -| OPENAI_API_BASE # オプション | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | +| OPENAI_API_BASE # オプション | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | ## チュートリアル: スタートアップの開始 @@ -221,6 +225,7 @@ ## クイックスタート - [MetaGPT クイックスタート](https://deepwisdom.feishu.cn/wiki/CyY9wdJc4iNqArku3Lncl4v8n2b) Hugging Face Space で試す + - https://huggingface.co/spaces/deepwisdom/MetaGPT ## 引用 @@ -243,7 +248,8 @@ ## お問い合わせ先 このプロジェクトに関するご質問やご意見がございましたら、お気軽にお問い合わせください。皆様のご意見をお待ちしております! - **Email:** alexanderwu@fuzhi.ai -- **GitHub Issues:** 技術的なお問い合わせについては、[GitHub リポジトリ](https://github.com/geekan/metagpt/issues) に新しい issue を作成することもできます。 +- **GitHub Issues:** 技術的なお問い合わせについては、[GitHub リポジトリ](https://github.com/geekan/metagpt/issues) に新しい + issue を作成することもできます。 ご質問には 2-3 営業日以内に回答いたします。 diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md index 005a59ab2..a205157c5 100644 --- a/docs/ROADMAP.md +++ b/docs/ROADMAP.md @@ -1,4 +1,3 @@ - ## Roadmap ### Long-term Objective @@ -16,67 +15,69 @@ ### Tasks To reach version v0.5, approximately 70% of the following tasks need to be completed. 1. Usability - 1. Release v0.01 pip package to try to solve issues like npm installation (though not necessarily successfully) - 2. Support for overall save and recovery of software companies - 3. Support human confirmation and modification during the process - 4. Support process caching: Consider carefully whether to add server caching mechanism - 5. Resolve occasional failure to follow instruction under current prompts, causing code parsing errors, through stricter system prompts - 6. Write documentation, describing the current features and usage at all levels - 7. ~~Support Docker~~ + 1. Release v0.01 pip package to try to solve issues like npm installation (though not necessarily successfully) + 2. Support for overall save and recovery of software companies + 3. Support human confirmation and modification during the process + 4. Support process caching: Consider carefully whether to add server caching mechanism + 5. Resolve occasional failure to follow instruction under current prompts, causing code parsing errors, through + stricter system prompts + 6. Write documentation, describing the current features and usage at all levels + 7. ~~Support Docker~~ 2. Features - 1. Support a more standard and stable parser (need to analyze the format that the current LLM is better at) - 2. ~~Establish a separate output queue, differentiated from the message queue~~ - 3. Attempt to atomize all role work, but this may significantly increase token overhead - 4. Complete the design and implementation of module breakdown - 5. Support various modes of memory: clearly distinguish between long-term and short-term memory - 6. Perfect the test role, and carry out necessary interactions with humans - 7. Provide full mode instead of the current fast mode, allowing natural communication between roles - 8. Implement SkillManager and the process of incremental Skill learning - 9. Automatically get RPM and configure it by calling the corresponding openai page, so that each key does not need to be manually configured + 1. Support a more standard and stable parser (need to analyze the format that the current LLM is better at) + 2. ~~Establish a separate output queue, differentiated from the message queue~~ + 3. Attempt to atomize all role work, but this may significantly increase token overhead + 4. Complete the design and implementation of module breakdown + 5. Support various modes of memory: clearly distinguish between long-term and short-term memory + 6. Perfect the test role, and carry out necessary interactions with humans + 7. Provide full mode instead of the current fast mode, allowing natural communication between roles + 8. Implement SkillManager and the process of incremental Skill learning + 9. Automatically get RPM and configure it by calling the corresponding openai page, so that each key does not need + to be manually configured 3. Strategies - 1. Support ReAct strategy - 2. Support CoT strategy - 3. Support ToT strategy - 4. Support Reflection strategy + 1. Support ReAct strategy + 2. Support CoT strategy + 3. Support ToT strategy + 4. Support Reflection strategy 4. Actions - 1. Implementation: Search - 2. Implementation: Knowledge search, supporting 10+ data formats - 3. Implementation: Data EDA - 4. Implementation: Review - 5. Implementation: Add Document - 6. Implementation: Delete Document - 7. Implementation: Self-training - 8. Implementation: DebugError - 9. Implementation: Generate reliable unit tests based on YAPI - 10. Implementation: Self-evaluation - 11. Implementation: AI Invocation - 12. Implementation: Learning and using third-party standard libraries - 13. Implementation: Data collection - 14. Implementation: AI training - 15. Implementation: Run code - 16. Implementation: Web access + 1. Implementation: Search + 2. Implementation: Knowledge search, supporting 10+ data formats + 3. Implementation: Data EDA + 4. Implementation: Review + 5. Implementation: Add Document + 6. Implementation: Delete Document + 7. Implementation: Self-training + 8. Implementation: DebugError + 9. Implementation: Generate reliable unit tests based on YAPI + 10. Implementation: Self-evaluation + 11. Implementation: AI Invocation + 12. Implementation: Learning and using third-party standard libraries + 13. Implementation: Data collection + 14. Implementation: AI training + 15. Implementation: Run code + 16. Implementation: Web access 5. Plugins: Compatibility with plugin system 6. Tools - 1. ~~Support SERPER api~~ - 2. ~~Support Selenium apis~~ - 3. ~~Support Playwright apis~~ + 1. ~~Support SERPER api~~ + 2. ~~Support Selenium apis~~ + 3. ~~Support Playwright apis~~ 7. Roles - 1. Perfect the action pool/skill pool for each role - 2. Red Book blogger - 3. E-commerce seller - 4. Data analyst - 5. News observer - 6. Institutional researcher + 1. Perfect the action pool/skill pool for each role + 2. Red Book blogger + 3. E-commerce seller + 4. Data analyst + 5. News observer + 6. Institutional researcher 8. Evaluation - 1. Support an evaluation on a game dataset - 2. Reproduce papers, implement full skill acquisition for a single game role, achieving SOTA results - 3. Support an evaluation on a math dataset - 4. Reproduce papers, achieving SOTA results for current mathematical problem solving process + 1. Support an evaluation on a game dataset + 2. Reproduce papers, implement full skill acquisition for a single game role, achieving SOTA results + 3. Support an evaluation on a math dataset + 4. Reproduce papers, achieving SOTA results for current mathematical problem solving process 9. LLM - 1. Support Claude underlying API - 2. ~~Support Azure asynchronous API~~ - 3. Support streaming version of all APIs - 4. ~~Make gpt-3.5-turbo available (HARD)~~ + 1. Support Claude underlying API + 2. ~~Support Azure asynchronous API~~ + 3. Support streaming version of all APIs + 4. ~~Make gpt-3.5-turbo available (HARD)~~ 10. Other 1. Clean up existing unused code 2. Unify all code styles and establish contribution standards diff --git a/docs/resources/workspace/content_rec_sys/resources/competitive_analysis.svg b/docs/resources/workspace/content_rec_sys/resources/competitive_analysis.svg index 785fdafcb..c186e4ce5 100644 --- a/docs/resources/workspace/content_rec_sys/resources/competitive_analysis.svg +++ b/docs/resources/workspace/content_rec_sys/resources/competitive_analysis.svg @@ -1 +1,128 @@ -Reach and engagement of campaignsWe should expandNeed to promoteRe-evaluateMay be improvedOur Target ProductPinterestSpotifyAmazonNetflixYouTubeFacebookJinri ToutiaoLow ReachHigh ReachLow EngagementHigh EngagementReach and engagement of campaigns \ No newline at end of file + + Reach and engagement of campaigns + + + + + + + We should expand + + + + + Need to promote + + + + + Re-evaluate + + + + + May be improved + + + + + + + + + + + + + + + Our Target Product + + + + + Pinterest + + + + + Spotify + + + + + Amazon + + + + + Netflix + + + + + YouTube + + + + + Facebook + + + + + Jinri Toutiao + + + + + + Low Reach + + + + High Reach + + + + Low Engagement + + + + High Engagement + + + + + Reach and engagement of campaigns + + + + \ No newline at end of file diff --git a/docs/resources/workspace/content_rec_sys/resources/data_api_design.svg b/docs/resources/workspace/content_rec_sys/resources/data_api_design.svg index a39c84375..f9bf692df 100644 --- a/docs/resources/workspace/content_rec_sys/resources/data_api_design.svg +++ b/docs/resources/workspace/content_rec_sys/resources/data_api_design.svg @@ -1 +1,1020 @@ -
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
User
+int user_id
+str name
+str email
+DateTime created_at
+__init__(user_id: int, name: str, email: str) : -> None
UserProfile
+int user_id
+dict preferences
+dict history
+__init__(user_id: int, preferences: dict, history: dict) : -> None
Content
+int content_id
+str title
+str description
+str category
+DateTime published_at
+__init__(content_id: int, title: str, description: str, category: str, published_at: DateTime) : -> None
CollaborativeFilteringModel
+DataFrame data
+str model_type
+__init__(data: DataFrame, model_type: str) : -> None
+fit() : -> None
+predict(user_id: int, n_recommendations: int) : -> List[int]
ContentBasedFilteringModel
+DataFrame data
+str model_type
+__init__(data: DataFrame, model_type: str) : -> None
+fit() : -> None
+predict(user_id: int, n_recommendations: int) : -> List[int]
Recommender
+int user_id
+UserProfile user_profile
+CollaborativeFilteringModel cf_model
+ContentBasedFilteringModel cbf_model
+__init__(user_id: int, user_profile: UserProfile, cf_model: CollaborativeFilteringModel, cbf_model: ContentBasedFilteringModel) : -> None
+get_recommendations(n_recommendations: int) : -> List[int]
ExperimentationPlatform
+List[Recommender] recommenders
+__init__(recommenders: List[Recommender]) : -> None
+run_experiment(user_id: int, n_recommendations: int) : -> Dict[str, List[int]]
Optimization
+Recommender recommender
+__init__(recommender: Recommender) : -> None
+optimize() : -> None
Feedback
+int user_id
+int content_id
+int rating
+__init__(user_id: int, content_id: int, rating: int) : -> None
Monitoring
+Recommender recommender
+__init__(recommender: Recommender) : -> None
+generate_report() : -> None
Advertising
+int advertiser_id
+str target_audience
+__init__(advertiser_id: int, target_audience: str) : -> None
Privacy
+User user
+__init__(user: User) : -> None
+ensure_privacy() : -> None
\ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + + + + + +
+ +
+
+ +
+ User +
+
+ +
+ +int user_id +
+
+ +
+ +str name +
+
+ +
+ +str email +
+
+ +
+ +DateTime created_at +
+
+ +
+ +__init__(user_id: int, name: str, email: str) : -> None + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ UserProfile +
+
+ +
+ +int user_id +
+
+ +
+ +dict preferences +
+
+ +
+ +dict history +
+
+ +
+ +__init__(user_id: int, preferences: dict, history: dict) : -> + None + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Content +
+
+ +
+ +int content_id +
+
+ +
+ +str title +
+
+ +
+ +str description +
+
+ +
+ +str category +
+
+ +
+ +DateTime published_at +
+
+ +
+ +__init__(content_id: int, title: str, description: str, + category: str, published_at: DateTime) : -> None + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ CollaborativeFilteringModel +
+
+ +
+ +DataFrame data +
+
+ +
+ +str model_type +
+
+ +
+ +__init__(data: DataFrame, model_type: str) : -> None +
+
+ +
+ +fit() : -> None +
+
+ +
+ +predict(user_id: int, n_recommendations: int) : -> + List[int] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ ContentBasedFilteringModel +
+
+ +
+ +DataFrame data +
+
+ +
+ +str model_type +
+
+ +
+ +__init__(data: DataFrame, model_type: str) : -> None +
+
+ +
+ +fit() : -> None +
+
+ +
+ +predict(user_id: int, n_recommendations: int) : -> + List[int] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Recommender +
+
+ +
+ +int user_id +
+
+ +
+ +UserProfile user_profile +
+
+ +
+ +CollaborativeFilteringModel cf_model +
+
+ +
+ +ContentBasedFilteringModel cbf_model +
+
+ +
+ +__init__(user_id: int, user_profile: UserProfile, cf_model: + CollaborativeFilteringModel, cbf_model: ContentBasedFilteringModel) : -> None + +
+
+ +
+ +get_recommendations(n_recommendations: int) : -> List[int] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ ExperimentationPlatform +
+
+ +
+ +List[Recommender] recommenders +
+
+ +
+ +__init__(recommenders: List[Recommender]) : -> None +
+
+ +
+ +run_experiment(user_id: int, n_recommendations: int) : -> + Dict[str, List[int]] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Optimization +
+
+ +
+ +Recommender recommender +
+
+ +
+ +__init__(recommender: Recommender) : -> None +
+
+ +
+ +optimize() : -> None +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Feedback +
+
+ +
+ +int user_id +
+
+ +
+ +int content_id +
+
+ +
+ +int rating +
+
+ +
+ +__init__(user_id: int, content_id: int, rating: int) : -> + None + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Monitoring +
+
+ +
+ +Recommender recommender +
+
+ +
+ +__init__(recommender: Recommender) : -> None +
+
+ +
+ +generate_report() : -> None +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Advertising +
+
+ +
+ +int advertiser_id +
+
+ +
+ +str target_audience +
+
+ +
+ +__init__(advertiser_id: int, target_audience: str) : -> + None + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Privacy +
+
+ +
+ +User user +
+
+ +
+ +__init__(user: User) : -> None +
+
+ +
+ +ensure_privacy() : -> None +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/docs/resources/workspace/content_rec_sys/resources/seq_flow.svg b/docs/resources/workspace/content_rec_sys/resources/seq_flow.svg index d73482917..e73110109 100644 --- a/docs/resources/workspace/content_rec_sys/resources/seq_flow.svg +++ b/docs/resources/workspace/content_rec_sys/resources/seq_flow.svg @@ -1 +1,342 @@ -UserUserProfileRecommenderCollaborativeFilteringModelContentBasedFilteringModelExperimentationPlatformFeedbackOptimizationMonitoringPrivacyAdvertisingcreate UserProfilecreate Recommenderfit modelfit modelrun_experiment()get_recommendations()predict()predict()submit feedbackupdate modelsfit modelfit modeloptimize()update modelsgenerate_report()ensure_privacy()ensure_privacy()UserUserProfileRecommenderCollaborativeFilteringModelContentBasedFilteringModelExperimentationPlatformFeedbackOptimizationMonitoringPrivacyAdvertising \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + User + + + + + + + + + UserProfile + + + + + + + + + Recommender + + + + + + + + + CollaborativeFilteringModel + + + + + + + + + ContentBasedFilteringModel + + + + + + + + + ExperimentationPlatform + + + + + + + + + Feedback + + + + + + + + + Optimization + + + + + + + + + Monitoring + + + + + + + + + Privacy + + + + + + + + + Advertising + + + + + + + + + + + + + + + + + + + + + + + + create UserProfile + + + create Recommender + + + fit model + + + fit model + + + run_experiment() + + + get_recommendations() + + + predict() + + + predict() + + + submit feedback + + + update models + + + fit model + + + fit model + + + optimize() + + + update models + + + generate_report() + + + ensure_privacy() + + + ensure_privacy() + + + + + + User + + + + + + UserProfile + + + + + + Recommender + + + + + + CollaborativeFilteringModel + + + + + + ContentBasedFilteringModel + + + + + + ExperimentationPlatform + + + + + + Feedback + + + + + + Optimization + + + + + + Monitoring + + + + + + Privacy + + + + + + Advertising + + + \ No newline at end of file diff --git a/docs/resources/workspace/llmops_framework/resources/competitive_analysis.svg b/docs/resources/workspace/llmops_framework/resources/competitive_analysis.svg index 541df8d18..0b3ac4860 100644 --- a/docs/resources/workspace/llmops_framework/resources/competitive_analysis.svg +++ b/docs/resources/workspace/llmops_framework/resources/competitive_analysis.svg @@ -1 +1,128 @@ -MLOps/LLMOps Frameworks for GPT-4 and LLMsLeadersInnovatorsLaggardsChallengersOur Target ProductAWS SageMakerAzure Machine LearningKubeflowMLflowTensorFlow ExtendedCometWeights & BiasesLow IntegrationHigh IntegrationLow UsabilityHigh UsabilityMLOps/LLMOps Frameworks for GPT-4 and LLMs \ No newline at end of file + + MLOps/LLMOps Frameworks for GPT-4 and LLMs + + + + + + + Leaders + + + + + Innovators + + + + + Laggards + + + + + Challengers + + + + + + + + + + + + + + + Our Target Product + + + + + AWS SageMaker + + + + + Azure Machine Learning + + + + + Kubeflow + + + + + MLflow + + + + + TensorFlow Extended + + + + + Comet + + + + + Weights & Biases + + + + + + Low Integration + + + + High Integration + + + + Low Usability + + + + High Usability + + + + + MLOps/LLMOps Frameworks for GPT-4 and LLMs + + + + \ No newline at end of file diff --git a/docs/resources/workspace/llmops_framework/resources/data_api_design.svg b/docs/resources/workspace/llmops_framework/resources/data_api_design.svg index 244af9965..6423bb4c3 100644 --- a/docs/resources/workspace/llmops_framework/resources/data_api_design.svg +++ b/docs/resources/workspace/llmops_framework/resources/data_api_design.svg @@ -1 +1,631 @@ -
config
1
1
dataset
1
1
model
1
1
model
1
1
ModelConfig
+model_name: str
+model_type: str
+config: Dict[str, Any]
+__init__(self, model_name: str, model_type: str, config: Dict[str, Any])
Dataset
+dataset_name: str
+split: str
+tokenizer: PreTrainedTokenizer
+__init__(self, dataset_name: str, split: str, tokenizer: PreTrainedTokenizer)
+load_data(self) : -> Dataset
+preprocess_data(self, max_length: int) : -> Dataset
BaseModel
+model_config: ModelConfig
+model: Union[PreTrainedModel, nn.Module]
+__init__(self, model_config: ModelConfig)
+load_model(self) : -> Union[PreTrainedModel, nn.Module]
FineTuningPipeline
+model: BaseModel
+dataset: Dataset
+training_args: TrainingArguments
+__init__(self, model: BaseModel, dataset: Dataset, training_args: TrainingArguments)
+train(self) : -> Tuple[Trainer, Dict[str, Any]]
Experiment
+name: str
+description: str
+__init__(self, name: str, description: str)
+start(self) : -> None
+log_metrics(self, metrics: Dict[str, Any]) : -> None
+end(self) : -> None
Artifact
+name: str
+artifact_type: str
+path: str
+__init__(self, name: str, artifact_type: str, path: str)
+save(self) : -> None
+load(self) : -> Any
ModelRegistry
+__init__(self)
+register_model(self, model: BaseModel, version: str) : -> None
+get_model(self, model_name: str, version: str) : -> BaseModel
+deploy_model(self, model_name: str, version: str) : -> None
ModelMonitoring
+model_registry: ModelRegistry
+__init__(self, model_registry: ModelRegistry)
+monitor_model(self, model_name: str, version: str) : -> Dict[str, Any]
\ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + config + +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ + dataset + +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ + model + +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ + model + +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + + + + + +
+ +
+
+ +
+ ModelConfig +
+
+ +
+ +model_name: str +
+
+ +
+ +model_type: str +
+
+ +
+ +config: Dict[str, Any] +
+
+ +
+ +__init__(self, model_name: str, model_type: str, config: + Dict[str, Any]) + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Dataset +
+
+ +
+ +dataset_name: str +
+
+ +
+ +split: str +
+
+ +
+ +tokenizer: PreTrainedTokenizer +
+
+ +
+ +__init__(self, dataset_name: str, split: str, tokenizer: + PreTrainedTokenizer) + +
+
+ +
+ +load_data(self) : -> Dataset +
+
+ +
+ +preprocess_data(self, max_length: int) : -> Dataset +
+
+
+
+ + + + + + +
+ +
+
+ +
+ BaseModel +
+
+ +
+ +model_config: ModelConfig +
+
+ +
+ +model: Union[PreTrainedModel, nn.Module] +
+
+ +
+ +__init__(self, model_config: ModelConfig) +
+
+ +
+ +load_model(self) : -> Union[PreTrainedModel, nn.Module] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ FineTuningPipeline +
+
+ +
+ +model: BaseModel +
+
+ +
+ +dataset: Dataset +
+
+ +
+ +training_args: TrainingArguments +
+
+ +
+ +__init__(self, model: BaseModel, dataset: Dataset, + training_args: TrainingArguments) + +
+
+ +
+ +train(self) : -> Tuple[Trainer, Dict[str, Any]] +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Experiment +
+
+ +
+ +name: str +
+
+ +
+ +description: str +
+
+ +
+ +__init__(self, name: str, description: str) +
+
+ +
+ +start(self) : -> None +
+
+ +
+ +log_metrics(self, metrics: Dict[str, Any]) : -> None +
+
+ +
+ +end(self) : -> None +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Artifact +
+
+ +
+ +name: str +
+
+ +
+ +artifact_type: str +
+
+ +
+ +path: str +
+
+ +
+ +__init__(self, name: str, artifact_type: str, path: str) +
+
+ +
+ +save(self) : -> None +
+
+ +
+ +load(self) : -> Any +
+
+
+
+ + + + + + +
+ +
+
+ +
+ ModelRegistry +
+
+ +
+ +__init__(self) +
+
+ +
+ +register_model(self, model: BaseModel, version: str) : -> + None + +
+
+ +
+ +get_model(self, model_name: str, version: str) : -> + BaseModel + +
+
+ +
+ +deploy_model(self, model_name: str, version: str) : -> + None + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ ModelMonitoring +
+
+ +
+ +model_registry: ModelRegistry +
+
+ +
+ +__init__(self, model_registry: ModelRegistry) +
+
+ +
+ +monitor_model(self, model_name: str, version: str) : -> + Dict[str, Any] + +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/docs/resources/workspace/llmops_framework/resources/seq_flow.svg b/docs/resources/workspace/llmops_framework/resources/seq_flow.svg index 02a826df8..2519bd2ff 100644 --- a/docs/resources/workspace/llmops_framework/resources/seq_flow.svg +++ b/docs/resources/workspace/llmops_framework/resources/seq_flow.svg @@ -1 +1,323 @@ -UserModelConfigDatasetBaseModelFineTuningPipelineExperimentArtifactModelRegistryModelMonitoring__init__(model_name, model_type, config)__init__(dataset_name, split, tokenizer)__init__(model_config)__init__(model, dataset, training_args)__init__(name, description)__init__(name, artifact_type, path)__init__()__init__(model_registry)load_data()preprocess_data(max_length)load_model()train()start()log_metrics(metrics)end()save()register_model(model, version)monitor_model(model_name, version)get_model(model_name, version)deploy_model(model_name, version)UserModelConfigDatasetBaseModelFineTuningPipelineExperimentArtifactModelRegistryModelMonitoring \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + User + + + + + + + + + ModelConfig + + + + + + + + + Dataset + + + + + + + + + BaseModel + + + + + + + + + FineTuningPipeline + + + + + + + + + Experiment + + + + + + + + + Artifact + + + + + + + + + ModelRegistry + + + + + + + + + ModelMonitoring + + + + + + + + + + + + + + + + + + + + + + + + __init__(model_name, model_type, config) + + + __init__(dataset_name, split, tokenizer) + + + __init__(model_config) + + + __init__(model, dataset, training_args) + + + __init__(name, description) + + + __init__(name, artifact_type, path) + + + __init__() + + + __init__(model_registry) + + + load_data() + + + preprocess_data(max_length) + + + load_model() + + + train() + + + start() + + + log_metrics(metrics) + + + end() + + + save() + + + register_model(model, version) + + + monitor_model(model_name, version) + + + get_model(model_name, version) + + + deploy_model(model_name, version) + + + + + + User + + + + + + ModelConfig + + + + + + Dataset + + + + + + BaseModel + + + + + + FineTuningPipeline + + + + + + Experiment + + + + + + Artifact + + + + + + ModelRegistry + + + + + + ModelMonitoring + + + \ No newline at end of file diff --git a/docs/resources/workspace/match3_puzzle_game/resources/competitive_analysis.svg b/docs/resources/workspace/match3_puzzle_game/resources/competitive_analysis.svg index 43a164f19..684e608ef 100644 --- a/docs/resources/workspace/match3_puzzle_game/resources/competitive_analysis.svg +++ b/docs/resources/workspace/match3_puzzle_game/resources/competitive_analysis.svg @@ -1 +1,128 @@ -Reach and Engagement of Match-3 GamesExpand FeaturesPromote MoreRe-evaluateImprove EngagementOur Target ProductToon BlastFishdomGardenscapesHomescapesGummy Drop!BejeweledCandy Crush SagaLow ReachHigh ReachLow EngagementHigh EngagementReach and Engagement of Match-3 Games \ No newline at end of file + + Reach and Engagement of Match-3 Games + + + + + + + Expand Features + + + + + Promote More + + + + + Re-evaluate + + + + + Improve Engagement + + + + + + + + + + + + + + + Our Target Product + + + + + Toon Blast + + + + + Fishdom + + + + + Gardenscapes + + + + + Homescapes + + + + + Gummy Drop! + + + + + Bejeweled + + + + + Candy Crush Saga + + + + + + Low Reach + + + + High Reach + + + + Low Engagement + + + + High Engagement + + + + + Reach and Engagement of Match-3 Games + + + + \ No newline at end of file diff --git a/docs/resources/workspace/match3_puzzle_game/resources/data_api_design.svg b/docs/resources/workspace/match3_puzzle_game/resources/data_api_design.svg index 95268f914..4977a8e7a 100644 --- a/docs/resources/workspace/match3_puzzle_game/resources/data_api_design.svg +++ b/docs/resources/workspace/match3_puzzle_game/resources/data_api_design.svg @@ -1 +1,947 @@ -
1
1
1
1
1
*
1
*
1
1
1
1
1
1
1
1
1
1
1
*
1
*
1
*
Game
+__init__(self, user: User)
+start(self)
+play_level(self, level: Level)
+complete_level(self, level: Level, score: int)
+use_power_up(self, power_up: PowerUp)
User
+__init__(self, username: str, password: str)
+login(self)
+register(self)
+connect_social(self, social_platform: str)
+get_friends(self) : -> List[User]
Level
+__init__(self, level_data: Dict[str, Any])
+load(self)
+generate(self)
+check_win(self) : -> bool
+get_objectives(self) : -> List[Objective]
Objective
+__init__(self, type: str, target: int)
+is_complete(self) : -> bool
PowerUp
+__init__(self, type: str, effect: Callable)
+apply(self, game: Game)
Reward
+__init__(self, type: str, value: Any)
+claim(self, user: User)
UI
+__init__(self, game: Game)
+render(self)
+handle_input(self, event: pygame.event.Event)
Social
+__init__(self, user: User)
+share(self, platform: str, content: str)
+invite(self, friend: User)
+compare_scores(self, friend: User) : -> Tuple[int, int]
Platform
+__init__(self, game: Game)
+save(self, user: User)
+load(self, user: User)
Tutorial
+__init__(self, game: Game)
+start(self)
+next_step(self)
+complete(self)
IAP
+__init__(self, user: User)
+purchase(self, item: str)
Update
+__init__(self, game: Game)
+check_updates(self) : -> bool
+download_update(self)
+apply_update(self)
\ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ * +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ * +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ 1 +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ * +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ * +
+
+
+ + + +
+ +
+
+
+
+ + + +
+ 1 +
+
+
+
+ + + +
+ * +
+
+
+
+ + + + + + + +
+ +
+
+ +
+ Game +
+
+ +
+ +__init__(self, user: User) +
+
+ +
+ +start(self) +
+
+ +
+ +play_level(self, level: Level) +
+
+ +
+ +complete_level(self, level: Level, score: int) +
+
+ +
+ +use_power_up(self, power_up: PowerUp) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ User +
+
+ +
+ +__init__(self, username: str, password: str) +
+
+ +
+ +login(self) +
+
+ +
+ +register(self) +
+
+ +
+ +connect_social(self, social_platform: str) +
+
+ +
+ +get_friends(self) : -> List[User] +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Level +
+
+ +
+ +__init__(self, level_data: Dict[str, Any]) +
+
+ +
+ +load(self) +
+
+ +
+ +generate(self) +
+
+ +
+ +check_win(self) : -> bool +
+
+ +
+ +get_objectives(self) : -> List[Objective] +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Objective +
+
+ +
+ +__init__(self, type: str, target: int) +
+
+ +
+ +is_complete(self) : -> bool +
+
+
+
+ + + + + + +
+ +
+
+ +
+ PowerUp +
+
+ +
+ +__init__(self, type: str, effect: Callable) +
+
+ +
+ +apply(self, game: Game) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Reward +
+
+ +
+ +__init__(self, type: str, value: Any) +
+
+ +
+ +claim(self, user: User) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ UI +
+
+ +
+ +__init__(self, game: Game) +
+
+ +
+ +render(self) +
+
+ +
+ +handle_input(self, event: pygame.event.Event) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Social +
+
+ +
+ +__init__(self, user: User) +
+
+ +
+ +share(self, platform: str, content: str) +
+
+ +
+ +invite(self, friend: User) +
+
+ +
+ +compare_scores(self, friend: User) : -> Tuple[int, int] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Platform +
+
+ +
+ +__init__(self, game: Game) +
+
+ +
+ +save(self, user: User) +
+
+ +
+ +load(self, user: User) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Tutorial +
+
+ +
+ +__init__(self, game: Game) +
+
+ +
+ +start(self) +
+
+ +
+ +next_step(self) +
+
+ +
+ +complete(self) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ IAP +
+
+ +
+ +__init__(self, user: User) +
+
+ +
+ +purchase(self, item: str) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Update +
+
+ +
+ +__init__(self, game: Game) +
+
+ +
+ +check_updates(self) : -> bool +
+
+ +
+ +download_update(self) +
+
+ +
+ +apply_update(self) +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/docs/resources/workspace/match3_puzzle_game/resources/seq_flow.svg b/docs/resources/workspace/match3_puzzle_game/resources/seq_flow.svg index d1f914c1e..533860c56 100644 --- a/docs/resources/workspace/match3_puzzle_game/resources/seq_flow.svg +++ b/docs/resources/workspace/match3_puzzle_game/resources/seq_flow.svg @@ -1 +1,425 @@ -UserGameUILevelObjectivePowerUpRewardSocialPlatformTutorialIAPUpdateloop[Each tutorial step]alt[Level completed]loop[Each level]alt[Updatesavailable]start()start()render()handle_input(event)next_step()complete()load()generate()render()handle_input(event)check_win()claim(user)apply(game)share(platform, content)save(user)purchase(item)check_updates()download_update()apply_update()UserGameUILevelObjectivePowerUpRewardSocialPlatformTutorialIAPUpdate \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + User + + + + + + + + + Game + + + + + + + + + UI + + + + + + + + + Level + + + + + + + + + Objective + + + + + + + + + PowerUp + + + + + + + + + Reward + + + + + + + + + Social + + + + + + + + + Platform + + + + + + + + + Tutorial + + + + + + + + + IAP + + + + + + + + + Update + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + loop + + + [Each tutorial step] + + + + + + + + + + alt + + + [Level completed] + + + + + + + + + loop + + + [Each level] + + + + + + + + + alt + + + [Updates + + + available] + + + start() + + + start() + + + render() + + + handle_input(event) + + + next_step() + + + complete() + + + load() + + + generate() + + + render() + + + handle_input(event) + + + check_win() + + + claim(user) + + + apply(game) + + + share(platform, content) + + + save(user) + + + purchase(item) + + + check_updates() + + + download_update() + + + apply_update() + + + + + + User + + + + + + Game + + + + + + UI + + + + + + Level + + + + + + Objective + + + + + + PowerUp + + + + + + Reward + + + + + + Social + + + + + + Platform + + + + + + Tutorial + + + + + + IAP + + + + + + Update + + + \ No newline at end of file diff --git a/docs/resources/workspace/minimalist_pomodoro_timer/resources/competitive_analysis.svg b/docs/resources/workspace/minimalist_pomodoro_timer/resources/competitive_analysis.svg index 57edac51c..98686dff0 100644 --- a/docs/resources/workspace/minimalist_pomodoro_timer/resources/competitive_analysis.svg +++ b/docs/resources/workspace/minimalist_pomodoro_timer/resources/competitive_analysis.svg @@ -1 +1,116 @@ -Competitive Analysis of Pomodoro TimersOur ProductPomodoro TrackerTomato TimerPomofocusPomoDonePomelloPomofocusTomato TimerPomodoro TrackerOur ProductLow FunctionalityHigh FunctionalityHigh ComplexityLow ComplexityCompetitive Analysis of Pomodoro Timers \ No newline at end of file + + Competitive Analysis of Pomodoro Timers + + + + + + + Our Product + + + + + Pomodoro Tracker + + + + + Tomato Timer + + + + + Pomofocus + + + + + + + + + + + + + + + PomoDone + + + + + Pomello + + + + + Pomofocus + + + + + Tomato Timer + + + + + Pomodoro Tracker + + + + + Our Product + + + + + + Low Functionality + + + + High Functionality + + + + High Complexity + + + + Low Complexity + + + + + Competitive Analysis of Pomodoro Timers + + + + \ No newline at end of file diff --git a/docs/resources/workspace/minimalist_pomodoro_timer/resources/data_api_design.svg b/docs/resources/workspace/minimalist_pomodoro_timer/resources/data_api_design.svg index 78378cee8..d58333117 100644 --- a/docs/resources/workspace/minimalist_pomodoro_timer/resources/data_api_design.svg +++ b/docs/resources/workspace/minimalist_pomodoro_timer/resources/data_api_design.svg @@ -1 +1,203 @@ -
uses
PomodoroTimer
+__init__(self, session_length: int, break_length: int)
+start(self) : -> None
+pause(self) : -> None
+resume(self) : -> None
+reset(self) : -> None
+is_running(self) : -> bool
WebApp
+__init__(self)
+run(self) : -> None
\ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + uses + +
+
+
+
+
+ + + + + + + +
+ +
+
+ +
+ PomodoroTimer +
+
+ +
+ +__init__(self, session_length: int, break_length: int) +
+
+ +
+ +start(self) : -> None +
+
+ +
+ +pause(self) : -> None +
+
+ +
+ +resume(self) : -> None +
+
+ +
+ +reset(self) : -> None +
+
+ +
+ +is_running(self) : -> bool +
+
+
+
+ + + + + + +
+ +
+
+ +
+ WebApp +
+
+ +
+ +__init__(self) +
+
+ +
+ +run(self) : -> None +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/docs/resources/workspace/minimalist_pomodoro_timer/resources/seq_flow.svg b/docs/resources/workspace/minimalist_pomodoro_timer/resources/seq_flow.svg index cc5926374..50f75d8b7 100644 --- a/docs/resources/workspace/minimalist_pomodoro_timer/resources/seq_flow.svg +++ b/docs/resources/workspace/minimalist_pomodoro_timer/resources/seq_flow.svg @@ -1 +1,219 @@ -UserWebAppPomodoroTimerCountdown beginsCountdown pausedCountdown resumesCountdown resetAccess web appDisplay index.htmlSet session and break lengths__init__(session_length, break_length)Click "Start" buttonstart()Click "Pause" buttonpause()Click "Resume" buttonresume()Click "Reset" buttonreset()Access help pageDisplay help.htmlUserWebAppPomodoroTimer \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + User + + + + + + + + + WebApp + + + + + + + + + PomodoroTimer + + + + + + + + + + + + + + + + + + + + + + + + + + + Countdown begins + + + + + + Countdown paused + + + + + + Countdown resumes + + + + + + Countdown reset + + + Access web app + + + Display index.html + + + Set session and break lengths + + + __init__(session_length, break_length) + + + Click "Start" button + + + start() + + + Click "Pause" button + + + pause() + + + Click "Resume" button + + + resume() + + + Click "Reset" button + + + reset() + + + Access help page + + + Display help.html + + + + + + User + + + + + + WebApp + + + + + + PomodoroTimer + + + \ No newline at end of file diff --git a/docs/resources/workspace/pyrogue/resources/competitive_analysis.svg b/docs/resources/workspace/pyrogue/resources/competitive_analysis.svg index 14d378ed6..7c284f60b 100644 --- a/docs/resources/workspace/pyrogue/resources/competitive_analysis.svg +++ b/docs/resources/workspace/pyrogue/resources/competitive_analysis.svg @@ -1 +1,128 @@ -Reach and Engagement of Roguelike GamesExpand and improvePromote and maintainRe-evaluate and iterateImprove and innovateOur Target ProductDwarf Fortress Adventure ModeADOMTales of Maj'EyalCaves of QudBrogueDungeon Crawl Stone SoupNetHackLow ReachHigh ReachLow EngagementHigh EngagementReach and Engagement of Roguelike Games \ No newline at end of file + + Reach and Engagement of Roguelike Games + + + + + + + Expand and improve + + + + + Promote and maintain + + + + + Re-evaluate and iterate + + + + + Improve and innovate + + + + + + + + + + + + + + + Our Target Product + + + + + Dwarf Fortress Adventure Mode + + + + + ADOM + + + + + Tales of Maj'Eyal + + + + + Caves of Qud + + + + + Brogue + + + + + Dungeon Crawl Stone Soup + + + + + NetHack + + + + + + Low Reach + + + + High Reach + + + + Low Engagement + + + + High Engagement + + + + + Reach and Engagement of Roguelike Games + + + + \ No newline at end of file diff --git a/docs/resources/workspace/pyrogue/resources/data_api_design.svg b/docs/resources/workspace/pyrogue/resources/data_api_design.svg index 1558d388b..dc4ccc940 100644 --- a/docs/resources/workspace/pyrogue/resources/data_api_design.svg +++ b/docs/resources/workspace/pyrogue/resources/data_api_design.svg @@ -1 +1,747 @@ -
Game
+__init__(self, player: Player, level: Level, ui: UI, audio: Audio)
+run(self)
+handle_input(self, key: tcod.Key)
+update(self)
+render(self)
Level
+__init__(self, width: int, height: int)
+generate(self, algorithm: str)
+get_tile(self, x: int, y: int) : -> Tile
+spawn_entity(self, entity: Entity)
+remove_entity(self, entity: Entity)
Entity
+__init__(self, x: int, y: int, char: str, color: Tuple[int, int, int])
+move(self, dx: int, dy: int)
+interact(self, other: Entity)
Player
+__init__(self, character_class: CharacterClass)
+gain_experience(self, amount: int)
+level_up(self)
CharacterClass
+__init__(self, name: str, abilities: List[str])
+use_ability(self, ability: str, target: Entity)
Enemy
+__init__(self, ai: Callable)
+take_turn(self)
Item
+__init__(self, effect: Callable)
+use(self, target: Entity)
Trap
+__init__(self, effect: Callable)
+trigger(self, target: Entity)
UI
+__init__(self, width: int, height: int)
+draw(self, game: Game)
+show_message(self, message: str, color: Tuple[int, int, int])
Audio
+__init__(self)
+play_sound(self, sound: str)
+play_music(self, music: str)
SaveLoad
+__init__(self)
+save_game(self, game: Game, filename: str)
+load_game(self, filename: str) : -> Game
Tutorial
+__init__(self)
+show_help(self, game: Game)
Callable
\ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+
+ + + + + + + +
+ +
+
+ +
+ Game +
+
+ +
+ +__init__(self, player: Player, level: Level, ui: UI, audio: + Audio) + +
+
+ +
+ +run(self) +
+
+ +
+ +handle_input(self, key: tcod.Key) +
+
+ +
+ +update(self) +
+
+ +
+ +render(self) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Level +
+
+ +
+ +__init__(self, width: int, height: int) +
+
+ +
+ +generate(self, algorithm: str) +
+
+ +
+ +get_tile(self, x: int, y: int) : -> Tile +
+
+ +
+ +spawn_entity(self, entity: Entity) +
+
+ +
+ +remove_entity(self, entity: Entity) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Entity +
+
+ +
+ +__init__(self, x: int, y: int, char: str, color: Tuple[int, + int, int]) + +
+
+ +
+ +move(self, dx: int, dy: int) +
+
+ +
+ +interact(self, other: Entity) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Player +
+
+ +
+ +__init__(self, character_class: CharacterClass) +
+
+ +
+ +gain_experience(self, amount: int) +
+
+ +
+ +level_up(self) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ CharacterClass +
+
+ +
+ +__init__(self, name: str, abilities: List[str]) +
+
+ +
+ +use_ability(self, ability: str, target: Entity) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Enemy +
+
+ +
+ +__init__(self, ai: Callable) +
+
+ +
+ +take_turn(self) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Item +
+
+ +
+ +__init__(self, effect: Callable) +
+
+ +
+ +use(self, target: Entity) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Trap +
+
+ +
+ +__init__(self, effect: Callable) +
+
+ +
+ +trigger(self, target: Entity) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ UI +
+
+ +
+ +__init__(self, width: int, height: int) +
+
+ +
+ +draw(self, game: Game) +
+
+ +
+ +show_message(self, message: str, color: Tuple[int, int, int]) + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Audio +
+
+ +
+ +__init__(self) +
+
+ +
+ +play_sound(self, sound: str) +
+
+ +
+ +play_music(self, music: str) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ SaveLoad +
+
+ +
+ +__init__(self) +
+
+ +
+ +save_game(self, game: Game, filename: str) +
+
+ +
+ +load_game(self, filename: str) : -> Game +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Tutorial +
+
+ +
+ +__init__(self) +
+
+ +
+ +show_help(self, game: Game) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Callable +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/docs/resources/workspace/pyrogue/resources/seq_flow.svg b/docs/resources/workspace/pyrogue/resources/seq_flow.svg index 7b4400ed6..a389ade4b 100644 --- a/docs/resources/workspace/pyrogue/resources/seq_flow.svg +++ b/docs/resources/workspace/pyrogue/resources/seq_flow.svg @@ -1 +1,354 @@ -GamePlayerLevelEntityCharacterClassUIAudioSaveLoadTutorialloop[GameLoop]__init__(character_class)__init__(width, height)__init__(width, height)__init__()__init__()__init__()handle_input(key)update()render()use_ability(ability, target)move(dx, dy)interact(other)generate(algorithm)get_tile(x, y)spawn_entity(entity)remove_entity(entity)draw(game)show_message(message, color)play_sound(sound)play_music(music)save_game(game, filename)load_game(filename)show_help(game)GamePlayerLevelEntityCharacterClassUIAudioSaveLoadTutorial \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + Game + + + + + + + + + Player + + + + + + + + + Level + + + + + + + + + Entity + + + + + + + + + CharacterClass + + + + + + + + + UI + + + + + + + + + Audio + + + + + + + + + SaveLoad + + + + + + + + + Tutorial + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + loop + + + [Game + + + Loop] + + + __init__(character_class) + + + __init__(width, height) + + + __init__(width, height) + + + __init__() + + + __init__() + + + __init__() + + + handle_input(key) + + + update() + + + render() + + + use_ability(ability, target) + + + move(dx, dy) + + + interact(other) + + + generate(algorithm) + + + get_tile(x, y) + + + spawn_entity(entity) + + + remove_entity(entity) + + + draw(game) + + + show_message(message, color) + + + play_sound(sound) + + + play_music(music) + + + save_game(game, filename) + + + load_game(filename) + + + show_help(game) + + + + + + Game + + + + + + Player + + + + + + Level + + + + + + Entity + + + + + + CharacterClass + + + + + + UI + + + + + + Audio + + + + + + SaveLoad + + + + + + Tutorial + + + \ No newline at end of file diff --git a/docs/resources/workspace/search_algorithm_framework/resources/competitive_analysis.svg b/docs/resources/workspace/search_algorithm_framework/resources/competitive_analysis.svg index 3348a097c..0c6c0398c 100644 --- a/docs/resources/workspace/search_algorithm_framework/resources/competitive_analysis.svg +++ b/docs/resources/workspace/search_algorithm_framework/resources/competitive_analysis.svg @@ -1 +1,128 @@ -Search Algorithm Frameworks: Accuracy vs SpeedHigh potential for improvementFast but less accurateSlow and less accurateFast and accurateOur Target ProductAlgoliaSolrElasticsearchDuckDuckGoBaiduBingGoogle SearchLow AccuracyHigh AccuracySlow SpeedFast SpeedSearch Algorithm Frameworks: Accuracy vs Speed \ No newline at end of file + + Search Algorithm Frameworks: Accuracy vs Speed + + + + + + + High potential for improvement + + + + + Fast but less accurate + + + + + Slow and less accurate + + + + + Fast and accurate + + + + + + + + + + + + + + + Our Target Product + + + + + Algolia + + + + + Solr + + + + + Elasticsearch + + + + + DuckDuckGo + + + + + Baidu + + + + + Bing + + + + + Google Search + + + + + + Low Accuracy + + + + High Accuracy + + + + Slow Speed + + + + Fast Speed + + + + + Search Algorithm Frameworks: Accuracy vs Speed + + + + \ No newline at end of file diff --git a/docs/resources/workspace/search_algorithm_framework/resources/data_api_design.svg b/docs/resources/workspace/search_algorithm_framework/resources/data_api_design.svg index 2443dacc5..a3939f0fb 100644 --- a/docs/resources/workspace/search_algorithm_framework/resources/data_api_design.svg +++ b/docs/resources/workspace/search_algorithm_framework/resources/data_api_design.svg @@ -1 +1,515 @@ -
SearchAPI
+search(query: str) : -> List[SearchResult]
+update_document(document: Document) : -> bool
+delete_document(document_id: str) : -> bool
+add_document(document: Document) : -> bool
Document
+__init__(document_id: str, title: str, content: str, language: str)
SearchResult
+__init__(document_id: str, title: str, score: float)
QueryUnderstanding
+process_query(query: str) : -> List[str]
Recall
+get_candidates(query_terms: List[str]) : -> List[Document]
Ranking
+rank_documents(query_terms: List[str], candidates: List[Document]) : -> List[SearchResult]
Indexing
+index_document(document: Document) : -> bool
+update_document(document: Document) : -> bool
+delete_document(document_id: str) : -> bool
UserFeedback
+submit_feedback(feedback: Feedback) : -> bool
Feedback
+__init__(user_id: str, query: str, document_id: str, rating: int)
MachineLearning
+train_model(feedback_data: List[Feedback]) : -> bool
+predict_ranking(query_terms: List[str], candidates: List[Document]) : -> List[float]
Utils
+normalize_text(text: str) : -> str
\ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+ + + +
+ +
+
+
+
+
+ + + + + + + +
+ +
+
+ +
+ SearchAPI +
+
+ +
+ +search(query: str) : -> List[SearchResult] +
+
+ +
+ +update_document(document: Document) : -> bool +
+
+ +
+ +delete_document(document_id: str) : -> bool +
+
+ +
+ +add_document(document: Document) : -> bool +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Document +
+
+ +
+ +__init__(document_id: str, title: str, content: str, language: + str) + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ SearchResult +
+
+ +
+ +__init__(document_id: str, title: str, score: float) +
+
+
+
+ + + + + + +
+ +
+
+ +
+ QueryUnderstanding +
+
+ +
+ +process_query(query: str) : -> List[str] +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Recall +
+
+ +
+ +get_candidates(query_terms: List[str]) : -> List[Document] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Ranking +
+
+ +
+ +rank_documents(query_terms: List[str], candidates: + List[Document]) : -> List[SearchResult] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Indexing +
+
+ +
+ +index_document(document: Document) : -> bool +
+
+ +
+ +update_document(document: Document) : -> bool +
+
+ +
+ +delete_document(document_id: str) : -> bool +
+
+
+
+ + + + + + +
+ +
+
+ +
+ UserFeedback +
+
+ +
+ +submit_feedback(feedback: Feedback) : -> bool +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Feedback +
+
+ +
+ +__init__(user_id: str, query: str, document_id: str, rating: + int) + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ MachineLearning +
+
+ +
+ +train_model(feedback_data: List[Feedback]) : -> bool +
+
+ +
+ +predict_ranking(query_terms: List[str], candidates: + List[Document]) : -> List[float] + +
+
+
+
+ + + + + + +
+ +
+
+ +
+ Utils +
+
+ +
+ +normalize_text(text: str) : -> str +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/docs/resources/workspace/search_algorithm_framework/resources/seq_flow.svg b/docs/resources/workspace/search_algorithm_framework/resources/seq_flow.svg index 19e39db28..4053034e6 100644 --- a/docs/resources/workspace/search_algorithm_framework/resources/seq_flow.svg +++ b/docs/resources/workspace/search_algorithm_framework/resources/seq_flow.svg @@ -1 +1,321 @@ -UserSearchAPIQueryUnderstandingRecallRankingMachineLearningUserFeedbackIndexingsearch(query)process_query(query)query_termsget_candidates(query_terms)candidatesrank_documents(query_terms, candidates)predict_ranking(query_terms, candidates)scoressearch_resultssearch_resultssubmit_feedback(feedback)submit_feedback(feedback)feedback_statusfeedback_statusupdate_document(document)update_document(document)update_statusdelete_document(document_id)delete_document(document_id)delete_statusadd_document(document)index_document(document)index_statusUserSearchAPIQueryUnderstandingRecallRankingMachineLearningUserFeedbackIndexing \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + User + + + + + + + + + SearchAPI + + + + + + + + + QueryUnderstanding + + + + + + + + + Recall + + + + + + + + + Ranking + + + + + + + + + MachineLearning + + + + + + + + + UserFeedback + + + + + + + + + Indexing + + + + + + + + + + + + + + + + + + + + + + + + search(query) + + + process_query(query) + + + query_terms + + + get_candidates(query_terms) + + + candidates + + + rank_documents(query_terms, candidates) + + + predict_ranking(query_terms, candidates) + + + scores + + + search_results + + + search_results + + + submit_feedback(feedback) + + + submit_feedback(feedback) + + + feedback_status + + + feedback_status + + + update_document(document) + + + update_document(document) + + + update_status + + + delete_document(document_id) + + + delete_document(document_id) + + + delete_status + + + add_document(document) + + + index_document(document) + + + index_status + + + + + + User + + + + + + SearchAPI + + + + + + QueryUnderstanding + + + + + + Recall + + + + + + Ranking + + + + + + MachineLearning + + + + + + UserFeedback + + + + + + Indexing + + + \ No newline at end of file diff --git a/examples/agent_creator.py b/examples/agent_creator.py index e03a88c6b..9131fc5ef 100644 --- a/examples/agent_creator.py +++ b/examples/agent_creator.py @@ -5,18 +5,18 @@ Author: garylin2099 ''' import re -from metagpt.const import PROJECT_ROOT, WORKSPACE_ROOT from metagpt.actions import Action +from metagpt.const import PROJECT_ROOT, WORKSPACE_ROOT +from metagpt.logs import logger from metagpt.roles import Role from metagpt.schema import Message -from metagpt.logs import logger with open(PROJECT_ROOT / "examples/build_customized_agent.py", "r") as f: # use official example script to guide AgentCreator MULTI_ACTION_AGENT_CODE_EXAMPLE = f.read() -class CreateAgent(Action): +class CreateAgent(Action): PROMPT_TEMPLATE = """ ### BACKGROUND You are using an agent framework called metagpt to write agents capable of different actions, @@ -34,7 +34,6 @@ class CreateAgent(Action): """ async def run(self, example: str, instruction: str): - prompt = self.PROMPT_TEMPLATE.format(example=example, instruction=instruction) # logger.info(prompt) @@ -53,13 +52,14 @@ class CreateAgent(Action): f.write(code_text) return code_text + class AgentCreator(Role): def __init__( - self, - name: str = "Matrix", - profile: str = "AgentCreator", - agent_template: str = MULTI_ACTION_AGENT_CODE_EXAMPLE, - **kwargs, + self, + name: str = "Matrix", + profile: str = "AgentCreator", + agent_template: str = MULTI_ACTION_AGENT_CODE_EXAMPLE, + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([CreateAgent]) @@ -76,11 +76,12 @@ class AgentCreator(Role): return msg + if __name__ == "__main__": import asyncio - async def main(): + async def main(): agent_template = MULTI_ACTION_AGENT_CODE_EXAMPLE creator = AgentCreator(agent_template=agent_template) @@ -97,4 +98,5 @@ if __name__ == "__main__": """ await creator.run(msg) + asyncio.run(main()) diff --git a/examples/build_customized_agent.py b/examples/build_customized_agent.py index 87d7a9c76..b9e27608b 100644 --- a/examples/build_customized_agent.py +++ b/examples/build_customized_agent.py @@ -3,19 +3,19 @@ Filename: MetaGPT/examples/build_customized_agent.py Created Date: Tuesday, September 19th 2023, 6:52:25 pm Author: garylin2099 ''' +import asyncio import re import subprocess -import asyncio import fire from metagpt.actions import Action +from metagpt.logs import logger from metagpt.roles import Role from metagpt.schema import Message -from metagpt.logs import logger + class SimpleWriteCode(Action): - PROMPT_TEMPLATE = """ Write a python function that can {instruction} and provide two runnnable test cases. Return ```python your_code_here ``` with NO other texts, @@ -35,7 +35,6 @@ class SimpleWriteCode(Action): super().__init__(name, context, llm) async def run(self, instruction: str): - prompt = self.PROMPT_TEMPLATE.format(instruction=instruction) rsp = await self._aask(prompt) @@ -51,6 +50,7 @@ class SimpleWriteCode(Action): code_text = match.group(1) if match else rsp return code_text + class SimpleRunCode(Action): def __init__(self, name="SimpleRunCode", context=None, llm=None): super().__init__(name, context, llm) @@ -61,12 +61,13 @@ class SimpleRunCode(Action): logger.info(f"{code_result=}") return code_result + class SimpleCoder(Role): def __init__( - self, - name: str = "Alice", - profile: str = "SimpleCoder", - **kwargs, + self, + name: str = "Alice", + profile: str = "SimpleCoder", + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([SimpleWriteCode]) @@ -75,7 +76,7 @@ class SimpleCoder(Role): logger.info(f"{self._setting}: ready to {self._rc.todo}") todo = self._rc.todo - msg = self._rc.memory.get()[-1] # retrieve the latest memory + msg = self._rc.memory.get()[-1] # retrieve the latest memory instruction = msg.content code_text = await SimpleWriteCode().run(instruction) @@ -83,12 +84,13 @@ class SimpleCoder(Role): return msg + class RunnableCoder(Role): def __init__( - self, - name: str = "Alice", - profile: str = "RunnableCoder", - **kwargs, + self, + name: str = "Alice", + profile: str = "RunnableCoder", + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([SimpleWriteCode, SimpleRunCode]) @@ -128,6 +130,7 @@ class RunnableCoder(Role): await self._act() return Message(content="All job done", role=self.profile) + def main(msg="write a function that calculates the sum of a list"): # role = SimpleCoder() role = RunnableCoder() @@ -135,5 +138,6 @@ def main(msg="write a function that calculates the sum of a list"): result = asyncio.run(role.run(msg)) logger.info(result) + if __name__ == '__main__': fire.Fire(main) diff --git a/examples/debate.py b/examples/debate.py index 05db28070..d0b9fecd8 100644 --- a/examples/debate.py +++ b/examples/debate.py @@ -5,13 +5,15 @@ Author: garylin2099 ''' import asyncio import platform + import fire -from metagpt.software_company import SoftwareCompany from metagpt.actions import Action, BossRequirement +from metagpt.logs import logger from metagpt.roles import Role from metagpt.schema import Message -from metagpt.logs import logger +from metagpt.software_company import SoftwareCompany + class ShoutOut(Action): """Action: Shout out loudly in a debate (quarrel)""" @@ -31,7 +33,6 @@ class ShoutOut(Action): super().__init__(name, context, llm) async def run(self, context: str, name: str, opponent_name: str): - prompt = self.PROMPT_TEMPLATE.format(context=context, name=name, opponent_name=opponent_name) # logger.info(prompt) @@ -39,12 +40,13 @@ class ShoutOut(Action): return rsp + class Trump(Role): def __init__( - self, - name: str = "Trump", - profile: str = "Republican", - **kwargs, + self, + name: str = "Trump", + profile: str = "Republican", + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([ShoutOut]) @@ -55,7 +57,7 @@ class Trump(Role): async def _observe(self) -> int: await super()._observe() # accept messages sent (from opponent) to self, disregard own messages from the last round - self._rc.news = [msg for msg in self._rc.news if msg.send_to == self.name] + self._rc.news = [msg for msg in self._rc.news if msg.send_to == self.name] return len(self._rc.news) async def _act(self) -> Message: @@ -79,12 +81,13 @@ class Trump(Role): return msg + class Biden(Role): def __init__( - self, - name: str = "Biden", - profile: str = "Democrat", - **kwargs, + self, + name: str = "Biden", + profile: str = "Democrat", + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([ShoutOut]) @@ -120,6 +123,7 @@ class Biden(Role): return msg + async def startup(idea: str, investment: float = 3.0, n_round: int = 5, code_review: bool = False, run_tests: bool = False): """We reuse the startup paradigm for roles to interact with each other. diff --git a/examples/search_with_specific_engine.py b/examples/search_with_specific_engine.py index 7cc431cd4..9309e18bd 100644 --- a/examples/search_with_specific_engine.py +++ b/examples/search_with_specific_engine.py @@ -6,11 +6,12 @@ from metagpt.tools import SearchEngineType async def main(): # Serper API - #await Searcher(engine = SearchEngineType.SERPER_GOOGLE).run(["What are some good sun protection products?","What are some of the best beaches?"]) + # await Searcher(engine = SearchEngineType.SERPER_GOOGLE).run(["What are some good sun protection products?","What are some of the best beaches?"]) # SerpAPI - #await Searcher(engine=SearchEngineType.SERPAPI_GOOGLE).run("What are the best ski brands for skiers?") + # await Searcher(engine=SearchEngineType.SERPAPI_GOOGLE).run("What are the best ski brands for skiers?") # Google API await Searcher(engine=SearchEngineType.DIRECT_GOOGLE).run("What are the most interesting human facts?") + if __name__ == '__main__': asyncio.run(main()) diff --git a/examples/sk_agent.py b/examples/sk_agent.py index a7513e838..5236ed8ce 100644 --- a/examples/sk_agent.py +++ b/examples/sk_agent.py @@ -9,7 +9,6 @@ import asyncio from semantic_kernel.core_skills import FileIOSkill, MathSkill, TextSkill, TimeSkill from semantic_kernel.planning import SequentialPlanner - # from semantic_kernel.planning import SequentialPlanner from semantic_kernel.planning.action_planner.action_planner import ActionPlanner diff --git a/examples/use_off_the_shelf_agent.py b/examples/use_off_the_shelf_agent.py index 2e10068bd..0debcf780 100644 --- a/examples/use_off_the_shelf_agent.py +++ b/examples/use_off_the_shelf_agent.py @@ -5,8 +5,9 @@ Author: garylin2099 ''' import asyncio -from metagpt.roles.product_manager import ProductManager from metagpt.logs import logger +from metagpt.roles.product_manager import ProductManager + async def main(): msg = "Write a PRD for a snake game" @@ -14,5 +15,6 @@ async def main(): result = await role.run(msg) logger.info(result.content[:100]) + if __name__ == '__main__': asyncio.run(main()) diff --git a/examples/write_tutorial.py b/examples/write_tutorial.py index 71ece5527..73a9c71b7 100644 --- a/examples/write_tutorial.py +++ b/examples/write_tutorial.py @@ -18,4 +18,3 @@ async def main(): if __name__ == '__main__': asyncio.run(main()) - diff --git a/metagpt/_compat.py b/metagpt/_compat.py index c442bd7de..30abcde2f 100644 --- a/metagpt/_compat.py +++ b/metagpt/_compat.py @@ -8,12 +8,14 @@ if sys.implementation.name == "cpython" and platform.system() == "Windows": if sys.version_info[:2] == (3, 9): from asyncio.proactor_events import _ProactorBasePipeTransport + # https://github.com/python/cpython/pull/92842 def pacth_del(self, _warn=warnings.warn): if self._sock is not None: _warn(f"unclosed transport {self!r}", ResourceWarning, source=self) self._sock.close() + _ProactorBasePipeTransport.__del__ = pacth_del if sys.version_info >= (3, 9, 0): diff --git a/metagpt/actions/action.py b/metagpt/actions/action.py index 790295d55..0ae7b148b 100644 --- a/metagpt/actions/action.py +++ b/metagpt/actions/action.py @@ -51,12 +51,12 @@ class Action(ABC): @retry(stop=stop_after_attempt(3), wait=wait_fixed(1)) async def _aask_v1( - self, - prompt: str, - output_class_name: str, - output_data_mapping: dict, - system_msgs: Optional[list[str]] = None, - format="markdown", # compatible to original format + self, + prompt: str, + output_class_name: str, + output_data_mapping: dict, + system_msgs: Optional[list[str]] = None, + format="markdown", # compatible to original format ) -> ActionOutput: """Append default prefix""" if not system_msgs: diff --git a/metagpt/actions/action_output.py b/metagpt/actions/action_output.py index ea7f4fb80..c0b88dcf9 100644 --- a/metagpt/actions/action_output.py +++ b/metagpt/actions/action_output.py @@ -40,4 +40,3 @@ class ActionOutput: new_class.__validator_check_name = classmethod(check_name) new_class.__root_validator_check_missing_fields = classmethod(check_missing_fields) return new_class - \ No newline at end of file diff --git a/metagpt/actions/add_requirement.py b/metagpt/actions/add_requirement.py index 7dc09d062..16e14b3a4 100644 --- a/metagpt/actions/add_requirement.py +++ b/metagpt/actions/add_requirement.py @@ -10,5 +10,6 @@ from metagpt.actions import Action class BossRequirement(Action): """Boss Requirement without any implementation details""" + async def run(self, *args, **kwargs): raise NotImplementedError diff --git a/metagpt/actions/clone_function.py b/metagpt/actions/clone_function.py index cf7d22f04..7529a60c7 100644 --- a/metagpt/actions/clone_function.py +++ b/metagpt/actions/clone_function.py @@ -1,5 +1,5 @@ -from pathlib import Path import traceback +from pathlib import Path from metagpt.actions.write_code import WriteCode from metagpt.logs import logger diff --git a/metagpt/actions/debug_error.py b/metagpt/actions/debug_error.py index d69a22dba..304b1bc3e 100644 --- a/metagpt/actions/debug_error.py +++ b/metagpt/actions/debug_error.py @@ -7,8 +7,8 @@ """ import re -from metagpt.logs import logger from metagpt.actions.action import Action +from metagpt.logs import logger from metagpt.utils.common import CodeParser PROMPT_TEMPLATE = """ @@ -24,6 +24,8 @@ The message is as follows: Now you should start rewriting the code: ## file name of the code to rewrite: Write code with triple quoto. Do your best to implement THIS IN ONLY ONE FILE. """ + + class DebugError(Action): def __init__(self, name="DebugError", context=None, llm=None): super().__init__(name, context, llm) @@ -33,17 +35,17 @@ class DebugError(Action): # f"\n\n{error}\n\nPlease try to fix the error in this code." # fixed_code = await self._aask(prompt) # return fixed_code - + async def run(self, context): if "PASS" in context: return "", "the original code works fine, no need to debug" - + file_name = re.search("## File To Rewrite:\s*(.+\\.py)", context).group(1) logger.info(f"Debug and rewrite {file_name}") prompt = PROMPT_TEMPLATE.format(context=context) - + rsp = await self._aask(prompt) code = CodeParser.parse_code(block="", text=rsp) diff --git a/metagpt/actions/design_api_review.py b/metagpt/actions/design_api_review.py index 9bb822a62..687a33652 100644 --- a/metagpt/actions/design_api_review.py +++ b/metagpt/actions/design_api_review.py @@ -19,4 +19,3 @@ class DesignReview(Action): api_review = await self._aask(prompt) return api_review - \ No newline at end of file diff --git a/metagpt/actions/design_filenames.py b/metagpt/actions/design_filenames.py index 29400e950..6c3d8e803 100644 --- a/metagpt/actions/design_filenames.py +++ b/metagpt/actions/design_filenames.py @@ -26,4 +26,3 @@ class DesignFilenames(Action): logger.debug(prompt) logger.debug(design_filenames) return design_filenames - \ No newline at end of file diff --git a/metagpt/actions/detail_mining.py b/metagpt/actions/detail_mining.py index e29d6911b..ffae26f9f 100644 --- a/metagpt/actions/detail_mining.py +++ b/metagpt/actions/detail_mining.py @@ -6,7 +6,6 @@ @File : detail_mining.py """ from metagpt.actions import Action, ActionOutput -from metagpt.logs import logger PROMPT_TEMPLATE = """ ##TOPIC @@ -43,6 +42,7 @@ OUTPUT_MAPPING = { class DetailMining(Action): """This class allows LLM to further mine noteworthy details based on specific "##TOPIC"(discussion topic) and "##RECORD" (discussion records), thereby deepening the discussion. """ + def __init__(self, name="", context=None, llm=None): super().__init__(name, context, llm) diff --git a/metagpt/actions/prepare_interview.py b/metagpt/actions/prepare_interview.py index 5db3a9f37..cbaa1d56b 100644 --- a/metagpt/actions/prepare_interview.py +++ b/metagpt/actions/prepare_interview.py @@ -27,6 +27,7 @@ Requirement: Provide a list of questions for the interviewer to ask the intervie Attention: Provide as markdown block as the format above, at least 10 questions. """ + # prepare for a interview @@ -38,4 +39,3 @@ class PrepareInterview(Action): prompt = PROMPT_TEMPLATE.format(context=context) question_list = await self._aask_v1(prompt) return question_list - diff --git a/metagpt/actions/research.py b/metagpt/actions/research.py index 49a981e86..8a5778230 100644 --- a/metagpt/actions/research.py +++ b/metagpt/actions/research.py @@ -3,7 +3,6 @@ from __future__ import annotations import asyncio -import json from typing import Callable from pydantic import parse_obj_as @@ -60,7 +59,6 @@ a comprehensive summary of the text. {content} ''' - CONDUCT_RESEARCH_PROMPT = '''### Reference Information {content} @@ -78,12 +76,13 @@ above. The report must meet the following requirements: class CollectLinks(Action): """Action class to collect links from a search engine.""" + def __init__( - self, - name: str = "", - *args, - rank_func: Callable[[list[str]], None] | None = None, - **kwargs, + self, + name: str = "", + *args, + rank_func: Callable[[list[str]], None] | None = None, + **kwargs, ): super().__init__(name, *args, **kwargs) self.desc = "Collect links from a search engine." @@ -91,11 +90,11 @@ class CollectLinks(Action): self.rank_func = rank_func async def run( - self, - topic: str, - decomposition_nums: int = 4, - url_per_query: int = 4, - system_text: str | None = None, + self, + topic: str, + decomposition_nums: int = 4, + url_per_query: int = 4, + system_text: str | None = None, ) -> dict[str, list[str]]: """Run the action to collect links. @@ -120,13 +119,16 @@ class CollectLinks(Action): def gen_msg(): while True: - search_results = "\n".join(f"#### Keyword: {i}\n Search Result: {j}\n" for (i, j) in zip(keywords, results)) - prompt = SUMMARIZE_SEARCH_PROMPT.format(decomposition_nums=decomposition_nums, search_results=search_results) + search_results = "\n".join( + f"#### Keyword: {i}\n Search Result: {j}\n" for (i, j) in zip(keywords, results)) + prompt = SUMMARIZE_SEARCH_PROMPT.format(decomposition_nums=decomposition_nums, + search_results=search_results) yield prompt remove = max(results, key=len) remove.pop() if len(remove) == 0: break + prompt = reduce_message_length(gen_msg(), self.llm.model, system_text, CONFIG.max_tokens_rsp) logger.debug(prompt) queries = await self._aask(prompt, [system_text]) @@ -172,11 +174,12 @@ class CollectLinks(Action): class WebBrowseAndSummarize(Action): """Action class to explore the web and provide summaries of articles and webpages.""" + def __init__( - self, - *args, - browse_func: Callable[[list[str]], None] | None = None, - **kwargs, + self, + *args, + browse_func: Callable[[list[str]], None] | None = None, + **kwargs, ): super().__init__(*args, **kwargs) if CONFIG.model_for_researcher_summary: @@ -188,11 +191,11 @@ class WebBrowseAndSummarize(Action): self.desc = "Explore the web and provide summaries of articles and webpages." async def run( - self, - url: str, - *urls: str, - query: str, - system_text: str = RESEARCH_BASE_SYSTEM, + self, + url: str, + *urls: str, + query: str, + system_text: str = RESEARCH_BASE_SYSTEM, ) -> dict[str, str]: """Run the action to browse the web and provide summaries. @@ -214,7 +217,8 @@ class WebBrowseAndSummarize(Action): for u, content in zip([url, *urls], contents): content = content.inner_text chunk_summaries = [] - for prompt in generate_prompt_chunk(content, prompt_template, self.llm.model, system_text, CONFIG.max_tokens_rsp): + for prompt in generate_prompt_chunk(content, prompt_template, self.llm.model, system_text, + CONFIG.max_tokens_rsp): logger.debug(prompt) summary = await self._aask(prompt, [system_text]) if summary == "Not relevant.": @@ -238,16 +242,17 @@ class WebBrowseAndSummarize(Action): class ConductResearch(Action): """Action class to conduct research and generate a research report.""" + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) if CONFIG.model_for_researcher_report: self.llm.model = CONFIG.model_for_researcher_report async def run( - self, - topic: str, - content: str, - system_text: str = RESEARCH_BASE_SYSTEM, + self, + topic: str, + content: str, + system_text: str = RESEARCH_BASE_SYSTEM, ) -> str: """Run the action to conduct research and generate a research report. diff --git a/metagpt/actions/run_code.py b/metagpt/actions/run_code.py index f69d2cd1a..52f95d3bf 100644 --- a/metagpt/actions/run_code.py +++ b/metagpt/actions/run_code.py @@ -99,7 +99,7 @@ class RunCode(Action): return stdout.decode("utf-8"), stderr.decode("utf-8") async def run( - self, code, mode="script", code_file_name="", test_code="", test_file_name="", command=[], **kwargs + self, code, mode="script", code_file_name="", test_code="", test_file_name="", command=[], **kwargs ) -> str: logger.info(f"Running {' '.join(command)}") if mode == "script": diff --git a/metagpt/actions/search_and_summarize.py b/metagpt/actions/search_and_summarize.py index 069f2a977..a13db28d2 100644 --- a/metagpt/actions/search_and_summarize.py +++ b/metagpt/actions/search_and_summarize.py @@ -54,7 +54,6 @@ SEARCH_AND_SUMMARIZE_PROMPT = """ """ - SEARCH_AND_SUMMARIZE_SALES_SYSTEM = """## Requirements 1. Please summarize the latest dialogue based on the reference information (secondary) and dialogue history (primary). Do not include text that is irrelevant to the conversation. - The context is for reference only. If it is irrelevant to the user's search request history, please reduce its reference and usage. @@ -140,4 +139,3 @@ class SearchAndSummarize(Action): logger.debug(prompt) logger.debug(result) return result - \ No newline at end of file diff --git a/metagpt/actions/write_code.py b/metagpt/actions/write_code.py index c000805c5..8e26dd9be 100644 --- a/metagpt/actions/write_code.py +++ b/metagpt/actions/write_code.py @@ -5,13 +5,14 @@ @Author : alexanderwu @File : write_code.py """ +from tenacity import retry, stop_after_attempt, wait_fixed + from metagpt.actions import WriteDesign from metagpt.actions.action import Action from metagpt.const import WORKSPACE_ROOT from metagpt.logs import logger from metagpt.schema import Message from metagpt.utils.common import CodeParser -from tenacity import retry, stop_after_attempt, wait_fixed PROMPT_TEMPLATE = """ NOTICE @@ -79,4 +80,3 @@ class WriteCode(Action): # code_rsp = await self._aask_v1(prompt, "code_rsp", OUTPUT_MAPPING) # self._save(context, filename, code) return code - \ No newline at end of file diff --git a/metagpt/actions/write_code_review.py b/metagpt/actions/write_code_review.py index 4ff4d6cf6..6211d5e1e 100644 --- a/metagpt/actions/write_code_review.py +++ b/metagpt/actions/write_code_review.py @@ -6,11 +6,12 @@ @File : write_code_review.py """ +from tenacity import retry, stop_after_attempt, wait_fixed + from metagpt.actions.action import Action from metagpt.logs import logger from metagpt.schema import Message from metagpt.utils.common import CodeParser -from tenacity import retry, stop_after_attempt, wait_fixed PROMPT_TEMPLATE = """ NOTICE @@ -79,4 +80,3 @@ class WriteCodeReview(Action): # code_rsp = await self._aask_v1(prompt, "code_rsp", OUTPUT_MAPPING) # self._save(context, filename, code) return code - \ No newline at end of file diff --git a/metagpt/actions/write_docstring.py b/metagpt/actions/write_docstring.py index 5c7815793..a9c90ce9b 100644 --- a/metagpt/actions/write_docstring.py +++ b/metagpt/actions/write_docstring.py @@ -162,9 +162,9 @@ class WriteDocstring(Action): self.desc = "Write docstring for code." async def run( - self, code: str, - system_text: str = PYTHON_DOCSTRING_SYSTEM, - style: Literal["google", "numpy", "sphinx"] = "google", + self, code: str, + system_text: str = PYTHON_DOCSTRING_SYSTEM, + style: Literal["google", "numpy", "sphinx"] = "google", ) -> str: """Writes docstrings for the given code and system text in the specified style. @@ -202,6 +202,7 @@ def _simplify_python_code(code: str) -> None: if __name__ == "__main__": import fire + async def run(filename: str, overwrite: bool = False, style: Literal["google", "numpy", "sphinx"] = "google"): with open(filename) as f: code = f.read() @@ -211,4 +212,5 @@ if __name__ == "__main__": f.write(code) return code + fire.Fire(run) diff --git a/metagpt/actions/write_prd_review.py b/metagpt/actions/write_prd_review.py index 5c922d3bc..5ff9624c5 100644 --- a/metagpt/actions/write_prd_review.py +++ b/metagpt/actions/write_prd_review.py @@ -25,4 +25,3 @@ class WritePRDReview(Action): prompt = self.prd_review_prompt_template.format(prd=self.prd) review = await self._aask(prompt) return review - \ No newline at end of file diff --git a/metagpt/actions/write_tutorial.py b/metagpt/actions/write_tutorial.py index 23e3560e8..7bf844e43 100644 --- a/metagpt/actions/write_tutorial.py +++ b/metagpt/actions/write_tutorial.py @@ -65,4 +65,3 @@ class WriteContent(Action): """ prompt = CONTENT_PROMPT.format(topic=topic, language=self.language, directory=self.directory) return await self._aask(prompt=prompt) - diff --git a/metagpt/config.py b/metagpt/config.py index ab57ae614..95caea0d1 100644 --- a/metagpt/config.py +++ b/metagpt/config.py @@ -46,7 +46,7 @@ class Config(metaclass=Singleton): self.openai_api_key = self._get("OPENAI_API_KEY") self.anthropic_api_key = self._get("Anthropic_API_KEY") if (not self.openai_api_key or "YOUR_API_KEY" == self.openai_api_key) and ( - not self.anthropic_api_key or "YOUR_API_KEY" == self.anthropic_api_key + not self.anthropic_api_key or "YOUR_API_KEY" == self.anthropic_api_key ): raise NotConfiguredException("Set OPENAI_API_KEY or Anthropic_API_KEY first") self.openai_api_base = self._get("OPENAI_API_BASE") @@ -62,7 +62,7 @@ class Config(metaclass=Singleton): self.deployment_name = self._get("DEPLOYMENT_NAME") self.deployment_id = self._get("DEPLOYMENT_ID") - self.xinghuo_appid=self._get("XINGHUO_APPID") + self.xinghuo_appid = self._get("XINGHUO_APPID") self.xinghuo_api_secret = self._get("XINGHUO_API_SECRET") self.xinghuo_api_key = self._get("XINGHUO_API_KEY") self.domain = self._get("DOMAIN") diff --git a/metagpt/const.py b/metagpt/const.py index b8b08628e..457eba698 100644 --- a/metagpt/const.py +++ b/metagpt/const.py @@ -13,9 +13,9 @@ def get_project_root(): current_path = Path.cwd() while True: if ( - (current_path / ".git").exists() - or (current_path / ".project_root").exists() - or (current_path / ".gitignore").exists() + (current_path / ".git").exists() + or (current_path / ".project_root").exists() + or (current_path / ".gitignore").exists() ): return current_path parent_path = current_path.parent diff --git a/metagpt/document_store/base_store.py b/metagpt/document_store/base_store.py index 5d7015e8b..3969ce289 100644 --- a/metagpt/document_store/base_store.py +++ b/metagpt/document_store/base_store.py @@ -53,4 +53,3 @@ class LocalStore(BaseStore, ABC): @abstractmethod def _write(self, docs, metadatas): raise NotImplementedError - \ No newline at end of file diff --git a/metagpt/document_store/chromadb_store.py b/metagpt/document_store/chromadb_store.py index d2ecc05f6..6ec097592 100644 --- a/metagpt/document_store/chromadb_store.py +++ b/metagpt/document_store/chromadb_store.py @@ -10,6 +10,7 @@ import chromadb class ChromaStore: """If inherited from BaseStore, or importing other modules from metagpt, a Python exception occurs, which is strange.""" + def __init__(self, name): client = chromadb.Client() collection = client.create_collection(name) diff --git a/metagpt/document_store/document.py b/metagpt/document_store/document.py index e4b9473c7..85e416c65 100644 --- a/metagpt/document_store/document.py +++ b/metagpt/document_store/document.py @@ -79,4 +79,3 @@ class Document: return self._get_docs_and_metadatas_by_langchain() else: raise NotImplementedError - \ No newline at end of file diff --git a/metagpt/document_store/qdrant_store.py b/metagpt/document_store/qdrant_store.py index 98b82cf87..80016e4ad 100644 --- a/metagpt/document_store/qdrant_store.py +++ b/metagpt/document_store/qdrant_store.py @@ -38,11 +38,11 @@ class QdrantStore(BaseStore): raise Exception("please check QdrantConnection.") def create_collection( - self, - collection_name: str, - vectors_config: VectorParams, - force_recreate=False, - **kwargs, + self, + collection_name: str, + vectors_config: VectorParams, + force_recreate=False, + **kwargs, ): """ create a collection @@ -97,12 +97,12 @@ class QdrantStore(BaseStore): ) def search( - self, - collection_name: str, - query: List[float], - query_filter: Filter = None, - k=10, - return_vector=False, + self, + collection_name: str, + query: List[float], + query_filter: Filter = None, + k=10, + return_vector=False, ): """ vector search diff --git a/metagpt/inspect_module.py b/metagpt/inspect_module.py index a89ac1c5e..fcdd4f0b7 100644 --- a/metagpt/inspect_module.py +++ b/metagpt/inspect_module.py @@ -25,4 +25,4 @@ def print_classes_and_functions(module): if __name__ == '__main__': - print_classes_and_functions(metagpt) \ No newline at end of file + print_classes_and_functions(metagpt) diff --git a/metagpt/llm.py b/metagpt/llm.py index e6f815950..6a9a9132f 100644 --- a/metagpt/llm.py +++ b/metagpt/llm.py @@ -12,6 +12,7 @@ from metagpt.provider.openai_api import OpenAIGPTAPI as LLM DEFAULT_LLM = LLM() CLAUDE_LLM = Claude() + async def ai_func(prompt): """使用LLM进行QA QA with LLMs diff --git a/metagpt/logs.py b/metagpt/logs.py index b2052e9b8..0adee23ff 100644 --- a/metagpt/logs.py +++ b/metagpt/logs.py @@ -12,6 +12,7 @@ from loguru import logger as _logger from metagpt.const import PROJECT_ROOT + def define_log_level(print_level="INFO", logfile_level="DEBUG"): """调整日志级别到level之上 Adjust the log level to above level @@ -21,4 +22,5 @@ def define_log_level(print_level="INFO", logfile_level="DEBUG"): _logger.add(PROJECT_ROOT / 'logs/log.txt', level=logfile_level) return _logger + logger = define_log_level() diff --git a/metagpt/manager.py b/metagpt/manager.py index 9d238c621..e6bf77c8b 100644 --- a/metagpt/manager.py +++ b/metagpt/manager.py @@ -51,7 +51,7 @@ class Manager: # chosen_role_name = self.llm.ask(self.prompt_template.format(context)) # FIXME: 现在通过简单的字典决定流向,但之后还是应该有思考过程 - #The direction of flow is now determined by a simple dictionary, but there should still be a thought process afterwards + # The direction of flow is now determined by a simple dictionary, but there should still be a thought process afterwards next_role_profile = self.role_directions[message.role] # logger.debug(f"{next_role_profile}") for _, role in roles.items(): diff --git a/metagpt/memory/__init__.py b/metagpt/memory/__init__.py index 710930626..e65ee7642 100644 --- a/metagpt/memory/__init__.py +++ b/metagpt/memory/__init__.py @@ -6,9 +6,8 @@ @File : __init__.py """ -from metagpt.memory.memory import Memory from metagpt.memory.longterm_memory import LongTermMemory - +from metagpt.memory.memory import Memory __all__ = [ "Memory", diff --git a/metagpt/memory/longterm_memory.py b/metagpt/memory/longterm_memory.py index f8abea5f3..e0b8e68c1 100644 --- a/metagpt/memory/longterm_memory.py +++ b/metagpt/memory/longterm_memory.py @@ -68,4 +68,3 @@ class LongTermMemory(Memory): def clear(self): super(LongTermMemory, self).clear() self.memory_storage.clean() - \ No newline at end of file diff --git a/metagpt/memory/memory.py b/metagpt/memory/memory.py index c818fa707..282f5fe33 100644 --- a/metagpt/memory/memory.py +++ b/metagpt/memory/memory.py @@ -85,4 +85,3 @@ class Memory: continue rsp += self.index[action] return rsp - \ No newline at end of file diff --git a/metagpt/memory/memory_storage.py b/metagpt/memory/memory_storage.py index 302d96aa7..5cd4cac47 100644 --- a/metagpt/memory/memory_storage.py +++ b/metagpt/memory/memory_storage.py @@ -2,16 +2,16 @@ # -*- coding: utf-8 -*- # @Desc : the implement of memory storage -from typing import List from pathlib import Path +from typing import List from langchain.vectorstores.faiss import FAISS from metagpt.const import DATA_PATH, MEM_TTL +from metagpt.document_store.faiss_store import FaissStore from metagpt.logs import logger from metagpt.schema import Message from metagpt.utils.serialize import serialize_message, deserialize_message -from metagpt.document_store.faiss_store import FaissStore class MemoryStorage(FaissStore): @@ -104,4 +104,3 @@ class MemoryStorage(FaissStore): self.store = None self._initialized = False - \ No newline at end of file diff --git a/metagpt/prompts/decompose.py b/metagpt/prompts/decompose.py index ab0c360d3..4ede8b138 100644 --- a/metagpt/prompts/decompose.py +++ b/metagpt/prompts/decompose.py @@ -16,7 +16,6 @@ The requirements of the tree-structure plan are: 4. The sub-goals at the bottom level should be basic actions so that I can easily execute them in the game. """ - DECOMPOSE_USER = """USER: The goal is to {goal description}. Generate the plan according to the requirements. """ diff --git a/metagpt/prompts/generate_skill.md b/metagpt/prompts/generate_skill.md index 74948cd15..1d0a68688 100644 --- a/metagpt/prompts/generate_skill.md +++ b/metagpt/prompts/generate_skill.md @@ -66,9 +66,10 @@ # PRD return prd ``` - The main class/function is WritePRD. Then you should write: -This class is designed to generate a PRD based on input requirements. Notably, there's a template prompt with sections for product, function, goals, user scenarios, requirements, constraints, performance metrics. This template gets filled with input requirements and then queries a big language model to produce the detailed PRD. \ No newline at end of file +This class is designed to generate a PRD based on input requirements. Notably, there's a template prompt with sections +for product, function, goals, user scenarios, requirements, constraints, performance metrics. This template gets filled +with input requirements and then queries a big language model to produce the detailed PRD. \ No newline at end of file diff --git a/metagpt/prompts/sales.py b/metagpt/prompts/sales.py index a44aacafe..08e7b28f8 100644 --- a/metagpt/prompts/sales.py +++ b/metagpt/prompts/sales.py @@ -6,7 +6,6 @@ @File : sales.py """ - SALES_ASSISTANT = """You are a sales assistant helping your sales agent to determine which stage of a sales conversation should the agent move to, or stay at. Following '===' is the conversation history. Use this conversation history to make your decision. @@ -29,7 +28,6 @@ The answer needs to be one number only, no words. If there is no conversation history, output 1. Do not answer anything else nor add anything to you answer.""" - SALES = """Never forget your name is {salesperson_name}. You work as a {salesperson_role}. You work at company named {company_name}. {company_name}'s business is the following: {company_business} Company values are the following. {company_values} @@ -54,10 +52,11 @@ Conversation history: {salesperson_name}: """ -conversation_stages = {'1' : "Introduction: Start the conversation by introducing yourself and your company. Be polite and respectful while keeping the tone of the conversation professional. Your greeting should be welcoming. Always clarify in your greeting the reason why you are contacting the prospect.", -'2': "Qualification: Qualify the prospect by confirming if they are the right person to talk to regarding your product/service. Ensure that they have the authority to make purchasing decisions.", -'3': "Value proposition: Briefly explain how your product/service can benefit the prospect. Focus on the unique selling points and value proposition of your product/service that sets it apart from competitors.", -'4': "Needs analysis: Ask open-ended questions to uncover the prospect's needs and pain points. Listen carefully to their responses and take notes.", -'5': "Solution presentation: Based on the prospect's needs, present your product/service as the solution that can address their pain points.", -'6': "Objection handling: Address any objections that the prospect may have regarding your product/service. Be prepared to provide evidence or testimonials to support your claims.", -'7': "Close: Ask for the sale by proposing a next step. This could be a demo, a trial or a meeting with decision-makers. Ensure to summarize what has been discussed and reiterate the benefits."} +conversation_stages = { + '1': "Introduction: Start the conversation by introducing yourself and your company. Be polite and respectful while keeping the tone of the conversation professional. Your greeting should be welcoming. Always clarify in your greeting the reason why you are contacting the prospect.", + '2': "Qualification: Qualify the prospect by confirming if they are the right person to talk to regarding your product/service. Ensure that they have the authority to make purchasing decisions.", + '3': "Value proposition: Briefly explain how your product/service can benefit the prospect. Focus on the unique selling points and value proposition of your product/service that sets it apart from competitors.", + '4': "Needs analysis: Ask open-ended questions to uncover the prospect's needs and pain points. Listen carefully to their responses and take notes.", + '5': "Solution presentation: Based on the prospect's needs, present your product/service as the solution that can address their pain points.", + '6': "Objection handling: Address any objections that the prospect may have regarding your product/service. Be prepared to provide evidence or testimonials to support your claims.", + '7': "Close: Ask for the sale by proposing a next step. This could be a demo, a trial or a meeting with decision-makers. Ensure to summarize what has been discussed and reiterate the benefits."} diff --git a/metagpt/prompts/summarize.py b/metagpt/prompts/summarize.py index 42d34b8a5..bd5d69558 100644 --- a/metagpt/prompts/summarize.py +++ b/metagpt/prompts/summarize.py @@ -20,7 +20,6 @@ summary. Pick a suitable emoji for every bullet point. Your response should be i a YouTube video, use the following text: {{CONTENT}}. """ - # GCP-VertexAI-Text Summarization (SUMMARIZE_PROMPT_2-5 are from this source) # https://github.com/GoogleCloudPlatform/generative-ai/blob/main/language/examples/prompt-design/text_summarization.ipynb # Long documents require a map-reduce process, see the following notebook @@ -39,7 +38,6 @@ Summary: """ - SUMMARIZE_PROMPT_3 = """ Provide a TL;DR for the following article: @@ -53,7 +51,6 @@ Instead of computing on the individual qubits themselves, we will then compute o TL;DR: """ - SUMMARIZE_PROMPT_4 = """ Provide a very short summary in four bullet points for the following article: @@ -68,7 +65,6 @@ Bulletpoints: """ - SUMMARIZE_PROMPT_5 = """ Please generate a summary of the following conversation and at the end summarize the to-do's for the support Agent: diff --git a/metagpt/prompts/tutorial_assistant.py b/metagpt/prompts/tutorial_assistant.py index d690aad83..fe31e5f2a 100644 --- a/metagpt/prompts/tutorial_assistant.py +++ b/metagpt/prompts/tutorial_assistant.py @@ -36,4 +36,4 @@ Strictly limit output according to the following requirements: 3. The output must be strictly in the specified language, {language}. 4. Do not have redundant output, including concluding remarks. 5. Strict requirement not to output the topic "{topic}". -""" \ No newline at end of file +""" diff --git a/metagpt/prompts/use_lib_sop.py b/metagpt/prompts/use_lib_sop.py index b43ed5125..edebbe9c7 100644 --- a/metagpt/prompts/use_lib_sop.py +++ b/metagpt/prompts/use_lib_sop.py @@ -73,7 +73,6 @@ The action_list can contain arbitrary number of actions. The args of each action 6. I will execute your code step by step and give you feedback. If some action fails, I will stop at that action and will not execute its following actions. The feedback will include error messages about the failed action. At that time, you should replan and write the new code just starting from that failed action. """ - SOP_USER = """USER: My current state: - inventory: {inventory} diff --git a/metagpt/provider/__init__.py b/metagpt/provider/__init__.py index 56dc19b4b..8c64cd4e1 100644 --- a/metagpt/provider/__init__.py +++ b/metagpt/provider/__init__.py @@ -8,5 +8,4 @@ from metagpt.provider.openai_api import OpenAIGPTAPI - __all__ = ["OpenAIGPTAPI"] diff --git a/metagpt/provider/anthropic_api.py b/metagpt/provider/anthropic_api.py index 7293e2cde..03802a716 100644 --- a/metagpt/provider/anthropic_api.py +++ b/metagpt/provider/anthropic_api.py @@ -32,4 +32,3 @@ class Claude2: max_tokens_to_sample=1000, ) return res.completion - \ No newline at end of file diff --git a/metagpt/provider/base_chatbot.py b/metagpt/provider/base_chatbot.py index abdf423f4..a960d1c05 100644 --- a/metagpt/provider/base_chatbot.py +++ b/metagpt/provider/base_chatbot.py @@ -25,4 +25,3 @@ class BaseChatbot(ABC): @abstractmethod def ask_code(self, msgs: list) -> str: """Ask GPT multiple questions and get a piece of code""" - \ No newline at end of file diff --git a/metagpt/provider/base_gpt_api.py b/metagpt/provider/base_gpt_api.py index de61167b9..f39e708eb 100644 --- a/metagpt/provider/base_gpt_api.py +++ b/metagpt/provider/base_gpt_api.py @@ -115,4 +115,3 @@ class BaseGPTAPI(BaseChatbot): def messages_to_dict(self, messages): """objects to [{"role": "user", "content": msg}] etc.""" return [i.to_dict() for i in messages] - \ No newline at end of file diff --git a/metagpt/provider/openai_api.py b/metagpt/provider/openai_api.py index 7e865f288..6b2c2941d 100644 --- a/metagpt/provider/openai_api.py +++ b/metagpt/provider/openai_api.py @@ -41,7 +41,7 @@ class RateLimiter: self.rpm = rpm def split_batches(self, batch): - return [batch[i : i + self.rpm] for i in range(0, len(batch), self.rpm)] + return [batch[i: i + self.rpm] for i in range(0, len(batch), self.rpm)] async def wait_if_needed(self, num_requests): current_time = time.time() @@ -83,8 +83,9 @@ class CostManager(metaclass=Singleton): self.total_prompt_tokens += prompt_tokens self.total_completion_tokens += completion_tokens cost = ( - prompt_tokens * TOKEN_COSTS[model]["prompt"] + completion_tokens * TOKEN_COSTS[model]["completion"] - ) / 1000 + prompt_tokens * TOKEN_COSTS[model]["prompt"] + completion_tokens * TOKEN_COSTS[model][ + "completion"] + ) / 1000 self.total_cost += cost logger.info( f"Total running cost: ${self.total_cost:.3f} | Max budget: ${CONFIG.max_budget:.3f} | " diff --git a/metagpt/provider/spark_api.py b/metagpt/provider/spark_api.py index db50771d4..f03d7e7d6 100644 --- a/metagpt/provider/spark_api.py +++ b/metagpt/provider/spark_api.py @@ -12,43 +12,59 @@ import hashlib import hmac import json import ssl -from collections import OrderedDict -import datetime from time import mktime +from typing import Optional from urllib.parse import urlencode from urllib.parse import urlparse from wsgiref.handlers import format_date_time + import websocket # 使用websocket_client -import websockets -from websockets.legacy.server import WebSocketServerProtocol from metagpt.config import CONFIG from metagpt.logs import logger from metagpt.provider.base_gpt_api import BaseGPTAPI - - class SparkAPI(BaseGPTAPI): + def __init__(self): + logger.warning('当前方法无法支持异步运行。当你使用acompletion时,并不能并行访问。') + + def ask(self, msg: str) -> str: + message = [self._default_system_msg(), self._user_msg(msg)] + rsp = self.completion(message) + return rsp + + async def aask(self, msg: str, system_msgs: Optional[list[str]] = None) -> str: + if system_msgs: + message = self._system_msgs(system_msgs) + [self._user_msg(msg)] + else: + message = [self._default_system_msg(), self._user_msg(msg)] + rsp = await self.acompletion(message) + logger.debug(message) + return rsp + def get_choice_text(self, rsp: dict) -> str: return rsp["payload"]["choices"]["text"][-1]["content"] + async def acompletion_text(self, messages: list[dict], stream=False) -> str: - #尚未实现 - pass + # 不支持 + logger.error('该功能禁用。') + w = GetMessageFromWeb(messages) + return w.run() async def acompletion(self, messages: list[dict]): - # 尚未实现 + # 不支持异步 w = GetMessageFromWeb(messages) - return await w.arun() + return w.run() def completion(self, messages: list[dict]): - w= GetMessageFromWeb(messages) + w = GetMessageFromWeb(messages) return w.run() class GetMessageFromWeb: - class WsParam(object): + class WsParam: """ 该类适合讯飞星火大部分接口的调用。 输入 app_id, api_key, api_secret, spark_url以初始化, @@ -97,9 +113,9 @@ class GetMessageFromWeb: # 此处打印出建立连接时候的url,参考本demo的时候可取消上方打印的注释,比对相同参数时生成的url与自己代码生成的url是否一致 return url - def __init__(self,text): + def __init__(self, text): self.text = text - self.ret =None + self.ret = '' self.xinghuo_appid = CONFIG.xinghuo_appid self.xinghuo_api_secret = CONFIG.xinghuo_api_secret self.xinghuo_api_key = CONFIG.xinghuo_api_key @@ -107,7 +123,6 @@ class GetMessageFromWeb: self.spark_url = CONFIG.spark_url def on_message(self, ws, message): - logger.info(message) data = json.loads(message) code = data['header']['code'] @@ -120,9 +135,9 @@ class GetMessageFromWeb: seq = choices["seq"] # 服务端是流式返回,seq为返回的数据序号 status = choices["status"] # 服务端是流式返回,status用于判断信息是否传送完毕 content = choices["text"][0]["content"] # 本次接收到的回答文本 - self.ret=data - ws.close() - logger.info(f"本次通讯关闭") + self.ret += content + if status == 2: + ws.close() # 收到websocket错误的处理 def on_error(self, ws, error): @@ -132,7 +147,6 @@ class GetMessageFromWeb: # 收到websocket关闭的处理 def on_close(self, ws, one, two): pass - # print("通讯完成") # 处理请求数据 def gen_params(self): @@ -164,8 +178,6 @@ class GetMessageFromWeb: def send(self, ws, *args): data = json.dumps(self.gen_params()) - logger.info(f"开始尝试建立通讯...") - logger.info(f"此次请求的请求头数据为:{data}") ws.send(data) # 收到websocket连接建立的处理 @@ -175,6 +187,7 @@ class GetMessageFromWeb: # 处理收到的 websocket消息,出现任何错误,调用on_error方法 def run(self): return self._run(self.text) + def _run(self, text_list): ws_param = self.WsParam( @@ -185,7 +198,7 @@ class GetMessageFromWeb: text_list) ws_url = ws_param.create_url() - websocket.enableTrace(True) # 默认禁用 WebSocket 的跟踪功能 + websocket.enableTrace(False) # 默认禁用 WebSocket 的跟踪功能 ws = websocket.WebSocketApp(ws_url, on_message=self.on_message, on_error=self.on_error, on_close=self.on_close, on_open=self.on_open) ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE}) diff --git a/metagpt/roles/__init__.py b/metagpt/roles/__init__.py index 1768b786c..34ec144a1 100644 --- a/metagpt/roles/__init__.py +++ b/metagpt/roles/__init__.py @@ -6,16 +6,15 @@ @File : __init__.py """ -from metagpt.roles.role import Role from metagpt.roles.architect import Architect -from metagpt.roles.project_manager import ProjectManager -from metagpt.roles.product_manager import ProductManager -from metagpt.roles.engineer import Engineer -from metagpt.roles.qa_engineer import QaEngineer -from metagpt.roles.seacher import Searcher -from metagpt.roles.sales import Sales from metagpt.roles.customer_service import CustomerService - +from metagpt.roles.engineer import Engineer +from metagpt.roles.product_manager import ProductManager +from metagpt.roles.project_manager import ProjectManager +from metagpt.roles.qa_engineer import QaEngineer +from metagpt.roles.role import Role +from metagpt.roles.sales import Sales +from metagpt.roles.seacher import Searcher __all__ = [ "Role", diff --git a/metagpt/roles/architect.py b/metagpt/roles/architect.py index 15d5fe5b1..e86bd4eb6 100644 --- a/metagpt/roles/architect.py +++ b/metagpt/roles/architect.py @@ -23,11 +23,11 @@ class Architect(Role): """ def __init__( - self, - name: str = "Bob", - profile: str = "Architect", - goal: str = "Design a concise, usable, complete python system", - constraints: str = "Try to specify good open source tools as much as possible", + self, + name: str = "Bob", + profile: str = "Architect", + goal: str = "Design a concise, usable, complete python system", + constraints: str = "Try to specify good open source tools as much as possible", ) -> None: """Initializes the Architect with given attributes.""" super().__init__(name, profile, goal, constraints) diff --git a/metagpt/roles/customer_service.py b/metagpt/roles/customer_service.py index 4547f8190..4aae7cb03 100644 --- a/metagpt/roles/customer_service.py +++ b/metagpt/roles/customer_service.py @@ -32,4 +32,3 @@ class CustomerService(Sales): store=None ): super().__init__(name, profile, desc=desc, store=store) - \ No newline at end of file diff --git a/metagpt/roles/engineer.py b/metagpt/roles/engineer.py index 6d65575a8..d1f11475f 100644 --- a/metagpt/roles/engineer.py +++ b/metagpt/roles/engineer.py @@ -61,13 +61,13 @@ class Engineer(Role): """ def __init__( - self, - name: str = "Alex", - profile: str = "Engineer", - goal: str = "Write elegant, readable, extensible, efficient code", - constraints: str = "The code should conform to standards like PEP8 and be modular and maintainable", - n_borg: int = 1, - use_code_review: bool = False, + self, + name: str = "Alex", + profile: str = "Engineer", + goal: str = "Write elegant, readable, extensible, efficient code", + constraints: str = "The code should conform to standards like PEP8 and be modular and maintainable", + n_borg: int = 1, + use_code_review: bool = False, ) -> None: """Initializes the Engineer role with given attributes.""" super().__init__(name, profile, goal, constraints) diff --git a/metagpt/roles/product_manager.py b/metagpt/roles/product_manager.py index a58ea5385..dbf3b5f0f 100644 --- a/metagpt/roles/product_manager.py +++ b/metagpt/roles/product_manager.py @@ -21,11 +21,11 @@ class ProductManager(Role): """ def __init__( - self, - name: str = "Alice", - profile: str = "Product Manager", - goal: str = "Efficiently create a successful product", - constraints: str = "", + self, + name: str = "Alice", + profile: str = "Product Manager", + goal: str = "Efficiently create a successful product", + constraints: str = "", ) -> None: """ Initializes the ProductManager role with given attributes. diff --git a/metagpt/roles/project_manager.py b/metagpt/roles/project_manager.py index 7e7c5699d..0706b982f 100644 --- a/metagpt/roles/project_manager.py +++ b/metagpt/roles/project_manager.py @@ -22,11 +22,11 @@ class ProjectManager(Role): """ def __init__( - self, - name: str = "Eve", - profile: str = "Project Manager", - goal: str = "Improve team efficiency and deliver with quality and quantity", - constraints: str = "", + self, + name: str = "Eve", + profile: str = "Project Manager", + goal: str = "Improve team efficiency and deliver with quality and quantity", + constraints: str = "", ) -> None: """ Initializes the ProjectManager role with given attributes. diff --git a/metagpt/roles/prompt.py b/metagpt/roles/prompt.py index c22e0226b..fdfe45c02 100644 --- a/metagpt/roles/prompt.py +++ b/metagpt/roles/prompt.py @@ -23,6 +23,7 @@ SUFFIX = """Let's begin! Question: {input} Thoughts: {agent_scratchpad}""" + class PromptString(Enum): REFLECTION_QUESTIONS = "Here are some statements:\n{memory_descriptions}\n\nBased solely on the information above, what are the 3 most prominent high-level questions we can answer about the topic in the statements?\n\n{format_instructions}" diff --git a/metagpt/roles/qa_engineer.py b/metagpt/roles/qa_engineer.py index a763c2ce8..97a4d3c13 100644 --- a/metagpt/roles/qa_engineer.py +++ b/metagpt/roles/qa_engineer.py @@ -26,12 +26,12 @@ from metagpt.utils.special_tokens import FILENAME_CODE_SEP, MSG_SEP class QaEngineer(Role): def __init__( - self, - name="Edward", - profile="QaEngineer", - goal="Write comprehensive and robust tests to ensure codes will work as expected without bugs", - constraints="The test code you write should conform to code standard like PEP8, be modular, easy to read and maintain", - test_round_allowed=5, + self, + name="Edward", + profile="QaEngineer", + goal="Write comprehensive and robust tests to ensure codes will work as expected without bugs", + constraints="The test code you write should conform to code standard like PEP8, be modular, easy to read and maintain", + test_round_allowed=5, ): super().__init__(name, profile, goal, constraints) self._init_actions( diff --git a/metagpt/roles/researcher.py b/metagpt/roles/researcher.py index acb46c718..cdda49075 100644 --- a/metagpt/roles/researcher.py +++ b/metagpt/roles/researcher.py @@ -21,13 +21,13 @@ class Report(BaseModel): class Researcher(Role): def __init__( - self, - name: str = "David", - profile: str = "Researcher", - goal: str = "Gather information and conduct research", - constraints: str = "Ensure accuracy and relevance of information", - language: str = "en-us", - **kwargs, + self, + name: str = "David", + profile: str = "Researcher", + goal: str = "Gather information and conduct research", + constraints: str = "Ensure accuracy and relevance of information", + language: str = "en-us", + **kwargs, ): super().__init__(name, profile, goal, constraints, **kwargs) self._init_actions([CollectLinks(name), WebBrowseAndSummarize(name), ConductResearch(name)]) @@ -93,8 +93,10 @@ class Researcher(Role): if __name__ == "__main__": import fire + async def main(topic: str, language="en-us"): role = Researcher(topic, language=language) await role.run(topic) + fire.Fire(main) diff --git a/metagpt/roles/role.py b/metagpt/roles/role.py index 44bb3e976..c3c2a4662 100644 --- a/metagpt/roles/role.py +++ b/metagpt/roles/role.py @@ -11,9 +11,9 @@ from typing import Iterable, Type from pydantic import BaseModel, Field +from metagpt.actions import Action, ActionOutput # from metagpt.environment import Environment from metagpt.config import CONFIG -from metagpt.actions import Action, ActionOutput from metagpt.llm import LLM from metagpt.logs import logger from metagpt.memory import Memory, LongTermMemory @@ -169,7 +169,7 @@ class Role: # logger.info(response) if isinstance(response, ActionOutput): msg = Message(content=response.content, instruct_content=response.instruct_content, - role=self.profile, cause_by=type(self._rc.todo)) + role=self.profile, cause_by=type(self._rc.todo)) else: msg = Message(content=response, role=self.profile, cause_by=type(self._rc.todo)) self._rc.memory.add(msg) @@ -184,8 +184,9 @@ class Role: env_msgs = self._rc.env.memory.get() observed = self._rc.env.memory.get_by_actions(self._rc.watch) - - self._rc.news = self._rc.memory.find_news(observed) # find news (previously unseen messages) from observed messages + + self._rc.news = self._rc.memory.find_news( + observed) # find news (previously unseen messages) from observed messages for i in env_msgs: self.recv(i) diff --git a/metagpt/roles/sales.py b/metagpt/roles/sales.py index a45ad6f1b..51b13f487 100644 --- a/metagpt/roles/sales.py +++ b/metagpt/roles/sales.py @@ -32,4 +32,3 @@ class Sales(Role): else: action = SearchAndSummarize() self._init_actions([action]) - \ No newline at end of file diff --git a/metagpt/roles/seacher.py b/metagpt/roles/seacher.py index 0b6e089da..1b786f830 100644 --- a/metagpt/roles/seacher.py +++ b/metagpt/roles/seacher.py @@ -23,13 +23,13 @@ class Searcher(Role): constraints (str): Constraints or limitations for the searcher. engine (SearchEngineType): The type of search engine to use. """ - - def __init__(self, - name: str = 'Alice', - profile: str = 'Smart Assistant', + + def __init__(self, + name: str = 'Alice', + profile: str = 'Smart Assistant', goal: str = 'Provide search services for users', - constraints: str = 'Answer is rich and complete', - engine=SearchEngineType.SERPAPI_GOOGLE, + constraints: str = 'Answer is rich and complete', + engine=SearchEngineType.SERPAPI_GOOGLE, **kwargs) -> None: """ Initializes the Searcher role with given attributes. @@ -53,7 +53,7 @@ class Searcher(Role): """Performs the search action in a single process.""" logger.info(f"{self._setting}: ready to {self._rc.todo}") response = await self._rc.todo.run(self._rc.memory.get(k=0)) - + if isinstance(response, ActionOutput): msg = Message(content=response.content, instruct_content=response.instruct_content, role=self.profile, cause_by=type(self._rc.todo)) diff --git a/metagpt/roles/sk_agent.py b/metagpt/roles/sk_agent.py index b27841d74..05723cc80 100644 --- a/metagpt/roles/sk_agent.py +++ b/metagpt/roles/sk_agent.py @@ -29,12 +29,12 @@ class SkAgent(Role): """ def __init__( - self, - name: str = "Sunshine", - profile: str = "sk_agent", - goal: str = "Execute task based on passed in task description", - constraints: str = "", - planner_cls=BasicPlanner, + self, + name: str = "Sunshine", + profile: str = "sk_agent", + goal: str = "Execute task based on passed in task description", + constraints: str = "", + planner_cls=BasicPlanner, ) -> None: """Initializes the Engineer role with given attributes.""" super().__init__(name, profile, goal, constraints) diff --git a/metagpt/roles/tutorial_assistant.py b/metagpt/roles/tutorial_assistant.py index 9a7df4f4d..19327a6d4 100644 --- a/metagpt/roles/tutorial_assistant.py +++ b/metagpt/roles/tutorial_assistant.py @@ -29,12 +29,12 @@ class TutorialAssistant(Role): """ def __init__( - self, - name: str = "Stitch", - profile: str = "Tutorial Assistant", - goal: str = "Generate tutorial documents", - constraints: str = "Strictly follow Markdown's syntax, with neat and standardized layout", - language: str = "Chinese", + self, + name: str = "Stitch", + profile: str = "Tutorial Assistant", + goal: str = "Generate tutorial documents", + constraints: str = "Strictly follow Markdown's syntax, with neat and standardized layout", + language: str = "Chinese", ): super().__init__(name, profile, goal, constraints) self._init_actions([WriteDirectory(language=language)]) diff --git a/metagpt/schema.py b/metagpt/schema.py index bdca093c2..7d91d87ec 100644 --- a/metagpt/schema.py +++ b/metagpt/schema.py @@ -50,6 +50,7 @@ class UserMessage(Message): """便于支持OpenAI的消息 Facilitate support for OpenAI messages """ + def __init__(self, content: str): super().__init__(content, 'user') @@ -59,6 +60,7 @@ class SystemMessage(Message): """便于支持OpenAI的消息 Facilitate support for OpenAI messages """ + def __init__(self, content: str): super().__init__(content, 'system') @@ -68,6 +70,7 @@ class AIMessage(Message): """便于支持OpenAI的消息 Facilitate support for OpenAI messages """ + def __init__(self, content: str): super().__init__(content, 'assistant') diff --git a/metagpt/skills/WriterSkill/Brainstorm/config.json b/metagpt/skills/WriterSkill/Brainstorm/config.json index f50a354e7..fa2cf3314 100644 --- a/metagpt/skills/WriterSkill/Brainstorm/config.json +++ b/metagpt/skills/WriterSkill/Brainstorm/config.json @@ -8,7 +8,9 @@ "top_p": 1.0, "presence_penalty": 0.0, "frequency_penalty": 0.0, - "stop_sequences": ["##END##"] + "stop_sequences": [ + "##END##" + ] }, "input": { "parameters": [ diff --git a/metagpt/software_company.py b/metagpt/software_company.py index b2bd18c58..8f173ebf3 100644 --- a/metagpt/software_company.py +++ b/metagpt/software_company.py @@ -59,4 +59,3 @@ class SoftwareCompany(BaseModel): self._check_balance() await self.environment.run() return self.environment.history - \ No newline at end of file diff --git a/metagpt/tools/__init__.py b/metagpt/tools/__init__.py index d98087e4b..d5cef0e46 100644 --- a/metagpt/tools/__init__.py +++ b/metagpt/tools/__init__.py @@ -6,7 +6,6 @@ @File : __init__.py """ - from enum import Enum diff --git a/metagpt/tools/code_interpreter.py b/metagpt/tools/code_interpreter.py index 97398ccfd..cb6230bab 100644 --- a/metagpt/tools/code_interpreter.py +++ b/metagpt/tools/code_interpreter.py @@ -1,16 +1,16 @@ +import inspect import re -from typing import List, Callable +import textwrap from pathlib import Path +from typing import List, Callable import wrapt -import textwrap -import inspect from interpreter.interpreter import Interpreter -from metagpt.logs import logger -from metagpt.config import CONFIG -from metagpt.utils.highlight import highlight from metagpt.actions.clone_function import CloneFunction, run_function_code, run_function_script +from metagpt.config import CONFIG +from metagpt.logs import logger +from metagpt.utils.highlight import highlight def extract_python_code(code: str): @@ -36,6 +36,7 @@ def extract_python_code(code: str): class OpenCodeInterpreter(object): """https://github.com/KillianLucas/open-interpreter""" + def __init__(self, auto_run: bool = True) -> None: interpreter = Interpreter() interpreter.auto_run = auto_run @@ -126,4 +127,5 @@ class OpenInterpreterDecorator(object): except Exception as e: raise Exception("Could not evaluate Python code", e) return res + return wrapper(wrapped) diff --git a/metagpt/tools/prompt_writer.py b/metagpt/tools/prompt_writer.py index d90599206..35358307e 100644 --- a/metagpt/tools/prompt_writer.py +++ b/metagpt/tools/prompt_writer.py @@ -10,6 +10,7 @@ from typing import Union class GPTPromptGenerator: """Using LLM, given an output, request LLM to provide input (supporting instruction, chatbot, and query styles)""" + def __init__(self): self._generators = {i: getattr(self, f"gen_{i}_style") for i in ['instruction', 'chatbot', 'query']} diff --git a/metagpt/tools/sd_engine.py b/metagpt/tools/sd_engine.py index 1d9cd0b2a..4e40951bc 100644 --- a/metagpt/tools/sd_engine.py +++ b/metagpt/tools/sd_engine.py @@ -10,8 +10,8 @@ import os from os.path import join from typing import List -from aiohttp import ClientSession from PIL import Image, PngImagePlugin +from aiohttp import ClientSession from metagpt.config import Config from metagpt.const import WORKSPACE_ROOT @@ -64,12 +64,12 @@ class SDEngine: logger.info(self.sd_t2i_url) def construct_payload( - self, - prompt, - negtive_prompt=default_negative_prompt, - width=512, - height=512, - sd_model="galaxytimemachinesGTM_photoV20", + self, + prompt, + negtive_prompt=default_negative_prompt, + width=512, + height=512, + sd_model="galaxytimemachinesGTM_photoV20", ): # Configure the payload with provided inputs self.payload["prompt"] = prompt @@ -120,11 +120,13 @@ def decode_base64_to_image(img, save_name): image.save(f"{save_name}.png", pnginfo=pnginfo) return pnginfo, image + def batch_decode_base64_to_image(imgs, save_dir="", save_name=""): for idx, _img in enumerate(imgs): save_name = join(save_dir, save_name) decode_base64_to_image(_img, save_name=save_name) + if __name__ == "__main__": engine = SDEngine() prompt = "pixel style, game design, a game interface should be minimalistic and intuitive with the score and high score displayed at the top. The snake and its food should be easily distinguishable. The game should have a simple color scheme, with a contrasting color for the snake and its food. Complete interface boundary" diff --git a/metagpt/tools/search_engine.py b/metagpt/tools/search_engine.py index 942ef7edd..e87519291 100644 --- a/metagpt/tools/search_engine.py +++ b/metagpt/tools/search_engine.py @@ -20,7 +20,7 @@ class SkSearchEngine: @sk_function( description="searches results from Google. Useful when you need to find short " - "and succinct answers about a specific topic. Input should be a search query.", + "and succinct answers about a specific topic. Input should be a search query.", name="searchAsync", input_description="search", ) @@ -42,7 +42,7 @@ class SearchEngine: """ def __init__( - self, + self, engine: Optional[SearchEngineType] = None, run_func: Callable[[str, int, bool], Coroutine[None, None, Union[str, list[str]]]] = None, ): @@ -68,19 +68,19 @@ class SearchEngine: @overload def run( - self, - query: str, - max_results: int = 8, - as_string: Literal[True] = True, + self, + query: str, + max_results: int = 8, + as_string: Literal[True] = True, ) -> str: ... @overload def run( - self, - query: str, - max_results: int = 8, - as_string: Literal[False] = False, + self, + query: str, + max_results: int = 8, + as_string: Literal[False] = False, ) -> list[dict[str, str]]: ... diff --git a/metagpt/tools/search_engine_ddg.py b/metagpt/tools/search_engine_ddg.py index 57bc61b82..320a8c621 100644 --- a/metagpt/tools/search_engine_ddg.py +++ b/metagpt/tools/search_engine_ddg.py @@ -25,10 +25,10 @@ class DDGAPIWrapper: """ def __init__( - self, - *, - loop: asyncio.AbstractEventLoop | None = None, - executor: futures.Executor | None = None, + self, + *, + loop: asyncio.AbstractEventLoop | None = None, + executor: futures.Executor | None = None, ): kwargs = {} if CONFIG.global_proxy: @@ -39,29 +39,29 @@ class DDGAPIWrapper: @overload def run( - self, - query: str, - max_results: int = 8, - as_string: Literal[True] = True, - focus: list[str] | None = None, + self, + query: str, + max_results: int = 8, + as_string: Literal[True] = True, + focus: list[str] | None = None, ) -> str: ... @overload def run( - self, - query: str, - max_results: int = 8, - as_string: Literal[False] = False, - focus: list[str] | None = None, + self, + query: str, + max_results: int = 8, + as_string: Literal[False] = False, + focus: list[str] | None = None, ) -> list[dict[str, str]]: ... async def run( - self, - query: str, - max_results: int = 8, - as_string: bool = True, + self, + query: str, + max_results: int = 8, + as_string: bool = True, ) -> str | list[dict]: """Return the results of a Google search using the official Google API diff --git a/metagpt/tools/search_engine_googleapi.py b/metagpt/tools/search_engine_googleapi.py index b9faf2ced..126067b10 100644 --- a/metagpt/tools/search_engine_googleapi.py +++ b/metagpt/tools/search_engine_googleapi.py @@ -76,11 +76,11 @@ class GoogleAPIWrapper(BaseModel): return service.cse() async def run( - self, - query: str, - max_results: int = 8, - as_string: bool = True, - focus: list[str] | None = None, + self, + query: str, + max_results: int = 8, + as_string: bool = True, + focus: list[str] | None = None, ) -> str | list[dict]: """Return the results of a Google search using the official Google API. diff --git a/metagpt/tools/translator.py b/metagpt/tools/translator.py index 910638469..2e9756abe 100644 --- a/metagpt/tools/translator.py +++ b/metagpt/tools/translator.py @@ -24,4 +24,4 @@ class Translator: @classmethod def translate_prompt(cls, original, lang='中文'): - return prompt.format(LANG=lang, ORIGINAL=original) \ No newline at end of file + return prompt.format(LANG=lang, ORIGINAL=original) diff --git a/metagpt/tools/web_browser_engine.py b/metagpt/tools/web_browser_engine.py index 453d87f31..76074aa5e 100644 --- a/metagpt/tools/web_browser_engine.py +++ b/metagpt/tools/web_browser_engine.py @@ -12,9 +12,9 @@ from metagpt.utils.parse_html import WebPage class WebBrowserEngine: def __init__( - self, - engine: WebBrowserEngineType | None = None, - run_func: Callable[..., Coroutine[Any, Any, WebPage | list[WebPage]]] | None = None, + self, + engine: WebBrowserEngineType | None = None, + run_func: Callable[..., Coroutine[Any, Any, WebPage | list[WebPage]]] | None = None, ): engine = engine or CONFIG.web_browser_engine @@ -46,7 +46,9 @@ class WebBrowserEngine: if __name__ == "__main__": import fire + async def main(url: str, *urls: str, engine_type: Literal["playwright", "selenium"] = "playwright", **kwargs): return await WebBrowserEngine(WebBrowserEngineType(engine_type), **kwargs).run(url, *urls) + fire.Fire(main) diff --git a/metagpt/tools/web_browser_engine_playwright.py b/metagpt/tools/web_browser_engine_playwright.py index 030e7701b..dd9782c6f 100644 --- a/metagpt/tools/web_browser_engine_playwright.py +++ b/metagpt/tools/web_browser_engine_playwright.py @@ -23,10 +23,10 @@ class PlaywrightWrapper: """ def __init__( - self, - browser_type: Literal["chromium", "firefox", "webkit"] | None = None, - launch_kwargs: dict | None = None, - **kwargs, + self, + browser_type: Literal["chromium", "firefox", "webkit"] | None = None, + launch_kwargs: dict | None = None, + **kwargs, ) -> None: if browser_type is None: browser_type = CONFIG.playwright_browser_type @@ -139,11 +139,12 @@ async def _log_stream(sr, log_func): _install_lock: asyncio.Lock = None _install_cache = set() - if __name__ == "__main__": import fire + async def main(url: str, *urls: str, browser_type: str = "chromium", **kwargs): return await PlaywrightWrapper(browser_type, **kwargs).run(url, *urls) + fire.Fire(main) diff --git a/metagpt/tools/web_browser_engine_selenium.py b/metagpt/tools/web_browser_engine_selenium.py index d727709b8..64fdc0522 100644 --- a/metagpt/tools/web_browser_engine_selenium.py +++ b/metagpt/tools/web_browser_engine_selenium.py @@ -28,12 +28,12 @@ class SeleniumWrapper: """ def __init__( - self, - browser_type: Literal["chrome", "firefox", "edge", "ie"] | None = None, - launch_kwargs: dict | None = None, - *, - loop: asyncio.AbstractEventLoop | None = None, - executor: futures.Executor | None = None, + self, + browser_type: Literal["chrome", "firefox", "edge", "ie"] | None = None, + launch_kwargs: dict | None = None, + *, + loop: asyncio.AbstractEventLoop | None = None, + executor: futures.Executor | None = None, ) -> None: if browser_type is None: browser_type = CONFIG.selenium_browser_type @@ -117,7 +117,9 @@ def _gen_get_driver_func(browser_type, *args, executable_path=None): if __name__ == "__main__": import fire + async def main(url: str, *urls: str, browser_type: str = "chrome", **kwargs): return await SeleniumWrapper(browser_type, **kwargs).run(url, *urls) + fire.Fire(main) diff --git a/metagpt/utils/__init__.py b/metagpt/utils/__init__.py index f13175cf8..ac78a6c85 100644 --- a/metagpt/utils/__init__.py +++ b/metagpt/utils/__init__.py @@ -14,7 +14,6 @@ from metagpt.utils.token_counter import ( count_string_tokens, ) - __all__ = [ "read_docx", "Singleton", diff --git a/metagpt/utils/common.py b/metagpt/utils/common.py index 59d179808..2570d0aca 100644 --- a/metagpt/utils/common.py +++ b/metagpt/utils/common.py @@ -86,8 +86,8 @@ class OutputParser: @staticmethod def parse_python_code(text: str) -> str: for pattern in ( - r"(.*?```python.*?\s+)?(?P.*)(```.*?)", - r"(.*?```python.*?\s+)?(?P.*)", + r"(.*?```python.*?\s+)?(?P.*)(```.*?)", + r"(.*?```python.*?\s+)?(?P.*)", ): match = re.search(pattern, text, re.DOTALL) if not match: @@ -180,7 +180,7 @@ class OutputParser: if start_index != -1 and end_index != -1: # Extract the structure part - structure_text = text[start_index : end_index + 1] + structure_text = text[start_index: end_index + 1] try: # Attempt to convert the text to a Python data type using ast.literal_eval diff --git a/metagpt/utils/custom_decoder.py b/metagpt/utils/custom_decoder.py index 373d16356..2a274564c 100644 --- a/metagpt/utils/custom_decoder.py +++ b/metagpt/utils/custom_decoder.py @@ -36,11 +36,11 @@ def py_make_scanner(context): return parse_object((string, idx + 1), strict, _scan_once, object_hook, object_pairs_hook, memo) elif nextchar == "[": return parse_array((string, idx + 1), _scan_once) - elif nextchar == "n" and string[idx : idx + 4] == "null": + elif nextchar == "n" and string[idx: idx + 4] == "null": return None, idx + 4 - elif nextchar == "t" and string[idx : idx + 4] == "true": + elif nextchar == "t" and string[idx: idx + 4] == "true": return True, idx + 4 - elif nextchar == "f" and string[idx : idx + 5] == "false": + elif nextchar == "f" and string[idx: idx + 5] == "false": return False, idx + 5 m = match_number(string, idx) @@ -51,11 +51,11 @@ def py_make_scanner(context): else: res = parse_int(integer) return res, m.end() - elif nextchar == "N" and string[idx : idx + 3] == "NaN": + elif nextchar == "N" and string[idx: idx + 3] == "NaN": return parse_constant("NaN"), idx + 3 - elif nextchar == "I" and string[idx : idx + 8] == "Infinity": + elif nextchar == "I" and string[idx: idx + 8] == "Infinity": return parse_constant("Infinity"), idx + 8 - elif nextchar == "-" and string[idx : idx + 9] == "-Infinity": + elif nextchar == "-" and string[idx: idx + 9] == "-Infinity": return parse_constant("-Infinity"), idx + 9 else: raise StopIteration(idx) @@ -89,7 +89,7 @@ WHITESPACE_STR = " \t\n\r" def JSONObject( - s_and_end, strict, scan_once, object_hook, object_pairs_hook, memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR + s_and_end, strict, scan_once, object_hook, object_pairs_hook, memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR ): """Parse a JSON object from a string and return the parsed object. @@ -118,12 +118,12 @@ def JSONObject( memo_get = memo.setdefault # Use a slice to prevent IndexError from being raised, the following # check will raise a more specific ValueError if the string is empty - nextchar = s[end : end + 1] + nextchar = s[end: end + 1] # Normally we expect nextchar == '"' if nextchar != '"' and nextchar != "'": if nextchar in _ws: end = _w(s, end).end() - nextchar = s[end : end + 1] + nextchar = s[end: end + 1] # Trivial empty object if nextchar == "}": if object_pairs_hook is not None: @@ -146,9 +146,9 @@ def JSONObject( key = memo_get(key, key) # To skip some function call overhead we optimize the fast paths where # the JSON key separator is ": " or just ":". - if s[end : end + 1] != ":": + if s[end: end + 1] != ":": end = _w(s, end).end() - if s[end : end + 1] != ":": + if s[end: end + 1] != ":": raise JSONDecodeError("Expecting ':' delimiter", s, end) end += 1 @@ -179,7 +179,7 @@ def JSONObject( elif nextchar != ",": raise JSONDecodeError("Expecting ',' delimiter", s, end - 1) end = _w(s, end).end() - nextchar = s[end : end + 1] + nextchar = s[end: end + 1] end += 1 if nextchar != '"': raise JSONDecodeError("Expecting property name enclosed in double quotes", s, end - 1) @@ -257,7 +257,7 @@ def py_scanstring(s, end, strict=True, _b=BACKSLASH, _m=STRINGCHUNK.match, delim else: uni = _decode_uXXXX(s, end) end += 5 - if 0xD800 <= uni <= 0xDBFF and s[end : end + 2] == "\\u": + if 0xD800 <= uni <= 0xDBFF and s[end: end + 2] == "\\u": uni2 = _decode_uXXXX(s, end + 1) if 0xDC00 <= uni2 <= 0xDFFF: uni = 0x10000 + (((uni - 0xD800) << 10) | (uni2 - 0xDC00)) @@ -272,14 +272,14 @@ scanstring = py_scanstring class CustomDecoder(json.JSONDecoder): def __init__( - self, - *, - object_hook=None, - parse_float=None, - parse_int=None, - parse_constant=None, - strict=True, - object_pairs_hook=None + self, + *, + object_hook=None, + parse_float=None, + parse_int=None, + parse_constant=None, + strict=True, + object_pairs_hook=None ): super().__init__( object_hook=object_hook, diff --git a/metagpt/utils/file.py b/metagpt/utils/file.py index f3691549b..f7c9f2894 100644 --- a/metagpt/utils/file.py +++ b/metagpt/utils/file.py @@ -6,9 +6,10 @@ @File : file.py @Describe : General file operations. """ -import aiofiles from pathlib import Path +import aiofiles + from metagpt.logs import logger @@ -72,4 +73,3 @@ class File: except Exception as e: logger.error(f"Error reading file: {e}") raise e - diff --git a/metagpt/utils/highlight.py b/metagpt/utils/highlight.py index e6cbb228c..a7f8e7c7a 100644 --- a/metagpt/utils/highlight.py +++ b/metagpt/utils/highlight.py @@ -1,7 +1,7 @@ # 添加代码语法高亮显示 from pygments import highlight as highlight_ -from pygments.lexers import PythonLexer, SqlLexer from pygments.formatters import TerminalFormatter, HtmlFormatter +from pygments.lexers import PythonLexer, SqlLexer def highlight(code: str, language: str = 'python', formatter: str = 'terminal'): diff --git a/metagpt/utils/mermaid.py b/metagpt/utils/mermaid.py index 5e5b275b0..2d8d3aed6 100644 --- a/metagpt/utils/mermaid.py +++ b/metagpt/utils/mermaid.py @@ -135,7 +135,6 @@ MMC2 = """sequenceDiagram S-->>SE: return summary SE-->>M: return summary""" - if __name__ == "__main__": loop = asyncio.new_event_loop() result = loop.run_until_complete(mermaid_to_file(MMC1, PROJECT_ROOT / f"{CONFIG.mermaid_engine}/1")) diff --git a/metagpt/utils/mmdc_ink.py b/metagpt/utils/mmdc_ink.py index 3d91cde9d..45cc2af52 100644 --- a/metagpt/utils/mmdc_ink.py +++ b/metagpt/utils/mmdc_ink.py @@ -6,9 +6,9 @@ @File : mermaid.py """ import base64 -import os -from aiohttp import ClientSession,ClientError +from aiohttp import ClientSession, ClientError + from metagpt.logs import logger diff --git a/metagpt/utils/mmdc_playwright.py b/metagpt/utils/mmdc_playwright.py index bdbfd82ff..5fef3708b 100644 --- a/metagpt/utils/mmdc_playwright.py +++ b/metagpt/utils/mmdc_playwright.py @@ -8,10 +8,13 @@ import os from urllib.parse import urljoin + from playwright.async_api import async_playwright + from metagpt.logs import logger -async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height=2048)-> int: + +async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height=2048) -> int: """ Converts the given Mermaid code to various output formats and saves them to files. @@ -24,20 +27,21 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, Returns: int: Returns 1 if the conversion and saving were successful, -1 otherwise. """ - suffixes=['png', 'svg', 'pdf'] + suffixes = ['png', 'svg', 'pdf'] __dirname = os.path.dirname(os.path.abspath(__file__)) async with async_playwright() as p: browser = await p.chromium.launch() device_scale_factor = 1.0 context = await browser.new_context( - viewport={'width': width, 'height': height}, - device_scale_factor=device_scale_factor, - ) + viewport={'width': width, 'height': height}, + device_scale_factor=device_scale_factor, + ) page = await context.new_page() async def console_message(msg): logger.info(msg.text) + page.on('console', console_message) try: @@ -72,7 +76,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, }''', [mermaid_code, mermaid_config, my_css, background_color]) - if 'svg' in suffixes : + if 'svg' in suffixes: svg_xml = await page.evaluate('''() => { const svg = document.querySelector('svg'); const xmlSerializer = new XMLSerializer(); @@ -82,7 +86,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, with open(f'{output_file_without_suffix}.svg', 'wb') as f: f.write(svg_xml.encode('utf-8')) - if 'png' in suffixes: + if 'png' in suffixes: clip = await page.evaluate('''() => { const svg = document.querySelector('svg'); const rect = svg.getBoundingClientRect(); diff --git a/metagpt/utils/mmdc_pyppeteer.py b/metagpt/utils/mmdc_pyppeteer.py index 7ec30fd12..690a26eb8 100644 --- a/metagpt/utils/mmdc_pyppeteer.py +++ b/metagpt/utils/mmdc_pyppeteer.py @@ -7,11 +7,14 @@ """ import os from urllib.parse import urljoin -from pyppeteer import launch -from metagpt.logs import logger -from metagpt.config import CONFIG -async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height=2048)-> int: +from pyppeteer import launch + +from metagpt.config import CONFIG +from metagpt.logs import logger + + +async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height=2048) -> int: """ Converts the given Mermaid code to various output formats and saves them to files. @@ -24,15 +27,14 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, Returns: int: Returns 1 if the conversion and saving were successful, -1 otherwise. """ - suffixes = ['png', 'svg', 'pdf'] + suffixes = ['png', 'svg', 'pdf'] __dirname = os.path.dirname(os.path.abspath(__file__)) - if CONFIG.pyppeteer_executable_path: browser = await launch(headless=True, - executablePath=CONFIG.pyppeteer_executable_path, - args=['--disable-extensions',"--no-sandbox"] - ) + executablePath=CONFIG.pyppeteer_executable_path, + args=['--disable-extensions', "--no-sandbox"] + ) else: logger.error("Please set the environment variable:PYPPETEER_EXECUTABLE_PATH.") return -1 @@ -41,6 +43,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, async def console_message(msg): logger.info(msg.text) + page.on('console', console_message) try: @@ -73,7 +76,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, } }''', [mermaid_code, mermaid_config, my_css, background_color]) - if 'svg' in suffixes : + if 'svg' in suffixes: svg_xml = await page.evaluate('''() => { const svg = document.querySelector('svg'); const xmlSerializer = new XMLSerializer(); @@ -83,7 +86,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, with open(f'{output_file_without_suffix}.svg', 'wb') as f: f.write(svg_xml.encode('utf-8')) - if 'png' in suffixes: + if 'png' in suffixes: clip = await page.evaluate('''() => { const svg = document.querySelector('svg'); const rect = svg.getBoundingClientRect(); @@ -94,7 +97,8 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height: Math.ceil(rect.height) }; }''') - await page.setViewport({'width': clip['x'] + clip['width'], 'height': clip['y'] + clip['height'], 'deviceScaleFactor': device_scale_factor}) + await page.setViewport({'width': clip['x'] + clip['width'], 'height': clip['y'] + clip['height'], + 'deviceScaleFactor': device_scale_factor}) screenshot = await page.screenshot(clip=clip, omit_background=True, scale='device') logger.info(f"Generating {output_file_without_suffix}.png..") with open(f'{output_file_without_suffix}.png', 'wb') as f: @@ -110,4 +114,3 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, return -1 finally: await browser.close() - diff --git a/metagpt/utils/parse_html.py b/metagpt/utils/parse_html.py index 62de26541..f2395026f 100644 --- a/metagpt/utils/parse_html.py +++ b/metagpt/utils/parse_html.py @@ -16,7 +16,7 @@ class WebPage(BaseModel): class Config: underscore_attrs_are_private = True - _soup : Optional[BeautifulSoup] = None + _soup: Optional[BeautifulSoup] = None _title: Optional[str] = None @property @@ -24,7 +24,7 @@ class WebPage(BaseModel): if self._soup is None: self._soup = BeautifulSoup(self.html, "html.parser") return self._soup - + @property def title(self): if self._title is None: diff --git a/metagpt/utils/pycst.py b/metagpt/utils/pycst.py index afd85a547..4d1a86c91 100644 --- a/metagpt/utils/pycst.py +++ b/metagpt/utils/pycst.py @@ -37,12 +37,12 @@ def get_docstring_statement(body: DocstringNode) -> cst.SimpleStatementLine: if not isinstance(expr, cst.Expr): return None - + val = expr.value if not isinstance(val, (cst.SimpleString, cst.ConcatenatedString)): return None - - evaluated_value = val.evaluated_value + + evaluated_value = val.evaluated_value if isinstance(evaluated_value, bytes): return None @@ -56,6 +56,7 @@ class DocstringCollector(cst.CSTVisitor): stack: A list to keep track of the current path in the CST. docstrings: A dictionary mapping paths in the CST to their corresponding docstrings. """ + def __init__(self): self.stack: list[str] = [] self.docstrings: dict[tuple[str, ...], cst.SimpleStatementLine] = {} @@ -96,9 +97,10 @@ class DocstringTransformer(cst.CSTTransformer): stack: A list to keep track of the current path in the CST. docstrings: A dictionary mapping paths in the CST to their corresponding docstrings. """ + def __init__( - self, - docstrings: dict[tuple[str, ...], cst.SimpleStatementLine], + self, + docstrings: dict[tuple[str, ...], cst.SimpleStatementLine], ): self.stack: list[str] = [] self.docstrings = docstrings @@ -125,7 +127,8 @@ class DocstringTransformer(cst.CSTTransformer): key = tuple(self.stack) self.stack.pop() - if hasattr(updated_node, "decorators") and any((i.decorator.value == "overload") for i in updated_node.decorators): + if hasattr(updated_node, "decorators") and any( + (i.decorator.value == "overload") for i in updated_node.decorators): return updated_node statement = self.docstrings.get(key) diff --git a/metagpt/utils/read_document.py b/metagpt/utils/read_document.py index c837baf25..d2fafbc17 100644 --- a/metagpt/utils/read_document.py +++ b/metagpt/utils/read_document.py @@ -8,6 +8,7 @@ import docx + def read_docx(file_path: str) -> list: """Open a docx file""" doc = docx.Document(file_path) diff --git a/metagpt/utils/singleton.py b/metagpt/utils/singleton.py index 474b537db..a9e0862c0 100644 --- a/metagpt/utils/singleton.py +++ b/metagpt/utils/singleton.py @@ -20,4 +20,3 @@ class Singleton(abc.ABCMeta, type): if cls not in cls._instances: cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs) return cls._instances[cls] - \ No newline at end of file diff --git a/metagpt/utils/special_tokens.py b/metagpt/utils/special_tokens.py index 2adb93c77..5e780ce05 100644 --- a/metagpt/utils/special_tokens.py +++ b/metagpt/utils/special_tokens.py @@ -1,4 +1,4 @@ # token to separate different code messages in a WriteCode Message content -MSG_SEP = "#*000*#" +MSG_SEP = "#*000*#" # token to seperate file name and the actual code text in a code message FILENAME_CODE_SEP = "#*001*#" diff --git a/metagpt/utils/text.py b/metagpt/utils/text.py index be3c52edd..c36058e42 100644 --- a/metagpt/utils/text.py +++ b/metagpt/utils/text.py @@ -3,7 +3,8 @@ from typing import Generator, Sequence from metagpt.utils.token_counter import TOKEN_MAX, count_string_tokens -def reduce_message_length(msgs: Generator[str, None, None], model_name: str, system_text: str, reserved: int = 0,) -> str: +def reduce_message_length(msgs: Generator[str, None, None], model_name: str, system_text: str, + reserved: int = 0, ) -> str: """Reduce the length of concatenated message segments to fit within the maximum token size. Args: @@ -27,11 +28,11 @@ def reduce_message_length(msgs: Generator[str, None, None], model_name: str, sys def generate_prompt_chunk( - text: str, - prompt_template: str, - model_name: str, - system_text: str, - reserved: int = 0, + text: str, + prompt_template: str, + model_name: str, + system_text: str, + reserved: int = 0, ) -> Generator[str, None, None]: """Split the text into chunks of a maximum token size. @@ -49,9 +50,9 @@ def generate_prompt_chunk( current_token = 0 current_lines = [] - reserved = reserved + count_string_tokens(prompt_template+system_text, model_name) + reserved = reserved + count_string_tokens(prompt_template + system_text, model_name) # 100 is a magic number to ensure the maximum context length is not exceeded - max_token = TOKEN_MAX.get(model_name, 2048) - reserved - 100 + max_token = TOKEN_MAX.get(model_name, 2048) - reserved - 100 while paragraphs: paragraph = paragraphs.pop(0) @@ -103,7 +104,7 @@ def decode_unicode_escape(text: str) -> str: return text.encode("utf-8").decode("unicode_escape", "ignore") -def _split_by_count(lst: Sequence , count: int): +def _split_by_count(lst: Sequence, count: int): avg = len(lst) // count remainder = len(lst) % count start = 0 diff --git a/metagpt/utils/token_counter.py b/metagpt/utils/token_counter.py index a5a65803a..2b9f21fb8 100644 --- a/metagpt/utils/token_counter.py +++ b/metagpt/utils/token_counter.py @@ -24,7 +24,6 @@ TOKEN_COSTS = { "text-embedding-ada-002": {"prompt": 0.0004, "completion": 0.0}, } - TOKEN_MAX = { "gpt-3.5-turbo": 4096, "gpt-3.5-turbo-0301": 4096, diff --git a/requirements.txt b/requirements.txt index de861ded9..e855b6e83 100644 --- a/requirements.txt +++ b/requirements.txt @@ -42,4 +42,5 @@ pytest-mock==3.11.1 open-interpreter==0.1.4; python_version>"3.9" ta==0.10.2 semantic-kernel==0.3.10.dev0 +websocket-client==0.58.0 diff --git a/startup.py b/startup.py index e2a903c9b..df94aeaba 100644 --- a/startup.py +++ b/startup.py @@ -15,12 +15,12 @@ from metagpt.software_company import SoftwareCompany async def startup( - idea: str, - investment: float = 3.0, - n_round: int = 5, - code_review: bool = False, - run_tests: bool = False, - implement: bool = True, + idea: str, + investment: float = 3.0, + n_round: int = 5, + code_review: bool = False, + run_tests: bool = False, + implement: bool = True, ): """Run a startup. Be a boss.""" company = SoftwareCompany() @@ -48,12 +48,12 @@ async def startup( def main( - idea: str, - investment: float = 3.0, - n_round: int = 5, - code_review: bool = True, - run_tests: bool = False, - implement: bool = True, + idea: str, + investment: float = 3.0, + n_round: int = 5, + code_review: bool = True, + run_tests: bool = False, + implement: bool = True, ): """ We are a software startup comprised of AI. By investing in us, diff --git a/tests/conftest.py b/tests/conftest.py index feecc7715..d2ac8304f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -6,14 +6,14 @@ @File : conftest.py """ +import asyncio +import re from unittest.mock import Mock import pytest from metagpt.logs import logger from metagpt.provider.openai_api import OpenAIGPTAPI as GPTAPI -import asyncio -import re class Context: diff --git a/tests/metagpt/actions/mock.py b/tests/metagpt/actions/mock.py index a800690e8..fe82fe01e 100644 --- a/tests/metagpt/actions/mock.py +++ b/tests/metagpt/actions/mock.py @@ -159,7 +159,6 @@ sequenceDiagram The original requirements did not specify whether the game should have a save/load feature, multiplayer support, or any specific graphical user interface. More information on these aspects could help in further refining the product design and requirements. """ - PROJECT_MANAGEMENT_SAMPLE = '''## Required Python third-party packages: Provided in requirements.txt format ```python "pytest==6.2.5" @@ -217,7 +216,6 @@ The original requirements did not specify whether the game should have a save/lo ``` ''' - WRITE_CODE_PROMPT_SAMPLE = """ 你是一个工程师。下面是背景信息与你的当前任务,请为任务撰写代码。 撰写的代码应该符合PEP8,优雅,模块化,易于阅读与维护,代码本身应该有__main__入口来防止桩函数 @@ -375,7 +373,6 @@ if __name__ == '__main__': print('No results found.') """ - REFINED_CODE = ''' import requests diff --git a/tests/metagpt/actions/test_clone_function.py b/tests/metagpt/actions/test_clone_function.py index 6d4432dcd..e11402c97 100644 --- a/tests/metagpt/actions/test_clone_function.py +++ b/tests/metagpt/actions/test_clone_function.py @@ -2,7 +2,6 @@ import pytest from metagpt.actions.clone_function import CloneFunction, run_function_code - source_code = """ import pandas as pd import ta @@ -37,7 +36,10 @@ def get_expected_res(): stock_data['SMA'] = ta.trend.sma_indicator(stock_data['Close'], window=6) stock_data[['Date', 'Close', 'SMA']].head() # 计算布林带 - stock_data['bb_upper'], stock_data['bb_middle'], stock_data['bb_lower'] = ta.volatility.bollinger_hband_indicator(stock_data['Close'], window=20), ta.volatility.bollinger_mavg(stock_data['Close'], window=20), ta.volatility.bollinger_lband_indicator(stock_data['Close'], window=20) + stock_data['bb_upper'], stock_data['bb_middle'], stock_data['bb_lower'] = ta.volatility.bollinger_hband_indicator( + stock_data['Close'], window=20), ta.volatility.bollinger_mavg(stock_data['Close'], + window=20), ta.volatility.bollinger_lband_indicator( + stock_data['Close'], window=20) stock_data[['Date', 'Close', 'bb_upper', 'bb_middle', 'bb_lower']].head() return stock_data diff --git a/tests/metagpt/actions/test_debug_error.py b/tests/metagpt/actions/test_debug_error.py index 555c84e4e..2393d2cc9 100644 --- a/tests/metagpt/actions/test_debug_error.py +++ b/tests/metagpt/actions/test_debug_error.py @@ -144,12 +144,12 @@ Engineer --- ''' + @pytest.mark.asyncio async def test_debug_error(): - debug_error = DebugError("debug_error") file_name, rewritten_code = await debug_error.run(context=EXAMPLE_MSG_CONTENT) - assert "class Player" in rewritten_code # rewrite the same class - assert "while self.score > 21" in rewritten_code # a key logic to rewrite to (original one is "if self.score > 12") + assert "class Player" in rewritten_code # rewrite the same class + assert "while self.score > 21" in rewritten_code # a key logic to rewrite to (original one is "if self.score > 12") diff --git a/tests/metagpt/actions/test_detail_mining.py b/tests/metagpt/actions/test_detail_mining.py index c9d5331f9..1266960cc 100644 --- a/tests/metagpt/actions/test_detail_mining.py +++ b/tests/metagpt/actions/test_detail_mining.py @@ -10,6 +10,7 @@ import pytest from metagpt.actions.detail_mining import DetailMining from metagpt.logs import logger + @pytest.mark.asyncio async def test_detail_mining(): topic = "如何做一个生日蛋糕" @@ -17,7 +18,6 @@ async def test_detail_mining(): detail_mining = DetailMining("detail_mining") rsp = await detail_mining.run(topic=topic, record=record) logger.info(f"{rsp.content=}") - + assert '##OUTPUT' in rsp.content assert '蛋糕' in rsp.content - diff --git a/tests/metagpt/actions/test_ui_design.py b/tests/metagpt/actions/test_ui_design.py index d284b20f2..dedd0b30e 100644 --- a/tests/metagpt/actions/test_ui_design.py +++ b/tests/metagpt/actions/test_ui_design.py @@ -4,7 +4,7 @@ # from tests.metagpt.roles.ui_role import UIDesign -llm_resp= ''' +llm_resp = ''' # UI Design Description ```The user interface for the snake game will be designed in a way that is simple, clean, and intuitive. The main elements of the game such as the game grid, snake, food, score, and game over message will be clearly defined and easy to understand. The game grid will be centered on the screen with the score displayed at the top. The game controls will be intuitive and easy to use. The design will be modern and minimalist with a pleasing color scheme.``` @@ -100,6 +100,7 @@ body { font-size: 3em; ''' + def test_ui_design_parse_css(): ui_design_work = UIDesign(name="UI design action") @@ -161,7 +162,7 @@ def test_ui_design_parse_css(): transform: translate(-50%, -50%); font-size: 3em; ''' - assert ui_design_work.parse_css_code(context=llm_resp)==css + assert ui_design_work.parse_css_code(context=llm_resp) == css def test_ui_design_parse_html(): @@ -185,7 +186,4 @@ def test_ui_design_parse_html(): ''' - assert ui_design_work.parse_css_code(context=llm_resp)==html - - - + assert ui_design_work.parse_css_code(context=llm_resp) == html diff --git a/tests/metagpt/actions/test_write_code_review.py b/tests/metagpt/actions/test_write_code_review.py index 21bc563ec..f56427401 100644 --- a/tests/metagpt/actions/test_write_code_review.py +++ b/tests/metagpt/actions/test_write_code_review.py @@ -27,7 +27,6 @@ def add(a, b): captured = capfd.readouterr() print(f"输出内容: {captured.out}") - # @pytest.mark.asyncio # async def test_write_code_review_directly(): # code = SEARCH_CODE_SAMPLE diff --git a/tests/metagpt/document_store/test_chromadb_store.py b/tests/metagpt/document_store/test_chromadb_store.py index f8c11e1ca..2b110a807 100644 --- a/tests/metagpt/document_store/test_chromadb_store.py +++ b/tests/metagpt/document_store/test_chromadb_store.py @@ -16,8 +16,8 @@ def test_chroma_store(): # 使用 write 方法添加多个文档 document_store.write(["This is document1", "This is document2"], - [{"source": "google-docs"}, {"source": "notion"}], - ["doc1", "doc2"]) + [{"source": "google-docs"}, {"source": "notion"}], + ["doc1", "doc2"]) # 使用 add 方法添加一个文档 document_store.add("This is document3", {"source": "notion"}, "doc3") diff --git a/tests/metagpt/document_store/test_lancedb_store.py b/tests/metagpt/document_store/test_lancedb_store.py index 9c2f9fb42..14974662e 100644 --- a/tests/metagpt/document_store/test_lancedb_store.py +++ b/tests/metagpt/document_store/test_lancedb_store.py @@ -5,27 +5,30 @@ @Author : unkn-wn (Leon Yee) @File : test_lancedb_store.py """ -from metagpt.document_store.lancedb_store import LanceStore -import pytest import random +import pytest + +from metagpt.document_store.lancedb_store import LanceStore + + @pytest def test_lance_store(): - # This simply establishes the connection to the database, so we can drop the table if it exists store = LanceStore('test') store.drop('test') store.write(data=[[random.random() for _ in range(100)] for _ in range(2)], - metadatas=[{"source": "google-docs"}, {"source": "notion"}], - ids=["doc1", "doc2"]) + metadatas=[{"source": "google-docs"}, {"source": "notion"}], + ids=["doc1", "doc2"]) store.add(data=[random.random() for _ in range(100)], metadata={"source": "notion"}, _id="doc3") result = store.search([random.random() for _ in range(100)], n_results=3) - assert(len(result) == 3) + assert (len(result) == 3) store.delete("doc2") - result = store.search([random.random() for _ in range(100)], n_results=3, where="source = 'notion'", metric='cosine') - assert(len(result) == 1) \ No newline at end of file + result = store.search([random.random() for _ in range(100)], n_results=3, where="source = 'notion'", + metric='cosine') + assert (len(result) == 1) diff --git a/tests/metagpt/memory/test_longterm_memory.py b/tests/metagpt/memory/test_longterm_memory.py index dc5540520..ef9dec866 100644 --- a/tests/metagpt/memory/test_longterm_memory.py +++ b/tests/metagpt/memory/test_longterm_memory.py @@ -2,11 +2,11 @@ # -*- coding: utf-8 -*- # @Desc : unittest of `metagpt/memory/longterm_memory.py` -from metagpt.config import CONFIG -from metagpt.schema import Message from metagpt.actions import BossRequirement -from metagpt.roles.role import RoleContext +from metagpt.config import CONFIG from metagpt.memory import LongTermMemory +from metagpt.roles.role import RoleContext +from metagpt.schema import Message def test_ltm_search(): diff --git a/tests/metagpt/memory/test_memory_storage.py b/tests/metagpt/memory/test_memory_storage.py index 6bb3e8f1d..dcb00403f 100644 --- a/tests/metagpt/memory/test_memory_storage.py +++ b/tests/metagpt/memory/test_memory_storage.py @@ -4,11 +4,11 @@ from typing import List -from metagpt.memory.memory_storage import MemoryStorage -from metagpt.schema import Message from metagpt.actions import BossRequirement from metagpt.actions import WritePRD from metagpt.actions.action_output import ActionOutput +from metagpt.memory.memory_storage import MemoryStorage +from metagpt.schema import Message def test_idea_message(): @@ -26,7 +26,7 @@ def test_idea_message(): sim_idea = 'Write a game of cli snake' sim_message = Message(role='BOSS', content=sim_idea, cause_by=BossRequirement) new_messages = memory_storage.search(sim_message) - assert len(new_messages) == 0 # similar, return [] + assert len(new_messages) == 0 # similar, return [] new_idea = 'Write a 2048 web game' new_message = Message(role='BOSS', content=new_idea, cause_by=BossRequirement) @@ -68,7 +68,7 @@ def test_actionout_message(): role='user', cause_by=WritePRD) new_messages = memory_storage.search(sim_message) - assert len(new_messages) == 0 # similar, return [] + assert len(new_messages) == 0 # similar, return [] new_conent = 'Incorporate basic features of a snake game such as scoring and increasing difficulty' new_message = Message(content=new_conent, diff --git a/tests/metagpt/provider/test_xinghuo_api.py b/tests/metagpt/provider/test_xinghuo_api.py index 74e13413c..cdab99e54 100644 --- a/tests/metagpt/provider/test_xinghuo_api.py +++ b/tests/metagpt/provider/test_xinghuo_api.py @@ -1,4 +1,9 @@ +from metagpt.logs import logger from metagpt.provider.spark_api import SparkAPI + + def test_message(): - llm=SparkAPI() - llm.ask('只回答"收到了"这三个字。') \ No newline at end of file + llm = SparkAPI() + + logger.info(llm.ask('只回答"收到了"这三个字。')) + logger.info(llm.ask('只回答"好的,我将为您写一篇日记"。')) diff --git a/tests/metagpt/roles/mock.py b/tests/metagpt/roles/mock.py index 52fc4a3c1..a0ba3b3f3 100644 --- a/tests/metagpt/roles/mock.py +++ b/tests/metagpt/roles/mock.py @@ -19,7 +19,6 @@ DETAIL_REQUIREMENT = """需求:开发一个基于LLM(大语言模型)与 1. 大语言模型已经有前置的抽象、部署,可以通过 `from metagpt.llm import LLM`,再使用`LLM().ask(prompt)`直接调用 2. Elastic已有[部署](http://192.168.50.82:9200/),代码可以直接使用这个部署""" - PRD = '''## 原始需求 ```python """ @@ -151,7 +150,6 @@ sequenceDiagram ``` ''' - TASKS = '''## Logic Analysis 在这个项目中,所有的模块都依赖于“SearchEngine”类,这是主入口,其他的模块(Index、Ranking和Summary)都通过它交互。另外,"Index"类又依赖于"KnowledgeBase"类,因为它需要从知识库中获取数据。 @@ -183,7 +181,6 @@ task_list = [ 这个任务列表首先定义了最基础的模块,然后是依赖这些模块的模块,最后是辅助模块。可以根据团队的能力和资源,同时开发多个任务,只要满足依赖关系。例如,在开发"search.py"之前,可以同时开发"knowledge_base.py"、"index.py"、"ranking.py"和"summary.py"。 ''' - TASKS_TOMATO_CLOCK = '''## Required Python third-party packages: Provided in requirements.txt format ```python Flask==2.1.1 @@ -224,30 +221,30 @@ task_list = [ TASK = """smart_search_engine/knowledge_base.py""" STRS_FOR_PARSING = [ -""" -## 1 -```python -a -``` -""", -""" -##2 -```python -"a" -``` -""", -""" -## 3 -```python -a = "a" -``` -""", -""" -## 4 -```python -a = 'a' -``` -""" + """ + ## 1 + ```python + a + ``` + """, + """ + ##2 + ```python + "a" + ``` + """, + """ + ## 3 + ```python + a = "a" + ``` + """, + """ + ## 4 + ```python + a = 'a' + ``` + """ ] diff --git a/tests/metagpt/roles/test_engineer.py b/tests/metagpt/roles/test_engineer.py index c0c48d0b1..2767a377a 100644 --- a/tests/metagpt/roles/test_engineer.py +++ b/tests/metagpt/roles/test_engineer.py @@ -33,7 +33,7 @@ async def test_engineer(): def test_parse_str(): for idx, i in enumerate(STRS_FOR_PARSING): - text = CodeParser.parse_str(f"{idx+1}", i) + text = CodeParser.parse_str(f"{idx + 1}", i) # logger.info(text) assert text == 'a' diff --git a/tests/metagpt/roles/test_researcher.py b/tests/metagpt/roles/test_researcher.py index 01b5dae3b..31f1f5571 100644 --- a/tests/metagpt/roles/test_researcher.py +++ b/tests/metagpt/roles/test_researcher.py @@ -12,7 +12,7 @@ async def mock_llm_ask(self, prompt: str, system_msgs): return '["dataiku", "datarobot"]' elif "Provide up to 4 queries related to your research topic" in prompt: return '["Dataiku machine learning platform", "DataRobot AI platform comparison", ' \ - '"Dataiku vs DataRobot features", "Dataiku and DataRobot use cases"]' + '"Dataiku vs DataRobot features", "Dataiku and DataRobot use cases"]' elif "sort the remaining search results" in prompt: return '[1,2]' elif "Not relevant." in prompt: diff --git a/tests/metagpt/roles/test_tutorial_assistant.py b/tests/metagpt/roles/test_tutorial_assistant.py index 945620cfc..feecd469e 100644 --- a/tests/metagpt/roles/test_tutorial_assistant.py +++ b/tests/metagpt/roles/test_tutorial_assistant.py @@ -24,4 +24,4 @@ async def test_tutorial_assistant(language: str, topic: str): title = filename.split("/")[-1].split(".")[0] async with aiofiles.open(filename, mode="r") as reader: content = await reader.read() - assert content.startswith(f"# {title}") \ No newline at end of file + assert content.startswith(f"# {title}") diff --git a/tests/metagpt/roles/test_ui.py b/tests/metagpt/roles/test_ui.py index 285bff323..2d9cb85c9 100644 --- a/tests/metagpt/roles/test_ui.py +++ b/tests/metagpt/roles/test_ui.py @@ -2,9 +2,8 @@ # @Date : 2023/7/22 02:40 # @Author : stellahong (stellahong@fuzhi.ai) # -from metagpt.software_company import SoftwareCompany from metagpt.roles import ProductManager - +from metagpt.software_company import SoftwareCompany from tests.metagpt.roles.ui_role import UI diff --git a/tests/metagpt/roles/ui_role.py b/tests/metagpt/roles/ui_role.py index a45a89cde..1d85ffa2e 100644 --- a/tests/metagpt/roles/ui_role.py +++ b/tests/metagpt/roles/ui_role.py @@ -248,12 +248,12 @@ class UI(Role): """Class representing the UI Role.""" def __init__( - self, - name="Catherine", - profile="UI Design", - goal="Finish a workable and good User Interface design based on a product design", - constraints="Give clear layout description and use standard icons to finish the design", - skills=["SD"], + self, + name="Catherine", + profile="UI Design", + goal="Finish a workable and good User Interface design based on a product design", + constraints="Give clear layout description and use standard icons to finish the design", + skills=["SD"], ): super().__init__(name, profile, goal, constraints) self.load_skills(skills) diff --git a/tests/metagpt/test_environment.py b/tests/metagpt/test_environment.py index a0f1f6257..ea31e1019 100644 --- a/tests/metagpt/test_environment.py +++ b/tests/metagpt/test_environment.py @@ -45,7 +45,8 @@ def test_set_manager(env: Environment): @pytest.mark.asyncio async def test_publish_and_process_message(env: Environment): product_manager = ProductManager("Alice", "Product Manager", "做AI Native产品", "资源有限") - architect = Architect("Bob", "Architect", "设计一个可用、高效、较低成本的系统,包括数据结构与接口", "资源有限,需要节省成本") + architect = Architect("Bob", "Architect", "设计一个可用、高效、较低成本的系统,包括数据结构与接口", + "资源有限,需要节省成本") env.add_roles([product_manager, architect]) env.set_manager(Manager()) diff --git a/tests/metagpt/tools/test_code_interpreter.py b/tests/metagpt/tools/test_code_interpreter.py index 0eec3f80b..5acecd2c3 100644 --- a/tests/metagpt/tools/test_code_interpreter.py +++ b/tests/metagpt/tools/test_code_interpreter.py @@ -2,12 +2,10 @@ import pytest import pandas as pd from pathlib import Path -from tests.data import sales_desc, store_desc from metagpt.tools.code_interpreter import OpenCodeInterpreter, OpenInterpreterDecorator from metagpt.actions import Action from metagpt.logs import logger - logger.add('./tests/data/test_ci.log') stock = "./tests/data/baba_stock.csv" @@ -38,5 +36,6 @@ async def test_actions(): # 可视化指标结果 figure_path = './tests/data/figure_ci.png' ci_ploter = OpenCodeInterpreter() - ci_ploter.chat(f"使用seaborn对{df_path}中与股票布林带有关的数据列的Date, Close, SMA, BB_upper(布林带上界), BB_lower(布林带下界)进行可视化, 可视化图片保存在{figure_path}中。不需要任何指标计算,把Date列转换为日期类型。要求图片优美,BB_upper, BB_lower之间使用合适的颜色填充。") + ci_ploter.chat( + f"使用seaborn对{df_path}中与股票布林带有关的数据列的Date, Close, SMA, BB_upper(布林带上界), BB_lower(布林带下界)进行可视化, 可视化图片保存在{figure_path}中。不需要任何指标计算,把Date列转换为日期类型。要求图片优美,BB_upper, BB_lower之间使用合适的颜色填充。") assert Path(figure_path).is_file() diff --git a/tests/metagpt/tools/test_search_engine.py b/tests/metagpt/tools/test_search_engine.py index a7fe063a6..30e5b3176 100644 --- a/tests/metagpt/tools/test_search_engine.py +++ b/tests/metagpt/tools/test_search_engine.py @@ -16,7 +16,8 @@ from metagpt.tools.search_engine import SearchEngine class MockSearchEnine: async def run(self, query: str, max_results: int = 8, as_string: bool = True) -> str | list[dict[str, str]]: - rets = [{"url": "https://metagpt.com/mock/{i}", "title": query, "snippet": query * i} for i in range(max_results)] + rets = [{"url": "https://metagpt.com/mock/{i}", "title": query, "snippet": query * i} for i in + range(max_results)] return "\n".join(rets) if as_string else rets @@ -34,7 +35,7 @@ class MockSearchEnine: (SearchEngineType.DUCK_DUCK_GO, None, 6, False), (SearchEngineType.CUSTOM_ENGINE, MockSearchEnine().run, 8, False), (SearchEngineType.CUSTOM_ENGINE, MockSearchEnine().run, 6, False), - + ], ) async def test_search_engine(search_engine_typpe, run_func, max_results, as_string, ): diff --git a/tests/metagpt/utils/test_custom_decoder.py b/tests/metagpt/utils/test_custom_decoder.py index c7b14ad59..22638b775 100644 --- a/tests/metagpt/utils/test_custom_decoder.py +++ b/tests/metagpt/utils/test_custom_decoder.py @@ -6,7 +6,6 @@ @File : test_custom_decoder.py """ - from metagpt.utils.custom_decoder import CustomDecoder diff --git a/tests/metagpt/utils/test_file.py b/tests/metagpt/utils/test_file.py index b30e6be93..2f224e558 100644 --- a/tests/metagpt/utils/test_file.py +++ b/tests/metagpt/utils/test_file.py @@ -23,4 +23,3 @@ async def test_write_and_read_file(root_path: Path, filename: str, content: byte assert root_path / filename == full_file_name file_data = await File.read(full_file_name) assert file_data.decode("utf-8") == content - diff --git a/tests/metagpt/utils/test_output_parser.py b/tests/metagpt/utils/test_output_parser.py index 2b706efc4..58236c90c 100644 --- a/tests/metagpt/utils/test_output_parser.py +++ b/tests/metagpt/utils/test_output_parser.py @@ -68,44 +68,45 @@ def test_parse_data(): ("text", "data_type", "parsed_data", "expected_exception"), [ ( - """xxx [1, 2, ["a", "b", [3, 4]], {"x": 5, "y": [6, 7]}] xxx""", - list, - [1, 2, ["a", "b", [3, 4]], {"x": 5, "y": [6, 7]}], - None, + """xxx [1, 2, ["a", "b", [3, 4]], {"x": 5, "y": [6, 7]}] xxx""", + list, + [1, 2, ["a", "b", [3, 4]], {"x": 5, "y": [6, 7]}], + None, ), ( - """xxx ["1", "2", "3"] xxx \n xxx \t xx""", - list, - ["1", "2", "3"], - None, + """xxx ["1", "2", "3"] xxx \n xxx \t xx""", + list, + ["1", "2", "3"], + None, ), ( - """{"title": "a", "directory": {"sub_dir1": ["title1, title2"]}, "sub_dir2": [1, 2]}""", - dict, - {"title": "a", "directory": {"sub_dir1": ["title1, title2"]}, "sub_dir2": [1, 2]}, - None, + """{"title": "a", "directory": {"sub_dir1": ["title1, title2"]}, "sub_dir2": [1, 2]}""", + dict, + {"title": "a", "directory": {"sub_dir1": ["title1, title2"]}, "sub_dir2": [1, 2]}, + None, ), ( - """xxx {"title": "x", \n \t "directory": ["x", \n "y"]} xxx \n xxx \t xx""", - dict, - {"title": "x", "directory": ["x", "y"]}, - None, + """xxx {"title": "x", \n \t "directory": ["x", \n "y"]} xxx \n xxx \t xx""", + dict, + {"title": "x", "directory": ["x", "y"]}, + None, ), ( - """xxx xx""", - list, - None, - Exception, + """xxx xx""", + list, + None, + Exception, ), ( - """xxx [1, 2, []xx""", - list, - None, - Exception, + """xxx [1, 2, []xx""", + list, + None, + Exception, ), ] ) -def test_extract_struct(text: str, data_type: Union[type(list), type(dict)], parsed_data: Union[list, dict], expected_exception): +def test_extract_struct(text: str, data_type: Union[type(list), type(dict)], parsed_data: Union[list, dict], + expected_exception): def case(): resp = OutputParser.extract_struct(text, data_type) assert resp == parsed_data diff --git a/tests/metagpt/utils/test_parse_html.py b/tests/metagpt/utils/test_parse_html.py index 42be416a6..5215c44b5 100644 --- a/tests/metagpt/utils/test_parse_html.py +++ b/tests/metagpt/utils/test_parse_html.py @@ -52,9 +52,9 @@ PAGE = """ """ -CONTENT = 'This is a HeadingThis is a paragraph witha linkand someemphasizedtext.Item 1Item 2Item 3Numbered Item 1Numbered '\ -'Item 2Numbered Item 3Header 1Header 2Row 1, Cell 1Row 1, Cell 2Row 2, Cell 1Row 2, Cell 2Name:Email:SubmitThis is a div '\ -'with a class "box".a link' +CONTENT = 'This is a HeadingThis is a paragraph witha linkand someemphasizedtext.Item 1Item 2Item 3Numbered Item 1Numbered ' \ + 'Item 2Numbered Item 3Header 1Header 2Row 1, Cell 1Row 1, Cell 2Row 2, Cell 1Row 2, Cell 2Name:Email:SubmitThis is a div ' \ + 'with a class "box".a link' def test_web_page(): diff --git a/tests/metagpt/utils/test_pycst.py b/tests/metagpt/utils/test_pycst.py index 07352eac2..2fa45ff8d 100644 --- a/tests/metagpt/utils/test_pycst.py +++ b/tests/metagpt/utils/test_pycst.py @@ -71,7 +71,6 @@ class Person: ... ''' - merged_code = ''' #!/usr/bin/env python # -*- coding: utf-8 -*- From 8cecd151444089129961278eb0e20c529474f2d2 Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 20:29:03 +0800 Subject: [PATCH 21/30] =?UTF-8?q?=E5=B0=8F=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/metagpt/provider/{test_xinghuo_api.py => test_spark_api.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tests/metagpt/provider/{test_xinghuo_api.py => test_spark_api.py} (100%) diff --git a/tests/metagpt/provider/test_xinghuo_api.py b/tests/metagpt/provider/test_spark_api.py similarity index 100% rename from tests/metagpt/provider/test_xinghuo_api.py rename to tests/metagpt/provider/test_spark_api.py From 8d2570605a84d9be6dd1a103f18b454f26512188 Mon Sep 17 00:00:00 2001 From: Surav Shrestha Date: Wed, 18 Oct 2023 18:28:52 +0545 Subject: [PATCH 22/30] docs: fix typo in examples/agent_creator.py --- examples/agent_creator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/agent_creator.py b/examples/agent_creator.py index e03a88c6b..325e7c260 100644 --- a/examples/agent_creator.py +++ b/examples/agent_creator.py @@ -91,7 +91,7 @@ if __name__ == "__main__": msg = """ Write an agent called SimpleTester that will take any code snippet (str) and do the following: - 1. write a testing code (str) for testing the given code snippet, save the testing code as a .py file in the current working diretory; + 1. write a testing code (str) for testing the given code snippet, save the testing code as a .py file in the current working directory; 2. run the testing code. You can use pytest as the testing framework. """ From 212d703aed5a6707449cef2cd470637bd0148782 Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 20:45:10 +0800 Subject: [PATCH 23/30] a\ --- tests/metagpt/provider/test_spark_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/metagpt/provider/test_spark_api.py b/tests/metagpt/provider/test_spark_api.py index cdab99e54..af926ec1c 100644 --- a/tests/metagpt/provider/test_spark_api.py +++ b/tests/metagpt/provider/test_spark_api.py @@ -6,4 +6,4 @@ def test_message(): llm = SparkAPI() logger.info(llm.ask('只回答"收到了"这三个字。')) - logger.info(llm.ask('只回答"好的,我将为您写一篇日记"。')) + logger.info(llm.ask('从1,数到20。')) From 3282839185ab81355aa1ae5c135d6217ba3ba7a5 Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 20:49:39 +0800 Subject: [PATCH 24/30] a --- tests/metagpt/provider/test_spark_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/metagpt/provider/test_spark_api.py b/tests/metagpt/provider/test_spark_api.py index af926ec1c..1ff159b54 100644 --- a/tests/metagpt/provider/test_spark_api.py +++ b/tests/metagpt/provider/test_spark_api.py @@ -6,4 +6,4 @@ def test_message(): llm = SparkAPI() logger.info(llm.ask('只回答"收到了"这三个字。')) - logger.info(llm.ask('从1,数到20。')) + logger.info(llm.ask('写一篇五百字的日记')) From 041da760e06777b3451aea84bce3a13685ded9bb Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 22:17:16 +0800 Subject: [PATCH 25/30] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .devcontainer/README.md | 42 +- .devcontainer/devcontainer.json | 40 +- .devcontainer/docker-compose.yaml | 4 +- .pre-commit-config.yaml | 10 +- README.md | 129 +-- config/config.yaml | 13 - config/puppeteer-config.json | 8 +- docs/FAQ-EN.md | 225 ++-- docs/README_CN.md | 22 +- docs/README_JA.md | 28 +- docs/ROADMAP.md | 109 +- .../resources/competitive_analysis.svg | 129 +-- .../resources/data_api_design.svg | 1021 +---------------- .../content_rec_sys/resources/seq_flow.svg | 343 +----- .../resources/competitive_analysis.svg | 129 +-- .../resources/data_api_design.svg | 632 +--------- .../llmops_framework/resources/seq_flow.svg | 324 +----- .../resources/competitive_analysis.svg | 129 +-- .../resources/data_api_design.svg | 948 +-------------- .../match3_puzzle_game/resources/seq_flow.svg | 426 +------ .../resources/competitive_analysis.svg | 117 +- .../resources/data_api_design.svg | 204 +--- .../resources/seq_flow.svg | 220 +--- .../resources/competitive_analysis.svg | 129 +-- .../pyrogue/resources/data_api_design.svg | 748 +----------- .../workspace/pyrogue/resources/seq_flow.svg | 355 +----- .../resources/competitive_analysis.svg | 129 +-- .../resources/data_api_design.svg | 516 +-------- .../resources/seq_flow.svg | 322 +----- examples/agent_creator.py | 22 +- examples/build_customized_agent.py | 30 +- examples/debate.py | 28 +- examples/search_with_specific_engine.py | 5 +- examples/sk_agent.py | 1 + examples/use_off_the_shelf_agent.py | 4 +- examples/write_tutorial.py | 1 + metagpt/_compat.py | 2 - metagpt/actions/action.py | 12 +- metagpt/actions/action_output.py | 1 + metagpt/actions/add_requirement.py | 1 - metagpt/actions/clone_function.py | 2 +- metagpt/actions/debug_error.py | 10 +- metagpt/actions/design_api_review.py | 1 + metagpt/actions/design_filenames.py | 1 + metagpt/actions/detail_mining.py | 2 +- metagpt/actions/prepare_interview.py | 2 +- metagpt/actions/research.py | 61 +- metagpt/actions/run_code.py | 2 +- metagpt/actions/search_and_summarize.py | 2 + metagpt/actions/write_code.py | 4 +- metagpt/actions/write_code_review.py | 4 +- metagpt/actions/write_docstring.py | 8 +- metagpt/actions/write_prd_review.py | 1 + metagpt/actions/write_tutorial.py | 1 + metagpt/const.py | 6 +- metagpt/document_store/base_store.py | 1 + metagpt/document_store/chromadb_store.py | 1 - metagpt/document_store/document.py | 1 + metagpt/document_store/qdrant_store.py | 22 +- metagpt/inspect_module.py | 2 +- metagpt/llm.py | 1 - metagpt/logs.py | 2 - metagpt/manager.py | 2 +- metagpt/memory/__init__.py | 3 +- metagpt/memory/longterm_memory.py | 1 + metagpt/memory/memory.py | 1 + metagpt/memory/memory_storage.py | 5 +- metagpt/prompts/decompose.py | 1 + metagpt/prompts/generate_skill.md | 5 +- metagpt/prompts/sales.py | 17 +- metagpt/prompts/summarize.py | 4 + metagpt/prompts/tutorial_assistant.py | 2 +- metagpt/prompts/use_lib_sop.py | 1 + metagpt/provider/__init__.py | 1 + metagpt/provider/anthropic_api.py | 1 + metagpt/provider/base_chatbot.py | 1 + metagpt/provider/base_gpt_api.py | 1 + metagpt/provider/openai_api.py | 7 +- metagpt/roles/__init__.py | 15 +- metagpt/roles/architect.py | 10 +- metagpt/roles/customer_service.py | 1 + metagpt/roles/engineer.py | 14 +- metagpt/roles/product_manager.py | 10 +- metagpt/roles/project_manager.py | 10 +- metagpt/roles/prompt.py | 1 - metagpt/roles/qa_engineer.py | 12 +- metagpt/roles/researcher.py | 16 +- metagpt/roles/sales.py | 1 + metagpt/roles/seacher.py | 14 +- metagpt/roles/sk_agent.py | 12 +- metagpt/roles/tutorial_assistant.py | 12 +- metagpt/schema.py | 3 - .../skills/WriterSkill/Brainstorm/config.json | 4 +- metagpt/software_company.py | 1 + metagpt/tools/__init__.py | 1 + metagpt/tools/code_interpreter.py | 12 +- metagpt/tools/prompt_writer.py | 1 - metagpt/tools/sd_engine.py | 16 +- metagpt/tools/search_engine.py | 20 +- metagpt/tools/search_engine_ddg.py | 36 +- metagpt/tools/search_engine_googleapi.py | 10 +- metagpt/tools/translator.py | 2 +- metagpt/tools/web_browser_engine.py | 8 +- .../tools/web_browser_engine_playwright.py | 11 +- metagpt/tools/web_browser_engine_selenium.py | 14 +- metagpt/utils/__init__.py | 1 + metagpt/utils/custom_decoder.py | 42 +- metagpt/utils/file.py | 4 +- metagpt/utils/highlight.py | 2 +- metagpt/utils/mermaid.py | 1 + metagpt/utils/mmdc_ink.py | 4 +- metagpt/utils/mmdc_playwright.py | 18 +- metagpt/utils/mmdc_pyppeteer.py | 25 +- metagpt/utils/parse_html.py | 4 +- metagpt/utils/pycst.py | 15 +- metagpt/utils/read_document.py | 1 - metagpt/utils/singleton.py | 1 + metagpt/utils/special_tokens.py | 2 +- metagpt/utils/text.py | 19 +- metagpt/utils/token_counter.py | 1 + requirements.txt | 5 + startup.py | 24 +- tests/conftest.py | 4 +- tests/metagpt/actions/mock.py | 3 + tests/metagpt/actions/test_clone_function.py | 6 +- tests/metagpt/actions/test_debug_error.py | 6 +- tests/metagpt/actions/test_detail_mining.py | 4 +- tests/metagpt/actions/test_ui_design.py | 10 +- .../metagpt/actions/test_write_code_review.py | 1 + .../document_store/test_chromadb_store.py | 4 +- .../document_store/test_lancedb_store.py | 19 +- tests/metagpt/memory/test_longterm_memory.py | 6 +- tests/metagpt/memory/test_memory_storage.py | 8 +- tests/metagpt/roles/mock.py | 51 +- tests/metagpt/roles/test_engineer.py | 2 +- tests/metagpt/roles/test_researcher.py | 2 +- .../metagpt/roles/test_tutorial_assistant.py | 2 +- tests/metagpt/roles/test_ui.py | 3 +- tests/metagpt/roles/ui_role.py | 12 +- tests/metagpt/test_environment.py | 3 +- tests/metagpt/tools/test_code_interpreter.py | 5 +- tests/metagpt/tools/test_search_engine.py | 5 +- tests/metagpt/utils/test_custom_decoder.py | 1 + tests/metagpt/utils/test_file.py | 1 + tests/metagpt/utils/test_output_parser.py | 51 +- tests/metagpt/utils/test_parse_html.py | 6 +- tests/metagpt/utils/test_pycst.py | 1 + 147 files changed, 756 insertions(+), 7644 deletions(-) diff --git a/.devcontainer/README.md b/.devcontainer/README.md index 5af5bfc90..dd088aab1 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -1,53 +1,39 @@ # Dev container -This project includes a [dev container](https://containers.dev/), which lets you use a container as a full-featured dev -environment. +This project includes a [dev container](https://containers.dev/), which lets you use a container as a full-featured dev environment. -You can use the dev container configuration in this folder to build and start running MetaGPT locally! For more, refer -to the main README under the home directory. -You can use it in [GitHub Codespaces](https://github.com/features/codespaces) or -the [VS Code Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers). +You can use the dev container configuration in this folder to build and start running MetaGPT locally! For more, refer to the main README under the home directory. +You can use it in [GitHub Codespaces](https://github.com/features/codespaces) or the [VS Code Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers). ## GitHub Codespaces - Open in GitHub Codespaces You may use the button above to open this repo in a Codespace -For more info, check out -the [GitHub documentation](https://docs.github.com/en/free-pro-team@latest/github/developing-online-with-codespaces/creating-a-codespace#creating-a-codespace). - +For more info, check out the [GitHub documentation](https://docs.github.com/en/free-pro-team@latest/github/developing-online-with-codespaces/creating-a-codespace#creating-a-codespace). + ## VS Code Dev Containers - Open in Dev Containers -Note: If you click this link you will open the main repo and not your local cloned repo, you can use this link and -replace with your username and cloned repo name: +Note: If you click this link you will open the main repo and not your local cloned repo, you can use this link and replace with your username and cloned repo name: https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/geekan/MetaGPT -If you already have VS Code and Docker installed, you can use the button above to get started. This will cause VS Code -to automatically install the Dev Containers extension if needed, clone the source code into a container volume, and spin -up a dev container for use. + +If you already have VS Code and Docker installed, you can use the button above to get started. This will cause VS Code to automatically install the Dev Containers extension if needed, clone the source code into a container volume, and spin up a dev container for use. You can also follow these steps to open this repo in a container using the VS Code Dev Containers extension: -1. If this is your first time using a development container, please ensure your system meets the pre-reqs (i.e. have - Docker installed) in the [getting started steps](https://aka.ms/vscode-remote/containers/getting-started). +1. If this is your first time using a development container, please ensure your system meets the pre-reqs (i.e. have Docker installed) in the [getting started steps](https://aka.ms/vscode-remote/containers/getting-started). 2. Open a locally cloned copy of the code: - - Fork and Clone this repository to your local filesystem. - - Press F1 and select the **Dev Containers: Open Folder in Container...** command. - - Select the cloned copy of this folder, wait for the container to start, and try things out! + - Fork and Clone this repository to your local filesystem. + - Press F1 and select the **Dev Containers: Open Folder in Container...** command. + - Select the cloned copy of this folder, wait for the container to start, and try things out! You can learn more in the [Dev Containers documentation](https://code.visualstudio.com/docs/devcontainers/containers). ## Tips and tricks -* If you are working with the same repository folder in a container and Windows, you'll want consistent line endings ( - otherwise you may see hundreds of changes in the SCM view). The `.gitattributes` file in the root of this repo will - disable line ending conversion and should prevent this. - See [tips and tricks](https://code.visualstudio.com/docs/devcontainers/tips-and-tricks#_resolving-git-line-ending-issues-in-containers-resulting-in-many-modified-files) - for more info. -* If you'd like to review the contents of the image used in this dev container, you can check it out in - the [devcontainers/images](https://github.com/devcontainers/images/tree/main/src/python) repo. +* If you are working with the same repository folder in a container and Windows, you'll want consistent line endings (otherwise you may see hundreds of changes in the SCM view). The `.gitattributes` file in the root of this repo will disable line ending conversion and should prevent this. See [tips and tricks](https://code.visualstudio.com/docs/devcontainers/tips-and-tricks#_resolving-git-line-ending-issues-in-containers-resulting-in-many-modified-files) for more info. +* If you'd like to review the contents of the image used in this dev container, you can check it out in the [devcontainers/images](https://github.com/devcontainers/images/tree/main/src/python) repo. diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6ad3b598d..a774d0ed1 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,25 +1,27 @@ // For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/python { - "name": "Python 3", - // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "mcr.microsoft.com/devcontainers/python:0-3.11", - // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, + "name": "Python 3", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/python:0-3.11", - // Configure tool-specific properties. - "customizations": { - // Configure properties specific to VS Code. - "vscode": { - "settings": {}, - "extensions": [ - "streetsidesoftware.code-spell-checker" - ] - } - }, - // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "./.devcontainer/postCreateCommand.sh" + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, - // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. - // "remoteUser": "root" + // Configure tool-specific properties. + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + "settings": {}, + "extensions": [ + "streetsidesoftware.code-spell-checker" + ] + } + }, + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "./.devcontainer/postCreateCommand.sh" + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" } diff --git a/.devcontainer/docker-compose.yaml b/.devcontainer/docker-compose.yaml index 2f0116bf8..a9988b1f3 100644 --- a/.devcontainer/docker-compose.yaml +++ b/.devcontainer/docker-compose.yaml @@ -5,10 +5,10 @@ services: dockerfile: Dockerfile context: .. volumes: - # Update this to wherever you want VS Code to mount the folder of your project + # Update this to wherever you want VS Code to mount the folder of your project - ..:/workspaces:cached networks: - - metagpt-network + - metagpt-network # environment: # MONGO_ROOT_USERNAME: root # MONGO_ROOT_PASSWORD: example123 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index db11ddbb5..b1892a709 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,11 +8,11 @@ repos: rev: 5.11.5 hooks: - id: isort - args: [ '--profile', 'black' ] + args: ['--profile', 'black'] exclude: >- - (?x)^( - .*__init__\.py$ - ) + (?x)^( + .*__init__\.py$ + ) - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. @@ -24,4 +24,4 @@ repos: rev: 23.3.0 hooks: - id: black - args: [ '--line-length', '120' ] \ No newline at end of file + args: ['--line-length', '120'] \ No newline at end of file diff --git a/README.md b/README.md index f6dd33791..4bc480a01 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,9 @@ # MetaGPT: The Multi-Agent Framework Hugging Face

-1. MetaGPT takes a **one line requirement** as input and outputs **user stories / competitive analysis / requirements / - data structures / APIs / documents, etc.** -2. Internally, MetaGPT includes **product managers / architects / project managers / engineers.** It provides the entire - process of a **software company along with carefully orchestrated SOPs.** - 1. `Code = SOP(Team)` is the core philosophy. We materialize SOP and apply it to teams composed of LLMs. +1. MetaGPT takes a **one line requirement** as input and outputs **user stories / competitive analysis / requirements / data structures / APIs / documents, etc.** +2. Internally, MetaGPT includes **product managers / architects / project managers / engineers.** It provides the entire process of a **software company along with carefully orchestrated SOPs.** + 1. `Code = SOP(Team)` is the core philosophy. We materialize SOP and apply it to teams composed of LLMs. ![A software company consists of LLM-based roles](docs/resources/software_company_cd.jpeg) @@ -37,17 +35,21 @@ # MetaGPT: The Multi-Agent Framework ## MetaGPT's Abilities + https://github.com/geekan/MetaGPT/assets/34952977/34345016-5d13-489d-b9f9-b82ace413419 + + ## Examples (fully generated by GPT-4) -For example, if you type `python startup.py "Design a RecSys like Toutiao"`, you would get many outputs, one of them is -data & api design +For example, if you type `python startup.py "Design a RecSys like Toutiao"`, you would get many outputs, one of them is data & api design ![Jinri Toutiao Recsys Data & API Design](docs/resources/workspace/content_rec_sys/resources/data_api_design.png) -It costs approximately **$0.2** (in GPT-4 API fees) to generate one example with analysis and design, and around **$2.0 -** for a full project. +It costs approximately **$0.2** (in GPT-4 API fees) to generate one example with analysis and design, and around **$2.0** for a full project. + + + ## Installation @@ -73,12 +75,10 @@ # Step 3: Clone the repository to your local machine, and install it. **Note:** -- If already have Chrome, Chromium, or MS Edge installed, you can skip downloading Chromium by setting the environment - variable +- If already have Chrome, Chromium, or MS Edge installed, you can skip downloading Chromium by setting the environment variable `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` to `true`. -- Some people are [having issues](https://github.com/mermaidjs/mermaid.cli/issues/15) installing this tool globally. - Installing it locally is an alternative solution, +- Some people are [having issues](https://github.com/mermaidjs/mermaid.cli/issues/15) installing this tool globally. Installing it locally is an alternative solution, ```bash npm install @mermaid-js/mermaid-cli @@ -91,75 +91,72 @@ # Step 3: Clone the repository to your local machine, and install it. MMDC: "./node_modules/.bin/mmdc" ``` -- if `pip install -e.` fails with - error `[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'`, - try instead running `pip install -e. --user` +- if `pip install -e.` fails with error `[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'`, try instead running `pip install -e. --user` -- To convert Mermaid charts to SVG, PNG, and PDF formats. In addition to the Node.js version of Mermaid-CLI, you now - have the option to use Python version Playwright, pyppeteer or mermaid.ink for this task. +- To convert Mermaid charts to SVG, PNG, and PDF formats. In addition to the Node.js version of Mermaid-CLI, you now have the option to use Python version Playwright, pyppeteer or mermaid.ink for this task. - - Playwright - - **Install Playwright** + - Playwright + - **Install Playwright** - ```bash - pip install playwright - ``` + ```bash + pip install playwright + ``` - - **Install the Required Browsers** + - **Install the Required Browsers** - to support PDF conversion, please install Chrominum. + to support PDF conversion, please install Chrominum. - ```bash - playwright install --with-deps chromium - ``` + ```bash + playwright install --with-deps chromium + ``` - - **modify `config.yaml`** + - **modify `config.yaml`** - uncomment MERMAID_ENGINE from config.yaml and change it to `playwright` + uncomment MERMAID_ENGINE from config.yaml and change it to `playwright` - ```yaml - MERMAID_ENGINE: playwright - ``` + ```yaml + MERMAID_ENGINE: playwright + ``` - - pyppeteer - - **Install pyppeteer** + - pyppeteer + - **Install pyppeteer** - ```bash - pip install pyppeteer - ``` + ```bash + pip install pyppeteer + ``` - - **Use your own Browsers** + - **Use your own Browsers** - pyppeteer alow you use installed browsers, please set the following envirment + pyppeteer alow you use installed browsers, please set the following envirment + + ```bash + export PUPPETEER_EXECUTABLE_PATH = /path/to/your/chromium or edge or chrome + ``` - ```bash - export PUPPETEER_EXECUTABLE_PATH = /path/to/your/chromium or edge or chrome - ``` + please do not use this command to install browser, it is too old - please do not use this command to install browser, it is too old + ```bash + pyppeteer-install + ``` - ```bash - pyppeteer-install - ``` + - **modify `config.yaml`** - - **modify `config.yaml`** + uncomment MERMAID_ENGINE from config.yaml and change it to `pyppeteer` - uncomment MERMAID_ENGINE from config.yaml and change it to `pyppeteer` + ```yaml + MERMAID_ENGINE: pyppeteer + ``` - ```yaml - MERMAID_ENGINE: pyppeteer - ``` + - mermaid.ink + - **modify `config.yaml`** - - mermaid.ink - - **modify `config.yaml`** + uncomment MERMAID_ENGINE from config.yaml and change it to `ink` - uncomment MERMAID_ENGINE from config.yaml and change it to `ink` + ```yaml + MERMAID_ENGINE: ink + ``` - ```yaml - MERMAID_ENGINE: ink - ``` - - Note: this method does not support pdf export. + Note: this method does not support pdf export. ### Installation by Docker @@ -215,7 +212,7 @@ # Copy the configuration file and make the necessary modifications. ``` | Variable Name | config/key.yaml | env | -|--------------------------------------------|-------------------------------------------|-------------------------------------------------| +| ------------------------------------------ | ----------------------------------------- | ----------------------------------------------- | | OPENAI_API_KEY # Replace with your own key | OPENAI_API_KEY: "sk-..." | export OPENAI_API_KEY="sk-..." | | OPENAI_API_BASE # Optional | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | @@ -289,13 +286,11 @@ ### Code walkthrough ## QuickStart -It is difficult to install and configure the local environment for some users. The following tutorials will allow you to -quickly experience the charm of MetaGPT. +It is difficult to install and configure the local environment for some users. The following tutorials will allow you to quickly experience the charm of MetaGPT. - [MetaGPT quickstart](https://deepwisdom.feishu.cn/wiki/CyY9wdJc4iNqArku3Lncl4v8n2b) Try it on Huggingface Space - - https://huggingface.co/spaces/deepwisdom/MetaGPT ## Citation @@ -315,12 +310,10 @@ ## Citation ## Contact Information -If you have any questions or feedback about this project, please feel free to contact us. We highly appreciate your -suggestions! +If you have any questions or feedback about this project, please feel free to contact us. We highly appreciate your suggestions! - **Email:** alexanderwu@fuzhi.ai -- **GitHub Issues:** For more technical inquiries, you can also create a new issue in - our [GitHub repository](https://github.com/geekan/metagpt/issues). +- **GitHub Issues:** For more technical inquiries, you can also create a new issue in our [GitHub repository](https://github.com/geekan/metagpt/issues). We will respond to all questions within 2-3 business days. diff --git a/config/config.yaml b/config/config.yaml index 583f25433..444f55efd 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -15,19 +15,6 @@ RPM: 10 #### if Anthropic #Anthropic_API_KEY: "YOUR_API_KEY" -#### if Xinghuo -#XINGHUO_APPID : "YOUR_APPID" -#XINGHUO_API_SECRET : "YOUR_APISecret" -#XINGHUO_API_KEY : "YOUR_APIKey" -#DOMAIN : "generalv2" -#SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat" - -XINGHUO_APPID: "ae5e30f4" -XINGHUO_API_SECRET: "MDhlOWE2NmFhOWMxZWRkOTdlYjY2Njk1" -XINGHUO_API_KEY: "97b635fe5927d34a857333e11d15f29f" -DOMAIN: "generalv2" -SPARK_URL: "ws://spark-api.xf-yun.com/v2.1/chat" - #### if AZURE, check https://github.com/openai/openai-cookbook/blob/main/examples/azure/chat.ipynb #### You can use ENGINE or DEPLOYMENT mode #OPENAI_API_TYPE: "azure" diff --git a/config/puppeteer-config.json b/config/puppeteer-config.json index da5d808d9..7b2851c29 100644 --- a/config/puppeteer-config.json +++ b/config/puppeteer-config.json @@ -1,6 +1,6 @@ { - "executablePath": "/usr/bin/chromium", - "args": [ - "--no-sandbox" - ] + "executablePath": "/usr/bin/chromium", + "args": [ + "--no-sandbox" + ] } \ No newline at end of file diff --git a/docs/FAQ-EN.md b/docs/FAQ-EN.md index fdd5d846b..4c86ed150 100644 --- a/docs/FAQ-EN.md +++ b/docs/FAQ-EN.md @@ -1,5 +1,4 @@ -Our vision is to [extend human life](https://github.com/geekan/HowToLiveLonger) -and [reduce working hours](https://github.com/geekan/MetaGPT/). +Our vision is to [extend human life](https://github.com/geekan/HowToLiveLonger) and [reduce working hours](https://github.com/geekan/MetaGPT/). 1. ### Convenient Link for Sharing this Document: @@ -11,36 +10,30 @@ -1. Code:https://github.com/geekan/MetaGPT +1. Code:https://github.com/geekan/MetaGPT -1. Roadmap:https://github.com/geekan/MetaGPT/blob/main/docs/ROADMAP.md +1. Roadmap:https://github.com/geekan/MetaGPT/blob/main/docs/ROADMAP.md -1. EN +1. EN - 1. Demo Video: [MetaGPT: Multi-Agent AI Programming Framework](https://www.youtube.com/watch?v=8RNzxZBTW8M) - 2. - Tutorial: [MetaGPT: Deploy POWERFUL Autonomous Ai Agents BETTER Than SUPERAGI!](https://www.youtube.com/watch?v=q16Gi9pTG_M&t=659s) + 1. Demo Video: [MetaGPT: Multi-Agent AI Programming Framework](https://www.youtube.com/watch?v=8RNzxZBTW8M) + 2. Tutorial: [MetaGPT: Deploy POWERFUL Autonomous Ai Agents BETTER Than SUPERAGI!](https://www.youtube.com/watch?v=q16Gi9pTG_M&t=659s) 3. Author's thoughts video(EN): [MetaGPT Matthew Berman](https://youtu.be/uT75J_KG_aY?si=EgbfQNAwD8F5Y1Ak) -1. CN - - 1. Demo - Video: [MetaGPT:一行代码搭建你的虚拟公司_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1NP411C7GW/?spm_id_from=333.999.0.0&vd_source=735773c218b47da1b4bd1b98a33c5c77) - 1. - Tutorial: [一个提示词写游戏 Flappy bird, 比AutoGPT强10倍的MetaGPT,最接近AGI的AI项目](https://youtu.be/Bp95b8yIH5c) - 2. Author's thoughts video( - CN): [MetaGPT作者深度解析直播回放_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1Ru411V7XL/?spm_id_from=333.337.search-card.all.click) +1. CN + 1. Demo Video: [MetaGPT:一行代码搭建你的虚拟公司_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1NP411C7GW/?spm_id_from=333.999.0.0&vd_source=735773c218b47da1b4bd1b98a33c5c77) + 1. Tutorial: [一个提示词写游戏 Flappy bird, 比AutoGPT强10倍的MetaGPT,最接近AGI的AI项目](https://youtu.be/Bp95b8yIH5c) + 2. Author's thoughts video(CN): [MetaGPT作者深度解析直播回放_哔哩哔哩_bilibili](https://www.bilibili.com/video/BV1Ru411V7XL/?spm_id_from=333.337.search-card.all.click) + 3. ### How to become a contributor? -1. Choose a task from the Roadmap (or you can propose one). By submitting a PR, you can become a contributor and join - the dev team. -1. Current contributors come from backgrounds including: ByteDance AI Lab/DingDong/Didi/Xiaohongshu, - Tencent/Baidu/MSRA/TikTok/BloomGPT Infra/Bilibili/CUHK/HKUST/CMU/UCB +1. Choose a task from the Roadmap (or you can propose one). By submitting a PR, you can become a contributor and join the dev team. +1. Current contributors come from backgrounds including: ByteDance AI Lab/DingDong/Didi/Xiaohongshu, Tencent/Baidu/MSRA/TikTok/BloomGPT Infra/Bilibili/CUHK/HKUST/CMU/UCB @@ -48,13 +41,11 @@ MetaGPT Community - The position of Chief Evangelist rotates on a monthly basis. The primary responsibilities include: -1. Maintaining community FAQ documents, announcements, Github resources/READMEs. -1. Responding to, answering, and distributing community questions within an average of 30 minutes, including on - platforms like Github Issues, Discord and WeChat. -1. Upholding a community atmosphere that is enthusiastic, genuine, and friendly. -1. Encouraging everyone to become contributors and participate in projects that are closely related to achieving AGI ( - Artificial General Intelligence). -1. (Optional) Organizing small-scale events, such as hackathons. +1. Maintaining community FAQ documents, announcements, Github resources/READMEs. +1. Responding to, answering, and distributing community questions within an average of 30 minutes, including on platforms like Github Issues, Discord and WeChat. +1. Upholding a community atmosphere that is enthusiastic, genuine, and friendly. +1. Encouraging everyone to become contributors and participate in projects that are closely related to achieving AGI (Artificial General Intelligence). +1. (Optional) Organizing small-scale events, such as hackathons. @@ -62,165 +53,131 @@ -1. Experience with the generated repo code: +1. Experience with the generated repo code: - 1. https://github.com/geekan/MetaGPT/releases/tag/v0.1.0 + 1. https://github.com/geekan/MetaGPT/releases/tag/v0.1.0 -1. Code truncation/ Parsing failure: +1. Code truncation/ Parsing failure: - 1. Check if it's due to exceeding length. Consider using the gpt-3.5-turbo-16k or other long token versions. + 1. Check if it's due to exceeding length. Consider using the gpt-3.5-turbo-16k or other long token versions. -1. Success rate: +1. Success rate: - 1. There hasn't been a quantitative analysis yet, but the success rate of code generated by GPT-4 is significantly - higher than that of gpt-3.5-turbo. + 1. There hasn't been a quantitative analysis yet, but the success rate of code generated by GPT-4 is significantly higher than that of gpt-3.5-turbo. -1. Support for incremental, differential updates (if you wish to continue a half-done task): +1. Support for incremental, differential updates (if you wish to continue a half-done task): - 1. Several prerequisite tasks are listed on the ROADMAP. + 1. Several prerequisite tasks are listed on the ROADMAP. -1. Can existing code be loaded? +1. Can existing code be loaded? - 1. It's not on the ROADMAP yet, but there are plans in place. It just requires some time. + 1. It's not on the ROADMAP yet, but there are plans in place. It just requires some time. -1. Support for multiple programming languages and natural languages? +1. Support for multiple programming languages and natural languages? - 1. It's listed on ROADMAP. + 1. It's listed on ROADMAP. -1. Want to join the contributor team? How to proceed? +1. Want to join the contributor team? How to proceed? - 1. Merging a PR will get you into the contributor's team. The main ongoing tasks are all listed on the ROADMAP. + 1. Merging a PR will get you into the contributor's team. The main ongoing tasks are all listed on the ROADMAP. -1. PRD stuck / unable to access/ connection interrupted +1. PRD stuck / unable to access/ connection interrupted - 1. The official OPENAI_API_BASE address is `https://api.openai.com/v1` - 1. If the official OPENAI_API_BASE address is inaccessible in your environment (this can be verified with curl), - it's recommended to configure using the reverse proxy OPENAI_API_BASE provided by libraries such as - openai-forward. For instance, `OPENAI_API_BASE: "``https://api.openai-forward.com/v1``"` - 1. If the official OPENAI_API_BASE address is inaccessible in your environment (again, verifiable via curl), another - option is to configure the OPENAI_PROXY parameter. This way, you can access the official OPENAI_API_BASE via a - local proxy. If you don't need to access via a proxy, please do not enable this configuration; if accessing - through a proxy is required, modify it to the correct proxy address. Note that when OPENAI_PROXY is enabled, - don't set OPENAI_API_BASE. - 1. Note: OpenAI's default API design ends with a v1. An example of the correct configuration - is: `OPENAI_API_BASE: "``https://api.openai.com/v1``"` + 1. The official OPENAI_API_BASE address is `https://api.openai.com/v1` + 1. If the official OPENAI_API_BASE address is inaccessible in your environment (this can be verified with curl), it's recommended to configure using the reverse proxy OPENAI_API_BASE provided by libraries such as openai-forward. For instance, `OPENAI_API_BASE: "``https://api.openai-forward.com/v1``"` + 1. If the official OPENAI_API_BASE address is inaccessible in your environment (again, verifiable via curl), another option is to configure the OPENAI_PROXY parameter. This way, you can access the official OPENAI_API_BASE via a local proxy. If you don't need to access via a proxy, please do not enable this configuration; if accessing through a proxy is required, modify it to the correct proxy address. Note that when OPENAI_PROXY is enabled, don't set OPENAI_API_BASE. + 1. Note: OpenAI's default API design ends with a v1. An example of the correct configuration is: `OPENAI_API_BASE: "``https://api.openai.com/v1``"` -1. Absolutely! How can I assist you today? +1. Absolutely! How can I assist you today? - 1. Did you use Chi or a similar service? These services are prone to errors, and it seems that the error rate is - higher when consuming 3.5k-4k tokens in GPT-4 + 1. Did you use Chi or a similar service? These services are prone to errors, and it seems that the error rate is higher when consuming 3.5k-4k tokens in GPT-4 -1. What does Max token mean? +1. What does Max token mean? - 1. It's a configuration for OpenAI's maximum response length. If the response exceeds the max token, it will be - truncated. + 1. It's a configuration for OpenAI's maximum response length. If the response exceeds the max token, it will be truncated. -1. How to change the investment amount? +1. How to change the investment amount? - 1. You can view all commands by typing `python startup.py --help` + 1. You can view all commands by typing `python startup.py --help` -1. Which version of Python is more stable? +1. Which version of Python is more stable? - 1. python3.9 / python3.10 + 1. python3.9 / python3.10 -1. Can't use GPT-4, getting the error "The model gpt-4 does not exist." +1. Can't use GPT-4, getting the error "The model gpt-4 does not exist." - 1. OpenAI's official requirement: You can use GPT-4 only after spending $1 on OpenAI. - 1. Tip: Run some data with gpt-3.5-turbo (consume the free quota and $1), and then you should be able to use gpt-4. + 1. OpenAI's official requirement: You can use GPT-4 only after spending $1 on OpenAI. + 1. Tip: Run some data with gpt-3.5-turbo (consume the free quota and $1), and then you should be able to use gpt-4. -1. Can games whose code has never been seen before be written? +1. Can games whose code has never been seen before be written? - 1. Refer to the README. The recommendation system of Toutiao is one of the most complex systems in the world - currently. Although it's not on GitHub, many discussions about it exist online. If it can visualize these, it - suggests it can also summarize these discussions and convert them into code. The prompt would be something like " - write a recommendation system similar to Toutiao". Note: this was approached in earlier versions of the software. - The SOP of those versions was different; the current one adopts Elon Musk's five-step work method, emphasizing - trimming down requirements as much as possible. + 1. Refer to the README. The recommendation system of Toutiao is one of the most complex systems in the world currently. Although it's not on GitHub, many discussions about it exist online. If it can visualize these, it suggests it can also summarize these discussions and convert them into code. The prompt would be something like "write a recommendation system similar to Toutiao". Note: this was approached in earlier versions of the software. The SOP of those versions was different; the current one adopts Elon Musk's five-step work method, emphasizing trimming down requirements as much as possible. -1. Under what circumstances would there typically be errors? +1. Under what circumstances would there typically be errors? - 1. More than 500 lines of code: some function implementations may be left blank. - 1. When using a database, it often gets the implementation wrong — since the SQL database initialization process is - usually not in the code. - 1. With more lines of code, there's a higher chance of false impressions, leading to calls to non-existent APIs. + 1. More than 500 lines of code: some function implementations may be left blank. + 1. When using a database, it often gets the implementation wrong — since the SQL database initialization process is usually not in the code. + 1. With more lines of code, there's a higher chance of false impressions, leading to calls to non-existent APIs. -1. Instructions for using SD Skills/UI Role: +1. Instructions for using SD Skills/UI Role: - 1. Currently, there is a test script located in /tests/metagpt/roles. The file ui_role provides the corresponding - code implementation. For testing, you can refer to the test_ui in the same directory. + 1. Currently, there is a test script located in /tests/metagpt/roles. The file ui_role provides the corresponding code implementation. For testing, you can refer to the test_ui in the same directory. - 1. The UI role takes over from the product manager role, extending the output from the 【UI Design draft】 provided by - the product manager role. The UI role has implemented the UIDesign Action. Within the run of UIDesign, it - processes the respective context, and based on the set template, outputs the UI. The output from the UI role - includes: + 1. The UI role takes over from the product manager role, extending the output from the 【UI Design draft】 provided by the product manager role. The UI role has implemented the UIDesign Action. Within the run of UIDesign, it processes the respective context, and based on the set template, outputs the UI. The output from the UI role includes: - 1. UI Design Description:Describes the content to be designed and the design objectives. - 1. Selected Elements:Describes the elements in the design that need to be illustrated. - 1. HTML Layout:Outputs the HTML code for the page. - 1. CSS Styles (styles.css):Outputs the CSS code for the page. + 1. UI Design Description:Describes the content to be designed and the design objectives. + 1. Selected Elements:Describes the elements in the design that need to be illustrated. + 1. HTML Layout:Outputs the HTML code for the page. + 1. CSS Styles (styles.css):Outputs the CSS code for the page. - 1. Currently, the SD skill is a tool invoked by UIDesign. It instantiates the SDEngine, with specific code found in - metagpt/tools/sd_engine. + 1. Currently, the SD skill is a tool invoked by UIDesign. It instantiates the SDEngine, with specific code found in metagpt/tools/sd_engine. - 1. Configuration instructions for SD Skills: The SD interface is currently deployed based on - *https://github.com/AUTOMATIC1111/stable-diffusion-webui* **For environmental configurations and model downloads, - please refer to the aforementioned GitHub repository. To initiate the SD service that supports API calls, run the - command specified in cmd with the parameter nowebui, i.e., + 1. Configuration instructions for SD Skills: The SD interface is currently deployed based on *https://github.com/AUTOMATIC1111/stable-diffusion-webui* **For environmental configurations and model downloads, please refer to the aforementioned GitHub repository. To initiate the SD service that supports API calls, run the command specified in cmd with the parameter nowebui, i.e., 1. > python webui.py --enable-insecure-extension-access --port xxx --no-gradio-queue --nowebui - 1. Once it runs without errors, the interface will be accessible after approximately 1 minute when the model - finishes loading. - 1. Configure SD_URL and SD_T2I_API in the config.yaml/key.yaml files. - 1. ![](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/065295a67b0b4feea665d1372722d49d~tplv-k3u1fbpfcp-zoom-1.image) - 1. SD_URL is the deployed server/machine IP, and Port is the specified port above, defaulting to 7860. + 1.     Once it runs without errors, the interface will be accessible after approximately 1 minute when the model finishes loading. + 1. Configure SD_URL and SD_T2I_API in the config.yaml/key.yaml files. + 1. ![](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/065295a67b0b4feea665d1372722d49d~tplv-k3u1fbpfcp-zoom-1.image) + 1.     SD_URL is the deployed server/machine IP, and Port is the specified port above, defaulting to 7860. 1. > SD_URL: IP:Port -1. An error occurred during installation: "Another program is using this file...egg". +1. An error occurred during installation: "Another program is using this file...egg". - 1. Delete the file and try again. - 1. Or manually execute`pip install -r requirements.txt` + 1. Delete the file and try again. + 1. Or manually execute`pip install -r requirements.txt` -1. The origin of the name MetaGPT? +1. The origin of the name MetaGPT? - 1. The name was derived after iterating with GPT-4 over a dozen rounds. GPT-4 scored and suggested it. + 1. The name was derived after iterating with GPT-4 over a dozen rounds. GPT-4 scored and suggested it. -1. Is there a more step-by-step installation tutorial? +1. Is there a more step-by-step installation tutorial? - 1. - Youtube(CN):[一个提示词写游戏 Flappy bird, 比AutoGPT强10倍的MetaGPT,最接近AGI的AI项目=一个软件公司产品经理+程序员](https://youtu.be/Bp95b8yIH5c) - 1. Youtube(EN)https://www.youtube.com/watch?v=q16Gi9pTG_M&t=659s - 2. video(EN): [MetaGPT Matthew Berman](https://youtu.be/uT75J_KG_aY?si=EgbfQNAwD8F5Y1Ak) + 1. Youtube(CN):[一个提示词写游戏 Flappy bird, 比AutoGPT强10倍的MetaGPT,最接近AGI的AI项目=一个软件公司产品经理+程序员](https://youtu.be/Bp95b8yIH5c) + 1. Youtube(EN)https://www.youtube.com/watch?v=q16Gi9pTG_M&t=659s + 2. video(EN): [MetaGPT Matthew Berman](https://youtu.be/uT75J_KG_aY?si=EgbfQNAwD8F5Y1Ak) -1. openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details +1. openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details - 1. If you haven't exhausted your free quota, set RPM to 3 or lower in the settings. - 1. If your free quota is used up, consider adding funds to your account. + 1. If you haven't exhausted your free quota, set RPM to 3 or lower in the settings. + 1. If your free quota is used up, consider adding funds to your account. -1. What does "borg" mean in n_borg? +1. What does "borg" mean in n_borg? - 1. [Wikipedia borg meaning ](https://en.wikipedia.org/wiki/Borg) - 1. The Borg civilization operates based on a hive or collective mentality, known as "the Collective." Every Borg - individual is connected to the collective via a sophisticated subspace network, ensuring continuous oversight and - guidance for every member. This collective consciousness allows them to not only "share the same thoughts" but - also to adapt swiftly to new strategies. While individual members of the collective rarely communicate, the - collective "voice" sometimes transmits aboard ships. + 1. [Wikipedia borg meaning ](https://en.wikipedia.org/wiki/Borg) + 1. The Borg civilization operates based on a hive or collective mentality, known as "the Collective." Every Borg individual is connected to the collective via a sophisticated subspace network, ensuring continuous oversight and guidance for every member. This collective consciousness allows them to not only "share the same thoughts" but also to adapt swiftly to new strategies. While individual members of the collective rarely communicate, the collective "voice" sometimes transmits aboard ships. -1. How to use the Claude API? +1. How to use the Claude API? - 1. The full implementation of the Claude API is not provided in the current code. - 1. You can use the Claude API through third-party API conversion projects - like: https://github.com/jtsang4/claude-to-chatgpt + 1. The full implementation of the Claude API is not provided in the current code. + 1. You can use the Claude API through third-party API conversion projects like: https://github.com/jtsang4/claude-to-chatgpt -1. Is Llama2 supported? +1. Is Llama2 supported? - 1. On the day Llama2 was released, some of the community members began experiments and found that output can be - generated based on MetaGPT's structure. However, Llama2's context is too short to generate a complete project. - Before regularly using Llama2, it's necessary to expand the context window to at least 8k. If anyone has good - recommendations for expansion models or methods, please leave a comment. + 1. On the day Llama2 was released, some of the community members began experiments and found that output can be generated based on MetaGPT's structure. However, Llama2's context is too short to generate a complete project. Before regularly using Llama2, it's necessary to expand the context window to at least 8k. If anyone has good recommendations for expansion models or methods, please leave a comment. -1. `mermaid-cli getElementsByTagName SyntaxError: Unexpected token '.'` +1. `mermaid-cli getElementsByTagName SyntaxError: Unexpected token '.'` - 1. Upgrade node to version 14.x or above: + 1. Upgrade node to version 14.x or above: - 1. `npm install -g n` - 1. `n stable` to install the stable version of node(v18.x) + 1. `npm install -g n` + 1. `n stable` to install the stable version of node(v18.x) diff --git a/docs/README_CN.md b/docs/README_CN.md index cc4dfee34..308d6a131 100644 --- a/docs/README_CN.md +++ b/docs/README_CN.md @@ -27,7 +27,7 @@ # MetaGPT: 多智能体框架 1. MetaGPT输入**一句话的老板需求**,输出**用户故事 / 竞品分析 / 需求 / 数据结构 / APIs / 文件等** 2. MetaGPT内部包括**产品经理 / 架构师 / 项目经理 / 工程师**,它提供了一个**软件公司**的全过程与精心调配的SOP - 1. `Code = SOP(Team)` 是核心哲学。我们将SOP具象化,并且用于LLM构成的团队 + 1. `Code = SOP(Team)` 是核心哲学。我们将SOP具象化,并且用于LLM构成的团队 ![一个完全由大语言模型角色构成的软件公司](resources/software_company_cd.jpeg) @@ -37,6 +37,7 @@ ## MetaGPT 的能力 https://github.com/geekan/MetaGPT/assets/34952977/34345016-5d13-489d-b9f9-b82ace413419 + ## 示例(均由 GPT-4 生成) 例如,键入`python startup.py "写个类似今日头条的推荐系统"`并回车,你会获得一系列输出,其一是数据结构与API设计 @@ -80,9 +81,7 @@ # 第 3 步:克隆仓库到您的本地机器,并进行安装。 MMDC: "./node_modules/.bin/mmdc" ``` -- 如果`pip install -e.` - 失败并显示错误`[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'` - ,请尝试使用`pip install -e. --user`运行。 +- 如果`pip install -e.`失败并显示错误`[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'`,请尝试使用`pip install -e. --user`运行。 ### Docker安装 @@ -137,10 +136,10 @@ # 复制配置文件并进行必要的修改 cp config/config.yaml config/key.yaml ``` -| 变量名 | config/key.yaml | env | -|----------------------------|-------------------------------------------|-------------------------------------------------| +| 变量名 | config/key.yaml | env | +| ----------------------------------- | ----------------------------------------- | ----------------------------------------------- | | OPENAI_API_KEY # 用您自己的密钥替换 | OPENAI_API_KEY: "sk-..." | export OPENAI_API_KEY="sk-..." | -| OPENAI_API_BASE # 可选 | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | +| OPENAI_API_BASE # 可选 | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | ## 示例:启动一个创业公司 @@ -151,12 +150,9 @@ # 开启code review模式会花费更多的金钱, 但是会提升代码质量 ``` 运行脚本后,您可以在 `workspace/` 目录中找到您的新项目。 - ### 平台或工具的倾向性 - 可以在阐述需求时说明想要使用的平台或工具。 例如: - ```shell python startup.py "写一个基于pygame的命令行贪吃蛇" ``` @@ -209,8 +205,7 @@ ### 代码实现 你可以查看`examples`,其中有单角色(带知识库)的使用例子与仅LLM的使用例子。 ## 快速体验 - -对一些用户来说,安装配置本地环境是有困难的,下面这些教程能够让你快速体验到MetaGPT的魅力。 +对一些用户来说,安装配置本地环境是有困难的,下面这些教程能够让你快速体验到MetaGPT的魅力。 - [MetaGPT快速体验](https://deepwisdom.feishu.cn/wiki/Q8ycw6J9tiNXdHk66MRcIN8Pnlg) @@ -223,8 +218,7 @@ ## 联系信息 如果您对这个项目有任何问题或反馈,欢迎联系我们。我们非常欢迎您的建议! - **邮箱:** alexanderwu@fuzhi.ai -- **GitHub 问题:** 对于更技术性的问题,您也可以在我们的 [GitHub 仓库](https://github.com/geekan/metagpt/issues) - 中创建一个新的问题。 +- **GitHub 问题:** 对于更技术性的问题,您也可以在我们的 [GitHub 仓库](https://github.com/geekan/metagpt/issues) 中创建一个新的问题。 我们会在2-3个工作日内回复所有问题。 diff --git a/docs/README_JA.md b/docs/README_JA.md index 040a852f6..6ffc80ac7 100644 --- a/docs/README_JA.md +++ b/docs/README_JA.md @@ -26,9 +26,8 @@ # MetaGPT: マルチエージェントフレームワーク

1. MetaGPT は、**1 行の要件** を入力とし、**ユーザーストーリー / 競合分析 / 要件 / データ構造 / API / 文書など** を出力します。 -2. MetaGPT には、**プロダクト マネージャー、アーキテクト、プロジェクト マネージャー、エンジニア** が含まれています。MetaGPT - は、**ソフトウェア会社のプロセス全体を、慎重に調整された SOP とともに提供します。** - 1. `Code = SOP(Team)` が基本理念です。私たちは SOP を具体化し、LLM で構成されるチームに適用します。 +2. MetaGPT には、**プロダクト マネージャー、アーキテクト、プロジェクト マネージャー、エンジニア** が含まれています。MetaGPT は、**ソフトウェア会社のプロセス全体を、慎重に調整された SOP とともに提供します。** + 1. `Code = SOP(Team)` が基本理念です。私たちは SOP を具体化し、LLM で構成されるチームに適用します。 ![ソフトウェア会社は LLM ベースの役割で構成されている](resources/software_company_cd.jpeg) @@ -38,6 +37,7 @@ ## MetaGPTの能力 https://github.com/geekan/MetaGPT/assets/34952977/34345016-5d13-489d-b9f9-b82ace413419 + ## 例(GPT-4 で完全生成) 例えば、`python startup.py "Toutiao のような RecSys をデザインする"`と入力すると、多くの出力が得られます @@ -70,12 +70,10 @@ # ステップ 3: リポジトリをローカルマシンにクローンし、 **注:** -- すでに Chrome、Chromium、MS Edge がインストールされている場合は、環境変数 `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` を `true` - に設定することで、 - Chromium のダウンロードをスキップすることができます。 +- すでに Chrome、Chromium、MS Edge がインストールされている場合は、環境変数 `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD` を `true` に設定することで、 +Chromium のダウンロードをスキップすることができます。 -- このツールをグローバルにインストールする[問題を抱えている](https://github.com/mermaidjs/mermaid.cli/issues/15) - 人もいます。ローカルにインストールするのが代替の解決策です、 +- このツールをグローバルにインストールする[問題を抱えている](https://github.com/mermaidjs/mermaid.cli/issues/15)人もいます。ローカルにインストールするのが代替の解決策です、 ```bash npm install @mermaid-js/mermaid-cli @@ -88,9 +86,7 @@ # ステップ 3: リポジトリをローカルマシンにクローンし、 MMDC: "./node_modules/.bin/mmdc" ``` -- もし `pip install -e.` - がエラー `[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'` - で失敗したら、代わりに `pip install -e. --user` を実行してみてください +- もし `pip install -e.` がエラー `[Errno 13] Permission denied: '/usr/local/lib/python3.11/dist-packages/test-easy-install-13129.write-test'` で失敗したら、代わりに `pip install -e. --user` を実行してみてください ### Docker によるインストール @@ -145,10 +141,10 @@ # 設定ファイルをコピーし、必要な修正を加える。 cp config/config.yaml config/key.yaml ``` -| 変数名 | config/key.yaml | env | -|------------------------------|-------------------------------------------|-------------------------------------------------| +| 変数名 | config/key.yaml | env | +| --------------------------------------- | ----------------------------------------- | ----------------------------------------------- | | OPENAI_API_KEY # 自分のキーに置き換える | OPENAI_API_KEY: "sk-..." | export OPENAI_API_KEY="sk-..." | -| OPENAI_API_BASE # オプション | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | +| OPENAI_API_BASE # オプション | OPENAI_API_BASE: "https:///v1" | export OPENAI_API_BASE="https:///v1" | ## チュートリアル: スタートアップの開始 @@ -225,7 +221,6 @@ ## クイックスタート - [MetaGPT クイックスタート](https://deepwisdom.feishu.cn/wiki/CyY9wdJc4iNqArku3Lncl4v8n2b) Hugging Face Space で試す - - https://huggingface.co/spaces/deepwisdom/MetaGPT ## 引用 @@ -248,8 +243,7 @@ ## お問い合わせ先 このプロジェクトに関するご質問やご意見がございましたら、お気軽にお問い合わせください。皆様のご意見をお待ちしております! - **Email:** alexanderwu@fuzhi.ai -- **GitHub Issues:** 技術的なお問い合わせについては、[GitHub リポジトリ](https://github.com/geekan/metagpt/issues) に新しい - issue を作成することもできます。 +- **GitHub Issues:** 技術的なお問い合わせについては、[GitHub リポジトリ](https://github.com/geekan/metagpt/issues) に新しい issue を作成することもできます。 ご質問には 2-3 営業日以内に回答いたします。 diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md index a205157c5..005a59ab2 100644 --- a/docs/ROADMAP.md +++ b/docs/ROADMAP.md @@ -1,3 +1,4 @@ + ## Roadmap ### Long-term Objective @@ -15,69 +16,67 @@ ### Tasks To reach version v0.5, approximately 70% of the following tasks need to be completed. 1. Usability - 1. Release v0.01 pip package to try to solve issues like npm installation (though not necessarily successfully) - 2. Support for overall save and recovery of software companies - 3. Support human confirmation and modification during the process - 4. Support process caching: Consider carefully whether to add server caching mechanism - 5. Resolve occasional failure to follow instruction under current prompts, causing code parsing errors, through - stricter system prompts - 6. Write documentation, describing the current features and usage at all levels - 7. ~~Support Docker~~ + 1. Release v0.01 pip package to try to solve issues like npm installation (though not necessarily successfully) + 2. Support for overall save and recovery of software companies + 3. Support human confirmation and modification during the process + 4. Support process caching: Consider carefully whether to add server caching mechanism + 5. Resolve occasional failure to follow instruction under current prompts, causing code parsing errors, through stricter system prompts + 6. Write documentation, describing the current features and usage at all levels + 7. ~~Support Docker~~ 2. Features - 1. Support a more standard and stable parser (need to analyze the format that the current LLM is better at) - 2. ~~Establish a separate output queue, differentiated from the message queue~~ - 3. Attempt to atomize all role work, but this may significantly increase token overhead - 4. Complete the design and implementation of module breakdown - 5. Support various modes of memory: clearly distinguish between long-term and short-term memory - 6. Perfect the test role, and carry out necessary interactions with humans - 7. Provide full mode instead of the current fast mode, allowing natural communication between roles - 8. Implement SkillManager and the process of incremental Skill learning - 9. Automatically get RPM and configure it by calling the corresponding openai page, so that each key does not need - to be manually configured + 1. Support a more standard and stable parser (need to analyze the format that the current LLM is better at) + 2. ~~Establish a separate output queue, differentiated from the message queue~~ + 3. Attempt to atomize all role work, but this may significantly increase token overhead + 4. Complete the design and implementation of module breakdown + 5. Support various modes of memory: clearly distinguish between long-term and short-term memory + 6. Perfect the test role, and carry out necessary interactions with humans + 7. Provide full mode instead of the current fast mode, allowing natural communication between roles + 8. Implement SkillManager and the process of incremental Skill learning + 9. Automatically get RPM and configure it by calling the corresponding openai page, so that each key does not need to be manually configured 3. Strategies - 1. Support ReAct strategy - 2. Support CoT strategy - 3. Support ToT strategy - 4. Support Reflection strategy + 1. Support ReAct strategy + 2. Support CoT strategy + 3. Support ToT strategy + 4. Support Reflection strategy 4. Actions - 1. Implementation: Search - 2. Implementation: Knowledge search, supporting 10+ data formats - 3. Implementation: Data EDA - 4. Implementation: Review - 5. Implementation: Add Document - 6. Implementation: Delete Document - 7. Implementation: Self-training - 8. Implementation: DebugError - 9. Implementation: Generate reliable unit tests based on YAPI - 10. Implementation: Self-evaluation - 11. Implementation: AI Invocation - 12. Implementation: Learning and using third-party standard libraries - 13. Implementation: Data collection - 14. Implementation: AI training - 15. Implementation: Run code - 16. Implementation: Web access + 1. Implementation: Search + 2. Implementation: Knowledge search, supporting 10+ data formats + 3. Implementation: Data EDA + 4. Implementation: Review + 5. Implementation: Add Document + 6. Implementation: Delete Document + 7. Implementation: Self-training + 8. Implementation: DebugError + 9. Implementation: Generate reliable unit tests based on YAPI + 10. Implementation: Self-evaluation + 11. Implementation: AI Invocation + 12. Implementation: Learning and using third-party standard libraries + 13. Implementation: Data collection + 14. Implementation: AI training + 15. Implementation: Run code + 16. Implementation: Web access 5. Plugins: Compatibility with plugin system 6. Tools - 1. ~~Support SERPER api~~ - 2. ~~Support Selenium apis~~ - 3. ~~Support Playwright apis~~ + 1. ~~Support SERPER api~~ + 2. ~~Support Selenium apis~~ + 3. ~~Support Playwright apis~~ 7. Roles - 1. Perfect the action pool/skill pool for each role - 2. Red Book blogger - 3. E-commerce seller - 4. Data analyst - 5. News observer - 6. Institutional researcher + 1. Perfect the action pool/skill pool for each role + 2. Red Book blogger + 3. E-commerce seller + 4. Data analyst + 5. News observer + 6. Institutional researcher 8. Evaluation - 1. Support an evaluation on a game dataset - 2. Reproduce papers, implement full skill acquisition for a single game role, achieving SOTA results - 3. Support an evaluation on a math dataset - 4. Reproduce papers, achieving SOTA results for current mathematical problem solving process + 1. Support an evaluation on a game dataset + 2. Reproduce papers, implement full skill acquisition for a single game role, achieving SOTA results + 3. Support an evaluation on a math dataset + 4. Reproduce papers, achieving SOTA results for current mathematical problem solving process 9. LLM - 1. Support Claude underlying API - 2. ~~Support Azure asynchronous API~~ - 3. Support streaming version of all APIs - 4. ~~Make gpt-3.5-turbo available (HARD)~~ + 1. Support Claude underlying API + 2. ~~Support Azure asynchronous API~~ + 3. Support streaming version of all APIs + 4. ~~Make gpt-3.5-turbo available (HARD)~~ 10. Other 1. Clean up existing unused code 2. Unify all code styles and establish contribution standards diff --git a/docs/resources/workspace/content_rec_sys/resources/competitive_analysis.svg b/docs/resources/workspace/content_rec_sys/resources/competitive_analysis.svg index c186e4ce5..785fdafcb 100644 --- a/docs/resources/workspace/content_rec_sys/resources/competitive_analysis.svg +++ b/docs/resources/workspace/content_rec_sys/resources/competitive_analysis.svg @@ -1,128 +1 @@ - - Reach and engagement of campaigns - - - - - - - We should expand - - - - - Need to promote - - - - - Re-evaluate - - - - - May be improved - - - - - - - - - - - - - - - Our Target Product - - - - - Pinterest - - - - - Spotify - - - - - Amazon - - - - - Netflix - - - - - YouTube - - - - - Facebook - - - - - Jinri Toutiao - - - - - - Low Reach - - - - High Reach - - - - Low Engagement - - - - High Engagement - - - - - Reach and engagement of campaigns - - - - \ No newline at end of file +Reach and engagement of campaignsWe should expandNeed to promoteRe-evaluateMay be improvedOur Target ProductPinterestSpotifyAmazonNetflixYouTubeFacebookJinri ToutiaoLow ReachHigh ReachLow EngagementHigh EngagementReach and engagement of campaigns \ No newline at end of file diff --git a/docs/resources/workspace/content_rec_sys/resources/data_api_design.svg b/docs/resources/workspace/content_rec_sys/resources/data_api_design.svg index f9bf692df..a39c84375 100644 --- a/docs/resources/workspace/content_rec_sys/resources/data_api_design.svg +++ b/docs/resources/workspace/content_rec_sys/resources/data_api_design.svg @@ -1,1020 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
-
- - - - - - - -
- -
-
- -
- User -
-
- -
- +int user_id -
-
- -
- +str name -
-
- -
- +str email -
-
- -
- +DateTime created_at -
-
- -
- +__init__(user_id: int, name: str, email: str) : -> None - -
-
-
-
- - - - - - -
- -
-
- -
- UserProfile -
-
- -
- +int user_id -
-
- -
- +dict preferences -
-
- -
- +dict history -
-
- -
- +__init__(user_id: int, preferences: dict, history: dict) : -> - None - -
-
-
-
- - - - - - -
- -
-
- -
- Content -
-
- -
- +int content_id -
-
- -
- +str title -
-
- -
- +str description -
-
- -
- +str category -
-
- -
- +DateTime published_at -
-
- -
- +__init__(content_id: int, title: str, description: str, - category: str, published_at: DateTime) : -> None - -
-
-
-
- - - - - - -
- -
-
- -
- CollaborativeFilteringModel -
-
- -
- +DataFrame data -
-
- -
- +str model_type -
-
- -
- +__init__(data: DataFrame, model_type: str) : -> None -
-
- -
- +fit() : -> None -
-
- -
- +predict(user_id: int, n_recommendations: int) : -> - List[int] - -
-
-
-
- - - - - - -
- -
-
- -
- ContentBasedFilteringModel -
-
- -
- +DataFrame data -
-
- -
- +str model_type -
-
- -
- +__init__(data: DataFrame, model_type: str) : -> None -
-
- -
- +fit() : -> None -
-
- -
- +predict(user_id: int, n_recommendations: int) : -> - List[int] - -
-
-
-
- - - - - - -
- -
-
- -
- Recommender -
-
- -
- +int user_id -
-
- -
- +UserProfile user_profile -
-
- -
- +CollaborativeFilteringModel cf_model -
-
- -
- +ContentBasedFilteringModel cbf_model -
-
- -
- +__init__(user_id: int, user_profile: UserProfile, cf_model: - CollaborativeFilteringModel, cbf_model: ContentBasedFilteringModel) : -> None - -
-
- -
- +get_recommendations(n_recommendations: int) : -> List[int] - -
-
-
-
- - - - - - -
- -
-
- -
- ExperimentationPlatform -
-
- -
- +List[Recommender] recommenders -
-
- -
- +__init__(recommenders: List[Recommender]) : -> None -
-
- -
- +run_experiment(user_id: int, n_recommendations: int) : -> - Dict[str, List[int]] - -
-
-
-
- - - - - - -
- -
-
- -
- Optimization -
-
- -
- +Recommender recommender -
-
- -
- +__init__(recommender: Recommender) : -> None -
-
- -
- +optimize() : -> None -
-
-
-
- - - - - - -
- -
-
- -
- Feedback -
-
- -
- +int user_id -
-
- -
- +int content_id -
-
- -
- +int rating -
-
- -
- +__init__(user_id: int, content_id: int, rating: int) : -> - None - -
-
-
-
- - - - - - -
- -
-
- -
- Monitoring -
-
- -
- +Recommender recommender -
-
- -
- +__init__(recommender: Recommender) : -> None -
-
- -
- +generate_report() : -> None -
-
-
-
- - - - - - -
- -
-
- -
- Advertising -
-
- -
- +int advertiser_id -
-
- -
- +str target_audience -
-
- -
- +__init__(advertiser_id: int, target_audience: str) : -> - None - -
-
-
-
- - - - - - -
- -
-
- -
- Privacy -
-
- -
- +User user -
-
- -
- +__init__(user: User) : -> None -
-
- -
- +ensure_privacy() : -> None -
-
-
-
-
-
-
-
\ No newline at end of file +
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
User
+int user_id
+str name
+str email
+DateTime created_at
+__init__(user_id: int, name: str, email: str) : -> None
UserProfile
+int user_id
+dict preferences
+dict history
+__init__(user_id: int, preferences: dict, history: dict) : -> None
Content
+int content_id
+str title
+str description
+str category
+DateTime published_at
+__init__(content_id: int, title: str, description: str, category: str, published_at: DateTime) : -> None
CollaborativeFilteringModel
+DataFrame data
+str model_type
+__init__(data: DataFrame, model_type: str) : -> None
+fit() : -> None
+predict(user_id: int, n_recommendations: int) : -> List[int]
ContentBasedFilteringModel
+DataFrame data
+str model_type
+__init__(data: DataFrame, model_type: str) : -> None
+fit() : -> None
+predict(user_id: int, n_recommendations: int) : -> List[int]
Recommender
+int user_id
+UserProfile user_profile
+CollaborativeFilteringModel cf_model
+ContentBasedFilteringModel cbf_model
+__init__(user_id: int, user_profile: UserProfile, cf_model: CollaborativeFilteringModel, cbf_model: ContentBasedFilteringModel) : -> None
+get_recommendations(n_recommendations: int) : -> List[int]
ExperimentationPlatform
+List[Recommender] recommenders
+__init__(recommenders: List[Recommender]) : -> None
+run_experiment(user_id: int, n_recommendations: int) : -> Dict[str, List[int]]
Optimization
+Recommender recommender
+__init__(recommender: Recommender) : -> None
+optimize() : -> None
Feedback
+int user_id
+int content_id
+int rating
+__init__(user_id: int, content_id: int, rating: int) : -> None
Monitoring
+Recommender recommender
+__init__(recommender: Recommender) : -> None
+generate_report() : -> None
Advertising
+int advertiser_id
+str target_audience
+__init__(advertiser_id: int, target_audience: str) : -> None
Privacy
+User user
+__init__(user: User) : -> None
+ensure_privacy() : -> None
\ No newline at end of file diff --git a/docs/resources/workspace/content_rec_sys/resources/seq_flow.svg b/docs/resources/workspace/content_rec_sys/resources/seq_flow.svg index e73110109..d73482917 100644 --- a/docs/resources/workspace/content_rec_sys/resources/seq_flow.svg +++ b/docs/resources/workspace/content_rec_sys/resources/seq_flow.svg @@ -1,342 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - User - - - - - - - - - UserProfile - - - - - - - - - Recommender - - - - - - - - - CollaborativeFilteringModel - - - - - - - - - ContentBasedFilteringModel - - - - - - - - - ExperimentationPlatform - - - - - - - - - Feedback - - - - - - - - - Optimization - - - - - - - - - Monitoring - - - - - - - - - Privacy - - - - - - - - - Advertising - - - - - - - - - - - - - - - - - - - - - - - - create UserProfile - - - create Recommender - - - fit model - - - fit model - - - run_experiment() - - - get_recommendations() - - - predict() - - - predict() - - - submit feedback - - - update models - - - fit model - - - fit model - - - optimize() - - - update models - - - generate_report() - - - ensure_privacy() - - - ensure_privacy() - - - - - - User - - - - - - UserProfile - - - - - - Recommender - - - - - - CollaborativeFilteringModel - - - - - - ContentBasedFilteringModel - - - - - - ExperimentationPlatform - - - - - - Feedback - - - - - - Optimization - - - - - - Monitoring - - - - - - Privacy - - - - - - Advertising - - - \ No newline at end of file +UserUserProfileRecommenderCollaborativeFilteringModelContentBasedFilteringModelExperimentationPlatformFeedbackOptimizationMonitoringPrivacyAdvertisingcreate UserProfilecreate Recommenderfit modelfit modelrun_experiment()get_recommendations()predict()predict()submit feedbackupdate modelsfit modelfit modeloptimize()update modelsgenerate_report()ensure_privacy()ensure_privacy()UserUserProfileRecommenderCollaborativeFilteringModelContentBasedFilteringModelExperimentationPlatformFeedbackOptimizationMonitoringPrivacyAdvertising \ No newline at end of file diff --git a/docs/resources/workspace/llmops_framework/resources/competitive_analysis.svg b/docs/resources/workspace/llmops_framework/resources/competitive_analysis.svg index 0b3ac4860..541df8d18 100644 --- a/docs/resources/workspace/llmops_framework/resources/competitive_analysis.svg +++ b/docs/resources/workspace/llmops_framework/resources/competitive_analysis.svg @@ -1,128 +1 @@ - - MLOps/LLMOps Frameworks for GPT-4 and LLMs - - - - - - - Leaders - - - - - Innovators - - - - - Laggards - - - - - Challengers - - - - - - - - - - - - - - - Our Target Product - - - - - AWS SageMaker - - - - - Azure Machine Learning - - - - - Kubeflow - - - - - MLflow - - - - - TensorFlow Extended - - - - - Comet - - - - - Weights & Biases - - - - - - Low Integration - - - - High Integration - - - - Low Usability - - - - High Usability - - - - - MLOps/LLMOps Frameworks for GPT-4 and LLMs - - - - \ No newline at end of file +MLOps/LLMOps Frameworks for GPT-4 and LLMsLeadersInnovatorsLaggardsChallengersOur Target ProductAWS SageMakerAzure Machine LearningKubeflowMLflowTensorFlow ExtendedCometWeights & BiasesLow IntegrationHigh IntegrationLow UsabilityHigh UsabilityMLOps/LLMOps Frameworks for GPT-4 and LLMs \ No newline at end of file diff --git a/docs/resources/workspace/llmops_framework/resources/data_api_design.svg b/docs/resources/workspace/llmops_framework/resources/data_api_design.svg index 6423bb4c3..244af9965 100644 --- a/docs/resources/workspace/llmops_framework/resources/data_api_design.svg +++ b/docs/resources/workspace/llmops_framework/resources/data_api_design.svg @@ -1,631 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - config - -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- - dataset - -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- - model - -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- - model - -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
-
- - - - - - - -
- -
-
- -
- ModelConfig -
-
- -
- +model_name: str -
-
- -
- +model_type: str -
-
- -
- +config: Dict[str, Any] -
-
- -
- +__init__(self, model_name: str, model_type: str, config: - Dict[str, Any]) - -
-
-
-
- - - - - - -
- -
-
- -
- Dataset -
-
- -
- +dataset_name: str -
-
- -
- +split: str -
-
- -
- +tokenizer: PreTrainedTokenizer -
-
- -
- +__init__(self, dataset_name: str, split: str, tokenizer: - PreTrainedTokenizer) - -
-
- -
- +load_data(self) : -> Dataset -
-
- -
- +preprocess_data(self, max_length: int) : -> Dataset -
-
-
-
- - - - - - -
- -
-
- -
- BaseModel -
-
- -
- +model_config: ModelConfig -
-
- -
- +model: Union[PreTrainedModel, nn.Module] -
-
- -
- +__init__(self, model_config: ModelConfig) -
-
- -
- +load_model(self) : -> Union[PreTrainedModel, nn.Module] - -
-
-
-
- - - - - - -
- -
-
- -
- FineTuningPipeline -
-
- -
- +model: BaseModel -
-
- -
- +dataset: Dataset -
-
- -
- +training_args: TrainingArguments -
-
- -
- +__init__(self, model: BaseModel, dataset: Dataset, - training_args: TrainingArguments) - -
-
- -
- +train(self) : -> Tuple[Trainer, Dict[str, Any]] -
-
-
-
- - - - - - -
- -
-
- -
- Experiment -
-
- -
- +name: str -
-
- -
- +description: str -
-
- -
- +__init__(self, name: str, description: str) -
-
- -
- +start(self) : -> None -
-
- -
- +log_metrics(self, metrics: Dict[str, Any]) : -> None -
-
- -
- +end(self) : -> None -
-
-
-
- - - - - - -
- -
-
- -
- Artifact -
-
- -
- +name: str -
-
- -
- +artifact_type: str -
-
- -
- +path: str -
-
- -
- +__init__(self, name: str, artifact_type: str, path: str) -
-
- -
- +save(self) : -> None -
-
- -
- +load(self) : -> Any -
-
-
-
- - - - - - -
- -
-
- -
- ModelRegistry -
-
- -
- +__init__(self) -
-
- -
- +register_model(self, model: BaseModel, version: str) : -> - None - -
-
- -
- +get_model(self, model_name: str, version: str) : -> - BaseModel - -
-
- -
- +deploy_model(self, model_name: str, version: str) : -> - None - -
-
-
-
- - - - - - -
- -
-
- -
- ModelMonitoring -
-
- -
- +model_registry: ModelRegistry -
-
- -
- +__init__(self, model_registry: ModelRegistry) -
-
- -
- +monitor_model(self, model_name: str, version: str) : -> - Dict[str, Any] - -
-
-
-
-
-
-
-
\ No newline at end of file +
config
1
1
dataset
1
1
model
1
1
model
1
1
ModelConfig
+model_name: str
+model_type: str
+config: Dict[str, Any]
+__init__(self, model_name: str, model_type: str, config: Dict[str, Any])
Dataset
+dataset_name: str
+split: str
+tokenizer: PreTrainedTokenizer
+__init__(self, dataset_name: str, split: str, tokenizer: PreTrainedTokenizer)
+load_data(self) : -> Dataset
+preprocess_data(self, max_length: int) : -> Dataset
BaseModel
+model_config: ModelConfig
+model: Union[PreTrainedModel, nn.Module]
+__init__(self, model_config: ModelConfig)
+load_model(self) : -> Union[PreTrainedModel, nn.Module]
FineTuningPipeline
+model: BaseModel
+dataset: Dataset
+training_args: TrainingArguments
+__init__(self, model: BaseModel, dataset: Dataset, training_args: TrainingArguments)
+train(self) : -> Tuple[Trainer, Dict[str, Any]]
Experiment
+name: str
+description: str
+__init__(self, name: str, description: str)
+start(self) : -> None
+log_metrics(self, metrics: Dict[str, Any]) : -> None
+end(self) : -> None
Artifact
+name: str
+artifact_type: str
+path: str
+__init__(self, name: str, artifact_type: str, path: str)
+save(self) : -> None
+load(self) : -> Any
ModelRegistry
+__init__(self)
+register_model(self, model: BaseModel, version: str) : -> None
+get_model(self, model_name: str, version: str) : -> BaseModel
+deploy_model(self, model_name: str, version: str) : -> None
ModelMonitoring
+model_registry: ModelRegistry
+__init__(self, model_registry: ModelRegistry)
+monitor_model(self, model_name: str, version: str) : -> Dict[str, Any]
\ No newline at end of file diff --git a/docs/resources/workspace/llmops_framework/resources/seq_flow.svg b/docs/resources/workspace/llmops_framework/resources/seq_flow.svg index 2519bd2ff..02a826df8 100644 --- a/docs/resources/workspace/llmops_framework/resources/seq_flow.svg +++ b/docs/resources/workspace/llmops_framework/resources/seq_flow.svg @@ -1,323 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - User - - - - - - - - - ModelConfig - - - - - - - - - Dataset - - - - - - - - - BaseModel - - - - - - - - - FineTuningPipeline - - - - - - - - - Experiment - - - - - - - - - Artifact - - - - - - - - - ModelRegistry - - - - - - - - - ModelMonitoring - - - - - - - - - - - - - - - - - - - - - - - - __init__(model_name, model_type, config) - - - __init__(dataset_name, split, tokenizer) - - - __init__(model_config) - - - __init__(model, dataset, training_args) - - - __init__(name, description) - - - __init__(name, artifact_type, path) - - - __init__() - - - __init__(model_registry) - - - load_data() - - - preprocess_data(max_length) - - - load_model() - - - train() - - - start() - - - log_metrics(metrics) - - - end() - - - save() - - - register_model(model, version) - - - monitor_model(model_name, version) - - - get_model(model_name, version) - - - deploy_model(model_name, version) - - - - - - User - - - - - - ModelConfig - - - - - - Dataset - - - - - - BaseModel - - - - - - FineTuningPipeline - - - - - - Experiment - - - - - - Artifact - - - - - - ModelRegistry - - - - - - ModelMonitoring - - - \ No newline at end of file +UserModelConfigDatasetBaseModelFineTuningPipelineExperimentArtifactModelRegistryModelMonitoring__init__(model_name, model_type, config)__init__(dataset_name, split, tokenizer)__init__(model_config)__init__(model, dataset, training_args)__init__(name, description)__init__(name, artifact_type, path)__init__()__init__(model_registry)load_data()preprocess_data(max_length)load_model()train()start()log_metrics(metrics)end()save()register_model(model, version)monitor_model(model_name, version)get_model(model_name, version)deploy_model(model_name, version)UserModelConfigDatasetBaseModelFineTuningPipelineExperimentArtifactModelRegistryModelMonitoring \ No newline at end of file diff --git a/docs/resources/workspace/match3_puzzle_game/resources/competitive_analysis.svg b/docs/resources/workspace/match3_puzzle_game/resources/competitive_analysis.svg index 684e608ef..43a164f19 100644 --- a/docs/resources/workspace/match3_puzzle_game/resources/competitive_analysis.svg +++ b/docs/resources/workspace/match3_puzzle_game/resources/competitive_analysis.svg @@ -1,128 +1 @@ - - Reach and Engagement of Match-3 Games - - - - - - - Expand Features - - - - - Promote More - - - - - Re-evaluate - - - - - Improve Engagement - - - - - - - - - - - - - - - Our Target Product - - - - - Toon Blast - - - - - Fishdom - - - - - Gardenscapes - - - - - Homescapes - - - - - Gummy Drop! - - - - - Bejeweled - - - - - Candy Crush Saga - - - - - - Low Reach - - - - High Reach - - - - Low Engagement - - - - High Engagement - - - - - Reach and Engagement of Match-3 Games - - - - \ No newline at end of file +Reach and Engagement of Match-3 GamesExpand FeaturesPromote MoreRe-evaluateImprove EngagementOur Target ProductToon BlastFishdomGardenscapesHomescapesGummy Drop!BejeweledCandy Crush SagaLow ReachHigh ReachLow EngagementHigh EngagementReach and Engagement of Match-3 Games \ No newline at end of file diff --git a/docs/resources/workspace/match3_puzzle_game/resources/data_api_design.svg b/docs/resources/workspace/match3_puzzle_game/resources/data_api_design.svg index 4977a8e7a..95268f914 100644 --- a/docs/resources/workspace/match3_puzzle_game/resources/data_api_design.svg +++ b/docs/resources/workspace/match3_puzzle_game/resources/data_api_design.svg @@ -1,947 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- * -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- * -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- 1 -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- * -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- * -
-
-
- - - -
- -
-
-
-
- - - -
- 1 -
-
-
-
- - - -
- * -
-
-
-
- - - - - - - -
- -
-
- -
- Game -
-
- -
- +__init__(self, user: User) -
-
- -
- +start(self) -
-
- -
- +play_level(self, level: Level) -
-
- -
- +complete_level(self, level: Level, score: int) -
-
- -
- +use_power_up(self, power_up: PowerUp) -
-
-
-
- - - - - - -
- -
-
- -
- User -
-
- -
- +__init__(self, username: str, password: str) -
-
- -
- +login(self) -
-
- -
- +register(self) -
-
- -
- +connect_social(self, social_platform: str) -
-
- -
- +get_friends(self) : -> List[User] -
-
-
-
- - - - - - -
- -
-
- -
- Level -
-
- -
- +__init__(self, level_data: Dict[str, Any]) -
-
- -
- +load(self) -
-
- -
- +generate(self) -
-
- -
- +check_win(self) : -> bool -
-
- -
- +get_objectives(self) : -> List[Objective] -
-
-
-
- - - - - - -
- -
-
- -
- Objective -
-
- -
- +__init__(self, type: str, target: int) -
-
- -
- +is_complete(self) : -> bool -
-
-
-
- - - - - - -
- -
-
- -
- PowerUp -
-
- -
- +__init__(self, type: str, effect: Callable) -
-
- -
- +apply(self, game: Game) -
-
-
-
- - - - - - -
- -
-
- -
- Reward -
-
- -
- +__init__(self, type: str, value: Any) -
-
- -
- +claim(self, user: User) -
-
-
-
- - - - - - -
- -
-
- -
- UI -
-
- -
- +__init__(self, game: Game) -
-
- -
- +render(self) -
-
- -
- +handle_input(self, event: pygame.event.Event) -
-
-
-
- - - - - - -
- -
-
- -
- Social -
-
- -
- +__init__(self, user: User) -
-
- -
- +share(self, platform: str, content: str) -
-
- -
- +invite(self, friend: User) -
-
- -
- +compare_scores(self, friend: User) : -> Tuple[int, int] - -
-
-
-
- - - - - - -
- -
-
- -
- Platform -
-
- -
- +__init__(self, game: Game) -
-
- -
- +save(self, user: User) -
-
- -
- +load(self, user: User) -
-
-
-
- - - - - - -
- -
-
- -
- Tutorial -
-
- -
- +__init__(self, game: Game) -
-
- -
- +start(self) -
-
- -
- +next_step(self) -
-
- -
- +complete(self) -
-
-
-
- - - - - - -
- -
-
- -
- IAP -
-
- -
- +__init__(self, user: User) -
-
- -
- +purchase(self, item: str) -
-
-
-
- - - - - - -
- -
-
- -
- Update -
-
- -
- +__init__(self, game: Game) -
-
- -
- +check_updates(self) : -> bool -
-
- -
- +download_update(self) -
-
- -
- +apply_update(self) -
-
-
-
-
-
-
-
\ No newline at end of file +
1
1
1
1
1
*
1
*
1
1
1
1
1
1
1
1
1
1
1
*
1
*
1
*
Game
+__init__(self, user: User)
+start(self)
+play_level(self, level: Level)
+complete_level(self, level: Level, score: int)
+use_power_up(self, power_up: PowerUp)
User
+__init__(self, username: str, password: str)
+login(self)
+register(self)
+connect_social(self, social_platform: str)
+get_friends(self) : -> List[User]
Level
+__init__(self, level_data: Dict[str, Any])
+load(self)
+generate(self)
+check_win(self) : -> bool
+get_objectives(self) : -> List[Objective]
Objective
+__init__(self, type: str, target: int)
+is_complete(self) : -> bool
PowerUp
+__init__(self, type: str, effect: Callable)
+apply(self, game: Game)
Reward
+__init__(self, type: str, value: Any)
+claim(self, user: User)
UI
+__init__(self, game: Game)
+render(self)
+handle_input(self, event: pygame.event.Event)
Social
+__init__(self, user: User)
+share(self, platform: str, content: str)
+invite(self, friend: User)
+compare_scores(self, friend: User) : -> Tuple[int, int]
Platform
+__init__(self, game: Game)
+save(self, user: User)
+load(self, user: User)
Tutorial
+__init__(self, game: Game)
+start(self)
+next_step(self)
+complete(self)
IAP
+__init__(self, user: User)
+purchase(self, item: str)
Update
+__init__(self, game: Game)
+check_updates(self) : -> bool
+download_update(self)
+apply_update(self)
\ No newline at end of file diff --git a/docs/resources/workspace/match3_puzzle_game/resources/seq_flow.svg b/docs/resources/workspace/match3_puzzle_game/resources/seq_flow.svg index 533860c56..d1f914c1e 100644 --- a/docs/resources/workspace/match3_puzzle_game/resources/seq_flow.svg +++ b/docs/resources/workspace/match3_puzzle_game/resources/seq_flow.svg @@ -1,425 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - User - - - - - - - - - Game - - - - - - - - - UI - - - - - - - - - Level - - - - - - - - - Objective - - - - - - - - - PowerUp - - - - - - - - - Reward - - - - - - - - - Social - - - - - - - - - Platform - - - - - - - - - Tutorial - - - - - - - - - IAP - - - - - - - - - Update - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - loop - - - [Each tutorial step] - - - - - - - - - - alt - - - [Level completed] - - - - - - - - - loop - - - [Each level] - - - - - - - - - alt - - - [Updates - - - available] - - - start() - - - start() - - - render() - - - handle_input(event) - - - next_step() - - - complete() - - - load() - - - generate() - - - render() - - - handle_input(event) - - - check_win() - - - claim(user) - - - apply(game) - - - share(platform, content) - - - save(user) - - - purchase(item) - - - check_updates() - - - download_update() - - - apply_update() - - - - - - User - - - - - - Game - - - - - - UI - - - - - - Level - - - - - - Objective - - - - - - PowerUp - - - - - - Reward - - - - - - Social - - - - - - Platform - - - - - - Tutorial - - - - - - IAP - - - - - - Update - - - \ No newline at end of file +UserGameUILevelObjectivePowerUpRewardSocialPlatformTutorialIAPUpdateloop[Each tutorial step]alt[Level completed]loop[Each level]alt[Updatesavailable]start()start()render()handle_input(event)next_step()complete()load()generate()render()handle_input(event)check_win()claim(user)apply(game)share(platform, content)save(user)purchase(item)check_updates()download_update()apply_update()UserGameUILevelObjectivePowerUpRewardSocialPlatformTutorialIAPUpdate \ No newline at end of file diff --git a/docs/resources/workspace/minimalist_pomodoro_timer/resources/competitive_analysis.svg b/docs/resources/workspace/minimalist_pomodoro_timer/resources/competitive_analysis.svg index 98686dff0..57edac51c 100644 --- a/docs/resources/workspace/minimalist_pomodoro_timer/resources/competitive_analysis.svg +++ b/docs/resources/workspace/minimalist_pomodoro_timer/resources/competitive_analysis.svg @@ -1,116 +1 @@ - - Competitive Analysis of Pomodoro Timers - - - - - - - Our Product - - - - - Pomodoro Tracker - - - - - Tomato Timer - - - - - Pomofocus - - - - - - - - - - - - - - - PomoDone - - - - - Pomello - - - - - Pomofocus - - - - - Tomato Timer - - - - - Pomodoro Tracker - - - - - Our Product - - - - - - Low Functionality - - - - High Functionality - - - - High Complexity - - - - Low Complexity - - - - - Competitive Analysis of Pomodoro Timers - - - - \ No newline at end of file +Competitive Analysis of Pomodoro TimersOur ProductPomodoro TrackerTomato TimerPomofocusPomoDonePomelloPomofocusTomato TimerPomodoro TrackerOur ProductLow FunctionalityHigh FunctionalityHigh ComplexityLow ComplexityCompetitive Analysis of Pomodoro Timers \ No newline at end of file diff --git a/docs/resources/workspace/minimalist_pomodoro_timer/resources/data_api_design.svg b/docs/resources/workspace/minimalist_pomodoro_timer/resources/data_api_design.svg index d58333117..78378cee8 100644 --- a/docs/resources/workspace/minimalist_pomodoro_timer/resources/data_api_design.svg +++ b/docs/resources/workspace/minimalist_pomodoro_timer/resources/data_api_design.svg @@ -1,203 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - uses - -
-
-
-
-
- - - - - - - -
- -
-
- -
- PomodoroTimer -
-
- -
- +__init__(self, session_length: int, break_length: int) -
-
- -
- +start(self) : -> None -
-
- -
- +pause(self) : -> None -
-
- -
- +resume(self) : -> None -
-
- -
- +reset(self) : -> None -
-
- -
- +is_running(self) : -> bool -
-
-
-
- - - - - - -
- -
-
- -
- WebApp -
-
- -
- +__init__(self) -
-
- -
- +run(self) : -> None -
-
-
-
-
-
-
-
\ No newline at end of file +
uses
PomodoroTimer
+__init__(self, session_length: int, break_length: int)
+start(self) : -> None
+pause(self) : -> None
+resume(self) : -> None
+reset(self) : -> None
+is_running(self) : -> bool
WebApp
+__init__(self)
+run(self) : -> None
\ No newline at end of file diff --git a/docs/resources/workspace/minimalist_pomodoro_timer/resources/seq_flow.svg b/docs/resources/workspace/minimalist_pomodoro_timer/resources/seq_flow.svg index 50f75d8b7..cc5926374 100644 --- a/docs/resources/workspace/minimalist_pomodoro_timer/resources/seq_flow.svg +++ b/docs/resources/workspace/minimalist_pomodoro_timer/resources/seq_flow.svg @@ -1,219 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - User - - - - - - - - - WebApp - - - - - - - - - PomodoroTimer - - - - - - - - - - - - - - - - - - - - - - - - - - - Countdown begins - - - - - - Countdown paused - - - - - - Countdown resumes - - - - - - Countdown reset - - - Access web app - - - Display index.html - - - Set session and break lengths - - - __init__(session_length, break_length) - - - Click "Start" button - - - start() - - - Click "Pause" button - - - pause() - - - Click "Resume" button - - - resume() - - - Click "Reset" button - - - reset() - - - Access help page - - - Display help.html - - - - - - User - - - - - - WebApp - - - - - - PomodoroTimer - - - \ No newline at end of file +UserWebAppPomodoroTimerCountdown beginsCountdown pausedCountdown resumesCountdown resetAccess web appDisplay index.htmlSet session and break lengths__init__(session_length, break_length)Click "Start" buttonstart()Click "Pause" buttonpause()Click "Resume" buttonresume()Click "Reset" buttonreset()Access help pageDisplay help.htmlUserWebAppPomodoroTimer \ No newline at end of file diff --git a/docs/resources/workspace/pyrogue/resources/competitive_analysis.svg b/docs/resources/workspace/pyrogue/resources/competitive_analysis.svg index 7c284f60b..14d378ed6 100644 --- a/docs/resources/workspace/pyrogue/resources/competitive_analysis.svg +++ b/docs/resources/workspace/pyrogue/resources/competitive_analysis.svg @@ -1,128 +1 @@ - - Reach and Engagement of Roguelike Games - - - - - - - Expand and improve - - - - - Promote and maintain - - - - - Re-evaluate and iterate - - - - - Improve and innovate - - - - - - - - - - - - - - - Our Target Product - - - - - Dwarf Fortress Adventure Mode - - - - - ADOM - - - - - Tales of Maj'Eyal - - - - - Caves of Qud - - - - - Brogue - - - - - Dungeon Crawl Stone Soup - - - - - NetHack - - - - - - Low Reach - - - - High Reach - - - - Low Engagement - - - - High Engagement - - - - - Reach and Engagement of Roguelike Games - - - - \ No newline at end of file +Reach and Engagement of Roguelike GamesExpand and improvePromote and maintainRe-evaluate and iterateImprove and innovateOur Target ProductDwarf Fortress Adventure ModeADOMTales of Maj'EyalCaves of QudBrogueDungeon Crawl Stone SoupNetHackLow ReachHigh ReachLow EngagementHigh EngagementReach and Engagement of Roguelike Games \ No newline at end of file diff --git a/docs/resources/workspace/pyrogue/resources/data_api_design.svg b/docs/resources/workspace/pyrogue/resources/data_api_design.svg index dc4ccc940..1558d388b 100644 --- a/docs/resources/workspace/pyrogue/resources/data_api_design.svg +++ b/docs/resources/workspace/pyrogue/resources/data_api_design.svg @@ -1,747 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
-
- - - - - - - -
- -
-
- -
- Game -
-
- -
- +__init__(self, player: Player, level: Level, ui: UI, audio: - Audio) - -
-
- -
- +run(self) -
-
- -
- +handle_input(self, key: tcod.Key) -
-
- -
- +update(self) -
-
- -
- +render(self) -
-
-
-
- - - - - - -
- -
-
- -
- Level -
-
- -
- +__init__(self, width: int, height: int) -
-
- -
- +generate(self, algorithm: str) -
-
- -
- +get_tile(self, x: int, y: int) : -> Tile -
-
- -
- +spawn_entity(self, entity: Entity) -
-
- -
- +remove_entity(self, entity: Entity) -
-
-
-
- - - - - - -
- -
-
- -
- Entity -
-
- -
- +__init__(self, x: int, y: int, char: str, color: Tuple[int, - int, int]) - -
-
- -
- +move(self, dx: int, dy: int) -
-
- -
- +interact(self, other: Entity) -
-
-
-
- - - - - - -
- -
-
- -
- Player -
-
- -
- +__init__(self, character_class: CharacterClass) -
-
- -
- +gain_experience(self, amount: int) -
-
- -
- +level_up(self) -
-
-
-
- - - - - - -
- -
-
- -
- CharacterClass -
-
- -
- +__init__(self, name: str, abilities: List[str]) -
-
- -
- +use_ability(self, ability: str, target: Entity) -
-
-
-
- - - - - - -
- -
-
- -
- Enemy -
-
- -
- +__init__(self, ai: Callable) -
-
- -
- +take_turn(self) -
-
-
-
- - - - - - -
- -
-
- -
- Item -
-
- -
- +__init__(self, effect: Callable) -
-
- -
- +use(self, target: Entity) -
-
-
-
- - - - - - -
- -
-
- -
- Trap -
-
- -
- +__init__(self, effect: Callable) -
-
- -
- +trigger(self, target: Entity) -
-
-
-
- - - - - - -
- -
-
- -
- UI -
-
- -
- +__init__(self, width: int, height: int) -
-
- -
- +draw(self, game: Game) -
-
- -
- +show_message(self, message: str, color: Tuple[int, int, int]) - -
-
-
-
- - - - - - -
- -
-
- -
- Audio -
-
- -
- +__init__(self) -
-
- -
- +play_sound(self, sound: str) -
-
- -
- +play_music(self, music: str) -
-
-
-
- - - - - - -
- -
-
- -
- SaveLoad -
-
- -
- +__init__(self) -
-
- -
- +save_game(self, game: Game, filename: str) -
-
- -
- +load_game(self, filename: str) : -> Game -
-
-
-
- - - - - - -
- -
-
- -
- Tutorial -
-
- -
- +__init__(self) -
-
- -
- +show_help(self, game: Game) -
-
-
-
- - - - - - -
- -
-
- -
- Callable -
-
-
-
-
-
-
-
\ No newline at end of file +
Game
+__init__(self, player: Player, level: Level, ui: UI, audio: Audio)
+run(self)
+handle_input(self, key: tcod.Key)
+update(self)
+render(self)
Level
+__init__(self, width: int, height: int)
+generate(self, algorithm: str)
+get_tile(self, x: int, y: int) : -> Tile
+spawn_entity(self, entity: Entity)
+remove_entity(self, entity: Entity)
Entity
+__init__(self, x: int, y: int, char: str, color: Tuple[int, int, int])
+move(self, dx: int, dy: int)
+interact(self, other: Entity)
Player
+__init__(self, character_class: CharacterClass)
+gain_experience(self, amount: int)
+level_up(self)
CharacterClass
+__init__(self, name: str, abilities: List[str])
+use_ability(self, ability: str, target: Entity)
Enemy
+__init__(self, ai: Callable)
+take_turn(self)
Item
+__init__(self, effect: Callable)
+use(self, target: Entity)
Trap
+__init__(self, effect: Callable)
+trigger(self, target: Entity)
UI
+__init__(self, width: int, height: int)
+draw(self, game: Game)
+show_message(self, message: str, color: Tuple[int, int, int])
Audio
+__init__(self)
+play_sound(self, sound: str)
+play_music(self, music: str)
SaveLoad
+__init__(self)
+save_game(self, game: Game, filename: str)
+load_game(self, filename: str) : -> Game
Tutorial
+__init__(self)
+show_help(self, game: Game)
Callable
\ No newline at end of file diff --git a/docs/resources/workspace/pyrogue/resources/seq_flow.svg b/docs/resources/workspace/pyrogue/resources/seq_flow.svg index a389ade4b..7b4400ed6 100644 --- a/docs/resources/workspace/pyrogue/resources/seq_flow.svg +++ b/docs/resources/workspace/pyrogue/resources/seq_flow.svg @@ -1,354 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - Game - - - - - - - - - Player - - - - - - - - - Level - - - - - - - - - Entity - - - - - - - - - CharacterClass - - - - - - - - - UI - - - - - - - - - Audio - - - - - - - - - SaveLoad - - - - - - - - - Tutorial - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - loop - - - [Game - - - Loop] - - - __init__(character_class) - - - __init__(width, height) - - - __init__(width, height) - - - __init__() - - - __init__() - - - __init__() - - - handle_input(key) - - - update() - - - render() - - - use_ability(ability, target) - - - move(dx, dy) - - - interact(other) - - - generate(algorithm) - - - get_tile(x, y) - - - spawn_entity(entity) - - - remove_entity(entity) - - - draw(game) - - - show_message(message, color) - - - play_sound(sound) - - - play_music(music) - - - save_game(game, filename) - - - load_game(filename) - - - show_help(game) - - - - - - Game - - - - - - Player - - - - - - Level - - - - - - Entity - - - - - - CharacterClass - - - - - - UI - - - - - - Audio - - - - - - SaveLoad - - - - - - Tutorial - - - \ No newline at end of file +GamePlayerLevelEntityCharacterClassUIAudioSaveLoadTutorialloop[GameLoop]__init__(character_class)__init__(width, height)__init__(width, height)__init__()__init__()__init__()handle_input(key)update()render()use_ability(ability, target)move(dx, dy)interact(other)generate(algorithm)get_tile(x, y)spawn_entity(entity)remove_entity(entity)draw(game)show_message(message, color)play_sound(sound)play_music(music)save_game(game, filename)load_game(filename)show_help(game)GamePlayerLevelEntityCharacterClassUIAudioSaveLoadTutorial \ No newline at end of file diff --git a/docs/resources/workspace/search_algorithm_framework/resources/competitive_analysis.svg b/docs/resources/workspace/search_algorithm_framework/resources/competitive_analysis.svg index 0c6c0398c..3348a097c 100644 --- a/docs/resources/workspace/search_algorithm_framework/resources/competitive_analysis.svg +++ b/docs/resources/workspace/search_algorithm_framework/resources/competitive_analysis.svg @@ -1,128 +1 @@ - - Search Algorithm Frameworks: Accuracy vs Speed - - - - - - - High potential for improvement - - - - - Fast but less accurate - - - - - Slow and less accurate - - - - - Fast and accurate - - - - - - - - - - - - - - - Our Target Product - - - - - Algolia - - - - - Solr - - - - - Elasticsearch - - - - - DuckDuckGo - - - - - Baidu - - - - - Bing - - - - - Google Search - - - - - - Low Accuracy - - - - High Accuracy - - - - Slow Speed - - - - Fast Speed - - - - - Search Algorithm Frameworks: Accuracy vs Speed - - - - \ No newline at end of file +Search Algorithm Frameworks: Accuracy vs SpeedHigh potential for improvementFast but less accurateSlow and less accurateFast and accurateOur Target ProductAlgoliaSolrElasticsearchDuckDuckGoBaiduBingGoogle SearchLow AccuracyHigh AccuracySlow SpeedFast SpeedSearch Algorithm Frameworks: Accuracy vs Speed \ No newline at end of file diff --git a/docs/resources/workspace/search_algorithm_framework/resources/data_api_design.svg b/docs/resources/workspace/search_algorithm_framework/resources/data_api_design.svg index a3939f0fb..2443dacc5 100644 --- a/docs/resources/workspace/search_algorithm_framework/resources/data_api_design.svg +++ b/docs/resources/workspace/search_algorithm_framework/resources/data_api_design.svg @@ -1,515 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
- - - -
- -
-
-
-
-
- - - - - - - -
- -
-
- -
- SearchAPI -
-
- -
- +search(query: str) : -> List[SearchResult] -
-
- -
- +update_document(document: Document) : -> bool -
-
- -
- +delete_document(document_id: str) : -> bool -
-
- -
- +add_document(document: Document) : -> bool -
-
-
-
- - - - - - -
- -
-
- -
- Document -
-
- -
- +__init__(document_id: str, title: str, content: str, language: - str) - -
-
-
-
- - - - - - -
- -
-
- -
- SearchResult -
-
- -
- +__init__(document_id: str, title: str, score: float) -
-
-
-
- - - - - - -
- -
-
- -
- QueryUnderstanding -
-
- -
- +process_query(query: str) : -> List[str] -
-
-
-
- - - - - - -
- -
-
- -
- Recall -
-
- -
- +get_candidates(query_terms: List[str]) : -> List[Document] - -
-
-
-
- - - - - - -
- -
-
- -
- Ranking -
-
- -
- +rank_documents(query_terms: List[str], candidates: - List[Document]) : -> List[SearchResult] - -
-
-
-
- - - - - - -
- -
-
- -
- Indexing -
-
- -
- +index_document(document: Document) : -> bool -
-
- -
- +update_document(document: Document) : -> bool -
-
- -
- +delete_document(document_id: str) : -> bool -
-
-
-
- - - - - - -
- -
-
- -
- UserFeedback -
-
- -
- +submit_feedback(feedback: Feedback) : -> bool -
-
-
-
- - - - - - -
- -
-
- -
- Feedback -
-
- -
- +__init__(user_id: str, query: str, document_id: str, rating: - int) - -
-
-
-
- - - - - - -
- -
-
- -
- MachineLearning -
-
- -
- +train_model(feedback_data: List[Feedback]) : -> bool -
-
- -
- +predict_ranking(query_terms: List[str], candidates: - List[Document]) : -> List[float] - -
-
-
-
- - - - - - -
- -
-
- -
- Utils -
-
- -
- +normalize_text(text: str) : -> str -
-
-
-
-
-
-
-
\ No newline at end of file +
SearchAPI
+search(query: str) : -> List[SearchResult]
+update_document(document: Document) : -> bool
+delete_document(document_id: str) : -> bool
+add_document(document: Document) : -> bool
Document
+__init__(document_id: str, title: str, content: str, language: str)
SearchResult
+__init__(document_id: str, title: str, score: float)
QueryUnderstanding
+process_query(query: str) : -> List[str]
Recall
+get_candidates(query_terms: List[str]) : -> List[Document]
Ranking
+rank_documents(query_terms: List[str], candidates: List[Document]) : -> List[SearchResult]
Indexing
+index_document(document: Document) : -> bool
+update_document(document: Document) : -> bool
+delete_document(document_id: str) : -> bool
UserFeedback
+submit_feedback(feedback: Feedback) : -> bool
Feedback
+__init__(user_id: str, query: str, document_id: str, rating: int)
MachineLearning
+train_model(feedback_data: List[Feedback]) : -> bool
+predict_ranking(query_terms: List[str], candidates: List[Document]) : -> List[float]
Utils
+normalize_text(text: str) : -> str
\ No newline at end of file diff --git a/docs/resources/workspace/search_algorithm_framework/resources/seq_flow.svg b/docs/resources/workspace/search_algorithm_framework/resources/seq_flow.svg index 4053034e6..19e39db28 100644 --- a/docs/resources/workspace/search_algorithm_framework/resources/seq_flow.svg +++ b/docs/resources/workspace/search_algorithm_framework/resources/seq_flow.svg @@ -1,321 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - User - - - - - - - - - SearchAPI - - - - - - - - - QueryUnderstanding - - - - - - - - - Recall - - - - - - - - - Ranking - - - - - - - - - MachineLearning - - - - - - - - - UserFeedback - - - - - - - - - Indexing - - - - - - - - - - - - - - - - - - - - - - - - search(query) - - - process_query(query) - - - query_terms - - - get_candidates(query_terms) - - - candidates - - - rank_documents(query_terms, candidates) - - - predict_ranking(query_terms, candidates) - - - scores - - - search_results - - - search_results - - - submit_feedback(feedback) - - - submit_feedback(feedback) - - - feedback_status - - - feedback_status - - - update_document(document) - - - update_document(document) - - - update_status - - - delete_document(document_id) - - - delete_document(document_id) - - - delete_status - - - add_document(document) - - - index_document(document) - - - index_status - - - - - - User - - - - - - SearchAPI - - - - - - QueryUnderstanding - - - - - - Recall - - - - - - Ranking - - - - - - MachineLearning - - - - - - UserFeedback - - - - - - Indexing - - - \ No newline at end of file +UserSearchAPIQueryUnderstandingRecallRankingMachineLearningUserFeedbackIndexingsearch(query)process_query(query)query_termsget_candidates(query_terms)candidatesrank_documents(query_terms, candidates)predict_ranking(query_terms, candidates)scoressearch_resultssearch_resultssubmit_feedback(feedback)submit_feedback(feedback)feedback_statusfeedback_statusupdate_document(document)update_document(document)update_statusdelete_document(document_id)delete_document(document_id)delete_statusadd_document(document)index_document(document)index_statusUserSearchAPIQueryUnderstandingRecallRankingMachineLearningUserFeedbackIndexing \ No newline at end of file diff --git a/examples/agent_creator.py b/examples/agent_creator.py index 9131fc5ef..e03a88c6b 100644 --- a/examples/agent_creator.py +++ b/examples/agent_creator.py @@ -5,18 +5,18 @@ Author: garylin2099 ''' import re -from metagpt.actions import Action from metagpt.const import PROJECT_ROOT, WORKSPACE_ROOT -from metagpt.logs import logger +from metagpt.actions import Action from metagpt.roles import Role from metagpt.schema import Message +from metagpt.logs import logger with open(PROJECT_ROOT / "examples/build_customized_agent.py", "r") as f: # use official example script to guide AgentCreator MULTI_ACTION_AGENT_CODE_EXAMPLE = f.read() - class CreateAgent(Action): + PROMPT_TEMPLATE = """ ### BACKGROUND You are using an agent framework called metagpt to write agents capable of different actions, @@ -34,6 +34,7 @@ class CreateAgent(Action): """ async def run(self, example: str, instruction: str): + prompt = self.PROMPT_TEMPLATE.format(example=example, instruction=instruction) # logger.info(prompt) @@ -52,14 +53,13 @@ class CreateAgent(Action): f.write(code_text) return code_text - class AgentCreator(Role): def __init__( - self, - name: str = "Matrix", - profile: str = "AgentCreator", - agent_template: str = MULTI_ACTION_AGENT_CODE_EXAMPLE, - **kwargs, + self, + name: str = "Matrix", + profile: str = "AgentCreator", + agent_template: str = MULTI_ACTION_AGENT_CODE_EXAMPLE, + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([CreateAgent]) @@ -76,12 +76,11 @@ class AgentCreator(Role): return msg - if __name__ == "__main__": import asyncio - async def main(): + agent_template = MULTI_ACTION_AGENT_CODE_EXAMPLE creator = AgentCreator(agent_template=agent_template) @@ -98,5 +97,4 @@ if __name__ == "__main__": """ await creator.run(msg) - asyncio.run(main()) diff --git a/examples/build_customized_agent.py b/examples/build_customized_agent.py index b9e27608b..87d7a9c76 100644 --- a/examples/build_customized_agent.py +++ b/examples/build_customized_agent.py @@ -3,19 +3,19 @@ Filename: MetaGPT/examples/build_customized_agent.py Created Date: Tuesday, September 19th 2023, 6:52:25 pm Author: garylin2099 ''' -import asyncio import re import subprocess +import asyncio import fire from metagpt.actions import Action -from metagpt.logs import logger from metagpt.roles import Role from metagpt.schema import Message - +from metagpt.logs import logger class SimpleWriteCode(Action): + PROMPT_TEMPLATE = """ Write a python function that can {instruction} and provide two runnnable test cases. Return ```python your_code_here ``` with NO other texts, @@ -35,6 +35,7 @@ class SimpleWriteCode(Action): super().__init__(name, context, llm) async def run(self, instruction: str): + prompt = self.PROMPT_TEMPLATE.format(instruction=instruction) rsp = await self._aask(prompt) @@ -50,7 +51,6 @@ class SimpleWriteCode(Action): code_text = match.group(1) if match else rsp return code_text - class SimpleRunCode(Action): def __init__(self, name="SimpleRunCode", context=None, llm=None): super().__init__(name, context, llm) @@ -61,13 +61,12 @@ class SimpleRunCode(Action): logger.info(f"{code_result=}") return code_result - class SimpleCoder(Role): def __init__( - self, - name: str = "Alice", - profile: str = "SimpleCoder", - **kwargs, + self, + name: str = "Alice", + profile: str = "SimpleCoder", + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([SimpleWriteCode]) @@ -76,7 +75,7 @@ class SimpleCoder(Role): logger.info(f"{self._setting}: ready to {self._rc.todo}") todo = self._rc.todo - msg = self._rc.memory.get()[-1] # retrieve the latest memory + msg = self._rc.memory.get()[-1] # retrieve the latest memory instruction = msg.content code_text = await SimpleWriteCode().run(instruction) @@ -84,13 +83,12 @@ class SimpleCoder(Role): return msg - class RunnableCoder(Role): def __init__( - self, - name: str = "Alice", - profile: str = "RunnableCoder", - **kwargs, + self, + name: str = "Alice", + profile: str = "RunnableCoder", + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([SimpleWriteCode, SimpleRunCode]) @@ -130,7 +128,6 @@ class RunnableCoder(Role): await self._act() return Message(content="All job done", role=self.profile) - def main(msg="write a function that calculates the sum of a list"): # role = SimpleCoder() role = RunnableCoder() @@ -138,6 +135,5 @@ def main(msg="write a function that calculates the sum of a list"): result = asyncio.run(role.run(msg)) logger.info(result) - if __name__ == '__main__': fire.Fire(main) diff --git a/examples/debate.py b/examples/debate.py index d0b9fecd8..05db28070 100644 --- a/examples/debate.py +++ b/examples/debate.py @@ -5,15 +5,13 @@ Author: garylin2099 ''' import asyncio import platform - import fire +from metagpt.software_company import SoftwareCompany from metagpt.actions import Action, BossRequirement -from metagpt.logs import logger from metagpt.roles import Role from metagpt.schema import Message -from metagpt.software_company import SoftwareCompany - +from metagpt.logs import logger class ShoutOut(Action): """Action: Shout out loudly in a debate (quarrel)""" @@ -33,6 +31,7 @@ class ShoutOut(Action): super().__init__(name, context, llm) async def run(self, context: str, name: str, opponent_name: str): + prompt = self.PROMPT_TEMPLATE.format(context=context, name=name, opponent_name=opponent_name) # logger.info(prompt) @@ -40,13 +39,12 @@ class ShoutOut(Action): return rsp - class Trump(Role): def __init__( - self, - name: str = "Trump", - profile: str = "Republican", - **kwargs, + self, + name: str = "Trump", + profile: str = "Republican", + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([ShoutOut]) @@ -57,7 +55,7 @@ class Trump(Role): async def _observe(self) -> int: await super()._observe() # accept messages sent (from opponent) to self, disregard own messages from the last round - self._rc.news = [msg for msg in self._rc.news if msg.send_to == self.name] + self._rc.news = [msg for msg in self._rc.news if msg.send_to == self.name] return len(self._rc.news) async def _act(self) -> Message: @@ -81,13 +79,12 @@ class Trump(Role): return msg - class Biden(Role): def __init__( - self, - name: str = "Biden", - profile: str = "Democrat", - **kwargs, + self, + name: str = "Biden", + profile: str = "Democrat", + **kwargs, ): super().__init__(name, profile, **kwargs) self._init_actions([ShoutOut]) @@ -123,7 +120,6 @@ class Biden(Role): return msg - async def startup(idea: str, investment: float = 3.0, n_round: int = 5, code_review: bool = False, run_tests: bool = False): """We reuse the startup paradigm for roles to interact with each other. diff --git a/examples/search_with_specific_engine.py b/examples/search_with_specific_engine.py index 9309e18bd..7cc431cd4 100644 --- a/examples/search_with_specific_engine.py +++ b/examples/search_with_specific_engine.py @@ -6,12 +6,11 @@ from metagpt.tools import SearchEngineType async def main(): # Serper API - # await Searcher(engine = SearchEngineType.SERPER_GOOGLE).run(["What are some good sun protection products?","What are some of the best beaches?"]) + #await Searcher(engine = SearchEngineType.SERPER_GOOGLE).run(["What are some good sun protection products?","What are some of the best beaches?"]) # SerpAPI - # await Searcher(engine=SearchEngineType.SERPAPI_GOOGLE).run("What are the best ski brands for skiers?") + #await Searcher(engine=SearchEngineType.SERPAPI_GOOGLE).run("What are the best ski brands for skiers?") # Google API await Searcher(engine=SearchEngineType.DIRECT_GOOGLE).run("What are the most interesting human facts?") - if __name__ == '__main__': asyncio.run(main()) diff --git a/examples/sk_agent.py b/examples/sk_agent.py index 5236ed8ce..a7513e838 100644 --- a/examples/sk_agent.py +++ b/examples/sk_agent.py @@ -9,6 +9,7 @@ import asyncio from semantic_kernel.core_skills import FileIOSkill, MathSkill, TextSkill, TimeSkill from semantic_kernel.planning import SequentialPlanner + # from semantic_kernel.planning import SequentialPlanner from semantic_kernel.planning.action_planner.action_planner import ActionPlanner diff --git a/examples/use_off_the_shelf_agent.py b/examples/use_off_the_shelf_agent.py index 0debcf780..2e10068bd 100644 --- a/examples/use_off_the_shelf_agent.py +++ b/examples/use_off_the_shelf_agent.py @@ -5,9 +5,8 @@ Author: garylin2099 ''' import asyncio -from metagpt.logs import logger from metagpt.roles.product_manager import ProductManager - +from metagpt.logs import logger async def main(): msg = "Write a PRD for a snake game" @@ -15,6 +14,5 @@ async def main(): result = await role.run(msg) logger.info(result.content[:100]) - if __name__ == '__main__': asyncio.run(main()) diff --git a/examples/write_tutorial.py b/examples/write_tutorial.py index 73a9c71b7..71ece5527 100644 --- a/examples/write_tutorial.py +++ b/examples/write_tutorial.py @@ -18,3 +18,4 @@ async def main(): if __name__ == '__main__': asyncio.run(main()) + diff --git a/metagpt/_compat.py b/metagpt/_compat.py index 30abcde2f..c442bd7de 100644 --- a/metagpt/_compat.py +++ b/metagpt/_compat.py @@ -8,14 +8,12 @@ if sys.implementation.name == "cpython" and platform.system() == "Windows": if sys.version_info[:2] == (3, 9): from asyncio.proactor_events import _ProactorBasePipeTransport - # https://github.com/python/cpython/pull/92842 def pacth_del(self, _warn=warnings.warn): if self._sock is not None: _warn(f"unclosed transport {self!r}", ResourceWarning, source=self) self._sock.close() - _ProactorBasePipeTransport.__del__ = pacth_del if sys.version_info >= (3, 9, 0): diff --git a/metagpt/actions/action.py b/metagpt/actions/action.py index 0ae7b148b..790295d55 100644 --- a/metagpt/actions/action.py +++ b/metagpt/actions/action.py @@ -51,12 +51,12 @@ class Action(ABC): @retry(stop=stop_after_attempt(3), wait=wait_fixed(1)) async def _aask_v1( - self, - prompt: str, - output_class_name: str, - output_data_mapping: dict, - system_msgs: Optional[list[str]] = None, - format="markdown", # compatible to original format + self, + prompt: str, + output_class_name: str, + output_data_mapping: dict, + system_msgs: Optional[list[str]] = None, + format="markdown", # compatible to original format ) -> ActionOutput: """Append default prefix""" if not system_msgs: diff --git a/metagpt/actions/action_output.py b/metagpt/actions/action_output.py index c0b88dcf9..ea7f4fb80 100644 --- a/metagpt/actions/action_output.py +++ b/metagpt/actions/action_output.py @@ -40,3 +40,4 @@ class ActionOutput: new_class.__validator_check_name = classmethod(check_name) new_class.__root_validator_check_missing_fields = classmethod(check_missing_fields) return new_class + \ No newline at end of file diff --git a/metagpt/actions/add_requirement.py b/metagpt/actions/add_requirement.py index 16e14b3a4..7dc09d062 100644 --- a/metagpt/actions/add_requirement.py +++ b/metagpt/actions/add_requirement.py @@ -10,6 +10,5 @@ from metagpt.actions import Action class BossRequirement(Action): """Boss Requirement without any implementation details""" - async def run(self, *args, **kwargs): raise NotImplementedError diff --git a/metagpt/actions/clone_function.py b/metagpt/actions/clone_function.py index 7529a60c7..cf7d22f04 100644 --- a/metagpt/actions/clone_function.py +++ b/metagpt/actions/clone_function.py @@ -1,5 +1,5 @@ -import traceback from pathlib import Path +import traceback from metagpt.actions.write_code import WriteCode from metagpt.logs import logger diff --git a/metagpt/actions/debug_error.py b/metagpt/actions/debug_error.py index 304b1bc3e..d69a22dba 100644 --- a/metagpt/actions/debug_error.py +++ b/metagpt/actions/debug_error.py @@ -7,8 +7,8 @@ """ import re -from metagpt.actions.action import Action from metagpt.logs import logger +from metagpt.actions.action import Action from metagpt.utils.common import CodeParser PROMPT_TEMPLATE = """ @@ -24,8 +24,6 @@ The message is as follows: Now you should start rewriting the code: ## file name of the code to rewrite: Write code with triple quoto. Do your best to implement THIS IN ONLY ONE FILE. """ - - class DebugError(Action): def __init__(self, name="DebugError", context=None, llm=None): super().__init__(name, context, llm) @@ -35,17 +33,17 @@ class DebugError(Action): # f"\n\n{error}\n\nPlease try to fix the error in this code." # fixed_code = await self._aask(prompt) # return fixed_code - + async def run(self, context): if "PASS" in context: return "", "the original code works fine, no need to debug" - + file_name = re.search("## File To Rewrite:\s*(.+\\.py)", context).group(1) logger.info(f"Debug and rewrite {file_name}") prompt = PROMPT_TEMPLATE.format(context=context) - + rsp = await self._aask(prompt) code = CodeParser.parse_code(block="", text=rsp) diff --git a/metagpt/actions/design_api_review.py b/metagpt/actions/design_api_review.py index 687a33652..9bb822a62 100644 --- a/metagpt/actions/design_api_review.py +++ b/metagpt/actions/design_api_review.py @@ -19,3 +19,4 @@ class DesignReview(Action): api_review = await self._aask(prompt) return api_review + \ No newline at end of file diff --git a/metagpt/actions/design_filenames.py b/metagpt/actions/design_filenames.py index 6c3d8e803..29400e950 100644 --- a/metagpt/actions/design_filenames.py +++ b/metagpt/actions/design_filenames.py @@ -26,3 +26,4 @@ class DesignFilenames(Action): logger.debug(prompt) logger.debug(design_filenames) return design_filenames + \ No newline at end of file diff --git a/metagpt/actions/detail_mining.py b/metagpt/actions/detail_mining.py index ffae26f9f..e29d6911b 100644 --- a/metagpt/actions/detail_mining.py +++ b/metagpt/actions/detail_mining.py @@ -6,6 +6,7 @@ @File : detail_mining.py """ from metagpt.actions import Action, ActionOutput +from metagpt.logs import logger PROMPT_TEMPLATE = """ ##TOPIC @@ -42,7 +43,6 @@ OUTPUT_MAPPING = { class DetailMining(Action): """This class allows LLM to further mine noteworthy details based on specific "##TOPIC"(discussion topic) and "##RECORD" (discussion records), thereby deepening the discussion. """ - def __init__(self, name="", context=None, llm=None): super().__init__(name, context, llm) diff --git a/metagpt/actions/prepare_interview.py b/metagpt/actions/prepare_interview.py index cbaa1d56b..5db3a9f37 100644 --- a/metagpt/actions/prepare_interview.py +++ b/metagpt/actions/prepare_interview.py @@ -27,7 +27,6 @@ Requirement: Provide a list of questions for the interviewer to ask the intervie Attention: Provide as markdown block as the format above, at least 10 questions. """ - # prepare for a interview @@ -39,3 +38,4 @@ class PrepareInterview(Action): prompt = PROMPT_TEMPLATE.format(context=context) question_list = await self._aask_v1(prompt) return question_list + diff --git a/metagpt/actions/research.py b/metagpt/actions/research.py index 8a5778230..49a981e86 100644 --- a/metagpt/actions/research.py +++ b/metagpt/actions/research.py @@ -3,6 +3,7 @@ from __future__ import annotations import asyncio +import json from typing import Callable from pydantic import parse_obj_as @@ -59,6 +60,7 @@ a comprehensive summary of the text. {content} ''' + CONDUCT_RESEARCH_PROMPT = '''### Reference Information {content} @@ -76,13 +78,12 @@ above. The report must meet the following requirements: class CollectLinks(Action): """Action class to collect links from a search engine.""" - def __init__( - self, - name: str = "", - *args, - rank_func: Callable[[list[str]], None] | None = None, - **kwargs, + self, + name: str = "", + *args, + rank_func: Callable[[list[str]], None] | None = None, + **kwargs, ): super().__init__(name, *args, **kwargs) self.desc = "Collect links from a search engine." @@ -90,11 +91,11 @@ class CollectLinks(Action): self.rank_func = rank_func async def run( - self, - topic: str, - decomposition_nums: int = 4, - url_per_query: int = 4, - system_text: str | None = None, + self, + topic: str, + decomposition_nums: int = 4, + url_per_query: int = 4, + system_text: str | None = None, ) -> dict[str, list[str]]: """Run the action to collect links. @@ -119,16 +120,13 @@ class CollectLinks(Action): def gen_msg(): while True: - search_results = "\n".join( - f"#### Keyword: {i}\n Search Result: {j}\n" for (i, j) in zip(keywords, results)) - prompt = SUMMARIZE_SEARCH_PROMPT.format(decomposition_nums=decomposition_nums, - search_results=search_results) + search_results = "\n".join(f"#### Keyword: {i}\n Search Result: {j}\n" for (i, j) in zip(keywords, results)) + prompt = SUMMARIZE_SEARCH_PROMPT.format(decomposition_nums=decomposition_nums, search_results=search_results) yield prompt remove = max(results, key=len) remove.pop() if len(remove) == 0: break - prompt = reduce_message_length(gen_msg(), self.llm.model, system_text, CONFIG.max_tokens_rsp) logger.debug(prompt) queries = await self._aask(prompt, [system_text]) @@ -174,12 +172,11 @@ class CollectLinks(Action): class WebBrowseAndSummarize(Action): """Action class to explore the web and provide summaries of articles and webpages.""" - def __init__( - self, - *args, - browse_func: Callable[[list[str]], None] | None = None, - **kwargs, + self, + *args, + browse_func: Callable[[list[str]], None] | None = None, + **kwargs, ): super().__init__(*args, **kwargs) if CONFIG.model_for_researcher_summary: @@ -191,11 +188,11 @@ class WebBrowseAndSummarize(Action): self.desc = "Explore the web and provide summaries of articles and webpages." async def run( - self, - url: str, - *urls: str, - query: str, - system_text: str = RESEARCH_BASE_SYSTEM, + self, + url: str, + *urls: str, + query: str, + system_text: str = RESEARCH_BASE_SYSTEM, ) -> dict[str, str]: """Run the action to browse the web and provide summaries. @@ -217,8 +214,7 @@ class WebBrowseAndSummarize(Action): for u, content in zip([url, *urls], contents): content = content.inner_text chunk_summaries = [] - for prompt in generate_prompt_chunk(content, prompt_template, self.llm.model, system_text, - CONFIG.max_tokens_rsp): + for prompt in generate_prompt_chunk(content, prompt_template, self.llm.model, system_text, CONFIG.max_tokens_rsp): logger.debug(prompt) summary = await self._aask(prompt, [system_text]) if summary == "Not relevant.": @@ -242,17 +238,16 @@ class WebBrowseAndSummarize(Action): class ConductResearch(Action): """Action class to conduct research and generate a research report.""" - def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) if CONFIG.model_for_researcher_report: self.llm.model = CONFIG.model_for_researcher_report async def run( - self, - topic: str, - content: str, - system_text: str = RESEARCH_BASE_SYSTEM, + self, + topic: str, + content: str, + system_text: str = RESEARCH_BASE_SYSTEM, ) -> str: """Run the action to conduct research and generate a research report. diff --git a/metagpt/actions/run_code.py b/metagpt/actions/run_code.py index 52f95d3bf..f69d2cd1a 100644 --- a/metagpt/actions/run_code.py +++ b/metagpt/actions/run_code.py @@ -99,7 +99,7 @@ class RunCode(Action): return stdout.decode("utf-8"), stderr.decode("utf-8") async def run( - self, code, mode="script", code_file_name="", test_code="", test_file_name="", command=[], **kwargs + self, code, mode="script", code_file_name="", test_code="", test_file_name="", command=[], **kwargs ) -> str: logger.info(f"Running {' '.join(command)}") if mode == "script": diff --git a/metagpt/actions/search_and_summarize.py b/metagpt/actions/search_and_summarize.py index a13db28d2..069f2a977 100644 --- a/metagpt/actions/search_and_summarize.py +++ b/metagpt/actions/search_and_summarize.py @@ -54,6 +54,7 @@ SEARCH_AND_SUMMARIZE_PROMPT = """ """ + SEARCH_AND_SUMMARIZE_SALES_SYSTEM = """## Requirements 1. Please summarize the latest dialogue based on the reference information (secondary) and dialogue history (primary). Do not include text that is irrelevant to the conversation. - The context is for reference only. If it is irrelevant to the user's search request history, please reduce its reference and usage. @@ -139,3 +140,4 @@ class SearchAndSummarize(Action): logger.debug(prompt) logger.debug(result) return result + \ No newline at end of file diff --git a/metagpt/actions/write_code.py b/metagpt/actions/write_code.py index 8e26dd9be..c000805c5 100644 --- a/metagpt/actions/write_code.py +++ b/metagpt/actions/write_code.py @@ -5,14 +5,13 @@ @Author : alexanderwu @File : write_code.py """ -from tenacity import retry, stop_after_attempt, wait_fixed - from metagpt.actions import WriteDesign from metagpt.actions.action import Action from metagpt.const import WORKSPACE_ROOT from metagpt.logs import logger from metagpt.schema import Message from metagpt.utils.common import CodeParser +from tenacity import retry, stop_after_attempt, wait_fixed PROMPT_TEMPLATE = """ NOTICE @@ -80,3 +79,4 @@ class WriteCode(Action): # code_rsp = await self._aask_v1(prompt, "code_rsp", OUTPUT_MAPPING) # self._save(context, filename, code) return code + \ No newline at end of file diff --git a/metagpt/actions/write_code_review.py b/metagpt/actions/write_code_review.py index 6211d5e1e..4ff4d6cf6 100644 --- a/metagpt/actions/write_code_review.py +++ b/metagpt/actions/write_code_review.py @@ -6,12 +6,11 @@ @File : write_code_review.py """ -from tenacity import retry, stop_after_attempt, wait_fixed - from metagpt.actions.action import Action from metagpt.logs import logger from metagpt.schema import Message from metagpt.utils.common import CodeParser +from tenacity import retry, stop_after_attempt, wait_fixed PROMPT_TEMPLATE = """ NOTICE @@ -80,3 +79,4 @@ class WriteCodeReview(Action): # code_rsp = await self._aask_v1(prompt, "code_rsp", OUTPUT_MAPPING) # self._save(context, filename, code) return code + \ No newline at end of file diff --git a/metagpt/actions/write_docstring.py b/metagpt/actions/write_docstring.py index a9c90ce9b..5c7815793 100644 --- a/metagpt/actions/write_docstring.py +++ b/metagpt/actions/write_docstring.py @@ -162,9 +162,9 @@ class WriteDocstring(Action): self.desc = "Write docstring for code." async def run( - self, code: str, - system_text: str = PYTHON_DOCSTRING_SYSTEM, - style: Literal["google", "numpy", "sphinx"] = "google", + self, code: str, + system_text: str = PYTHON_DOCSTRING_SYSTEM, + style: Literal["google", "numpy", "sphinx"] = "google", ) -> str: """Writes docstrings for the given code and system text in the specified style. @@ -202,7 +202,6 @@ def _simplify_python_code(code: str) -> None: if __name__ == "__main__": import fire - async def run(filename: str, overwrite: bool = False, style: Literal["google", "numpy", "sphinx"] = "google"): with open(filename) as f: code = f.read() @@ -212,5 +211,4 @@ if __name__ == "__main__": f.write(code) return code - fire.Fire(run) diff --git a/metagpt/actions/write_prd_review.py b/metagpt/actions/write_prd_review.py index 5ff9624c5..5c922d3bc 100644 --- a/metagpt/actions/write_prd_review.py +++ b/metagpt/actions/write_prd_review.py @@ -25,3 +25,4 @@ class WritePRDReview(Action): prompt = self.prd_review_prompt_template.format(prd=self.prd) review = await self._aask(prompt) return review + \ No newline at end of file diff --git a/metagpt/actions/write_tutorial.py b/metagpt/actions/write_tutorial.py index 7bf844e43..23e3560e8 100644 --- a/metagpt/actions/write_tutorial.py +++ b/metagpt/actions/write_tutorial.py @@ -65,3 +65,4 @@ class WriteContent(Action): """ prompt = CONTENT_PROMPT.format(topic=topic, language=self.language, directory=self.directory) return await self._aask(prompt=prompt) + diff --git a/metagpt/const.py b/metagpt/const.py index 457eba698..b8b08628e 100644 --- a/metagpt/const.py +++ b/metagpt/const.py @@ -13,9 +13,9 @@ def get_project_root(): current_path = Path.cwd() while True: if ( - (current_path / ".git").exists() - or (current_path / ".project_root").exists() - or (current_path / ".gitignore").exists() + (current_path / ".git").exists() + or (current_path / ".project_root").exists() + or (current_path / ".gitignore").exists() ): return current_path parent_path = current_path.parent diff --git a/metagpt/document_store/base_store.py b/metagpt/document_store/base_store.py index 3969ce289..5d7015e8b 100644 --- a/metagpt/document_store/base_store.py +++ b/metagpt/document_store/base_store.py @@ -53,3 +53,4 @@ class LocalStore(BaseStore, ABC): @abstractmethod def _write(self, docs, metadatas): raise NotImplementedError + \ No newline at end of file diff --git a/metagpt/document_store/chromadb_store.py b/metagpt/document_store/chromadb_store.py index 6ec097592..d2ecc05f6 100644 --- a/metagpt/document_store/chromadb_store.py +++ b/metagpt/document_store/chromadb_store.py @@ -10,7 +10,6 @@ import chromadb class ChromaStore: """If inherited from BaseStore, or importing other modules from metagpt, a Python exception occurs, which is strange.""" - def __init__(self, name): client = chromadb.Client() collection = client.create_collection(name) diff --git a/metagpt/document_store/document.py b/metagpt/document_store/document.py index 85e416c65..e4b9473c7 100644 --- a/metagpt/document_store/document.py +++ b/metagpt/document_store/document.py @@ -79,3 +79,4 @@ class Document: return self._get_docs_and_metadatas_by_langchain() else: raise NotImplementedError + \ No newline at end of file diff --git a/metagpt/document_store/qdrant_store.py b/metagpt/document_store/qdrant_store.py index 80016e4ad..98b82cf87 100644 --- a/metagpt/document_store/qdrant_store.py +++ b/metagpt/document_store/qdrant_store.py @@ -38,11 +38,11 @@ class QdrantStore(BaseStore): raise Exception("please check QdrantConnection.") def create_collection( - self, - collection_name: str, - vectors_config: VectorParams, - force_recreate=False, - **kwargs, + self, + collection_name: str, + vectors_config: VectorParams, + force_recreate=False, + **kwargs, ): """ create a collection @@ -97,12 +97,12 @@ class QdrantStore(BaseStore): ) def search( - self, - collection_name: str, - query: List[float], - query_filter: Filter = None, - k=10, - return_vector=False, + self, + collection_name: str, + query: List[float], + query_filter: Filter = None, + k=10, + return_vector=False, ): """ vector search diff --git a/metagpt/inspect_module.py b/metagpt/inspect_module.py index fcdd4f0b7..a89ac1c5e 100644 --- a/metagpt/inspect_module.py +++ b/metagpt/inspect_module.py @@ -25,4 +25,4 @@ def print_classes_and_functions(module): if __name__ == '__main__': - print_classes_and_functions(metagpt) + print_classes_and_functions(metagpt) \ No newline at end of file diff --git a/metagpt/llm.py b/metagpt/llm.py index 6a9a9132f..e6f815950 100644 --- a/metagpt/llm.py +++ b/metagpt/llm.py @@ -12,7 +12,6 @@ from metagpt.provider.openai_api import OpenAIGPTAPI as LLM DEFAULT_LLM = LLM() CLAUDE_LLM = Claude() - async def ai_func(prompt): """使用LLM进行QA QA with LLMs diff --git a/metagpt/logs.py b/metagpt/logs.py index 0adee23ff..b2052e9b8 100644 --- a/metagpt/logs.py +++ b/metagpt/logs.py @@ -12,7 +12,6 @@ from loguru import logger as _logger from metagpt.const import PROJECT_ROOT - def define_log_level(print_level="INFO", logfile_level="DEBUG"): """调整日志级别到level之上 Adjust the log level to above level @@ -22,5 +21,4 @@ def define_log_level(print_level="INFO", logfile_level="DEBUG"): _logger.add(PROJECT_ROOT / 'logs/log.txt', level=logfile_level) return _logger - logger = define_log_level() diff --git a/metagpt/manager.py b/metagpt/manager.py index e6bf77c8b..9d238c621 100644 --- a/metagpt/manager.py +++ b/metagpt/manager.py @@ -51,7 +51,7 @@ class Manager: # chosen_role_name = self.llm.ask(self.prompt_template.format(context)) # FIXME: 现在通过简单的字典决定流向,但之后还是应该有思考过程 - # The direction of flow is now determined by a simple dictionary, but there should still be a thought process afterwards + #The direction of flow is now determined by a simple dictionary, but there should still be a thought process afterwards next_role_profile = self.role_directions[message.role] # logger.debug(f"{next_role_profile}") for _, role in roles.items(): diff --git a/metagpt/memory/__init__.py b/metagpt/memory/__init__.py index e65ee7642..710930626 100644 --- a/metagpt/memory/__init__.py +++ b/metagpt/memory/__init__.py @@ -6,8 +6,9 @@ @File : __init__.py """ -from metagpt.memory.longterm_memory import LongTermMemory from metagpt.memory.memory import Memory +from metagpt.memory.longterm_memory import LongTermMemory + __all__ = [ "Memory", diff --git a/metagpt/memory/longterm_memory.py b/metagpt/memory/longterm_memory.py index e0b8e68c1..f8abea5f3 100644 --- a/metagpt/memory/longterm_memory.py +++ b/metagpt/memory/longterm_memory.py @@ -68,3 +68,4 @@ class LongTermMemory(Memory): def clear(self): super(LongTermMemory, self).clear() self.memory_storage.clean() + \ No newline at end of file diff --git a/metagpt/memory/memory.py b/metagpt/memory/memory.py index 282f5fe33..c818fa707 100644 --- a/metagpt/memory/memory.py +++ b/metagpt/memory/memory.py @@ -85,3 +85,4 @@ class Memory: continue rsp += self.index[action] return rsp + \ No newline at end of file diff --git a/metagpt/memory/memory_storage.py b/metagpt/memory/memory_storage.py index 5cd4cac47..302d96aa7 100644 --- a/metagpt/memory/memory_storage.py +++ b/metagpt/memory/memory_storage.py @@ -2,16 +2,16 @@ # -*- coding: utf-8 -*- # @Desc : the implement of memory storage -from pathlib import Path from typing import List +from pathlib import Path from langchain.vectorstores.faiss import FAISS from metagpt.const import DATA_PATH, MEM_TTL -from metagpt.document_store.faiss_store import FaissStore from metagpt.logs import logger from metagpt.schema import Message from metagpt.utils.serialize import serialize_message, deserialize_message +from metagpt.document_store.faiss_store import FaissStore class MemoryStorage(FaissStore): @@ -104,3 +104,4 @@ class MemoryStorage(FaissStore): self.store = None self._initialized = False + \ No newline at end of file diff --git a/metagpt/prompts/decompose.py b/metagpt/prompts/decompose.py index 4ede8b138..ab0c360d3 100644 --- a/metagpt/prompts/decompose.py +++ b/metagpt/prompts/decompose.py @@ -16,6 +16,7 @@ The requirements of the tree-structure plan are: 4. The sub-goals at the bottom level should be basic actions so that I can easily execute them in the game. """ + DECOMPOSE_USER = """USER: The goal is to {goal description}. Generate the plan according to the requirements. """ diff --git a/metagpt/prompts/generate_skill.md b/metagpt/prompts/generate_skill.md index 1d0a68688..74948cd15 100644 --- a/metagpt/prompts/generate_skill.md +++ b/metagpt/prompts/generate_skill.md @@ -66,10 +66,9 @@ # PRD return prd ``` + The main class/function is WritePRD. Then you should write: -This class is designed to generate a PRD based on input requirements. Notably, there's a template prompt with sections -for product, function, goals, user scenarios, requirements, constraints, performance metrics. This template gets filled -with input requirements and then queries a big language model to produce the detailed PRD. \ No newline at end of file +This class is designed to generate a PRD based on input requirements. Notably, there's a template prompt with sections for product, function, goals, user scenarios, requirements, constraints, performance metrics. This template gets filled with input requirements and then queries a big language model to produce the detailed PRD. \ No newline at end of file diff --git a/metagpt/prompts/sales.py b/metagpt/prompts/sales.py index 08e7b28f8..a44aacafe 100644 --- a/metagpt/prompts/sales.py +++ b/metagpt/prompts/sales.py @@ -6,6 +6,7 @@ @File : sales.py """ + SALES_ASSISTANT = """You are a sales assistant helping your sales agent to determine which stage of a sales conversation should the agent move to, or stay at. Following '===' is the conversation history. Use this conversation history to make your decision. @@ -28,6 +29,7 @@ The answer needs to be one number only, no words. If there is no conversation history, output 1. Do not answer anything else nor add anything to you answer.""" + SALES = """Never forget your name is {salesperson_name}. You work as a {salesperson_role}. You work at company named {company_name}. {company_name}'s business is the following: {company_business} Company values are the following. {company_values} @@ -52,11 +54,10 @@ Conversation history: {salesperson_name}: """ -conversation_stages = { - '1': "Introduction: Start the conversation by introducing yourself and your company. Be polite and respectful while keeping the tone of the conversation professional. Your greeting should be welcoming. Always clarify in your greeting the reason why you are contacting the prospect.", - '2': "Qualification: Qualify the prospect by confirming if they are the right person to talk to regarding your product/service. Ensure that they have the authority to make purchasing decisions.", - '3': "Value proposition: Briefly explain how your product/service can benefit the prospect. Focus on the unique selling points and value proposition of your product/service that sets it apart from competitors.", - '4': "Needs analysis: Ask open-ended questions to uncover the prospect's needs and pain points. Listen carefully to their responses and take notes.", - '5': "Solution presentation: Based on the prospect's needs, present your product/service as the solution that can address their pain points.", - '6': "Objection handling: Address any objections that the prospect may have regarding your product/service. Be prepared to provide evidence or testimonials to support your claims.", - '7': "Close: Ask for the sale by proposing a next step. This could be a demo, a trial or a meeting with decision-makers. Ensure to summarize what has been discussed and reiterate the benefits."} +conversation_stages = {'1' : "Introduction: Start the conversation by introducing yourself and your company. Be polite and respectful while keeping the tone of the conversation professional. Your greeting should be welcoming. Always clarify in your greeting the reason why you are contacting the prospect.", +'2': "Qualification: Qualify the prospect by confirming if they are the right person to talk to regarding your product/service. Ensure that they have the authority to make purchasing decisions.", +'3': "Value proposition: Briefly explain how your product/service can benefit the prospect. Focus on the unique selling points and value proposition of your product/service that sets it apart from competitors.", +'4': "Needs analysis: Ask open-ended questions to uncover the prospect's needs and pain points. Listen carefully to their responses and take notes.", +'5': "Solution presentation: Based on the prospect's needs, present your product/service as the solution that can address their pain points.", +'6': "Objection handling: Address any objections that the prospect may have regarding your product/service. Be prepared to provide evidence or testimonials to support your claims.", +'7': "Close: Ask for the sale by proposing a next step. This could be a demo, a trial or a meeting with decision-makers. Ensure to summarize what has been discussed and reiterate the benefits."} diff --git a/metagpt/prompts/summarize.py b/metagpt/prompts/summarize.py index bd5d69558..42d34b8a5 100644 --- a/metagpt/prompts/summarize.py +++ b/metagpt/prompts/summarize.py @@ -20,6 +20,7 @@ summary. Pick a suitable emoji for every bullet point. Your response should be i a YouTube video, use the following text: {{CONTENT}}. """ + # GCP-VertexAI-Text Summarization (SUMMARIZE_PROMPT_2-5 are from this source) # https://github.com/GoogleCloudPlatform/generative-ai/blob/main/language/examples/prompt-design/text_summarization.ipynb # Long documents require a map-reduce process, see the following notebook @@ -38,6 +39,7 @@ Summary: """ + SUMMARIZE_PROMPT_3 = """ Provide a TL;DR for the following article: @@ -51,6 +53,7 @@ Instead of computing on the individual qubits themselves, we will then compute o TL;DR: """ + SUMMARIZE_PROMPT_4 = """ Provide a very short summary in four bullet points for the following article: @@ -65,6 +68,7 @@ Bulletpoints: """ + SUMMARIZE_PROMPT_5 = """ Please generate a summary of the following conversation and at the end summarize the to-do's for the support Agent: diff --git a/metagpt/prompts/tutorial_assistant.py b/metagpt/prompts/tutorial_assistant.py index fe31e5f2a..d690aad83 100644 --- a/metagpt/prompts/tutorial_assistant.py +++ b/metagpt/prompts/tutorial_assistant.py @@ -36,4 +36,4 @@ Strictly limit output according to the following requirements: 3. The output must be strictly in the specified language, {language}. 4. Do not have redundant output, including concluding remarks. 5. Strict requirement not to output the topic "{topic}". -""" +""" \ No newline at end of file diff --git a/metagpt/prompts/use_lib_sop.py b/metagpt/prompts/use_lib_sop.py index edebbe9c7..b43ed5125 100644 --- a/metagpt/prompts/use_lib_sop.py +++ b/metagpt/prompts/use_lib_sop.py @@ -73,6 +73,7 @@ The action_list can contain arbitrary number of actions. The args of each action 6. I will execute your code step by step and give you feedback. If some action fails, I will stop at that action and will not execute its following actions. The feedback will include error messages about the failed action. At that time, you should replan and write the new code just starting from that failed action. """ + SOP_USER = """USER: My current state: - inventory: {inventory} diff --git a/metagpt/provider/__init__.py b/metagpt/provider/__init__.py index 8c64cd4e1..56dc19b4b 100644 --- a/metagpt/provider/__init__.py +++ b/metagpt/provider/__init__.py @@ -8,4 +8,5 @@ from metagpt.provider.openai_api import OpenAIGPTAPI + __all__ = ["OpenAIGPTAPI"] diff --git a/metagpt/provider/anthropic_api.py b/metagpt/provider/anthropic_api.py index 03802a716..7293e2cde 100644 --- a/metagpt/provider/anthropic_api.py +++ b/metagpt/provider/anthropic_api.py @@ -32,3 +32,4 @@ class Claude2: max_tokens_to_sample=1000, ) return res.completion + \ No newline at end of file diff --git a/metagpt/provider/base_chatbot.py b/metagpt/provider/base_chatbot.py index a960d1c05..abdf423f4 100644 --- a/metagpt/provider/base_chatbot.py +++ b/metagpt/provider/base_chatbot.py @@ -25,3 +25,4 @@ class BaseChatbot(ABC): @abstractmethod def ask_code(self, msgs: list) -> str: """Ask GPT multiple questions and get a piece of code""" + \ No newline at end of file diff --git a/metagpt/provider/base_gpt_api.py b/metagpt/provider/base_gpt_api.py index f39e708eb..de61167b9 100644 --- a/metagpt/provider/base_gpt_api.py +++ b/metagpt/provider/base_gpt_api.py @@ -115,3 +115,4 @@ class BaseGPTAPI(BaseChatbot): def messages_to_dict(self, messages): """objects to [{"role": "user", "content": msg}] etc.""" return [i.to_dict() for i in messages] + \ No newline at end of file diff --git a/metagpt/provider/openai_api.py b/metagpt/provider/openai_api.py index 6b2c2941d..7e865f288 100644 --- a/metagpt/provider/openai_api.py +++ b/metagpt/provider/openai_api.py @@ -41,7 +41,7 @@ class RateLimiter: self.rpm = rpm def split_batches(self, batch): - return [batch[i: i + self.rpm] for i in range(0, len(batch), self.rpm)] + return [batch[i : i + self.rpm] for i in range(0, len(batch), self.rpm)] async def wait_if_needed(self, num_requests): current_time = time.time() @@ -83,9 +83,8 @@ class CostManager(metaclass=Singleton): self.total_prompt_tokens += prompt_tokens self.total_completion_tokens += completion_tokens cost = ( - prompt_tokens * TOKEN_COSTS[model]["prompt"] + completion_tokens * TOKEN_COSTS[model][ - "completion"] - ) / 1000 + prompt_tokens * TOKEN_COSTS[model]["prompt"] + completion_tokens * TOKEN_COSTS[model]["completion"] + ) / 1000 self.total_cost += cost logger.info( f"Total running cost: ${self.total_cost:.3f} | Max budget: ${CONFIG.max_budget:.3f} | " diff --git a/metagpt/roles/__init__.py b/metagpt/roles/__init__.py index 34ec144a1..1768b786c 100644 --- a/metagpt/roles/__init__.py +++ b/metagpt/roles/__init__.py @@ -6,15 +6,16 @@ @File : __init__.py """ -from metagpt.roles.architect import Architect -from metagpt.roles.customer_service import CustomerService -from metagpt.roles.engineer import Engineer -from metagpt.roles.product_manager import ProductManager -from metagpt.roles.project_manager import ProjectManager -from metagpt.roles.qa_engineer import QaEngineer from metagpt.roles.role import Role -from metagpt.roles.sales import Sales +from metagpt.roles.architect import Architect +from metagpt.roles.project_manager import ProjectManager +from metagpt.roles.product_manager import ProductManager +from metagpt.roles.engineer import Engineer +from metagpt.roles.qa_engineer import QaEngineer from metagpt.roles.seacher import Searcher +from metagpt.roles.sales import Sales +from metagpt.roles.customer_service import CustomerService + __all__ = [ "Role", diff --git a/metagpt/roles/architect.py b/metagpt/roles/architect.py index e86bd4eb6..15d5fe5b1 100644 --- a/metagpt/roles/architect.py +++ b/metagpt/roles/architect.py @@ -23,11 +23,11 @@ class Architect(Role): """ def __init__( - self, - name: str = "Bob", - profile: str = "Architect", - goal: str = "Design a concise, usable, complete python system", - constraints: str = "Try to specify good open source tools as much as possible", + self, + name: str = "Bob", + profile: str = "Architect", + goal: str = "Design a concise, usable, complete python system", + constraints: str = "Try to specify good open source tools as much as possible", ) -> None: """Initializes the Architect with given attributes.""" super().__init__(name, profile, goal, constraints) diff --git a/metagpt/roles/customer_service.py b/metagpt/roles/customer_service.py index 4aae7cb03..4547f8190 100644 --- a/metagpt/roles/customer_service.py +++ b/metagpt/roles/customer_service.py @@ -32,3 +32,4 @@ class CustomerService(Sales): store=None ): super().__init__(name, profile, desc=desc, store=store) + \ No newline at end of file diff --git a/metagpt/roles/engineer.py b/metagpt/roles/engineer.py index d1f11475f..6d65575a8 100644 --- a/metagpt/roles/engineer.py +++ b/metagpt/roles/engineer.py @@ -61,13 +61,13 @@ class Engineer(Role): """ def __init__( - self, - name: str = "Alex", - profile: str = "Engineer", - goal: str = "Write elegant, readable, extensible, efficient code", - constraints: str = "The code should conform to standards like PEP8 and be modular and maintainable", - n_borg: int = 1, - use_code_review: bool = False, + self, + name: str = "Alex", + profile: str = "Engineer", + goal: str = "Write elegant, readable, extensible, efficient code", + constraints: str = "The code should conform to standards like PEP8 and be modular and maintainable", + n_borg: int = 1, + use_code_review: bool = False, ) -> None: """Initializes the Engineer role with given attributes.""" super().__init__(name, profile, goal, constraints) diff --git a/metagpt/roles/product_manager.py b/metagpt/roles/product_manager.py index dbf3b5f0f..a58ea5385 100644 --- a/metagpt/roles/product_manager.py +++ b/metagpt/roles/product_manager.py @@ -21,11 +21,11 @@ class ProductManager(Role): """ def __init__( - self, - name: str = "Alice", - profile: str = "Product Manager", - goal: str = "Efficiently create a successful product", - constraints: str = "", + self, + name: str = "Alice", + profile: str = "Product Manager", + goal: str = "Efficiently create a successful product", + constraints: str = "", ) -> None: """ Initializes the ProductManager role with given attributes. diff --git a/metagpt/roles/project_manager.py b/metagpt/roles/project_manager.py index 0706b982f..7e7c5699d 100644 --- a/metagpt/roles/project_manager.py +++ b/metagpt/roles/project_manager.py @@ -22,11 +22,11 @@ class ProjectManager(Role): """ def __init__( - self, - name: str = "Eve", - profile: str = "Project Manager", - goal: str = "Improve team efficiency and deliver with quality and quantity", - constraints: str = "", + self, + name: str = "Eve", + profile: str = "Project Manager", + goal: str = "Improve team efficiency and deliver with quality and quantity", + constraints: str = "", ) -> None: """ Initializes the ProjectManager role with given attributes. diff --git a/metagpt/roles/prompt.py b/metagpt/roles/prompt.py index fdfe45c02..c22e0226b 100644 --- a/metagpt/roles/prompt.py +++ b/metagpt/roles/prompt.py @@ -23,7 +23,6 @@ SUFFIX = """Let's begin! Question: {input} Thoughts: {agent_scratchpad}""" - class PromptString(Enum): REFLECTION_QUESTIONS = "Here are some statements:\n{memory_descriptions}\n\nBased solely on the information above, what are the 3 most prominent high-level questions we can answer about the topic in the statements?\n\n{format_instructions}" diff --git a/metagpt/roles/qa_engineer.py b/metagpt/roles/qa_engineer.py index 97a4d3c13..a763c2ce8 100644 --- a/metagpt/roles/qa_engineer.py +++ b/metagpt/roles/qa_engineer.py @@ -26,12 +26,12 @@ from metagpt.utils.special_tokens import FILENAME_CODE_SEP, MSG_SEP class QaEngineer(Role): def __init__( - self, - name="Edward", - profile="QaEngineer", - goal="Write comprehensive and robust tests to ensure codes will work as expected without bugs", - constraints="The test code you write should conform to code standard like PEP8, be modular, easy to read and maintain", - test_round_allowed=5, + self, + name="Edward", + profile="QaEngineer", + goal="Write comprehensive and robust tests to ensure codes will work as expected without bugs", + constraints="The test code you write should conform to code standard like PEP8, be modular, easy to read and maintain", + test_round_allowed=5, ): super().__init__(name, profile, goal, constraints) self._init_actions( diff --git a/metagpt/roles/researcher.py b/metagpt/roles/researcher.py index cdda49075..acb46c718 100644 --- a/metagpt/roles/researcher.py +++ b/metagpt/roles/researcher.py @@ -21,13 +21,13 @@ class Report(BaseModel): class Researcher(Role): def __init__( - self, - name: str = "David", - profile: str = "Researcher", - goal: str = "Gather information and conduct research", - constraints: str = "Ensure accuracy and relevance of information", - language: str = "en-us", - **kwargs, + self, + name: str = "David", + profile: str = "Researcher", + goal: str = "Gather information and conduct research", + constraints: str = "Ensure accuracy and relevance of information", + language: str = "en-us", + **kwargs, ): super().__init__(name, profile, goal, constraints, **kwargs) self._init_actions([CollectLinks(name), WebBrowseAndSummarize(name), ConductResearch(name)]) @@ -93,10 +93,8 @@ class Researcher(Role): if __name__ == "__main__": import fire - async def main(topic: str, language="en-us"): role = Researcher(topic, language=language) await role.run(topic) - fire.Fire(main) diff --git a/metagpt/roles/sales.py b/metagpt/roles/sales.py index 51b13f487..a45ad6f1b 100644 --- a/metagpt/roles/sales.py +++ b/metagpt/roles/sales.py @@ -32,3 +32,4 @@ class Sales(Role): else: action = SearchAndSummarize() self._init_actions([action]) + \ No newline at end of file diff --git a/metagpt/roles/seacher.py b/metagpt/roles/seacher.py index 1b786f830..0b6e089da 100644 --- a/metagpt/roles/seacher.py +++ b/metagpt/roles/seacher.py @@ -23,13 +23,13 @@ class Searcher(Role): constraints (str): Constraints or limitations for the searcher. engine (SearchEngineType): The type of search engine to use. """ - - def __init__(self, - name: str = 'Alice', - profile: str = 'Smart Assistant', + + def __init__(self, + name: str = 'Alice', + profile: str = 'Smart Assistant', goal: str = 'Provide search services for users', - constraints: str = 'Answer is rich and complete', - engine=SearchEngineType.SERPAPI_GOOGLE, + constraints: str = 'Answer is rich and complete', + engine=SearchEngineType.SERPAPI_GOOGLE, **kwargs) -> None: """ Initializes the Searcher role with given attributes. @@ -53,7 +53,7 @@ class Searcher(Role): """Performs the search action in a single process.""" logger.info(f"{self._setting}: ready to {self._rc.todo}") response = await self._rc.todo.run(self._rc.memory.get(k=0)) - + if isinstance(response, ActionOutput): msg = Message(content=response.content, instruct_content=response.instruct_content, role=self.profile, cause_by=type(self._rc.todo)) diff --git a/metagpt/roles/sk_agent.py b/metagpt/roles/sk_agent.py index 05723cc80..b27841d74 100644 --- a/metagpt/roles/sk_agent.py +++ b/metagpt/roles/sk_agent.py @@ -29,12 +29,12 @@ class SkAgent(Role): """ def __init__( - self, - name: str = "Sunshine", - profile: str = "sk_agent", - goal: str = "Execute task based on passed in task description", - constraints: str = "", - planner_cls=BasicPlanner, + self, + name: str = "Sunshine", + profile: str = "sk_agent", + goal: str = "Execute task based on passed in task description", + constraints: str = "", + planner_cls=BasicPlanner, ) -> None: """Initializes the Engineer role with given attributes.""" super().__init__(name, profile, goal, constraints) diff --git a/metagpt/roles/tutorial_assistant.py b/metagpt/roles/tutorial_assistant.py index 19327a6d4..9a7df4f4d 100644 --- a/metagpt/roles/tutorial_assistant.py +++ b/metagpt/roles/tutorial_assistant.py @@ -29,12 +29,12 @@ class TutorialAssistant(Role): """ def __init__( - self, - name: str = "Stitch", - profile: str = "Tutorial Assistant", - goal: str = "Generate tutorial documents", - constraints: str = "Strictly follow Markdown's syntax, with neat and standardized layout", - language: str = "Chinese", + self, + name: str = "Stitch", + profile: str = "Tutorial Assistant", + goal: str = "Generate tutorial documents", + constraints: str = "Strictly follow Markdown's syntax, with neat and standardized layout", + language: str = "Chinese", ): super().__init__(name, profile, goal, constraints) self._init_actions([WriteDirectory(language=language)]) diff --git a/metagpt/schema.py b/metagpt/schema.py index 7d91d87ec..bdca093c2 100644 --- a/metagpt/schema.py +++ b/metagpt/schema.py @@ -50,7 +50,6 @@ class UserMessage(Message): """便于支持OpenAI的消息 Facilitate support for OpenAI messages """ - def __init__(self, content: str): super().__init__(content, 'user') @@ -60,7 +59,6 @@ class SystemMessage(Message): """便于支持OpenAI的消息 Facilitate support for OpenAI messages """ - def __init__(self, content: str): super().__init__(content, 'system') @@ -70,7 +68,6 @@ class AIMessage(Message): """便于支持OpenAI的消息 Facilitate support for OpenAI messages """ - def __init__(self, content: str): super().__init__(content, 'assistant') diff --git a/metagpt/skills/WriterSkill/Brainstorm/config.json b/metagpt/skills/WriterSkill/Brainstorm/config.json index fa2cf3314..f50a354e7 100644 --- a/metagpt/skills/WriterSkill/Brainstorm/config.json +++ b/metagpt/skills/WriterSkill/Brainstorm/config.json @@ -8,9 +8,7 @@ "top_p": 1.0, "presence_penalty": 0.0, "frequency_penalty": 0.0, - "stop_sequences": [ - "##END##" - ] + "stop_sequences": ["##END##"] }, "input": { "parameters": [ diff --git a/metagpt/software_company.py b/metagpt/software_company.py index 8f173ebf3..b2bd18c58 100644 --- a/metagpt/software_company.py +++ b/metagpt/software_company.py @@ -59,3 +59,4 @@ class SoftwareCompany(BaseModel): self._check_balance() await self.environment.run() return self.environment.history + \ No newline at end of file diff --git a/metagpt/tools/__init__.py b/metagpt/tools/__init__.py index d5cef0e46..d98087e4b 100644 --- a/metagpt/tools/__init__.py +++ b/metagpt/tools/__init__.py @@ -6,6 +6,7 @@ @File : __init__.py """ + from enum import Enum diff --git a/metagpt/tools/code_interpreter.py b/metagpt/tools/code_interpreter.py index cb6230bab..97398ccfd 100644 --- a/metagpt/tools/code_interpreter.py +++ b/metagpt/tools/code_interpreter.py @@ -1,16 +1,16 @@ -import inspect import re -import textwrap -from pathlib import Path from typing import List, Callable +from pathlib import Path import wrapt +import textwrap +import inspect from interpreter.interpreter import Interpreter -from metagpt.actions.clone_function import CloneFunction, run_function_code, run_function_script -from metagpt.config import CONFIG from metagpt.logs import logger +from metagpt.config import CONFIG from metagpt.utils.highlight import highlight +from metagpt.actions.clone_function import CloneFunction, run_function_code, run_function_script def extract_python_code(code: str): @@ -36,7 +36,6 @@ def extract_python_code(code: str): class OpenCodeInterpreter(object): """https://github.com/KillianLucas/open-interpreter""" - def __init__(self, auto_run: bool = True) -> None: interpreter = Interpreter() interpreter.auto_run = auto_run @@ -127,5 +126,4 @@ class OpenInterpreterDecorator(object): except Exception as e: raise Exception("Could not evaluate Python code", e) return res - return wrapper(wrapped) diff --git a/metagpt/tools/prompt_writer.py b/metagpt/tools/prompt_writer.py index 35358307e..d90599206 100644 --- a/metagpt/tools/prompt_writer.py +++ b/metagpt/tools/prompt_writer.py @@ -10,7 +10,6 @@ from typing import Union class GPTPromptGenerator: """Using LLM, given an output, request LLM to provide input (supporting instruction, chatbot, and query styles)""" - def __init__(self): self._generators = {i: getattr(self, f"gen_{i}_style") for i in ['instruction', 'chatbot', 'query']} diff --git a/metagpt/tools/sd_engine.py b/metagpt/tools/sd_engine.py index 4e40951bc..1d9cd0b2a 100644 --- a/metagpt/tools/sd_engine.py +++ b/metagpt/tools/sd_engine.py @@ -10,8 +10,8 @@ import os from os.path import join from typing import List -from PIL import Image, PngImagePlugin from aiohttp import ClientSession +from PIL import Image, PngImagePlugin from metagpt.config import Config from metagpt.const import WORKSPACE_ROOT @@ -64,12 +64,12 @@ class SDEngine: logger.info(self.sd_t2i_url) def construct_payload( - self, - prompt, - negtive_prompt=default_negative_prompt, - width=512, - height=512, - sd_model="galaxytimemachinesGTM_photoV20", + self, + prompt, + negtive_prompt=default_negative_prompt, + width=512, + height=512, + sd_model="galaxytimemachinesGTM_photoV20", ): # Configure the payload with provided inputs self.payload["prompt"] = prompt @@ -120,13 +120,11 @@ def decode_base64_to_image(img, save_name): image.save(f"{save_name}.png", pnginfo=pnginfo) return pnginfo, image - def batch_decode_base64_to_image(imgs, save_dir="", save_name=""): for idx, _img in enumerate(imgs): save_name = join(save_dir, save_name) decode_base64_to_image(_img, save_name=save_name) - if __name__ == "__main__": engine = SDEngine() prompt = "pixel style, game design, a game interface should be minimalistic and intuitive with the score and high score displayed at the top. The snake and its food should be easily distinguishable. The game should have a simple color scheme, with a contrasting color for the snake and its food. Complete interface boundary" diff --git a/metagpt/tools/search_engine.py b/metagpt/tools/search_engine.py index e87519291..942ef7edd 100644 --- a/metagpt/tools/search_engine.py +++ b/metagpt/tools/search_engine.py @@ -20,7 +20,7 @@ class SkSearchEngine: @sk_function( description="searches results from Google. Useful when you need to find short " - "and succinct answers about a specific topic. Input should be a search query.", + "and succinct answers about a specific topic. Input should be a search query.", name="searchAsync", input_description="search", ) @@ -42,7 +42,7 @@ class SearchEngine: """ def __init__( - self, + self, engine: Optional[SearchEngineType] = None, run_func: Callable[[str, int, bool], Coroutine[None, None, Union[str, list[str]]]] = None, ): @@ -68,19 +68,19 @@ class SearchEngine: @overload def run( - self, - query: str, - max_results: int = 8, - as_string: Literal[True] = True, + self, + query: str, + max_results: int = 8, + as_string: Literal[True] = True, ) -> str: ... @overload def run( - self, - query: str, - max_results: int = 8, - as_string: Literal[False] = False, + self, + query: str, + max_results: int = 8, + as_string: Literal[False] = False, ) -> list[dict[str, str]]: ... diff --git a/metagpt/tools/search_engine_ddg.py b/metagpt/tools/search_engine_ddg.py index 320a8c621..57bc61b82 100644 --- a/metagpt/tools/search_engine_ddg.py +++ b/metagpt/tools/search_engine_ddg.py @@ -25,10 +25,10 @@ class DDGAPIWrapper: """ def __init__( - self, - *, - loop: asyncio.AbstractEventLoop | None = None, - executor: futures.Executor | None = None, + self, + *, + loop: asyncio.AbstractEventLoop | None = None, + executor: futures.Executor | None = None, ): kwargs = {} if CONFIG.global_proxy: @@ -39,29 +39,29 @@ class DDGAPIWrapper: @overload def run( - self, - query: str, - max_results: int = 8, - as_string: Literal[True] = True, - focus: list[str] | None = None, + self, + query: str, + max_results: int = 8, + as_string: Literal[True] = True, + focus: list[str] | None = None, ) -> str: ... @overload def run( - self, - query: str, - max_results: int = 8, - as_string: Literal[False] = False, - focus: list[str] | None = None, + self, + query: str, + max_results: int = 8, + as_string: Literal[False] = False, + focus: list[str] | None = None, ) -> list[dict[str, str]]: ... async def run( - self, - query: str, - max_results: int = 8, - as_string: bool = True, + self, + query: str, + max_results: int = 8, + as_string: bool = True, ) -> str | list[dict]: """Return the results of a Google search using the official Google API diff --git a/metagpt/tools/search_engine_googleapi.py b/metagpt/tools/search_engine_googleapi.py index 126067b10..b9faf2ced 100644 --- a/metagpt/tools/search_engine_googleapi.py +++ b/metagpt/tools/search_engine_googleapi.py @@ -76,11 +76,11 @@ class GoogleAPIWrapper(BaseModel): return service.cse() async def run( - self, - query: str, - max_results: int = 8, - as_string: bool = True, - focus: list[str] | None = None, + self, + query: str, + max_results: int = 8, + as_string: bool = True, + focus: list[str] | None = None, ) -> str | list[dict]: """Return the results of a Google search using the official Google API. diff --git a/metagpt/tools/translator.py b/metagpt/tools/translator.py index 2e9756abe..910638469 100644 --- a/metagpt/tools/translator.py +++ b/metagpt/tools/translator.py @@ -24,4 +24,4 @@ class Translator: @classmethod def translate_prompt(cls, original, lang='中文'): - return prompt.format(LANG=lang, ORIGINAL=original) + return prompt.format(LANG=lang, ORIGINAL=original) \ No newline at end of file diff --git a/metagpt/tools/web_browser_engine.py b/metagpt/tools/web_browser_engine.py index 76074aa5e..453d87f31 100644 --- a/metagpt/tools/web_browser_engine.py +++ b/metagpt/tools/web_browser_engine.py @@ -12,9 +12,9 @@ from metagpt.utils.parse_html import WebPage class WebBrowserEngine: def __init__( - self, - engine: WebBrowserEngineType | None = None, - run_func: Callable[..., Coroutine[Any, Any, WebPage | list[WebPage]]] | None = None, + self, + engine: WebBrowserEngineType | None = None, + run_func: Callable[..., Coroutine[Any, Any, WebPage | list[WebPage]]] | None = None, ): engine = engine or CONFIG.web_browser_engine @@ -46,9 +46,7 @@ class WebBrowserEngine: if __name__ == "__main__": import fire - async def main(url: str, *urls: str, engine_type: Literal["playwright", "selenium"] = "playwright", **kwargs): return await WebBrowserEngine(WebBrowserEngineType(engine_type), **kwargs).run(url, *urls) - fire.Fire(main) diff --git a/metagpt/tools/web_browser_engine_playwright.py b/metagpt/tools/web_browser_engine_playwright.py index dd9782c6f..030e7701b 100644 --- a/metagpt/tools/web_browser_engine_playwright.py +++ b/metagpt/tools/web_browser_engine_playwright.py @@ -23,10 +23,10 @@ class PlaywrightWrapper: """ def __init__( - self, - browser_type: Literal["chromium", "firefox", "webkit"] | None = None, - launch_kwargs: dict | None = None, - **kwargs, + self, + browser_type: Literal["chromium", "firefox", "webkit"] | None = None, + launch_kwargs: dict | None = None, + **kwargs, ) -> None: if browser_type is None: browser_type = CONFIG.playwright_browser_type @@ -139,12 +139,11 @@ async def _log_stream(sr, log_func): _install_lock: asyncio.Lock = None _install_cache = set() + if __name__ == "__main__": import fire - async def main(url: str, *urls: str, browser_type: str = "chromium", **kwargs): return await PlaywrightWrapper(browser_type, **kwargs).run(url, *urls) - fire.Fire(main) diff --git a/metagpt/tools/web_browser_engine_selenium.py b/metagpt/tools/web_browser_engine_selenium.py index 64fdc0522..d727709b8 100644 --- a/metagpt/tools/web_browser_engine_selenium.py +++ b/metagpt/tools/web_browser_engine_selenium.py @@ -28,12 +28,12 @@ class SeleniumWrapper: """ def __init__( - self, - browser_type: Literal["chrome", "firefox", "edge", "ie"] | None = None, - launch_kwargs: dict | None = None, - *, - loop: asyncio.AbstractEventLoop | None = None, - executor: futures.Executor | None = None, + self, + browser_type: Literal["chrome", "firefox", "edge", "ie"] | None = None, + launch_kwargs: dict | None = None, + *, + loop: asyncio.AbstractEventLoop | None = None, + executor: futures.Executor | None = None, ) -> None: if browser_type is None: browser_type = CONFIG.selenium_browser_type @@ -117,9 +117,7 @@ def _gen_get_driver_func(browser_type, *args, executable_path=None): if __name__ == "__main__": import fire - async def main(url: str, *urls: str, browser_type: str = "chrome", **kwargs): return await SeleniumWrapper(browser_type, **kwargs).run(url, *urls) - fire.Fire(main) diff --git a/metagpt/utils/__init__.py b/metagpt/utils/__init__.py index ac78a6c85..f13175cf8 100644 --- a/metagpt/utils/__init__.py +++ b/metagpt/utils/__init__.py @@ -14,6 +14,7 @@ from metagpt.utils.token_counter import ( count_string_tokens, ) + __all__ = [ "read_docx", "Singleton", diff --git a/metagpt/utils/custom_decoder.py b/metagpt/utils/custom_decoder.py index 2a274564c..373d16356 100644 --- a/metagpt/utils/custom_decoder.py +++ b/metagpt/utils/custom_decoder.py @@ -36,11 +36,11 @@ def py_make_scanner(context): return parse_object((string, idx + 1), strict, _scan_once, object_hook, object_pairs_hook, memo) elif nextchar == "[": return parse_array((string, idx + 1), _scan_once) - elif nextchar == "n" and string[idx: idx + 4] == "null": + elif nextchar == "n" and string[idx : idx + 4] == "null": return None, idx + 4 - elif nextchar == "t" and string[idx: idx + 4] == "true": + elif nextchar == "t" and string[idx : idx + 4] == "true": return True, idx + 4 - elif nextchar == "f" and string[idx: idx + 5] == "false": + elif nextchar == "f" and string[idx : idx + 5] == "false": return False, idx + 5 m = match_number(string, idx) @@ -51,11 +51,11 @@ def py_make_scanner(context): else: res = parse_int(integer) return res, m.end() - elif nextchar == "N" and string[idx: idx + 3] == "NaN": + elif nextchar == "N" and string[idx : idx + 3] == "NaN": return parse_constant("NaN"), idx + 3 - elif nextchar == "I" and string[idx: idx + 8] == "Infinity": + elif nextchar == "I" and string[idx : idx + 8] == "Infinity": return parse_constant("Infinity"), idx + 8 - elif nextchar == "-" and string[idx: idx + 9] == "-Infinity": + elif nextchar == "-" and string[idx : idx + 9] == "-Infinity": return parse_constant("-Infinity"), idx + 9 else: raise StopIteration(idx) @@ -89,7 +89,7 @@ WHITESPACE_STR = " \t\n\r" def JSONObject( - s_and_end, strict, scan_once, object_hook, object_pairs_hook, memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR + s_and_end, strict, scan_once, object_hook, object_pairs_hook, memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR ): """Parse a JSON object from a string and return the parsed object. @@ -118,12 +118,12 @@ def JSONObject( memo_get = memo.setdefault # Use a slice to prevent IndexError from being raised, the following # check will raise a more specific ValueError if the string is empty - nextchar = s[end: end + 1] + nextchar = s[end : end + 1] # Normally we expect nextchar == '"' if nextchar != '"' and nextchar != "'": if nextchar in _ws: end = _w(s, end).end() - nextchar = s[end: end + 1] + nextchar = s[end : end + 1] # Trivial empty object if nextchar == "}": if object_pairs_hook is not None: @@ -146,9 +146,9 @@ def JSONObject( key = memo_get(key, key) # To skip some function call overhead we optimize the fast paths where # the JSON key separator is ": " or just ":". - if s[end: end + 1] != ":": + if s[end : end + 1] != ":": end = _w(s, end).end() - if s[end: end + 1] != ":": + if s[end : end + 1] != ":": raise JSONDecodeError("Expecting ':' delimiter", s, end) end += 1 @@ -179,7 +179,7 @@ def JSONObject( elif nextchar != ",": raise JSONDecodeError("Expecting ',' delimiter", s, end - 1) end = _w(s, end).end() - nextchar = s[end: end + 1] + nextchar = s[end : end + 1] end += 1 if nextchar != '"': raise JSONDecodeError("Expecting property name enclosed in double quotes", s, end - 1) @@ -257,7 +257,7 @@ def py_scanstring(s, end, strict=True, _b=BACKSLASH, _m=STRINGCHUNK.match, delim else: uni = _decode_uXXXX(s, end) end += 5 - if 0xD800 <= uni <= 0xDBFF and s[end: end + 2] == "\\u": + if 0xD800 <= uni <= 0xDBFF and s[end : end + 2] == "\\u": uni2 = _decode_uXXXX(s, end + 1) if 0xDC00 <= uni2 <= 0xDFFF: uni = 0x10000 + (((uni - 0xD800) << 10) | (uni2 - 0xDC00)) @@ -272,14 +272,14 @@ scanstring = py_scanstring class CustomDecoder(json.JSONDecoder): def __init__( - self, - *, - object_hook=None, - parse_float=None, - parse_int=None, - parse_constant=None, - strict=True, - object_pairs_hook=None + self, + *, + object_hook=None, + parse_float=None, + parse_int=None, + parse_constant=None, + strict=True, + object_pairs_hook=None ): super().__init__( object_hook=object_hook, diff --git a/metagpt/utils/file.py b/metagpt/utils/file.py index f7c9f2894..f3691549b 100644 --- a/metagpt/utils/file.py +++ b/metagpt/utils/file.py @@ -6,9 +6,8 @@ @File : file.py @Describe : General file operations. """ -from pathlib import Path - import aiofiles +from pathlib import Path from metagpt.logs import logger @@ -73,3 +72,4 @@ class File: except Exception as e: logger.error(f"Error reading file: {e}") raise e + diff --git a/metagpt/utils/highlight.py b/metagpt/utils/highlight.py index a7f8e7c7a..e6cbb228c 100644 --- a/metagpt/utils/highlight.py +++ b/metagpt/utils/highlight.py @@ -1,7 +1,7 @@ # 添加代码语法高亮显示 from pygments import highlight as highlight_ -from pygments.formatters import TerminalFormatter, HtmlFormatter from pygments.lexers import PythonLexer, SqlLexer +from pygments.formatters import TerminalFormatter, HtmlFormatter def highlight(code: str, language: str = 'python', formatter: str = 'terminal'): diff --git a/metagpt/utils/mermaid.py b/metagpt/utils/mermaid.py index 2d8d3aed6..5e5b275b0 100644 --- a/metagpt/utils/mermaid.py +++ b/metagpt/utils/mermaid.py @@ -135,6 +135,7 @@ MMC2 = """sequenceDiagram S-->>SE: return summary SE-->>M: return summary""" + if __name__ == "__main__": loop = asyncio.new_event_loop() result = loop.run_until_complete(mermaid_to_file(MMC1, PROJECT_ROOT / f"{CONFIG.mermaid_engine}/1")) diff --git a/metagpt/utils/mmdc_ink.py b/metagpt/utils/mmdc_ink.py index 45cc2af52..3d91cde9d 100644 --- a/metagpt/utils/mmdc_ink.py +++ b/metagpt/utils/mmdc_ink.py @@ -6,9 +6,9 @@ @File : mermaid.py """ import base64 +import os -from aiohttp import ClientSession, ClientError - +from aiohttp import ClientSession,ClientError from metagpt.logs import logger diff --git a/metagpt/utils/mmdc_playwright.py b/metagpt/utils/mmdc_playwright.py index 5fef3708b..bdbfd82ff 100644 --- a/metagpt/utils/mmdc_playwright.py +++ b/metagpt/utils/mmdc_playwright.py @@ -8,13 +8,10 @@ import os from urllib.parse import urljoin - from playwright.async_api import async_playwright - from metagpt.logs import logger - -async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height=2048) -> int: +async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height=2048)-> int: """ Converts the given Mermaid code to various output formats and saves them to files. @@ -27,21 +24,20 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, Returns: int: Returns 1 if the conversion and saving were successful, -1 otherwise. """ - suffixes = ['png', 'svg', 'pdf'] + suffixes=['png', 'svg', 'pdf'] __dirname = os.path.dirname(os.path.abspath(__file__)) async with async_playwright() as p: browser = await p.chromium.launch() device_scale_factor = 1.0 context = await browser.new_context( - viewport={'width': width, 'height': height}, - device_scale_factor=device_scale_factor, - ) + viewport={'width': width, 'height': height}, + device_scale_factor=device_scale_factor, + ) page = await context.new_page() async def console_message(msg): logger.info(msg.text) - page.on('console', console_message) try: @@ -76,7 +72,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, }''', [mermaid_code, mermaid_config, my_css, background_color]) - if 'svg' in suffixes: + if 'svg' in suffixes : svg_xml = await page.evaluate('''() => { const svg = document.querySelector('svg'); const xmlSerializer = new XMLSerializer(); @@ -86,7 +82,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, with open(f'{output_file_without_suffix}.svg', 'wb') as f: f.write(svg_xml.encode('utf-8')) - if 'png' in suffixes: + if 'png' in suffixes: clip = await page.evaluate('''() => { const svg = document.querySelector('svg'); const rect = svg.getBoundingClientRect(); diff --git a/metagpt/utils/mmdc_pyppeteer.py b/metagpt/utils/mmdc_pyppeteer.py index 690a26eb8..7ec30fd12 100644 --- a/metagpt/utils/mmdc_pyppeteer.py +++ b/metagpt/utils/mmdc_pyppeteer.py @@ -7,14 +7,11 @@ """ import os from urllib.parse import urljoin - from pyppeteer import launch - -from metagpt.config import CONFIG from metagpt.logs import logger +from metagpt.config import CONFIG - -async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height=2048) -> int: +async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height=2048)-> int: """ Converts the given Mermaid code to various output formats and saves them to files. @@ -27,14 +24,15 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, Returns: int: Returns 1 if the conversion and saving were successful, -1 otherwise. """ - suffixes = ['png', 'svg', 'pdf'] + suffixes = ['png', 'svg', 'pdf'] __dirname = os.path.dirname(os.path.abspath(__file__)) + if CONFIG.pyppeteer_executable_path: browser = await launch(headless=True, - executablePath=CONFIG.pyppeteer_executable_path, - args=['--disable-extensions', "--no-sandbox"] - ) + executablePath=CONFIG.pyppeteer_executable_path, + args=['--disable-extensions',"--no-sandbox"] + ) else: logger.error("Please set the environment variable:PYPPETEER_EXECUTABLE_PATH.") return -1 @@ -43,7 +41,6 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, async def console_message(msg): logger.info(msg.text) - page.on('console', console_message) try: @@ -76,7 +73,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, } }''', [mermaid_code, mermaid_config, my_css, background_color]) - if 'svg' in suffixes: + if 'svg' in suffixes : svg_xml = await page.evaluate('''() => { const svg = document.querySelector('svg'); const xmlSerializer = new XMLSerializer(); @@ -86,7 +83,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, with open(f'{output_file_without_suffix}.svg', 'wb') as f: f.write(svg_xml.encode('utf-8')) - if 'png' in suffixes: + if 'png' in suffixes: clip = await page.evaluate('''() => { const svg = document.querySelector('svg'); const rect = svg.getBoundingClientRect(); @@ -97,8 +94,7 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, height: Math.ceil(rect.height) }; }''') - await page.setViewport({'width': clip['x'] + clip['width'], 'height': clip['y'] + clip['height'], - 'deviceScaleFactor': device_scale_factor}) + await page.setViewport({'width': clip['x'] + clip['width'], 'height': clip['y'] + clip['height'], 'deviceScaleFactor': device_scale_factor}) screenshot = await page.screenshot(clip=clip, omit_background=True, scale='device') logger.info(f"Generating {output_file_without_suffix}.png..") with open(f'{output_file_without_suffix}.png', 'wb') as f: @@ -114,3 +110,4 @@ async def mermaid_to_file(mermaid_code, output_file_without_suffix, width=2048, return -1 finally: await browser.close() + diff --git a/metagpt/utils/parse_html.py b/metagpt/utils/parse_html.py index f2395026f..62de26541 100644 --- a/metagpt/utils/parse_html.py +++ b/metagpt/utils/parse_html.py @@ -16,7 +16,7 @@ class WebPage(BaseModel): class Config: underscore_attrs_are_private = True - _soup: Optional[BeautifulSoup] = None + _soup : Optional[BeautifulSoup] = None _title: Optional[str] = None @property @@ -24,7 +24,7 @@ class WebPage(BaseModel): if self._soup is None: self._soup = BeautifulSoup(self.html, "html.parser") return self._soup - + @property def title(self): if self._title is None: diff --git a/metagpt/utils/pycst.py b/metagpt/utils/pycst.py index 4d1a86c91..afd85a547 100644 --- a/metagpt/utils/pycst.py +++ b/metagpt/utils/pycst.py @@ -37,12 +37,12 @@ def get_docstring_statement(body: DocstringNode) -> cst.SimpleStatementLine: if not isinstance(expr, cst.Expr): return None - + val = expr.value if not isinstance(val, (cst.SimpleString, cst.ConcatenatedString)): return None - - evaluated_value = val.evaluated_value + + evaluated_value = val.evaluated_value if isinstance(evaluated_value, bytes): return None @@ -56,7 +56,6 @@ class DocstringCollector(cst.CSTVisitor): stack: A list to keep track of the current path in the CST. docstrings: A dictionary mapping paths in the CST to their corresponding docstrings. """ - def __init__(self): self.stack: list[str] = [] self.docstrings: dict[tuple[str, ...], cst.SimpleStatementLine] = {} @@ -97,10 +96,9 @@ class DocstringTransformer(cst.CSTTransformer): stack: A list to keep track of the current path in the CST. docstrings: A dictionary mapping paths in the CST to their corresponding docstrings. """ - def __init__( - self, - docstrings: dict[tuple[str, ...], cst.SimpleStatementLine], + self, + docstrings: dict[tuple[str, ...], cst.SimpleStatementLine], ): self.stack: list[str] = [] self.docstrings = docstrings @@ -127,8 +125,7 @@ class DocstringTransformer(cst.CSTTransformer): key = tuple(self.stack) self.stack.pop() - if hasattr(updated_node, "decorators") and any( - (i.decorator.value == "overload") for i in updated_node.decorators): + if hasattr(updated_node, "decorators") and any((i.decorator.value == "overload") for i in updated_node.decorators): return updated_node statement = self.docstrings.get(key) diff --git a/metagpt/utils/read_document.py b/metagpt/utils/read_document.py index d2fafbc17..c837baf25 100644 --- a/metagpt/utils/read_document.py +++ b/metagpt/utils/read_document.py @@ -8,7 +8,6 @@ import docx - def read_docx(file_path: str) -> list: """Open a docx file""" doc = docx.Document(file_path) diff --git a/metagpt/utils/singleton.py b/metagpt/utils/singleton.py index a9e0862c0..474b537db 100644 --- a/metagpt/utils/singleton.py +++ b/metagpt/utils/singleton.py @@ -20,3 +20,4 @@ class Singleton(abc.ABCMeta, type): if cls not in cls._instances: cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs) return cls._instances[cls] + \ No newline at end of file diff --git a/metagpt/utils/special_tokens.py b/metagpt/utils/special_tokens.py index 5e780ce05..2adb93c77 100644 --- a/metagpt/utils/special_tokens.py +++ b/metagpt/utils/special_tokens.py @@ -1,4 +1,4 @@ # token to separate different code messages in a WriteCode Message content -MSG_SEP = "#*000*#" +MSG_SEP = "#*000*#" # token to seperate file name and the actual code text in a code message FILENAME_CODE_SEP = "#*001*#" diff --git a/metagpt/utils/text.py b/metagpt/utils/text.py index c36058e42..be3c52edd 100644 --- a/metagpt/utils/text.py +++ b/metagpt/utils/text.py @@ -3,8 +3,7 @@ from typing import Generator, Sequence from metagpt.utils.token_counter import TOKEN_MAX, count_string_tokens -def reduce_message_length(msgs: Generator[str, None, None], model_name: str, system_text: str, - reserved: int = 0, ) -> str: +def reduce_message_length(msgs: Generator[str, None, None], model_name: str, system_text: str, reserved: int = 0,) -> str: """Reduce the length of concatenated message segments to fit within the maximum token size. Args: @@ -28,11 +27,11 @@ def reduce_message_length(msgs: Generator[str, None, None], model_name: str, sys def generate_prompt_chunk( - text: str, - prompt_template: str, - model_name: str, - system_text: str, - reserved: int = 0, + text: str, + prompt_template: str, + model_name: str, + system_text: str, + reserved: int = 0, ) -> Generator[str, None, None]: """Split the text into chunks of a maximum token size. @@ -50,9 +49,9 @@ def generate_prompt_chunk( current_token = 0 current_lines = [] - reserved = reserved + count_string_tokens(prompt_template + system_text, model_name) + reserved = reserved + count_string_tokens(prompt_template+system_text, model_name) # 100 is a magic number to ensure the maximum context length is not exceeded - max_token = TOKEN_MAX.get(model_name, 2048) - reserved - 100 + max_token = TOKEN_MAX.get(model_name, 2048) - reserved - 100 while paragraphs: paragraph = paragraphs.pop(0) @@ -104,7 +103,7 @@ def decode_unicode_escape(text: str) -> str: return text.encode("utf-8").decode("unicode_escape", "ignore") -def _split_by_count(lst: Sequence, count: int): +def _split_by_count(lst: Sequence , count: int): avg = len(lst) // count remainder = len(lst) % count start = 0 diff --git a/metagpt/utils/token_counter.py b/metagpt/utils/token_counter.py index 2b9f21fb8..a5a65803a 100644 --- a/metagpt/utils/token_counter.py +++ b/metagpt/utils/token_counter.py @@ -24,6 +24,7 @@ TOKEN_COSTS = { "text-embedding-ada-002": {"prompt": 0.0004, "completion": 0.0}, } + TOKEN_MAX = { "gpt-3.5-turbo": 4096, "gpt-3.5-turbo-0301": 4096, diff --git a/requirements.txt b/requirements.txt index e855b6e83..562a653f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -44,3 +44,8 @@ ta==0.10.2 semantic-kernel==0.3.10.dev0 websocket-client==0.58.0 + +aiofiles~=23.2.1 +pygments~=2.16.1 +requests~=2.31.0 +yaml~=0.2.5 \ No newline at end of file diff --git a/startup.py b/startup.py index df94aeaba..e2a903c9b 100644 --- a/startup.py +++ b/startup.py @@ -15,12 +15,12 @@ from metagpt.software_company import SoftwareCompany async def startup( - idea: str, - investment: float = 3.0, - n_round: int = 5, - code_review: bool = False, - run_tests: bool = False, - implement: bool = True, + idea: str, + investment: float = 3.0, + n_round: int = 5, + code_review: bool = False, + run_tests: bool = False, + implement: bool = True, ): """Run a startup. Be a boss.""" company = SoftwareCompany() @@ -48,12 +48,12 @@ async def startup( def main( - idea: str, - investment: float = 3.0, - n_round: int = 5, - code_review: bool = True, - run_tests: bool = False, - implement: bool = True, + idea: str, + investment: float = 3.0, + n_round: int = 5, + code_review: bool = True, + run_tests: bool = False, + implement: bool = True, ): """ We are a software startup comprised of AI. By investing in us, diff --git a/tests/conftest.py b/tests/conftest.py index d2ac8304f..feecc7715 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -6,14 +6,14 @@ @File : conftest.py """ -import asyncio -import re from unittest.mock import Mock import pytest from metagpt.logs import logger from metagpt.provider.openai_api import OpenAIGPTAPI as GPTAPI +import asyncio +import re class Context: diff --git a/tests/metagpt/actions/mock.py b/tests/metagpt/actions/mock.py index fe82fe01e..a800690e8 100644 --- a/tests/metagpt/actions/mock.py +++ b/tests/metagpt/actions/mock.py @@ -159,6 +159,7 @@ sequenceDiagram The original requirements did not specify whether the game should have a save/load feature, multiplayer support, or any specific graphical user interface. More information on these aspects could help in further refining the product design and requirements. """ + PROJECT_MANAGEMENT_SAMPLE = '''## Required Python third-party packages: Provided in requirements.txt format ```python "pytest==6.2.5" @@ -216,6 +217,7 @@ The original requirements did not specify whether the game should have a save/lo ``` ''' + WRITE_CODE_PROMPT_SAMPLE = """ 你是一个工程师。下面是背景信息与你的当前任务,请为任务撰写代码。 撰写的代码应该符合PEP8,优雅,模块化,易于阅读与维护,代码本身应该有__main__入口来防止桩函数 @@ -373,6 +375,7 @@ if __name__ == '__main__': print('No results found.') """ + REFINED_CODE = ''' import requests diff --git a/tests/metagpt/actions/test_clone_function.py b/tests/metagpt/actions/test_clone_function.py index e11402c97..6d4432dcd 100644 --- a/tests/metagpt/actions/test_clone_function.py +++ b/tests/metagpt/actions/test_clone_function.py @@ -2,6 +2,7 @@ import pytest from metagpt.actions.clone_function import CloneFunction, run_function_code + source_code = """ import pandas as pd import ta @@ -36,10 +37,7 @@ def get_expected_res(): stock_data['SMA'] = ta.trend.sma_indicator(stock_data['Close'], window=6) stock_data[['Date', 'Close', 'SMA']].head() # 计算布林带 - stock_data['bb_upper'], stock_data['bb_middle'], stock_data['bb_lower'] = ta.volatility.bollinger_hband_indicator( - stock_data['Close'], window=20), ta.volatility.bollinger_mavg(stock_data['Close'], - window=20), ta.volatility.bollinger_lband_indicator( - stock_data['Close'], window=20) + stock_data['bb_upper'], stock_data['bb_middle'], stock_data['bb_lower'] = ta.volatility.bollinger_hband_indicator(stock_data['Close'], window=20), ta.volatility.bollinger_mavg(stock_data['Close'], window=20), ta.volatility.bollinger_lband_indicator(stock_data['Close'], window=20) stock_data[['Date', 'Close', 'bb_upper', 'bb_middle', 'bb_lower']].head() return stock_data diff --git a/tests/metagpt/actions/test_debug_error.py b/tests/metagpt/actions/test_debug_error.py index 2393d2cc9..555c84e4e 100644 --- a/tests/metagpt/actions/test_debug_error.py +++ b/tests/metagpt/actions/test_debug_error.py @@ -144,12 +144,12 @@ Engineer --- ''' - @pytest.mark.asyncio async def test_debug_error(): + debug_error = DebugError("debug_error") file_name, rewritten_code = await debug_error.run(context=EXAMPLE_MSG_CONTENT) - assert "class Player" in rewritten_code # rewrite the same class - assert "while self.score > 21" in rewritten_code # a key logic to rewrite to (original one is "if self.score > 12") + assert "class Player" in rewritten_code # rewrite the same class + assert "while self.score > 21" in rewritten_code # a key logic to rewrite to (original one is "if self.score > 12") diff --git a/tests/metagpt/actions/test_detail_mining.py b/tests/metagpt/actions/test_detail_mining.py index 1266960cc..c9d5331f9 100644 --- a/tests/metagpt/actions/test_detail_mining.py +++ b/tests/metagpt/actions/test_detail_mining.py @@ -10,7 +10,6 @@ import pytest from metagpt.actions.detail_mining import DetailMining from metagpt.logs import logger - @pytest.mark.asyncio async def test_detail_mining(): topic = "如何做一个生日蛋糕" @@ -18,6 +17,7 @@ async def test_detail_mining(): detail_mining = DetailMining("detail_mining") rsp = await detail_mining.run(topic=topic, record=record) logger.info(f"{rsp.content=}") - + assert '##OUTPUT' in rsp.content assert '蛋糕' in rsp.content + diff --git a/tests/metagpt/actions/test_ui_design.py b/tests/metagpt/actions/test_ui_design.py index dedd0b30e..d284b20f2 100644 --- a/tests/metagpt/actions/test_ui_design.py +++ b/tests/metagpt/actions/test_ui_design.py @@ -4,7 +4,7 @@ # from tests.metagpt.roles.ui_role import UIDesign -llm_resp = ''' +llm_resp= ''' # UI Design Description ```The user interface for the snake game will be designed in a way that is simple, clean, and intuitive. The main elements of the game such as the game grid, snake, food, score, and game over message will be clearly defined and easy to understand. The game grid will be centered on the screen with the score displayed at the top. The game controls will be intuitive and easy to use. The design will be modern and minimalist with a pleasing color scheme.``` @@ -100,7 +100,6 @@ body { font-size: 3em; ''' - def test_ui_design_parse_css(): ui_design_work = UIDesign(name="UI design action") @@ -162,7 +161,7 @@ def test_ui_design_parse_css(): transform: translate(-50%, -50%); font-size: 3em; ''' - assert ui_design_work.parse_css_code(context=llm_resp) == css + assert ui_design_work.parse_css_code(context=llm_resp)==css def test_ui_design_parse_html(): @@ -186,4 +185,7 @@ def test_ui_design_parse_html(): ''' - assert ui_design_work.parse_css_code(context=llm_resp) == html + assert ui_design_work.parse_css_code(context=llm_resp)==html + + + diff --git a/tests/metagpt/actions/test_write_code_review.py b/tests/metagpt/actions/test_write_code_review.py index f56427401..21bc563ec 100644 --- a/tests/metagpt/actions/test_write_code_review.py +++ b/tests/metagpt/actions/test_write_code_review.py @@ -27,6 +27,7 @@ def add(a, b): captured = capfd.readouterr() print(f"输出内容: {captured.out}") + # @pytest.mark.asyncio # async def test_write_code_review_directly(): # code = SEARCH_CODE_SAMPLE diff --git a/tests/metagpt/document_store/test_chromadb_store.py b/tests/metagpt/document_store/test_chromadb_store.py index 2b110a807..f8c11e1ca 100644 --- a/tests/metagpt/document_store/test_chromadb_store.py +++ b/tests/metagpt/document_store/test_chromadb_store.py @@ -16,8 +16,8 @@ def test_chroma_store(): # 使用 write 方法添加多个文档 document_store.write(["This is document1", "This is document2"], - [{"source": "google-docs"}, {"source": "notion"}], - ["doc1", "doc2"]) + [{"source": "google-docs"}, {"source": "notion"}], + ["doc1", "doc2"]) # 使用 add 方法添加一个文档 document_store.add("This is document3", {"source": "notion"}, "doc3") diff --git a/tests/metagpt/document_store/test_lancedb_store.py b/tests/metagpt/document_store/test_lancedb_store.py index 14974662e..9c2f9fb42 100644 --- a/tests/metagpt/document_store/test_lancedb_store.py +++ b/tests/metagpt/document_store/test_lancedb_store.py @@ -5,30 +5,27 @@ @Author : unkn-wn (Leon Yee) @File : test_lancedb_store.py """ -import random - -import pytest - from metagpt.document_store.lancedb_store import LanceStore - +import pytest +import random @pytest def test_lance_store(): + # This simply establishes the connection to the database, so we can drop the table if it exists store = LanceStore('test') store.drop('test') store.write(data=[[random.random() for _ in range(100)] for _ in range(2)], - metadatas=[{"source": "google-docs"}, {"source": "notion"}], - ids=["doc1", "doc2"]) + metadatas=[{"source": "google-docs"}, {"source": "notion"}], + ids=["doc1", "doc2"]) store.add(data=[random.random() for _ in range(100)], metadata={"source": "notion"}, _id="doc3") result = store.search([random.random() for _ in range(100)], n_results=3) - assert (len(result) == 3) + assert(len(result) == 3) store.delete("doc2") - result = store.search([random.random() for _ in range(100)], n_results=3, where="source = 'notion'", - metric='cosine') - assert (len(result) == 1) + result = store.search([random.random() for _ in range(100)], n_results=3, where="source = 'notion'", metric='cosine') + assert(len(result) == 1) \ No newline at end of file diff --git a/tests/metagpt/memory/test_longterm_memory.py b/tests/metagpt/memory/test_longterm_memory.py index ef9dec866..dc5540520 100644 --- a/tests/metagpt/memory/test_longterm_memory.py +++ b/tests/metagpt/memory/test_longterm_memory.py @@ -2,11 +2,11 @@ # -*- coding: utf-8 -*- # @Desc : unittest of `metagpt/memory/longterm_memory.py` -from metagpt.actions import BossRequirement from metagpt.config import CONFIG -from metagpt.memory import LongTermMemory -from metagpt.roles.role import RoleContext from metagpt.schema import Message +from metagpt.actions import BossRequirement +from metagpt.roles.role import RoleContext +from metagpt.memory import LongTermMemory def test_ltm_search(): diff --git a/tests/metagpt/memory/test_memory_storage.py b/tests/metagpt/memory/test_memory_storage.py index dcb00403f..6bb3e8f1d 100644 --- a/tests/metagpt/memory/test_memory_storage.py +++ b/tests/metagpt/memory/test_memory_storage.py @@ -4,11 +4,11 @@ from typing import List +from metagpt.memory.memory_storage import MemoryStorage +from metagpt.schema import Message from metagpt.actions import BossRequirement from metagpt.actions import WritePRD from metagpt.actions.action_output import ActionOutput -from metagpt.memory.memory_storage import MemoryStorage -from metagpt.schema import Message def test_idea_message(): @@ -26,7 +26,7 @@ def test_idea_message(): sim_idea = 'Write a game of cli snake' sim_message = Message(role='BOSS', content=sim_idea, cause_by=BossRequirement) new_messages = memory_storage.search(sim_message) - assert len(new_messages) == 0 # similar, return [] + assert len(new_messages) == 0 # similar, return [] new_idea = 'Write a 2048 web game' new_message = Message(role='BOSS', content=new_idea, cause_by=BossRequirement) @@ -68,7 +68,7 @@ def test_actionout_message(): role='user', cause_by=WritePRD) new_messages = memory_storage.search(sim_message) - assert len(new_messages) == 0 # similar, return [] + assert len(new_messages) == 0 # similar, return [] new_conent = 'Incorporate basic features of a snake game such as scoring and increasing difficulty' new_message = Message(content=new_conent, diff --git a/tests/metagpt/roles/mock.py b/tests/metagpt/roles/mock.py index a0ba3b3f3..52fc4a3c1 100644 --- a/tests/metagpt/roles/mock.py +++ b/tests/metagpt/roles/mock.py @@ -19,6 +19,7 @@ DETAIL_REQUIREMENT = """需求:开发一个基于LLM(大语言模型)与 1. 大语言模型已经有前置的抽象、部署,可以通过 `from metagpt.llm import LLM`,再使用`LLM().ask(prompt)`直接调用 2. Elastic已有[部署](http://192.168.50.82:9200/),代码可以直接使用这个部署""" + PRD = '''## 原始需求 ```python """ @@ -150,6 +151,7 @@ sequenceDiagram ``` ''' + TASKS = '''## Logic Analysis 在这个项目中,所有的模块都依赖于“SearchEngine”类,这是主入口,其他的模块(Index、Ranking和Summary)都通过它交互。另外,"Index"类又依赖于"KnowledgeBase"类,因为它需要从知识库中获取数据。 @@ -181,6 +183,7 @@ task_list = [ 这个任务列表首先定义了最基础的模块,然后是依赖这些模块的模块,最后是辅助模块。可以根据团队的能力和资源,同时开发多个任务,只要满足依赖关系。例如,在开发"search.py"之前,可以同时开发"knowledge_base.py"、"index.py"、"ranking.py"和"summary.py"。 ''' + TASKS_TOMATO_CLOCK = '''## Required Python third-party packages: Provided in requirements.txt format ```python Flask==2.1.1 @@ -221,30 +224,30 @@ task_list = [ TASK = """smart_search_engine/knowledge_base.py""" STRS_FOR_PARSING = [ - """ - ## 1 - ```python - a - ``` - """, - """ - ##2 - ```python - "a" - ``` - """, - """ - ## 3 - ```python - a = "a" - ``` - """, - """ - ## 4 - ```python - a = 'a' - ``` - """ +""" +## 1 +```python +a +``` +""", +""" +##2 +```python +"a" +``` +""", +""" +## 3 +```python +a = "a" +``` +""", +""" +## 4 +```python +a = 'a' +``` +""" ] diff --git a/tests/metagpt/roles/test_engineer.py b/tests/metagpt/roles/test_engineer.py index 2767a377a..c0c48d0b1 100644 --- a/tests/metagpt/roles/test_engineer.py +++ b/tests/metagpt/roles/test_engineer.py @@ -33,7 +33,7 @@ async def test_engineer(): def test_parse_str(): for idx, i in enumerate(STRS_FOR_PARSING): - text = CodeParser.parse_str(f"{idx + 1}", i) + text = CodeParser.parse_str(f"{idx+1}", i) # logger.info(text) assert text == 'a' diff --git a/tests/metagpt/roles/test_researcher.py b/tests/metagpt/roles/test_researcher.py index 31f1f5571..01b5dae3b 100644 --- a/tests/metagpt/roles/test_researcher.py +++ b/tests/metagpt/roles/test_researcher.py @@ -12,7 +12,7 @@ async def mock_llm_ask(self, prompt: str, system_msgs): return '["dataiku", "datarobot"]' elif "Provide up to 4 queries related to your research topic" in prompt: return '["Dataiku machine learning platform", "DataRobot AI platform comparison", ' \ - '"Dataiku vs DataRobot features", "Dataiku and DataRobot use cases"]' + '"Dataiku vs DataRobot features", "Dataiku and DataRobot use cases"]' elif "sort the remaining search results" in prompt: return '[1,2]' elif "Not relevant." in prompt: diff --git a/tests/metagpt/roles/test_tutorial_assistant.py b/tests/metagpt/roles/test_tutorial_assistant.py index feecd469e..945620cfc 100644 --- a/tests/metagpt/roles/test_tutorial_assistant.py +++ b/tests/metagpt/roles/test_tutorial_assistant.py @@ -24,4 +24,4 @@ async def test_tutorial_assistant(language: str, topic: str): title = filename.split("/")[-1].split(".")[0] async with aiofiles.open(filename, mode="r") as reader: content = await reader.read() - assert content.startswith(f"# {title}") + assert content.startswith(f"# {title}") \ No newline at end of file diff --git a/tests/metagpt/roles/test_ui.py b/tests/metagpt/roles/test_ui.py index 2d9cb85c9..285bff323 100644 --- a/tests/metagpt/roles/test_ui.py +++ b/tests/metagpt/roles/test_ui.py @@ -2,8 +2,9 @@ # @Date : 2023/7/22 02:40 # @Author : stellahong (stellahong@fuzhi.ai) # -from metagpt.roles import ProductManager from metagpt.software_company import SoftwareCompany +from metagpt.roles import ProductManager + from tests.metagpt.roles.ui_role import UI diff --git a/tests/metagpt/roles/ui_role.py b/tests/metagpt/roles/ui_role.py index 1d85ffa2e..a45a89cde 100644 --- a/tests/metagpt/roles/ui_role.py +++ b/tests/metagpt/roles/ui_role.py @@ -248,12 +248,12 @@ class UI(Role): """Class representing the UI Role.""" def __init__( - self, - name="Catherine", - profile="UI Design", - goal="Finish a workable and good User Interface design based on a product design", - constraints="Give clear layout description and use standard icons to finish the design", - skills=["SD"], + self, + name="Catherine", + profile="UI Design", + goal="Finish a workable and good User Interface design based on a product design", + constraints="Give clear layout description and use standard icons to finish the design", + skills=["SD"], ): super().__init__(name, profile, goal, constraints) self.load_skills(skills) diff --git a/tests/metagpt/test_environment.py b/tests/metagpt/test_environment.py index ea31e1019..a0f1f6257 100644 --- a/tests/metagpt/test_environment.py +++ b/tests/metagpt/test_environment.py @@ -45,8 +45,7 @@ def test_set_manager(env: Environment): @pytest.mark.asyncio async def test_publish_and_process_message(env: Environment): product_manager = ProductManager("Alice", "Product Manager", "做AI Native产品", "资源有限") - architect = Architect("Bob", "Architect", "设计一个可用、高效、较低成本的系统,包括数据结构与接口", - "资源有限,需要节省成本") + architect = Architect("Bob", "Architect", "设计一个可用、高效、较低成本的系统,包括数据结构与接口", "资源有限,需要节省成本") env.add_roles([product_manager, architect]) env.set_manager(Manager()) diff --git a/tests/metagpt/tools/test_code_interpreter.py b/tests/metagpt/tools/test_code_interpreter.py index 5acecd2c3..0eec3f80b 100644 --- a/tests/metagpt/tools/test_code_interpreter.py +++ b/tests/metagpt/tools/test_code_interpreter.py @@ -2,10 +2,12 @@ import pytest import pandas as pd from pathlib import Path +from tests.data import sales_desc, store_desc from metagpt.tools.code_interpreter import OpenCodeInterpreter, OpenInterpreterDecorator from metagpt.actions import Action from metagpt.logs import logger + logger.add('./tests/data/test_ci.log') stock = "./tests/data/baba_stock.csv" @@ -36,6 +38,5 @@ async def test_actions(): # 可视化指标结果 figure_path = './tests/data/figure_ci.png' ci_ploter = OpenCodeInterpreter() - ci_ploter.chat( - f"使用seaborn对{df_path}中与股票布林带有关的数据列的Date, Close, SMA, BB_upper(布林带上界), BB_lower(布林带下界)进行可视化, 可视化图片保存在{figure_path}中。不需要任何指标计算,把Date列转换为日期类型。要求图片优美,BB_upper, BB_lower之间使用合适的颜色填充。") + ci_ploter.chat(f"使用seaborn对{df_path}中与股票布林带有关的数据列的Date, Close, SMA, BB_upper(布林带上界), BB_lower(布林带下界)进行可视化, 可视化图片保存在{figure_path}中。不需要任何指标计算,把Date列转换为日期类型。要求图片优美,BB_upper, BB_lower之间使用合适的颜色填充。") assert Path(figure_path).is_file() diff --git a/tests/metagpt/tools/test_search_engine.py b/tests/metagpt/tools/test_search_engine.py index 30e5b3176..a7fe063a6 100644 --- a/tests/metagpt/tools/test_search_engine.py +++ b/tests/metagpt/tools/test_search_engine.py @@ -16,8 +16,7 @@ from metagpt.tools.search_engine import SearchEngine class MockSearchEnine: async def run(self, query: str, max_results: int = 8, as_string: bool = True) -> str | list[dict[str, str]]: - rets = [{"url": "https://metagpt.com/mock/{i}", "title": query, "snippet": query * i} for i in - range(max_results)] + rets = [{"url": "https://metagpt.com/mock/{i}", "title": query, "snippet": query * i} for i in range(max_results)] return "\n".join(rets) if as_string else rets @@ -35,7 +34,7 @@ class MockSearchEnine: (SearchEngineType.DUCK_DUCK_GO, None, 6, False), (SearchEngineType.CUSTOM_ENGINE, MockSearchEnine().run, 8, False), (SearchEngineType.CUSTOM_ENGINE, MockSearchEnine().run, 6, False), - + ], ) async def test_search_engine(search_engine_typpe, run_func, max_results, as_string, ): diff --git a/tests/metagpt/utils/test_custom_decoder.py b/tests/metagpt/utils/test_custom_decoder.py index 22638b775..c7b14ad59 100644 --- a/tests/metagpt/utils/test_custom_decoder.py +++ b/tests/metagpt/utils/test_custom_decoder.py @@ -6,6 +6,7 @@ @File : test_custom_decoder.py """ + from metagpt.utils.custom_decoder import CustomDecoder diff --git a/tests/metagpt/utils/test_file.py b/tests/metagpt/utils/test_file.py index 2f224e558..b30e6be93 100644 --- a/tests/metagpt/utils/test_file.py +++ b/tests/metagpt/utils/test_file.py @@ -23,3 +23,4 @@ async def test_write_and_read_file(root_path: Path, filename: str, content: byte assert root_path / filename == full_file_name file_data = await File.read(full_file_name) assert file_data.decode("utf-8") == content + diff --git a/tests/metagpt/utils/test_output_parser.py b/tests/metagpt/utils/test_output_parser.py index 58236c90c..2b706efc4 100644 --- a/tests/metagpt/utils/test_output_parser.py +++ b/tests/metagpt/utils/test_output_parser.py @@ -68,45 +68,44 @@ def test_parse_data(): ("text", "data_type", "parsed_data", "expected_exception"), [ ( - """xxx [1, 2, ["a", "b", [3, 4]], {"x": 5, "y": [6, 7]}] xxx""", - list, - [1, 2, ["a", "b", [3, 4]], {"x": 5, "y": [6, 7]}], - None, + """xxx [1, 2, ["a", "b", [3, 4]], {"x": 5, "y": [6, 7]}] xxx""", + list, + [1, 2, ["a", "b", [3, 4]], {"x": 5, "y": [6, 7]}], + None, ), ( - """xxx ["1", "2", "3"] xxx \n xxx \t xx""", - list, - ["1", "2", "3"], - None, + """xxx ["1", "2", "3"] xxx \n xxx \t xx""", + list, + ["1", "2", "3"], + None, ), ( - """{"title": "a", "directory": {"sub_dir1": ["title1, title2"]}, "sub_dir2": [1, 2]}""", - dict, - {"title": "a", "directory": {"sub_dir1": ["title1, title2"]}, "sub_dir2": [1, 2]}, - None, + """{"title": "a", "directory": {"sub_dir1": ["title1, title2"]}, "sub_dir2": [1, 2]}""", + dict, + {"title": "a", "directory": {"sub_dir1": ["title1, title2"]}, "sub_dir2": [1, 2]}, + None, ), ( - """xxx {"title": "x", \n \t "directory": ["x", \n "y"]} xxx \n xxx \t xx""", - dict, - {"title": "x", "directory": ["x", "y"]}, - None, + """xxx {"title": "x", \n \t "directory": ["x", \n "y"]} xxx \n xxx \t xx""", + dict, + {"title": "x", "directory": ["x", "y"]}, + None, ), ( - """xxx xx""", - list, - None, - Exception, + """xxx xx""", + list, + None, + Exception, ), ( - """xxx [1, 2, []xx""", - list, - None, - Exception, + """xxx [1, 2, []xx""", + list, + None, + Exception, ), ] ) -def test_extract_struct(text: str, data_type: Union[type(list), type(dict)], parsed_data: Union[list, dict], - expected_exception): +def test_extract_struct(text: str, data_type: Union[type(list), type(dict)], parsed_data: Union[list, dict], expected_exception): def case(): resp = OutputParser.extract_struct(text, data_type) assert resp == parsed_data diff --git a/tests/metagpt/utils/test_parse_html.py b/tests/metagpt/utils/test_parse_html.py index 5215c44b5..42be416a6 100644 --- a/tests/metagpt/utils/test_parse_html.py +++ b/tests/metagpt/utils/test_parse_html.py @@ -52,9 +52,9 @@ PAGE = """ """ -CONTENT = 'This is a HeadingThis is a paragraph witha linkand someemphasizedtext.Item 1Item 2Item 3Numbered Item 1Numbered ' \ - 'Item 2Numbered Item 3Header 1Header 2Row 1, Cell 1Row 1, Cell 2Row 2, Cell 1Row 2, Cell 2Name:Email:SubmitThis is a div ' \ - 'with a class "box".a link' +CONTENT = 'This is a HeadingThis is a paragraph witha linkand someemphasizedtext.Item 1Item 2Item 3Numbered Item 1Numbered '\ +'Item 2Numbered Item 3Header 1Header 2Row 1, Cell 1Row 1, Cell 2Row 2, Cell 1Row 2, Cell 2Name:Email:SubmitThis is a div '\ +'with a class "box".a link' def test_web_page(): diff --git a/tests/metagpt/utils/test_pycst.py b/tests/metagpt/utils/test_pycst.py index 2fa45ff8d..07352eac2 100644 --- a/tests/metagpt/utils/test_pycst.py +++ b/tests/metagpt/utils/test_pycst.py @@ -71,6 +71,7 @@ class Person: ... ''' + merged_code = ''' #!/usr/bin/env python # -*- coding: utf-8 -*- From ecea8574b513a36920694ae790347874786778b5 Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 22:46:33 +0800 Subject: [PATCH 26/30] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- metagpt/config.py | 6 +++--- metagpt/provider/spark_api.py | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/metagpt/config.py b/metagpt/config.py index 95caea0d1..27455d38d 100644 --- a/metagpt/config.py +++ b/metagpt/config.py @@ -62,9 +62,9 @@ class Config(metaclass=Singleton): self.deployment_name = self._get("DEPLOYMENT_NAME") self.deployment_id = self._get("DEPLOYMENT_ID") - self.xinghuo_appid = self._get("XINGHUO_APPID") - self.xinghuo_api_secret = self._get("XINGHUO_API_SECRET") - self.xinghuo_api_key = self._get("XINGHUO_API_KEY") + self.spark_appid = self._get("SPARK_APPID") + self.spark_api_secret = self._get("SPARK_API_SECRET") + self.spark_api_key = self._get("SPARK_API_KEY") self.domain = self._get("DOMAIN") self.spark_url = self._get("SPARK_URL") diff --git a/metagpt/provider/spark_api.py b/metagpt/provider/spark_api.py index f03d7e7d6..55f7000ec 100644 --- a/metagpt/provider/spark_api.py +++ b/metagpt/provider/spark_api.py @@ -116,9 +116,9 @@ class GetMessageFromWeb: def __init__(self, text): self.text = text self.ret = '' - self.xinghuo_appid = CONFIG.xinghuo_appid - self.xinghuo_api_secret = CONFIG.xinghuo_api_secret - self.xinghuo_api_key = CONFIG.xinghuo_api_key + self.spark_appid = CONFIG.spark_appid + self.spark_api_secret = CONFIG.spark_api_secret + self.spark_api_key = CONFIG.spark_api_key self.domain = CONFIG.domain self.spark_url = CONFIG.spark_url @@ -153,7 +153,7 @@ class GetMessageFromWeb: data = { "header": { - "app_id": self.xinghuo_appid, + "app_id": self.spark_appid, "uid": "1234" }, "parameter": { @@ -191,9 +191,9 @@ class GetMessageFromWeb: def _run(self, text_list): ws_param = self.WsParam( - self.xinghuo_appid, - self.xinghuo_api_key, - self.xinghuo_api_secret, + self.spark_appid, + self.spark_api_key, + self.spark_api_secret, self.spark_url, text_list) ws_url = ws_param.create_url() From c0f9bfcd18ece39ec0ccac2ca0047bb8a09473b1 Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 22:49:10 +0800 Subject: [PATCH 27/30] a --- config/config.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/config.yaml b/config/config.yaml index 444f55efd..250c7efa1 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -12,6 +12,13 @@ OPENAI_API_MODEL: "gpt-4" MAX_TOKENS: 1500 RPM: 10 +#### if Spark +#XINGHUO_APPID : "YOUR_APPID" +#XINGHUO_API_SECRET : "YOUR_APISecret" +#XINGHUO_API_KEY : "YOUR_APIKey" +#DOMAIN : "generalv2" +#SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat" + #### if Anthropic #Anthropic_API_KEY: "YOUR_API_KEY" From 64e16e9ea10a450aea908085f51fdac0cca977f4 Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 22:52:43 +0800 Subject: [PATCH 28/30] s --- tests/metagpt/provider/test_spark_api.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/metagpt/provider/test_spark_api.py b/tests/metagpt/provider/test_spark_api.py index 1ff159b54..bfa2bf76f 100644 --- a/tests/metagpt/provider/test_spark_api.py +++ b/tests/metagpt/provider/test_spark_api.py @@ -6,4 +6,6 @@ def test_message(): llm = SparkAPI() logger.info(llm.ask('只回答"收到了"这三个字。')) - logger.info(llm.ask('写一篇五百字的日记')) + result = llm.ask('写一篇五百字的日记') + logger.info(result) + assert len(result) > 100 From c53fa0c7b23bff8ef75a43dcae04231a01e1c15f Mon Sep 17 00:00:00 2001 From: zhouzinimg <69280251+zhouzinimg@users.noreply.github.com> Date: Wed, 18 Oct 2023 23:42:38 +0800 Subject: [PATCH 29/30] aa --- config/config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/config.yaml b/config/config.yaml index 250c7efa1..b2c50991d 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -13,9 +13,9 @@ MAX_TOKENS: 1500 RPM: 10 #### if Spark -#XINGHUO_APPID : "YOUR_APPID" -#XINGHUO_API_SECRET : "YOUR_APISecret" -#XINGHUO_API_KEY : "YOUR_APIKey" +#SPARK_APPID : "YOUR_APPID" +#SPARK_API_SECRET : "YOUR_APISecret" +#SPARK_API_KEY : "YOUR_APIKey" #DOMAIN : "generalv2" #SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat" From 1b6615baf9d973182114222c9f66fc510cc2fe24 Mon Sep 17 00:00:00 2001 From: Smoothieewastaken Date: Thu, 19 Oct 2023 11:51:22 +0545 Subject: [PATCH 30/30] fixed typos from readme.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4bc480a01..d2b5f2006 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ ### Installation Video Guide ### Traditional Installation ```bash -# Step 1: Ensure that NPM is installed on your system. Then install mermaid-js. (If you don't have npm in your computer, please go to the Node.js offical website to install Node.js https://nodejs.org/ and then you will have npm tool in your computer.) +# Step 1: Ensure that NPM is installed on your system. Then install mermaid-js. (If you don't have npm in your computer, please go to the Node.js official website to install Node.js https://nodejs.org/ and then you will have npm tool in your computer.) npm --version sudo npm install -g @mermaid-js/mermaid-cli @@ -127,7 +127,7 @@ # Step 3: Clone the repository to your local machine, and install it. - **Use your own Browsers** - pyppeteer alow you use installed browsers, please set the following envirment + pyppeteer allows you use installed browsers, please set the following envirment ```bash export PUPPETEER_EXECUTABLE_PATH = /path/to/your/chromium or edge or chrome