From cc2bb8898900d342fb90172736c5dab8fd5e84ea Mon Sep 17 00:00:00 2001 From: administrator Date: Fri, 31 Mar 2023 18:23:38 +0800 Subject: [PATCH] init --- .idea/.gitignore | 8 ++ .idea/aws.xml | 17 +++ .idea/chatgpt_embeddings.iml | 10 ++ .idea/inspectionProfiles/Project_Default.xml | 50 ++++++++ .../inspectionProfiles/profiles_settings.xml | 6 + .idea/misc.xml | 4 + .idea/modules.xml | 8 ++ .idea/vcs.xml | 6 + gpt_1_embeddings_training.py | 52 ++++++++ gpt_2_create_question.py | 120 ++++++++++++++++++ gpt_3_query.py | 27 ++++ source_data/qa.xlsx | Bin 0 -> 8755 bytes trained_data/qa_embeddings.csv | 5 + 13 files changed, 313 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/aws.xml create mode 100644 .idea/chatgpt_embeddings.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 gpt_1_embeddings_training.py create mode 100644 gpt_2_create_question.py create mode 100644 gpt_3_query.py create mode 100755 source_data/qa.xlsx create mode 100644 trained_data/qa_embeddings.csv diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/aws.xml b/.idea/aws.xml new file mode 100644 index 0000000..03f1bb6 --- /dev/null +++ b/.idea/aws.xml @@ -0,0 +1,17 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/chatgpt_embeddings.iml b/.idea/chatgpt_embeddings.iml new file mode 100644 index 0000000..74d515a --- /dev/null +++ b/.idea/chatgpt_embeddings.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..ec89f97 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,50 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..568d64d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..583ecdc --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/gpt_1_embeddings_training.py b/gpt_1_embeddings_training.py new file mode 100644 index 0000000..98e6a6f --- /dev/null +++ b/gpt_1_embeddings_training.py @@ -0,0 +1,52 @@ +# 参考文章 +# https://github.com/openai/openai-cookbook/blob/main/examples/Question_answering_using_embeddings.ipynb + + +import openai +import pandas as pd +import time +from gpt_0_basic_info import api_key, excel_file_path, csv_file_path + +COMPLETIONS_MODEL = "text-davinci-003" +EMBEDDING_MODEL = "text-embedding-ada-002" + + +def get_embedding(text: str, open_ai_api_key: str, model: str = EMBEDDING_MODEL) -> list[float]: + openai.api_key = open_ai_api_key + result = openai.Embedding.create( + model=model, + input=text + ) + return result["data"][0]["embedding"] + + +def compute_doc_embeddings(df: pd.DataFrame, open_ai_api_key: str): + """ + Create an embedding for each row in the dataframe using the OpenAI Embeddings API. + + Return a datafram with embedding + } + """ + df['embeddings'] = '' + df['embeddings'] = df['embeddings'].astype('object') + + for idx, r in df.iterrows(): + print(idx) + df.at[idx, 'embeddings'] = get_embedding(r.QandA, open_ai_api_key) + time.sleep(1) + + return df + + +def getembeddings(api_key, excelfilepath, csvfilepath): + df = pd.read_excel(excelfilepath) + df['prompt'] = df['prompt'].apply(lambda x: x.replace('\n', '')) + df['prompt'] = df['prompt'].apply(lambda x: "当有人问:" + x + '') + df['completion'] = df['completion'].apply(lambda x: "请回答:" + x) + df['QandA'] = df['prompt'] + df['completion'] + df = compute_doc_embeddings(df, api_key)[['QandA', 'embeddings']] + df.to_csv(csvfilepath, index=False, encoding='utf-8_sig') + + +if __name__ == '__main__': + getembeddings(api_key, excel_file_path, csv_file_path) diff --git a/gpt_2_create_question.py b/gpt_2_create_question.py new file mode 100644 index 0000000..f2861c2 --- /dev/null +++ b/gpt_2_create_question.py @@ -0,0 +1,120 @@ +import numpy as np +import openai +import pandas as pd +import ast +from gpt_0_basic_info import api_key, excel_file_path, csv_file_path + +MAXCONTEXTLEN = 1500 + +COMPLETIONS_MODEL = "text-davinci-003" +EMBEDDING_MODEL = "text-embedding-ada-002" + + +def get_embedding(text: str, open_ai_api_key: str, model: str=EMBEDDING_MODEL) -> list[float]: + + openai.api_key = open_ai_api_key + result = openai.Embedding.create( + model=model, + input=text + ) + return result["data"][0]["embedding"] + + +def compute_doc_embeddings(df: pd.DataFrame, open_ai_api_key: str) : + """ + Create an embedding for each row in the dataframe using the OpenAI Embeddings API. + + Return a datafram with embedding + } + """ + df['embeddings'] = '' + df['embeddings'] = df['embeddings'].astype('object') + + for idx, r in df.iterrows(): + df.at[idx, 'embeddings'] = get_embedding(r.content, open_ai_api_key) + + return df + + +def vector_similarity(x: list[float], y: list[float]) -> float: + """ + Returns the similarity between two vectors. + + Because OpenAI Embeddings are normalized to length 1, the cosine similarity is the same as the dot product. + """ + return np.dot(np.array(x), np.array(y)) + + +def get_query_similarity(query: str, df: pd.DataFrame, open_ai_api_key: str): + """ + Find the query embedding for the supplied query, and compare it against all of the pre-calculated document embeddings + to find the most relevant sections. + + Return the list of document sections, sorted by relevance in descending order. + """ + openai.api_key = open_ai_api_key + + query_embedding = get_embedding(query, open_ai_api_key) + + #df['similarities'] = 0 + + df['similarities'] = df['embeddings'].apply(lambda x:vector_similarity(query_embedding, x)) + + #print(df['similarities']) + ''' + for idx, r in df.iterrows(): + df.loc[idx, 'similarities'] = vector_similarity(query_embedding, r.embeddings) + ''' + + two_largest = df['similarities'].nlargest(2).index.tolist() + + # print('get_query_similarity!!!!!!!!') + + context = '' if df.loc[two_largest[0]]['similarities'] < 0.8 else df.loc[two_largest[0]]['QandA'] if (df.loc[two_largest[1]]['similarities'] < 0.8 or (len(df.loc[two_largest[1]]['QandA'] + '\n' + df.loc[two_largest[0]]['QandA'])>=MAXCONTEXTLEN)) else (df.loc[two_largest[1]]['QandA'] + '\n' + df.loc[two_largest[0]]['QandA']) + # print(two_largest[0], df.loc[two_largest[0]]['similarities'], df.loc[two_largest[0]]['QandA']) + # print(two_largest[1], df.loc[two_largest[1]]['similarities'], df.loc[two_largest[1]]['QandA']) + # print(len(df.loc[two_largest[1]]['QandA'] + '\n' + df.loc[two_largest[0]]['QandA'])) + # print(context) + + return context + + +def _decorate_query(query: str, df: pd.DataFrame, open_ai_api_key: str)-> str: + + try: + context = get_query_similarity(query, df, open_ai_api_key) + if context != '': + header = """请使用上下文尽可能真实、自然地回答问题,如果答案未包含在上下文中,请不要编造回答,并且不要在回答中包含”根据上下文”这个短语。\n\n上下文:\n""" + #header = "上下文:\n" + query = header + context + "\n\n 问题: " + query + "\n 回答:?" + # print(query) + return query + except: + # print('ERROR 444444') + + return query + + +def decorate_query(query: str, open_ai_api_key, filename='foodsembeddings.csv')-> str: + filepath = filename + try: + df = pd.read_csv(filepath) + if df.empty: + return query + else: + try: + df['embeddings'] = df['embeddings'].apply(lambda x: ast.literal_eval(x)) + return _decorate_query(query, df, open_ai_api_key) + except Exception as e: + print(e) + return query + except Exception as e: + print(e) + return query + + +if __name__ == '__main__': + query = '亁颐堂是做什么的' + print(decorate_query(query, api_key, filename=csv_file_path)) + + diff --git a/gpt_3_query.py b/gpt_3_query.py new file mode 100644 index 0000000..27cdec2 --- /dev/null +++ b/gpt_3_query.py @@ -0,0 +1,27 @@ +import openai +from gpt_2_create_question import decorate_query +from gpt_0_basic_info import api_key, csv_file_path +openai.api_key = api_key + + +def question(query): + response = openai.ChatCompletion.create( + model='gpt-3.5-turbo', + messages=[ + {"role": "system", "content": "You are a helpful assistant."}, + {"role": "user", "content": query} + ], + max_tokens=100, + n=1, + temperature=0.5, + ) + + output_text = response.choices[0].message['content'].strip() + return output_text + + +if __name__ == '__main__': + query = '亁颐堂是做什么的' + new_query = decorate_query(query, api_key, filename=csv_file_path) + print(new_query) + print(question(new_query)) diff --git a/source_data/qa.xlsx b/source_data/qa.xlsx new file mode 100755 index 0000000000000000000000000000000000000000..a966ad262d47095898fc0113ecd396402e21ef13 GIT binary patch literal 8755 zcmeHtgsK_kY0A$4d|BnCR9Vkf|Q0w3U%AYD+$*yuL z%~wfbKHLfGAz;&#_}B^QF0wR&+1ua1o?QZEa)=!SD+%E9{tvzn+Esy_YQti>8@2An zh4y~bHKi2f?&{fQY$YX6b~7~C%O;|f;w3jTdv22fcRVMk0N5%MK# zwnq6wOyiDI{(CKTl zT4*)6U8F0wxU&4V*o?a{w20o=B1o;uPf_(Q_Nd6PI}ya*8ekmY*UFL* zccgLgL4erKjME4v6-pO2It|bO#Z{A(J^;f5J0*$pR0j6jX%{XTmkIB6E>c>3fW1hx zQX`{x;#hjq1Cvu17Gw(xdfVGqFZ5A;$MRkPxL^ch6;=N1hUf%;I)=dL zou%FlQUC4XuSVg!-_tgNA6%mY05>-%0FA$xWsNS+{UZd|R1j8&jWA0yH)}_CZmys6 zzvlQqY=eJ#^^#;&^$wo9QF{tk(Y>b=3yDA(Wp8PPMmn9K5XE`Cn&){8lnbrQ_kcPS z;V6%Tn}e?U=N81CZ}!ritnin_5fF*quk|jCO22UR#9(7`OMB#6vfPR9HE}#~0)4FH z%i`7if~~l|Fh{v>@&2Q+?{bwuIM)*jEW$VUqDaJ{p@!Y62A?g?%8({xw0BCQD(VEY zHzDwh;Hk8N4IIfBVU_JsC~>d5h3!mPK(8a+@i~RAwweeuA?H@W(xj*~h_#)%@QFvV1!Qu{w%-_xr-)XbL|gBGliFBvc|L{SdJu z9}q@D0l-A^apeAwop?LDfh?SzK|iC{A2x%82w?~*|J$QPOI5j(2iS~#9nIsN;YEx; zRoB(gzGAicdea~~cY^*p%$H{5kQ_@<496ER@@<@s z{j5#?1oNQj%0|_92-KE$arf)JVrA;0hvETI9<`tYjJ7`>Vl>u^tgoD?mV^1h$!5=Y2jn-`_Lq}06gQtSPWcTaD@z%v6bRLV&g=l zSCQ|>O+b5no0W#kqbdC(INsQ2jcJW@NQ)K>e?8ht@6+o&jst?Q0S>9zGFwbu_fm;V zayMo8OVHt3y|E6{{i%5reRgGcx;=D7xVm$+HBIxxWjNq%zyU`1w2GBemqRl~Qb|6= zx8g8C2dUyJ_a!#ADJM(YTnE5PWV-R5pN5sLL6iQ3%xF4+l{Z6$2$n4-X_x_so|TPtI9>NjqycUHamDCAfQ;0W2G{)?y$5Pb$?hqxvhO57tRc zT;@hj)?PkZ#j8HiK0*GuHumm?KA+zGtTd8&ZksybR~VRl@^$ zy%NQ6u=CW5YUYWcL~VJK3;1$`?DC7|(p&orbo(UpOsv_>6_bQewM4vmb>l^QK_AQn zBN&Z+)5>Xwz)89Felxl7T2J7rV{tc3b+mT>>EH5o2f$-eL<{%77-`9zh?fNITgjCCyLv=tHq*YD*J$ZzA~#*6Z?%dA$%Sxd^+z=^Gwa5Z3Jh6 zSo=Zuby75bDzqPJ+(OS!tBa*)CE&Ih{MV-%+U9P}2b@)yvk+ZrT5C zOK&FjjuzFsWF;Zi6q3%5dfW>|<0-4DfeiJOKA(GuBNXT9Rpd{&X~VvqZjJV(usk!z z?uO3r>ytfm^s7u!f}mj()krds7yU@W)hMk~qu3Ic46`=WE#i3`vQ?D(l)PEpdqvGS zc_#^Q?yC^=&96;*yC#Tfba>(@YUXH}fh~ofxPRR66&aq0EP*b~FwSzKDNUnd3Tqkv zgG5H)yGjLmJO3}cbLowHk_e}R*)3T5up)}7eBoi6lr_ksv}bbf^I#`TEK1m}uq37| zJIv54e0l8Z45wV+UbAthkg7WK`!DZDa&DgJxP5KP8FQ@6H=0N=ZzAy!mc(0?w47obR<82W{>kC3-b%6bgr0 z%x>rs|47aIEh_^N>3c0+_g8irftU)5f81(hqP`(ozOIxAr96l^tcjkMr z!L>t=6|~PYZ$Fn@zEGTsw^68&%+$NLma`kS(`&Zl#JlTcc%j;ivLkV-$aA13yXZa| zx-Qy*PcHgpgw|tp7;i0ad0R}SgZgwIN;u*k*qT+E79jLcMPq1H;K|(G1#$z z?+h&Oo7VKJe@vQHB||tO5Wj>_{5;G4a_$~>)=t*kzh>T_*0OB?cb*dnb29ajkNlEXFmAszUvodb7R~7}xBOs-8{$9po6Q?IU1m5QaK$ zbGXSbyS^ltGx1?PasoAJ+*2zhWKQ%wIrOP5gUN?W&^pSUx_3)e<}&XIHz+7c?ud$) zDx#WwkFgmd&!r;0fL0yi2XPoj({n9J_Z*MEHd<&kmG_UtCl+;l*qC#{zI`Wr!`|c= zI@pt;7AU#jvD@8>tWo)#k{@H4cK%Eozz_YX;Lh~{o;|gD9FANZdY~M)7xaFyklbf5 z*fP#tFi{evT&f{B7+dn*BcMFuT3Di@GvDAvz^}{scEM)wqBDgLS}d!gdfl)oP$2i% zPB4)?FIvw>bU%8~Z@EcM`k`ZyvKO!AyJ=kzmS1NT9e^Q`URvvM35ib>lSUVQu2m-f zddw$FmL@bM@@Sj#U7Tk0t8_^-lXo%M;_>{TKJ1tKrA&Q2%aC{uxt?Y$Qxlv6myLTo z_z=aBVmAx@d$}HEMokyzbHRw*_x!T%wW;_e*WM95Z0jt&HR#8|3rVwe>TW~y<*rk> z+4c2R7vAF4@c>`kDLATIBtVYfQ`X$sd_xZb*{euNYFlSp-dKEI4vo7loMjk5Au1pL z$U>Z{4jW7wt88w8rM82lwqu5&v@m_Y7Gh@f{g=G6me7ZQIx927h{ppS;5{*;&3b># zteJ}h4F?9F3geIpf{X!{ZuG%MqBqEcuCbB#Usr0!bLROg#Nba^KIkK}Jm2@139&uk-d2fuHCwE5KJFCsftzWwpCjDQe|<>qkc8$mXf6zE0K z#bTf@4B?-wG~3r^(OjLkZbz52S)-)iqr+oafbL?TQf{;uWA28RY^L-hC#k1F8PhRd zLifJJ4gvMpP>P&md}T(JQ-6dNV9*$j?Q901Ie@*dBt$+B#vD6|G-ZEobh(ip+|9H0 zBkcfHiQ5JyZ>uNoT<#EwlQq!eF;iV0S{ztL&r)ggkoUq+pi?WuPD- z81%evwd~0--dh$SKi8hixKOTLGql1)B;^Dl)_)*eF}ztH`g-q&Ib|dZtY7SF4`6G% zf7RH&z#9#+NetME_C!m8f|bieqnRJ4r_WMa&C=$iW+=+AcaW*NYGz%S_vx;EFew<% zW|plCqEw<7oQ&?RAxgrYmC`n0wcE_}p0B|F=sS(dDYAR_&RoVA(S#X<|pA1n3=*U3{+2WgSBz^bt!V|CpKv@X*e4Mdi#4G;U(lDaA$T;N91e zOah^fc}xR?U{a<68LwkmIbB&_(cCyPV!l|eHDTjt-=Y#e%ymjNvUlG_TEJcQ;bNXX zg?VznF0x+bAK_S6k=0!-u_qnF6YK+(^ec`(O;xU&71-C>ngx}H%hU`Jq<{M0%tL24 z-amBLA^CglUFAV8Lsf?-^|ZtE_`5N4HVGAvR!nSzDjM}`+`{zB*>#tTUr=3~VhRMI zu8c%O78!|+-w?D2SYeU`p3k^)QSQfzk#teumt|T%64@o>{&t}$9>ZqJPNs7ewWn(+ zU8lK$E}bWU>0sLWB=`%2Kn9T#H!PWleZx+7cvIn(J6;Dclezg8#z3Uahy05mI zHAU|RyO3XN<7KrtxxdT95M~8CV>Qs;Ts$wc!|*&>K_t2@o8`mPGyBs|H6%X5G1V5X zWCbejGs8)VGe%?uMfoA{M;;Uuk}@1DySzb91}0VcIl*oAU_6sX;G?=2mi**v&k(I# z`I9Q=_^*-eP4JOqY`0pUo-+o>AWzWO{5KWd(0&XB8_Q2q8_v^FuDp=4!&WRpPH1G_ zw%~qPtR#t6^(%w#XlVh!w4sV?@0k*awc1UT^Az%;=3+#;&8y4D-g8khcS|_(GLksG(!~KsyzmjWnG1_tE+xs499NTAJ0VNzSPzcg z+3PlxM!SzT(WgK9c6?dBm8TKSw?Q;ptv5i`o#EOtU7}yP!?&Jhb(#}&75g4!2nQlH zl#44xc|>T&bf?+Pyq4k+3!>I0>r*7kHue~z6o($04-w42lMdS(%dn!#-*}+nzX+nE zv4VhkQrpG!(C)V5vt#ACBD>7WaeIJwP{zk3?# z{Oh59P5gsxciMS?sKaJhmq>c}8*etcAQ(BVz&R&^@vI61qMOfbs{+ore6otbS~2xa zy%-Y`bqu!?)@?+Dma zJ*dkYQy(G8RK1d_qI_>OVzfoWMq|+f zB3zCa^n*6UY*M6F?BhnIi3jk|ckb}-M~Un@=N$K+R5muP(IbmcnI=M^_=tL(m9wRWo3o2Mx23b2^?y4_|CZqp zTnqh6fCAbT)> z#TKzbrVFI4O+C^WCRF)sd3I1U=de*tEGdf{4AhsQCmWiuG+fox+!tw{TeELrgfcm` zlq)rwfTf+CbsA;9-HA)&t?2TN7Hn8tkN0N5qN9s+5m^ljYKaC@-WA>rsU&~)Eh5E2 z?v?Z05rCD4KU>N_+Fs`S>#1$SdQ>q&8U%`TV`klH|`qQBHqW1a9;UdXs3%PgAG*&z|HC);d8aioWemNpL*g+SpfgcJaZS9e~E|Kvj2|E=>9Kcx9bAcGF_2 zzNF)&<9_5zxLZ<=U`}xl!gY+MpYK|E&wo1E%6 zSH4O?H~MJ2HC&0<0;SV_zF$Lka><&<8^*H_A9O|>-Ib>9%R6ok?$yMO# zV8P3@&>Fv~+93+spf@eGOi@H^{bgU0w`ms!$pSF2Td*C_@~s;j3OlE-vPafFNy zFik?03s<$JP3Vrcj6$C)7AKHUQQYBGK4ItH*Rgs{XO5>AgPV({es{X=c^|M*Kyw^V zGWhEHcn5y!&uBmck`;2w>OLuj;o;o7CwPK>9|OB5f>IfG?5zV@k|_YD9*Pl#@7-xI z6~jN2d4R*crg-DSEjt#r_}(Q(!tjQ1p*q6_E8@kR7*~-e4!-hrNJlLmnrByBe3_uZ zZzrDuu*vYo7PCkoQQb$&+Yj?)cD8x56yZF<-ZE} zYa{Uw;LkN3VJm-XE8YhFwYli zGK~QLu7lo&-Yy3HhJHc>F9h^!0?E(OI5T6i47|){l`R)Gz Du6icq literal 0 HcmV?d00001 diff --git a/trained_data/qa_embeddings.csv b/trained_data/qa_embeddings.csv new file mode 100644 index 0000000..4e13eb1 --- /dev/null +++ b/trained_data/qa_embeddings.csv @@ -0,0 +1,5 @@ +QandA,embeddings +当有人问:公司名称请回答:亁颐堂科技有限责任公司,"[-0.009886950254440308, -0.021760500967502594, -0.0056276023387908936, -0.035206228494644165, -0.02828601934015751, 0.016445359215140343, -0.009544886648654938, 0.01872139796614647, -0.00016825659258756787, 0.009406746365129948, 0.01512973103672266, -0.0004884271766059101, 0.010821047239005566, -0.004262637346982956, -0.008045069873332977, -0.002205322729423642, 0.01249847374856472, 0.011143376119434834, 0.047020573168992996, 0.0030062117148190737, -0.008748931810259819, 0.00420014513656497, -0.011255204677581787, 0.026825672015547752, -0.013840414583683014, -0.0018336576176807284, 0.028733333572745323, -0.026799358427524567, 0.0033367634750902653, 0.010557921603322029, -0.0011355520691722631, 0.006180166266858578, -0.018063584342598915, -0.014287728816270828, -0.02697039023041725, -0.017984645441174507, -0.0168137364089489, 0.0037298076786100864, 0.015484951436519623, -0.006545253098011017, 0.022010469809174538, 0.015156043693423271, 0.0072228023782372475, 0.006331463810056448, -0.017800457775592804, 0.022865628823637962, -0.00987379439175129, -0.01318260096013546, 0.0036410028114914894, 0.008341087028384209, 0.01182092446833849, 0.012833959423005581, -0.021010592579841614, -0.009472527541220188, 0.008334508165717125, 0.014156165532767773, -0.0161953903734684, 0.015103418380022049, -0.007163598667830229, -0.01585332676768303, 0.019168712198734283, -0.007617490831762552, -0.029522709548473358, 0.014550854451954365, -0.016497984528541565, 0.0035817993339151144, -0.01099865697324276, -0.002058959100395441, 0.005042147357016802, -0.002162564778700471, 0.017445238307118416, 0.021405281499028206, 0.024128632619976997, 0.00986721646040678, 0.015208669006824493, -0.0010960832005366683, -0.011360454373061657, -0.0023615537211298943, 0.008268726989626884, 0.0007700540008954704, 0.004779021721333265, -0.01069606188684702, -0.019089773297309875, 0.018800335004925728, 0.030917277559638023, 0.005614446010440588, -0.025102198123931885, 0.02931221015751362, -0.011610424146056175, -0.02616785652935505, 0.028233394026756287, 0.010334264487028122, 0.003637713612988591, 0.008485806174576283, -0.0051802885718643665, 0.013722008094191551, -0.000894627592060715, 0.033785346895456314, -0.006801800802350044, -0.020852716639637947, 0.012682661414146423, 0.013577288947999477, -0.006637347396463156, -0.005298695061355829, -0.028522832319140434, -0.01465610507875681, 0.02357606776058674, -0.0003979777102358639, 0.014537698589265347, -0.03365378454327583, -0.009038370102643967, 0.004604700952768326, 0.005752586759626865, -0.012669505551457405, 0.0017349855042994022, -0.016892673447728157, 0.00986721646040678, 0.013708852231502533, 0.003239735960960388, -0.009137041866779327, 0.015458638779819012, 0.01782676950097084, -0.00239937799051404, -0.0048842718824744225, 0.019681807607412338, 0.011242047883570194, -0.04028455540537834, 0.015261294320225716, 0.0215105302631855, -0.003904128447175026, 0.011886706575751305, 0.021484218537807465, 0.026865139603614807, -0.009893528185784817, -0.018076740205287933, -0.0009562976774759591, 0.010886828415095806, 0.030075274407863617, -0.027786079794168472, -0.015221824869513512, 0.023312943056225777, 0.013761477544903755, -0.008794978260993958, 0.0005459859385155141, 0.015616513788700104, -0.002624679356813431, -0.003067059675231576, 0.02501010335981846, 0.003410767763853073, -0.003407478565350175, -0.013261537998914719, -0.011294673196971416, 0.027759768068790436, -0.00157053186558187, 0.01886611618101597, 0.004344864282757044, 0.013360210694372654, 0.016484828665852547, -0.015366544015705585, -0.005894016940146685, 3.9237602322828025e-05, 0.02445754036307335, -0.0031147513072937727, -0.002968387445434928, 0.0205632783472538, 0.024418070912361145, -0.001619867980480194, -0.0004728040948975831, 0.01665586046874523, 0.002572054276242852, -0.009031792171299458, 0.010564499534666538, -0.008577900007367134, -0.010603968054056168, 0.002098427852615714, -0.003034168854355812, -0.001993177691474557, 0.001411834149621427, -0.029128022491931915, -0.020471183583140373, -0.022563034668564796, -0.035969290882349014, 0.008117429912090302, 0.02322084829211235, -0.0074530369602143764, 0.0005529752233996987, 0.006009134463965893, 0.015221824869513512, 0.02193153277039528, -0.016313796862959862, 0.025194291025400162, 0.026733577251434326, 0.002157631330192089, 0.00952515285462141, -0.6049787402153015, -0.037337545305490494, -0.016221703961491585, -0.005663781892508268, -0.023523442447185516, 0.012866850011050701, 0.016379578039050102, 0.014945543371140957, 0.01952393166720867, -0.05483540892601013, -0.0047329748049378395, 0.030785713344812393, -0.008545009419322014, -0.01564282737672329, -0.011860393919050694, -0.033574845641851425, -0.001451303018257022, 0.023312943056225777, 0.005394078325480223, -0.011570955626666546, -0.0013863438507542014, 0.019589712843298912, -0.007683272007852793, 0.003147641895338893, 0.015879640355706215, 0.010906563140451908, 0.03136458992958069, -0.024707509204745293, -0.02902277186512947, 0.038837362080812454, -0.02048434130847454, 0.019168712198734283, 0.02773345448076725, 0.020115964114665985, 0.05415128171443939, 0.019589712843298912, -0.007874038070440292, 0.03483784943819046, 0.015116575174033642, 0.03628504276275635, -0.017668895423412323, -0.003940308466553688, 0.014064071699976921, -0.0037626984994858503, -0.030496275052428246, 0.03368009626865387, 0.02773345448076725, -0.0011618647258728743, -0.0054203905165195465, 0.03318015858530998, -0.0070320358499884605, -0.035679854452610016, -0.028180768713355064, 0.012491895817220211, 0.011643314734101295, 0.012347176671028137, 0.020365934818983078, -0.040547680109739304, 0.007735897321254015, 0.00843975879251957, 0.00551577378064394, 0.017392612993717194, -0.009808013215661049, -0.029075397178530693, 0.005792055744677782, 0.013853571377694607, -0.012116941623389721, -0.002164209494367242, 0.032285530120134354, -0.0005147397750988603, 0.00684784771874547, 0.022168345749378204, -0.006861004047095776, -0.0016741376603022218, 0.002473382046446204, 0.023378724232316017, 0.013603601604700089, 0.0015359966782853007, 0.005598000716418028, 0.023326098918914795, -0.004690216854214668, -0.0015820435946807265, 0.007005723193287849, -0.011663049459457397, -0.007064926903694868, 0.006686683278530836, 0.006568276789039373, 0.0022086119279265404, 0.016616391018033028, 0.01474819891154766, 0.013465460389852524, -0.00459154462441802, 0.012314286082983017, -0.006285416427999735, -0.004420512821525335, 0.028785958886146545, -0.013011569157242775, -0.020458027720451355, 0.010110607370734215, 0.011189422570168972, -0.00915019866079092, -0.02043171599507332, 0.0024059561546891928, 0.010492139495909214, 0.01065659336745739, 0.038889989256858826, -0.027628205716609955, -0.0084989620372653, 0.027680829167366028, -0.017129486426711082, 0.002562187146395445, -0.03223290666937828, -0.009544886648654938, 0.003320318181067705, -0.003854792332276702, -0.03365378454327583, 0.015353388153016567, 0.03191715478897095, 0.024062851443886757, 0.008176633156836033, 9.167003554466646e-06, -0.0028746488969773054, 0.036653418093919754, 0.006867582444101572, 0.024233883246779442, 0.00715702073648572, -0.02232622168958187, -0.002504628384485841, -0.01906346157193184, -0.004279082641005516, 0.011268360540270805, -0.042994748800992966, 0.02254987694323063, -0.024681195616722107, 0.011557798832654953, 0.013465460389852524, 0.01843195967376232, -0.020129119977355003, -0.0038679486606270075, -0.009775121696293354, -0.00546643789857626, -0.01288000587373972, 0.01502448134124279, -0.010584233328700066, -0.0032972947228699923, -0.022852472960948944, -0.010156654752790928, -0.0046145678497850895, -0.006278838496655226, 0.0027463750448077917, -0.01741892471909523, -0.006285416427999735, 0.006167009938508272, 0.03444316238164902, 0.012597145512700081, 0.006055181380361319, -0.007617490831762552, -0.02204993925988674, -0.008012179285287857, -0.010090872645378113, 0.02090534195303917, -0.002050736453384161, -0.016090139746665955, -0.0015244848327711225, 0.017787301912903786, -0.026404669508337975, -0.003456814680248499, 0.005223046522587538, -0.012077472172677517, -0.010807890444993973, -0.005084905307739973, -0.004236324690282345, -0.009176511317491531, 0.019023992121219635, 0.014129853807389736, 0.014129853807389736, 0.0015573756536468863, -0.006712995935231447, 0.006341330707073212, -0.023760255426168442, 0.010176388546824455, 0.015563888475298882, -0.024418070912361145, -0.011222314089536667, 0.018129365518689156, -0.007025457918643951, -0.005558531731367111, 0.03444316238164902, 0.02199731394648552, 0.0026312575209885836, -0.03531147539615631, 0.03789011016488075, -0.005265804473310709, 0.0006972832488827407, 0.014195634983479977, 0.0037955890875309706, 0.019931776449084282, -0.0066044568084180355, 0.0035127289593219757, 0.0207079965621233, 0.01024217065423727, 0.029864773154258728, 0.012044581584632397, -0.0045257629826664925, -0.0005912106717005372, -0.006390667054802179, 0.013958822004497051, -0.01290631853044033, 0.024365445598959923, 0.022457784041762352, -0.0006820713169872761, -0.01940552517771721, -0.003644291777163744, -0.029680585488677025, 0.006946519948542118, 0.023720787838101387, 0.00997904408723116, 0.004246192052960396, -0.003548908745869994, 0.007913507521152496, -0.007768787909299135, -0.007183333393186331, 0.0023796434979885817, -0.006479471921920776, 0.011327563785016537, -0.007841147482395172, -0.0012186011299490929, 0.042389560490846634, -0.002667437307536602, 0.010774999856948853, -0.02220781333744526, 0.001725118258036673, 0.0026230348739773035, -0.004150808788836002, -0.0006027224590070546, 0.02219465747475624, 0.02731245383620262, -0.0339958481490612, 0.05007283389568329, -0.00645644823089242, -0.003782432759180665, 0.02028699591755867, 0.012287973426282406, -0.023733943700790405, 0.0022184790577739477, 0.03565353900194168, 0.028022892773151398, -0.007834569551050663, -0.014866605401039124, 0.02090534195303917, -0.033443283289670944, 0.024852227419614792, -0.014774511568248272, -0.032811783254146576, 0.02553635463118553, 0.008380555547773838, -0.0026871718000620604, 0.02204993925988674, 0.027470329776406288, 0.010492139495909214, -0.00017411525186616927, 0.01898452453315258, 0.02690460905432701, 0.019997557625174522, 0.01578754559159279, -0.01647167280316353, 0.019694963470101357, 0.006880738772451878, 0.007249114569276571, -0.02103690430521965, -0.007091239094734192, -0.009919840842485428, 0.0255495123565197, 0.010327686555683613, 0.015484951436519623, -0.000760597875341773, -0.004808623343706131, -0.019142398610711098, -0.013366788625717163, 0.006666949018836021, -0.012919475324451923, -0.007275427225977182, -0.005318429321050644, 0.014300884678959846, 0.008314774371683598, -0.034601036459207535, -0.023181378841400146, 0.02411547675728798, -0.020984278991818428, 0.031732965260744095, -0.02152368798851967, -0.01218930073082447, 0.014498229138553143, 0.028443895280361176, -0.006453159265220165, 0.001276159891858697, 0.027917644008994102, -0.017642581835389137, -0.024562789127230644, -0.011932753026485443, -0.004617857281118631, -0.011511752381920815, -0.007005723193287849, -0.011899862438440323, 0.026404669508337975, -0.00016085617244243622, -0.0008436469943262637, -0.010735531337559223, 0.010557921603322029, -0.020655373111367226, 0.0116827841848135, -0.02028699591755867, -0.018497740849852562, -0.018800335004925728, 0.00357851036824286, 0.011544642969965935, -0.04215274751186371, -0.02014227770268917, 0.01987915113568306, -0.021405281499028206, 0.010663171298801899, -0.002624679356813431, -0.030575213953852654, 0.014813980087637901, 0.08830500394105911, 0.003742964006960392, -0.009544886648654938, -0.006117674056440592, -0.03765329718589783, 0.018392490223050117, -0.0379953607916832, -0.06057155132293701, 0.01722158119082451, -0.009544886648654938, -0.016721641644835472, 0.006071627140045166, 0.017497863620519638, -0.005844681058079004, -0.0020441582892090082, -0.00621634628623724, 0.007597756572067738, 0.014182478189468384, 0.003815323580056429, 0.022181501612067223, -0.04865195229649544, 0.0031459974125027657, 0.013774633407592773, 0.01250505167990923, -0.003742964006960392, -0.016340110450983047, 0.020023871213197708, 0.04165280982851982, 8.561865251976997e-05, -0.020168589428067207, 0.011866971850395203, 0.0013485195813700557, -0.009729075245559216, -0.005930196959525347, -0.01570860855281353, 0.005229624453932047, -0.023812880739569664, 0.023273473605513573, 0.0020490919705480337, -0.017879394814372063, 0.008643681183457375, 0.02547057345509529, 0.014958699233829975, -0.011761721223592758, 0.02574685588479042, -0.0034140567295253277, 0.011038125492632389, -0.002751308726146817, 0.007755632046610117, -0.0023960890248417854, 0.019905464723706245, 0.0010664815781638026, -0.023615537211298943, -0.025917887687683105, 0.0025358744896948338, -0.005111217964440584, -0.029891086742281914, -0.032680220901966095, -0.003139419248327613, -0.034811537712812424, -0.021905219182372093, -0.022378845140337944, 0.0006709707085974514, -0.011623580940067768, -0.02957533486187458, -0.003976488020271063, -0.0014628147473558784, -0.027970269322395325, 0.008242414332926273, 0.014800824224948883, -0.008387133479118347, -0.0036344246473163366, -0.031522467732429504, -0.009077838622033596, 0.01905030570924282, 0.009729075245559216, 0.007867460139095783, -0.0036969168577343225, -0.003555486910045147, 0.01870824210345745, 0.01645851694047451, -0.008663415908813477, -0.027680829167366028, -0.035074662417173386, 0.004160676151514053, 0.021023748442530632, -0.011551220901310444, -0.012952365912497044, 0.008854181505739689, -0.0011445970740169287, -0.002822023816406727, 0.001994822174310684, 0.031943466514348984, 0.011268360540270805, 0.012268238700926304, 0.009801434352993965, -0.008222679607570171, 0.004736263770610094, -0.006163720972836018, -0.008545009419322014, -0.018155677244067192, -0.0286807082593441, 0.0072228023782372475, -0.014761354774236679, 0.008663415908813477, 0.005542086437344551, 0.001595199923031032, 0.01027506124228239, 0.01134072057902813, 0.026312576606869698, 0.020852716639637947, -0.031601402908563614, 0.01437982264906168, -0.030890963971614838, -0.01686636172235012, 0.02636520192027092, -0.0033252518624067307, 0.026878297328948975, 0.019247649237513542, 0.0018188568064942956, 0.01003824733197689, -0.038416359573602676, 0.022576190531253815, 0.01506394986063242, -0.023391880095005035, 0.019971245899796486, -0.014708730392158031, 0.0038350580725818872, -0.02116846665740013, -0.005426968913525343, -0.012899740599095821, 0.007762209977954626, 0.014300884678959846, -0.0034469475504010916, -0.03925836458802223, -0.014906073920428753, -0.01851089671254158, 0.01027506124228239, 0.015445481985807419, -0.027707142755389214, -0.014011446386575699, -0.016405891627073288, 0.008584477938711643, -0.009636981412768364, 0.023457661271095276, -0.03423266112804413, -0.015221824869513512, 0.0059663765132427216, 0.021628936752676964, 0.014116697013378143, -0.005117795895785093, -0.003864659694954753, -0.021352656185626984, 0.011347298510372639, 0.013893039897084236, -0.049415018409490585, 0.0031196847558021545, -0.023602381348609924, -0.010261904448270798, -0.009511996060609818, 0.021063217893242836, -0.002341819228604436, -0.006025579757988453, 0.012899740599095821, 0.004223168361932039, -0.01431404147297144, -0.03449578583240509, -0.01728736236691475, -0.038626860827207565, -0.015327075496315956, 0.014103541150689125, 0.013162866234779358, 0.017787301912903786, -0.016721641644835472, -0.017853083088994026, -0.027101952582597733, -0.00915677659213543, -4.052239455631934e-05, -0.007387255784124136, -0.05957167223095894, -0.004617857281118631, -0.020405402407050133, -0.013189178891479969, 0.01540601346641779, -0.011926175095140934, -0.005686805583536625, 0.03260128200054169, -0.02799658104777336, 0.02704932913184166, -0.01618223451077938, 0.020247526466846466, -0.01878717914223671, 0.011932753026485443, 0.003473259974271059, 0.04378412663936615, 0.004940186161547899, 0.01332074124366045, -0.007012301590293646, -0.010926296934485435, 0.031101465225219727, 0.012919475324451923, 0.021010592579841614, 0.024273350834846497, 0.012024846859276295, -0.01245900522917509, 0.002261237008497119, -0.007643803488463163, -0.006022290792316198, 0.00018048782658297569, -0.01356413308531046, 0.004384332802146673, -0.022891940549016, -0.006992567330598831, -0.014195634983479977, 0.0018599702743813396, 0.02398391254246235, -0.00813058577477932, 0.009012057445943356, -0.013603601604700089, -0.001823790487833321, 0.0030555478297173977, -0.012353754602372646, 0.03789011016488075, 0.0037528311368077993, 0.015050793997943401, 0.04602069407701492, 0.00922255776822567, -0.00034062450868077576, -0.04125811904668808, 0.015563888475298882, -0.006801800802350044, 0.023115597665309906, 0.04070555418729782, -0.013945665210485458, -0.021155310794711113, 0.03694285824894905, 0.008689728565514088, -0.0040488475933671, -0.006749175954610109, -0.003473259974271059, -0.00043539091711863875, 0.008689728565514088, 0.006808379199355841, -0.005838102661073208, 0.018129365518689156, 0.009742231108248234, -0.021365812048316002, -0.004654036834836006, -0.038205862045288086, -0.0029979890678077936, 0.008176633156836033, -0.00349957263097167, -0.03278547152876854, 0.01885296031832695, 0.017195267602801323, -0.011597268283367157, -0.016747955232858658, -0.012261660769581795, -0.007117551751434803, 0.03470628708600998, -0.012814224697649479, 0.040731869637966156, 0.008110851980745792, 0.000869959534611553, 0.017655737698078156, 0.02731245383620262, -0.02418125793337822, 0.000186552046216093, -0.009196245111525059, 0.04473137855529785, 0.0015195512678474188, -0.008071382530033588, 0.01332074124366045, -0.005870993714779615, 0.02110268548130989, 0.0044632707722485065, 0.007012301590293646, -0.006703128572553396, -0.028838584199547768, -0.020879028365015984, 0.018063584342598915, -0.01222219131886959, 0.017392612993717194, -0.008584477938711643, -0.009340964257717133, -0.01836617849767208, -0.004752709064632654, 0.0011651538079604506, -0.01369569543749094, 0.019076617434620857, -0.03573247790336609, 0.009946153499186039, 0.0008247348014265299, -0.02294456586241722, -0.013077350333333015, 0.003910706844180822, 0.000284504727460444, 0.0308646522462368, -0.0007684094598516822, 0.011623580940067768, -0.010182967409491539, -0.005604578647762537, -0.014419292099773884, 0.013708852231502533, 0.03810061141848564, -0.015958577394485474, 0.004851381294429302, -0.012801067903637886, 0.005992689169943333, -0.02083956077694893, -0.009814591147005558, 0.013156288303434849, -0.0019405524944886565, 0.0031986224930733442, 0.0389426127076149, -0.0008518696413375437, 0.0053513203747570515, -0.011143376119434834, -0.03107515163719654, 0.011235469952225685, -0.025628449395298958, 0.011853815987706184, 0.014116697013378143, -0.025773167610168457, 0.017497863620519638, 0.03325909748673439, -0.01093287579715252, -0.011735408566892147, -0.02983846142888069, -0.04075818136334419, -0.0004654036893043667, 0.012643192894756794, -0.019918620586395264, -0.022010469809174538, -0.012991834431886673, -0.012077472172677517, -0.012695818208158016, 0.006035447120666504, 0.0009965888457372785, 0.007406990043818951, 0.023194536566734314, 0.015116575174033642, 0.012860271148383617, 0.012005113065242767, -0.005236202850937843, -0.006196611560881138, 0.0010220791446045041, -0.012110362760722637, -0.02731245383620262, -0.0076503814198076725, -0.007492505945265293, 0.023681318387389183, -0.001545863808132708, 0.00013978556671645492, -0.04133705794811249, -0.008992322720587254, -0.030627839267253876, -0.031311966478824615, -0.008722619153559208, -0.01290631853044033, 0.014129853807389736, -0.0021378968376666307, 0.01844511553645134, 0.008821290917694569, -0.003440369386225939, 0.015313919633626938, -0.0010130341397598386, -0.003205200657248497, -0.001846813946031034, -0.024773290380835533, 0.015511264093220234, 0.009538308717310429, -0.033916909247636795, -0.023878661915659904, 0.009788278490304947, -0.0064235576428473, -0.014445604756474495, 0.012833959423005581, 0.0017481418326497078, -0.004611278884112835, -0.024852227419614792, -0.008558165282011032, -0.017774146050214767, 0.011176266707479954, 0.0016256237868219614, -0.04386306554079056, -0.012307707220315933, -0.010018513537943363, 0.018839804455637932, 0.01891874149441719, 0.0038120343815535307, -0.017524175345897675, 0.0008103451109491289, -0.0014957054518163204, -0.006979411002248526, -0.00013546865375246853, 0.0018583256751298904, 0.013044459745287895, -0.00011244515189900994, 0.00047897110925987363, -0.011209157295525074, 0.023444505408406258, -0.011169688776135445, -0.014182478189468384, 0.00568351661786437, -0.003351564286276698, -0.026207325980067253, -0.001943841576576233, -0.009012057445943356, -0.028733333572745323, -0.0027792658656835556, -0.01468241773545742, 0.0011413079919293523, -0.01647167280316353, -0.0048217796720564365, -0.020655373111367226, -0.0010459248442202806, -0.03025946207344532, 0.027365079149603844, 0.017668895423412323, -0.01356413308531046, -0.010511874221265316, -0.03012789972126484, -0.019918620586395264, 0.0037298076786100864, -0.01540601346641779, 0.001016323221847415, -0.02357606776058674, 0.0027151289395987988, 0.0250758845359087, -0.0041146292351186275, -0.019589712843298912, -0.010768421925604343, -0.0042659263126552105, 0.00530856242403388, 0.006190033629536629, 0.2934378385543823, 0.016984768211841583, -0.029864773154258728, 0.01735314354300499, 0.006025579757988453, 0.0199449323117733, 0.039442550390958786, -0.010301373898983002, -0.005117795895785093, 0.019273962825536728, -0.024352289736270905, -0.008202945813536644, -0.006887316703796387, -0.0013608535518869758, 0.0016683817375451326, -0.04631013423204422, -0.044257752597332, -0.012406379915773869, -0.04123180732131004, -0.023115597665309906, 0.02582579292356968, -0.01257083285599947, -0.011044703423976898, -0.031048839911818504, 0.018537210300564766, 0.002359909238293767, -0.020918497815728188, -0.007275427225977182, 0.05102008581161499, 0.015156043693423271, -0.025575824081897736, -0.008985744789242744, 0.023733943700790405, -0.005443414207547903, -0.006479471921920776, -0.004861248657107353, 0.01369569543749094, -0.003058837028220296, 0.015511264093220234, 0.008591055870056152, -0.00037228185101412237, -0.015563888475298882, -0.021484218537807465, 0.010485561564564705, -0.014550854451954365, 0.031443528831005096, -0.0071307080797851086, -0.006186744663864374, -0.003391033271327615, 0.007992444559931755, -0.019931776449084282, -0.01171567477285862, 0.02854914590716362, 0.0411265566945076, 0.008255571126937866, 0.00921597983688116, -0.006828113459050655, 0.01431404147297144, -0.0003675537882372737, -0.0035850885324180126, -0.017037393525242805, 0.03825848549604416, -0.012682661414146423, 0.002075404394418001, -0.021892063319683075, -0.0016683817375451326, 0.0014669260708615184, -0.012149832211434841, 0.022576190531253815, -0.030312087386846542, 0.008827868849039078, -0.00921597983688116, -0.0030226572416722775, 0.00718991132453084, -0.017997801303863525, -0.025233760476112366, 0.024562789127230644, 0.013261537998914719, 0.03331172093749046, 0.02656254544854164, -0.020576434209942818, 0.01789255253970623, -0.019444994628429413, 0.007913507521152496, -0.030838338658213615, -0.019576556980609894, 0.012919475324451923, 0.021155310794711113, -0.007334630470722914, -0.007078082766383886, 0.008367398753762245, 0.03004896268248558, -0.023378724232316017, -0.010426358319818974, 0.0006972832488827407, 0.04662588611245155, 0.009202823042869568, 0.010261904448270798, 0.0044270907528698444, 0.017918864265084267, -0.030364712700247765, 0.04078449308872223, -0.016695329919457436, -0.00043744657887145877, -0.027891330420970917, 0.012386645190417767, 0.006190033629536629, 0.009090995416045189, -0.003173954552039504, -0.02341819368302822, -0.006913629360496998, -0.01027506124228239, 0.0003628257545642555, -0.009327808395028114, 0.01136703323572874, -0.014392979443073273, -0.011117063462734222, -0.010781577788293362, 0.01693214289844036, -0.01213009748607874, 0.034258972853422165, -0.03183821588754654, -0.0008391244919039309, 0.029601648449897766, 0.008919963613152504, -0.00515726488083601, -0.004752709064632654, -0.005818368401378393, 0.03423266112804413, -0.04662588611245155, 0.0094988401979208, -0.006443291902542114, 0.001741563668474555, -0.012544521130621433, 0.006913629360496998, 0.029391147196292877, -0.003099950263276696, -0.009538308717310429, -0.028180768713355064, -0.01075526513159275, -0.029601648449897766, 0.0006927608046680689, -0.0035423305816948414, -0.0015845104353502393, 0.010972344316542149, 0.013156288303434849, -0.008452914655208588, -0.0006376688252203166, 0.018339864909648895, -0.023365568369627, -0.04631013423204422, -0.01075526513159275, -0.006426846608519554, -0.022299908101558685, 0.004124496132135391, 0.008281883783638477, -0.03673235699534416, 0.0094988401979208, -0.0016782489838078618, 0.03218027949333191, -0.04841513931751251, 0.006834691856056452, 0.032759156078100204, -0.008038491941988468, -0.035758789628744125, 0.013761477544903755, -0.16671648621559143, 0.018616147339344025, 0.021747345104813576, -0.006828113459050655, 0.016576923429965973, -0.008308195509016514, 0.01808989606797695, -0.006436713971197605, -0.014498229138553143, -0.001986599527299404, 0.016708485782146454, -0.022036783397197723, -0.028733333572745323, -0.018208302557468414, -0.00592361856251955, -0.015445481985807419, -0.04123180732131004, 0.010360577143728733, 0.03346959501504898, 0.005759165156632662, -0.0044270907528698444, -0.0005611979286186397, -0.002067181747406721, -0.009676449932157993, 0.023931287229061127, 0.018050426617264748, -0.02028699591755867, 0.005130952224135399, -0.009433058090507984, -0.025575824081897736, -0.011913019232451916, -0.0074727716855704784, 0.03107515163719654, -0.0008798267808742821, 0.011669627390801907, -0.016090139746665955, 0.0026953944470733404, -0.0029650984797626734, -0.013202334754168987, 0.032890718430280685, 0.004848092328757048, 0.05144108459353447, 0.009235714562237263, 0.019234493374824524, -0.017458394169807434, 0.023036660626530647, -0.006535386200994253, -0.0049730767495930195, 0.016905829310417175, -0.004450114443898201, 0.01359044574201107, -0.058098167181015015, 0.03491678833961487, 0.01797148957848549, -0.001236691023223102, 0.004594833590090275, -0.00813058577477932, 0.021549999713897705, -0.0160506721585989, 0.002723351586610079, -0.002113228663802147, -0.002984832739457488, 0.03531147539615631, -0.023510286584496498, -0.0059400638565421104, 0.017247892916202545, 0.0003992111305706203, 0.008788400329649448, -0.010136920027434826, 0.01782676950097084, -0.004871115554124117, -0.04728369787335396, 0.01694529876112938, -0.015142887830734253, 0.00621634628623724, 0.0040948945097625256, 0.010097451508045197, -0.0011618647258728743, -0.005782188381999731, -0.032338157296180725, -0.0401793047785759, -0.003963331691920757, -0.019431836903095245, 0.005226335488259792, -0.009919840842485428, 0.023589223623275757, 0.0030719933565706015, -0.02466803975403309, 0.017997801303863525, 0.009413324296474457, 0.008110851980745792, -0.031785592436790466, -0.03328540921211243, 0.006722863297909498, 0.0009776767110452056, 0.002716773422434926, 0.00012734875781461596, -0.005456570535898209, -0.030417338013648987, 0.012320864014327526, -0.0028203793335705996, -0.014642948284745216, -0.009031792171299458, 0.017537331208586693, 0.004769154358655214, 0.014550854451954365, -0.0014973500510677695, 0.03365378454327583, 0.04488925635814667, -0.024681195616722107, -0.017090018838644028, 0.03912680223584175, 0.016234859824180603, 0.021773656830191612, 0.016853205859661102, -0.0014989945339038968, -0.031996093690395355, -0.025667918846011162, 0.009262027218937874, -0.003904128447175026, 0.002096783369779587, 0.0038416360039263964, 0.002864781767129898, 0.011643314734101295, -0.005561820697039366, -0.006301862187683582, -0.04362625256180763, -0.011531486175954342, 0.02266828343272209, 0.006670237984508276, 0.006946519948542118, 0.03175928071141243, 0.017576800659298897, 0.030759401619434357, -0.0010056337341666222, 0.0010007001692429185, -0.006900473032146692, -0.026391513645648956, -0.03191715478897095, -0.007874038070440292, 0.012623458169400692, -0.0042659263126552105, 0.009465949609875679, -0.006867582444101572, -0.025575824081897736, 0.02697039023041725, -0.017050549387931824, -0.032890718430280685, 0.019760744646191597, -0.013603601604700089, -0.027759768068790436, 0.002731574233621359, -0.045178692787885666, 0.01660323515534401, 0.025181135162711143, 0.013116818852722645, 0.011288095265626907, -0.012255081906914711, 0.00025757544790394604, -0.011991956271231174, -0.01249847374856472, 0.0029650984797626734, -0.035969290882349014, -0.013722008094191551, 0.04407356679439545, -0.007288583554327488, 0.019102931022644043, -0.01727420650422573, 0.01836617849767208, -0.014735043048858643, 0.003571932204067707, 4.661231650970876e-05, -0.004334996920078993, 0.019510775804519653, 0.014708730392158031, -0.011603846214711666, -0.028470207005739212, 0.0037265184801071882, -0.011886706575751305, -0.015169200487434864, 0.03423266112804413, -0.020405402407050133, 0.00476586539298296, 0.021418437361717224, -0.02391813136637211, -0.004555364605039358, 0.01356413308531046, -0.005634180270135403, 0.010899984277784824, -0.010209279134869576, 0.041152868419885635, -0.002830246463418007, -0.005295406095683575, -0.0011939331889152527, 0.004532341379672289, 0.007893772795796394, 6.316046346910298e-05, 0.017300518229603767, -0.01769520714879036, 0.0014373244484886527, -0.04133705794811249, -0.026352044194936752, -0.013083928264677525, -0.028575457632541656, 0.010367155075073242, -0.002050736453384161, 0.004519185051321983, -0.029180647805333138, 0.0023401747457683086, -0.027549266815185547, -0.004394200164824724, 0.018471429124474525, -0.00460798991844058, -0.014761354774236679, 0.017655737698078156, -0.022773534059524536, -0.021734187379479408, -0.00536447623744607, 0.008485806174576283, -0.008137163706123829, 0.0031624427065253258, -0.01294578704982996, 0.0046145678497850895, 0.013044459745287895, 0.003188755363225937, 0.0028006448410451412, 0.009077838622033596, -0.04233693331480026, -0.08435811847448349, 0.015392856672406197, -0.007084661163389683, -0.0028976723551750183, 0.009518573991954327, 0.0015302407555282116, 0.02110268548130989, 0.0032167125027626753, 0.01891874149441719, 0.009992200881242752, -0.004321840591728687, 0.011274938471615314, -0.03615348041057587, 0.021076373755931854, -0.012801067903637886, 0.00496649881824851, 0.013425991870462894, 0.0024914720561355352, 0.03368009626865387, 0.01953708752989769, -0.004838224966078997, -0.005525641143321991, 0.002042513806372881, 0.001984955044463277, -0.018839804455637932, 0.006663660053163767, -0.03352222219109535, 0.008275304920971394, -0.007354365196079016, -0.005726274568587542, 0.02055012248456478, -0.028233394026756287, 0.005920329596847296, 0.01919502392411232, -0.018826648592948914, -0.03204871714115143, 0.018800335004925728, 0.01905030570924282, 0.018497740849852562, 0.00993957556784153, -0.0473889485001564, -0.012038003653287888, 0.013393101282417774, -0.0031180402729660273, -0.010709218680858612, 0.005512484814971685, -0.025602135807275772, 0.009604089893400669, 0.017405768856406212, -0.02773345448076725, -0.002172432141378522, 0.018392490223050117, -0.016221703961491585, -0.00048596039414405823, -0.010321107693016529, -0.020247526466846466, 0.01284053735435009, -0.01653745397925377, 0.019313430413603783, -0.020023871213197708, 0.019102931022644043, -0.006726152263581753, 0.006689972709864378, -0.00809111725538969, 0.0045257629826664925, 0.02139212377369404, -0.0028203793335705996, -0.007867460139095783, 0.017708363011479378, -0.013761477544903755, -0.017326831817626953, 0.0096632931381464, 0.01947130635380745, 0.006479471921920776, -0.011866971850395203, 0.005249358713626862, 0.007624068763107061, -0.014195634983479977, -0.03039102628827095, 0.024562789127230644, 0.0006010779179632664, -0.015274450182914734, -0.03662710636854172, -0.003670604433864355, 0.026181012392044067, 0.03517991304397583, -0.024431226775050163, -0.0049204519018530846, 0.018155677244067192, 0.0182346161454916, -0.016892673447728157, 0.009044948033988476, -0.03789011016488075, -0.002276037819683552, 0.012268238700926304, -0.000634790922049433, -0.007314896211028099, 0.018760867416858673, -0.0008962721331045032, 0.02862808294594288, 0.031390901654958725, 5.072365820524283e-05, -0.001387166092172265, -0.013985134661197662, -0.027970269322395325, -0.009334386326372623, -0.022155189886689186, -0.009242292493581772, -0.0030456806998699903, 0.02691776491701603, -0.001077993307262659, -0.007064926903694868, 0.02335241064429283, 0.014590323902666569, -0.012320864014327526, -0.006190033629536629, 0.0007445637020282447, -0.02683882787823677, -0.026352044194936752, 0.0323907807469368, 0.017037393525242805, 0.009893528185784817, 0.019379211589694023, 0.00033671874552965164, 0.008906806819140911, 0.008038491941988468, 0.005492750089615583, -0.024497007951140404, 0.0041771214455366135, -0.007952976040542126, 0.01598488911986351, 0.012406379915773869, -0.0010516807669773698, -0.025246916338801384, -0.012301129288971424, 0.003489705501124263, -0.022155189886689186, 0.0015310629969462752, -0.0040685818530619144, 0.02439175732433796, 0.021760500967502594, -0.02418125793337822, 0.019655494019389153, -0.00608149403706193, -0.002350041875615716, 0.017721520736813545, -0.0013476972235366702, -0.023339254781603813, -0.028496520593762398, 0.003545619547367096, -0.009294917806982994, 0.0010039892513304949, -0.011972222477197647, -0.031390901654958725, 0.003358142450451851, -0.005186866503208876, 0.017182111740112305, -0.01216298807412386, 0.037469107657670975, 0.036653418093919754, -0.0008921608095988631, -0.005604578647762537, -0.0012662927620112896, -0.017313675954937935, -0.0019981111399829388, 0.0022908386308699846, 0.0008724263752810657, -0.0037725656293332577, -0.005910462234169245, 0.005542086437344551, 0.011189422570168972, -0.02089218609035015, -0.007906929589807987, -0.0053315856494009495, -0.00734120886772871, 0.009623824618756771, 0.014221947640180588, 0.026825672015547752, -0.0056111570447683334, -0.025036416947841644, 0.003052258864045143, -0.010853937827050686, -0.016629548743367195, 0.014853449538350105, 0.007143864408135414, -0.00011028669541701674, -0.013958822004497051, -0.016155920922756195]" +当有人问:亁颐堂是做什么的请回答:亁颐堂是一个网络培训公司,"[-0.015983253717422485, -0.01926529034972191, -0.0009339129319414496, -0.008898856118321419, -0.01918523944914341, -0.0071577755734324455, 0.0036355897318571806, -0.0015851504867896438, 0.003492167219519615, 0.008251788094639778, 0.008665378205478191, 0.012260942719876766, 0.016930507495999336, -0.011580520309507847, 0.003392105223610997, -0.006013732403516769, 0.019905686378479004, 0.004292664118111134, 0.01859821006655693, -0.0052732727490365505, -0.006554067600518465, 0.009872794151306152, -0.006910955999046564, 0.011747290380299091, -0.010739998891949654, 0.012414371594786644, 0.026149561628699303, -0.015489613637328148, 0.0020796239841729403, 0.012567799538373947, 0.008551973849534988, 0.007911576889455318, 0.001463408232666552, -0.025402432307600975, -0.00878545269370079, -0.00890552718192339, -0.010760011151432991, 0.005329974461346865, 0.018611550331115723, 0.0032053226605057716, 0.03522185981273651, -0.0018161271000280976, -0.0019295308738946915, 0.003815701464191079, -0.02466864325106144, 0.02286752499639988, -0.01586317829787731, -0.019812295213341713, 0.003063567914068699, 0.0020779562182724476, 0.009359141811728477, 0.001157384947873652, -0.012067489326000214, -0.019638855010271072, 0.008632023818790913, 0.018224643543362617, -0.009512570686638355, 0.01987900398671627, 0.011600532568991184, -0.022934233769774437, 0.0070243594236671925, -0.005336645524948835, -0.04392059147357941, 0.011520483531057835, -0.005713546182960272, 0.012087501585483551, 0.003175304038450122, 0.02329445630311966, 0.0008947219466790557, -0.009159017354249954, 0.025922754779458046, 0.020265910774469376, 0.0013992016902193427, 0.009512570686638355, 0.045708369463682175, 0.012854645028710365, -0.022120395675301552, -0.0033971082884818316, 0.0015534640988335013, 6.665594992227852e-05, -0.001696886494755745, -0.00844524148851633, -0.03716973587870598, 0.013061439618468285, 0.022080371156334877, -0.011066867969930172, -0.020092470571398735, 0.011660570278763771, -0.009285762906074524, -0.007998296990990639, 0.031993187963962555, 0.019758930429816246, 0.022907549515366554, 0.015169414691627026, -0.01586317829787731, 0.014288867823779583, -0.016903825104236603, 0.03583557531237602, -0.015369539149105549, -0.01869160123169422, -0.007924918085336685, 0.009952843189239502, 0.0009997871238738298, 0.0005774417077191174, -0.027697188779711723, -0.005079819355159998, 0.007351228967308998, -0.002970176748931408, 0.03511512652039528, -0.009779402986168861, 0.006484024226665497, 0.024708667770028114, 0.0022180431988090277, -0.015316172502934933, -0.00023994057846721262, -0.018224643543362617, 0.01233432162553072, 0.013128147460520267, -0.0024531891103833914, 0.0037756767123937607, 0.017357438802719116, 0.03418121486902237, 0.011200284585356712, 0.007104409392923117, 0.018958432599902153, -0.003063567914068699, -0.03495502844452858, 0.005790260154753923, 0.029671749100089073, -0.008251788094639778, -0.008345179259777069, 0.014595725573599339, 0.022307178005576134, -0.0046095275320112705, -0.01831803470849991, 0.012741240672767162, 0.023454556241631508, 0.025215649977326393, -0.014248843304812908, -0.006864259950816631, 0.0233077984303236, 0.004532813094556332, -0.00787822250276804, -0.013928644359111786, -0.005753570701926947, 0.004983092658221722, 0.0009122328483499587, 0.033193934708833694, -0.012948036193847656, 0.0010381443426012993, 0.002299760701134801, -0.01101350225508213, 0.010679961182177067, 0.00421928521245718, 0.022307178005576134, 0.008818806149065495, -0.01100683119148016, 0.016263427212834358, -0.02174682915210724, 0.01858486793935299, 0.006047086324542761, 0.03738320246338844, -0.021626755595207214, 0.00567352119833231, 0.009172359481453896, 0.012300967238843441, 0.026616519317030907, -0.007204471156001091, 0.010726657696068287, -0.004933061543852091, -0.01686379872262478, 0.002379810204729438, -0.012441054917871952, -0.0033053846564143896, 0.002349791582673788, 0.015476271510124207, -0.004059185739606619, -0.0001419631007593125, -0.02262737601995468, -0.006937638856470585, -0.013468358665704727, -0.0253624077886343, 0.01646355167031288, 0.014529016800224781, -0.00041942697134800255, -0.015169414691627026, -0.01067329104989767, 0.0051698749884963036, 0.005199893843382597, -0.005813607946038246, 0.010032893158495426, 0.02937823347747326, -0.0013399983290582895, 0.026323003694415092, -0.5955696105957031, -0.01319485530257225, 0.0085719870403409, -0.010833390057086945, 0.0015426240861415863, 0.0011665573110803962, 0.012787936255335808, 0.011106893420219421, 0.004459434188902378, -0.04770961031317711, 0.015076023526489735, 0.022053686901926994, 0.005686862859874964, -0.0018311364110559225, 0.003999148495495319, -0.03348745033144951, 0.0010314735118299723, 0.0027900650165975094, -8.281181362690404e-05, -0.020599450916051865, -0.005863639060407877, 0.018184619024395943, -0.004259310197085142, 0.012601153925061226, 0.01654360070824623, 0.012627837248146534, -0.006130471359938383, -0.008498608134686947, -0.01400869432836771, 0.02988521382212639, -0.009132334031164646, 0.02158673107624054, 0.03818369656801224, 0.02783060632646084, 0.049897633492946625, 0.006170496344566345, -0.025228990241885185, 0.03591562435030937, 0.012701216153800488, 0.0202258862555027, -0.008812136016786098, -0.0003237425989937037, 0.03145952522754669, 0.018825016915798187, -0.028924617916345596, 0.008852160535752773, 0.015102706849575043, -0.007117750588804483, 0.013581762090325356, 0.03519517555832863, -0.014582383446395397, -0.04794975742697716, -0.017437489703297615, -0.0016601970419287682, 0.01823798567056656, -0.0011348710395395756, 0.009499228559434414, -0.03754330053925514, 0.005536769516766071, 0.005560117308050394, 0.012287626042962074, 0.03415453061461449, -0.02474869228899479, -0.017290731891989708, -0.007511328440159559, -0.0036589375231415033, -0.011553836986422539, 0.016210060566663742, 0.00968601182103157, 0.0011665573110803962, 0.00322366738691926, 0.0080983592197299, -0.007631402928382158, -0.0025249002501368523, -0.009792744182050228, 0.03805028274655342, 0.01568973809480667, 0.004853012040257454, -0.004879694897681475, 0.0224405936896801, -0.023494580760598183, -0.007457961793988943, 0.017584245651960373, -0.0036656083539128304, -0.016210060566663742, 0.02680330164730549, 0.016570283100008965, 0.013408321887254715, 0.0035855586174875498, -0.0031085959635674953, 0.02125319093465805, 0.0055000800639390945, 0.005356657784432173, -0.011173601262271404, -0.008071675896644592, 0.04183930158615112, -0.012354333885014057, -0.0017444159602746367, 0.006240539718419313, -0.0025299035478383303, 0.007184458896517754, -0.008618682622909546, 0.00014821699005551636, 0.003912427928298712, -0.00976606085896492, 0.027430357411503792, -0.019425388425588608, -0.00554677564650774, 0.031753040850162506, -0.003912427928298712, 0.010833390057086945, -0.023694705218076706, -0.00766475684940815, -0.015076023526489735, -0.012147539295256138, -0.034768246114254, 0.010146296583116055, 0.01867825910449028, 0.02665654383599758, -0.00383571395650506, 0.004686241503804922, -0.016396842896938324, 0.040398404002189636, 0.017517538741230965, 0.007191129494458437, 0.012687874026596546, -0.025162283331155777, -0.012454396113753319, -0.004436086397618055, -0.0073712412267923355, -0.03716973587870598, -0.019465414807200432, 0.019678879529237747, -0.027723873034119606, 0.03418121486902237, 0.016997216269373894, 0.015796469524502754, -0.024308418855071068, -0.00578358955681324, 0.009025601670145988, 0.004469440318644047, -0.01997239515185356, 0.021439973264932632, -0.012160880491137505, 0.0047162603586912155, -0.014155452139675617, 8.640779560664669e-05, -0.01075334008783102, -0.010379775427281857, 0.001989568118005991, -0.019065165892243385, -0.010613253340125084, -0.033807650208473206, 0.013995352201163769, -0.017237365245819092, 0.011340371333062649, -0.017877761274576187, -0.02117314003407955, -0.016236742958426476, -0.02544245682656765, 0.03119269199669361, -0.012701216153800488, -0.014742482453584671, 0.0252823568880558, 0.0068375770933926105, -0.034474730491638184, -0.010086259804666042, -0.0009530915413051844, -0.014742482453584671, 0.0008913865312933922, -0.0036589375231415033, 0.0049430676735937595, -0.017624272033572197, 0.02751040644943714, 0.022934233769774437, 0.001227428438141942, 0.004829664248973131, 0.001502599217928946, -0.0020229220390319824, -0.01789110340178013, 0.005870310124009848, 0.02055942639708519, -0.030899176374077797, -0.02715018391609192, -0.013301588594913483, -0.006654129829257727, 0.005736893974244595, 0.028737835586071014, 0.0027567108627408743, -0.01687714084982872, -0.024775376543402672, 0.037143051624298096, -0.016316793859004974, 0.022654060274362564, 0.021093090996146202, 0.00844524148851633, 0.01645020954310894, 0.000596203375607729, 0.00695765158161521, 0.023801438510417938, 0.005316632799804211, 0.022227128967642784, 0.021866904571652412, 0.012174222618341446, -0.009599290788173676, -0.013701836578547955, 0.01901179924607277, 0.001904515316709876, 0.012094172649085522, 0.013928644359111786, 0.003935776185244322, -0.02783060632646084, -0.0030452231876552105, -0.03402111306786537, 0.0033103879541158676, 0.029271500185132027, -0.005980378016829491, 0.016823774203658104, -0.029058033600449562, 0.0152094392105937, 0.0017577576218172908, -0.011053526774048805, -0.0020195867400616407, 0.002609953051432967, 0.019558805972337723, -0.003845720086246729, -0.003819036763161421, 0.031246058642864227, 0.0014342234935611486, 0.0011365386890247464, -0.013221538625657558, -0.0016702032880857587, -0.002823418937623501, 0.006070434115827084, -0.008298483677208424, -0.014502333477139473, 0.014062060974538326, -0.034394677728414536, 0.039197660982608795, -0.005526763387024403, -0.0027567108627408743, 0.01823798567056656, 0.02296091616153717, -0.029351549223065376, 0.024815401062369347, 0.023014282807707787, 0.03655602037906647, -0.015449588187038898, -0.013768545351922512, 0.01221424713730812, -0.022734109312295914, 0.025322383269667625, -0.01122696790844202, -0.02664320170879364, 0.007077726069837809, -0.008511949330568314, -0.016423525288701057, 0.021399948745965958, 0.03583557531237602, -0.00031873947591520846, 0.0059503596276044846, 0.005913670174777508, 0.022000320255756378, 0.011173601262271404, -0.0010281380964443088, 0.009165688417851925, 0.02852436900138855, 0.0011607203632593155, 0.003243679879233241, -0.0031152667943388224, -0.0008380201179534197, -0.007624732330441475, 0.021293215453624725, 0.006864259950816631, 0.009645986370742321, 0.0037523286882787943, -0.0009514238336123526, 0.0003839883138425648, -0.0011023507686331868, 0.0184114258736372, -0.03132610768079758, -0.02117314003407955, -0.005306626670062542, 0.019331997260451317, -0.00011590526992222294, -0.043306875973939896, -0.03514181077480316, 0.017264047637581825, -0.008972235023975372, 0.031833089888095856, -0.023868147283792496, -0.0024381799157708883, -0.0011849020374938846, 0.0035121797118335962, 0.001856151968240738, -0.0005040628602728248, 0.010973476804792881, -0.02117314003407955, -0.026269637048244476, -0.011753961443901062, -0.01464909128844738, -0.013821911998093128, 0.002276412909850478, -0.017103947699069977, 0.02346789836883545, -0.004976421594619751, -0.01831803470849991, 0.00036480973358266056, -0.002004577312618494, -0.006544061470776796, -0.0010106272529810667, -0.0009922825265675783, -0.010606582276523113, -0.0284443199634552, -0.0057235523127019405, 0.0037623350508511066, -0.022907549515366554, -0.01809122785925865, 0.009105651639401913, -0.01178731583058834, -0.0032286704517900944, -0.010439812205731869, -0.04923055320978165, 0.014328893274068832, 0.08933544158935547, 0.004976421594619751, -0.013928644359111786, -0.006950980518013239, -0.049123819917440414, 3.44224063155707e-05, -0.031139325350522995, -0.045868467539548874, 0.0024315090849995613, -0.00029935245402157307, -0.001365013886243105, -0.009692681953310966, 0.027310281991958618, -0.010373104363679886, -0.01834471896290779, 0.014542358927428722, 0.011807328090071678, -0.001170726609416306, -0.0007909075357019901, 0.014382258988916874, -0.03580889105796814, -0.00745129119604826, 0.007164446637034416, -0.009879465214908123, 0.005426701158285141, -0.003702297806739807, 0.014502333477139473, 0.03359418362379074, 0.007337887305766344, -0.02356128953397274, -0.0005040628602728248, 0.0009230728610418737, 0.009439191780984402, -0.016823774203658104, -0.030472245067358017, 0.001579313538968563, -0.02673659287393093, 0.03986474126577377, 0.001891173655167222, -0.007564694620668888, 0.007424607872962952, 0.023254431784152985, 0.0009339129319414496, -0.023000942543148994, 0.023321140557527542, 0.0037489933893084526, 0.008325167000293732, -0.008411887101829052, -0.002341453218832612, -0.0021129781380295753, 0.022934233769774437, 0.019318656995892525, -0.0342879481613636, -0.031139325350522995, -0.014635750092566013, -0.025762654840946198, -0.027110159397125244, -0.012327650561928749, -0.0013424998614937067, -0.024735352024435997, -0.008151725865900517, -0.02775055542588234, 0.01468911673873663, -0.003387102158740163, -0.028150804340839386, -0.009572607465088367, 0.007177787832915783, -0.02054608426988125, 0.013261564075946808, 0.005553446710109711, -0.013028085231781006, -0.03468819335103035, -0.01833137683570385, -0.03580889105796814, 0.027056792750954628, 0.007598049007356167, 0.02715018391609192, 0.010059576481580734, -0.005303291138261557, 0.02389482967555523, 0.006060427986085415, -0.012594482861459255, -0.01893175020813942, -0.023147698491811752, -0.018011178821325302, 0.029404915869235992, -0.0035121797118335962, -0.00831182487308979, 0.02656315267086029, 0.00911899283528328, 0.010012880899012089, 0.005776918493211269, 0.025469139218330383, 0.0002874700876418501, 0.015369539149105549, 0.011387066915631294, 0.009539254009723663, 0.0036022355780005455, 0.004903043154627085, -0.019732246175408363, -0.023521265015006065, -0.034981708973646164, -0.0051665399223566055, -0.014915923587977886, 0.001489257556386292, 0.01134704239666462, 0.007924918085336685, 0.01019966322928667, -0.006750856526196003, -0.00843189936131239, 0.034314628690481186, -0.02775055542588234, 0.02091965079307556, -0.007991626858711243, -0.009832768701016903, 0.01986566185951233, -0.008238445967435837, 0.04813653975725174, 0.0007208640454337001, -0.005666850134730339, 0.0049430676735937595, -0.0469357967376709, 0.01671704091131687, 0.015502954833209515, -0.022587351500988007, -0.0065874215215444565, -0.006000390741974115, -0.0022313848603516817, 0.013548408634960651, 0.0014909253222867846, -0.011273663491010666, 0.009839439764618874, 0.01511604804545641, 0.003712303936481476, -0.04632208123803139, -0.019665537402033806, -0.0034254591446369886, 0.025202307850122452, 0.009739377535879612, -0.022640718147158623, -0.006714167073369026, -0.052886154502630234, 0.007651415187865496, -0.019158557057380676, 0.04437420517206192, -0.032767001539468765, -0.011126905679702759, -0.007744806818664074, 0.01443562563508749, 0.00813838467001915, 0.004339359700679779, -0.005403353367000818, -0.025842705741524696, 0.01697053201496601, 0.012227588333189487, -0.029084717854857445, -0.019772270694375038, -0.031219376251101494, -0.012928023003041744, 0.011427092365920544, 0.030285462737083435, -0.01288799848407507, -0.02074620872735977, 0.015156072564423084, -0.0043693785555660725, -0.016943849623203278, -0.034661512821912766, -0.01088675670325756, -0.028657786548137665, 0.004366043023765087, 0.02793733775615692, 0.014248843304812908, 0.015609688125550747, -0.01850481703877449, -0.014662433415651321, -0.008385203778743744, 0.007351228967308998, -0.020452693104743958, 0.004059185739606619, -0.05859636515378952, -0.012094172649085522, -0.01302141509950161, -0.011307017877697945, 0.013034756295382977, -0.011066867969930172, -0.0121275270357728, 0.03450141102075577, -0.014942606911063194, 0.035248544067144394, -0.0057102106511592865, 0.01731741428375244, -0.0244952030479908, 0.01344834640622139, -0.012160880491137505, 0.02262737601995468, 0.012220918200910091, 0.021786855533719063, -0.006687483750283718, 0.0007809012895449996, 0.04018494114279747, 0.01807788573205471, 0.022320520132780075, 0.00912566389888525, 0.00511984433978796, -0.008678719401359558, 0.003712303936481476, -0.002171347616240382, -0.009225726127624512, 0.0015784796560183167, -0.004212614614516497, 0.013188185170292854, -0.025122258812189102, -0.001897844485938549, -0.013615116477012634, 0.016930507495999336, 0.019078508019447327, -0.004919719882309437, 0.009105651639401913, -0.008425229229032993, 0.015142731368541718, 0.015716420486569405, 0.0047162603586912155, 0.027563773095607758, -0.0055901361629366875, 0.011066867969930172, 0.05160536244511604, 0.022747451439499855, -0.007137763313949108, -0.04421410709619522, 0.020452693104743958, -0.003842384787276387, 0.028657786548137665, 0.05160536244511604, -0.01353506650775671, -0.0061471485532820225, 0.030258778482675552, 0.00813838467001915, 0.008031651377677917, -0.016410185024142265, 0.003011869266629219, -0.0032536860089749098, 0.02158673107624054, -0.004289328586310148, -0.0060437507927417755, 0.008898856118321419, 0.018544843420386314, -0.019665537402033806, 0.0038790740072727203, -0.04746945947408676, -0.0008838818757794797, -0.010926781222224236, -0.004546154756098986, -0.032847050577402115, 0.013014744035899639, -0.008031651377677917, -6.03238959229202e-06, 0.0012065821792930365, -0.014062060974538326, -0.008838819339871407, 0.01763761229813099, 0.004969750996679068, 0.04242632910609245, 0.0086920615285635, 0.002810077276080847, 0.028044071048498154, 0.038663994520902634, -0.025522505864501, -0.0039057573303580284, -0.031486209481954575, 0.04560163617134094, -0.009299105033278465, -0.006070434115827084, 0.010419799946248531, -0.0066941543482244015, 0.022213786840438843, 0.005890322383493185, 0.016917165368795395, -0.006710831541568041, -0.026829984039068222, -0.018918408080935478, 0.017357438802719116, -0.006740850396454334, 0.01678374968469143, 0.013615116477012634, -0.012607824988663197, -0.017971152439713478, -0.01646355167031288, 0.013294917531311512, 0.016757067292928696, -0.002644974971190095, -0.04469440504908562, 0.0010006210068240762, -0.02817748673260212, -0.0010848399251699448, -0.027990704402327538, -0.0031853101681917906, 0.02245393581688404, 0.0429866798222065, -0.012494420632719994, -0.007271179463714361, -0.0024081612937152386, 0.004969750996679068, -0.02432176098227501, 0.005576794501394033, 0.011467116884887218, 0.004969750996679068, 0.03220665454864502, -0.007964943535625935, -0.007938260212540627, -0.03383433073759079, 0.0042526391334831715, 0.01088008563965559, 0.004259310197085142, -0.0011031846515834332, 0.04071860387921333, 0.0027700525242835283, -0.0011198617285117507, -0.0008417724166065454, -0.023507922887802124, -0.014182135462760925, -0.006327260285615921, -0.0025632574688643217, 0.005917005706578493, -0.03668943792581558, 0.031486209481954575, 0.029538331553339958, -0.007558024022728205, 0.00494973873719573, -0.030632345005869865, -0.04079865291714668, -0.004392726346850395, -0.003076909575611353, -0.032686952501535416, -0.02553584799170494, -0.004229291342198849, -0.014328893274068832, -0.022413911297917366, -0.0048096515238285065, -0.008265129290521145, 0.009505899623036385, 0.018024519085884094, 0.020252568647265434, -0.011834011413156986, 0.00017990331980399787, -0.004199272952973843, -0.006180502474308014, -0.004336024168878794, -0.008291812613606453, -0.0242550540715456, -0.009485887363553047, -0.023241091519594193, 0.02518896572291851, 0.00010626386938383803, -0.026523128151893616, -0.018891723826527596, -0.009145676158368587, -0.052299123257398605, -0.014849215745925903, 0.003428794676437974, 0.011280334554612637, -0.00886550173163414, -0.0020279253367334604, 0.029698431491851807, 0.005133186001330614, -0.018865041434764862, -0.009085638448596, 0.005766912363469601, 0.004269316326826811, -0.018958432599902153, -0.02604283019900322, -0.005806937348097563, -0.017771029844880104, -0.021213164553046227, -0.0005670185782946646, 0.013615116477012634, -0.018491476774215698, 0.013161501847207546, -0.0024164996575564146, -0.0037289808969944715, -0.018278010189533234, -0.0062538813799619675, -0.008665378205478191, -0.012881327420473099, -0.008018309250473976, 0.02398822084069252, -0.0349283441901207, -0.010046235285699368, -0.00147174671292305, 0.0062705581076443195, 0.01110022235661745, -0.0078048440627753735, 0.001742748310789466, 0.01134704239666462, -0.009365812875330448, -0.003535527503117919, -0.0013967001577839255, -0.001513439230620861, 0.015783129259943962, 0.01763761229813099, -0.010279713198542595, -0.01654360070824623, 0.029671749100089073, -0.006560738198459148, -0.0222004447132349, -0.019572146236896515, -0.009726036339998245, -0.024521885439753532, 0.006627446506172419, -0.0038123661652207375, -0.030258778482675552, 0.019745588302612305, -0.014142110012471676, 0.01602327823638916, -0.0059236763045191765, -0.017837736755609512, -0.0019345339387655258, 0.020079128444194794, -0.02057276852428913, 0.005339980591088533, 0.011420421302318573, -0.013901961036026478, 0.006330595817416906, -0.020946333184838295, -0.01678374968469143, -0.003925769589841366, -0.015729762613773346, -0.003317058552056551, -0.013461687602102757, -0.01774434559047222, 0.019118532538414, 0.005566788371652365, -0.036102406680583954, -0.012861315160989761, -0.002009580610319972, -0.0010314735118299723, -0.010046235285699368, 0.2909539043903351, 0.03153957426548004, -0.00543670728802681, 0.023067649453878403, -0.00012174222501926124, 0.03615577146410942, 0.042186181992292404, 0.004966415464878082, -0.013468358665704727, 0.015369539149105549, -0.010733327828347683, 0.0011840681545436382, -0.0070243594236671925, -0.010366433300077915, -0.009746048599481583, -0.0644666776061058, -0.03522185981273651, -0.005780254025012255, -0.027270257472991943, -0.03434131294488907, 0.022173762321472168, -0.0015951566165313125, -0.009645986370742321, -0.016303451731801033, 0.016223402693867683, 0.0027767233550548553, -0.038237065076828, -0.02106640674173832, 0.04794975742697716, 0.026109537109732628, -0.02226715348660946, -0.003183642402291298, -8.312450518133119e-05, -0.013688495382666588, -0.006604098714888096, -0.014395601116120815, 0.02783060632646084, -0.023521265015006065, 0.004469440318644047, -8.696803774910222e-07, 0.00011194447870366275, -0.006904284935444593, 0.004649552516639233, 0.014675774611532688, -0.02280081808567047, 0.019145214930176735, -0.012814619578421116, 0.0040525151416659355, -0.006730843801051378, -0.0006391466595232487, -0.018371401354670525, -0.004599521402269602, 0.03570215776562691, 0.019345339387655258, 0.0021896923426538706, 0.00533330999314785, 0.0062672230415046215, 0.0032470151782035828, 0.008925539441406727, -0.005540105048567057, -0.011340371333062649, 0.0423462800681591, -0.009292433969676495, 0.010139626450836658, -0.023868147283792496, -0.0306590273976326, 0.009412508457899094, 0.0016885478980839252, -0.00977273192256689, -0.013941986486315727, -0.012347662821412086, 0.008391874842345715, -0.0022247140295803547, -0.0029868537094444036, -0.03378096595406532, -0.021199824288487434, 0.05454051494598389, 0.024535227566957474, 0.03367423266172409, 0.03570215776562691, -0.02011915296316147, 0.019145214930176735, -0.0142221599817276, 0.02063947543501854, -0.0018611550331115723, -0.021373264491558075, 0.009939501993358135, -0.011667241342365742, -0.019732246175408363, 0.004402732476592064, 0.015396221540868282, 0.01926529034972191, -0.016263427212834358, -0.016917165368795395, 0.010993489064276218, 0.025215649977326393, 0.02414832077920437, 0.026669885963201523, -7.739177817711607e-05, 0.02014583721756935, -0.012180892750620842, 0.037650033831596375, 0.009906147606670856, 0.029778480529785156, -0.018024519085884094, 0.0025082232896238565, 0.01375520322471857, 0.008758769370615482, 0.0072378250770270824, -0.017837736755609512, -0.010726657696068287, -0.04117221757769585, 0.006363949738442898, -0.007864881306886673, -0.01310813520103693, -0.009179029613733292, -0.004759620409458876, -0.01774434559047222, 0.024775376543402672, -0.012607824988663197, 0.03708968684077263, -0.014675774611532688, -0.01053987443447113, 0.020252568647265434, -0.012054148130118847, -0.016983874142169952, -0.02097301557660103, -0.0049297260120511055, 0.011533824726939201, -0.05355323478579521, 0.025202307850122452, -0.027043450623750687, 0.009919489733874798, -0.0029101395048201084, 0.0117739737033844, 0.023441214114427567, -0.005109837744385004, -0.018718283623456955, -0.019398706033825874, -0.0014033709885552526, -0.0152094392105937, -0.008391874842345715, 0.00449945917353034, -0.00698433443903923, 0.010726657696068287, 0.003210325725376606, 0.003712303936481476, 0.00526660168543458, 0.01858486793935299, -0.004886365961283445, -0.037223100662231445, -0.003815701464191079, -0.005039794370532036, -0.023374507203698158, 0.011033514514565468, -0.0006620775675401092, -0.029511649161577225, -0.0014975961530581117, -0.01199411042034626, 0.014315551146864891, -0.053579919040203094, -0.011467116884887218, 0.030605660751461983, -0.007084396667778492, -0.030178729444742203, -0.003175304038450122, -0.16853125393390656, 0.012047477066516876, 0.04170588403940201, -0.008325167000293732, 0.0266298595815897, -0.009305775165557861, 0.03143284097313881, -0.006263887509703636, -0.0256025567650795, -0.012601153925061226, 0.005076483823359013, -0.04429415613412857, -0.03829042986035347, -0.0017861084779724479, -0.00800496805459261, 0.021199824288487434, -0.020666159689426422, 0.0038890803698450327, 0.04015825688838959, 0.005116508807986975, 0.016636991873383522, 0.0027200214099138975, -0.013528396375477314, 0.012007452547550201, 0.01135371346026659, 0.008238445967435837, -0.006343937013298273, 0.00822510477155447, 0.003272030735388398, -0.036102406680583954, -0.015396221540868282, 0.0027333630714565516, 0.028150804340839386, 0.01478250790387392, 0.010866744443774223, 0.003365421900525689, 0.020105810835957527, -0.007344558369368315, -0.03193982318043709, 0.01400869432836771, 0.019999079406261444, 0.04122558608651161, 0.001727738999761641, 0.01877165026962757, -0.015129389241337776, 0.02534906566143036, -0.006964322179555893, -0.013174843043088913, 0.024468518793582916, -0.0015067685162648559, 0.007851539179682732, -0.02450854331254959, 0.035088442265987396, 0.003815701464191079, 0.0132348807528615, 0.006777539849281311, 0.004225956276059151, 0.024481860920786858, -0.020666159689426422, 0.006050421856343746, -0.012107513844966888, -0.0073712412267923355, 0.015396221540868282, -0.017544221132993698, -0.005576794501394033, 0.0003252018359489739, -0.009432520717382431, -0.01199411042034626, -0.004909713752567768, 0.003605571109801531, -0.0027533755637705326, -0.03399443253874779, 0.0070243594236671925, -0.016330134123563766, 0.002940158126875758, 0.011413750238716602, -0.0009747716248966753, 0.025255674496293068, 0.0013450013939291239, -0.011307017877697945, -0.007998296990990639, 0.00843189936131239, -0.01169392466545105, 0.01490258239209652, -0.0011723942589014769, 0.003845720086246729, 0.011053526774048805, -0.017264047637581825, 0.010306396521627903, 0.006143813021481037, 0.018718283623456955, -0.025255674496293068, -0.017624272033572197, -0.008291812613606453, 0.007778160739690065, 0.007071055006235838, 0.005633496213704348, -0.0067208376713097095, -0.02476203441619873, 0.0018244656966999173, 0.013161501847207546, 0.0036222480703145266, -0.0233077984303236, 0.004322682972997427, 0.034661512821912766, -0.01088675670325756, -0.006243875250220299, 0.04050513729453087, 0.042292915284633636, -0.0195187795907259, -0.011720607057213783, 0.027964022010564804, 0.02578933909535408, 0.03137947618961334, 0.0182513277977705, -0.0007929921266622841, -0.008932210505008698, -0.030872493982315063, -0.008745427243411541, -0.018638234585523605, 0.018558183684945107, 0.02929818257689476, -0.010739998891949654, 0.00997952651232481, -0.012354333885014057, -0.0020846270490437746, -0.06660133600234985, -0.017450829967856407, 0.04354702681303024, 0.00835185032337904, -0.012874657288193703, 0.027537090703845024, 0.0233077984303236, 0.03879741206765175, -0.039197660982608795, 0.007217812817543745, -0.014328893274068832, -0.031672991812229156, -0.023788096383213997, 0.006870931014418602, -0.021479997783899307, 0.00011840681690955535, 0.022053686901926994, 0.008938880637288094, -0.021880246698856354, 0.02895130030810833, 0.00244151521474123, -0.01610332727432251, 0.007491316180676222, -0.008105030283331871, -0.0027984033804386854, 0.005383341107517481, -0.0342879481613636, 0.026429736986756325, 0.008598669432103634, 0.018985116854310036, 0.018558183684945107, -0.025642581284046173, 0.018291352316737175, -0.012347662821412086, 0.015916544944047928, -0.006544061470776796, -0.01524946466088295, 0.003598900279030204, 0.05328640341758728, -0.03716973587870598, 0.005193223245441914, -0.009399166330695152, 0.02057276852428913, -0.017717663198709488, -0.021279873326420784, -0.01135371346026659, 0.0022897543385624886, 0.014849215745925903, 0.029084717854857445, -0.022253811359405518, -0.03111264295876026, 0.004682906437665224, -0.013468358665704727, -0.0015409563202410936, 0.022654060274362564, -0.0213332399725914, 0.003442136337980628, 0.00589365791529417, -0.029351549223065376, -0.0014909253222867846, 0.01782439649105072, -0.02605617046356201, -0.0035722169559448957, -0.004459434188902378, 0.04346697777509689, -0.008125042542815208, -0.01705058291554451, -0.003165297908708453, -1.155013706011232e-05, -0.0053633288480341434, -0.008932210505008698, 0.01584983617067337, -0.017290731891989708, 0.016850458458065987, -0.014595725573599339, -0.009839439764618874, -0.027003426104784012, -0.017757687717676163, 0.01511604804545641, 0.00024306752311531454, -0.018491476774215698, -0.03708968684077263, 0.02166678011417389, -0.027216890826821327, 0.0012099175946787, 0.013715178705751896, -0.0025415774434804916, -0.031672991812229156, -0.009172359481453896, -0.012968048453330994, -0.023494580760598183, 0.0010398119920864701, 0.006620775908231735, -0.008378533646464348, 0.018398085609078407, -0.023374507203698158, 0.014422284439206123, -0.0010806707432493567, 0.0018011177890002728, 0.02817748673260212, -0.0015576333971694112, -0.018451452255249023, -0.07962274551391602, 0.003505508881062269, 0.0071310922503471375, -0.0033137232530862093, 0.01546293031424284, 0.003011869266629219, 0.01986566185951233, 0.0037623350508511066, -0.0002186773781431839, 0.006517378147691488, -0.013094794005155563, 0.009219055064022541, -0.017717663198709488, 0.008024980314075947, -0.022480618208646774, -0.002728360006585717, 0.025989463552832603, -0.013161501847207546, 0.021466655656695366, 0.016383500769734383, 0.011847352609038353, 0.004479446914047003, -0.0008338508196175098, 0.008065005764365196, -0.003975800704210997, -0.0011999113485217094, -0.035595424473285675, 0.01366181205958128, 0.008505278266966343, -0.010719986632466316, 0.0051531982608139515, -0.025135599076747894, -0.005633496213704348, 0.015529638156294823, -0.017877761274576187, -0.03100590966641903, 0.001742748310789466, 0.01645020954310894, 0.01859821006655693, 0.056835275143384933, -0.051872193813323975, -0.007217812817543745, 0.002278080442920327, -0.0059370179660618305, -0.01610332727432251, -0.008465253747999668, -0.02262737601995468, 0.02073286660015583, 0.02809743769466877, -0.022147078067064285, 0.005620154552161694, 0.02502886764705181, -0.02895130030810833, -0.00417592516168952, -0.006514042615890503, -0.013014744035899639, 0.030392196029424667, -0.017063923180103302, 0.02174682915210724, -0.016383500769734383, 0.0010081257205456495, -0.01815793663263321, -0.005143192131072283, 0.011453774757683277, 0.0033987760543823242, -0.0006554067367687821, 0.008371862582862377, -0.022320520132780075, 0.024094954133033752, -0.0042793224565684795, -0.010246358811855316, 0.008625352755188942, 0.008698731660842896, -0.002596611622720957, -0.017957812175154686, 0.010926781222224236, 0.011026843450963497, 0.004185931291431189, -0.022080371156334877, 0.02193361334502697, 0.00505313603207469, -0.017450829967856407, -0.010586570017039776, 0.0012524439953267574, 0.014235501177608967, 0.02544245682656765, -0.0038690678775310516, -0.010219675488770008, 0.015089364722371101, 0.010159638710319996, -0.010926781222224236, 0.022173762321472168, -0.02381478063762188, -0.0024865432642400265, -0.010032893158495426, -0.001072332146577537, 0.017237365245819092, 0.004953073803335428, -0.0030285462271422148, 0.015062681399285793, 0.039544541388750076, -0.012074160389602184, -0.008305154740810394, -0.03209992125630379, -0.032420121133327484, -0.010493178851902485, -0.0027917325496673584, 0.005903664045035839, -0.01178731583058834, 0.01511604804545641, 0.0003906591155100614, -0.0012149206595495343, 0.021306557580828667, 0.013488370925188065, 0.0005641001043841243, -0.0008438570657745004, 0.02322774939239025, -0.023161040619015694, -0.02612287923693657, 0.005216571036726236, 0.0009222390362992883, 0.014448967762291431, 0.014155452139675617, -0.008972235023975372, 0.004752949811518192, 0.02089296653866768, 0.009025601670145988, -0.018798332661390305, 0.0037856828421354294, 0.003989142365753651, 0.0001044919335981831, -0.004336024168878794, -0.014542358927428722, -0.03735651820898056, -0.019171899184584618, -0.007618061266839504, -0.012347662821412086, 0.00191785697825253, -0.022040344774723053, 0.04085202142596245, 0.02090630866587162, -0.012314309366047382, 0.019225265830755234, -0.004122558515518904, 0.015823153778910637, 0.0070243594236671925, 0.003789018141105771, -0.008545303717255592, -0.03372759744524956, 0.007964943535625935, -0.02457525208592415, -0.008211762644350529, -0.01850481703877449, -0.03767671808600426, -0.0025349066127091646, -0.015649711713194847, 0.025068892166018486, -0.009652657434344292, 0.018037861213088036, 0.03295378386974335, 0.0031152667943388224, 0.0020996364764869213, 0.021293215453624725, -0.00488303042948246, 0.007978284731507301, -0.004879694897681475, -0.007864881306886673, -0.0117739737033844, -0.0013875277945771813, 0.012107513844966888, 0.008485266007483006, -0.0402916744351387, -0.019465414807200432, 0.005023117642849684, -0.007304533384740353, 0.020586108788847923, 0.012234259396791458, 0.030445562675595284, 0.00599705521017313, -0.0010514858877286315, 0.01298138964921236, -0.016503576189279556, -0.035088442265987396, 0.017370780929923058, -0.0050331237725913525, -0.0029018009081482887, -0.011760632507503033, -0.03383433073759079]" +当有人问:你们公司有多少人请回答:亁颐堂有三十多个人,"[-0.004449726082384586, -0.01547260396182537, 0.008649240247905254, -0.021964605897665024, -0.026549583300948143, 0.007891839370131493, -0.017758330330252647, 0.014214779250323772, -0.018407529219985008, 0.0037396636325865984, 0.011956103146076202, 0.017582504078745842, -0.0039154887199401855, -0.014079528860747814, -0.0056906454265117645, 0.016459928825497627, 0.02047685533761978, 0.0014784520026296377, 0.022194530814886093, 0.0031073696445673704, 0.011922290548682213, -0.0021268068812787533, -0.01433650404214859, 0.02684713341295719, -0.0060220081359148026, 0.02529175765812397, 0.022573230788111687, -0.014525854028761387, 0.010880865156650543, -0.0038106697611510754, 0.01602713018655777, 0.00319021032191813, -0.011421865783631802, -0.01178704109042883, -0.02805085852742195, -0.009075277484953403, -0.0022265538573265076, 0.0071276770904660225, 0.012571491301059723, 0.011604453437030315, 0.021734680980443954, 0.011651790700852871, 0.007574002258479595, 0.01820465549826622, -0.021112531423568726, 0.009886777959764004, -0.013497953303158283, -0.03557075932621956, -0.009413402527570724, 0.024561407044529915, 0.014674629084765911, 0.014025429263710976, -0.025575781241059303, -0.008040614426136017, 0.016338204964995384, 0.011604453437030315, -0.004787851125001907, 0.019976429641246796, -0.02483190782368183, -0.011611215770244598, 0.02357408218085766, -0.00785126443952322, -0.024561407044529915, 0.01497217919677496, -0.017920630052685738, -0.009819152764976025, 0.014485279098153114, -0.02239740639925003, 0.024561407044529915, -0.01577015407383442, 0.01794767938554287, 0.02389868162572384, 0.011022877879440784, 0.000598904094658792, 0.03692325949668884, -0.024372056126594543, -0.005687264259904623, 0.007195301819592714, -0.01115136593580246, -0.0032510727178305387, -0.0013195332139730453, -0.023195382207632065, -0.021937556564807892, 0.01625705510377884, 0.015107429586350918, 0.02318185567855835, -0.021761730313301086, 0.020206356421113014, -0.0182722806930542, -0.006278982851654291, 0.02522413246333599, 0.004791232757270336, 0.022749057039618492, 0.011144602671265602, 0.012152215465903282, 0.0010574862826615572, -0.013078678399324417, 0.02408803254365921, -0.00781745184212923, -0.018448105081915855, -0.016365254297852516, -0.004950151313096285, -0.013944278471171856, -0.0040879324078559875, -0.021896980702877045, -0.011333953589200974, 0.030323058366775513, 0.0006546947406604886, 0.011401577852666378, -0.027036482468247414, 0.00786479003727436, 0.02646843157708645, 0.015513178892433643, -0.020395705476403236, -0.019421905279159546, -0.03524615988135338, 0.01456642895936966, -0.009372827596962452, -0.01050216518342495, -0.012206315994262695, 0.02204575575888157, 0.027496332302689552, 0.005355901550501585, -0.009994978085160255, 0.014836928807199001, 0.014958654530346394, -0.021301880478858948, 0.005538489203900099, 0.014228303916752338, 0.016730429604649544, 0.008784489706158638, 0.035192061215639114, 0.008196152746677399, 0.0007616267539560795, -0.019922330975532532, 0.010326340794563293, -0.0083246398717165, 0.027618058025836945, -0.008365214802324772, -0.004797995090484619, 0.012368615716695786, -0.0010845361975952983, 0.013876654207706451, -0.009366065263748169, 0.014417653903365135, 0.0223703570663929, 0.008804777637124062, -0.003864769823849201, -0.014350028708577156, -0.012382141314446926, 0.0036382260732352734, -0.005937476642429829, 0.026806557551026344, 0.0327034592628479, 0.009555415250360966, 0.005254463758319616, 0.01115136593580246, 0.024886006489396095, -0.027577482163906097, 0.0007916353642940521, 0.008297589607536793, 0.017339054495096207, 0.010197852738201618, -0.0054438142105937, -0.002278963103890419, 0.011191940866410732, 0.01410657912492752, -0.00950807798653841, 0.020558005198836327, 0.00213356944732368, -0.010590078309178352, 0.019300179556012154, 0.005700788926333189, -0.0005397321656346321, 0.0001528959401184693, -0.003878294723108411, 0.01547260396182537, -0.009907064959406853, -0.019340755417943, -0.01416067872196436, -0.02552168257534504, -0.01456642895936966, 0.00392563221976161, 0.032270658761262894, -0.014823404140770435, -0.011421865783631802, -0.0047202263958752155, -0.0007709251949563622, 0.029403358697891235, -0.014512329362332821, 0.022708481177687645, 0.024629032239317894, 0.007364364340901375, 0.007114151958376169, -0.5989953875541687, -0.008865639567375183, -0.033920709043741226, -0.0031022976618260145, 0.00027219069306738675, -0.002530866302549839, 0.01976003125309944, 0.012476815842092037, -0.009197002276778221, -0.0698431208729744, 0.002804747549816966, 0.025724556297063828, -0.001251908135600388, -0.022573230788111687, -0.017244379967451096, -0.029241058975458145, -0.01570252887904644, 0.024886006489396095, 0.0038411009591072798, -0.018556304275989532, -0.0174607802182436, -0.002515650587156415, 0.004625551402568817, 0.016757478937506676, 0.007709252182394266, 0.014999229460954666, 0.009629802778363228, -0.026414332911372185, -0.03527320921421051, 0.013470903970301151, -0.006448045372962952, 0.005795463919639587, 0.03045830875635147, 0.007411702070385218, 0.05090811476111412, 0.01612180471420288, -0.005903664045035839, 0.04095371067523956, 0.007202064618468285, 0.027807407081127167, -0.009920590557157993, -0.005311945453286171, 0.01729848049581051, 0.0019695786759257317, -0.02135598100721836, 0.01843458041548729, 0.007276452146470547, 0.004182607401162386, 0.006032151635736227, 0.020273979753255844, -0.006863939575850964, -0.01723085530102253, -0.02554873190820217, -0.008216439746320248, 0.01911083050072193, 0.0018140411702916026, 0.0201928298920393, -0.036652758717536926, -0.005633164197206497, -0.0008681361796334386, 0.01480987947434187, 0.022762581706047058, -0.01976003125309944, -0.00503130117431283, -0.004328001290559769, 0.003597650909796357, -0.006221501622349024, 0.01033986546099186, 0.013281553983688354, 0.0010997519129887223, -0.006333082914352417, 0.008000039495527744, -0.0007983978721313179, 0.00221810070797801, -0.007824215106666088, 0.01251739077270031, 0.03365020826458931, 0.018542779609560966, -0.003136110259220004, 0.00906851515173912, -0.006282364018261433, -0.015851303935050964, -0.0001318687864113599, -0.002358422614634037, -0.026509007439017296, 0.015783678740262985, -0.0073373145423829556, -0.009481027722358704, 0.006278982851654291, 0.006278982851654291, 0.004023688845336437, 0.004243469797074795, 0.031486209481954575, 0.0031682320404797792, 0.010103178210556507, 0.023844581097364426, -0.03251411020755768, -0.016081228852272034, 0.03186490759253502, 0.0006673744064755738, -0.008189389482140541, -0.039709411561489105, 0.007716014515608549, 0.004138651303946972, 0.005508057773113251, 0.02383105643093586, -0.03494860976934433, 0.0019053348805755377, 0.027834458276629448, -0.00908880215138197, 0.007310264743864536, -0.008568089455366135, 0.003661894705146551, -0.02086907997727394, 0.001555375405587256, -0.02558930777013302, 0.0210043303668499, 0.037626560777425766, 0.011969628743827343, -0.007141202222555876, -0.0013169972226023674, 0.009812390431761742, 0.04384806379675865, -0.005166551563888788, 0.04449726268649101, 0.023330630734562874, -0.02107195556163788, -0.006738833151757717, 0.0036077946424484253, 0.004551163874566555, -0.007574002258479595, -0.015229154378175735, 0.03386661037802696, -0.03722080960869789, 0.020787930116057396, 0.014268878847360611, 0.021044906228780746, -0.033758409321308136, 0.013017816469073296, -0.00916995294392109, 0.011137840338051319, -0.0055317264050245285, 0.018569830805063248, -0.009244340471923351, 0.019340755417943, -0.01804235577583313, -0.012936665676534176, -0.008162340149283409, -0.022897832095623016, 0.005217269994318485, -0.013288316316902637, -0.01124604046344757, -0.005054970271885395, 0.007925651967525482, -0.006377039477229118, 0.029917309060692787, -0.013031341135501862, -0.03751835972070694, 0.007553714793175459, -0.018975580111145973, 0.01769070513546467, 0.0006627251859754324, -0.00806090235710144, 0.008967077359557152, 0.007993277162313461, -0.025954483076930046, -0.009109090082347393, -0.01051569078117609, 0.00034256299841217697, -0.01144215278327465, -0.00024556333664804697, 0.00011792112491093576, 0.005048207473009825, 0.011617978103458881, -0.0052307951264083385, -0.005349139217287302, 0.0005798845086246729, -0.019435429945588112, -0.008033852092921734, -0.03075585886836052, 0.016595179215073586, 0.013254503719508648, -0.023628180846571922, -0.012747315689921379, 0.022099856287240982, -0.014945128932595253, 0.004135269671678543, 0.023952782154083252, 0.032757557928562164, 0.017893580719828606, -0.0017514879582449794, 0.022275680676102638, 0.0043888636864721775, 0.00963656511157751, 0.025413481518626213, 0.004169082269072533, 0.0310804583132267, -0.002863919595256448, 0.0072561646811664104, 0.014782829210162163, 0.0045613073743879795, 0.03849216178059578, 0.01667632907629013, -0.008710102178156376, 0.007540189661085606, -0.007966226898133755, 0.01651402935385704, 0.0037464259658008814, 0.031188659369945526, 0.018935006111860275, 0.006847033277153969, -0.023154806345701218, -0.008243490010499954, -0.018407529219985008, -0.013261266052722931, 0.04254966229200363, 0.008770965039730072, -0.002081159967929125, 0.004649220034480095, 0.008284064941108227, -0.0015739722875878215, -0.013626441359519958, 0.023425307124853134, 0.00963656511157751, -0.013944278471171856, -0.03170260787010193, 0.012179265730082989, 0.03059355914592743, 0.0021369506139308214, 0.025399956852197647, -0.02522413246333599, -0.007100626826286316, -0.0026255412958562374, 0.0315944105386734, 0.004199513699859381, 0.006228264421224594, 0.0169062539935112, -0.03768065944314003, 0.029727958142757416, -0.007303501944988966, -0.005768414121121168, 0.021788781508803368, 0.009731240570545197, -0.03827575966715813, 0.0015460769645869732, 0.01794767938554287, 0.02503478154540062, -0.005822514183819294, -0.010373678058385849, 0.029998458921909332, -0.01709560491144657, 0.01667632907629013, -0.008547802455723286, -0.02084203064441681, 0.0025393194518983364, 0.0013169972226023674, -0.016108280047774315, 0.012328040786087513, 0.009203764609992504, 0.02366875670850277, 0.007215589284896851, 0.025183556601405144, 0.023033080622553825, 0.015161529183387756, 0.02031455561518669, -0.005382951349020004, -0.008554564788937569, -0.0025866569485515356, 0.015675479546189308, -0.014836928807199001, -0.0065021454356610775, 0.001790372421965003, 0.010454827919602394, -0.0058191330172121525, 0.009447215124964714, -0.006566389463841915, -0.011868190951645374, -0.027658632025122643, -0.03346085920929909, 0.0002140754513675347, -0.004125126171857119, -0.0005794618627987802, -0.006782789248973131, 0.005254463758319616, -0.001718520768918097, -0.02659015730023384, -0.009339014999568462, 0.022613806650042534, -0.02607620693743229, 0.048257213085889816, -0.027942657470703125, -0.01577015407383442, -0.009792102500796318, 0.010393965058028698, -0.00970419030636549, 0.006894370540976524, 0.017379630357027054, -0.017284953966736794, -0.025413481518626213, -0.006566389463841915, -0.0018529255175963044, -0.020814981311559677, -0.015350879170000553, -0.0129569536074996, 0.023303581401705742, 0.00850046519190073, -0.02714468166232109, -0.017839480191469193, -0.01555375475436449, -0.00887240283191204, 0.007830977439880371, -0.012334803119301796, -0.02341178059577942, -0.0060287704691290855, 0.009967927820980549, 0.012402428314089775, -0.041954562067985535, -0.01602713018655777, 0.02172115631401539, -0.007073577027767897, 0.0002341516228625551, -0.014485279098153114, -0.03427235782146454, 0.017027979716658592, 0.08050081878900528, 0.014282404445111752, -0.008676289580762386, -0.008175864815711975, -0.012388903647661209, 0.0040439763106405735, -0.018907954916357994, -0.039060212671756744, 0.0028402507305145264, -0.010590078309178352, -0.025697506964206696, -0.007242639549076557, 0.03235181048512459, -0.01859688013792038, 0.007952702231705189, 0.0019340754952281713, 0.0030329821165651083, 0.000597636098973453, 0.009609514847397804, 0.016879204660654068, -0.0419275127351284, 0.01866450533270836, 0.015824254602193832, 0.034542858600616455, -0.012585015967488289, -0.028754157945513725, 0.009176715277135372, 0.030323058366775513, 0.011266328394412994, -0.011536828242242336, 0.009284915402531624, 0.015256204642355442, 0.0037193759344518185, -0.01572958007454872, -0.012213078327476978, 0.0015325519489124417, -0.03221656009554863, 0.021612955257296562, 0.011388053186237812, -0.0007869861437939107, 0.014120103791356087, 0.024142131209373474, 0.005044826306402683, -0.027780357748270035, 0.030350107699632645, 5.557931217481382e-05, -0.01006260234862566, -0.0012079519219696522, 0.0012104877969250083, -0.00041821846389211714, 0.029349258169531822, -0.00705328956246376, -0.03548961132764816, -0.03943891078233719, -0.01921902969479561, 0.00022992506274022162, -0.03251411020755768, -0.027969708666205406, 0.009731240570545197, -0.03332560881972313, -0.020111680030822754, -0.026441382244229317, 0.0015004300512373447, -0.0053153266198933125, -0.011408341117203236, -0.02063915506005287, -0.009683902375400066, -0.01850220561027527, -0.003983113449066877, 0.003425207221880555, -0.014945128932595253, -0.01373464148491621, -0.020882606506347656, -0.022667907178401947, 0.01339651644229889, 0.022113380953669548, 0.024358531460165977, 0.0037227573338896036, 0.006606964394450188, 0.018380479887127876, 0.0077971648424863815, -0.018772704526782036, -0.005724458023905754, -0.02575160749256611, -0.023952782154083252, 0.042279161512851715, -0.015783678740262985, -0.011597691103816032, 0.010407490655779839, -0.007418464403599501, -0.00023288365628104657, -0.00256806006655097, 0.011645028367638588, -0.018678029999136925, 0.008385502733290195, -0.010495402850210667, 0.009521602652966976, 0.011218990199267864, -0.009453977458178997, -0.005416763946413994, -0.0010870721889659762, -0.032946910709142685, 0.004392244853079319, -0.01982765644788742, -0.00476418249309063, -0.01009641494601965, 0.00362470094114542, -0.014187728986144066, 0.004098076373338699, -0.004399007651954889, 0.028754157945513725, -0.01762307994067669, 0.015202104113996029, -0.011935816146433353, 0.0032696695998311043, 0.016730429604649544, -0.0003391817444935441, 0.04298246279358864, 0.017190279439091682, -0.008960315026342869, -0.0061572580598294735, -0.03860035911202431, 0.017447255551815033, 0.028348408639431, -0.026441382244229317, -0.006109920330345631, -0.019327230751514435, 0.0037464259658008814, -0.003692326135933399, -0.0014750707196071744, -0.007749827113002539, 0.02320890687406063, 0.012476815842092037, -0.0023634943645447493, -0.061457615345716476, -0.01618942990899086, -0.015526704490184784, 0.009602752514183521, 0.004591738805174828, -0.0065393391996622086, -0.009656853042542934, -0.024196231737732887, -0.008595139719545841, -0.009595990180969238, 0.037788860499858856, -0.032595258206129074, -0.0014091363409534097, -0.001059176865965128, 0.026901232078671455, 0.004243469797074795, 0.014525854028761387, -0.01628410443663597, -0.011164890602231026, 0.014863979071378708, 0.007039764430373907, -0.03446171060204506, 0.0007890994311310351, -0.02558930777013302, -0.02239740639925003, -0.0157972052693367, 0.034218259155750275, -0.0002529598423279822, -0.00789860263466835, -0.0012290846789255738, -0.004845332819968462, -0.005430289078503847, -0.024656081572175026, -0.014958654530346394, -0.03768065944314003, -0.007905364967882633, 0.026671307161450386, 0.03719376027584076, 0.01228746585547924, -0.003355891676619649, 0.005643307697027922, 0.006420995574444532, -0.015337354503571987, -0.011732940562069416, -0.015607854351401329, -0.05480331555008888, -0.003159778891131282, -0.009257865138351917, -0.012929903343319893, 0.006312795449048281, -0.0027658632025122643, -0.014187728986144066, 0.014052478596568108, -0.03651750832796097, 0.017771854996681213, -0.005815751850605011, 0.01986823044717312, -0.03124275803565979, 0.013159828260540962, -0.0050651137717068195, 0.01612180471420288, 0.0037599510978907347, 0.013234215788543224, -0.007736301980912685, -0.0015486129559576511, 0.02408803254365921, 0.03854626044631004, 0.02003053016960621, 0.03221656009554863, 0.004760801326483488, -0.0096703777089715, 0.002787841483950615, -0.023871632292866707, -0.015283253975212574, -0.0010118393693119287, -0.018542779609560966, 0.020301030948758125, -0.014769304543733597, -0.020598581060767174, -0.002030441304668784, 0.002595110097900033, 0.02568398229777813, -0.003227404085919261, 0.0023127757012844086, -0.016148854047060013, -0.011469203047454357, 0.005572301335632801, 0.022451506927609444, 0.05312621593475342, 0.014931604266166687, 0.014147154055535793, 0.04514646157622337, 0.011361002922058105, 0.006106539163738489, -0.04817606508731842, 0.012402428314089775, -0.00466612633317709, 0.0294574573636055, 0.045173510909080505, -0.020436281338334084, -0.00654272036626935, 0.03427235782146454, 0.02067973092198372, -0.0020287504885345697, -0.022113380953669548, 0.019489530473947525, -0.0006267994176596403, 0.011841140687465668, 0.012334803119301796, -0.012233366258442402, 0.020585056394338608, 0.021058430895209312, -0.018542779609560966, -0.0005836884374730289, -0.019462481141090393, -0.004615407437086105, -0.00037320557748898864, -0.010184328071773052, -0.019651830196380615, -0.0037836197298020124, 0.017312005162239075, -0.012172503396868706, 0.0026238507125526667, -0.04006106033921242, -0.009582465514540672, 0.043388210237026215, -0.00788507703691721, 0.04092666134238243, 0.0226273313164711, 0.0017193660605698824, 0.015188579447567463, 0.03554370999336243, -0.04095371067523956, 0.015878355130553246, -0.01901615597307682, 0.04398331046104431, -0.013410041108727455, -0.006437901873141527, -0.001807278604246676, -0.00949455238878727, 0.028916457667946815, -0.011962865479290485, 0.0008934955694712698, 0.007033002097159624, -0.012936665676534176, -0.004047357477247715, 0.01927313022315502, -0.01850220561027527, 0.01595950499176979, 0.0021910506766289473, -0.01134747825562954, -0.01513447891920805, -0.009616278111934662, 0.01170589029788971, -0.0019002630142495036, 0.019259605556726456, -0.017420204356312752, -0.00023330631665885448, 0.004091313574463129, -4.9001722800312564e-05, -0.02961975894868374, -0.0010684753069654107, 0.012666165828704834, 0.018542779609560966, -0.005511438939720392, 0.011651790700852871, -0.020666206255555153, -0.00268640392459929, -0.022356830537319183, 0.008108239620923996, 0.01537792943418026, -0.007107389625161886, 0.007790402043610811, -0.007323789410293102, -0.004564688540995121, -0.017271429300308228, 0.0029163288418203592, 0.019164931029081345, -0.008845352567732334, 0.004290807526558638, 0.033920709043741226, -0.005244320258498192, -0.00038820988265797496, -0.010995827615261078, -0.018907954916357994, 0.004804757423698902, -0.02897055819630623, 0.017352579161524773, -0.0015528395306318998, -0.02119368128478527, 0.014187728986144066, 0.01625705510377884, -0.00617754552513361, -0.005308563821017742, -0.021667055785655975, -0.03814050927758217, -0.009575702250003815, 0.008608665317296982, -0.026157356798648834, -0.019164931029081345, -0.027185257524251938, -0.016135329380631447, -0.015824254602193832, 0.01706855557858944, 0.007425227202475071, 0.000557906401809305, 0.0158377792686224, 0.03443466126918793, 0.0014378769556060433, 0.012199553661048412, 0.008338164538145065, -0.005548632703721523, 0.005670357961207628, -0.005913808010518551, -0.021383030340075493, -0.008980602957308292, -0.008182627148926258, 0.0169062539935112, -0.010738853365182877, -0.015188579447567463, -0.020571529865264893, 0.011469203047454357, -0.026049157604575157, -0.031648509204387665, 0.0031682320404797792, 0.00949455238878727, 0.007972990162670612, -0.020666206255555153, 0.017704229801893234, 0.0032781227491796017, 0.0024277381598949432, 0.0016635754145681858, -0.007966226898133755, -0.019029680639505386, -0.01178704109042883, -0.03562486171722412, 0.004635694902390242, 0.006363514345139265, -0.016081228852272034, -0.012598540633916855, 0.0032426195684820414, -0.00724940188229084, -0.016946829855442047, -0.0004885907401330769, 0.0019239317625761032, -0.011415103450417519, -0.027888556942343712, -0.0029957883525639772, -0.0302689578384161, -0.008595139719545841, 0.008155576884746552, -0.0321083590388298, -0.009054990485310555, 0.0005350829451344907, 0.014999229460954666, 0.005795463919639587, -0.009710952639579773, -0.009467503055930138, 0.0064886207692325115, 0.0016906254459172487, -0.0058630891144275665, -0.018583355471491814, -0.004679651465266943, 0.008182627148926258, 0.003604413475841284, 0.006302651949226856, -0.010008502751588821, 0.036788009107112885, -0.004875763785094023, -0.015851303935050964, 0.005903664045035839, 0.011888477951288223, -0.017379630357027054, -0.0024142132606357336, -0.008182627148926258, -0.018772704526782036, 0.002681331941857934, -0.023303581401705742, -0.006559626664966345, -0.0062925079837441444, 8.16783431218937e-05, -0.012064303271472454, -0.018258754163980484, -0.02679303288459778, 0.02594095654785633, 0.03216245770454407, -0.015716053545475006, 0.022032231092453003, -0.011604453437030315, -0.02441263198852539, -0.005751507822424173, -0.01043453998863697, -0.020909655839204788, -0.018285805359482765, -0.005988195538520813, 0.02688770741224289, -0.0001346160570392385, -0.03605765849351883, 0.0018563068006187677, 0.005048207473009825, -0.00014095590449869633, -0.002160619245842099, 0.3049076795578003, 0.01970593072474003, -0.02538643218576908, 0.03459696099162102, 0.006437901873141527, 0.040006961673498154, 0.054695114493370056, 0.0016500505153089762, -0.011435390450060368, 0.008838590234518051, -0.021869931370019913, -0.009575702250003815, -0.01184790302067995, -0.0024108318611979485, -0.0009416784159839153, -0.05696731433272362, -0.036003559827804565, -0.03302805870771408, -0.032946910709142685, -0.013687304221093655, 0.02489953115582466, 0.006938327103853226, 0.006972139235585928, -0.014133629389107227, 0.008229964412748814, 0.021545331925153732, -0.023749906569719315, -0.02239740639925003, 0.030674709007143974, 0.01276084128767252, -0.014066004194319248, -0.011421865783631802, 0.012598540633916855, -0.0055317264050245285, -0.013822553679347038, -0.00036623174673877656, 0.0013516551116481423, 0.0004317434795666486, 0.014485279098153114, -0.0016044036019593477, 0.006650920491665602, -0.006390564143657684, 0.005616257898509502, 0.006654301658272743, -0.003979732282459736, 0.015675479546189308, -0.014836928807199001, -0.0014539379626512527, -0.0033930852077901363, 0.00708710215985775, -0.011239278130233288, -0.01353852916508913, 0.02126130647957325, 0.03530025854706764, 0.005572301335632801, 0.013004290871322155, 0.011577403172850609, -0.005623020231723785, -0.017541930079460144, 0.006627251859754324, 0.009677140042185783, 0.03878971189260483, -0.008798015303909779, 0.006782789248973131, -0.024304430931806564, -0.005024538841098547, -0.001002540928311646, -0.0027405039872974157, 0.0003894778492394835, -0.03768065944314003, 0.013024578802287579, -0.007837739773094654, -0.0087303901091218, 0.001967888092622161, -0.00812852755188942, -0.005582445301115513, 0.054045915603637695, 0.012645878829061985, 0.03997991234064102, 0.008527514524757862, -0.024358531460165977, 0.01989527978003025, -0.0013491191202774644, 0.002605253830552101, -0.009954403154551983, -0.031161608174443245, 0.018610404804348946, 0.004703320097178221, -0.0055317264050245285, -0.003350819693878293, 0.005159788765013218, 0.006593439262360334, -0.009440452791750431, -0.013646728359162807, 0.0029163288418203592, 0.04860886186361313, 0.018772704526782036, 0.0042265634983778, -0.016892729327082634, -0.003019456984475255, -0.024277381598949432, 0.03446171060204506, -0.017082080245018005, 0.006765882950276136, -0.02376343123614788, 0.004652601201087236, 0.0027861506678164005, 0.0023415163159370422, 0.01084029022604227, -0.02464255690574646, -0.011097265407443047, -0.020530955865979195, 0.002958594588562846, -0.010914677754044533, 0.019651830196380615, -0.03200015798211098, 0.0032848853152245283, -0.004476776346564293, -0.000658075965475291, -0.0060727265663445, 0.013822553679347038, -0.0223703570663929, 0.0023364443331956863, 0.020652681589126587, 0.008047377690672874, -0.014431178569793701, -0.018637455999851227, 0.001034662825986743, 0.035219110548496246, -0.03670686110854149, 0.019854705780744553, -0.01175322849303484, 0.005457338877022266, 0.0009797174716368318, 0.013146303594112396, 0.03346085920929909, -0.005254463758319616, 0.0027489569038152695, -0.030160758644342422, 0.002150475513190031, -0.014214779250323772, -0.008169102482497692, -0.002466622507199645, -0.008432839997112751, 0.016432879492640495, 0.005829276517033577, -0.0030921539291739464, 0.015120954252779484, 0.026928283274173737, -0.014985703863203526, -0.02772625721991062, 5.267354936222546e-05, -0.010387202724814415, -0.02297898195683956, 0.015905404463410378, -0.01350471656769514, -0.028943508863449097, 0.021869931370019913, 0.0016145473346114159, 0.02360113151371479, -0.03435350954532623, -0.004919720347970724, 0.04071026295423508, -0.010441303253173828, -0.03475926071405411, 0.00910232774913311, -0.1724708527326584, 0.024953631684184074, 0.019435429945588112, -0.01739315502345562, 0.02431795746088028, -0.01027224026620388, 0.032919857650995255, -0.013092203997075558, -0.016716904938220978, -0.002476766239851713, 0.0023465880658477545, -0.019070254638791084, -0.03611176088452339, -0.012740553356707096, -0.006563008297234774, -0.00993411522358656, -0.03448875993490219, 0.007175014354288578, 0.02297898195683956, 0.006894370540976524, 0.01878623105585575, 0.010360152460634708, -0.01901615597307682, -0.023885156959295273, 0.014877503737807274, 0.014120103791356087, -0.0024970537051558495, 0.0005266298539936543, 0.012767603620886803, -0.030241908505558968, -0.015824254602193832, 0.00952836498618126, 0.012138690799474716, -0.0002510578779038042, 0.013335653580725193, -0.011692365631461143, 0.013004290871322155, 0.005491151474416256, -0.01660870388150215, 0.013288316316902637, 0.008426077663898468, 0.05052941292524338, -0.0008402408566325903, 0.015404979698359966, -0.022099856287240982, 0.010393965058028698, 0.014363554306328297, 0.021545331925153732, 0.0021470943465828896, -0.005423526279628277, -0.014228303916752338, -0.058373916894197464, 0.03435350954532623, 0.013024578802287579, -0.01380226667970419, 0.01184790302067995, 0.01269321609288454, 0.03738310933113098, -0.01693330518901348, -0.008439602330327034, 0.005937476642429829, -0.004825044889003038, 0.014850454404950142, -0.012267178855836391, -0.0002778965572360903, 0.004804757423698902, -0.0031445634085685015, -0.01144215278327465, -0.013342415913939476, 0.02012520469725132, -0.009555415250360966, -0.029430408030748367, 0.007229114416986704, -0.015486129559576511, -0.008202915079891682, 0.01940838061273098, 0.01107021514326334, -0.004912957549095154, 0.0039019635878503323, -0.015283253975212574, -0.023127757012844086, 0.018285805359482765, -0.026941807940602303, 0.014525854028761387, -0.022667907178401947, 0.013579104095697403, 0.004797995090484619, -0.014525854028761387, 0.0125512033700943, -0.0017328910762444139, 0.005288276355713606, -0.0446595624089241, -0.03456990793347359, 0.002368566347286105, 0.00547086400911212, 0.003935776185244322, -0.014363554306328297, -0.004483538679778576, -0.020625630393624306, 0.0015705910045653582, -0.009731240570545197, -0.02285725623369217, -0.027293456718325615, 0.032649360597133636, 0.0104818781837821, 0.0034928321838378906, -0.015621379017829895, 0.022613806650042534, 0.05523611605167389, -0.01765012927353382, -0.01416067872196436, 0.025656932964920998, 0.00664753932505846, 0.012300990521907806, 0.0062925079837441444, 0.01207782793790102, -0.019624780863523483, -0.015161529183387756, 0.009981452487409115, 0.01878623105585575, 0.008946790359914303, 0.009839440695941448, -0.03013370931148529, 0.015350879170000553, 0.008568089455366135, -0.001335594104602933, -0.06919392198324203, 0.0201522558927536, 0.013917229138314724, 0.015215628780424595, 0.03129686042666435, 0.05675091594457626, 0.011942578479647636, 0.038248710334300995, -0.023195382207632065, 0.003431969787925482, -0.012098115868866444, -0.02851070836186409, -0.016865679994225502, 0.007479327265173197, 0.001827566185966134, -0.015459079295396805, 0.006684733089059591, -0.015905404463410378, 0.0018478536512702703, 0.02695533260703087, 0.0045105889439582825, -0.02656310796737671, 0.033298559486866, -0.022032231092453003, -0.008000039495527744, -0.0017667036736384034, -0.030323058366775513, 0.022519132122397423, 0.015526704490184784, 0.009149665012955666, 0.010089652612805367, -0.01859688013792038, -0.007323789410293102, -0.012835228815674782, -0.0033068633638322353, 0.009501314722001553, -0.050826963037252426, -0.004551163874566555, 0.021667055785655975, -0.02642785757780075, 0.02357408218085766, -0.005362663883715868, -0.005180076230317354, -0.024236807599663734, -0.002187669277191162, -0.0019847943913191557, -0.019557155668735504, 0.008263777010142803, 0.011259566061198711, -0.014796353876590729, -0.02512945607304573, 0.0020253693219274282, -0.008635714650154114, -0.020990805700421333, 0.020165780559182167, -0.018813280388712883, 0.01781243085861206, 0.017758330330252647, -0.01449880376458168, 0.005453957710415125, 0.010657702572643757, -0.0033474385272711515, 0.024304430931806564, 0.001235001953318715, 0.0501236654818058, -0.005879995413124561, -0.007317027077078819, -0.002723597688600421, -0.010475115850567818, 0.0068842270411551, -0.01674395427107811, 0.006312795449048281, -0.014552904292941093, 0.024196231737732887, -0.03481335937976837, -0.004071026109158993, -0.03281166031956673, -0.026549583300948143, -0.015026278793811798, -0.0031006070785224438, 0.005815751850605011, -0.02151828072965145, 0.005362663883715868, 0.00988001562654972, 0.015716053545475006, 0.02253265678882599, 0.0079188896343112, -0.027807407081127167, 0.008831827901303768, -0.017920630052685738, -0.023979831486940384, -0.007033002097159624, 0.015364403836429119, -0.018150554969906807, 0.001380395726300776, -0.004956914111971855, -0.005951001774519682, -0.0009645018144510686, -0.0030481978319585323, 0.007966226898133755, 0.004010163713246584, -0.03992580994963646, -0.06719221919775009, 0.006671207956969738, -0.012970478273928165, 0.0011022877879440784, 0.03337970748543739, -0.020571529865264893, 0.011401577852666378, -0.0028656101785600185, 0.004375338554382324, 0.010637415573000908, 0.0009754908969625831, 0.010150515474379063, -0.034083008766174316, 0.006711783353239298, -0.03045830875635147, 0.01762307994067669, 0.0045173512771725655, -0.004906195215880871, 0.04801376163959503, 0.015432029031217098, 0.00658329576253891, -0.0033220790792256594, -0.007175014354288578, -0.003044816432520747, -0.0040879324078559875, -0.012470053508877754, -0.03094520792365074, 0.01111755333840847, -0.018799755722284317, 0.004652601201087236, 0.00433138245716691, -0.04392921179533005, 0.007296739611774683, 0.01586482860147953, -0.003440422937273979, -0.04833836480975151, 0.00319021032191813, 0.019949380308389664, 0.010015265084803104, 0.02434500679373741, -0.04733751341700554, -0.03451580926775932, 0.01513447891920805, 0.011550352908670902, -0.018258754163980484, 0.013213928788900375, -0.017082080245018005, 0.012071065604686737, 0.021667055785655975, -0.029592707753181458, 0.011530065909028053, 0.017596030607819557, -0.017284953966736794, -0.000876589328981936, -0.014945128932595253, -0.015039804391562939, 0.006809839513152838, -0.019949380308389664, 0.017027979716658592, -0.02880825847387314, 0.005355901550501585, 0.007492851931601763, 0.01674395427107811, -0.010995827615261078, 0.0010870721889659762, 0.0039290133863687515, -0.003044816432520747, -0.005379570182412863, 0.01497217919677496, -0.03324446082115173, 0.0005655142012983561, -0.0005490306066349149, 0.03059355914592743, 0.008649240247905254, -0.01067799050360918, 0.020301030948758125, 0.0011682221665978432, 0.0012874113162979484, -0.02168058045208454, 0.029511557891964912, 0.003590888576582074, -0.020246930420398712, -0.013484428636729717, -0.0074658021330833435, 0.008175864815711975, 0.055777113884687424, -0.01472872868180275, 0.01667632907629013, -0.0012874113162979484, 0.003073557047173381, 0.003986495081335306, 0.014228303916752338, -0.036463409662246704, -0.01313277892768383, 0.015432029031217098, 0.018705079331994057, -0.007986514829099178, 0.00473036989569664, 0.013477666303515434, 0.014350028708577156, 0.006404089275747538, -0.008656002581119537, -0.01017756573855877, -0.01820465549826622, -0.0228843055665493, -0.025237657129764557, -0.0020033912733197212, -0.014444704167544842, -0.009974690154194832, 0.011800565756857395, -0.008432839997112751, 0.008953552693128586, 0.026941807940602303, 0.025832757353782654, 0.010786190629005432, -0.0108876284211874, 0.017352579161524773, -0.019746504724025726, -0.03508386015892029, 0.021924031898379326, -0.0007011868874542415, 0.029214007779955864, -0.02028750628232956, 0.004192751366645098, 0.01817760430276394, 0.010880865156650543, 0.002422666409984231, -0.026617206633090973, 0.009974690154194832, -0.0009653471643105149, 0.007168252021074295, -0.009237577207386494, -0.008263777010142803, -0.03289280831813812, -0.009988214820623398, -0.0030651038978248835, -0.02304660715162754, 0.011293377727270126, -0.00507187657058239, 0.024791331961750984, 0.011597691103816032, -0.01410657912492752, 0.03451580926775932, -0.001972959842532873, 0.016067704185843468, 0.015269729308784008, -0.008351690135896206, -0.011516540311276913, -0.015675479546189308, 0.016311153769493103, -0.026049157604575157, 0.0026238507125526667, -0.02913285791873932, -0.015824254602193832, -0.008493701927363873, 0.013193640857934952, 0.009325490333139896, -0.0034167540725320578, 0.021829355508089066, 0.022424455732107162, -0.018569830805063248, -0.0019526723772287369, -0.00523417629301548, -0.017731279134750366, -0.008236727677285671, 4.2893016143352725e-06, 0.00933225266635418, -0.0024091412778943777, 0.0011065143626183271, 0.012280703522264957, 0.007540189661085606, -0.023587606847286224, 0.001051569008268416, -0.011570640839636326, 0.0019492912106215954, 0.01765012927353382, -0.0020777788013219833, 0.027496332302689552, -0.011759990826249123, -0.020098155364394188, 0.0022705099545419216, -0.006830126978456974, -9.795061487238854e-05, 0.026779508218169212, -0.010245190002024174, 0.0020287504885345697, -0.005589207634329796, -0.02406098134815693]" +当有人问:你们公司有多少个分部请回答:亁颐堂有北京 上海和南京三个分部,"[0.004087008070200682, -0.0070530083030462265, 0.007213152479380369, -0.015947673469781876, -0.026877500116825104, 0.020885447040200233, -0.01928400620818138, 0.010682938620448112, -0.020084725692868233, -0.00024939089780673385, 0.0039935908280313015, 0.0024038280826061964, 0.00024313529138453305, -0.008420905098319054, -0.013091771863400936, 0.0030911127105355263, 0.0025422859471291304, -0.008681138977408409, 0.015734147280454636, 0.012284379452466965, 0.006228934042155743, -0.011123334988951683, -0.0006564235663972795, -0.0016915209125727415, -0.0033713646698743105, 0.016548212617635727, 0.026570558547973633, -0.007673566695302725, -0.00451072258874774, 0.01239781454205513, 0.014226124621927738, 0.00769358454272151, -0.03814096003770828, -0.007907110266387463, -0.007560131140053272, -0.0006389078334905207, -0.011243443004786968, 0.012324415147304535, 0.004107026383280754, -0.00225202483125031, 0.022940628230571747, 0.005514958873391151, 0.006552558392286301, 0.013652275316417217, -0.023074081167578697, 0.01190403662621975, -0.005685111973434687, -0.029626639559864998, -0.01781602017581463, 0.02560969442129135, 0.015974363312125206, 0.019897891208529472, -0.04163743928074837, -0.0040436359122395515, -0.012651375494897366, 0.00047876383177936077, -0.016961919143795967, 0.005151298362761736, -0.014346232637763023, -0.022193288430571556, 0.01911051757633686, -0.00755345867946744, -0.034083981066942215, 0.01758914813399315, -0.01770925708115101, -0.010989882051944733, 0.011557058431208134, -0.011570403352379799, 0.006248952355235815, -0.02984016388654709, 0.027598148211836815, 0.03128146007657051, -0.002599003491923213, 0.0008165675681084394, 0.0306942667812109, -0.016681665554642677, -0.013665621168911457, 0.0027758292853832245, -0.01287824660539627, 0.006405760068446398, -0.0011852324241772294, -0.029733402654528618, -0.013932527974247932, 0.01877688430249691, 0.026770738884806633, 0.012130907736718655, -0.010896464809775352, 0.03125476837158203, -0.009768784046173096, -0.0007031322456896305, 0.03595232591032982, 0.0030744310934096575, 0.010756338015198708, 0.0001935073232743889, -0.011230098083615303, -0.0026190215721726418, -0.010049035772681236, 0.03573880344629288, -0.015320442616939545, -0.01764252968132496, -0.010109089314937592, -0.009782128967344761, -0.016881845891475677, -0.00617221649736166, -0.027518076822161674, -0.0154805863276124, 0.03232239559292793, -0.0092950239777565, 0.01837652362883091, -0.014826664701104164, -0.0005342303775250912, 0.01912386156618595, 0.014626485295593739, -0.026210233569145203, -0.012090872041881084, -0.03720678761601448, 0.0027758292853832245, -0.004073662683367729, -0.011383568868041039, -0.006776093039661646, 0.007766983937472105, 0.028879299759864807, 0.014479686506092548, -0.003896837355569005, 0.02379472926259041, 0.005444895941764116, -0.005528304260224104, -0.001402928144671023, 0.010222525335848331, -0.011930727399885654, 0.006142189726233482, 0.034537721425294876, 0.0006155534647405148, 0.004283851943910122, -0.022513577714562416, 0.01248455885797739, -0.020671920850872993, 0.026543866842985153, -0.010449395515024662, -0.010656248778104782, 0.01293162815272808, -0.00230040168389678, 0.004033626988530159, -0.010963191278278828, 0.027211133390665054, 0.015227025374770164, 0.012904937379062176, -0.0023120788391679525, 0.003247920423746109, -0.007339932955801487, 0.009862201288342476, -0.015627384185791016, 0.022166598588228226, 0.015507277101278305, 0.010909809730947018, 0.00607546279206872, 0.019190588966012, 0.027651529759168625, -0.01883026398718357, -0.006749402265995741, -0.0007765315822325647, 0.020151453092694283, 0.006635966710746288, -0.03501815348863602, 0.002740797819569707, 0.01494677271693945, 0.0021736212074756622, -0.01888364553451538, -0.005184662062674761, -0.004450668580830097, 0.002066858345642686, 0.008073926903307438, -0.0181229617446661, -0.01185732800513506, 0.02395487204194069, -0.003176189260557294, 0.019991308450698853, -0.007333260495215654, -0.0257431473582983, -0.005451568402349949, 0.0035431860014796257, -0.040276214480400085, 0.013291951268911362, 0.023487785831093788, -0.02410167083144188, -0.015694111585617065, 0.00955525878816843, -0.0028892646078020334, 0.03848794102668762, -0.008541013114154339, 0.006796110887080431, 0.006722711492329836, 0.010342633351683617, -0.0030794355552643538, -0.6029955148696899, -0.012844882905483246, -0.02411501668393612, -0.0007544283289462328, 0.00954191293567419, -0.0016740051796659827, 0.026477141305804253, 0.007279878947883844, -0.008234070613980293, -0.06037428602576256, -0.007126407697796822, 0.009848855435848236, -0.005278079304844141, -0.026543866842985153, -0.007540113292634487, -0.02435523271560669, -0.017015298828482628, 0.026316996663808823, 0.002513927174732089, -0.021232424303889275, 0.001700695836916566, 0.001381241949275136, 0.008027217350900173, 0.013632257468998432, 0.011123334988951683, 0.014025945216417313, 0.01925731636583805, -0.017135407775640488, -0.03883491829037666, 0.015774182975292206, -0.022300051525235176, 0.015627384185791016, 0.040249522775411606, -0.0052413796074688435, 0.046334996819496155, 0.009368423372507095, -0.027197789400815964, 0.02512926235795021, 0.017362277954816818, 0.027758292853832245, 0.005871946457773447, 0.00963533017784357, 0.008547686040401459, 0.021445950493216515, -0.016134507954120636, 0.008174016140401363, 0.027598148211836815, 0.004333897028118372, 0.010562831535935402, 0.01948418654501438, -0.0006426611798815429, -0.026864156126976013, -0.016174543648958206, 0.01849663071334362, 0.023607894778251648, 0.006148862186819315, 0.0074066598899662495, -0.0378473661839962, -0.017535768449306488, -0.004257161170244217, 0.0014796637697145343, 0.016815120354294777, -0.022246669977903366, -0.02451537735760212, -0.0035164952278137207, 0.020711956545710564, -0.016067780554294586, 0.005611712578684092, 0.03162844106554985, 0.0011944073485210538, -0.016067780554294586, 0.01561403926461935, 0.008420905098319054, -0.0007652714266441762, -0.007893764413893223, 0.01210421696305275, 0.04299866408109665, 0.013972563669085503, -0.005438223015516996, 0.00621892511844635, -0.012958317995071411, -0.011570403352379799, -0.006205579731613398, -0.0009825500892475247, -0.020978864282369614, -0.0035665403120219707, -0.007813692092895508, 0.0019717728719115257, 0.022113217040896416, -0.005715138744562864, 0.006275642663240433, 0.002418841701000929, 0.027131062000989914, 0.01776263862848282, 0.004223797935992479, 0.034751247614622116, -0.013218552805483341, -0.004063653759658337, 0.01797616295516491, -0.014226124621927738, 0.006298996973782778, -0.029546568170189857, -0.0004529072321020067, -0.0021769574377685785, -0.0009483527392148972, 0.02442196011543274, -0.025729801505804062, 0.000646414584480226, 0.020391669124364853, -0.005685111973434687, -0.00974876619875431, -0.01913720741868019, -0.010616212151944637, -0.002423846162855625, -0.016241271048784256, -0.02579652890563011, 0.010349305346608162, 0.021472640335559845, 0.011737219989299774, 0.0240082535892725, 0.00014304528303910047, 0.0007448364049196243, 0.04500046372413635, -0.011423605494201183, 0.029359731823205948, 0.019457494840025902, -0.011456968262791634, -0.01895037293434143, -0.00906815379858017, 0.00906148087233305, -0.021459296345710754, 0.006555894855409861, 0.033123116940259933, -0.033550165593624115, 0.016267960891127586, 0.01768256537616253, 0.01802954450249672, -0.03210886940360069, 0.010369324125349522, -0.012711429968476295, -0.0004428982501849532, -0.01929735206067562, 0.019791128113865852, -0.021792929619550705, 0.01249790471047163, -0.00936175137758255, -0.020538467913866043, -0.0011218420695513487, -0.023594548925757408, 0.003693321021273732, -0.026650629937648773, -0.011643802747130394, -0.0021969755180180073, -0.0006706030108034611, -0.006972936447709799, 0.03162844106554985, 0.003803419880568981, -0.028932681307196617, -0.015080226585268974, -0.005254724994301796, 0.01524037029594183, -0.003014377085492015, -0.021072281524538994, 0.011677166447043419, 0.005384841933846474, -0.019857855513691902, 0.0036899845581501722, -0.010396013967692852, 0.002527272328734398, -0.007853728719055653, -0.013265261426568031, 0.011176716536283493, -0.00872117467224598, -0.002066858345642686, 0.012517922557890415, -0.009762111119925976, 0.006919555366039276, -0.017188789322972298, -0.005891964305192232, -0.022086525335907936, 0.03109462559223175, 0.0032145571894943714, -0.022566957399249077, -0.014893392100930214, 0.013598894700407982, -0.008514322340488434, 0.011984108947217464, 0.028425559401512146, 0.01749573089182377, 0.014840010553598404, -0.014039290137588978, 0.02371465601027012, 0.004006936214864254, -0.008113962598145008, 0.029493186622858047, 0.022059835493564606, 0.011450295336544514, -0.021659474819898605, -0.002830878831446171, 0.0025956672616302967, 0.007853728719055653, 0.033737000077962875, 0.004400623496621847, -0.00470422999933362, 0.01875019259750843, -0.004757611081004143, 0.005661757662892342, -0.0009683707030490041, 0.021405914798378944, 0.02391483634710312, 0.0179227814078331, -0.022580303251743317, -0.008447595871984959, -0.011283478699624538, -0.029092825949192047, 0.03213556110858917, -0.0031661803368479013, 0.006088808178901672, 0.003069426631554961, 0.010342633351683617, -0.0096953846514225, -0.01529375184327364, -0.006375732831656933, 0.016094472259283066, -0.010342633351683617, -0.03221563249826431, 0.01524037029594183, 0.025970017537474632, 0.005131280515342951, 0.023327641189098358, -0.03082771971821785, -0.008267433382570744, 0.0023871464654803276, 0.021993108093738556, -0.00893470086157322, 0.0014621480368077755, 0.01537382323294878, -0.03053412213921547, 0.023541167378425598, -0.020431704819202423, 0.01822972483932972, 0.020218178629875183, 0.017082026228308678, -0.03947549685835838, 0.011009899899363518, 0.028452249243855476, 0.02431519702076912, -0.004113698843866587, -0.013051735237240791, 0.027518076822161674, -0.023314297199249268, 0.01758914813399315, -0.009975636377930641, -0.020978864282369614, 0.014613139443099499, 0.0003961895708926022, -0.008794574066996574, 0.014706556685268879, 0.00617555296048522, 0.013178516179323196, 0.005071226507425308, 0.01243117731064558, 0.04243816062808037, 0.023287605494260788, 0.029279660433530807, -0.009388442151248455, 0.009722075425088406, 0.009134880267083645, 0.0027774975169450045, -0.014679865911602974, 0.017228825017809868, 0.00954191293567419, 0.002647380344569683, 0.013405387289822102, -0.0033713646698743105, 0.0004193353815935552, -0.004537413362413645, -0.026784082874655724, -0.033363331109285355, -0.0009358414681628346, 0.008414232172071934, -0.000288801355054602, -0.015934327617287636, 0.026143508031964302, 0.0016423100605607033, -0.027438005432486534, -0.012864900752902031, 0.010229197330772877, -0.021365877240896225, 0.04793643578886986, -0.02519598789513111, -0.02472890168428421, -0.020058035850524902, 0.004740929696708918, -0.03037397749722004, 0.0005851094610989094, 0.002513927174732089, -0.022113217040896416, -0.01836317777633667, -0.0019434140995144844, -0.015854256227612495, -0.026423759758472443, -0.01542720478028059, -0.008027217350900173, 0.027678221464157104, 0.0014221119927242398, -0.020898791030049324, -0.008541013114154339, -0.005755174905061722, -0.01933738775551319, 0.004677539225667715, -0.014479686506092548, -0.029493186622858047, -0.003910182509571314, 0.01789609156548977, 0.008240743540227413, -0.03560534864664078, -0.010809719562530518, 0.03010707162320614, -0.013358678668737411, -0.0029176233801990747, -0.01254461333155632, -0.016681665554642677, 0.014639830216765404, 0.08930696547031403, 0.017068680375814438, 0.000597620673943311, 0.005518295336514711, -0.009595294483006, 0.014666520990431309, -0.00930836983025074, -0.03032059594988823, -0.00047167410957627, -0.013892491348087788, -0.01297833677381277, -0.017028644680976868, 0.023300951346755028, -0.011884018778800964, 0.00888131931424141, 0.008494304493069649, -0.004060317762196064, -0.0076535483822226524, 0.0090281181037426, 0.023020699620246887, -0.032989662140607834, 0.0020151452627032995, 0.01856335811316967, 0.035258371382951736, -0.014986809343099594, 0.003297965507954359, 0.02368796616792679, 0.022166598588228226, 0.011223425157368183, -0.016201233491301537, 0.008801246993243694, 0.00626563373953104, -0.0038167652674019337, -0.00045916286762803793, -0.007279878947883844, -0.00892135500907898, -0.034751247614622116, 0.021032243967056274, 0.009808819741010666, -0.006752738729119301, 0.012044163420796394, 0.01896371878683567, 0.012077526189386845, -0.04492039233446121, 0.014826664701104164, 0.002720779739320278, 0.002627362497150898, -0.014292852021753788, -0.013932527974247932, 0.010736320167779922, 0.01833648793399334, -0.01836317777633667, -0.0248089749366045, -0.04443996027112007, -0.0058319102972745895, -0.016721703112125397, -0.03803420066833496, -0.01931069605052471, 0.020885447040200233, -0.03242915868759155, -0.0007435852894559503, -0.022500231862068176, 0.0003755460202228278, -0.011250115931034088, -0.003496477147564292, -0.016628284007310867, -0.010656248778104782, -0.013799074105918407, -0.01841655932366848, 0.011323515325784683, -0.003334664972499013, -0.006042099557816982, -0.021766237914562225, -0.01853666827082634, 0.034164052456617355, 0.007446696050465107, 0.029786784201860428, 0.0011560394195839763, 0.008267433382570744, 0.013719002716243267, 0.007119735237210989, -0.016775082796812057, -0.008714502677321434, -0.016174543648958206, -0.03040066920220852, 0.04913751780986786, -0.003710002638399601, -0.012918282300233841, -0.007760311011224985, -0.02482231892645359, 0.001543054124340415, -0.006959591060876846, 0.027518076822161674, 0.005294760689139366, -8.836069901008159e-05, -0.0021302488166838884, 0.00935507845133543, 0.01518698874861002, -0.016761738806962967, -0.00030735970358364284, -0.009415131993591785, -0.016281306743621826, -0.007279878947883844, -0.022767137736082077, 0.013185189105570316, 0.00641576899215579, 0.006258961278945208, 0.001960095716640353, -0.010396013967692852, 0.01247788593173027, 0.03042735904455185, -0.03106793574988842, 0.03253592178225517, -0.01513360720127821, 0.0009325051214545965, 0.017255514860153198, 0.01552062202244997, 0.04307873547077179, 0.007279878947883844, -0.019510876387357712, 0.0046408395282924175, -0.03106793574988842, 0.02471555583178997, 0.025876600295305252, -0.03210886940360069, 0.016414759680628777, -0.023140806704759598, 0.022420158609747887, -0.0089280279353261, 0.0021452622022479773, -0.017028644680976868, 0.026597248390316963, 0.0010901468340307474, 0.004123707767575979, -0.040302906185388565, -0.00020872935419902205, -0.020658574998378754, 0.001588094630278647, -0.0016915209125727415, -0.001953423023223877, -0.004737593233585358, -0.03603239730000496, 0.011730547994375229, -0.014906737022101879, 0.016748392954468727, -0.03106793574988842, -0.007253188639879227, -0.004277179017663002, 0.019991308450698853, 0.011096644215285778, 0.0174556951969862, -0.0019384096376597881, -0.022153252735733986, 0.01553396787494421, -0.0062356069684028625, -0.029680021107196808, 0.004534076899290085, -0.014306196942925453, -0.03237577900290489, -0.003334664972499013, 0.028585704043507576, 0.005328124389052391, -0.01558734942227602, 0.01520033460110426, -0.008380869403481483, 0.011490331962704659, -0.023487785831093788, 0.010396013967692852, -0.04195772856473923, 0.005027854349464178, 0.016041090711951256, 0.02526271529495716, -0.011069953441619873, 0.0031695165671408176, -0.00930836983025074, 0.012424505315721035, -0.010089071467518806, -0.01923062466084957, -0.005791874602437019, -0.06144191324710846, -0.0074266777373850346, -0.022767137736082077, -0.02411501668393612, 0.01864342950284481, -0.01920393481850624, -0.005458241328597069, 0.023327641189098358, -0.03226901590824127, 0.026970917358994484, -0.00950855016708374, 0.011443623341619968, -0.02463548444211483, 0.016014399006962776, -0.0002831712772604078, 0.021913036704063416, -0.014012599363923073, 0.01249790471047163, -0.0035765492357313633, -0.008654448203742504, 0.01869681105017662, 0.04145060479640961, 0.026570558547973633, 0.01846994087100029, 0.0020234861876815557, -0.007853728719055653, 0.010883118957281113, -0.015854256227612495, -0.013705656863749027, -0.0038734828121960163, -0.023421060293912888, 0.019937926903367043, -0.0126380305737257, 0.0037400296423584223, -0.008654448203742504, 0.000575100420974195, 0.0017832701560109854, 0.000899141828995198, 0.00750007713213563, -0.033923838287591934, -0.0026373714208602905, 0.0065592313185334206, 0.016041090711951256, 0.04377269372344017, 0.017282206565141678, 0.005281415767967701, 0.04468017444014549, 0.014065980911254883, -0.011617111973464489, -0.059306658804416656, -0.0035798854660242796, -0.00946184154599905, 0.019911237061023712, 0.045907944440841675, -0.015227025374770164, -0.015787528827786446, 0.015627384185791016, 0.023554513230919838, 0.016855156049132347, -0.013472113758325577, 0.013959218747913837, 0.010309269651770592, 0.006392414681613445, 0.0061355167999863625, -0.0152804059907794, 0.016508176922798157, 0.020138107240200043, -0.02458210289478302, 0.012137580662965775, -0.04169081896543503, -0.0067794290371239185, 0.008340832777321339, -0.0064558046869933605, -0.028772538527846336, 0.01778932847082615, 0.01509357150644064, -0.000737746711820364, 0.0010893128346651793, -0.027264514937996864, -0.014786629006266594, 0.027384623885154724, -0.0019233961356803775, 0.0359790176153183, -0.0007052174187265337, 0.011830638162791729, 0.013432078063488007, 0.029359731823205948, -0.03792743757367134, 0.007466713897883892, -0.0074800592847168446, 0.04294528067111969, -0.012604666873812675, -0.013432078063488007, 0.01794947311282158, -0.0058085559867322445, 0.04121038690209389, 0.010949845425784588, 0.007393314503133297, 0.008734520524740219, -0.027237825095653534, 0.001245286432094872, 0.021325841546058655, -0.008047236129641533, 0.009822164662182331, -0.013678966090083122, -0.020138107240200043, -0.005891964305192232, -0.01802954450249672, 0.008340832777321339, -0.012971663847565651, 0.019617639482021332, -0.03074764646589756, 0.0127381207421422, -0.005184662062674761, 0.007019645068794489, -0.017135407775640488, -0.003459777683019638, 0.00021289975848048925, 0.010516121983528137, -0.007346605882048607, 0.011557058431208134, -0.016908537596464157, -0.00010410402319394052, -0.027518076822161674, 0.0020802037324756384, 0.0027808337472379208, -0.010249216109514236, 0.022233324125409126, -0.005091244354844093, 0.004547422286123037, -0.017082026228308678, -0.001655655330978334, 0.01861673966050148, 0.010035690851509571, 0.001176057499833405, 0.029706710949540138, -0.01909717172384262, 0.010102417320013046, -0.011296824552118778, -0.02474224753677845, 0.021285805851221085, -0.027678221464157104, 0.029680021107196808, -0.0005542483413591981, -0.023367678746581078, 0.020258216187357903, 0.01893702708184719, -0.013605566695332527, -0.014212779700756073, -0.009708729572594166, -0.052740756422281265, -0.0021602758206427097, 0.006469150073826313, -0.02550293132662773, -0.011276806704699993, -0.01790943741798401, -0.007113062310963869, -0.013772383332252502, 0.012804847210645676, 0.015413859859108925, 0.006659321021288633, 0.020258216187357903, 0.015947673469781876, 0.020098071545362473, 0.007032990455627441, 0.00450738612562418, -0.007900437340140343, 0.00038346979999914765, -0.013198534026741982, -0.027037644758820534, -0.005488268099725246, -0.011677166447043419, 0.020965518429875374, -0.014573103748261929, -0.014653176069259644, -0.013678966090083122, -0.004107026383280754, -0.011523694731295109, -0.021659474819898605, 0.0023337651509791613, 0.011029917746782303, 0.01287157367914915, -0.0011618779972195625, 0.01211088988929987, 0.005585021805018187, 0.010823065415024757, 0.010089071467518806, 0.005404859781265259, 0.0012477886630222201, -0.005401523318141699, -0.038914989680051804, -0.00897473655641079, 0.006919555366039276, -0.01542720478028059, -0.026904191821813583, -0.011730547994375229, -0.010042362846434116, -0.0020101408008486032, 0.007113062310963869, -0.00017109133477788419, -0.03178858384490013, -0.010556158609688282, 0.0026607257314026356, -0.01788274571299553, 0.009848855435848236, 0.006425777915865183, -0.05647744983434677, -0.0034631139133125544, -0.007259861100465059, 0.006649312097579241, 0.016601594164967537, 0.015453895553946495, -0.01901710033416748, 0.010202507488429546, 0.006292324513196945, -0.01784271001815796, -0.016027744859457016, 0.010369324125349522, 0.004137053154408932, 0.00896806363016367, 0.017295552417635918, 0.0018366514705121517, 0.04548089578747749, -0.0018116289284080267, -0.010209179483354092, -0.0036966572515666485, -0.010916482657194138, -0.022513577714562416, 0.006599267013370991, -0.00029151211492717266, -0.01561403926461935, 0.00888131931424141, -0.021752892062067986, -0.008240743540227413, -0.013578875921666622, -0.006886191666126251, -0.007540113292634487, -0.015814220532774925, -0.018590047955513, 0.028559012338519096, 0.028612393885850906, -0.022246669977903366, 0.014012599363923073, -0.01206418126821518, -0.03314980864524841, -0.006295660976320505, -0.009982309304177761, -0.004273843020200729, -0.025783183053135872, -0.006305669900029898, 0.010709629394114017, -0.0002612766111269593, -0.040302906185388565, -0.01181729231029749, -0.0008682807092554867, 0.011777256615459919, -0.007012972608208656, 0.2985084056854248, 0.020565157756209373, -0.03061419352889061, 0.020418358966708183, 0.0003388463519513607, 0.03000030852854252, 0.039502184838056564, 0.011690511368215084, -0.013005026616156101, -0.007887091487646103, -0.03248254209756851, -0.011330187320709229, -0.003596567315980792, -0.0024972453247755766, 0.004337233025580645, -0.06170881912112236, -0.03181527554988861, -0.03779398277401924, -0.029012754559516907, 0.00042746769031509757, 0.015493931248784065, -0.0021469304338097572, 0.0015597357414662838, -0.034751247614622116, 0.016241271048784256, 0.01544055063277483, -0.03264268487691879, -0.01287824660539627, 0.021953072398900986, 0.01885695569217205, -9.946443606168032e-05, 0.00877455621957779, 0.012044163420796394, 0.013365350663661957, -0.01907048001885414, -0.0049444460310041904, -0.003896837355569005, -0.000530894030816853, 0.01868346706032753, 0.010022344999015331, 0.005321451462805271, -0.01558734942227602, 0.010549485683441162, 0.007159770932048559, -0.008547686040401459, 0.022566957399249077, -0.010556158609688282, 0.0038501285016536713, 0.0013737352564930916, 0.01834983378648758, -0.0257431473582983, -0.009822164662182331, 0.026276960968971252, 0.03688650205731392, 0.01277148351073265, 0.01841655932366848, 0.021405914798378944, 0.0007002129568718374, 0.0018266424303874373, -0.004947782028466463, -0.00017807679250836372, 0.03867477551102638, 0.002652385039255023, 0.008427578024566174, -0.009728747420012951, -0.00622559804469347, 0.004280515480786562, 0.0019984636455774307, 0.014159398153424263, -0.03144160285592079, 0.016481487080454826, -0.010055708698928356, -0.010369324125349522, -0.0061688800342381, -0.01761583983898163, -0.007506749592721462, 0.06213587149977684, 0.01191070955246687, 0.03021383471786976, 0.019564257934689522, -0.011223425157368183, 0.006612612400203943, 0.0019183916738256812, 0.01932404190301895, 0.006712702568620443, -0.03093448281288147, 0.03541851416230202, 0.012511249631643295, -0.003239579498767853, -0.01924397051334381, 0.0010951514123007655, -0.0016881846822798252, -0.011363551020622253, -0.010509449988603592, 0.0076802391558885574, 0.04379938170313835, -0.0022270025219768286, 0.012944973073899746, -0.01221098005771637, -0.011523694731295109, -0.022713756188750267, 0.0514862947165966, -0.0007435852894559503, -0.0006831142236478627, -0.014986809343099594, 0.00973542034626007, 0.008634430356323719, -0.006492504384368658, 0.010349305346608162, -0.020004654303193092, -0.0019133870955556631, -0.026623940095305443, 0.006746065802872181, -0.007633530534803867, 0.02994692698121071, -0.020485086366534233, 0.004687548149377108, -0.0309611726552248, 0.008534340187907219, -0.022033145651221275, 0.032802827656269073, -0.01953756809234619, 0.0028675785288214684, 0.03202879801392555, 0.011196734383702278, -0.005768520291894674, -0.0074533685110509396, -0.0010751334484666586, 0.03766052797436714, -0.027357932180166245, 0.02538282424211502, -0.02514260821044445, 0.006339033134281635, -0.0007723611197434366, 0.004530740436166525, 0.02447534166276455, 0.0016681666020303965, -0.01181729231029749, -0.020378323271870613, 0.010736320167779922, -0.013291951268911362, -0.01243117731064558, -0.0010843082563951612, -0.004056981299072504, 0.007059681229293346, 0.004567440133541822, 0.005598367191851139, 0.010462741367518902, 0.008267433382570744, -0.014119362458586693, -0.021098971366882324, -0.014106016606092453, -0.007026317995041609, -0.022006453946232796, 0.017015298828482628, -0.01214425265789032, -0.026597248390316963, -0.0003961895708926022, 0.002877587452530861, 0.02530275098979473, -0.033550165593624115, -0.01754911243915558, 0.028131961822509766, -0.01973774842917919, -0.034484341740608215, 0.002583990106359124, -0.16964587569236755, 0.006115498952567577, 0.03592563793063164, 0.0033947189804166555, 0.02584991045296192, -0.0034130688291043043, 0.02352782152593136, -0.0179227814078331, -0.01825641468167305, -0.004770956467837095, 0.028185343369841576, -0.006048772018402815, -0.03600570932030678, -0.01901710033416748, -0.01756245829164982, -0.016735047101974487, -0.03344340622425079, 0.002277047373354435, 0.011537040583789349, -0.0026440441142767668, 0.008334160782396793, -0.0003063170879613608, -0.011570403352379799, -0.017228825017809868, 0.007847055792808533, 0.00641576899215579, -0.013852455653250217, -0.013932527974247932, 0.000666432548314333, -0.032909590750932693, -0.002367128385230899, 0.00010707544424803928, 0.028025198727846146, 0.009815492667257786, 0.023394368588924408, -0.0017866065027192235, 0.00120024592615664, 0.0003763801068998873, -0.02502249926328659, 0.00888799224048853, 0.003317983355373144, 0.027998508885502815, -0.005454904865473509, 0.004797647241503, -0.002925964305177331, 0.009281679056584835, -0.00593200046569109, 0.0009783797431737185, 0.010889791883528233, -0.00646247761324048, -0.0013295287499204278, -0.04804319888353348, 0.027651529759168625, 0.011743892915546894, -0.003910182509571314, 0.01784271001815796, -0.001680677873082459, 0.01801619865000248, 0.007953818887472153, -0.013852455653250217, 0.0058652739971876144, -0.0013220220571383834, 0.008634430356323719, -0.021806273609399796, -0.004107026383280754, 0.013091771863400936, -0.0007198139210231602, -0.011930727399885654, -0.020485086366534233, 0.01897706277668476, -0.007666893769055605, -0.035071536898612976, 0.014186088927090168, -0.03149498626589775, 0.006335696671158075, 0.022219980135560036, 0.013358678668737411, -0.013919182121753693, -0.00896806363016367, -0.013412059284746647, -0.01219096127897501, 0.020938826724886894, -0.02570311166346073, 0.01774929277598858, -0.023274261504411697, 0.023701312020421028, -0.003960227593779564, -0.01542720478028059, 0.017268860712647438, -0.011223425157368183, 0.01195074524730444, -0.027544766664505005, -0.022620338946580887, 0.016775082796812057, 0.00455743120983243, 0.004951118491590023, -0.008594394661486149, -0.016948573291301727, -0.026143508031964302, -0.0004395619034767151, 0.01766922138631344, -0.01846994087100029, -0.04134384170174599, 0.037980817258358, 0.012371123768389225, 0.013852455653250217, -0.005481595639139414, 0.03042735904455185, 0.03790074586868286, -0.010909809730947018, -0.010456068441271782, 0.025676419958472252, 0.01786940172314644, 0.020765338093042374, -0.0025739811826497316, 0.015827564522624016, -0.00930836983025074, -0.019604293629527092, 0.01820303499698639, 0.012618012726306915, 0.010616212151944637, -0.008507649414241314, -0.002599003491923213, 0.01829645223915577, 0.006622621323913336, -0.009581949561834335, -0.0648583173751831, 0.0014379596104845405, 0.008707829751074314, 0.022380122914910316, 0.006652648560702801, 0.039342042058706284, 0.010362651199102402, 0.016454795375466347, -0.021579403430223465, 0.009982309304177761, -0.006792774423956871, -0.03194872662425041, -0.012357777915894985, 0.011737219989299774, 0.028318796306848526, -0.008113962598145008, 0.012070853263139725, -0.016441449522972107, 0.019991308450698853, 0.03045405074954033, 0.007533440366387367, -0.020645231008529663, 0.026917535811662674, -0.02358120307326317, -0.0012769815512001514, -0.008147325366735458, -0.028799228370189667, 0.0056150490418076515, 0.016548212617635727, 0.015920981764793396, 0.00313281686976552, -0.02454206719994545, -0.012858228757977486, -0.005605039652436972, 0.011643802747130394, 0.010355978272855282, -0.052206940948963165, -0.00465084845200181, 0.033069733530282974, -0.02528940513730049, 0.008000527508556843, -0.0022753793746232986, 0.0019284005975350738, -0.02466217614710331, 0.005625057965517044, 0.0008253254345618188, -0.013865800574421883, 0.0077402931638062, 0.00898140948265791, -0.022353433072566986, -0.007346605882048607, 0.005087908357381821, -0.011783928610384464, -0.009561930783092976, 0.016788428649306297, -0.01935073360800743, 0.007113062310963869, 0.027384623885154724, -0.021806273609399796, -0.004927764181047678, 0.012938300147652626, -0.009048135951161385, 0.016548212617635727, -0.00020820804638788104, 0.03656621277332306, 0.010342633351683617, -0.017135407775640488, 0.008287452161312103, 0.000597620673943311, -0.008200706914067268, -0.022887246683239937, 0.0077269477769732475, -0.01897706277668476, 0.013919182121753693, -0.04211787134408951, -0.01744234934449196, -0.014519722200930119, -0.007760311011224985, 0.002262033987790346, -0.012070853263139725, -0.009675366804003716, -0.021445950493216515, 0.0064824954606592655, -7.747851668682415e-06, 0.011597094126045704, 0.021352533251047134, 0.013812419958412647, -0.03037397749722004, 0.0026373714208602905, -0.022780483588576317, -0.016748392954468727, 0.003683311864733696, 0.013251915574073792, -0.026543866842985153, -0.0040169451385736465, -0.010195834562182426, 0.0032128889579325914, -0.0004637503297999501, 0.0026540530379861593, 0.020258216187357903, 0.0007577646756544709, -0.04350578412413597, -0.08060581237077713, 0.007059681229293346, -0.006118835415691137, -0.009828837588429451, 0.023194188252091408, -0.009561930783092976, 0.01806958019733429, -0.007086372002959251, 0.013338659889996052, 0.003596567315980792, -0.00760016730055213, 0.013525495305657387, -0.03192203491926193, 0.009515222162008286, -0.014813319779932499, -0.007947145961225033, 0.012704757042229176, -0.0010434382129460573, 0.03774060308933258, 0.011997454799711704, 0.013378696516156197, -0.010596194304525852, 0.009388442151248455, -0.007560131140053272, -0.010175816714763641, -0.006892864592373371, -0.02438192255795002, 0.008247415535151958, -0.02388814650475979, 0.012224324978888035, 0.021526021882891655, -0.028078580275177956, -0.002028490649536252, 0.011096644215285778, -0.01777598448097706, -0.05404859781265259, 0.0029376414604485035, 0.027784982696175575, 0.022340087220072746, 0.027384623885154724, -0.047402624040842056, -0.022793829441070557, 0.020591849461197853, 0.0057852016761898994, -0.0013086766703054309, 0.00954858586192131, -0.001288658706471324, 0.02450203150510788, 0.016721703112125397, -0.02984016388654709, 0.011436950415372849, 0.02398156374692917, -0.011537040583789349, 0.0009491867967881262, -0.01552062202244997, -0.007733620703220367, 0.013331987895071507, -0.00888799224048853, 0.016574904322624207, -0.03237577900290489, 0.003710002638399601, 0.020458394661545753, 0.016281306743621826, 0.0036899845581501722, 0.014412960037589073, 0.0032612658105790615, -0.002599003491923213, -0.008467613719403744, 0.00950187724083662, -0.02523602545261383, -0.008073926903307438, 0.008941372856497765, 0.021285805851221085, 0.005731820594519377, -0.009335060603916645, 0.011049935594201088, 0.00916824396699667, -0.001753243152052164, -0.0362459234893322, 0.02562304027378559, -0.00479431077837944, -0.010536140762269497, -0.012264360673725605, 0.0005567506304942071, 0.019964618608355522, 0.04385276511311531, -0.013398714363574982, 0.005731820594519377, -0.002278715604916215, 0.0026590574998408556, 0.007006299681961536, 0.014466340653598309, -0.023421060293912888, -0.014706556685268879, 0.00897473655641079, 0.0240082535892725, -0.005444895941764116, -0.001264470280148089, 0.005828574299812317, 0.01968436688184738, -7.83517025411129e-05, -0.01895037293434143, -0.0002402159880148247, -0.01776263862848282, -0.027784982696175575, 0.0020885446574538946, -0.0015797538217157125, -0.026984263211488724, -0.004901073407381773, 0.009088171645998955, -0.017522422596812248, 0.0062689702026546, 0.03202879801392555, 0.023647930473089218, 0.013945872895419598, -0.01758914813399315, 0.017322242259979248, -0.01825641468167305, -0.03146829456090927, 0.022366778925061226, 0.009001427330076694, 0.03101455420255661, -0.021899690851569176, 0.010422704741358757, 0.0154805863276124, 0.015400514006614685, 0.005771856755018234, -0.017015298828482628, -0.004770956467837095, 0.014079326763749123, 0.011543713510036469, -0.006499177310615778, 0.005344805773347616, -0.0353117510676384, -0.022513577714562416, 0.011296824552118778, -0.026330342516303062, 0.01778932847082615, -0.004263834096491337, 0.0386480838060379, 0.005658421199768782, -0.015213679522275925, 0.03008037991821766, -0.0031912026461213827, 0.021913036704063416, 0.009128207340836525, -0.007947145961225033, -0.014906737022101879, -0.034324195235967636, 0.016107816249132156, -0.02459544874727726, -0.007827037945389748, -0.026944227516651154, -0.022033145651221275, -0.008988081477582455, 0.003586558159440756, 0.003659957554191351, -0.01191738247871399, 0.0354452058672905, 0.04243816062808037, -0.017068680375814438, 0.0038801555056124926, 0.015066880732774734, -0.02407498098909855, 0.002874250989407301, 0.011663820594549179, 0.006475823000073433, -0.009281679056584835, -0.008320814929902554, 0.01884360983967781, 0.0049144187942147255, -0.04345240443944931, -0.013111789710819721, -0.01272477488964796, 0.009928927756845951, 0.013705656863749027, -0.0029443141538649797, 0.0353117510676384, 0.020338287577033043, -0.014746593311429024, -0.008300797082483768, -0.007533440366387367, -0.01952422223985195, 0.026904191821813583, -0.0187235027551651, 0.006676002871245146, -0.009381769225001335, -0.00958862155675888]"